@ecency/sdk 2.3.28 → 2.3.29
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/{hive-fkgMnAQs.d.ts → hive-CMt4SNd2.d.ts} +20 -13
- package/dist/browser/hive.d.ts +1 -1
- package/dist/browser/hive.js +2 -2
- package/dist/browser/hive.js.map +1 -1
- package/dist/browser/index.d.ts +213 -172
- package/dist/browser/index.js +3 -3
- package/dist/browser/index.js.map +1 -1
- package/dist/node/hive.cjs +2 -2
- package/dist/node/hive.cjs.map +1 -1
- package/dist/node/hive.mjs +2 -2
- package/dist/node/hive.mjs.map +1 -1
- package/dist/node/index.cjs +3 -3
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.mjs +3 -3
- package/dist/node/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/node/index.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {QueryClient,useQuery,useInfiniteQuery,useMutation,queryOptions,infiniteQueryOptions,useQueryClient}from'@tanstack/react-query';import {hexToBytes,bytesToHex}from'@noble/hashes/utils.js';import {ripemd160}from'@noble/hashes/legacy.js';import Dr from'bs58';import {secp256k1}from'@noble/curves/secp256k1.js';import {sha256,sha512}from'@noble/hashes/sha2.js';import {cbc}from'@noble/ciphers/aes.js';import kn from'hivesigner';var Jo=Object.defineProperty;var et=(e,t)=>{for(var r in t)Jo(e,r,{get:t[r],enumerable:true});};var tt=new ArrayBuffer(0),rt=null,nt=null;function Yo(){return rt||(typeof TextEncoder<"u"?rt=new TextEncoder:rt={encode(e){let t=[];for(let r=0;r<e.length;r++){let n=e.charCodeAt(r);if(n<128)t.push(n);else if(n<2048)t.push(192|n>>6,128|n&63);else if(n>=55296&&n<=56319&&r+1<e.length){let o=e.charCodeAt(++r);n=65536+((n&1023)<<10)+(o&1023),t.push(240|n>>18,128|n>>12&63,128|n>>6&63,128|n&63);}else t.push(224|n>>12,128|n>>6&63,128|n&63);}return new Uint8Array(t)}}),rt}function Tr(){return nt||(typeof TextDecoder<"u"?nt=new TextDecoder:nt={decode(e){let t=e instanceof ArrayBuffer?new Uint8Array(e):new Uint8Array(e.buffer,e.byteOffset,e.byteLength),r="";for(let n=0;n<t.length;){let o=t[n],i;o<128?(i=o,n+=1):(o&224)===192?(i=(o&31)<<6|t[n+1]&63,n+=2):(o&240)===224?(i=(o&15)<<12|(t[n+1]&63)<<6|t[n+2]&63,n+=3):(i=(o&7)<<18|(t[n+1]&63)<<12|(t[n+2]&63)<<6|t[n+3]&63,n+=4),i<=65535?r+=String.fromCharCode(i):(i-=65536,r+=String.fromCharCode(55296+(i>>10),56320+(i&1023)));}return r}}),nt}var q=class e{static LITTLE_ENDIAN=true;static BIG_ENDIAN=false;static DEFAULT_CAPACITY=16;static DEFAULT_ENDIAN=e.BIG_ENDIAN;buffer;view;offset;markedOffset;limit;littleEndian;constructor(t=e.DEFAULT_CAPACITY,r=e.DEFAULT_ENDIAN){this.buffer=t===0?tt:new ArrayBuffer(t),this.view=t===0?new DataView(tt):new DataView(this.buffer),this.offset=0,this.markedOffset=-1,this.limit=t,this.littleEndian=r;}static allocate(t,r){return new e(t,r)}static concat(t,r){let n=0;for(let a=0;a<t.length;++a){let u=t[a];if(u instanceof e)n+=u.limit-u.offset;else if(u instanceof Uint8Array)n+=u.length;else if(u instanceof ArrayBuffer)n+=u.byteLength;else if(Array.isArray(u))n+=u.length;else throw TypeError("Illegal buffer")}if(n===0)return new e(0,r);let o=new e(n,r),i=new Uint8Array(o.buffer),s=0;for(let a=0;a<t.length;++a){let u=t[a];u instanceof e?(i.set(new Uint8Array(u.buffer,u.offset,u.limit-u.offset),s),s+=u.limit-u.offset):u instanceof Uint8Array?(i.set(u,s),s+=u.length):u instanceof ArrayBuffer?(i.set(new Uint8Array(u),s),s+=u.byteLength):(i.set(u,s),s+=u.length);}return o.limit=o.offset=s,o.offset=0,o}static wrap(t,r){if(t instanceof e){let o=t.clone();return o.markedOffset=-1,o}let n;if(t instanceof Uint8Array)n=new e(0,r),t.length>0&&(n.buffer=t.buffer,n.offset=t.byteOffset,n.limit=t.byteOffset+t.byteLength,n.view=new DataView(t.buffer));else if(t instanceof ArrayBuffer)n=new e(0,r),t.byteLength>0&&(n.buffer=t,n.offset=0,n.limit=t.byteLength,n.view=t.byteLength>0?new DataView(t):new DataView(tt));else if(Array.isArray(t))n=new e(t.length,r),n.limit=t.length,new Uint8Array(n.buffer).set(t);else throw TypeError("Illegal buffer");return n}writeBytes(t,r){return this.append(t,r)}writeInt8(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+1>this.buffer.byteLength&&this.resize(r+1),this.view.setInt8(r,t),n&&(this.offset+=1),this}writeByte(t,r){return this.writeInt8(t,r)}writeUint8(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+1>this.buffer.byteLength&&this.resize(r+1),this.view.setUint8(r,t),n&&(this.offset+=1),this}writeUInt8(t,r){return this.writeUint8(t,r)}readUint8(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getUint8(t);return r&&(this.offset+=1),n}readUInt8(t){return this.readUint8(t)}writeInt16(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+2>this.buffer.byteLength&&this.resize(r+2),this.view.setInt16(r,t,this.littleEndian),n&&(this.offset+=2),this}writeShort(t,r){return this.writeInt16(t,r)}writeUint16(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+2>this.buffer.byteLength&&this.resize(r+2),this.view.setUint16(r,t,this.littleEndian),n&&(this.offset+=2),this}writeUInt16(t,r){return this.writeUint16(t,r)}writeInt32(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+4>this.buffer.byteLength&&this.resize(r+4),this.view.setInt32(r,t,this.littleEndian),n&&(this.offset+=4),this}writeInt(t,r){return this.writeInt32(t,r)}writeUint32(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+4>this.buffer.byteLength&&this.resize(r+4),this.view.setUint32(r,t,this.littleEndian),n&&(this.offset+=4),this}writeUInt32(t,r){return this.writeUint32(t,r)}readUint32(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getUint32(t,this.littleEndian);return r&&(this.offset+=4),n}readUInt32=this.readUint32;append(t,r){let n=typeof r>"u";n?r=this.offset:r=r;let o;return t instanceof e?(o=new Uint8Array(t.buffer,t.offset,t.limit-t.offset),t.offset+=o.length):t instanceof Uint8Array?o=t:t instanceof ArrayBuffer?o=new Uint8Array(t):o=new Uint8Array(t),o.length<=0?this:(r+o.length>this.buffer.byteLength&&this.resize(r+o.length),new Uint8Array(this.buffer).set(o,r),n&&(this.offset+=o.length),this)}clone(t){let r=new e(0,this.littleEndian);return t?(r.buffer=new ArrayBuffer(this.buffer.byteLength),new Uint8Array(r.buffer).set(new Uint8Array(this.buffer)),r.view=new DataView(r.buffer)):(r.buffer=this.buffer,r.view=this.view),r.offset=this.offset,r.markedOffset=this.markedOffset,r.limit=this.limit,r}copy(t,r){if(t===void 0&&(t=this.offset),r===void 0&&(r=this.limit),t===r)return new e(0,this.littleEndian);let n=r-t,o=new e(n,this.littleEndian);return o.offset=0,o.limit=n,new Uint8Array(o.buffer).set(new Uint8Array(this.buffer).subarray(t,r),0),o}copyTo(t,r,n,o){let i=typeof r>"u",s=typeof n>"u";r=i?t.offset:r,n=s?this.offset:n,o=o===void 0?this.limit:o;let a=o-n;return a===0?t:(t.ensureCapacity(r+a),new Uint8Array(t.buffer).set(new Uint8Array(this.buffer).subarray(n,o),r),s&&(this.offset+=a),i&&(t.offset+=a),this)}ensureCapacity(t){let r=this.buffer.byteLength;return r<t?this.resize((r*=2)>t?r:t):this}flip(){return this.limit=this.offset,this.offset=0,this}resize(t){if(this.buffer.byteLength<t){let r=new ArrayBuffer(t);new Uint8Array(r).set(new Uint8Array(this.buffer)),this.buffer=r,this.view=new DataView(r);}return this}skip(t){return this.offset+=t,this}writeInt64(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,typeof t=="number"&&(t=BigInt(t)),r+8>this.buffer.byteLength&&this.resize(r+8),this.view.setBigInt64(r,t,this.littleEndian),n&&(this.offset+=8),this}writeLong(t,r){return this.writeInt64(t,r)}readInt64(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getBigInt64(t,this.littleEndian);return r&&(this.offset+=8),n}readLong(t){return this.readInt64(t)}writeUint64(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,typeof t=="number"&&(t=BigInt(t)),r+8>this.buffer.byteLength&&this.resize(r+8),this.view.setBigUint64(r,t,this.littleEndian),n&&(this.offset+=8),this}writeUInt64(t,r){return this.writeUint64(t,r)}readUint64(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getBigUint64(t,this.littleEndian);return r&&(this.offset+=8),n}readUInt64(t){return this.readUint64(t)}toBuffer(t){let r=this.offset,n=this.limit;return !t&&r===0&&n===this.buffer.byteLength?this.buffer:r===n?tt:this.buffer.slice(r,n)}toArrayBuffer(t){return this.toBuffer(t)}writeVarint32(t,r){let n=typeof r>"u";n?r=this.offset:r=r;let o=this.calculateVarint32(t);for(r+o>this.buffer.byteLength&&this.resize(r+o),t>>>=0;t>=128;)this.view.setUint8(r++,t&127|128),t>>>=7;return this.view.setUint8(r++,t),n?(this.offset=r,this):o}readVarint32(t){let r=typeof t>"u";typeof t>"u"&&(t=this.offset);let n=0,o=0,i;do i=this.view.getUint8(t++),n<5&&(o|=(i&127)<<7*n),++n;while((i&128)!==0);return o|=0,r?(this.offset=t,o):{value:o,length:n}}calculateVarint32(t){return t=t>>>0,t<128?1:t<16384?2:t<1<<21?3:t<1<<28?4:5}writeVString(t,r){let n=typeof r>"u",o=n?this.offset:r,i=Yo().encode(t),s=i.length,a=this.calculateVarint32(s);return o+a+s>this.buffer.byteLength&&this.resize(o+a+s),this.writeVarint32(s,o),o+=a,new Uint8Array(this.buffer).set(i,o),o+=s,n?(this.offset=o,this):o-(r||0)}readVString(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=t,o=this.readVarint32(t),i=o.value,s=o.length;t+=s;let a=Tr().decode(new Uint8Array(this.buffer,t,i));return t+=i,r?(this.offset=t,a):{string:a,length:t-n}}readUTF8String(t,r){let n=typeof r>"u";n?r=this.offset:r=r;let o=Tr().decode(new Uint8Array(this.buffer,r,t));return n?(this.offset+=t,o):{string:o,length:t}}};var C={nodes:["https://api.hive.blog","https://api.deathwing.me","https://api.openhive.network","https://techcoderx.com","https://api.syncad.com","https://rpc.mahdiyari.info"],restNodes:["https://hapi.ecency.com","https://api.hive.blog","https://rpc.mahdiyari.info","https://techcoderx.com","https://hiveapi.actifit.io","https://api.c0ff33a.uk"],restNodesByApi:{hivesense:["https://api.hive.blog","https://api.syncad.com"]},userAgent:"ecency-sdk",chain_id:"beeab0de00000000000000000000000000000000000000000000000000000000",address_prefix:"STM",timeout:5e3,broadcastTimeout:15e3,retry:5},It=e=>{let t=[...new Set(e.map(r=>r.trim()).filter(r=>r.length>0&&/^https?:\/\/.+/.test(r)))];t.length&&(C.nodes=t);},Dt=e=>{if(typeof e!="string")return;let t=e.trim();!t||/[\u0000-\u001f\u007f]/.test(t)||(C.userAgent=t);};var ye=class e{data;recovery;compressed;constructor(t,r,n){this.data=t,this.recovery=r,this.compressed=n??true;}static from(t){if(typeof t=="string"){let r=hexToBytes(t),n=parseInt(bytesToHex(r.subarray(0,1)),16)-31,o=true;n<0&&(o=false,n=n+4);let i=r.subarray(1);return new e(i,n,o)}else throw new Error("Expected string for data")}toBuffer(){let t=new Uint8Array(65).fill(0);return this.compressed?t[0]=this.recovery+31&255:t[0]=this.recovery+27&255,t.set(this.data,1),t}customToString(){return bytesToHex(this.toBuffer())}toString(){return this.customToString()}getPublicKey(t){if(t instanceof Uint8Array&&t.length!==32||typeof t=="string"&&t.length!==64)throw new Error("Expected a valid sha256 hash as message");typeof t=="string"&&(t=hexToBytes(t));let r=secp256k1.Signature.fromBytes(this.data,"compact"),n=new secp256k1.Signature(r.r,r.s,this.recovery);return new V(n.recoverPublicKey(t).toBytes())}};var V=class e{key;prefix;constructor(t,r){this.key=t,this.prefix=r??C.address_prefix;}static fromString(t){let r=C.address_prefix;if(typeof t!="string"||t.length<=r.length)throw new Error("Invalid public key");let n=t.slice(0,r.length);if(n!==r)throw new Error(`Public key must start with ${r}`);let o;try{o=Dr.decode(t.slice(r.length));}catch{throw new Error("Invalid public key encoding")}if(o.length!==37)throw new Error("Invalid public key length");let i=o.subarray(0,33),s=o.subarray(33,37),a=ripemd160(i).subarray(0,4);if(!Zo(s,a))throw new Error("Public key checksum mismatch");try{secp256k1.Point.fromBytes(i);}catch{throw new Error("Invalid public key")}return new e(i,n)}static from(t){return t instanceof e?t:e.fromString(t)}verify(t,r){return typeof r=="string"&&(r=ye.from(r)),secp256k1.verify(r.data,t,this.key,{prehash:false,format:"compact"})}toString(){return Xo(this.key,this.prefix)}toJSON(){return this.toString()}inspect(){return `PublicKey: ${this.toString()}`}},Xo=(e,t)=>{let r=ripemd160(e);return t+Dr.encode(new Uint8Array([...e,...r.subarray(0,4)]))},Zo=(e,t)=>{if(e.byteLength!==t.byteLength)return false;for(let r=0;r<e.byteLength;r++)if(e[r]!==t[r])return false;return true};var ot=class e{amount;symbol;constructor(t,r){this.amount=t,this.symbol=r==="HIVE"?"STEEM":r==="HBD"?"SBD":r;}static fromString(t,r=null){let[n,o]=t.split(" ");if(["STEEM","VESTS","SBD","TESTS","TBD","HIVE","HBD"].indexOf(o)===-1)throw new Error(`Invalid asset symbol: ${o}`);if(r&&o!==r)throw new Error(`Invalid asset, expected symbol: ${r} got: ${o}`);let i=Number.parseFloat(n);if(!Number.isFinite(i))throw new Error(`Invalid asset amount: ${n}`);return new e(i,o)}static from(t,r){if(t instanceof e){if(r&&t.symbol!==r)throw new Error(`Invalid asset, expected symbol: ${r} got: ${t.symbol}`);return t}else {if(typeof t=="number"&&Number.isFinite(t))return new e(t,r||"STEEM");if(typeof t=="string")return e.fromString(t,r);throw new Error(`Invalid asset '${String(t)}'`)}}getPrecision(){switch(this.symbol){case "TESTS":case "TBD":case "STEEM":case "SBD":case "HBD":case "HIVE":return 3;case "VESTS":return 6;default:return 3}}toString(){return `${this.amount.toFixed(this.getPrecision())} ${this.symbol}`}toJSON(){return this.toString()}};var it=class e{buffer;static from(t){return t instanceof e?t:t instanceof Uint8Array?new e(t):typeof t=="string"?new e(hexToBytes(t)):new e(new Uint8Array(t))}constructor(t){this.buffer=t;}toString(){return bytesToHex(this.buffer)}toJSON(){return this.toString()}};var k={vote:0,comment:1,transfer:2,transfer_to_vesting:3,withdraw_vesting:4,limit_order_create:5,limit_order_cancel:6,feed_publish:7,convert:8,account_create:9,account_update:10,witness_update:11,account_witness_vote:12,account_witness_proxy:13,custom:15,delete_comment:17,custom_json:18,comment_options:19,set_withdraw_vesting_route:20,limit_order_create2:21,claim_account:22,create_claimed_account:23,request_account_recovery:24,recover_account:25,change_recovery_account:26,escrow_transfer:27,escrow_dispute:28,escrow_release:29,escrow_approve:31,transfer_to_savings:32,transfer_from_savings:33,cancel_transfer_from_savings:34,decline_voting_rights:36,reset_account:37,set_reset_account:38,claim_reward_balance:39,delegate_vesting_shares:40,account_create_with_delegation:41,witness_set_properties:42,account_update2:43,create_proposal:44,update_proposal_votes:45,remove_proposal:46,update_proposal:47,collateralized_convert:48,recurrent_transfer:49},J=()=>{throw new Error("Void can not be serialized")},w=(e,t)=>{e.writeVString(t);},ri=(e,t)=>{e.writeInt16(t);},Nr=(e,t)=>{e.writeInt64(t);},Br=(e,t)=>{e.writeUint8(t);},ee=(e,t)=>{e.writeUint16(t);},j=(e,t)=>{e.writeUint32(t);},Mr=(e,t)=>{e.writeUint64(t);},ce=(e,t)=>{e.writeByte(t?1:0);},Qr=e=>(t,r)=>{let[n,o]=r;t.writeVarint32(n),e[n](t,o);},T=(e,t)=>{let r=ot.from(t),n=r.getPrecision();e.writeInt64(Math.round(r.amount*Math.pow(10,n))),e.writeUint8(n);for(let o=0;o<7;o++)e.writeUint8(r.symbol.charCodeAt(o)||0);},he=(e,t)=>{e.writeUint32(Math.floor(new Date(t+"Z").getTime()/1e3));},ie=(e,t)=>{t===null||typeof t=="string"&&t.slice(-39)==="1111111111111111111111111111111114T1Anm"?e.append(new Uint8Array(33).fill(0)):e.append(V.from(t).key);},Hr=(e=null)=>(t,r)=>{r=it.from(r);let n=r.buffer.length;if(e){if(n!==e)throw new Error(`Unable to serialize binary. Expected ${e} bytes, got ${n}`)}else t.writeVarint32(n);t.append(r.buffer);},Ur=Hr(),Bt=(e,t)=>(r,n)=>{r.writeVarint32(n.length);for(let[o,i]of n)e(r,o),t(r,i);},Q=e=>(t,r)=>{t.writeVarint32(r.length);for(let n of r)e(t,n);},te=e=>(t,r)=>{for(let[n,o]of e)try{o(t,r[n]);}catch(i){throw i.message=`${n}: ${i.message}`,i}},be=e=>(t,r)=>{r!==void 0?(t.writeByte(1),e(t,r)):t.writeByte(0);},H=te([["weight_threshold",j],["account_auths",Bt(w,ee)],["key_auths",Bt(ie,ee)]]),ni=te([["account",w],["weight",ee]]),Nt=te([["base",T],["quote",T]]),oi=te([["account_creation_fee",T],["maximum_block_size",j],["hbd_interest_rate",ee]]),E=(e,t)=>{let r=te(t);return (n,o)=>{n.writeVarint32(e),r(n,o);}},A={};A.account_create=E(k.account_create,[["fee",T],["creator",w],["new_account_name",w],["owner",H],["active",H],["posting",H],["memo_key",ie],["json_metadata",w]]);A.account_create_with_delegation=E(k.account_create_with_delegation,[["fee",T],["delegation",T],["creator",w],["new_account_name",w],["owner",H],["active",H],["posting",H],["memo_key",ie],["json_metadata",w],["extensions",Q(J)]]);A.account_update=E(k.account_update,[["account",w],["owner",be(H)],["active",be(H)],["posting",be(H)],["memo_key",ie],["json_metadata",w]]);A.account_witness_proxy=E(k.account_witness_proxy,[["account",w],["proxy",w]]);A.account_witness_vote=E(k.account_witness_vote,[["account",w],["witness",w],["approve",ce]]);A.cancel_transfer_from_savings=E(k.cancel_transfer_from_savings,[["from",w],["request_id",j]]);A.change_recovery_account=E(k.change_recovery_account,[["account_to_recover",w],["new_recovery_account",w],["extensions",Q(J)]]);A.claim_account=E(k.claim_account,[["creator",w],["fee",T],["extensions",Q(J)]]);A.claim_reward_balance=E(k.claim_reward_balance,[["account",w],["reward_hive",T],["reward_hbd",T],["reward_vests",T]]);A.comment=E(k.comment,[["parent_author",w],["parent_permlink",w],["author",w],["permlink",w],["title",w],["body",w],["json_metadata",w]]);A.comment_options=E(k.comment_options,[["author",w],["permlink",w],["max_accepted_payout",T],["percent_hbd",ee],["allow_votes",ce],["allow_curation_rewards",ce],["extensions",Q(Qr([te([["beneficiaries",Q(ni)]])]))]]);A.convert=E(k.convert,[["owner",w],["requestid",j],["amount",T]]);A.create_claimed_account=E(k.create_claimed_account,[["creator",w],["new_account_name",w],["owner",H],["active",H],["posting",H],["memo_key",ie],["json_metadata",w],["extensions",Q(J)]]);A.custom=E(k.custom,[["required_auths",Q(w)],["id",ee],["data",Ur]]);A.custom_json=E(k.custom_json,[["required_auths",Q(w)],["required_posting_auths",Q(w)],["id",w],["json",w]]);A.decline_voting_rights=E(k.decline_voting_rights,[["account",w],["decline",ce]]);A.delegate_vesting_shares=E(k.delegate_vesting_shares,[["delegator",w],["delegatee",w],["vesting_shares",T]]);A.delete_comment=E(k.delete_comment,[["author",w],["permlink",w]]);A.escrow_approve=E(k.escrow_approve,[["from",w],["to",w],["agent",w],["who",w],["escrow_id",j],["approve",ce]]);A.escrow_dispute=E(k.escrow_dispute,[["from",w],["to",w],["agent",w],["who",w],["escrow_id",j]]);A.escrow_release=E(k.escrow_release,[["from",w],["to",w],["agent",w],["who",w],["receiver",w],["escrow_id",j],["hbd_amount",T],["hive_amount",T]]);A.escrow_transfer=E(k.escrow_transfer,[["from",w],["to",w],["hbd_amount",T],["hive_amount",T],["escrow_id",j],["agent",w],["fee",T],["json_meta",w],["ratification_deadline",he],["escrow_expiration",he]]);A.feed_publish=E(k.feed_publish,[["publisher",w],["exchange_rate",Nt]]);A.limit_order_cancel=E(k.limit_order_cancel,[["owner",w],["orderid",j]]);A.limit_order_create=E(k.limit_order_create,[["owner",w],["orderid",j],["amount_to_sell",T],["min_to_receive",T],["fill_or_kill",ce],["expiration",he]]);A.limit_order_create2=E(k.limit_order_create2,[["owner",w],["orderid",j],["amount_to_sell",T],["exchange_rate",Nt],["fill_or_kill",ce],["expiration",he]]);A.recover_account=E(k.recover_account,[["account_to_recover",w],["new_owner_authority",H],["recent_owner_authority",H],["extensions",Q(J)]]);A.request_account_recovery=E(k.request_account_recovery,[["recovery_account",w],["account_to_recover",w],["new_owner_authority",H],["extensions",Q(J)]]);A.reset_account=E(k.reset_account,[["reset_account",w],["account_to_reset",w],["new_owner_authority",H]]);A.set_reset_account=E(k.set_reset_account,[["account",w],["current_reset_account",w],["reset_account",w]]);A.set_withdraw_vesting_route=E(k.set_withdraw_vesting_route,[["from_account",w],["to_account",w],["percent",ee],["auto_vest",ce]]);A.transfer=E(k.transfer,[["from",w],["to",w],["amount",T],["memo",w]]);A.transfer_from_savings=E(k.transfer_from_savings,[["from",w],["request_id",j],["to",w],["amount",T],["memo",w]]);A.transfer_to_savings=E(k.transfer_to_savings,[["from",w],["to",w],["amount",T],["memo",w]]);A.transfer_to_vesting=E(k.transfer_to_vesting,[["from",w],["to",w],["amount",T]]);A.vote=E(k.vote,[["voter",w],["author",w],["permlink",w],["weight",ri]]);A.withdraw_vesting=E(k.withdraw_vesting,[["account",w],["vesting_shares",T]]);A.witness_update=E(k.witness_update,[["owner",w],["url",w],["block_signing_key",ie],["props",oi],["fee",T]]);A.witness_set_properties=E(k.witness_set_properties,[["owner",w],["props",Bt(w,Ur)],["extensions",Q(J)]]);A.account_update2=E(k.account_update2,[["account",w],["owner",be(H)],["active",be(H)],["posting",be(H)],["memo_key",be(ie)],["json_metadata",w],["posting_json_metadata",w],["extensions",Q(J)]]);A.create_proposal=E(k.create_proposal,[["creator",w],["receiver",w],["start_date",he],["end_date",he],["daily_pay",T],["subject",w],["permlink",w],["extensions",Q(J)]]);A.update_proposal_votes=E(k.update_proposal_votes,[["voter",w],["proposal_ids",Q(Nr)],["approve",ce],["extensions",Q(J)]]);A.remove_proposal=E(k.remove_proposal,[["proposal_owner",w],["proposal_ids",Q(Nr)],["extensions",Q(J)]]);var ii=te([["end_date",he]]);A.update_proposal=E(k.update_proposal,[["proposal_id",Mr],["creator",w],["daily_pay",T],["subject",w],["permlink",w],["extensions",Q(Qr([J,ii]))]]);A.collateralized_convert=E(k.collateralized_convert,[["owner",w],["requestid",j],["amount",T]]);A.recurrent_transfer=E(k.recurrent_transfer,[["from",w],["to",w],["amount",T],["memo",w],["recurrence",ee],["executions",ee],["extensions",Q(te([["type",Br],["value",te([["pair_id",Br]])]]))]]);var si=(e,t)=>{let r=A[t[0]];if(!r)throw new Error(`No serializer for operation: ${t[0]}`);try{r(e,t[1]);}catch(n){throw n.message=`${t[0]}: ${n.message}`,n}},ai=te([["ref_block_num",ee],["ref_block_prefix",j],["expiration",he],["operations",Q(si)],["extensions",Q(w)]]),ci=te([["from",ie],["to",ie],["nonce",Mr],["check",j],["encrypted",Hr()]]),re={Asset:T,Memo:ci,Price:Nt,PublicKey:ie,String:w,Transaction:ai,UInt16:ee,UInt32:j};var Qe=e=>new Promise(t=>setTimeout(t,e));var ui=(()=>{try{return !(typeof navigator<"u"&&navigator.product==="ReactNative")&&typeof process<"u"&&process.versions!=null&&process.versions.node!=null}catch{return false}})();function jr(){return ui?{"User-Agent":C.userAgent}:{}}var se=class extends Error{name="RPCError";data;code;stack=void 0;constructor(t){super(t.message),this.code=t.code,"data"in t&&(this.data=t.data);}},Pe=class extends Error{node;rateLimitMs;constructor(t,r,n=0){super(r),this.node=t,this.rateLimitMs=n;}},pi=["ECONNREFUSED","ENOTFOUND","EHOSTUNREACH","EAI_AGAIN"],li=["Failed to fetch","NetworkError when attempting to fetch","Load failed","fetch failed"];function di(e){if(!e)return "";let t=[String(e.name||""),String(e.message||""),String(e.code||"")],r=e.cause;for(let n=0;r&&n<5;n++)t.push(String(r.code||""),String(r.message||"")),r=r.cause;return t.join(" ")}function fi(e){if(!e)return false;if(e instanceof Pe)return true;if(e instanceof se)return false;let t=di(e);return !!(pi.some(r=>t.includes(r))||li.some(r=>t.includes(r))||e instanceof SyntaxError||/Unexpected token|JSON\.parse|Unexpected end of JSON/i.test(t))}function mi(e,t){return !!(e===-32603||e<=-32e3&&e>=-32099||e===-32601||e===-32602&&/unable to parse|endpoint data|internal/i.test(t))}function Lr(e){let t=e.indexOf(".");return t>0?e.slice(0,t):e}var gi=2,yi=6e4,Vr=12e4,hi=30,Mt=.3,Wr=3,Qt=5*6e4,$r=6e4,Gr=1e3,zr=2e3,Jr=700,Yr=2.5,_i=new Set(["hapi.ecency.com","api.ecency.com"]);function wi(e){try{return _i.has(new URL(e).hostname)}catch{return false}}var st=class{health=new Map;getOrCreate(t){let r=this.health.get(t);return r||(r={consecutiveFailures:0,lastFailureTime:0,rateLimitedUntil:0,apiFailures:new Map,headBlock:0,headBlockUpdatedAt:0,ewmaLatencyMs:void 0,latencySampleCount:0,latencyUpdatedAt:0,lastProbeAt:Date.now()},this.health.set(t,r)),r}recordSuccess(t,r,n){let o=this.getOrCreate(t);o.consecutiveFailures=0,r&&o.apiFailures.delete(r),typeof n=="number"&&Number.isFinite(n)&&n>=0&&this.recordLatency(o,n);}recordSlowFailure(t,r){!Number.isFinite(r)||r<zr||this.recordLatency(this.getOrCreate(t),r);}recordLatency(t,r){let n=Date.now();t.latencyUpdatedAt>0&&n-t.latencyUpdatedAt>Qt&&(t.ewmaLatencyMs=void 0,t.latencySampleCount=0),t.ewmaLatencyMs=t.ewmaLatencyMs===void 0?r:Mt*r+(1-Mt)*t.ewmaLatencyMs,t.latencySampleCount++,t.latencyUpdatedAt=n;}recordFailure(t,r){let n=this.getOrCreate(t);if(r){let o=Date.now(),i=n.apiFailures.get(r)??{count:0,cooldownUntil:0,lastFailureTime:0};(i.cooldownUntil>0&&i.cooldownUntil<=o||i.lastFailureTime>0&&o-i.lastFailureTime>3e4)&&(i.count=0,i.cooldownUntil=0),i.count++,i.lastFailureTime=o,i.count>=gi&&(i.cooldownUntil=o+yi),n.apiFailures.set(r,i);}else n.consecutiveFailures++,n.lastFailureTime=Date.now();}recordRateLimit(t,r=1e4){let n=this.getOrCreate(t);n.rateLimitedUntil=Date.now()+r,n.consecutiveFailures++,n.lastFailureTime=Date.now();}recordHeadBlock(t,r){if(!r||!Number.isFinite(r))return;let n=this.getOrCreate(t);n.headBlock=r,n.headBlockUpdatedAt=Date.now();}consensusHeadBlock(){let t=Date.now(),r=[];for(let n of this.health.values())n.headBlock>0&&t-n.headBlockUpdatedAt<=Vr&&r.push(n.headBlock);return r.length<2?0:(r.sort((n,o)=>n-o),r[Math.floor((r.length-1)/2)])}isNodeHealthy(t,r){let n=this.health.get(t);if(!n)return true;let o=Date.now();if(n.rateLimitedUntil>o||n.consecutiveFailures>=3&&o-n.lastFailureTime<3e4)return false;if(r){let s=n.apiFailures.get(r);if(s&&s.cooldownUntil>o)return false}let i=this.consensusHeadBlock();return !(i>0&&n.headBlock>0&&o-n.headBlockUpdatedAt<=Vr&&i-n.headBlock>hi)}getOrderedNodes(t,r){let n=[],o=[];for(let p of t)this.isNodeHealthy(p,r)?n.push(p):o.push(p);if(n.length<=1)return [...n,...o];let i=Date.now(),s=this.fastestUsableLatency(n,i),a=n.map((p,l)=>({node:p,i:l,score:this.scoreNode(p,s,i)})).sort((p,l)=>p.score-l.score||p.i-l.i).map(p=>p.node),u=this.pickReprobeCandidate(n,i);return u&&a[0]!==u?[u,...a.filter(p=>p!==u),...o]:[...a,...o]}isLatencyUsable(t,r){return !!t&&t.ewmaLatencyMs!==void 0&&t.latencySampleCount>=Wr&&r-t.latencyUpdatedAt<=Qt}fastestUsableLatency(t,r){let n=1/0;for(let o of t){let i=this.health.get(o);this.isLatencyUsable(i,r)&&(n=Math.min(n,i.ewmaLatencyMs));}return n}scoreNode(t,r,n){let o=this.health.get(t);if(!this.isLatencyUsable(o,n))return Gr;let i=o.ewmaLatencyMs;return wi(t)?r>0&&r!==1/0&&i>Yr*r?i:Math.max(i-Jr,0):i}pickReprobeCandidate(t,r){let n=r-$r,o,i=1/0;for(let s of t){let a=this.getOrCreate(s),u=Math.max(a.latencyUpdatedAt,a.lastProbeAt);u<=n&&u<i&&(o=s,i=u);}return o&&(this.getOrCreate(o).lastProbeAt=r),o}},_e=new st,ve=new st;function Xr(e,t,r,n){r instanceof Pe?r.rateLimitMs>0?e.recordRateLimit(t,r.rateLimitMs):e.recordFailure(t,n):r instanceof se?e.recordFailure(t,n):e.recordFailure(t);}function bi(e,t,r,n){if(!n||typeof n!="object"||!r.includes("get_dynamic_global_properties"))return;let o=n.head_block_number;typeof o=="number"&&e.recordHeadBlock(t,o);}function vi(){if(typeof DOMException<"u")return new DOMException("The operation was aborted due to timeout","TimeoutError");let e=new Error("The operation was aborted due to timeout");return e.name="TimeoutError",e}function Zr(e){if(typeof AbortSignal.timeout=="function")return {signal:AbortSignal.timeout(e),cleanup:()=>{}};let t=new AbortController,r=setTimeout(()=>t.abort(vi()),e);return {signal:t.signal,cleanup:()=>clearTimeout(r)}}function en(e,t){if(!t)return {signal:e,cleanup:()=>{}};if(typeof AbortSignal.any=="function")return {signal:AbortSignal.any([e,t]),cleanup:()=>{}};let r=new AbortController;if(e.aborted)return r.abort(e.reason),{signal:r.signal,cleanup:()=>{}};if(t.aborted)return r.abort(t.reason),{signal:r.signal,cleanup:()=>{}};let n=()=>r.abort(e.reason),o=()=>r.abort(t.reason);e.addEventListener("abort",n,{once:true}),t.addEventListener("abort",o,{once:true});let i=()=>{e.removeEventListener("abort",n),t.removeEventListener("abort",o);};return {signal:r.signal,cleanup:i}}var at=async(e,t,r,n=C.timeout,o=false,i)=>{let s=Math.floor(Math.random()*1e8),a={jsonrpc:"2.0",method:t,params:r,id:s},{signal:u,cleanup:p}=Zr(n),{signal:l,cleanup:m}=en(u,i),d=()=>{p(),m();};try{let y=await fetch(e,{method:"POST",body:JSON.stringify(a),headers:{"Content-Type":"application/json",...jr()},signal:l});if(y.status===429){let v=y.headers.get("Retry-After"),S=v?parseInt(v,10)*1e3:1e4;throw new Pe(e,"HTTP 429 Rate Limited",S)}if(y.status>=500&&y.status<600)throw new Pe(e,`HTTP ${y.status} from ${e}`);let P=await y.json();if(!P||typeof P.id>"u"||P.id!==s||P.jsonrpc!=="2.0")throw new Error("JSONRPC id mismatch");if("result"in P)return P.result;if("error"in P){let v=P.error;throw "message"in v&&"code"in v?new se(v):P.error}throw P}catch(y){if(y instanceof se||y instanceof Pe||i?.aborted)throw y;if(o)return at(e,t,r,n,false,i);throw y}finally{d();}};function tn(){return Qe(50+Math.random()*50)}var g=async(e,t=[],r=C.timeout,n=C.retry,o)=>{if(!Array.isArray(C.nodes))throw new Error("config.nodes is not an array");if(C.nodes.length===0)throw new Error("config.nodes is empty");let i=Lr(e),s=new Set,a;for(let u=0;u<=n;u++){let p=_e.getOrderedNodes(C.nodes,i),l=p.find(d=>!s.has(d));l||(s.clear(),l=p[0]),s.add(l);let m=Date.now();try{let d=await at(l,e,t,r,!1,o);return _e.recordSuccess(l,i,Date.now()-m),bi(_e,l,e,d),d}catch(d){if(d instanceof se&&!mi(d.code,d.message)||o?.aborted)throw d;Xr(_e,l,d,i),_e.recordSlowFailure(l,Date.now()-m),a=d,u<n&&await tn();}}throw a},qe=async(e,t=[],r=C.broadcastTimeout,n)=>{if(!Array.isArray(C.nodes))throw new Error("config.nodes is not an array");if(C.nodes.length===0)throw new Error("config.nodes is empty");let o=Lr(e),i=new Set,s;for(let a=0;a<C.nodes.length;a++){let p=_e.getOrderedNodes(C.nodes,o).find(l=>!i.has(l));if(!p)break;if(i.add(p),n?.aborted)throw new Error("Aborted");try{let l=await at(p,e,t,r,!1,n);return _e.recordSuccess(p,o),l}catch(l){if(l instanceof se||n?.aborted||(Xr(_e,p,l,o),s=l,!fi(l)))throw l}}throw s},Pi={balance:"/balance-api",hafah:"/hafah-api",hafbe:"/hafbe-api",hivemind:"/hivemind-api",hivesense:"/hivesense-api",reputation:"/reputation-api","nft-tracker":"/nft-tracker-api",hafsql:"/hafsql",status:"/status-api"};async function L(e,t,r,n=C.timeout,o=C.retry,i){if(!Array.isArray(C.restNodes))throw new Error("config.restNodes is not an array");if(C.restNodes.length===0)throw new Error("config.restNodes is empty");let s=C.restNodesByApi?.[e]?.length?C.restNodesByApi[e]:C.restNodes,a=new Set,u,p=false;for(let l=0;l<=o;l++){let m=ve.getOrderedNodes(s,e),d=m.find(N=>!a.has(N));d||(a.clear(),d=m[0]),a.add(d);let y=d+Pi[e],P=t,v=r||{},S=new Set;Object.entries(v).forEach(([N,oe])=>{P.includes(`{${N}}`)&&(P=P.replace(`{${N}}`,encodeURIComponent(String(oe))),S.add(N));});let R=new URL(y+P);if(Object.entries(v).forEach(([N,oe])=>{S.has(N)||(Array.isArray(oe)?oe.forEach(Kt=>R.searchParams.append(N,String(Kt))):R.searchParams.set(N,String(oe)));}),i?.aborted)throw new Error("Aborted");p=false;let{signal:D,cleanup:Tt}=Zr(n),{signal:Rt,cleanup:qt}=en(D,i),Ft=()=>{Tt(),qt();},Ze=Date.now();try{let N=await fetch(R.toString(),{signal:Rt,headers:jr()});if(N.status===404)throw new Error("HTTP 404 - Hint: can happen on wrong params");if(N.status===429){let oe=N.headers.get("Retry-After"),Kt=oe?parseInt(oe,10)*1e3:1e4;throw ve.recordRateLimit(d,Kt),p=!0,new Error(`HTTP 429 Rate Limited by ${d}`)}if(N.status===503)throw ve.recordFailure(d,e),p=!0,new Error(`HTTP 503 Service Unavailable from ${d}`);if(!N.ok)throw ve.recordFailure(d,e),p=!0,new Error(`HTTP ${N.status} from ${d}`);return ve.recordSuccess(d,e,Date.now()-Ze),N.json()}catch(N){if(N?.message?.includes("HTTP 404")||i?.aborted)throw N;p||ve.recordFailure(d,e),ve.recordSlowFailure(d,Date.now()-Ze),u=N,l<o&&await tn();}finally{Ft();}}throw u}var ct=async(e,t=[],r=2,n)=>{if(!Array.isArray(C.nodes))throw new Error("config.nodes is not an Array");if(r>C.nodes.length)throw new Error("quorum > config.nodes.length");let i=(u=>{let p=[...u];for(let l=p.length-1;l>0;l--){let m=Math.floor(Math.random()*(l+1));[p[l],p[m]]=[p[m],p[l]];}return p})(C.nodes),s=Math.min(r,i.length),a=[];for(;s>0&&i.length>0;){let u=i.splice(0,s),p=[],l=[];for(let d=0;d<u.length;d++)p.push(at(u[d],e,t,void 0,true,n).then(y=>l.push(y)).catch(()=>{}));await Promise.all(p),a.push(...l);let m=Oi(a,r);if(m)return m;if(s=Math.min(r,i.length),s===0)throw new Error("No more nodes available.")}throw new Error("Couldn't reach quorum.")};function Oi(e,t){let r=new Map;for(let o of e){let i=JSON.stringify(o);r.has(i)||r.set(i,[]),r.get(i).push(o);}let n=Array.from(r.values()).find(o=>o.length>=t);return n?n[0]:null}var xi=hexToBytes(C.chain_id),Oe=class e{transaction;expiration=6e4;txId;constructor(t){t?.transaction&&(t.transaction instanceof e?(this.transaction=t.transaction.transaction,this.expiration=t.transaction.expiration):this.transaction=t.transaction,this.transaction&&!Array.isArray(this.transaction.signatures)&&(this.transaction.signatures=[]),this.txId=this.digest().txId),t?.expiration&&(this.expiration=t.expiration);}async addOperation(t,r){this.transaction||await this.createTransaction(this.expiration),this.transaction.operations.push([t,r]);}sign(t){if(!this.transaction)throw new Error("First create a transaction by .addOperation()");if(this.transaction){let{digest:r,txId:n}=this.digest();Array.isArray(t)||(t=[t]);for(let o of t){let i=o.sign(r);this.transaction.signatures.push(i.customToString());}return this.txId=n,this.transaction}else throw new Error("No transaction to sign")}async broadcast(t=false){if(!this.transaction)throw new Error("Attempted to broadcast an empty transaction. Add operations by .addOperation()");if(this.transaction.signatures.length===0)throw new Error("Attempted to broadcast a transaction with no signatures. Sign using .sign(keys)");try{await qe("condenser_api.broadcast_transaction",[this.transaction]);}catch(i){if(!(i instanceof se&&i.message.includes("Duplicate transaction check failed")))throw i}if(this.txId||(this.txId=this.digest().txId),!t)return {tx_id:this.txId,status:"unknown"};let r=60;await Qe(1e3);let n=await this.checkStatus(),o=1;for(;n?.status!=="within_irreversible_block"&&n?.status!=="expired_irreversible"&&n?.status!=="too_old"&&o<r;)await Qe(1e3+o*300),n=await this.checkStatus(),o++;return {tx_id:this.txId,status:n?.status??"unknown"}}digest(){if(!this.transaction)throw new Error("First create a transaction by .addOperation()");let t=new q(q.DEFAULT_CAPACITY,q.LITTLE_ENDIAN),r={...this.transaction};try{re.Transaction(t,r);}catch(s){throw new Error("Unable to serialize transaction: "+s)}t.flip();let n=new Uint8Array(t.toBuffer()),o=bytesToHex(sha256(n)).slice(0,40);return {digest:sha256(new Uint8Array([...xi,...n])),txId:o}}addSignature(t){if(!this.transaction)throw new Error("First create a transaction by .create(operations)");if(typeof t!="string")throw new Error("Signature must be string");if(t.length!==130)throw new Error("Signature must be 130 characters long");return this.transaction.signatures.push(t),this.transaction}async checkStatus(){return this.txId||(this.txId=this.digest().txId),g("transaction_status_api.find_transaction",{transaction_id:this.txId,expiration:this.transaction?.expiration})}createTransaction=async t=>{let r=await g("condenser_api.get_dynamic_global_properties",[]),n=hexToBytes(r.head_block_id),o=Number(new Uint32Array(n.buffer,n.byteOffset+4,1)[0]),i=new Date(Date.now()+t).toISOString().slice(0,-5);this.transaction={expiration:i,extensions:[],operations:[],ref_block_num:r.head_block_number&65535,ref_block_prefix:o,signatures:[]};}};var cn=new Uint8Array([128]),M=class e{key;constructor(t){this.key=t;try{secp256k1.getPublicKey(t);}catch{throw new Error("invalid private key")}}static from(t){return typeof t=="string"?e.fromString(t):new e(t)}static fromString(t){return new e(Ci(t).subarray(1))}static fromSeed(t){if(typeof t=="string")if(/^[0-9a-fA-F]+$/.test(t))t=hexToBytes(t);else {let n=[];for(let o=0;o<t.length;o++){let i=t.charCodeAt(o);if(i<128)n.push(i);else if(i<2048)n.push(192|i>>6,128|i&63);else if(i>=55296&&i<=56319&&o+1<t.length){let s=t.charCodeAt(++o);i=65536+((i&1023)<<10)+(s&1023),n.push(240|i>>18,128|i>>12&63,128|i>>6&63,128|i&63);}else n.push(224|i>>12,128|i>>6&63,128|i&63);}t=new Uint8Array(n);}return new e(sha256(t))}static fromLogin(t,r,n="active"){let o=t+n+r;return e.fromSeed(o)}sign(t){let r=secp256k1.sign(t,this.key,{extraEntropy:true,format:"recovered",prehash:false}),n=parseInt(bytesToHex(r.subarray(0,1)),16);return ye.from((n+31).toString(16)+bytesToHex(r.subarray(1)))}createPublic(t){return new V(secp256k1.getPublicKey(this.key),t)}toString(){return Si(new Uint8Array([...cn,...this.key]))}inspect(){let t=this.toString();return `PrivateKey: ${t.slice(0,6)}...${t.slice(-6)}`}getSharedSecret(t){let r=secp256k1.getSharedSecret(this.key,t.key);return sha512(r.subarray(1))}static randomKey(){return new e(secp256k1.keygen().secretKey)}},un=e=>sha256(sha256(e)),Si=e=>{let t=un(e);return Dr.encode(new Uint8Array([...e,...t.slice(0,4)]))},Ci=e=>{let t=Dr.decode(e);if(!sn(t.slice(0,1),cn))throw new Error("Private key network id mismatch");let r=t.slice(-4),n=t.slice(0,-4),o=un(n).slice(0,4);if(!sn(r,o))throw new Error("Private key checksum mismatch");return n},sn=(e,t)=>{if(e===t)return true;if(e.byteLength!==t.byteLength)return false;let r=e.byteLength,n=0;for(;n<r&&e[n]===t[n];)n++;return n===r};var ln=(e,t,r,n=Ii())=>fn(e,t,n,r),dn=(e,t,r,n,o)=>fn(e,t,r,n,o).message,fn=(e,t,r,n,o)=>{let i=r,s=e.getSharedSecret(t),a=new q(q.DEFAULT_CAPACITY,q.LITTLE_ENDIAN);a.writeUint64(i),a.append(s),a.flip();let u=sha512(new Uint8Array(a.toBuffer())),p=u.subarray(32,48),l=u.subarray(0,32),m=sha256(u).subarray(0,4),d=new q(q.DEFAULT_CAPACITY,q.LITTLE_ENDIAN);d.append(m),d.flip();let y=d.readUint32();if(o!==void 0){if(y!==o)throw new Error("Invalid key");n=Fi(n,l,p);}else n=Ki(n,l,p);return {nonce:i,message:n,checksum:y}},Fi=(e,t,r)=>{let n=e;return n=cbc(t,r).decrypt(n),n},Ki=(e,t,r)=>{let n=e;return n=cbc(t,r).encrypt(n),n},Ut=null,Ii=()=>{if(Ut===null){let r=secp256k1.utils.randomSecretKey();Ut=r[0]<<8|r[1];}let e=BigInt(Date.now()),t=++Ut%65536;return e=e<<BigInt(16)|BigInt(t),e};var mn=e=>{let t=Hi(e,33);return new V(t)},Bi=e=>e.readUint64(),Ni=e=>e.readUint32(),Mi=e=>{let t=e.readVarint32(),r=e.copy(e.offset,e.offset+t);return e.skip(t),new Uint8Array(r.toBuffer())},Qi=e=>t=>{let r={},n=new q(q.DEFAULT_CAPACITY,q.LITTLE_ENDIAN);n.append(t),n.flip();for(let[o,i]of e)try{r[o]=i(n);}catch(s){throw s.message=`${o}: ${s.message}`,s}return r};function Hi(e,t){if(e){let r=e.copy(e.offset,e.offset+t);return e.skip(t),new Uint8Array(r.toBuffer())}else throw Error("No buffer found on first parameter")}var Ui=Qi([["from",mn],["to",mn],["nonce",Bi],["check",Ni],["encrypted",Mi]]),gn={Memo:Ui};var hn=(e,t,r,n)=>{if(!r.startsWith("#"))return r;r=r.substring(1),wn(),e=bn(e),t=Vi(t);let o=new q(q.DEFAULT_CAPACITY,q.LITTLE_ENDIAN);o.writeVString(r);let i=new Uint8Array(o.copy(0,o.offset).toBuffer()),{nonce:s,message:a,checksum:u}=ln(e,t,i,n),p=new q(q.DEFAULT_CAPACITY,q.LITTLE_ENDIAN);re.Memo(p,{check:u,encrypted:a,from:e.createPublic(),nonce:s,to:t}),p.flip();let l=new Uint8Array(p.toBuffer());return "#"+Dr.encode(l)},_n=(e,t)=>{if(!t.startsWith("#"))return t;t=t.substring(1),wn(),e=bn(e);let r=gn.Memo(Dr.decode(t)),{from:n,to:o,nonce:i,check:s,encrypted:a}=r,p=e.createPublic().toString()===new V(n.key).toString()?new V(o.key):new V(n.key);r=dn(e,p,i,a,s);let l=new q(q.DEFAULT_CAPACITY,q.LITTLE_ENDIAN);return l.append(r),l.flip(),"#"+l.readVString()},ut,wn=()=>{if(ut===void 0){let e;ut=true;try{let t="5JdeC9P7Pbd1uGdFVEsJ41EkEnADbbHGq6p1BwFxm6txNBsQnsw",n=hn(t,"STM8m5UgaFAAYQRuaNejYdS8FVLVp9Ss3K1qAVk5de6F8s3HnVbvA","#memo\u7231");e=_n(t,n);}finally{ut=e==="#memo\u7231";}}if(ut===false)throw new Error("This environment does not support encryption.")},bn=e=>typeof e=="string"?M.fromString(e):e,Vi=e=>typeof e=="string"?V.fromString(e):e,vn={decode:_n,encode:hn};var G={};et(G,{buildWitnessSetProperties:()=>zi,makeBitMaskFilter:()=>$i,operations:()=>Wi,validateUsername:()=>Li});var Li=e=>{let t="Account name should ";if(!e)return t+"not be empty.";let r=e.length;if(r<3)return t+"be longer.";if(r>16)return t+"be shorter.";/\./.test(e)&&(t="Each account segment should ");let n=e.split("."),o=n.length;for(let i=0;i<o;i++){let s=n[i];if(!/^[a-z]/.test(s))return t+"start with a lowercase letter.";if(!/^[a-z0-9-]*$/.test(s))return t+"have only lowercase letters, digits, or dashes.";if(!/[a-z0-9]$/.test(s))return t+"end with a lowercase letter or digit.";if(s.length<3)return t+"be longer."}return null},Wi={vote:0,comment:1,transfer:2,transfer_to_vesting:3,withdraw_vesting:4,limit_order_create:5,limit_order_cancel:6,feed_publish:7,convert:8,account_create:9,account_update:10,witness_update:11,account_witness_vote:12,account_witness_proxy:13,pow:14,custom:15,report_over_production:16,delete_comment:17,custom_json:18,comment_options:19,set_withdraw_vesting_route:20,limit_order_create2:21,claim_account:22,create_claimed_account:23,request_account_recovery:24,recover_account:25,change_recovery_account:26,escrow_transfer:27,escrow_dispute:28,escrow_release:29,pow2:30,escrow_approve:31,transfer_to_savings:32,transfer_from_savings:33,cancel_transfer_from_savings:34,custom_binary:35,decline_voting_rights:36,reset_account:37,set_reset_account:38,claim_reward_balance:39,delegate_vesting_shares:40,account_create_with_delegation:41,witness_set_properties:42,account_update2:43,create_proposal:44,update_proposal_votes:45,remove_proposal:46,update_proposal:47,collateralized_convert:48,recurrent_transfer:49,fill_convert_request:50,author_reward:51,curation_reward:52,comment_reward:53,liquidity_reward:54,interest:55,fill_vesting_withdraw:56,fill_order:57,shutdown_witness:58,fill_transfer_from_savings:59,hardfork:60,comment_payout_update:61,return_vesting_delegation:62,comment_benefactor_reward:63,producer_reward:64,clear_null_account_balance:65,proposal_pay:66,sps_fund:67,hardfork_hive:68,hardfork_hive_restore:69,delayed_voting:70,consolidate_treasury_balance:71,effective_comment_vote:72,ineffective_delete_comment:73,sps_convert:74,expired_account_notification:75,changed_recovery_account:76,transfer_to_vesting_completed:77,pow_reward:78,vesting_shares_split:79,account_created:80,fill_collateralized_convert_request:81,system_warning:82,fill_recurrent_transfer:83,failed_recurrent_transfer:84,limit_order_cancelled:85,producer_missed:86,proposal_fee:87,collateralized_convert_immediate_conversion:88,escrow_approved:89,escrow_rejected:90,proxy_cleared:91,declined_voting_rights:92},$i=e=>e.reduce(Gi,[BigInt(0),BigInt(0)]).map(t=>t!==BigInt(0)?t.toString():null),Gi=([e,t],r)=>r<64?[e|BigInt(1)<<BigInt(r),t]:[e,t|BigInt(1)<<BigInt(r-64)],zi=(e,t)=>{let r={extensions:[],owner:e,props:[]};for(let n of Object.keys(t)){if(t[n]===void 0)continue;let o;switch(n){case "key":case "new_signing_key":o=re.PublicKey;break;case "account_subsidy_budget":case "account_subsidy_decay":case "maximum_block_size":o=re.UInt32;break;case "hbd_interest_rate":o=re.UInt16;break;case "url":o=re.String;break;case "hbd_exchange_rate":o=re.Price;break;case "account_creation_fee":o=re.Asset;break;default:throw new Error(`Unknown witness prop: ${n}`)}r.props.push([n,Ji(o,t[n])]);}return r.props.sort((n,o)=>n[0].localeCompare(o[0])),["witness_set_properties",r]},Ji=(e,t)=>{let r=new q(q.DEFAULT_CAPACITY,q.LITTLE_ENDIAN);return e(r,t),r.flip(),bytesToHex(new Uint8Array(r.toBuffer()))};function sf(e){let t;if(typeof e=="string"){let r=[];for(let n=0;n<e.length;n++){let o=e.charCodeAt(n);if(o<128)r.push(o);else if(o<2048)r.push(192|o>>6,128|o&63);else if(o>=55296&&o<=56319&&n+1<e.length){let i=e.charCodeAt(++n);o=65536+((o&1023)<<10)+(i&1023),r.push(240|o>>18,128|o>>12&63,128|o>>6&63,128|o&63);}else r.push(224|o>>12,128|o>>6&63,128|o&63);}t=new Uint8Array(r);}else t=e;return sha256(t)}function Pn(e){try{return M.fromString(e),!0}catch{return false}}async function W(e,t){let r=new Oe;for(let n of e)await r.addOperation(n[0],n[1]);return r.sign(t),qe("condenser_api.broadcast_transaction_synchronous",[r.transaction])}async function On(e,t){let r=new Oe;for(let n of e)await r.addOperation(n[0],n[1]);return r.sign(t),r.broadcast(false)}var Xi=432e3;function An(e,t){let r=Date.now()/1e3-t.last_update_time,n=Number(t.current_mana)+r*e/Xi,o=Math.round(n/e*1e4);return !isFinite(o)||o<0?o=0:o>1e4&&(o=1e4),{current_mana:n,max_mana:e,percentage:o}}function Zi(e){let t=parseFloat(e.vesting_shares),r=parseFloat(e.delegated_vesting_shares),n=parseFloat(e.received_vesting_shares),o=parseFloat(e.vesting_withdraw_rate),i=(Number(e.to_withdraw)-Number(e.withdrawn))/1e6,s=Math.min(o,i);return t-s-r+n}function Vt(e){let t=Zi(e)*1e6;return An(t,e.voting_manabar)}function pt(e){return An(Number(e.max_rc),e.rc_manabar)}var xn=(u=>(u.COMMON="common",u.INFO="info",u.INSUFFICIENT_RESOURCE_CREDITS="insufficient_resource_credits",u.MISSING_AUTHORITY="missing_authority",u.TOKEN_EXPIRED="token_expired",u.NETWORK="network",u.TIMEOUT="timeout",u.VALIDATION="validation",u))(xn||{});function Fe(e){let t=e?.error_description?String(e.error_description):"",r=e?.message?String(e.message):"",n=e?.error?String(e.error):"",o=t||r||String(e||""),i=a=>!!(n&&a.test(n)||t&&a.test(t)||r&&a.test(r)||o&&a.test(o));if(i(/please wait to transact/i)||i(/insufficient rc/i)||i(/rc mana|rc account|resource credits/i))return {message:"Insufficient Resource Credits. Please wait or power up.",type:"insufficient_resource_credits",originalError:e};if(i(/you may only post once every/i))return {message:"Please wait before posting again (minimum 3 second interval between comments).",type:"common",originalError:e};if(i(/your current vote on this comment is identical/i))return {message:"You have already voted with the same weight.",type:"info",originalError:e};if(i(/must claim something/i))return {message:"You must claim rewards before performing this action.",type:"info",originalError:e};if(i(/cannot claim that much vests/i))return {message:"Cannot claim that amount. Please check your pending rewards.",type:"info",originalError:e};if(i(/cannot delete a comment with net positive/i))return {message:"Cannot delete a comment with positive votes.",type:"info",originalError:e};if(i(/children == 0/i))return {message:"Cannot delete a comment with replies.",type:"common",originalError:e};if(i(/comment_cashout/i))return {message:"Cannot modify a comment that has already been paid out.",type:"common",originalError:e};if(i(/votes evaluating for comment that is paid out is forbidden/i))return {message:"Cannot vote on posts that have already been paid out.",type:"common",originalError:e};if(i(/no (active|owner|posting|memo) key available/i))return {message:"Key not available. Please provide your key to sign this operation.",type:"missing_authority",originalError:e};if(i(/missing (required )?active authority/i))return {message:"Missing active authority. This operation requires your active key.",type:"missing_authority",originalError:e};if(i(/missing (required )?owner authority/i))return {message:"Missing owner authority. This operation requires your owner key.",type:"missing_authority",originalError:e};if(i(/missing (required )?posting authority/i))return {message:"Missing posting authority. Please check your login method.",type:"missing_authority",originalError:e};if(n==="invalid_grant"||n==="unauthorized_access"||i(/token expired/i)||i(/invalid token/i)||i(/\bunauthorized\b/i)||i(/\bforbidden\b/i))return {message:"Authentication token expired. Please log in again.",type:"token_expired",originalError:e};if(i(/has already reblogged/i)||i(/already reblogged this post/i))return {message:"You have already reblogged this post.",type:"info",originalError:e};if(i(/duplicate transaction/i))return {message:"This transaction has already been processed.",type:"info",originalError:e};if(i(/econnrefused/i)||i(/connection refused/i)||i(/failed to fetch/i)||i(/\bnetwork[-\s]?(request|error|timeout|unreachable|down|failed)\b/i))return {message:"Network error. Please check your connection and try again.",type:"network",originalError:e};if(i(/timeout/i)||i(/timed out/i))return {message:"Request timed out. Please try again.",type:"timeout",originalError:e};if(i(/account.*does not exist/i)||i(/account not found/i))return {message:"Account not found. Please check the username.",type:"validation",originalError:e};if(i(/invalid memo key/i))return {message:"Invalid memo key. Cannot encrypt message.",type:"validation",originalError:e};if(i(/(?:insufficient.*(?:funds|balance)|(?:funds|balance).*insufficient)/i))return {message:"Insufficient funds for this transaction.",type:"validation",originalError:e};if(i(/\b(invalid|validation)\b/i))return {message:(e?.message||o).substring(0,150)||"Validation error occurred",type:"validation",originalError:e};if(e?.error_description&&typeof e.error_description=="string")return {message:e.error_description.substring(0,150),type:"common",originalError:e};if(e?.message&&typeof e.message=="string")return {message:e.message.substring(0,150),type:"common",originalError:e};let s;return typeof e=="object"&&e!==null?e.error_description?s=String(e.error_description):e.code?s=`Error code: ${e.code}`:o&&o!=="[object Object]"?s=o.substring(0,150):s="Unknown error occurred":s=o.substring(0,150)||"Unknown error occurred",{message:s,type:"common",originalError:e}}function es(e){let t=Fe(e);return [t.message,t.type]}function ue(e){let{type:t}=Fe(e);return t==="missing_authority"||t==="token_expired"}function ts(e){let{type:t}=Fe(e);return t==="insufficient_resource_credits"}function rs(e){let{type:t}=Fe(e);return t==="info"}function ns(e){let{type:t}=Fe(e);return t==="network"||t==="timeout"}async function pe(e,t,r,n,o="posting",i,s,a="async"){let u=n?.adapter;switch(e){case "key":{if(!u)throw new Error("No adapter provided for key-based auth");let p=i;if(p===void 0)switch(o){case "owner":if(u.getOwnerKey)p=await u.getOwnerKey(t);else throw new Error("Owner key not supported by adapter. Owner operations (like account recovery) require master password login or manual key entry.");break;case "active":u.getActiveKey&&(p=await u.getActiveKey(t));break;case "memo":if(u.getMemoKey)p=await u.getMemoKey(t);else throw new Error("Memo key not supported by adapter. Use memo encryption methods instead.");break;case "posting":default:p=await u.getPostingKey(t);break}if(!p)throw new Error(`No ${o} key available for ${t}`);let l=M.fromString(p);return a==="async"?await On(r,l):await W(r,l)}case "hiveauth":{if(!u?.broadcastWithHiveAuth)throw new Error("HiveAuth not supported by adapter");return await u.broadcastWithHiveAuth(t,r,o)}case "hivesigner":{if(!u)throw new Error("No adapter provided for HiveSigner auth");if(o!=="posting"){if(u.broadcastWithHiveSigner)return await u.broadcastWithHiveSigner(t,r,o);throw new Error(`HiveSigner access token cannot sign ${o} operations. No platform broadcast available.`)}let p=s!==void 0?s:await u.getAccessToken(t);if(p)try{return (await new kn.Client({accessToken:p}).broadcast(r)).result}catch(l){if(u.broadcastWithHiveSigner&&ue(l))return await u.broadcastWithHiveSigner(t,r,o);throw l}if(u.broadcastWithHiveSigner)return await u.broadcastWithHiveSigner(t,r,o);throw new Error(`No access token available for ${t}`)}case "keychain":{if(!u?.broadcastWithKeychain)throw new Error("Keychain not supported by adapter");return await u.broadcastWithKeychain(t,r,o)}case "custom":{if(!n?.broadcast)throw new Error("No custom broadcast function provided");return await n.broadcast(r,o)}default:throw new Error(`Unknown auth method: ${e}`)}}async function is(e,t,r,n="posting",o="async"){let i=r?.adapter;if(i?.getLoginType){let l=await i.getLoginType(e,n);if(l){let m=i.hasPostingAuthorization?await i.hasPostingAuthorization(e):false;if(n==="posting"&&m&&l==="key")try{return await pe("hivesigner",e,t,r,n,void 0,void 0,o)}catch(d){if(!ue(d))throw d;console.warn("[SDK] HiveSigner token auth failed, falling back to key:",d);}if(n==="posting"&&m&&l==="keychain")try{return await pe("hivesigner",e,t,r,n,void 0,void 0,o)}catch(d){if(!ue(d))throw d;console.warn("[SDK] HiveSigner token auth failed, falling back to keychain/snap:",d);}if(n==="posting"&&m&&l==="hiveauth")try{return await pe("hivesigner",e,t,r,n,void 0,void 0,o)}catch(d){if(!ue(d))throw d;console.warn("[SDK] HiveSigner token auth failed, falling back to HiveAuth:",d);}try{return await pe(l,e,t,r,n,void 0,void 0,o)}catch(d){if(ue(d)&&i.showAuthUpgradeUI&&(n==="posting"||n==="active")){let y=t.length>0?t[0][0]:"unknown",P=await i.showAuthUpgradeUI(n,y);if(!P)throw new Error(`Operation requires ${n} authority. User declined alternate auth.`);return await pe(P,e,t,r,n,void 0,void 0,o)}throw d}}if(n==="posting")try{return await pe("hivesigner",e,t,r,n,void 0,void 0,o)}catch(m){if(ue(m)&&i.showAuthUpgradeUI){let d=t.length>0?t[0][0]:"unknown",y=await i.showAuthUpgradeUI(n,d);if(!y)throw new Error(`No login type available for ${e}. Please log in again.`);return await pe(y,e,t,r,n,void 0,void 0,o)}throw m}else if(n==="active"&&i.showAuthUpgradeUI){let m=t.length>0?t[0][0]:"unknown",d=await i.showAuthUpgradeUI(n,m);if(!d)throw new Error(`Operation requires ${n} authority. User declined alternate auth.`);return await pe(d,e,t,r,n,void 0,void 0,o)}}let s=r?.fallbackChain??["key","hiveauth","hivesigner","keychain","custom"],a=new Map;for(let l of s)try{let m=!1,d="",y,P;switch(l){case "key":if(!i)m=!0,d="No adapter provided";else {let v;switch(n){case "owner":i.getOwnerKey&&(v=await i.getOwnerKey(e));break;case "active":i.getActiveKey&&(v=await i.getActiveKey(e));break;case "memo":i.getMemoKey&&(v=await i.getMemoKey(e));break;case "posting":default:v=await i.getPostingKey(e);break}v?y=v:(m=!0,d=`No ${n} key available`);}break;case "hiveauth":i?.broadcastWithHiveAuth||(m=!0,d="HiveAuth not supported by adapter");break;case "hivesigner":if(!i)m=!0,d="No adapter provided";else {let v=await i.getAccessToken(e);v&&(P=v);}break;case "keychain":i?.broadcastWithKeychain||(m=!0,d="Keychain not supported by adapter");break;case "custom":r?.broadcast||(m=!0,d="No custom broadcast function provided");break}if(m){a.set(l,new Error(`Skipped: ${d}`));continue}return await pe(l,e,t,r,n,y,P,o)}catch(m){if(a.set(l,m),!ue(m))throw m}if(!Array.from(a.values()).some(l=>!l.message.startsWith("Skipped:"))){let l=Array.from(a.entries()).map(([m,d])=>`${m}: ${d.message}`).join(", ");throw new Error(`[SDK][Broadcast] No auth methods attempted for ${e}. ${l}`)}let p=Array.from(a.entries()).map(([l,m])=>`${l}: ${m.message}`).join(", ");throw new Error(`[SDK][Broadcast] All auth methods failed for ${e}. Errors: ${p}`)}function b(e=[],t,r,n=()=>{},o,i="posting",s){let a=s?.broadcastMode??"async";return useMutation({onSuccess:n,onMutate:s?.onMutate,onError:s?.onError,onSettled:s?.onSettled,mutationKey:[...e,t],mutationFn:async u=>{if(!t)throw new Error("[Core][Broadcast] Attempted to call broadcast API with anon user");let p=r(u);if(o?.enableFallback!==false&&o?.adapter)return is(t,p,o,i,a);if(o?.broadcast)return o.broadcast(p,i);let l=o?.postingKey;if(l){if(i!=="posting")throw new Error(`[SDK][Broadcast] Legacy auth only supports posting authority, but '${i}' was requested. Use AuthContextV2 with an adapter for ${i} operations.`);let d=M.fromString(l);return W(p,d)}let m=o?.accessToken;if(m)return (await new kn.Client({accessToken:m}).broadcast(p)).result;throw new Error("[SDK][Broadcast] \u2013 cannot broadcast w/o posting key or token")}})}async function En(e,t,r,n){if(!e)throw new Error("[Core][Broadcast] Attempted to call broadcast API with anon user");let o={id:t,required_auths:[],required_posting_auths:[e],json:JSON.stringify(r)};if(n?.broadcast)return n.broadcast([["custom_json",o]],"posting");let i=n?.postingKey;if(i){let a=M.fromString(i);return W([["custom_json",o]],a)}let s=n?.accessToken;if(s)return (await new kn.Client({accessToken:s}).customJson([],[e],t,JSON.stringify(r))).result;throw new Error("[SDK][Broadcast] \u2013 cannot broadcast w/o posting key or token")}var Pf=4e3;function O(e,t,r){if(e?.invalidateQueries){if(t==="sync")return e.invalidateQueries(r);setTimeout(()=>e.invalidateQueries?.(r),4e3);}}function le(e,t){let r=AbortSignal.timeout(e);if(!t)return r;if(typeof AbortSignal.any=="function")return AbortSignal.any([t,r]);let n=new AbortController,o=()=>{let i=t.aborted?t.reason:r.reason;n.abort(i),t.removeEventListener("abort",o),r.removeEventListener("abort",o);};return t.aborted?n.abort(t.reason):r.aborted?n.abort(r.reason):(t.addEventListener("abort",o,{once:true}),r.addEventListener("abort",o,{once:true})),n.signal}var Ae=(()=>{try{return process.env?.NODE_ENV==="development"}catch{return false}})(),cs=()=>{try{return process.env?.VITE_HELIUS_API_KEY}catch{return}},de=1e4,f={privateApiHost:"https://ecency.com",imageHost:"https://i.ecency.com",get hiveNodes(){return C.nodes},heliusApiKey:cs(),queryClient:new QueryClient,pollsApiHost:"https://poll.ecency.com",plausibleHost:"https://pl.ecency.com",spkNode:"https://spk.good-karma.xyz",dmcaAccounts:[],dmcaTags:[],dmcaPatterns:[],dmcaTagRegexes:[],dmcaPatternRegexes:[],_dmcaInitialized:false},B;(m=>{function e(d){f.queryClient=d;}m.setQueryClient=e;function t(d){f.privateApiHost=d;}m.setPrivateApiHost=t;function r(){return f.privateApiHost?f.privateApiHost:typeof window<"u"&&window.location?.origin?window.location.origin:"https://ecency.com"}m.getValidatedBaseUrl=r;function n(d){f.pollsApiHost=d;}m.setPollsApiHost=n;function o(d){f.imageHost=d;}m.setImageHost=o;function i(d){It(d);}m.setHiveNodes=i;function s(d){Dt(d);}m.setUserAgent=s;function a(d){if(/(\([^)]*[*+{][^)]*\))[*+{]/.test(d))return {safe:false,reason:"nested quantifiers detected"};if(/\([^|)]*\|[^)]*\)[*+{]/.test(d))return {safe:false,reason:"alternation with quantifier (potential overlap)"};if(/\([^)]*[*+][^)]*\)[*+]/.test(d))return {safe:false,reason:"repeated quantifiers (catastrophic backtracking risk)"};if(/\.\*\.\*/.test(d)||/\.\+\.\+/.test(d))return {safe:false,reason:"multiple greedy quantifiers on wildcards"};let y=/\.?\{(\d+),(\d+)\}/g,P;for(;(P=y.exec(d))!==null;){let[,v,S]=P;if(parseInt(S,10)-parseInt(v,10)>1e3)return {safe:false,reason:`excessive range: {${v},${S}}`}}return {safe:true}}function u(d){let y=["a".repeat(50)+"x","ab".repeat(50)+"x","x".repeat(100),"aaa".repeat(30)+"bbb".repeat(30)+"x"],P=5;for(let v of y){let S=Date.now();try{d.test(v);let R=Date.now()-S;if(R>P)return {safe:!1,reason:`runtime test exceeded ${P}ms (took ${R}ms on input length ${v.length})`}}catch(R){return {safe:false,reason:`runtime test threw error: ${R}`}}}return {safe:true}}function p(d,y=200){try{if(!d)return Ae&&console.warn("[SDK] DMCA pattern rejected: empty pattern"),null;if(d.length>y)return Ae&&console.warn(`[SDK] DMCA pattern rejected: length ${d.length} exceeds max ${y} - pattern: ${d.substring(0,50)}...`),null;let P=a(d);if(!P.safe)return Ae&&console.warn(`[SDK] DMCA pattern rejected: static analysis failed (${P.reason}) - pattern: ${d.substring(0,50)}...`),null;let v;try{v=new RegExp(d);}catch(R){return Ae&&console.warn(`[SDK] DMCA pattern rejected: compilation failed - pattern: ${d.substring(0,50)}...`,R),null}let S=u(v);return S.safe?v:(Ae&&console.warn(`[SDK] DMCA pattern rejected: runtime test failed (${S.reason}) - pattern: ${d.substring(0,50)}...`),null)}catch(P){return Ae&&console.warn(`[SDK] DMCA pattern rejected: unexpected error - pattern: ${d.substring(0,50)}...`,P),null}}function l(d={}){let y=R=>Array.isArray(R)?R.filter(D=>typeof D=="string"):[],P=d||{},v={accounts:y(P.accounts),tags:y(P.tags),patterns:y(P.posts)};f.dmcaAccounts=v.accounts,f.dmcaTags=v.tags,f.dmcaPatterns=v.patterns,f.dmcaTagRegexes=v.tags.map(R=>p(R)).filter(R=>R!==null),f.dmcaPatternRegexes=[];let S=v.tags.length-f.dmcaTagRegexes.length;!f._dmcaInitialized&&Ae&&(console.log("[SDK] DMCA configuration loaded:"),console.log(` - Accounts: ${v.accounts.length}`),console.log(` - Tag patterns: ${f.dmcaTagRegexes.length}/${v.tags.length} compiled (${S} rejected)`),console.log(` - Post patterns: ${v.patterns.length} (using exact string matching)`),S>0&&console.warn(`[SDK] ${S} DMCA tag patterns were rejected due to security validation. Check warnings above for details.`)),f._dmcaInitialized=true;}m.setDmcaLists=l;})(B||={});function Kf(){return new QueryClient({defaultOptions:{queries:{refetchOnWindowFocus:false,refetchOnMount:false}}})}var h=()=>f.queryClient,ds;(s=>{function e(a){return h().getQueryData(a)}s.getQueryData=e;function t(a){return h().getQueryData(a)}s.getInfiniteQueryData=t;async function r(a){return await h().prefetchQuery(a),e(a.queryKey)}s.prefetchQuery=r;async function n(a){return await h().prefetchInfiniteQuery(a),t(a.queryKey)}s.prefetchInfiniteQuery=n;function o(a){return {prefetch:()=>r(a),getData:()=>e(a.queryKey),useClientQuery:()=>useQuery(a),fetchAndGet:()=>h().fetchQuery(a)}}s.generateClientServerQuery=o;function i(a){return {prefetch:()=>n(a),getData:()=>t(a.queryKey),useClientQuery:()=>useInfiniteQuery(a),fetchAndGet:()=>h().fetchInfiniteQuery(a)}}s.generateClientServerInfiniteQuery=i;})(ds||={});function Df(e){return btoa(JSON.stringify(e))}function Bf(e){let t=atob(e);if(t[0]==="{")return JSON.parse(t)}var Sn=(o=>(o.HIVE="HIVE",o.HBD="HBD",o.VESTS="VESTS",o.SPK="SPK",o))(Sn||{}),lt=(e=>(e["@@000000021"]="HIVE",e["@@000000013"]="HBD",e["@@000000037"]="VESTS",e))(lt||{});function x(e){if(typeof e=="string"){let t=e.split(" ");return {amount:parseFloat(t[0]),symbol:Sn[t[1]]}}else return {amount:parseFloat(e.amount.toString())/Math.pow(10,e.precision),symbol:lt[e.nai]}}var jt;function _(){if(!jt){if(typeof globalThis.fetch!="function")throw new Error("[Ecency][SDK] - global fetch is not available");jt=globalThis.fetch.bind(globalThis);}return jt}function Cn(e){return typeof e=="string"?/^hive-\d+$/.test(e):false}function fs(e){return e&&typeof e=="object"&&"data"in e&&"pagination"in e&&Array.isArray(e.data)}function Y(e,t){return fs(e)?e:{data:Array.isArray(e)?e:[],pagination:{total:Array.isArray(e)?e.length:0,limit:t,offset:0,has_next:false}}}function Ke(e,t){return e/1e6*t}function Tn(e){return e===void 0?true:parseInt(e.split("-")[0],10)<1980}var Rn=60*1e3;function fe(){return queryOptions({queryKey:c.core.dynamicProps(),refetchInterval:Rn,staleTime:Rn,queryFn:async({signal:e})=>{let[t,r,n,o,i]=await Promise.all([g("condenser_api.get_dynamic_global_properties",[],void 0,void 0,e),g("condenser_api.get_feed_history",[],void 0,void 0,e),g("condenser_api.get_chain_properties",[],void 0,void 0,e),g("condenser_api.get_reward_fund",["post"],void 0,void 0,e),g("database_api.get_hardfork_properties",{},void 0,void 0,e).catch(()=>({current_hardfork_version:"1.28.0",last_hardfork:28}))]),s=x(t.total_vesting_shares).amount,a=x(t.total_vesting_fund_hive).amount,u=0;Number.isFinite(s)&&s!==0&&Number.isFinite(a)&&(u=a/s*1e6);let p=x(r.current_median_history.base).amount,l=x(r.current_median_history.quote).amount,m=parseFloat(o.recent_claims),d=x(o.reward_balance).amount,y=Number(t.vote_power_reserve_rate??0),P=o.author_reward_curve??"linear",v=Number(o.content_constant??0),S=String(i.current_hardfork_version??"0.0.0"),R=Number(i.last_hardfork??0),D=t.hbd_print_rate,Tt=t.hbd_interest_rate,Rt=t.head_block_number,qt=a,Ft=s,Ze=x(t.virtual_supply).amount,N=t.vesting_reward_percent||0,oe=n.account_creation_fee;return {hivePerMVests:u,base:p,quote:l,fundRecentClaims:m,fundRewardBalance:d,votePowerReserveRate:y,authorRewardCurve:P,contentConstant:v,currentHardforkVersion:S,lastHardfork:R,hbdPrintRate:D,hbdInterestRate:Tt,headBlock:Rt,totalVestingFund:qt,totalVestingShares:Ft,virtualSupply:Ze,vestingRewardPercent:N,accountCreationFee:oe,raw:{globalDynamic:t,feedHistory:r,chainProps:n,rewardFund:o,hardforkProps:i}}}})}function Zf(e="post"){return queryOptions({queryKey:c.core.rewardFund(e),queryFn:()=>g("condenser_api.get_reward_fund",[e])})}function xe(...e){let t=e.length;for(;t>0&&e[t-1]===void 0;)t--;return e.slice(0,t)}var c={posts:{entry:e=>["posts","entry",e],postHeader:(e,t)=>["posts","post-header",e,t],content:(e,t)=>["posts","content",e,t],contentReplies:(e,t)=>["posts","content-replies",e,t],accountPosts:(e,t,r,n)=>["posts","account-posts",e,t,r,n],accountPostsPage:(e,t,r,n,o,i)=>["posts","account-posts-page",e,t,r,n,o,i],userPostVote:(e,t,r)=>["posts","user-vote",e,t,r],reblogs:(e,t)=>["posts","reblogs",e,t],entryActiveVotes:(e,t)=>["posts","entry-active-votes",e,t],rebloggedBy:(e,t)=>["posts","reblogged-by",e,t],tips:(e,t)=>["posts","tips",e,t],normalize:(e,t)=>["posts","normalize",e,t],drafts:e=>["posts","drafts",e],draftsInfinite:(e,t)=>xe("posts","drafts","infinite",e,t),schedules:e=>["posts","schedules",e],schedulesInfinite:(e,t)=>xe("posts","schedules","infinite",e,t),fragments:e=>["posts","fragments",e],fragmentsInfinite:(e,t)=>xe("posts","fragments","infinite",e,t),images:e=>["posts","images",e],galleryImages:e=>["posts","gallery-images",e],imagesInfinite:(e,t)=>xe("posts","images","infinite",e,t),promoted:e=>["posts","promoted",e],_promotedPrefix:["posts","promoted"],accountPostsBlogPrefix:e=>["posts","account-posts",e,"blog"],postsRanked:(e,t,r,n)=>["posts","posts-ranked",e,t,r,n],postsRankedPage:(e,t,r,n,o,i)=>["posts","posts-ranked-page",e,t,r,n,o,i],discussions:(e,t,r,n)=>["posts","discussions",e,t,r,n],discussion:(e,t,r)=>["posts","discussion",e,t,r],deletedEntry:e=>["posts","deleted-entry",e],commentHistory:(e,t,r)=>["posts","comment-history",e,t,r],trendingTags:()=>["posts","trending-tags"],trendingTagsWithStats:e=>["posts","trending-tags","stats",e],wavesFeed:(e={})=>["posts","waves","feed",e.tag??"",e.following??"",e.author??"",e.observer??"",e.limit??0,[...e.containers??[]].sort().join(",")],shortsFeed:(e={})=>["posts","waves","shorts",e.tag??"",e.author??"",e.observer??"",e.limit??0,[...e.containers??[]].sort().join(",")],wavesByHost:e=>["posts","waves","by-host",e],wavesByTag:(e,t)=>["posts","waves","by-tag",e,t],wavesFollowing:(e,t)=>["posts","waves","following",e,t],wavesTrendingTags:(e,t)=>["posts","waves","trending-tags",e,t],wavesByAccount:(e,t)=>["posts","waves","by-account",e,t],wavesTrendingAuthors:e=>["posts","waves","trending-authors",e],_prefix:["posts"]},accounts:{full:e=>["get-account-full",e],list:(...e)=>["accounts","list",...e],friends:(e,t,r,n)=>["accounts","friends",e,t,r,n],searchFriends:(e,t,r)=>["accounts","friends","search",e,t,r],subscriptions:e=>["accounts","subscriptions",e],followCount:e=>["accounts","follow-count",e],recoveries:e=>["accounts","recoveries",e],pendingRecovery:e=>["accounts","recoveries",e,"pending-request"],checkWalletPending:(e,t)=>["accounts","check-wallet-pending",e,t],mutedUsers:e=>["accounts","muted-users",e],following:(e,t,r,n)=>["accounts","following",e,t,r,n],followers:(e,t,r,n)=>["accounts","followers",e,t,r,n],search:(e,t)=>["accounts","search",e,t],profiles:(e,t)=>["accounts","profiles",e,t],lookup:(e,t)=>["accounts","lookup",e,t],transactions:(e,t,r)=>["accounts","transactions",e,t,r],favorites:e=>["accounts","favorites",e],favoritesInfinite:(e,t)=>xe("accounts","favorites","infinite",e,t),checkFavorite:(e,t)=>["accounts","favorites","check",e,t],relations:(e,t)=>["accounts","relations",e,t],bots:()=>["accounts","bots"],voteHistory:(e,t)=>["accounts","vote-history",e,t],reputations:(e,t)=>["accounts","reputations",e,t],bookmarks:e=>["accounts","bookmarks",e],bookmarksInfinite:(e,t)=>xe("accounts","bookmarks","infinite",e,t),referrals:e=>["accounts","referrals",e],referralsStats:e=>["accounts","referrals-stats",e],_prefix:["accounts"]},notifications:{announcements:()=>["notifications","announcements"],spotlights:()=>["notifications","spotlights"],list:(e,t)=>["notifications",e,t],unreadCount:e=>["notifications","unread",e],settings:e=>["notifications","settings",e],_prefix:["notifications"]},core:{rewardFund:e=>["core","reward-fund",e],dynamicProps:()=>["core","dynamic-props"],chainProperties:()=>["core","chain-properties"],_prefix:["core"]},communities:{single:(e,t)=>["community","single",e,t],singlePrefix:e=>["community","single",e],context:(e,t)=>["community","context",e,t],rewarded:()=>["communities","rewarded"],list:(e,t,r)=>["communities","list",e,t,r],subscribers:e=>["communities","subscribers",e],accountNotifications:(e,t)=>["communities","account-notifications",e,t]},proposals:{list:()=>["proposals","list"],proposal:e=>["proposals","proposal",e],votes:(e,t,r)=>["proposals","votes",e,t,r],votesPrefix:e=>["proposals","votes",e],votesByUser:e=>["proposals","votes","by-user",e]},search:{topics:(e,t)=>["search","topics",e,t],path:e=>["search","path",e],account:(e,t)=>["search","account",e,t],results:(e,t,r,n,o,i)=>["search",e,t,typeof r=="string"?r==="1"||r==="true":r,n,o,i],controversialRising:(e,t)=>["search","controversial-rising",e,t],similarEntries:(e,t,r)=>r?["search","similar-entries",e,t,r]:["search","similar-entries",e,t],api:(e,t,r,n,o,i)=>xe("search","api",e,t,r,n,o,i)},witnesses:{list:e=>["witnesses","list",e],votes:e=>["witnesses","votes",e],proxy:()=>["witnesses","proxy"],voters:(e,t,r,n,o)=>["witnesses","voters",e,t,r,n,o],voterCount:e=>["witnesses","voter-count",e]},wallet:{outgoingRcDelegations:(e,t)=>["wallet","outgoing-rc-delegations",e,t],vestingDelegations:(e,t)=>["wallet","vesting-delegations",e,t],withdrawRoutes:e=>["wallet","withdraw-routes",e],incomingRc:e=>["wallet","incoming-rc",e],conversionRequests:e=>["wallet","conversion-requests",e],receivedVestingShares:e=>["wallet","received-vesting-shares",e],savingsWithdraw:e=>["wallet","savings-withdraw",e],openOrders:e=>["wallet","open-orders",e],collateralizedConversionRequests:e=>["wallet","collateralized-conversion-requests",e],recurrentTransfers:e=>["wallet","recurrent-transfers",e],balanceHistory:(e,t,r)=>["wallet","balance-history",e,t,r],aggregatedHistory:(e,t,r)=>r===void 0?["wallet","aggregated-history",e,t]:["wallet","aggregated-history",e,t,r],portfolio:(e,t,r)=>["wallet","portfolio","v2",e,t,r]},assets:{hiveGeneralInfo:e=>["assets","hive","general-info",e],hiveTransactions:(e,t,r)=>["assets","hive","transactions",e,t,r],hiveWithdrawalRoutes:e=>["assets","hive","withdrawal-routes",e],hiveMetrics:e=>["assets","hive","metrics",e],hbdGeneralInfo:e=>["assets","hbd","general-info",e],hbdTransactions:(e,t,r)=>["assets","hbd","transactions",e,t,r],hivePowerGeneralInfo:e=>["assets","hive-power","general-info",e],hivePowerDelegates:e=>["assets","hive-power","delegates",e],hivePowerDelegatings:e=>["assets","hive-power","delegatings",e],hivePowerTransactions:(e,t,r)=>["assets","hive-power","transactions",e,t,r],pointsGeneralInfo:e=>["assets","points","general-info",e],pointsTransactions:(e,t)=>["assets","points","transactions",e,t],ecencyAssetInfo:(e,t,r)=>["ecency-wallets","asset-info",e,t,r]},market:{statistics:()=>["market","statistics"],orderBook:e=>["market","order-book",e],history:(e,t,r)=>["market","history",e,t,r],feedHistory:()=>["market","feed-history"],hiveHbdStats:()=>["market","hive-hbd-stats"],data:(e,t,r,n)=>["market","data",e,t,r,n],tradeHistory:(e,t,r)=>["market","trade-history",e,t,r],currentMedianHistoryPrice:()=>["market","current-median-history-price"]},analytics:{discoverCuration:e=>["analytics","discover-curation",e],pageStats:(e,t,r,n)=>["analytics","page-stats",e,t,r,n],discoverLeaderboard:e=>["analytics","discover-leaderboard",e]},promotions:{promotePrice:()=>["promotions","promote-price"],boostPlusPrices:()=>["promotions","boost-plus-prices"],boostPlusAccounts:e=>["promotions","boost-plus-accounts",e]},resourceCredits:{account:e=>["resource-credits","account",e],stats:()=>["resource-credits","stats"]},points:{points:(e,t)=>["points",e,t],_prefix:e=>["points",e]},polls:{details:(e,t)=>["polls","details",e,t],vote:(e,t)=>e&&t?["polls","vote",e,t]:["polls","vote"],_prefix:["polls"]},operations:{chainProperties:()=>["operations","chain-properties"]},games:{statusCheck:(e,t)=>["games","status-check",e,t]},quests:{status:e=>["quests","status",e]},badActors:{list:()=>["bad-actors","list"],_prefix:["bad-actors"]},ai:{prices:()=>["ai","prices"],assistPrices:e=>["ai","assist-prices",e],_prefix:["ai"]}};function om(e){return queryOptions({queryKey:c.ai.prices(),queryFn:async()=>{let r=await _()(f.privateApiHost+"/private-api/ai-generate-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!r.ok)throw new Error(`Failed to fetch AI generation prices: ${r.status}`);return await r.json()},staleTime:3e5,enabled:!!e})}function cm(e,t){return queryOptions({queryKey:c.ai.assistPrices(e),queryFn:async()=>{let n=await _()(f.privateApiHost+"/private-api/ai-assist-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch AI assist prices: ${n.status}`);return await n.json()},staleTime:6e4,enabled:!!t})}function dm(e,t){return useMutation({mutationKey:["ai","generate-image"],mutationFn:async r=>{if(!e)throw new Error("[SDK][AI][GenerateImage] \u2013 username wasn't provided");if(!t)throw new Error("[SDK][AI][GenerateImage] \u2013 access token wasn't found");let o=await _()(f.privateApiHost+"/private-api/ai-generate-image",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,us:e,prompt:r.prompt,aspect_ratio:r.aspect_ratio??"1:1",power:r.power??1})});if(!o.ok){let i=await o.text(),s={};try{s=JSON.parse(i);}catch{}let a=new Error(`[SDK][AI][GenerateImage] \u2013 failed with status ${o.status}${i?`: ${i}`:""}`);throw a.status=o.status,a.data=s,a}return await o.json()},onSuccess:()=>{e&&h().invalidateQueries({queryKey:c.points._prefix(e)});}})}function bs(){if(typeof crypto<"u"&&typeof crypto.randomUUID=="function")return crypto.randomUUID();let e=new Uint8Array(16);if(typeof crypto<"u"&&typeof crypto.getRandomValues=="function")crypto.getRandomValues(e);else for(let t=0;t<e.length;t++)e[t]=Math.floor(Math.random()*256);return Array.from(e).map(t=>t.toString(16).padStart(2,"0")).join("")}function ym(e,t){return useMutation({mutationKey:["ai","assist"],mutationFn:async r=>{if(!e)throw new Error("[SDK][AI][Assist] \u2013 username wasn't provided");if(!t)throw new Error("[SDK][AI][Assist] \u2013 access token wasn't found");let o=await _()(f.privateApiHost+"/private-api/ai-assist",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:r.code??t,us:e,action:r.action,text:r.text,idempotency_key:bs()})});if(!o.ok){let i=await o.text(),s={};try{s=JSON.parse(i);}catch{}let a=new Error(`[SDK][AI][Assist] \u2013 failed with status ${o.status}${i?`: ${i}`:""}`);throw a.status=o.status,a.data=s,a}return await o.json()},onSuccess:r=>{e&&(r.cost>0&&h().invalidateQueries({queryKey:c.points._prefix(e)}),h().invalidateQueries({queryKey:c.ai.assistPrices(e)}));}})}function I(e){return queryOptions({queryKey:c.accounts.full(e),queryFn:async({signal:t})=>{if(!e)return null;let r=await g("condenser_api.get_accounts",[[e]],void 0,void 0,t);if(!r[0])return null;let n=Ue(r[0].posting_json_metadata),[o,i]=await Promise.all([g("condenser_api.get_follow_count",[e],void 0,void 0,t).catch(()=>{}),L("reputation","/accounts/{account-name}/reputation",{"account-name":e}).then(s=>s??0).catch(()=>0)]);return {name:r[0].name,owner:r[0].owner,active:r[0].active,posting:r[0].posting,memo_key:r[0].memo_key,post_count:r[0].post_count,created:r[0].created,posting_json_metadata:r[0].posting_json_metadata,last_vote_time:r[0].last_vote_time,last_post:r[0].last_post,json_metadata:r[0].json_metadata,reward_hive_balance:r[0].reward_hive_balance,reward_hbd_balance:r[0].reward_hbd_balance,reward_vesting_hive:r[0].reward_vesting_hive,reward_vesting_balance:r[0].reward_vesting_balance,balance:r[0].balance,hbd_balance:r[0].hbd_balance,savings_balance:r[0].savings_balance,savings_hbd_balance:r[0].savings_hbd_balance,savings_hbd_last_interest_payment:r[0].savings_hbd_last_interest_payment,savings_hbd_seconds_last_update:r[0].savings_hbd_seconds_last_update,savings_hbd_seconds:r[0].savings_hbd_seconds,next_vesting_withdrawal:r[0].next_vesting_withdrawal,pending_claimed_accounts:r[0].pending_claimed_accounts,vesting_shares:r[0].vesting_shares,delegated_vesting_shares:r[0].delegated_vesting_shares,received_vesting_shares:r[0].received_vesting_shares,vesting_withdraw_rate:r[0].vesting_withdraw_rate,to_withdraw:r[0].to_withdraw,withdrawn:r[0].withdrawn,witness_votes:r[0].witness_votes,proxy:r[0].proxy,recovery_account:r[0].recovery_account,proxied_vsf_votes:r[0].proxied_vsf_votes,voting_manabar:r[0].voting_manabar,voting_power:r[0].voting_power,downvote_manabar:r[0].downvote_manabar,follow_stats:o,reputation:i,profile:n}},enabled:!!e,staleTime:6e4})}var Ps=new Set(["__proto__","constructor","prototype"]);function dt(e){if(!e||typeof e!="object"||Array.isArray(e))return false;let t=Object.getPrototypeOf(e);return t===null||t===Object.prototype}function qn(e,t){let r={...e};for(let n of Object.keys(t)){if(Ps.has(n))continue;let o=t[n],i=r[n];dt(o)&&dt(i)?r[n]=qn(i,o):r[n]=o;}return r}function Os(e){if(!(!e||!Array.isArray(e)))return e.map(({meta:t,...r})=>{if(!t||typeof t!="object")return {...r,meta:t};let{privateKey:n,username:o,...i}=t;return {...r,meta:i}})}function Ue(e){if(!e)return {};try{let t=JSON.parse(e);if(t&&typeof t=="object"&&t.profile&&typeof t.profile=="object")return t.profile}catch(t){console.warn("[SDK] Failed to parse posting_json_metadata:",t,{length:e?.length??0});}return {}}function Fn(e){return Ue(e?.posting_json_metadata)}function As(e){if(!e)return {};try{let t=JSON.parse(e);if(dt(t))return t}catch(t){console.warn("[SDK] Failed to parse posting_json_metadata root:",t,{length:e?.length??0});}return {}}function Kn({existingPostingJsonMetadata:e,profile:t,tokens:r}){let n=As(e),o=dt(n.profile)?n.profile:{},i=Lt({existingProfile:o,profile:t,tokens:r});return JSON.stringify({...n,profile:i})}function Lt({existingProfile:e,profile:t,tokens:r}){let{tokens:n,version:o,...i}=t??{},s=qn(e??{},i);return s.tokens&&!Array.isArray(s.tokens)&&(s.tokens=void 0),r!==void 0?s.tokens=r&&r.length>0?r:[]:n!==void 0&&(s.tokens=n),s.tokens=Os(s.tokens),s.version=2,s}function ft(e){return e.map(t=>{let r={name:t.name,owner:t.owner,active:t.active,posting:t.posting,memo_key:t.memo_key,post_count:t.post_count,created:t.created,reputation:t.reputation,posting_json_metadata:t.posting_json_metadata,last_vote_time:t.last_vote_time,last_post:t.last_post,json_metadata:t.json_metadata,reward_hive_balance:t.reward_hive_balance,reward_hbd_balance:t.reward_hbd_balance,reward_vesting_hive:t.reward_vesting_hive,reward_vesting_balance:t.reward_vesting_balance,balance:t.balance,hbd_balance:t.hbd_balance,savings_balance:t.savings_balance,savings_hbd_balance:t.savings_hbd_balance,savings_hbd_last_interest_payment:t.savings_hbd_last_interest_payment,savings_hbd_seconds_last_update:t.savings_hbd_seconds_last_update,savings_hbd_seconds:t.savings_hbd_seconds,next_vesting_withdrawal:t.next_vesting_withdrawal,pending_claimed_accounts:t.pending_claimed_accounts,vesting_shares:t.vesting_shares,delegated_vesting_shares:t.delegated_vesting_shares,received_vesting_shares:t.received_vesting_shares,vesting_withdraw_rate:t.vesting_withdraw_rate,to_withdraw:t.to_withdraw,withdrawn:t.withdrawn,witness_votes:t.witness_votes,proxy:t.proxy,recovery_account:t.recovery_account,proxied_vsf_votes:t.proxied_vsf_votes,voting_manabar:t.voting_manabar,voting_power:t.voting_power,downvote_manabar:t.downvote_manabar},n=Ue(t.posting_json_metadata);if(!n||Object.keys(n).length===0)try{let o=JSON.parse(t.json_metadata||"{}");o.profile&&(n=o.profile);}catch{}return (!n||Object.keys(n).length===0)&&(n={about:"",cover_image:"",location:"",name:"",profile_image:"",website:""}),{...r,profile:n}})}function Tm(e){return queryOptions({queryKey:c.accounts.list(...e),enabled:e.length>0,queryFn:async()=>{let t=await g("condenser_api.get_accounts",[e]);return ft(t)}})}function Im(e){return queryOptions({queryKey:c.accounts.followCount(e),queryFn:()=>g("condenser_api.get_follow_count",[e])})}function Qm(e,t,r="blog",n=100){return queryOptions({queryKey:c.accounts.followers(e,t,r,n),queryFn:()=>g("condenser_api.get_followers",[e,t,r,n]),enabled:!!e})}function Lm(e,t,r="blog",n=100){return queryOptions({queryKey:c.accounts.following(e,t,r,n),queryFn:()=>g("condenser_api.get_following",[e,t,r,n]),enabled:!!e})}function Jm(e,t=100){return queryOptions({queryKey:c.accounts.mutedUsers(e),queryFn:async()=>(await g("condenser_api.get_following",[e,"","ignore",t])).map(n=>n.following),enabled:!!e})}function tg(e,t=50){return queryOptions({queryKey:c.accounts.lookup(e,t),queryFn:()=>g("condenser_api.lookup_accounts",[e,t]),enabled:!!e,staleTime:1/0})}function sg(e,t=5,r=[]){return queryOptions({queryKey:c.accounts.search(e,r),enabled:!!e,queryFn:async()=>(await g("condenser_api.lookup_accounts",[e,t])).filter(o=>r.length>0?!r.includes(o):true)})}var Fs=new Set(["ownerPublicKey","activePublicKey","postingPublicKey","memoPublicKey"]);function pg(e,t){return queryOptions({queryKey:c.accounts.checkWalletPending(e,t??null),queryFn:async()=>{if(!e||!t)return {exist:false};let n=await _()(f.privateApiHost+"/private-api/wallets",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:e,code:t})});if(!n.ok)return {exist:false};let o=await n.json(),i=Array.isArray(o)?o.flatMap(s=>{if(!s||typeof s!="object")return [];let a=s,u=typeof a.token=="string"?a.token:void 0;if(!u)return [];let p=a.meta&&typeof a.meta=="object"?{...a.meta}:{},l={},m=typeof a.address=="string"&&a.address?a.address:void 0,y=(typeof a.status=="number"?a.status===3:void 0)??false;m&&(l.address=m),l.show=y;let P={symbol:u,currency:u,address:m,show:y,type:"CHAIN",meta:l},v=[];for(let[S,R]of Object.entries(p))typeof S=="string"&&(Fs.has(S)||typeof R!="string"||!R||/^[A-Z0-9]{2,10}$/.test(S)&&v.push({symbol:S,currency:S,address:R,show:y,type:"CHAIN",meta:{address:R,show:y}}));return [P,...v]}):[];return {exist:i.length>0,tokens:i.length?i:void 0,wallets:i.length?i:void 0}},refetchOnMount:true})}function In(e,t){return queryOptions({queryKey:c.accounts.relations(e,t),enabled:!!e&&!!t,refetchOnMount:false,refetchInterval:36e5,queryFn:async()=>await g("bridge.get_relationship_between_accounts",[e,t])})}function wg(e){return queryOptions({queryKey:c.accounts.subscriptions(e),enabled:!!e,queryFn:async({signal:t})=>await g("bridge.list_all_subscriptions",{account:e},void 0,void 0,t)??[]})}function Og(e,t){return queryOptions({queryKey:c.accounts.bookmarks(e),enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][Bookmarks] \u2013 missing auth");return await(await _()(f.privateApiHost+"/private-api/bookmarks",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})})).json()}})}function Ag(e,t,r=10){return infiniteQueryOptions({queryKey:c.accounts.bookmarksInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await _()(`${f.privateApiHost}/private-api/bookmarks?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch bookmarks: ${i.status}`);let s=await i.json();return Y(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function Sg(e,t){return queryOptions({queryKey:c.accounts.favorites(e),enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][Favorites] \u2013 missing auth");return await(await _()(f.privateApiHost+"/private-api/favorites",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})})).json()}})}function Cg(e,t,r=10){return infiniteQueryOptions({queryKey:c.accounts.favoritesInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await _()(`${f.privateApiHost}/private-api/favorites?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch favorites: ${i.status}`);let s=await i.json();return Y(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function Fg(e,t,r){return queryOptions({queryKey:c.accounts.checkFavorite(e,r),enabled:!!e&&!!t&&!!r,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][Favorites] \u2013 missing auth");if(!r)throw new Error("[SDK][Accounts][Favorites] \u2013 no target username");let o=await _()(f.privateApiHost+"/private-api/favorites-check",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,account:r})});if(!o.ok)throw new Error(`[SDK][Accounts][Favorites] \u2013 favorites-check failed with status ${o.status}: ${o.statusText}`);let i=await o.json();if(typeof i!="boolean")throw new Error(`[SDK][Accounts][Favorites] \u2013 favorites-check returned invalid type: expected boolean, got ${typeof i}`);return i}})}function Bg(e,t){return queryOptions({enabled:!!e&&!!t,queryKey:c.accounts.recoveries(e),queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts] Missing username or access token");return (await _()(f.privateApiHost+"/private-api/recoveries",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})})).json()}})}function Ug(e){return queryOptions({enabled:!!e,queryKey:c.accounts.pendingRecovery(e),queryFn:()=>g("database_api.find_change_recovery_account_requests",{accounts:[e]})})}function $g(e,t=50){return queryOptions({queryKey:c.accounts.reputations(e,t),enabled:!!e,queryFn:async()=>e?g("condenser_api.get_account_reputations",[e,t]):[]})}var F=G.operations,Dn={transfers:[F.transfer,F.transfer_to_savings,F.transfer_from_savings,F.cancel_transfer_from_savings,F.recurrent_transfer,F.fill_recurrent_transfer,F.escrow_transfer,F.fill_recurrent_transfer],"market-orders":[F.fill_convert_request,F.fill_order,F.fill_collateralized_convert_request,F.limit_order_create2,F.limit_order_create,F.limit_order_cancel],interests:[F.interest],"stake-operations":[F.return_vesting_delegation,F.withdraw_vesting,F.transfer_to_vesting,F.set_withdraw_vesting_route,F.update_proposal_votes,F.fill_vesting_withdraw,F.account_witness_proxy,F.delegate_vesting_shares],rewards:[F.author_reward,F.curation_reward,F.producer_reward,F.claim_reward_balance,F.comment_benefactor_reward,F.liquidity_reward,F.proposal_pay]},Ls=[...Object.values(Dn)].reduce((e,t)=>e.concat(t),[]);function Ws(e){return e.block*1e7+e.trx_in_block*100+e.op_pos}function $s(e){return e.replace(/_operation$/,"")}function Gs(e){return typeof e=="object"&&e!==null&&"nai"in e&&"amount"in e&&"precision"in e}function zs(e){if(!Gs(e))return e;let t=x(e),r=lt[e.nai]??"UNKNOWN";return `${t.amount.toFixed(e.precision)} ${r}`}function Js(e){let t={};for(let[r,n]of Object.entries(e))t[r]=zs(n);return t}function ey(e,t=20,r=""){let n=r?Dn[r]:Ls;return infiniteQueryOptions({queryKey:c.accounts.transactions(e??"",r,t),initialPageParam:null,queryFn:async({pageParam:o,signal:i})=>{if(!e)return {entries:[],currentPage:0};let s={"account-name":e,"operation-types":n.join(","),"page-size":t};o!==null&&(s.page=o);let a=await L("hafah","/accounts/{account-name}/operations",s,void 0,void 0,i);return {entries:a.operations_result.map(p=>{let l=$s(p.op.type);return {...Js(p.op.value),num:Ws(p),type:l,timestamp:p.timestamp,trx_id:p.trx_id}}),currentPage:o??a.total_pages}},getNextPageParam:o=>{let i=o.currentPage-1;return i>=1?i:void 0}})}function oy(){return queryOptions({queryKey:c.accounts.bots(),queryFn:async()=>{let e=await fetch(f.privateApiHost+"/private-api/public/bots",{method:"GET",headers:{"Content-Type":"application/json"}});if(!e.ok)throw new Error(`Failed to fetch bots: ${e.status}`);return e.json()},refetchOnMount:true,staleTime:1/0})}function cy(e){return infiniteQueryOptions({queryKey:c.accounts.referrals(e),initialPageParam:{maxId:void 0},queryFn:async({pageParam:t})=>{let{maxId:r}=t??{},n=B.getValidatedBaseUrl(),o=new URL(`/private-api/referrals/${e}`,n);r!==void 0&&o.searchParams.set("max_id",r.toString());let i=await fetch(o.toString(),{method:"GET",headers:{"Content-Type":"application/json"}});if(!i.ok)throw new Error(`Failed to fetch referrals: ${i.status}`);return i.json()},getNextPageParam:t=>{let r=t?.[t.length-1]?.id;return typeof r=="number"?{maxId:r}:void 0}})}function dy(e){return queryOptions({queryKey:c.accounts.referralsStats(e),queryFn:async()=>{let t=await fetch(f.privateApiHost+`/private-api/referrals/${e}/stats`,{method:"GET",headers:{"Content-Type":"application/json"}});if(!t.ok)throw new Error(`Failed to fetch referral stats: ${t.status}`);let r=await t.json();if(!r)throw new Error("No Referrals for this user!");return {total:r.total??0,rewarded:r.rewarded??0}}})}function hy(e,t,r){let{followType:n="blog",limit:o=100,enabled:i=true}=r??{};return infiniteQueryOptions({queryKey:c.accounts.friends(e,t,n,o),initialPageParam:{startFollowing:""},enabled:i,refetchOnMount:true,queryFn:async({pageParam:s})=>{let{startFollowing:a}=s,l=(await g(`condenser_api.${t==="following"?"get_following":"get_followers"}`,[e,a===""?null:a,n,o])).map(y=>t==="following"?y.following:y.follower);return (await g("bridge.get_profiles",{accounts:l,observer:void 0})??[]).map(y=>({name:y.name,reputation:y.reputation,active:y.active}))},getNextPageParam:s=>s&&s.length===o?{startFollowing:s[s.length-1].name}:void 0})}var ra=30;function Py(e,t,r){return queryOptions({queryKey:c.accounts.searchFriends(e,t,r),refetchOnMount:false,enabled:false,queryFn:async()=>{if(!r)return [];let n=r.slice(0,-1),s=(await g(`condenser_api.${t==="following"?"get_following":"get_followers"}`,[e,n,"blog",1e3])).map(u=>t==="following"?u.following:u.follower).filter(u=>u.toLowerCase().includes(r.toLowerCase())).slice(0,ra);return (await g("bridge.get_profiles",{accounts:s,observer:void 0}))?.map(u=>({name:u.name,full_name:u.metadata.profile?.name||"",reputation:u.reputation,active:u.active}))??[]}})}function Ey(e=20){return infiniteQueryOptions({queryKey:c.posts.trendingTags(),queryFn:async({pageParam:{afterTag:t}})=>g("condenser_api.get_trending_tags",[t,e]).then(r=>r.filter(n=>n.name!=="").filter(n=>!n.name.startsWith("hive-")).map(n=>n.name)),initialPageParam:{afterTag:""},getNextPageParam:t=>t?.length>0?{afterTag:t[t.length-1]}:void 0,staleTime:3600*1e3})}function Fy(e=250){return infiniteQueryOptions({queryKey:c.posts.trendingTagsWithStats(e),queryFn:async({pageParam:{afterTag:t}})=>g("condenser_api.get_trending_tags",[t,e]).then(r=>r.filter(n=>n.name!=="").filter(n=>!Cn(n.name))),initialPageParam:{afterTag:""},getNextPageParam:t=>t?.length?{afterTag:t[t.length-1].name}:void 0,staleTime:1/0})}function Ie(e,t){return queryOptions({queryKey:c.posts.fragments(e),queryFn:async()=>t?(await _()(f.privateApiHost+"/private-api/fragments",{method:"POST",body:JSON.stringify({code:t}),headers:{"Content-Type":"application/json"}})).json():[],enabled:!!e&&!!t})}function By(e,t,r=10){return infiniteQueryOptions({queryKey:c.posts.fragmentsInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await _()(`${f.privateApiHost}/private-api/fragments?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch fragments: ${i.status}`);let s=await i.json();return Y(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function Hy(e="feed"){return queryOptions({queryKey:c.posts.promoted(e),queryFn:async()=>{let t=B.getValidatedBaseUrl(),r=new URL("/private-api/promoted-entries",t);return e==="waves"&&r.searchParams.append("short_content","1"),await(await _()(r.toString(),{method:"GET",headers:{"Content-Type":"application/json"}})).json()}})}function Wy(e){return queryOptions({queryKey:c.posts.entryActiveVotes(e?.author,e?.permlink),queryFn:async()=>g("condenser_api.get_active_votes",[e?.author,e?.permlink]),enabled:!!e})}function Yy(e,t,r){return queryOptions({queryKey:c.posts.userPostVote(e,t,r),queryFn:async()=>(await g("database_api.list_votes",{start:[e,t,r],limit:1,order:"by_voter_comment"}))?.votes?.[0]||null,enabled:!!e&&!!t&&!!r})}function rh(e,t){return queryOptions({queryKey:c.posts.content(e,t),enabled:!!e&&!!t,queryFn:async()=>g("condenser_api.get_content",[e,t])})}function ah(e,t){return queryOptions({queryKey:c.posts.contentReplies(e,t),enabled:!!e&&!!t,queryFn:async()=>g("condenser_api.get_content_replies",{author:e,permlink:t})})}function dh(e,t){return queryOptions({queryKey:c.posts.postHeader(e,t),queryFn:async()=>g("bridge.get_post_header",{author:e,permlink:t}),initialData:null})}function $(e){return Array.isArray(e)?e.map(t=>Bn(t)):Bn(e)}function Bn(e){if(!e)return e;let t=`@${e.author}/${e.permlink}`;return f.dmcaPatterns.includes(t)||f.dmcaPatternRegexes.some(n=>n.test(t))?{...e,body:"This post is not available due to a copyright/fraudulent claim.",title:""}:e}async function Nn(e,t,r){try{let n=await ct("bridge.get_post",{author:e,permlink:t,observer:r},1);if(n&&typeof n=="object"&&n.author===e&&n.permlink===t)return n}catch{}return null}function Mn(e,t,r="",n){let o=t?.trim(),i=`/@${e}/${o??""}`;return queryOptions({queryKey:c.posts.entry(i),queryFn:async()=>{if(!o||o==="undefined")return null;let s=await g("bridge.get_post",{author:e,permlink:o,observer:r});if(!s){let u=await Nn(e,o,r);if(!u)return null;let p=n!==void 0?{...u,num:n}:u;return $(p)}let a=n!==void 0?{...s,num:n}:s;return $(a)},enabled:!!e&&!!t&&t.trim()!==""&&t.trim()!=="undefined"})}function X(e,t,r){return g(`bridge.${e}`,t,void 0,void 0,r)}async function Qn(e,t,r,n){let{json_metadata:o}=e;if(o?.original_author&&o?.original_permlink&&o.tags?.[0]==="cross-post")try{let i=await ma(o.original_author,o.original_permlink,t,r,n);return i?{...e,original_entry:i,num:r}:e}catch{return e}return {...e,num:r}}async function Hn(e,t,r){let n=e.map(Ve),o=await Promise.all(n.map(i=>Qn(i,t,void 0,r)));return $(o)}async function Un(e,t="",r="",n=20,o="",i="",s){let a=await X("get_ranked_posts",{sort:e,start_author:t,start_permlink:r,limit:n,tag:o,observer:i},s);return a&&Hn(a,i,s)}async function Wt(e,t,r="",n="",o=20,i="",s){if(f.dmcaAccounts.includes(t))return [];let a=await X("get_account_posts",{sort:e,account:t,start_author:r,start_permlink:n,limit:o,observer:i},s);return a&&Hn(a,i,s)}function Ve(e){let t={...e,active_votes:Array.isArray(e.active_votes)?[...e.active_votes]:[],beneficiaries:Array.isArray(e.beneficiaries)?[...e.beneficiaries]:[],blacklists:Array.isArray(e.blacklists)?[...e.blacklists]:[],replies:Array.isArray(e.replies)?[...e.replies]:[],stats:e.stats?{...e.stats}:null},r=["author","title","body","created","category","permlink","url","updated"];for(let n of r)t[n]==null&&(t[n]="");return t.author_reputation==null&&(t.author_reputation=0),t.children==null&&(t.children=0),t.depth==null&&(t.depth=0),t.net_rshares==null&&(t.net_rshares=0),t.payout==null&&(t.payout=0),t.percent_hbd==null&&(t.percent_hbd=0),t.stats||(t.stats={flag_weight:0,gray:false,hide:false,total_votes:0}),t.author_payout_value==null&&(t.author_payout_value="0.000 HBD"),t.curator_payout_value==null&&(t.curator_payout_value="0.000 HBD"),t.max_accepted_payout==null&&(t.max_accepted_payout="1000000.000 HBD"),t.payout_at==null&&(t.payout_at=""),t.pending_payout_value==null&&(t.pending_payout_value="0.000 HBD"),t.promoted==null&&(t.promoted="0.000 HBD"),t.is_paidout==null&&(t.is_paidout=false),t}async function ma(e="",t="",r="",n,o){let i=await X("get_post",{author:e,permlink:t,observer:r},o);if(i){let s=Ve(i),a=await Qn(s,r,n,o);return $(a)}}async function Eh(e="",t=""){let r=await X("get_post_header",{author:e,permlink:t});return r&&Ve(r)}async function Vn(e,t,r){let n=await X("get_discussion",{author:e,permlink:t,observer:r||e});if(n){let o={};for(let[i,s]of Object.entries(n))o[i]=Ve(s);return o}return n}async function jn(e,t=""){return X("get_community",{name:e,observer:t})}async function Sh(e="",t=100,r,n="rank",o=""){return X("list_communities",{last:e,limit:t,query:r,sort:n,observer:o})}async function Ln(e){let t=await X("normalize_post",{post:e});return t&&Ve(t)}async function Ch(e){return X("list_all_subscriptions",{account:e})}async function Th(e){return X("list_subscribers",{community:e})}async function Rh(e,t){return X("get_relationship_between_accounts",[e,t])}async function mt(e,t){return X("get_profiles",{accounts:e,observer:t})}var $n=(o=>(o.trending="trending",o.author_reputation="author_reputation",o.votes="votes",o.created="created",o))($n||{});function $t(e){let t=e.match(/^(\d+\.?\d*)\s*([A-Z]+)$/);return t?{amount:parseFloat(t[1]),symbol:t[2]}:{amount:0,symbol:""}}function ga(e,t,r){let n=l=>$t(l.pending_payout_value).amount+$t(l.author_payout_value).amount+$t(l.curator_payout_value).amount,o=l=>l.net_rshares<0,i=l=>e.json_metadata?.pinned_reply===`${l.author}/${l.permlink}`,s={trending:(l,m)=>{if(o(l))return 1;if(o(m))return -1;let d=n(l),y=n(m);return d!==y?y-d:0},author_reputation:(l,m)=>{let d=l.author_reputation,y=m.author_reputation;return d>y?-1:d<y?1:0},votes:(l,m)=>{let d=l.children,y=m.children;return d>y?-1:d<y?1:0},created:(l,m)=>{if(o(l))return 1;if(o(m))return -1;let d=Date.parse(l.created),y=Date.parse(m.created);return d>y?-1:d<y?1:0}},a=t.sort(s[r]),u=a.findIndex(l=>i(l)),p=a[u];return u>=0&&(a.splice(u,1),a.unshift(p)),a}function Gn(e,t="created",r=true,n){return queryOptions({queryKey:c.posts.discussions(e?.author,e?.permlink,t,n||e?.author),queryFn:async()=>{if(!e)return [];let o=await g("bridge.get_discussion",{author:e.author,permlink:e.permlink,observer:n||e.author}),i=o?Array.from(Object.values(o)):[];return $(i)},enabled:r&&!!e,select:o=>ga(e,o,t),structuralSharing:(o,i)=>{if(!o||!i)return i;let s=o.filter(p=>p.is_optimistic===true),a=new Set(i.map(p=>`${p.author}/${p.permlink}`)),u=s.filter(p=>!a.has(`${p.author}/${p.permlink}`));return u.length>0?[...i,...u]:i}})}function Nh(e,t,r,n=true){return queryOptions({queryKey:c.posts.discussion(e,t,r||e),enabled:n&&!!e&&!!t,queryFn:async()=>Vn(e,t,r)})}function jh(e,t="posts",r=20,n="",o=true){return infiniteQueryOptions({queryKey:c.posts.accountPosts(e??"",t,r,n),enabled:!!e&&o,initialPageParam:{author:void 0,permlink:void 0,hasNextPage:true},queryFn:async({pageParam:i,signal:s})=>{if(!i?.hasNextPage||!e)return [];let a=await Wt(t,e,i.author??"",i.permlink??"",r,n,s);return $(a??[])},getNextPageParam:i=>{let s=i?.[i.length-1],a=(i?.length??0)===r;if(a)return {author:s?.author,permlink:s?.permlink,hasNextPage:a}}})}function Lh(e,t="posts",r="",n="",o=20,i="",s=true){return queryOptions({queryKey:c.posts.accountPostsPage(e??"",t,r,n,o,i),enabled:!!e&&s,queryFn:async({signal:a}={})=>{if(!e)return [];let u=await Wt(t,e,r,n,o,i,a);return $(u??[])}})}function Xh(e,t,r=20,n="",o=true,i={}){return infiniteQueryOptions({queryKey:c.posts.postsRanked(e,t,r,n),queryFn:async({pageParam:s,signal:a})=>{if(!s.hasNextPage)return [];let u=t;f.dmcaTagRegexes.some(v=>v.test(t))&&(u="");let p=await g("bridge.get_ranked_posts",{sort:e,start_author:s.author,start_permlink:s.permlink,limit:r,tag:u,observer:n},void 0,void 0,a);if(p==null)return [];if(!Array.isArray(p))throw new Error(`[SDK] get_ranked_posts returned ${typeof p} for sort=${e}`);let l=p,m=e==="hot"?l:l.sort((v,S)=>new Date(S.created).getTime()-new Date(v.created).getTime()),d=m.find(v=>v.stats?.is_pinned),y=m.filter(v=>!v.stats?.is_pinned),P=[d,...y].filter(v=>!!v);return $(P)},enabled:o,initialPageParam:{author:void 0,permlink:void 0,hasNextPage:true},getNextPageParam:s=>{let a=s?.[s.length-1];return {author:a?.author,permlink:a?.permlink,hasNextPage:(s?.length??0)>0}}})}function Zh(e,t="",r="",n=20,o="",i="",s=true){return queryOptions({queryKey:c.posts.postsRankedPage(e,t,r,n,o,i),enabled:s,queryFn:async({signal:a}={})=>{let u=o;f.dmcaTagRegexes.some(l=>l.test(o))&&(u="");let p=await Un(e,t,r,n,u,i,a);return $(p??[])}})}function o_(e,t,r=200){return queryOptions({queryKey:c.posts.reblogs(e??"",r),queryFn:async()=>(await g("condenser_api.get_blog_entries",[e??t,0,r])).filter(o=>o.author!==t&&!o.reblogged_on.startsWith("1970-")).map(o=>({author:o.author,permlink:o.permlink})),enabled:!!e})}function u_(e,t){return queryOptions({queryKey:c.posts.rebloggedBy(e??"",t??""),queryFn:async()=>{if(!e||!t)return [];let r=await g("condenser_api.get_reblogged_by",[e,t]);return Array.isArray(r)?r:[]},enabled:!!e&&!!t})}function f_(e,t){return queryOptions({queryKey:c.posts.schedules(e),queryFn:async()=>{if(!e||!t)return [];let n=await _()(f.privateApiHost+"/private-api/schedules",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch schedules: ${n.status}`);return n.json()},enabled:!!e&&!!t})}function m_(e,t,r=10){return infiniteQueryOptions({queryKey:c.posts.schedulesInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await _()(`${f.privateApiHost}/private-api/schedules?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch schedules: ${i.status}`);let s=await i.json();return Y(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function __(e,t){return queryOptions({queryKey:c.posts.drafts(e),queryFn:async()=>{if(!e||!t)return [];let n=await _()(f.privateApiHost+"/private-api/drafts",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch drafts: ${n.status}`);return n.json()},enabled:!!e&&!!t})}function w_(e,t,r=10){return infiniteQueryOptions({queryKey:c.posts.draftsInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await _()(`${f.privateApiHost}/private-api/drafts?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch drafts: ${i.status}`);let s=await i.json();return Y(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}async function Jn(e){let r=await _()(f.privateApiHost+"/private-api/images",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!r.ok)throw new Error(`Failed to fetch images: ${r.status}`);return r.json()}function O_(e,t){return queryOptions({queryKey:c.posts.images(e),queryFn:async()=>!e||!t?[]:Jn(t),enabled:!!e&&!!t})}function A_(e,t){return queryOptions({queryKey:c.posts.galleryImages(e),queryFn:async()=>!e||!t?[]:Jn(t),enabled:!!e&&!!t})}function x_(e,t,r=10){return infiniteQueryOptions({queryKey:c.posts.imagesInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await _()(`${f.privateApiHost}/private-api/images?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch images: ${i.status}`);let s=await i.json();return Y(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function C_(e,t,r=false){return queryOptions({queryKey:c.posts.commentHistory(e,t,r),queryFn:async({signal:n})=>{let o=await fetch(f.privateApiHost+"/private-api/comment-history",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({author:e,permlink:t,onlyMeta:r?"1":""}),signal:n});if(!o.ok)throw new Error(`Failed to fetch comment history: ${o.status}`);return o.json()},enabled:!!e&&!!t})}function Ca(e,t){let r=e?.trim(),n=t?.trim();if(!r||!n)throw new Error("Invalid entry path: author and permlink are required");let o=r.replace(/^@+/,""),i=n.replace(/^\/+/,"");if(!o||!i)throw new Error("Invalid entry path: author and permlink cannot be empty after normalization");return `@${o}/${i}`}function F_(e,t){let r=t?.trim(),n=e?.trim(),o=!!n&&!!r&&r!=="undefined",i=o?Ca(n,r):"";return queryOptions({queryKey:c.posts.deletedEntry(i),queryFn:async({signal:s})=>{let a=await fetch(f.privateApiHost+"/private-api/comment-history",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({author:e,permlink:r||""}),signal:s});if(!a.ok)throw new Error(`Failed to fetch comment history: ${a.status}`);return a.json()},select:s=>{if(!s?.list?.[0])return null;let{body:a,title:u,tags:p}=s.list[0];return {body:a,title:u,tags:p}},enabled:o})}function B_(e,t,r=true){return queryOptions({queryKey:c.posts.tips(e,t),queryFn:async()=>{let n=await fetch(f.privateApiHost+"/private-api/post-tips",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({author:e,permlink:t})});if(!n.ok)throw new Error(`Failed to fetch post tips: ${n.status}`);return n.json()},enabled:!!e&&!!t&&r})}function Ra(e,t){return {...e,id:e.id??e.post_id,created:e.created??e.timestamp,host:t}}function qa(e){return {...e,id:e.id??e.post_id}}function ae(e,t){if(!e)return null;let r=e.container??e,n=Ra(r,t),o=e.parent?qa(e.parent):void 0;return {...e,id:e.id??e.post_id,created:e.created??e.timestamp,max_accepted_payout:e.max_accepted_payout||"1000000.000 HBD",pending_payout_value:e.pending_payout_value||"0.000 HBD",author_payout_value:e.author_payout_value||"0.000 HBD",curator_payout_value:e.curator_payout_value||"0.000 HBD",host:t,container:n,parent:o}}function Fa(e){return Array.isArray(e)?e:[]}async function Yn(e){let t=Gn(e,"created",true),r=await f.queryClient.fetchQuery(t),n=Fa(r);if(n.length<=1)return [];let o=n.filter(({parent_author:s,parent_permlink:a})=>s===e.author&&a===e.permlink);return o.length===0?[]:o.filter(s=>!s.stats?.gray)}function Xn(e,t,r){return e.length===0?[]:e.map(n=>{let o=e.find(i=>i.author===n.parent_author&&i.permlink===n.parent_permlink&&i.author!==r);return {...n,id:n.post_id,host:r,container:t,parent:o}}).filter(n=>n.container.post_id!==n.post_id).sort((n,o)=>new Date(o.created).getTime()-new Date(n.created).getTime())}var Da=20;function Zn(e){return {containers:e.containers??[],tag:e.tag?.trim()||void 0,following:e.following?.trim().toLowerCase()||void 0,author:e.author?.trim().toLowerCase()||void 0,observer:e.observer?.trim().toLowerCase()||void 0,limit:e.limit??Da}}async function eo({containers:e,tag:t,following:r,author:n,observer:o,limit:i},s,a){let u=B.getValidatedBaseUrl(),p=new URL("/private-api/waves/feed",u);p.searchParams.set("limit",String(i)),s&&p.searchParams.set("cursor",s),e.forEach(d=>p.searchParams.append("container",d)),t&&p.searchParams.set("tag",t),r&&p.searchParams.set("following",r),n&&p.searchParams.set("author",n),o&&p.searchParams.set("observer",o);let l=await fetch(p.toString(),{method:"GET",signal:a});if(!l.ok)throw new Error(`Failed to fetch waves feed: ${l.status}`);let m=await l.json();return !Array.isArray(m)||m.length===0?[]:m.map(d=>{let y=ae(d,d.host??"");return y?{...y,_cursor:d._cursor}:null}).filter(d=>!!d)}function L_(e={}){let t=Zn(e),{containers:r,tag:n,following:o,author:i,observer:s,limit:a}=t;return infiniteQueryOptions({queryKey:c.posts.wavesFeed({containers:r,tag:n,following:o,author:i,observer:s,limit:a}),initialPageParam:void 0,queryFn:({pageParam:u,signal:p})=>eo(t,u,p),getNextPageParam:u=>{if(!(u.length<a))return u[u.length-1]?._cursor}})}function W_(e={}){let t=Zn(e),{containers:r,tag:n,following:o,author:i,observer:s,limit:a}=t;return queryOptions({queryKey:[...c.posts.wavesFeed({containers:r,tag:n,following:o,author:i,observer:s,limit:a}),"latest"],staleTime:0,queryFn:({signal:u})=>eo(t,void 0,u)})}var Na=20;function Ma(e){return {containers:e.containers??[],tag:e.tag?.trim()||void 0,author:e.author?.trim().toLowerCase()||void 0,observer:e.observer?.trim().toLowerCase()||void 0,limit:e.limit??Na}}async function Qa({containers:e,tag:t,author:r,observer:n,limit:o},i,s){let a=B.getValidatedBaseUrl(),u=new URL("/private-api/waves/shorts",a);u.searchParams.set("limit",String(o)),i&&u.searchParams.set("cursor",i),e.forEach(m=>u.searchParams.append("container",m)),t&&u.searchParams.set("tag",t),r&&u.searchParams.set("author",r),n&&u.searchParams.set("observer",n);let p=await fetch(u.toString(),{method:"GET",signal:s});if(!p.ok)throw new Error(`Failed to fetch shorts feed: ${p.status}`);let l=await p.json();return !Array.isArray(l)||l.length===0?[]:l.map(m=>{let d=ae(m,m.host??"");return d?{...d,active_votes:d.active_votes??[],video:m.video,_cursor:m._cursor}:null}).filter(m=>!!m)}function Y_(e={}){let t=Ma(e),{containers:r,tag:n,author:o,observer:i,limit:s}=t;return infiniteQueryOptions({queryKey:c.posts.shortsFeed({containers:r,tag:n,author:o,observer:i,limit:s}),initialPageParam:void 0,queryFn:({pageParam:a,signal:u})=>Qa(t,a,u),getNextPageParam:a=>{if(!(a.length<s))return a[a.length-1]?._cursor}})}var Ua=5,Va=50;async function ja(e,t){let r=t?.author,n=t?.permlink,o=0,i=t?.post_id;for(;o<Va;){let s={sort:"posts",account:e,limit:Ua,...r?{start_author:r}:{},...n?{start_permlink:n}:{}},a;try{a=await g("bridge.get_account_posts",s);}catch(l){return console.error("[SDK] getThreads get_account_posts error:",l),null}if(!a||a.length===0)return null;let u=a.map(l=>(l.id=l.post_id,l.host=e,l));for(let l of u){if(i&&l.post_id===i){i=void 0;continue}if(o+=1,l.stats?.gray){r=l.author,n=l.permlink;continue}let m;try{m=await Yn(l);}catch(d){console.error("[SDK] getThreads get_discussion error:",d),r=l.author,n=l.permlink;continue}if(m.length===0){r=l.author,n=l.permlink;continue}return {entries:Xn(m,l,e)}}let p=u[u.length-1];if(!p)return null;r=p.author,n=p.permlink;}return null}function nw(e){return infiniteQueryOptions({queryKey:c.posts.wavesByHost(e),initialPageParam:void 0,queryFn:async({pageParam:t})=>{let r=await ja(e,t);return r?r.entries:[]},getNextPageParam:t=>t?.[0]?.container})}var Wa=40;function cw(e,t,r=Wa){return infiniteQueryOptions({queryKey:c.posts.wavesByTag(e,t),initialPageParam:void 0,queryFn:async({signal:n})=>{try{let o=B.getValidatedBaseUrl(),i=new URL("/private-api/waves/tags",o);i.searchParams.set("container",e),i.searchParams.set("tag",t);let s=await fetch(i.toString(),{method:"GET",headers:{"Content-Type":"application/json"},signal:n});if(!s.ok)throw new Error(`Failed to fetch waves by tag: ${s.status}`);return (await s.json()).slice(0,r).map(p=>ae(p,e)).filter(p=>!!p).sort((p,l)=>new Date(l.created).getTime()-new Date(p.created).getTime())}catch(o){return console.error("[SDK] Failed to fetch waves by tag",o),[]}},getNextPageParam:()=>{}})}function fw(e,t){let r=t?.trim().toLowerCase();return infiniteQueryOptions({queryKey:c.posts.wavesFollowing(e,r??""),enabled:!!r,initialPageParam:void 0,queryFn:async({signal:n})=>{if(!r)return [];try{let o=B.getValidatedBaseUrl(),i=new URL("/private-api/waves/following",o);i.searchParams.set("container",e),i.searchParams.set("username",r);let s=await fetch(i.toString(),{method:"GET",headers:{"Content-Type":"application/json"},signal:n});if(!s.ok)throw new Error(`Failed to fetch waves following feed: ${s.status}`);let a=await s.json();if(!Array.isArray(a)||a.length===0)return [];let u=a.map(p=>ae(p,e)).filter(p=>!!p);return u.length===0?[]:u.sort((p,l)=>new Date(l.created).getTime()-new Date(p.created).getTime())}catch(o){return console.error("[SDK] Failed to fetch waves following feed",o),[]}},getNextPageParam:()=>{}})}function hw(e,t=24){let r=e?.trim()||void 0;return queryOptions({queryKey:c.posts.wavesTrendingTags(r??"",t),queryFn:async({signal:n})=>{try{let o=B.getValidatedBaseUrl(),i=new URL("/private-api/waves/trending/tags",o);r&&i.searchParams.set("container",r),i.searchParams.set("hours",t.toString());let s=await fetch(i.toString(),{method:"GET",signal:n});if(!s.ok)throw new Error(`Failed to fetch waves trending tags: ${s.status}`);return (await s.json()).map(({tag:u,posts:p})=>({tag:u,posts:p}))}catch(o){return console.error("[SDK] Failed to fetch waves trending tags",o),[]}}})}function Pw(e,t){let r=t?.trim().toLowerCase();return infiniteQueryOptions({queryKey:c.posts.wavesByAccount(e,r??""),enabled:!!r,initialPageParam:void 0,queryFn:async({signal:n})=>{if(!r)return [];try{let o=B.getValidatedBaseUrl(),i=new URL("/private-api/waves/account",o);i.searchParams.set("container",e),i.searchParams.set("username",r);let s=await fetch(i.toString(),{method:"GET",signal:n});if(!s.ok)throw new Error(`Failed to fetch waves for account: ${s.status}`);let a=await s.json();if(!Array.isArray(a)||a.length===0)return [];let u=a.map(p=>ae(p,e)).filter(p=>!!p);return u.length===0?[]:u.sort((p,l)=>new Date(l.created).getTime()-new Date(p.created).getTime())}catch(o){throw console.error("[SDK] Failed to fetch waves for account",o),o}},getNextPageParam:()=>{}})}function kw(e){return queryOptions({queryKey:c.posts.wavesTrendingAuthors(e),queryFn:async({signal:t})=>{try{let r=B.getValidatedBaseUrl(),n=new URL("/private-api/waves/trending/authors",r);n.searchParams.set("container",e);let o=await fetch(n.toString(),{method:"GET",signal:t});if(!o.ok)throw new Error(`Failed to fetch waves trending authors: ${o.status}`);return (await o.json()).map(({author:s,posts:a})=>({author:s,posts:a}))}catch(r){throw console.error("[SDK] Failed to fetch waves trending authors",r),r}}})}function Rw(e,t=true){return queryOptions({queryKey:c.posts.normalize(e?.author??"",e?.permlink??""),enabled:t&&!!e,queryFn:async()=>Ln(e)})}function Za(e){return !!e&&typeof e=="object"&&"author"in e&&"permlink"in e&&"active_votes"in e}function to(e){let t=new Date(e);return (new Date().getTime()-t.getTime())/(1e3*60*60*24)}function Nw(e,t){let{limit:r=20,filters:n=[],dayLimit:o=7}=t??{};return infiniteQueryOptions({queryKey:c.accounts.voteHistory(e,r),initialPageParam:{start:-1},queryFn:async({pageParam:i})=>{let{start:s}=i,a=await g("condenser_api.get_account_history",[e,s,r,...n]),p=a.map(([d,y])=>({...y.op[1],num:d,timestamp:y.timestamp})).filter(d=>d.voter===e&&d.weight!==0&&to(d.timestamp)<=o),l=[];for(let d of p){let y=await f.queryClient.fetchQuery(Mn(d.author,d.permlink));Za(y)&&l.push(y);}let[m]=a;return {lastDate:m?to(m[1].timestamp):0,lastItemFetched:m?m[0]:s,entries:l}},getNextPageParam:i=>({start:i.lastItemFetched})})}function Vw(e,t,r=true){return queryOptions({queryKey:c.accounts.profiles(e,t??""),enabled:r&&e.length>0,queryFn:async()=>mt(e,t)})}function Gw(e,t="HIVE",r=200){return infiniteQueryOptions({queryKey:c.wallet.balanceHistory(e??"",t,r),initialPageParam:null,queryFn:async({pageParam:n,signal:o})=>{if(!e)return {entries:[],currentPage:0};let i={"account-name":e,"coin-type":t,"page-size":r,direction:"desc"};n!==null&&(i.page=n);let s=await L("balance","/accounts/{account-name}/balance-history",i,void 0,void 0,o);return {entries:s.operations_result,currentPage:n??s.total_pages}},getNextPageParam:n=>{let o=n.currentPage-1;return o>=1?o:void 0},enabled:!!e})}function Zw(e,t="HIVE",r="yearly"){return queryOptions({queryKey:c.wallet.aggregatedHistory(e??"",t,r),queryFn:async()=>e?await L("balance","/accounts/{account-name}/aggregated-history",{"account-name":e,"coin-type":t,granularity:r}):[],enabled:!!e,staleTime:6e4})}function ib(e,t,r){let n=useQueryClient(),{data:o}=useQuery(I(e));return b(["accounts","update"],e,i=>{let s=n.getQueryData(I(e).queryKey)??o;if(!s)throw new Error("[SDK][Accounts] \u2013 cannot update not existing account");return [["account_update2",{account:e,json_metadata:"",extensions:[],posting_json_metadata:Kn({existingPostingJsonMetadata:s.posting_json_metadata,profile:i.profile,tokens:i.tokens})}]]},async(i,s)=>{n.setQueryData(I(e).queryKey,a=>{if(!a)return a;let u=JSON.parse(JSON.stringify(a));return u.profile=Lt({existingProfile:Fn(a),profile:s.profile,tokens:s.tokens}),u}),await O(t?.adapter,r,[c.accounts.full(e)]);},t,void 0,{broadcastMode:r,onMutate:async()=>{if(e)try{await n.fetchQuery({...I(e),staleTime:0});}catch{}}})}function pb(e,t,r,n,o){return useMutation({mutationKey:["accounts","relation","update",e,t],mutationFn:async i=>{let s=In(e,t);await h().prefetchQuery(s);let a=h().getQueryData(s.queryKey);return await En(e,"follow",["follow",{follower:e,following:t,what:[...i==="toggle-ignore"&&!a?.ignores?["ignore"]:[],...i==="toggle-follow"&&!a?.follows?["blog"]:[]]}],r),{...a,ignores:i==="toggle-ignore"?!a?.ignores:a?.ignores,follows:i==="toggle-follow"?!a?.follows:a?.follows}},onError:o,onSuccess(i){n(i),h().setQueryData(c.accounts.relations(e,t),i),t&&h().invalidateQueries(I(t));}})}function Gt(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildVoteOp] Missing required parameters");if(n<-1e4||n>1e4)throw new Error("[SDK][buildVoteOp] Weight must be between -10000 and 10000");return ["vote",{voter:e,author:t,permlink:r,weight:n}]}function ke(e,t,r,n,o,i,s){if(!e||!t||n===void 0||!i)throw new Error("[SDK][buildCommentOp] Missing required parameters");return ["comment",{parent_author:r,parent_permlink:n,author:e,permlink:t,title:o,body:i,json_metadata:JSON.stringify(s)}]}function Ee(e,t,r,n,o,i,s){if(!e||!t)throw new Error("[SDK][buildCommentOptionsOp] Missing required parameters");return ["comment_options",{author:e,permlink:t,max_accepted_payout:r,percent_hbd:n,allow_votes:o,allow_curation_rewards:i,extensions:s}]}function zt(e,t){if(!e||!t)throw new Error("[SDK][buildDeleteCommentOp] Missing required parameters");return ["delete_comment",{author:e,permlink:t}]}function Jt(e,t,r,n=false){if(!e||!t||!r)throw new Error("[SDK][buildReblogOp] Missing required parameters");let o={account:e,author:t,permlink:r};return n&&(o.delete="delete"),["custom_json",{id:"follow",json:JSON.stringify(["reblog",o]),required_auths:[],required_posting_auths:[e]}]}function Se(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildTransferOp] Missing required parameters");return ["transfer",{from:e,to:t,amount:r,memo:n||""}]}function sc(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildMultiTransferOps] Missing required parameters");return t.trim().split(/[\s,]+/).filter(Boolean).map(i=>Se(e,i.trim(),r,n))}function ac(e,t,r,n,o,i){if(!e||!t||!r)throw new Error("[SDK][buildRecurrentTransferOp] Missing required parameters");if(o<24)throw new Error("[SDK][buildRecurrentTransferOp] Recurrence must be at least 24 hours");return ["recurrent_transfer",{from:e,to:t,amount:r,memo:n||"",recurrence:o,executions:i,extensions:[]}]}function De(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildTransferToSavingsOp] Missing required parameters");return ["transfer_to_savings",{from:e,to:t,amount:r,memo:n||""}]}function Ce(e,t,r,n,o){if(!e||!t||!r||o===void 0)throw new Error("[SDK][buildTransferFromSavingsOp] Missing required parameters");return ["transfer_from_savings",{from:e,to:t,amount:r,memo:n||"",request_id:o}]}function ro(e,t){if(!e||t===void 0)throw new Error("[SDK][buildCancelTransferFromSavingsOp] Missing required parameters");return ["cancel_transfer_from_savings",{from:e,request_id:t}]}function je(e,t,r,n,o){if(!e||!t||!r||o===void 0)throw new Error("[SDK][buildClaimInterestOps] Missing required parameters");return [Ce(e,t,r,n,o),ro(e,o)]}function Le(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildTransferToVestingOp] Missing required parameters");return ["transfer_to_vesting",{from:e,to:t,amount:r}]}function We(e,t){if(!e||!t)throw new Error("[SDK][buildWithdrawVestingOp] Missing required parameters");return ["withdraw_vesting",{account:e,vesting_shares:t}]}function $e(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildDelegateVestingSharesOp] Missing required parameters");return ["delegate_vesting_shares",{delegator:e,delegatee:t,vesting_shares:r}]}function Ge(e,t,r,n){if(!e||!t||r===void 0)throw new Error("[SDK][buildSetWithdrawVestingRouteOp] Missing required parameters");if(r<0||r>1e4)throw new Error("[SDK][buildSetWithdrawVestingRouteOp] Percent must be between 0 and 10000");return ["set_withdraw_vesting_route",{from_account:e,to_account:t,percent:r,auto_vest:n}]}function ze(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildConvertOp] Missing required parameters");return ["convert",{owner:e,amount:t,requestid:r}]}function Yt(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildCollateralizedConvertOp] Missing required parameters");return ["collateralized_convert",{owner:e,amount:t,requestid:r}]}function gt(e,t,r){return ["custom_json",{id:t,required_auths:[e],required_posting_auths:[],json:JSON.stringify({amount:r*1e3})}]}function Te(e,t,r,n="tokens"){return ["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:JSON.stringify({contractName:n,contractAction:t,contractPayload:r})}]}function Xt(e,t){return ["custom_json",{id:"scot_claim_token",required_auths:[],required_posting_auths:[e],json:JSON.stringify(t.map(r=>({symbol:r})))}]}function Zt(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildDelegateRcOp] Missing required parameters");let n=t.includes(",")?t.split(",").map(o=>o.trim()):[t];return ["custom_json",{id:"rc",json:JSON.stringify(["delegate_rc",{from:e,delegatees:n,max_rc:r}]),required_auths:[],required_posting_auths:[e]}]}function er(e,t){if(!e||!t)throw new Error("[SDK][buildFollowOp] Missing required parameters");return ["custom_json",{id:"follow",json:JSON.stringify(["follow",{follower:e,following:t,what:["blog"]}]),required_auths:[],required_posting_auths:[e]}]}function yt(e,t){if(!e||!t)throw new Error("[SDK][buildUnfollowOp] Missing required parameters");return ["custom_json",{id:"follow",json:JSON.stringify(["follow",{follower:e,following:t,what:[]}]),required_auths:[],required_posting_auths:[e]}]}function cc(e,t){if(!e||!t)throw new Error("[SDK][buildIgnoreOp] Missing required parameters");return ["custom_json",{id:"follow",json:JSON.stringify(["follow",{follower:e,following:t,what:["ignore"]}]),required_auths:[],required_posting_auths:[e]}]}function uc(e,t){if(!e||!t)throw new Error("[SDK][buildUnignoreOp] Missing required parameters");return yt(e,t)}function tr(e,t){if(!e)throw new Error("[SDK][buildSetLastReadOps] Missing required parameters");let r=t||new Date().toISOString().split(".")[0],n=["custom_json",{id:"notify",json:JSON.stringify(["setLastRead",{date:r}]),required_auths:[],required_posting_auths:[e]}],o=["custom_json",{id:"ecency_notify",json:JSON.stringify(["setLastRead",{date:r}]),required_auths:[],required_posting_auths:[e]}];return [n,o]}function rr(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildWitnessVoteOp] Missing required parameters");return ["account_witness_vote",{account:e,witness:t,approve:r}]}function nr(e,t){if(!e||t===void 0)throw new Error("[SDK][buildWitnessProxyOp] Missing required parameters");return ["account_witness_proxy",{account:e,proxy:t}]}function or(e,t){if(!e||!t.receiver||!t.subject||!t.permlink||!t.start||!t.end||!t.dailyPay)throw new Error("[SDK][buildProposalCreateOp] Missing required parameters");let r=new Date(t.start),n=new Date(t.end);if(r.toString()==="Invalid Date"||n.toString()==="Invalid Date")throw new Error("[SDK][buildProposalCreateOp] Invalid date format: start and end must be valid ISO date strings");return ["create_proposal",{creator:e,receiver:t.receiver,start_date:t.start,end_date:t.end,daily_pay:t.dailyPay,subject:t.subject,permlink:t.permlink,extensions:[]}]}function ir(e,t,r){if(!e||!t||t.length===0||r===void 0)throw new Error("[SDK][buildProposalVoteOp] Missing required parameters");return ["update_proposal_votes",{voter:e,proposal_ids:t,approve:r,extensions:[]}]}function pc(e,t){if(!e||!t||t.length===0)throw new Error("[SDK][buildRemoveProposalOp] Missing required parameters");return ["remove_proposal",{proposal_owner:e,proposal_ids:t,extensions:[]}]}function lc(e,t,r,n,o){if(e==null||typeof e!="number"||!t||!r||!n||!o)throw new Error("[SDK][buildUpdateProposalOp] Missing required parameters");return ["update_proposal",{proposal_id:e,creator:t,daily_pay:r,subject:n,permlink:o,extensions:[]}]}function sr(e,t){if(!e||!t)throw new Error("[SDK][buildSubscribeOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["subscribe",{community:t}]),required_auths:[],required_posting_auths:[e]}]}function ar(e,t){if(!e||!t)throw new Error("[SDK][buildUnsubscribeOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["unsubscribe",{community:t}]),required_auths:[],required_posting_auths:[e]}]}function cr(e,t,r,n){if(!e||!t||!r||!n)throw new Error(`[SDK][buildSetRoleOp] Missing required parameters: username=${e}, community=${t}, account=${r}, role=${n}`);return ["custom_json",{id:"community",json:JSON.stringify(["setRole",{community:t,account:r,role:n}]),required_auths:[],required_posting_auths:[e]}]}function ur(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildUpdateCommunityOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["updateProps",{community:t,props:r}]),required_auths:[],required_posting_auths:[e]}]}function pr(e,t,r,n,o){if(!e||!t||!r||!n||o===void 0)throw new Error("[SDK][buildPinPostOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify([o?"pinPost":"unpinPost",{community:t,account:r,permlink:n}]),required_auths:[],required_posting_auths:[e]}]}function lr(e,t,r,n,o,i){if(!e||!t||!r||!n||i===void 0)throw new Error("[SDK][buildMutePostOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify([i?"mutePost":"unmutePost",{community:t,account:r,permlink:n,notes:o}]),required_auths:[],required_posting_auths:[e]}]}function dc(e,t,r,n,o){if(!e||!t||!r||o===void 0)throw new Error("[SDK][buildMuteUserOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify([o?"muteUser":"unmuteUser",{community:t,account:r,notes:n}]),required_auths:[],required_posting_auths:[e]}]}function fc(e,t,r,n,o){if(!e||!t||!r||!n)throw new Error("[SDK][buildFlagPostOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["flagPost",{community:t,account:r,permlink:n,notes:o}]),required_auths:[],required_posting_auths:[e]}]}var no=(r=>(r.Buy="buy",r.Sell="sell",r))(no||{}),oo=(r=>(r.EMPTY="",r.SWAP="9",r))(oo||{});function _t(e,t,r,n,o,i){if(!e||!t||!r||!o||i===void 0)throw new Error("[SDK][buildLimitOrderCreateOp] Missing required parameters");return ["limit_order_create",{owner:e,orderid:i,amount_to_sell:t,min_to_receive:r,fill_or_kill:n,expiration:o}]}function ht(e,t=3){return e.toFixed(t)}function mc(e,t,r,n,o=""){if(!e||n===void 0||!Number.isFinite(t)||t<=0||!Number.isFinite(r)||r<=0)throw new Error("[SDK][buildLimitOrderCreateOpWithType] Missing or invalid parameters");let i=new Date(Date.now());i.setDate(i.getDate()+27);let s=i.toISOString().split(".")[0],a=+`${o}${Math.floor(Date.now()/1e3).toString().slice(2)}`,u=n==="buy"?`${ht(t,3)} HBD`:`${ht(t,3)} HIVE`,p=n==="buy"?`${ht(r,3)} HIVE`:`${ht(r,3)} HBD`;return _t(e,u,p,false,s,a)}function dr(e,t){if(!e||t===void 0)throw new Error("[SDK][buildLimitOrderCancelOp] Missing required parameters");return ["limit_order_cancel",{owner:e,orderid:t}]}function fr(e,t,r,n){if(!e||!t||!r||!n)throw new Error("[SDK][buildClaimRewardBalanceOp] Missing required parameters");return ["claim_reward_balance",{account:e,reward_hive:t,reward_hbd:r,reward_vests:n}]}function gc(e,t,r,n,o,i){if(!e||!o)throw new Error("[SDK][buildAccountUpdateOp] Missing required parameters");return ["account_update",{account:e,owner:t,active:r,posting:n,memo_key:o,json_metadata:i}]}function yc(e,t,r,n){if(!e||r===void 0)throw new Error("[SDK][buildAccountUpdate2Op] Missing required parameters");return ["account_update2",{account:e,json_metadata:t||"",posting_json_metadata:r,extensions:n||[]}]}function mr(e,t,r,n){if(!e||!t||!r||!n)throw new Error("[SDK][buildAccountCreateOp] Missing required parameters");let o={weight_threshold:1,account_auths:[],key_auths:[[r.ownerPublicKey,1]]},i={weight_threshold:1,account_auths:[],key_auths:[[r.activePublicKey,1]]},s={weight_threshold:1,account_auths:[["ecency.app",1]],key_auths:[[r.postingPublicKey,1]]};return ["account_create",{creator:e,new_account_name:t,owner:o,active:i,posting:s,memo_key:r.memoPublicKey,json_metadata:"",fee:n}]}function gr(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildCreateClaimedAccountOp] Missing required parameters");let n={weight_threshold:1,account_auths:[],key_auths:[[r.ownerPublicKey,1]]},o={weight_threshold:1,account_auths:[],key_auths:[[r.activePublicKey,1]]},i={weight_threshold:1,account_auths:[["ecency.app",1]],key_auths:[[r.postingPublicKey,1]]};return ["create_claimed_account",{creator:e,new_account_name:t,owner:n,active:o,posting:i,memo_key:r.memoPublicKey,json_metadata:"",extensions:[]}]}function yr(e,t){if(!e||!t)throw new Error("[SDK][buildClaimAccountOp] Missing required parameters");return ["claim_account",{creator:e,fee:t,extensions:[]}]}function hr(e,t,r,n,o,i){if(!e||!t||!r||!o)throw new Error("[SDK][buildGrantPostingPermissionOp] Missing required parameters");let s=t.account_auths.findIndex(([p])=>p===r),a=[...t.account_auths];s>=0?a[s]=[r,n]:a.push([r,n]);let u={...t,account_auths:a};return u.account_auths.sort((p,l)=>p[0]>l[0]?1:-1),["account_update",{account:e,posting:u,memo_key:o,json_metadata:i}]}function hc(e,t,r,n,o){if(!e||!t||!r||!n)throw new Error("[SDK][buildRevokePostingPermissionOp] Missing required parameters");let i={...t,account_auths:t.account_auths.filter(([s])=>s!==r)};return ["account_update",{account:e,posting:i,memo_key:n,json_metadata:o}]}function _c(e,t,r=[]){if(!e||!t)throw new Error("[SDK][buildChangeRecoveryAccountOp] Missing required parameters");return ["change_recovery_account",{account_to_recover:e,new_recovery_account:t,extensions:r}]}function wc(e,t,r,n=[]){if(!e||!t||!r)throw new Error("[SDK][buildRequestAccountRecoveryOp] Missing required parameters");return ["request_account_recovery",{recovery_account:e,account_to_recover:t,new_owner_authority:r,extensions:n}]}function bc(e,t,r,n=[]){if(!e||!t||!r)throw new Error("[SDK][buildRecoverAccountOp] Missing required parameters");return ["recover_account",{account_to_recover:e,new_owner_authority:t,recent_owner_authority:r,extensions:n}]}function _r(e,t,r){if(!e||!t||!Number.isFinite(r))throw new Error("[SDK][buildBoostPlusOp] Missing required parameters");return ["custom_json",{id:"ecency_boost_plus",json:JSON.stringify({user:e,account:t,duration:r}),required_auths:[e],required_posting_auths:[]}]}function wr(e,t){if(!e||!Number.isInteger(t)||t<=0)throw new Error("[SDK][buildRcDelegationOp] Missing or invalid parameters");return ["custom_json",{id:"ecency_rc_delegation",json:JSON.stringify({user:e,duration:t}),required_auths:[e],required_posting_auths:[]}]}function br(e,t,r,n){if(!e||!t||!r||!Number.isFinite(n))throw new Error("[SDK][buildPromoteOp] Missing required parameters");return ["custom_json",{id:"ecency_promote",json:JSON.stringify({user:e,author:t,permlink:r,duration:n}),required_auths:[e],required_posting_auths:[]}]}function Be(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildPointTransferOp] Missing required parameters");let o=r.replace(/POINTS\b/,"POINT");return ["custom_json",{id:"ecency_point_transfer",json:JSON.stringify({sender:e,receiver:t,amount:o,memo:n||""}),required_auths:[e],required_posting_auths:[]}]}function vc(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildMultiPointTransferOps] Missing required parameters");let o=t.trim().split(/[\s,]+/).filter(Boolean);if(o.length===0)throw new Error("[SDK][buildMultiPointTransferOps] Missing valid destinations");return o.map(i=>Be(e,i.trim(),r,n))}function vr(e){if(!e)throw new Error("[SDK][buildCommunityRegistrationOp] Missing required parameters");return ["custom_json",{id:"ecency_registration",json:JSON.stringify({name:e}),required_auths:[e],required_posting_auths:[]}]}function Pc(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildActiveCustomJsonOp] Missing required parameters");return ["custom_json",{id:t,json:JSON.stringify(r),required_auths:[e],required_posting_auths:[]}]}function Oc(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildPostingCustomJsonOp] Missing required parameters");return ["custom_json",{id:t,json:JSON.stringify(r),required_auths:[],required_posting_auths:[e]}]}function Rb(e,t,r){return b(["accounts","follow"],e,({following:n})=>[er(e,n)],async(n,o)=>{await O(t?.adapter,r,[c.accounts.relations(e,o.following),c.accounts.full(o.following),c.accounts.followCount(o.following),c.accounts.followCount(e)]);},t,"posting",{broadcastMode:r??"async"})}function Ib(e,t,r){return b(["accounts","unfollow"],e,({following:n})=>[yt(e,n)],async(n,o)=>{await O(t?.adapter,r,[c.accounts.relations(e,o.following),c.accounts.full(o.following),c.accounts.followCount(o.following),c.accounts.followCount(e)]);},t,"posting",{broadcastMode:r??"async"})}function Mb(e,t,r,n){return useMutation({mutationKey:["accounts","bookmarks","add",e],mutationFn:async({author:o,permlink:i})=>{if(!e||!t)throw new Error("[SDK][Account][Bookmarks] \u2013 missing auth");return (await _()(f.privateApiHost+"/private-api/bookmarks-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({author:o,permlink:i,code:t})})).json()},onSuccess:()=>{r(),h().invalidateQueries({queryKey:["accounts","bookmarks",e]});},onError:n})}function Vb(e,t,r,n){return useMutation({mutationKey:["accounts","bookmarks","delete",e],mutationFn:async o=>{if(!e||!t)throw new Error("[SDK][Account][Bookmarks] \u2013 missing auth");return (await _()(f.privateApiHost+"/private-api/bookmarks-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({id:o,code:t})})).json()},onSuccess:()=>{r(),h().invalidateQueries({queryKey:["accounts","bookmarks",e]});},onError:n})}function $b(e,t,r,n){return useMutation({mutationKey:["accounts","favorites","add",e],mutationFn:async o=>{if(!e||!t)throw new Error("[SDK][Account][Favorites] \u2013 missing auth");return (await _()(f.privateApiHost+"/private-api/favorites-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({account:o,code:t})})).json()},onSuccess:(o,i)=>{r();let s=h();s.invalidateQueries({queryKey:c.accounts.favorites(e)}),s.invalidateQueries({queryKey:c.accounts.favoritesInfinite(e)}),s.invalidateQueries({queryKey:c.accounts.checkFavorite(e,i)});},onError:n})}function Xb(e,t,r,n){return useMutation({mutationKey:["accounts","favorites","delete",e],mutationFn:async o=>{if(!e||!t)throw new Error("[SDK][Account][Favorites] \u2013 missing auth");let s=await _()(f.privateApiHost+"/private-api/favorites-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({account:o,code:t})});if(!s.ok)throw new Error(`Failed to delete favorite: ${s.status}`);return s.json()},onMutate:async o=>{if(!e)return;let i=h(),s=c.accounts.favorites(e),a=c.accounts.favoritesInfinite(e),u=c.accounts.checkFavorite(e,o);await Promise.all([i.cancelQueries({queryKey:s}),i.cancelQueries({queryKey:a}),i.cancelQueries({queryKey:u})]);let p=i.getQueryData(s);p&&i.setQueryData(s,p.filter(y=>y.account!==o));let l=i.getQueryData(u);i.setQueryData(u,false);let m=i.getQueriesData({queryKey:a}),d=new Map(m);for(let[y,P]of m)P&&i.setQueryData(y,{...P,pages:P.pages.map(v=>({...v,data:v.data.filter(S=>S.account!==o)}))});return {previousList:p,previousInfinite:d,previousCheck:l}},onSuccess:(o,i)=>{r();let s=h();s.invalidateQueries({queryKey:c.accounts.favorites(e)}),s.invalidateQueries({queryKey:c.accounts.favoritesInfinite(e)}),s.invalidateQueries({queryKey:c.accounts.checkFavorite(e,i)});},onError:(o,i,s)=>{let a=h();if(s?.previousList&&a.setQueryData(c.accounts.favorites(e),s.previousList),s?.previousInfinite)for(let[u,p]of s.previousInfinite)a.setQueryData(u,p);s?.previousCheck!==void 0&&a.setQueryData(c.accounts.checkFavorite(e,i),s.previousCheck),n(o);}})}function Tc(e,t){let r=new Map;return e.forEach(([n,o])=>{r.set(n.toString(),o);}),t.forEach(([n,o])=>{r.set(n.toString(),o);}),Array.from(r.entries()).sort(([n],[o])=>n.localeCompare(o)).map(([n,o])=>[n,o])}function io(e,t){let{data:r}=useQuery(I(e));return useMutation({mutationKey:["accounts","keys-update",e],mutationFn:async({keys:n,keepCurrent:o=false,currentKey:i,keysToRevoke:s=[],keysToRevokeByAuthority:a={}})=>{if(n.length===0)throw new Error("[SDK][Update password] \u2013 no new keys provided");if(!r)throw new Error("[SDK][Update password] \u2013 cannot update keys for anon user");let u=p=>{let l=JSON.parse(JSON.stringify(r[p])),d=[...a[p]||[],...a[p]===void 0?s:[]],y=o?l.key_auths.filter(([P])=>!d.includes(P.toString())):[];return l.key_auths=Tc(y,n.map((P,v)=>[P[p].createPublic().toString(),v+1])),l};return W([["account_update",{account:e,json_metadata:r.json_metadata,owner:u("owner"),active:u("active"),posting:u("posting"),memo_key:n[0].memo_key.createPublic().toString()}]],i)},...t})}function cv(e,t){let{data:r}=useQuery(I(e)),{mutateAsync:n}=io(e);return useMutation({mutationKey:["accounts","password-update",e],mutationFn:async({newPassword:o,currentPassword:i,keepCurrent:s})=>{if(!r)throw new Error("[SDK][Update password] \u2013 cannot update password for anon user");let a=M.fromLogin(e,i,"owner");return n({currentKey:a,keepCurrent:s,keys:[{owner:M.fromLogin(e,o,"owner"),active:M.fromLogin(e,o,"active"),posting:M.fromLogin(e,o,"posting"),memo_key:M.fromLogin(e,o,"memo")}]})},...t})}function mv(e,t,r){let n=useQueryClient(),{data:o}=useQuery(I(e));return useMutation({mutationKey:["accounts","revoke-posting",o?.name],mutationFn:async({accountName:i,type:s,key:a})=>{if(!o)throw new Error("[SDK][Accounts] \u2013\xA0cannot revoke posting for anonymous user");let u=JSON.parse(JSON.stringify(o.posting));u.account_auths=u.account_auths.filter(([l])=>l!==i);let p={account:o.name,posting:u,memo_key:o.memo_key,json_metadata:o.json_metadata};if(s==="key"&&a)return W([["account_update",p]],a);if(s==="keychain"){if(!r?.broadcast)throw new Error("[SDK][Accounts] \u2013 missing keychain broadcaster");return r.broadcast([["account_update",p]],"active")}else return !t.hsCallbackUrl&&process.env.NODE_ENV==="development"&&console.warn("[SDK][Accounts] hsCallbackUrl not provided for HiveSigner revoke-posting; user will not be redirected after signing."),kn.sendOperation(["account_update",p],t.hsCallbackUrl?{callback:t.hsCallbackUrl}:{},()=>{})},onError:t.onError,onSuccess:(i,s,a)=>{t.onSuccess?.(i,s,a),n.setQueryData(I(e).queryKey,u=>({...u,posting:{...u?.posting,account_auths:u?.posting?.account_auths?.filter(([p])=>p!==s.accountName)??[]}}));}})}function vv(e,t,r,n){let{data:o}=useQuery(I(e));return useMutation({mutationKey:["accounts","recovery",o?.name],mutationFn:async({accountName:i,type:s,key:a,email:u})=>{if(!o)throw new Error("[SDK][Accounts] \u2013\xA0cannot change recovery for anonymous user");let p={account_to_recover:o.name,new_recovery_account:i,extensions:[]};if(s==="ecency"){if(!t)throw new Error("[SDK][Accounts] \u2013 missing access token");return _()(f.privateApiHost+"/private-api/recoveries-add",{method:"POST",body:JSON.stringify({code:t,email:u,publicKeys:[...o.owner.key_auths,...o.active.key_auths,...o.posting.key_auths,o.memo_key]})})}else {if(s==="key"&&a)return W([["change_recovery_account",p]],a);if(s==="keychain"){if(!n?.broadcast)throw new Error("[SDK][Accounts] \u2013 missing keychain broadcaster");return n.broadcast([["change_recovery_account",p]],"owner")}else return !r.hsCallbackUrl&&process.env.NODE_ENV==="development"&&console.warn("[SDK][Accounts] hsCallbackUrl not provided for HiveSigner update-recovery; user will not be redirected after signing."),kn.sendOperation(["change_recovery_account",p],r.hsCallbackUrl?{callback:r.hsCallbackUrl}:{},()=>{})}},onError:r.onError,onSuccess:r.onSuccess})}function Ov(e,t){let r=e.key_auths.filter(([o])=>!t.has(String(o))).reduce((o,[,i])=>o+i,0),n=(e.account_auths??[]).reduce((o,[,i])=>o+i,0);return r+n>=e.weight_threshold}function so(e,t){let r=new Set(t.map(s=>s.toString())),n=s=>s.key_auths.some(([a])=>r.has(String(a))),o=s=>{let a=JSON.parse(JSON.stringify(s));return a.key_auths=a.key_auths.filter(([u])=>!r.has(u.toString())),a},i=n(e.owner);return {account:e.name,json_metadata:e.json_metadata,owner:i?o(e.owner):void 0,active:o(e.active),posting:o(e.posting),memo_key:e.memo_key}}function Cv(e,t){let{data:r}=useQuery(I(e));return useMutation({mutationKey:["accounts","revoke-key",r?.name],mutationFn:async({currentKey:n,revokingKey:o})=>{if(!r)throw new Error("[SDK][Revoke key] \u2013 cannot update keys for anon user");let i=Array.isArray(o)?o:[o],s=so(r,i);return W([["account_update",s]],n)},...t})}function Fv(e,t,r){return b(["accounts","claimAccount"],e,({creator:n,fee:o="0.000 HIVE"})=>[yr(n,o)],async(n,o)=>{await O(t?.adapter,r,[c.accounts.full(o.creator)]);},t,"active",{broadcastMode:r})}function Bv(e,t,r){return b(["accounts","grant-posting-permission"],e,n=>[hr(e,n.currentPosting,n.grantedAccount,n.weightThreshold,n.memoKey,n.jsonMetadata)],async()=>{await O(t?.adapter,r,[c.accounts.full(e)]);},t,"active",{broadcastMode:r})}function Hv(e,t,r){return b(["accounts","create"],e,n=>[n.useClaimed?gr(e,n.newAccountName,n.keys):mr(e,n.newAccountName,n.keys,n.fee)],async()=>{await O(t?.adapter,r,[c.accounts.full(e)]);},t,"active",{broadcastMode:r})}var Pr=300*60*24,Uc=1e4,Vc=5e7;function ao(e){let t=x(e.vesting_shares).amount,r=x(e.received_vesting_shares).amount,n=x(e.delegated_vesting_shares).amount,o=x(e.vesting_withdraw_rate).amount,i=(Number(e.to_withdraw)-Number(e.withdrawn))/1e6,s=Math.min(o,i);return t+r-n-s}function jc(e,t,r){let n=e*1e6;return (t*r/1e4/50+1)*n/1e4}function Lc(e){if(Number.isFinite(e.lastHardfork))return e.lastHardfork>=28;let[t="0",r="0"]=(e.currentHardforkVersion??"0.0.0").split(".");return Number(t)>1||Number(t)===1&&Number(r)>=28}function Wc(e,t,r){let n=t.votePowerReserveRate||Number(t.raw?.globalDynamic?.vote_power_reserve_rate??0);if(!Number.isFinite(n)||n<=0)return 0;let o=ao(e);if(!Number.isFinite(o)||o<=0)return 0;let i=o*1e6,s=Math.ceil(i*r*60*60*24/Uc/(n*Pr)),a=Vt(e),u=Math.min(a.current_mana,a.max_mana);return !Number.isFinite(u)||s>u?0:Math.max(s-Vc,0)}function $c(e,t,r,n=1e4){if(!Number.isFinite(r)||!Number.isFinite(n))return 0;if(Lc(t))return Wc(e,t,n);let o=0;try{if(o=ao(e),!Number.isFinite(o))return 0}catch{return 0}return jc(o,r,n)}function Lv(e){return Vt(e).percentage/100}function Wv(e){if(!Number.isFinite(e))throw new TypeError("Voting power must be a finite number");if(e<0||e>100)throw new RangeError("Voting power must be between 0 and 100");return (100-e)*100*Pr/1e4}function $v(e){let t=parseFloat(e.vesting_shares)+parseFloat(e.received_vesting_shares)-parseFloat(e.delegated_vesting_shares),r=Math.floor(Date.now()/1e3)-e.downvote_manabar.last_update_time,n=t*1e6/4;if(n<=0)return 0;let o=parseFloat(e.downvote_manabar.current_mana.toString())+r*n/Pr;o>n&&(o=n);let i=o*100/n;return isNaN(i)?0:i>100?100:i}function Gv(e){return pt(e).percentage/100}function zv(e,t,r,n=1e4){if(!Number.isFinite(r)||!Number.isFinite(n))return 0;let{fundRecentClaims:o,fundRewardBalance:i,base:s,quote:a}=t;if(!Number.isFinite(o)||!Number.isFinite(i)||!Number.isFinite(s)||!Number.isFinite(a)||o===0||a===0)return 0;let u=$c(e,t,r,n);return Number.isFinite(u)?u/o*i*(s/a):0}var Gc={vote:"posting",comment:"posting",delete_comment:"posting",comment_options:"posting",claim_reward_balance:"posting",cancel_transfer_from_savings:"active",collateralized_convert:"active",convert:"active",delegate_vesting_shares:"active",recurrent_transfer:"active",set_withdraw_vesting_route:"active",transfer:"active",transfer_from_savings:"active",transfer_to_savings:"active",transfer_to_vesting:"active",withdraw_vesting:"active",limit_order_create:"active",limit_order_cancel:"active",account_update:"active",account_update2:"active",claim_account:"active",create_claimed_account:"active",account_witness_proxy:"active",account_witness_vote:"active",remove_proposal:"active",update_proposal_votes:"active",change_recovery_account:"owner",request_account_recovery:"owner",recover_account:"owner",reset_account:"owner",set_reset_account:"owner"};function zc(e){let t=e[0],r=e[1];if(t!=="custom_json")throw new Error("Operation is not a custom_json operation");let n=r;return n.required_auths&&n.required_auths.length>0?"active":(n.required_posting_auths&&n.required_posting_auths.length>0,"posting")}function Jc(e){let t=e[0];if(t!=="create_proposal"&&t!=="update_proposal")throw new Error("Operation is not a proposal operation");return "active"}function Yc(e){let t=e[0];return t==="custom_json"?zc(e):t==="create_proposal"||t==="update_proposal"?Jc(e):Gc[t]??"posting"}function Yv(e){let t="posting";for(let r of e){let n=Yc(r);if(n==="owner")return "owner";n==="active"&&t==="posting"&&(t="active");}return t}function r0(e){return useMutation({mutationKey:["operations","sign",e],mutationFn:({operation:t,keyOrSeed:r})=>{if(!e)throw new Error("[Operations][Sign] \u2013 cannot sign op with anon user");let n;return r.split(" ").length===12?n=M.fromLogin(e,r,"active"):Pn(r)?n=M.fromString(r):n=M.from(r),W([t],n)}})}function i0(e,t,r="active"){return useMutation({mutationKey:["operations","sign-keychain",e],mutationFn:({operation:n})=>{if(!e)throw new Error("[SDK][Keychain] \u2013\xA0cannot sign operation with anon user");if(!t?.broadcast)throw new Error("[SDK][Keychain] \u2013 missing keychain broadcaster");return t.broadcast([n],r)}})}function u0(e="/"){return useMutation({mutationKey:["operations","sign-hivesigner",e],mutationFn:async({operation:t})=>kn.sendOperation(t,{callback:e},()=>{})})}function f0(){return queryOptions({queryKey:["operations","chain-properties"],queryFn:async()=>await g("condenser_api.get_chain_properties",[])})}function co(e,t,r){return {...e,...t??{},title:r.title,body:r.body}}function uo(e,t){return {...e??{},title:t.title,body:t.body}}function v0(e,t){return useMutation({mutationKey:["posts","add-fragment",e],mutationFn:async({title:r,body:n})=>{if(!t)throw new Error("[SDK][Posts] Missing access token");return (await _()(f.privateApiHost+"/private-api/fragments-add",{method:"POST",body:JSON.stringify({code:t,title:r,body:n}),headers:{"Content-Type":"application/json"}})).json()},onSuccess(r,n){let o=h(),i=uo(r,n);o.setQueryData(Ie(e,t).queryKey,s=>[i,...s??[]]),o.setQueriesData({queryKey:["posts","fragments","infinite",e]},s=>s&&{...s,pages:s.pages.map((a,u)=>u===0?{...a,data:[i,...a.data]}:a)});}})}function S0(e,t){return useMutation({mutationKey:["posts","edit-fragment",e],mutationFn:async({fragmentId:r,title:n,body:o})=>{if(!t)throw new Error("[SDK][Posts] Missing access token");return (await _()(f.privateApiHost+"/private-api/fragments-update",{method:"POST",body:JSON.stringify({code:t,id:r,title:n,body:o}),headers:{"Content-Type":"application/json"}})).json()},onSuccess(r,n){let o=h(),i=s=>co(s,r,n);o.setQueryData(Ie(e,t).queryKey,s=>s?.map(a=>a.id===n.fragmentId?i(a):a)??[]),o.setQueriesData({queryKey:["posts","fragments","infinite",e]},s=>s&&{...s,pages:s.pages.map(a=>({...a,data:a.data.map(u=>u.id===n.fragmentId?i(u):u)}))});}})}function K0(e,t){return useMutation({mutationKey:["posts","remove-fragment",e],mutationFn:async({fragmentId:r})=>{if(!t)throw new Error("[SDK][Posts] Missing access token");return _()(f.privateApiHost+"/private-api/fragments-delete",{method:"POST",body:JSON.stringify({code:t,id:r}),headers:{"Content-Type":"application/json"}})},onSuccess(r,n){let o=h();o.setQueryData(Ie(e,t).queryKey,i=>[...i??[]].filter(({id:s})=>s!==n.fragmentId)),o.setQueriesData({queryKey:["posts","fragments","infinite",e]},i=>i&&{...i,pages:i.pages.map(s=>({...s,data:s.data.filter(a=>a.id!==n.fragmentId)}))});}})}async function U(e){if(!e.ok){let r;try{r=await e.json();}catch{r=void 0;}let n=new Error(`Request failed with status ${e.status}`);throw n.status=e.status,n.data=r,n}let t=await e.text();if(!t||t.trim()==="")return "";try{return JSON.parse(t)}catch(r){return console.warn("[SDK] Failed to parse JSON response:",r,"Response:",t),""}}async function B0(e,t,r,n){let i=await _()(f.privateApiHost+"/private-api/account-create",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:e,email:t,referral:r,captcha_token:n})}),s=await U(i);return {status:i.status,data:s}}async function N0(e){let r=await _()(f.privateApiHost+"/private-api/subscribe",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:e})}),n=await U(r);return {status:r.status,data:n}}async function M0(e,t,r="",n=""){let o={code:e,ty:t};r&&(o.bl=r),n&&(o.tx=n);let s=await _()(f.privateApiHost+"/private-api/usr-activity",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(o)});await U(s);}async function Q0(e,t,r=null,n=null){let o={code:e};t&&(o.filter=t),r&&(o.since=r),n&&(o.user=n);let s=await _()(f.privateApiHost+"/private-api/notifications",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(o)});return U(s)}async function H0(e,t,r,n,o,i){let s={code:e,username:t,token:i,system:r,allows_notify:n,notify_types:o},u=await _()(f.privateApiHost+"/private-api/register-device",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(s)});return U(u)}async function U0(e,t,r){let n={code:e,username:t,token:r},i=await _()(f.privateApiHost+"/private-api/detail-device",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(n)});return U(i)}async function po(e,t){let r={code:e};t&&(r.id=t);let o=await _()(f.privateApiHost+"/private-api/notifications/mark",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return U(o)}async function lo(e,t){let r={code:e,url:t},o=await _()(f.privateApiHost+"/private-api/images-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return U(o)}var su="https://i.ecency.com";async function fo(e,t,r){let n=_(),o=new FormData;o.append("file",e);let i=await n(`${su}/hs/${t}`,{method:"POST",body:o,signal:r});return U(i)}async function V0(e,t,r,n){let o=_(),i=new FormData;i.append("file",e);let s=await o(`${f.imageHost}/${t}/${r}`,{method:"POST",body:i,signal:n});return U(s)}async function mo(e,t){let r={code:e,id:t},o=await _()(f.privateApiHost+"/private-api/images-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return U(o)}async function go(e,t,r,n,o){let i={code:e,title:t,body:r,tags:n,meta:o},a=await _()(f.privateApiHost+"/private-api/drafts-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(i)});return U(a)}async function yo(e,t,r,n,o,i){let s={code:e,id:t,title:r,body:n,tags:o,meta:i},u=await _()(f.privateApiHost+"/private-api/drafts-update",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(s)});return U(u)}async function ho(e,t){let r={code:e,id:t},o=await _()(f.privateApiHost+"/private-api/drafts-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return U(o)}async function _o(e,t,r,n,o,i,s,a){let u={code:e,permlink:t,title:r,body:n,meta:o,schedule:s,reblog:a};i&&(u.options=i);let l=await _()(f.privateApiHost+"/private-api/schedules-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(u)});return U(l)}async function wo(e,t){let r={code:e,id:t},o=await _()(f.privateApiHost+"/private-api/schedules-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return U(o)}async function bo(e,t){let r={code:e,id:t},o=await _()(f.privateApiHost+"/private-api/schedules-move",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return U(o)}async function j0(e,t,r){let n={code:e,author:t,permlink:r},i=await _()(f.privateApiHost+"/private-api/promoted-post",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(n)});return U(i)}async function L0(e,t,r){let n={username:e,email:t,friend:r},i=await _()(f.privateApiHost+"/private-api/account-create-friend",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(n)});return U(i)}function J0(e,t,r,n){return useMutation({mutationKey:["posts","drafts","add",e],mutationFn:async({title:o,body:i,tags:s,meta:a})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for addDraft");return go(t,o,i,s,a)},onSuccess:o=>{r?.();let i=h();o?.drafts?i.setQueryData(c.posts.drafts(e),o.drafts):i.invalidateQueries({queryKey:c.posts.drafts(e)}),i.invalidateQueries({queryKey:c.posts.draftsInfinite(e)});},onError:n})}function tP(e,t,r,n){return useMutation({mutationKey:["posts","drafts","update",e],mutationFn:async({draftId:o,title:i,body:s,tags:a,meta:u})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for updateDraft");return yo(t,o,i,s,a,u)},onSuccess:()=>{r?.();let o=h();o.invalidateQueries({queryKey:c.posts.drafts(e)}),o.invalidateQueries({queryKey:c.posts.draftsInfinite(e)});},onError:n})}function aP(e,t,r,n){return useMutation({mutationKey:["posts","drafts","delete",e],mutationFn:async({draftId:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for deleteDraft");return ho(t,o)},onMutate:async({draftId:o})=>{if(!e)return;let i=h(),s=c.posts.drafts(e),a=c.posts.draftsInfinite(e);await Promise.all([i.cancelQueries({queryKey:s}),i.cancelQueries({queryKey:a})]);let u=i.getQueryData(s);u&&i.setQueryData(s,u.filter(m=>m._id!==o));let p=i.getQueriesData({queryKey:a}),l=new Map(p);for(let[m,d]of p)d&&i.setQueryData(m,{...d,pages:d.pages.map(y=>({...y,data:y.data.filter(P=>P._id!==o)}))});return {previousList:u,previousInfinite:l}},onSuccess:()=>{r?.();let o=h();o.invalidateQueries({queryKey:c.posts.drafts(e)}),o.invalidateQueries({queryKey:c.posts.draftsInfinite(e)});},onError:(o,i,s)=>{let a=h();if(s?.previousList&&a.setQueryData(c.posts.drafts(e),s.previousList),s?.previousInfinite)for(let[u,p]of s.previousInfinite)a.setQueryData(u,p);n?.(o);}})}function dP(e,t,r,n){return useMutation({mutationKey:["posts","schedules","add",e],mutationFn:async({permlink:o,title:i,body:s,meta:a,options:u,schedule:p,reblog:l})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for addSchedule");return _o(t,o,i,s,a,u,p,l)},onSuccess:()=>{r?.(),h().invalidateQueries({queryKey:c.posts.schedules(e)});},onError:n})}function hP(e,t,r,n){return useMutation({mutationKey:["posts","schedules","delete",e],mutationFn:async({id:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for deleteSchedule");return wo(t,o)},onSuccess:o=>{r?.();let i=h();o?i.setQueryData(c.posts.schedules(e),o):i.invalidateQueries({queryKey:c.posts.schedules(e)});},onError:n})}function PP(e,t,r,n){return useMutation({mutationKey:["posts","schedules","move",e],mutationFn:async({id:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for moveSchedule");return bo(t,o)},onSuccess:o=>{r?.();let i=h();o?i.setQueryData(c.posts.schedules(e),o):i.invalidateQueries({queryKey:c.posts.schedules(e)}),i.invalidateQueries({queryKey:c.posts.drafts(e)});},onError:n})}function EP(e,t,r,n){return useMutation({mutationKey:["posts","images","add",e],mutationFn:async({url:o,code:i})=>{let s=i??t;if(!e||!s)throw new Error("[SDK][Posts] \u2013 missing auth for addImage");return lo(s,o)},onSuccess:()=>{r?.(),h().invalidateQueries({queryKey:c.posts.images(e)});},onError:n})}function qP(e,t,r,n){return useMutation({mutationKey:["posts","images","delete",e],mutationFn:async({imageId:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for deleteImage");return mo(t,o)},onSuccess:(o,i)=>{r?.();let s=h(),{imageId:a}=i;s.setQueryData(["posts","images",e],u=>u?.filter(p=>p._id!==a)),s.setQueriesData({queryKey:["posts","images","infinite",e]},u=>u&&{...u,pages:u.pages.map(p=>({...p,data:p.data.filter(l=>l._id!==a)}))});},onError:n})}function DP(e,t){return useMutation({mutationKey:["posts","images","upload"],mutationFn:async({file:r,token:n,signal:o})=>fo(r,n,o),onSuccess:e,onError:t})}function bt(e,t){return `/@${e}/${t}`}function yu(e,t,r){return (r??h()).getQueryData(c.posts.entry(bt(e,t)))}function hu(e,t){(t??h()).setQueryData(c.posts.entry(bt(e.author,e.permlink)),e);}function wt(e,t,r,n){let o=n??h(),i=bt(e,t),s=o.getQueryData(c.posts.entry(i));if(!s)return;let a=r(s);return o.setQueryData(c.posts.entry(i),a),s}var Re;(a=>{function e(u,p,l,m,d){wt(u,p,y=>({...y,active_votes:l,stats:{...y.stats||{gray:false,hide:false,flag_weight:0,total_votes:0},total_votes:l.length,flag_weight:y.stats?.flag_weight||0},total_votes:l.length,payout:m,pending_payout_value:String(m)}),d);}a.updateVotes=e;function t(u,p,l,m){wt(u,p,d=>({...d,reblogs:l}),m);}a.updateReblogsCount=t;function r(u,p,l,m){wt(u,p,d=>({...d,children:l}),m);}a.updateRepliesCount=r;function n(u,p,l,m){wt(p,l,d=>({...d,children:d.children+1,replies:[u,...d.replies]}),m);}a.addReply=n;function o(u,p){u.forEach(l=>hu(l,p));}a.updateEntries=o;function i(u,p,l){(l??h()).invalidateQueries({queryKey:c.posts.entry(bt(u,p))});}a.invalidateEntry=i;function s(u,p,l){return yu(u,p,l)}a.getEntry=s;})(Re||={});function VP(e,t,r){return b(["posts","vote"],e,({author:n,permlink:o,weight:i})=>[Gt(e,n,o,i)],async(n,o)=>{let i=Re.getEntry(o.author,o.permlink);if(i?.active_votes){let a=[...i.active_votes.filter(p=>p.voter!==e),...o.weight!==0?[{rshares:o.weight,voter:e}]:[]],u=i.payout+(o.estimated??0);Re.updateVotes(o.author,o.permlink,a,u);}let s=n?.id??n?.tx_id;if(t?.adapter?.recordActivity&&s&&t.adapter.recordActivity(120,s,n?.block_num).catch(()=>{}),t?.adapter?.invalidateQueries){let a=()=>{t.adapter.invalidateQueries([c.posts.entry(`/@${o.author}/${o.permlink}`),c.accounts.full(e)]);};(r??"async")==="async"?setTimeout(a,4e3):a();}},t,"posting",{broadcastMode:r??"async"})}function GP(e,t,r){return b(["posts","reblog"],e,({author:n,permlink:o,deleteReblog:i})=>[Jt(e,n,o,i??false)],async(n,o)=>{let i=Re.getEntry(o.author,o.permlink);if(i){let p=Math.max(0,(i.reblogs??0)+(o.deleteReblog?-1:1));Re.updateReblogsCount(o.author,o.permlink,p);}let s=n?.id??n?.tx_id;t?.adapter?.recordActivity&&s&&t.adapter.recordActivity(130,s,n?.block_num).catch(()=>{});let a=()=>{h().invalidateQueries({queryKey:c.posts.accountPostsBlogPrefix(e)}),t?.adapter?.invalidateQueries&&t.adapter.invalidateQueries([c.posts.entry(`/@${o.author}/${o.permlink}`),c.posts.rebloggedBy(o.author,o.permlink)]);};(r??"async")==="async"?setTimeout(a,4e3):a();},t,"posting",{broadcastMode:r??"async"})}function XP(e,t,r){return b(["posts","comment"],e,n=>{let o=[];if(o.push(ke(n.author,n.permlink,n.parentAuthor,n.parentPermlink,n.title,n.body,n.jsonMetadata)),n.options){let{maxAcceptedPayout:i="1000000.000 HBD",percentHbd:s=1e4,allowVotes:a=true,allowCurationRewards:u=true,beneficiaries:p=[]}=n.options,l=[];if(p.length>0){let m=[...p].sort((d,y)=>d.account.localeCompare(y.account));l.push([0,{beneficiaries:m.map(d=>({account:d.account,weight:d.weight}))}]);}o.push(Ee(n.author,n.permlink,i,s,a,u,l));}return o},async(n,o)=>{let i=!o.parentAuthor,s=i?100:110,a=n?.id??n?.tx_id;if(t?.adapter?.recordActivity&&a&&t.adapter.recordActivity(s,a,n?.block_num).catch(()=>{}),t?.adapter?.invalidateQueries){let u=[c.accounts.full(e),c.resourceCredits.account(e)];if(!i){u.push(c.posts.entry(`/@${o.parentAuthor}/${o.parentPermlink}`));let p=o.rootAuthor||o.parentAuthor,l=o.rootPermlink||o.parentPermlink;u.push({predicate:m=>{let d=m.queryKey;return Array.isArray(d)&&d[0]==="posts"&&d[1]==="discussions"&&d[2]===p&&d[3]===l}});}await t.adapter.invalidateQueries(u);}},t,"posting",{broadcastMode:r})}function tO(e,t,r,n){let o=n??h(),i=o.getQueriesData({predicate:s=>{let a=s.queryKey;return Array.isArray(a)&&a[0]==="posts"&&a[1]==="discussions"&&a[2]===t&&a[3]===r}});for(let[s,a]of i)a&&o.setQueryData(s,[e,...a]);}function vo(e,t,r,n,o){let i=o??h(),s=new Map,a=i.getQueriesData({predicate:u=>{let p=u.queryKey;return Array.isArray(p)&&p[0]==="posts"&&p[1]==="discussions"&&p[2]===r&&p[3]===n}});for(let[u,p]of a)p&&(s.set(u,p),i.setQueryData(u,p.filter(l=>l.author!==e||l.permlink!==t)));return s}function Po(e,t){let r=t??h();for(let[n,o]of e)r.setQueryData(n,o);}function rO(e,t,r,n){let o=n??h(),i=`/@${e}/${t}`,s=o.getQueryData(c.posts.entry(i));return s&&o.setQueryData(c.posts.entry(i),{...s,...r}),s}function nO(e,t,r,n){let o=n??h(),i=`/@${e}/${t}`;o.setQueryData(c.posts.entry(i),r);}function cO(e,t,r){return b(["posts","deleteComment"],e,({author:n,permlink:o})=>[zt(n,o)],async(n,o)=>{if(t?.adapter?.invalidateQueries){let i=[c.accounts.full(e)];if(o.parentAuthor&&o.parentPermlink){i.push(c.posts.entry(`/@${o.parentAuthor}/${o.parentPermlink}`));let s=o.rootAuthor||o.parentAuthor,a=o.rootPermlink||o.parentPermlink;i.push({predicate:u=>{let p=u.queryKey;return Array.isArray(p)&&p[0]==="posts"&&p[1]==="discussions"&&p[2]===s&&p[3]===a}});}await t.adapter.invalidateQueries(i);}},t,"posting",{broadcastMode:r,onMutate:async n=>{let o=n.rootAuthor||n.parentAuthor,i=n.rootPermlink||n.parentPermlink;return o&&i?{snapshots:vo(n.author,n.permlink,o,i)}:{}},onError:(n,o,i)=>{let{snapshots:s}=i??{};s&&Po(s);}})}function dO(e,t,r){return b(["posts","cross-post"],e,n=>{let o=[];if(o.push(ke(n.author,n.permlink,"",n.parentPermlink,n.title,n.body,n.jsonMetadata)),n.options){let{maxAcceptedPayout:i="1000000.000 HBD",percentHbd:s=1e4,allowVotes:a=true,allowCurationRewards:u=true}=n.options;o.push(Ee(n.author,n.permlink,i,s,a,u,[]));}return o},async(n,o)=>{if(t?.adapter?.invalidateQueries){let i=[c.accounts.full(e),{predicate:s=>{let a=s.queryKey;return Array.isArray(a)&&a[0]==="posts"&&a[1]==="posts-ranked"&&a[3]===o.parentPermlink}}];await t.adapter.invalidateQueries(i);}},t,"posting",{broadcastMode:r??"async"})}function yO(e,t,r){return b(["posts","update-reply"],e,n=>{let o=[];if(o.push(ke(n.author,n.permlink,n.parentAuthor,n.parentPermlink,n.title,n.body,n.jsonMetadata)),n.options){let{maxAcceptedPayout:i="1000000.000 HBD",percentHbd:s=1e4,allowVotes:a=true,allowCurationRewards:u=true,beneficiaries:p=[]}=n.options,l=[];if(p.length>0){let m=[...p].sort((d,y)=>d.account.localeCompare(y.account));l.push([0,{beneficiaries:m.map(d=>({account:d.account,weight:d.weight}))}]);}o.push(Ee(n.author,n.permlink,i,s,a,u,l));}return o},async(n,o)=>{let i=n?.id??n?.tx_id;if(t?.adapter?.recordActivity&&i&&t.adapter.recordActivity(110,i,n?.block_num).catch(s=>{console.debug("[SDK][Posts][useUpdateReply] recordActivity failed",{activityType:110,blockNum:n?.block_num,transactionId:i,error:s});}),t?.adapter?.invalidateQueries){let s=[c.resourceCredits.account(e)];s.push(c.posts.entry(`/@${o.parentAuthor}/${o.parentPermlink}`));let a=o.rootAuthor||o.parentAuthor,u=o.rootPermlink||o.parentPermlink;s.push({predicate:p=>{let l=p.queryKey;return Array.isArray(l)&&l[0]==="posts"&&l[1]==="discussions"&&l[2]===a&&l[3]===u}}),await t.adapter.invalidateQueries(s);}},t,"posting",{broadcastMode:r})}function bO(e,t,r){return b(["ecency","promote"],e,({author:n,permlink:o,duration:i})=>[br(e,n,o,i)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([[...c.posts._promotedPrefix],[...c.points._prefix(e)],c.posts.entry(`/@${o.author}/${o.permlink}`)]);},t,"active",{broadcastMode:r})}var _u=[3e3,3e3,3e3],wu=e=>new Promise(t=>setTimeout(t,e));async function bu(e,t){return g("condenser_api.get_content",[e,t])}async function vu(e,t,r=0,n){let o=n?.delays??_u,i;try{i=await bu(e,t);}catch{i=void 0;}if(i||r>=o.length)return;let s=o[r];return s>0&&await wu(s),vu(e,t,r+1,n)}var Ne={};et(Ne,{useRecordActivity:()=>Or});function Ou(){return typeof window<"u"&&window.location?{url:window.location.href,domain:window.location.host}:{url:"",domain:""}}function Or(e,t,r){return useMutation({mutationKey:["analytics",t],mutationFn:async()=>{if(!t)throw new Error("[SDK][Analytics] \u2013 no activity type provided");let n=_(),o=Ou(),i=r?.url??o.url,s=r?.domain??o.domain;try{await n(f.plausibleHost+"/api/event",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({name:t,url:i,domain:s,props:{username:e}})});}catch{}}})}function TO(e){return queryOptions({queryKey:["analytics","discover-leaderboard",e],queryFn:async({signal:t})=>{let r=await fetch(f.privateApiHost+`/private-api/leaderboard/${e}`,{signal:t});if(!r.ok)throw new Error(`Failed to fetch leaderboard: ${r.status}`);return r.json()}})}function IO(e){return queryOptions({queryKey:["analytics","discover-curation",e],queryFn:async({signal:t})=>{let r=await fetch(f.privateApiHost+`/private-api/curation/${e}`,{signal:t});if(!r.ok)throw new Error(`Failed to fetch curation data: ${r.status}`);let n=await r.json(),o=n.map(s=>s.account),i=await g("condenser_api.get_accounts",[o]);for(let s=0;s<i.length;s++){let a=i[s],u=n[s],p=typeof a.vesting_shares=="string"?a.vesting_shares:a.vesting_shares.toString(),l=typeof a.received_vesting_shares=="string"?a.received_vesting_shares:a.received_vesting_shares.toString(),m=typeof a.delegated_vesting_shares=="string"?a.delegated_vesting_shares:a.delegated_vesting_shares.toString(),d=typeof a.vesting_withdraw_rate=="string"?a.vesting_withdraw_rate:a.vesting_withdraw_rate.toString(),y=parseFloat(p)+parseFloat(l)-parseFloat(m)-parseFloat(d);u.efficiency=u.vests/y;}return n.sort((s,a)=>a.efficiency-s.efficiency),n}})}function MO(e,t=[],r=["visitors","pageviews","visit_duration"],n){let o=[...t].sort(),i=[...r].sort();return queryOptions({queryKey:["analytics","page-stats",e,o,i,n],queryFn:async({signal:s})=>{let a=await fetch(f.privateApiHost+"/api/stats",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({metrics:r,url:encodeURIComponent(e),dimensions:t,date_range:n}),signal:s});if(!a.ok)throw new Error(`Failed to fetch page stats: ${a.status}`);return a.json()},enabled:!!e,staleTime:0})}var kr={};et(kr,{getAccountTokenQueryOptions:()=>xr,getAccountVideosQueryOptions:()=>qu});var Ar={};et(Ar,{getDecodeMemoQueryOptions:()=>Cu});function Cu(e,t,r){return queryOptions({queryKey:["integrations","hivesigner","decode-memo",e],queryFn:async()=>{if(r)return new kn.Client({accessToken:r}).decode(t)}})}var Oo={queries:Ar};function xr(e,t){return queryOptions({queryKey:["integrations","3speak","authenticate",e],enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Integrations][3Speak] \u2013\xA0anon user");let n=await _()(`https://studio.3speak.tv/mobile/login?username=${e}&hivesigner=true`,{headers:{"Content-Type":"application/json"}}),o=Oo.queries.getDecodeMemoQueryOptions(e,(await n.json()).memo,t);await h().prefetchQuery(o);let{memoDecoded:i}=h().getQueryData(o.queryKey);return i.replace("#","")}})}function qu(e,t){return queryOptions({queryKey:["integrations","3speak","videos",e],enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Integrations][3Speak] \u2013\xA0anon user");let r=xr(e,t);await h().prefetchQuery(r);let n=h().getQueryData(r.queryKey);if(!n)throw new Error("[SDK][Integrations][3Speak] \u2013 missing account token");return await(await _()("https://studio.3speak.tv/mobile/api/my-videos",{headers:{"Content-Type":"application/json",Authorization:`Bearer ${n}`}})).json()}})}var sA={queries:kr};function lA(e){return queryOptions({queryKey:["integrations","hiveposh","links",e],retry:false,queryFn:async()=>{try{let r=await _()(`https://hiveposh.com/api/v0/linked-accounts/${e}`,{headers:{"Content-Type":"application/json"}});if(r.status===400&&(await r.json().catch(()=>({})))?.message==="User Not Connected"||!r.ok)return null;let n=await r.json();return {twitter:{username:n.twitter_username,profile:n.twitter_profile},reddit:{username:n.reddit_username,profile:n.reddit_profile}}}catch{return null}}})}function gA({url:e,dimensions:t=[],metrics:r=["visitors","pageviews","visit_duration"],filterBy:n="event:page",dateRange:o,enabled:i=true}){return queryOptions({queryKey:["integrations","plausible",e,t,r,n,o],queryFn:async()=>{let a=await _()(`${f.privateApiHost}/api/stats`,{method:"POST",body:JSON.stringify({metrics:r,url:encodeURIComponent(e),dimensions:t,filterBy:n,...o?{date_range:o}:{}}),headers:{"Content-Type":"application/json"}});if(!a.ok)throw new Error(`Failed to fetch Plausible stats: ${a.status}`);return await a.json()},enabled:!!e&&i,retry:1})}function wA(){return queryOptions({queryKey:["resource-credits","stats"],queryFn:async()=>(await g("rc_api.get_rc_stats",{})).rc_stats})}function OA(e){return queryOptions({queryKey:["resource-credits","account",e],queryFn:async()=>(await g("rc_api.find_rc_accounts",{accounts:[e]})).rc_accounts,enabled:!!e})}var Ao={ready:false,currentMana:0,maxMana:0,avgCost:0,estimatedCost:0,willLikelyFail:false,deficit:0,remaining:0};function kA({rcAccount:e,rcStats:t,operation:r,buffer:n=1.2}){if(!e||!t?.ops)return Ao;let{current_mana:o,max_mana:i}=pt(e),s=Number(t.ops[r]?.avg_cost??0);if(!(s>0))return {...Ao,ready:true,currentMana:o,maxMana:i};let a=Number.isFinite(n)&&n>0?n:1.2,u=s*a,p=o<u;return {ready:true,currentMana:o,maxMana:i,avgCost:s,estimatedCost:u,willLikelyFail:p,deficit:p?Math.ceil(u-o):0,remaining:Math.floor(o/s)}}function TA(e,t,r){return queryOptions({queryKey:["games","status-check",r,e],enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Games] \u2013 missing auth");return await(await _()(f.privateApiHost+"/private-api/get-game",{method:"POST",body:JSON.stringify({game_type:r,code:t}),headers:{"Content-Type":"application/json"}})).json()}})}function IA(e,t,r,n){let{mutateAsync:o}=Or(e,"spin-rolled");return useMutation({mutationKey:["games","post",r,e],mutationFn:async()=>{if(!e||!t)throw new Error("[SDK][Games] \u2013 missing auth");return await(await _()(f.privateApiHost+"/private-api/post-game",{method:"POST",body:JSON.stringify({game_type:r,code:t,key:n}),headers:{"Content-Type":"application/json"}})).json()},onSuccess(){o();}})}function MA(e){let t=e?.replace("@","");return queryOptions({queryKey:c.quests.status(t),enabled:!!t,queryFn:async()=>{if(!t)throw new Error("[SDK][Quests] \u2013 username wasn't provided");let n=await _()(f.privateApiHost+"/private-api/quests",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:t})});if(!n.ok)throw new Error(`Failed to fetch quests: ${n.status}`);return await n.json()},staleTime:3e4,refetchOnMount:true})}var Qu=[{id:"checkin",tier:"daily",goal:1,i18nKey:"checkin",icon:"check-circle"},{id:"post",tier:"daily",goal:1,i18nKey:"post",icon:"pencil"},{id:"comment",tier:"daily",goal:3,i18nKey:"comment",icon:"comment"},{id:"vote",tier:"daily",goal:10,i18nKey:"vote",icon:"chevron-up-circle"},{id:"reblog",tier:"daily",goal:1,i18nKey:"reblog",icon:"repeat"},{id:"spin",tier:"daily",goal:1,i18nKey:"spin",icon:"gift"},{id:"post",tier:"weekly",goal:5,i18nKey:"post",icon:"pencil"},{id:"comment",tier:"weekly",goal:15,i18nKey:"comment",icon:"comment"},{id:"vote",tier:"weekly",goal:50,i18nKey:"vote",icon:"chevron-up-circle"},{id:"reblog",tier:"weekly",goal:5,i18nKey:"reblog",icon:"repeat"},{id:"post",tier:"monthly",goal:20,i18nKey:"post",icon:"pencil"}];function HA(e,t){return Qu.find(r=>r.tier===e&&r.id===t)}function LA(e,t,r){return b(["communities","subscribe"],e,({community:n})=>[sr(e,n)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.accounts.subscriptions(e),[...c.communities.singlePrefix(o.community)],c.communities.context(e,o.community)]);},t,"posting",{broadcastMode:r??"async"})}function zA(e,t,r){return b(["communities","unsubscribe"],e,({community:n})=>[ar(e,n)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.accounts.subscriptions(e),[...c.communities.singlePrefix(o.community)],c.communities.context(e,o.community)]);},t,"posting",{broadcastMode:r??"sync"})}function ZA(e,t,r){return b(["communities","mutePost"],e,({community:n,author:o,permlink:i,notes:s,mute:a})=>[lr(e,n,o,i,s,a)],async(n,o)=>{if(t?.adapter?.invalidateQueries){let i=[c.posts.entry(`/@${o.author}/${o.permlink}`),["community","single",o.community],{predicate:s=>{let a=s.queryKey;return Array.isArray(a)&&a[0]==="posts"&&a[1]==="posts-ranked"&&a[3]===o.community}}];await t.adapter.invalidateQueries(i);}},t,"posting",{broadcastMode:r??"sync"})}function nx(e,t,r,n){return b(["communities","set-role",e],t,({account:o,role:i})=>[cr(t,e,o,i)],async(o,i)=>{h().setQueriesData({queryKey:c.communities.singlePrefix(e)},a=>{if(!a)return a;let u=[...a.team??[]],p=u.findIndex(([l])=>l===i.account);return p>=0?u[p]=[u[p][0],i.role,u[p][2]??""]:u.push([i.account,i.role,""]),{...a,team:u}}),r?.adapter?.invalidateQueries&&await r.adapter.invalidateQueries([[...c.communities.singlePrefix(e)],c.communities.context(i.account,e)]);},r,"posting",{broadcastMode:n??"async"})}function ax(e,t,r,n){return b(["communities","update",e],t,o=>[ur(t,e,o)],async(o,i)=>{h().setQueriesData({queryKey:c.communities.singlePrefix(e)},a=>a&&{...a,...i}),r?.adapter?.invalidateQueries&&await r.adapter.invalidateQueries([[...c.communities.singlePrefix(e)]]);},r,"posting",{broadcastMode:n??"async"})}function lx(e,t,r){return b(["communities","registerRewards"],e,({name:n})=>[vr(n)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([[...c.communities.singlePrefix(o.name)],[...c.points._prefix(e)]]);},t,"active",{broadcastMode:r})}function gx(e,t,r){return b(["communities","pin-post"],e,({community:n,account:o,permlink:i,pin:s})=>[pr(e,n,o,i,s)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.posts.entry(`/@${o.account}/${o.permlink}`),[...c.communities.singlePrefix(o.community)]]);},t,"posting",{broadcastMode:r??"async"})}function bx(e,t,r=100,n=void 0,o=true){return queryOptions({queryKey:c.communities.list(e,t??"",r),enabled:o,queryFn:async()=>{let i=await g("bridge.list_communities",{last:"",limit:r,sort:e==="hot"?"rank":e,query:t||null,observer:n});return i?e==="hot"?i.sort(()=>Math.random()-.5):i:[]}})}function xx(e,t){return queryOptions({queryKey:c.communities.context(e,t),enabled:!!e&&!!t,queryFn:async()=>{let r=await g("bridge.get_community_context",{account:e,name:t});return {role:r?.role??"guest",subscribed:r?.subscribed??false}}})}function Tx(e,t="",r=true){return queryOptions({queryKey:c.communities.single(e,t),enabled:r&&!!e,queryFn:async()=>jn(e??"",t)})}function Ix(e){return queryOptions({queryKey:c.communities.subscribers(e),queryFn:async()=>await g("bridge.list_subscribers",{community:e})??[],staleTime:6e4})}function Qx(e,t){return infiniteQueryOptions({queryKey:c.communities.accountNotifications(e,t),initialPageParam:null,queryFn:async({pageParam:r})=>{try{return await g("bridge.account_notifications",{account:e,limit:t,last_id:r??void 0})??[]}catch{return []}},getNextPageParam:r=>r?.length>0?r[r.length-1].id:null})}function jx(){return queryOptions({queryKey:c.communities.rewarded(),queryFn:async()=>{let e=await fetch(f.privateApiHost+"/private-api/rewarded-communities",{method:"GET",headers:{"Content-Type":"application/json"}});if(!e.ok)throw new Error(`Failed to fetch rewarded communities: ${e.status}`);return e.json()}})}var $u=(s=>(s.OWNER="owner",s.ADMIN="admin",s.MOD="mod",s.MEMBER="member",s.GUEST="guest",s.MUTED="muted",s))($u||{}),Wx={owner:["admin","mod","member","guest","muted"],admin:["mod","member","guest","muted"],mod:["member","guest","muted"]};function Gx(e,t){return e.startsWith("hive-3")||t===3?"Council":e.startsWith("hive-2")||t===2?"Journal":"Topic"}function zx({communityType:e,userRole:t,subscribed:r}){let n=t==="muted"?false:e==="Topic"?true:["owner","admin","mod","member"].includes(t),o=(()=>{if(t==="muted")return false;switch(e){case "Topic":return true;case "Journal":return t!=="guest"||r;case "Council":return n}})(),i=["owner","admin","mod"].includes(t);return {canPost:n,canComment:o,isModerator:i}}function Zx(e,t){return queryOptions({queryKey:c.notifications.unreadCount(e),queryFn:async()=>t?(await(await fetch(`${f.privateApiHost}/private-api/notifications/unread`,{method:"POST",body:JSON.stringify({code:t}),headers:{"Content-Type":"application/json"}})).json()).count:0,enabled:!!e&&!!t,initialData:0,refetchInterval:6e4})}function nk(e,t,r=void 0){return infiniteQueryOptions({queryKey:c.notifications.list(e,r),queryFn:async({pageParam:n})=>{if(!t)return [];let o={code:t,filter:r,since:n,user:void 0},i=await fetch(f.privateApiHost+"/private-api/notifications",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(o)});if(!i.ok)return [];try{return await i.json()}catch{return []}},enabled:!!e&&!!t,initialData:{pages:[],pageParams:[]},initialPageParam:"",getNextPageParam:n=>n?.[n.length-1]?.id??"",refetchOnMount:true})}var Ju=(p=>(p.VOTES="rvotes",p.MENTIONS="mentions",p.FAVORITES="nfavorites",p.BOOKMARKS="nbookmarks",p.FOLLOWS="follows",p.REPLIES="replies",p.REBLOGS="reblogs",p.TRANSFERS="transfers",p.DELEGATIONS="delegations",p))(Ju||{});var Yu=(p=>(p[p.VOTE=1]="VOTE",p[p.MENTION=2]="MENTION",p[p.FOLLOW=3]="FOLLOW",p[p.COMMENT=4]="COMMENT",p[p.RE_BLOG=5]="RE_BLOG",p[p.TRANSFERS=6]="TRANSFERS",p[p.FAVORITES=13]="FAVORITES",p[p.BOOKMARKS=15]="BOOKMARKS",p.ALLOW_NOTIFY="ALLOW_NOTIFY",p))(Yu||{}),sk=[1,2,3,4,5,6,13,15],Xu=(n=>(n.ALL="All",n.UNREAD="Unread",n.READ="Read",n))(Xu||{});function pk(e,t,r){return queryOptions({queryKey:c.notifications.settings(e),queryFn:async()=>{let n=e+"-web";if(!t)throw new Error("Missing access token");let o=await fetch(f.privateApiHost+"/private-api/detail-device",{body:JSON.stringify({code:t,username:e,token:n}),method:"POST",headers:{"Content-Type":"application/json"}});if(!o.ok)throw new Error(`Failed to fetch notification settings: ${o.status}`);return o.json()},enabled:!!e&&!!t,refetchOnMount:false,initialData:()=>({status:0,system:"web",allows_notify:0,notify_types:r?[]:[4,3,2,13,15,1,5,6]})})}function mk(){return queryOptions({queryKey:c.notifications.announcements(),queryFn:async()=>{let e=await fetch(f.privateApiHost+"/private-api/announcements",{method:"GET",headers:{"Content-Type":"application/json"}});if(!e.ok)throw new Error(`Failed to fetch announcements: ${e.status}`);return await e.json()||[]},staleTime:36e5})}function _k(e){return queryOptions({queryKey:c.notifications.spotlights(),queryFn:async()=>{let t=await fetch(f.privateApiHost+"/private-api/spotlights",{method:"GET",headers:{"Content-Type":"application/json"}});if(!t.ok)throw new Error(`Failed to fetch spotlights: ${t.status}`);return await t.json()||[]},staleTime:36e5})}function np(e,t){return {...e,read:!t||t===e.id?1:e.read}}function xo(e){return typeof e=="object"&&e!==null&&"pages"in e&&"pageParams"in e&&Array.isArray(e.pages)}function xk(e,t,r,n){let o=h();return useMutation({mutationKey:["notifications","mark-read",e],mutationFn:async({id:i})=>{if(!e||!t)throw new Error("[SDK][Notifications] \u2013 missing auth for markNotifications");return po(t,i)},onMutate:async({id:i})=>{await o.cancelQueries({queryKey:c.notifications._prefix});let s=[],a=o.getQueriesData({queryKey:c.notifications._prefix,predicate:l=>{let m=l.state.data;return xo(m)}});a.forEach(([l,m])=>{if(m&&xo(m)){s.push([l,m]);let d={...m,pages:m.pages.map(y=>y.map(P=>np(P,i)))};o.setQueryData(l,d);}});let u=c.notifications.unreadCount(e),p=o.getQueryData(u);return typeof p=="number"&&p>0&&(s.push([u,p]),i?a.some(([,m])=>m?.pages.some(d=>d.some(y=>y.id===i&&y.read===0)))&&o.setQueryData(u,p-1):o.setQueryData(u,0)),{previousData:s}},onSuccess:i=>{let s=typeof i=="object"&&i!==null?i.unread:void 0;typeof s=="number"&&o.setQueryData(c.notifications.unreadCount(e),s),r?.(s);},onError:(i,s,a)=>{a?.previousData&&a.previousData.forEach(([u,p])=>{o.setQueryData(u,p);}),n?.(i);},onSettled:()=>{o.invalidateQueries({queryKey:c.notifications._prefix});}})}function Ck(e,t,r){return b(["notifications","set-last-read"],e,({date:n})=>tr(e,n),async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.notifications.unreadCount(e)]);},t,"posting",{broadcastMode:r??"async"})}function Fk(e){return queryOptions({queryKey:["proposals","proposal",e],queryFn:async()=>{let r=(await g("condenser_api.find_proposals",[[e]]))[0];return new Date(r.start_date)<new Date&&new Date(r.end_date)>=new Date?r.status="active":new Date(r.end_date)<new Date?r.status="expired":r.status="inactive",r}})}function Bk(){return queryOptions({queryKey:["proposals","list"],queryFn:async()=>{let t=(await g("database_api.list_proposals",{start:[-1],limit:500,order:"by_total_votes",order_direction:"descending",status:"all"})).proposals,r=t.filter(o=>o.status==="expired");return [...t.filter(o=>o.status!=="expired"),...r]}})}function Uk(e,t,r){return infiniteQueryOptions({queryKey:["proposals","votes",e,t,r],initialPageParam:t,refetchOnMount:true,staleTime:0,queryFn:async({pageParam:n})=>{let s=(await g("condenser_api.list_proposal_votes",[[e,n??t],r,"by_proposal_voter"])).filter(l=>l.proposal?.proposal_id===e).map(l=>({id:l.id,voter:l.voter})),a=await g("condenser_api.get_accounts",[s.map(l=>l.voter)]),u=ft(a);return s.map(l=>({...l,voterAccount:u.find(m=>l.voter===m.name)}))},getNextPageParam:n=>n?.[n.length-1]?.voter??void 0})}function Wk(e){return queryOptions({queryKey:["proposals","votes","by-user",e],enabled:!!e&&e!=="",staleTime:60*1e3,queryFn:async()=>!e||e===""?[]:((await g("database_api.list_proposal_votes",{start:[e],limit:1e3,order:"by_voter_proposal",order_direction:"ascending",status:"votable"})).proposal_votes||[]).filter(n=>n.voter===e)})}function Jk(e,t,r){return b(["proposals","vote"],e,({proposalIds:n,approve:o})=>[ir(e,n,o)],async n=>{try{let o=n?.id??n?.tx_id;t?.adapter?.recordActivity&&o&&t.adapter.recordActivity(150,o,n?.block_num).catch(i=>{console.debug("[SDK][Proposals][useProposalVote] recordActivity failed",{activityType:150,blockNum:n?.block_num,transactionId:o,error:i});}),t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.proposals.list(),c.proposals.votesByUser(e)]);}catch(o){console.warn("[useProposalVote] Post-broadcast side-effect failed:",o);}},t,"active",{broadcastMode:r})}function eE(e,t,r){return b(["proposals","create"],e,n=>[or(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.accounts.full(e),c.proposals.list()]);},t,"active",{broadcastMode:r})}function oE(e,t=50){return infiniteQueryOptions({queryKey:["wallet","vesting-delegations",e,t],initialPageParam:"",queryFn:async({pageParam:r})=>{let n=r?t+1:t,o=await g("condenser_api.get_vesting_delegations",[e,r||"",n]);return r&&o.length>0&&o[0]?.delegatee===r?o.slice(1,t+1):o},getNextPageParam:r=>!r||r.length<t?void 0:r[r.length-1]?.delegatee,enabled:!!e})}function cE(e){return queryOptions({queryKey:["assets","account-delegations",e],enabled:!!e,queryFn:({signal:t})=>L("balance","/accounts/{account-name}/delegations",{"account-name":e},void 0,void 0,t)})}function dE(e){return queryOptions({queryKey:["wallet","vesting-delegation-expirations",e],queryFn:async()=>e?(await g("database_api.find_vesting_delegation_expirations",{account:e})).delegations:[],enabled:!!e})}function yE(e){return queryOptions({queryKey:["wallet","conversion-requests",e],queryFn:()=>g("condenser_api.get_conversion_requests",[e]),select:t=>t.sort((r,n)=>r.requestid-n.requestid)})}function bE(e){return queryOptions({queryKey:["wallet","collateralized-conversion-requests",e],queryFn:()=>g("condenser_api.get_collateralized_conversion_requests",[e]),select:t=>t.sort((r,n)=>r.requestid-n.requestid)})}function AE(e){return queryOptions({queryKey:["wallet","savings-withdraw",e],queryFn:()=>g("condenser_api.get_savings_withdraw_from",[e]),select:t=>t.sort((r,n)=>r.request_id-n.request_id)})}function SE(e){return queryOptions({queryKey:["wallet","withdraw-routes",e],queryFn:()=>g("condenser_api.get_withdraw_routes",[e,"outgoing"])})}function qE(e){return queryOptions({queryKey:["wallet","open-orders",e],queryFn:()=>g("condenser_api.get_open_orders",[e]),select:t=>t.sort((r,n)=>r.orderid-n.orderid),enabled:!!e})}function DE(e,t=100){return infiniteQueryOptions({queryKey:["wallet","outgoing-rc-delegations",e,t],initialPageParam:null,queryFn:async({pageParam:r})=>{let o=(await g("rc_api.list_rc_direct_delegations",{start:[e,r??""],limit:t}).then(i=>i)).rc_direct_delegations||[];return r&&(o=o.filter(i=>i.to!==r)),o},getNextPageParam:r=>r.length===t?r[r.length-1].to:null})}function QE(e){return queryOptions({queryKey:["wallet","incoming-rc",e],enabled:!!e,queryFn:async()=>{if(!e)throw new Error("[SDK][Wallet] - Missing username for incoming RC");let r=await _()(`${f.privateApiHost}/private-api/received-rc/${e}`);if(!r.ok)throw new Error(`Failed to fetch incoming RC: ${r.status}`);return r.json()}})}function jE(e){return queryOptions({queryKey:["wallet","received-vesting-shares",e],queryFn:async()=>{let t=await fetch(f.privateApiHost+`/private-api/received-vesting/${e}`);if(!t.ok)throw new Error(`Failed to fetch received vesting shares: ${t.status}`);return (await t.json()).list}})}function GE(e){return queryOptions({queryKey:["wallet","recurrent-transfers",e],queryFn:()=>g("condenser_api.find_recurrent_transfers",[e]),enabled:!!e})}function ne(e){if(typeof e=="string"){let t=e.trim();return t.length>0?t:void 0}}function Z(e){if(typeof e=="number"&&Number.isFinite(e))return e;if(typeof e=="string"){let t=e.trim();if(!t)return;let r=Number.parseFloat(t);if(Number.isFinite(r))return r;let o=t.replace(/,/g,"").match(/[-+]?\d+(?:\.\d+)?/);if(o){let i=Number.parseFloat(o[0]);if(Number.isFinite(i))return i}}}function vp(e){if(!e||typeof e!="object")return;let t=e;return {name:ne(t.name)??"",symbol:ne(t.symbol)??"",layer:ne(t.layer)??"hive",balance:Z(t.balance)??0,fiatRate:Z(t.fiatRate)??0,currency:ne(t.currency)??"usd",precision:Z(t.precision)??3,address:ne(t.address),error:ne(t.error),pendingRewards:Z(t.pendingRewards),pendingRewardsFiat:Z(t.pendingRewardsFiat),liquid:Z(t.liquid),liquidFiat:Z(t.liquidFiat),savings:Z(t.savings),savingsFiat:Z(t.savingsFiat),staked:Z(t.staked),stakedFiat:Z(t.stakedFiat),iconUrl:ne(t.iconUrl),actions:t.actions??[],extraData:t.extraData??[],apr:Z(t.apr)}}function Pp(e){if(!e||typeof e!="object")return [];let t=[e],r=e;r.data&&typeof r.data=="object"&&t.push(r.data),r.result&&typeof r.result=="object"&&t.push(r.result),r.portfolio&&typeof r.portfolio=="object"&&t.push(r.portfolio);for(let n of t){if(Array.isArray(n))return n;if(n&&typeof n=="object")for(let o of ["wallets","tokens","assets","items","portfolio","balances"]){let i=n[o];if(Array.isArray(i))return i}}return []}function Op(e){if(!e||typeof e!="object")return;let t=e;return ne(t.username)??ne(t.name)??ne(t.account)}function ko(e,t="usd",r=true){return queryOptions({queryKey:["wallet","portfolio","v2",e,r?"only-enabled":"all",t],enabled:!!e,staleTime:6e4,refetchInterval:12e4,queryFn:async()=>{if(!e)throw new Error("[SDK][Wallet] \u2013 username is required");let n=`${B.getValidatedBaseUrl()}/wallet-api/portfolio-v2`,o=await fetch(n,{method:"POST",headers:{Accept:"application/json","Content-Type":"application/json"},body:JSON.stringify({username:e,onlyEnabled:r,currency:t})});if(!o.ok)throw new Error(`[SDK][Wallet] \u2013 Portfolio request failed (${o.status})`);let i=await o.json(),s=Pp(i).map(a=>vp(a)).filter(a=>!!a);if(!s.length)throw new Error("[SDK][Wallet] \u2013 Portfolio payload contained no tokens");return {username:Op(i)??e,currency:ne(i?.fiatCurrency??i?.currency)?.toUpperCase(),wallets:s}}})}function z(e){return queryOptions({queryKey:["assets","hive","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await h().prefetchQuery(fe()),await h().prefetchQuery(I(e));let t=h().getQueryData(fe().queryKey),r=h().getQueryData(I(e).queryKey),n=await g("condenser_api.get_ticker",[]).catch(()=>{}),o=Number.parseFloat(n?.latest??"");if(!r)return {name:"HIVE",title:"Hive",price:Number.isFinite(o)?o:t?t.base/t.quote:0,accountBalance:0};let i=x(r.balance).amount,s=x(r.savings_balance).amount;return {name:"HIVE",title:"Hive",price:Number.isFinite(o)?o:t?t.base/t.quote:0,accountBalance:i+s,parts:[{name:"current",balance:i},{name:"savings",balance:s}]}}})}function Eo(e){return queryOptions({queryKey:["assets","hbd","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await h().prefetchQuery(fe()),await h().prefetchQuery(I(e));let t=h().getQueryData(I(e).queryKey),r=h().getQueryData(fe().queryKey),n=1;return t?{name:"HBD",title:"Hive Dollar",price:n,accountBalance:x(t.hbd_balance).amount+x(t?.savings_hbd_balance).amount,apr:((r?.hbdInterestRate??0)/100).toFixed(3),parts:[{name:"current",balance:x(t.hbd_balance).amount},{name:"savings",balance:x(t.savings_hbd_balance).amount}]}:{name:"HBD",title:"Hive Dollar",price:n,accountBalance:0}}})}function Ep(e){let u=9.5-(e.headBlock-7e6)/25e4*.01;u<.95&&(u=.95);let p=e.vestingRewardPercent/1e4,l=e.virtualSupply,m=e.totalVestingFund;return (l*u*p/m).toFixed(3)}function So(e){return queryOptions({queryKey:["assets","hive-power","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await h().prefetchQuery(fe()),await h().prefetchQuery(I(e));let t=h().getQueryData(fe().queryKey),r=h().getQueryData(I(e).queryKey);if(!t||!r)return {name:"HP",title:"Hive Power",price:0,accountBalance:0};let n=await g("condenser_api.get_ticker",[]).catch(()=>{}),o=Number.parseFloat(n?.latest??""),i=Number.isFinite(o)?o:t.base/t.quote,s=x(r.vesting_shares).amount,a=x(r.delegated_vesting_shares).amount,u=x(r.received_vesting_shares).amount,p=x(r.vesting_withdraw_rate).amount,l=Math.max((Number(r.to_withdraw)-Number(r.withdrawn))/1e6,0),m=Tn(r.next_vesting_withdrawal)?0:Math.min(p,l),d=+Ke(s,t.hivePerMVests).toFixed(3),y=+Ke(a,t.hivePerMVests).toFixed(3),P=+Ke(u,t.hivePerMVests).toFixed(3),v=+Ke(l,t.hivePerMVests).toFixed(3),S=+Ke(m,t.hivePerMVests).toFixed(3),R=Math.max(d-v,0),D=Math.max(d-y,0);return {name:"HP",title:"Hive Power",price:i,accountBalance:+R.toFixed(3),apr:Ep(t),parts:[{name:"hp_balance",balance:d},{name:"available",balance:+D.toFixed(3)},{name:"outgoing_delegations",balance:y},{name:"incoming_delegations",balance:P},...v>0?[{name:"pending_power_down",balance:+v.toFixed(3)}]:[],...S>0&&S!==v?[{name:"next_power_down",balance:+S.toFixed(3)}]:[]]}}})}var K=G.operations,Er={transfers:[K.transfer,K.transfer_to_savings,K.transfer_from_savings,K.cancel_transfer_from_savings,K.recurrent_transfer,K.fill_recurrent_transfer,K.escrow_transfer,K.fill_recurrent_transfer],"market-orders":[K.fill_convert_request,K.fill_order,K.fill_collateralized_convert_request,K.limit_order_create2,K.limit_order_create,K.limit_order_cancel],interests:[K.interest],"stake-operations":[K.return_vesting_delegation,K.withdraw_vesting,K.transfer_to_vesting,K.set_withdraw_vesting_route,K.update_proposal_votes,K.fill_vesting_withdraw,K.account_witness_proxy,K.delegate_vesting_shares],rewards:[K.author_reward,K.curation_reward,K.producer_reward,K.claim_reward_balance,K.comment_benefactor_reward,K.liquidity_reward,K.proposal_pay],"":[]};var wS=Object.keys(G.operations);var Co=G.operations,PS=Co,OS=Object.entries(Co).reduce((e,[t,r])=>(e[r]=t,e),{});var To=G.operations;function Cp(e){return Object.prototype.hasOwnProperty.call(To,e)}function Je(e){let t=Array.isArray(e)?e:[e],r=t.includes(""),n=Array.from(new Set(t.filter(a=>a!=null&&a!==""))),o=r||n.length===0?"all":n.map(a=>a.toString()).sort().join("|"),i=new Set;r||n.forEach(a=>{if(a in Er){Er[a].forEach(u=>i.add(u));return}Cp(a)&&i.add(To[a]);});let s=Tp(Array.from(i));return {filterKey:o,filterArgs:s}}function Tp(e){let t=0n,r=0n;return e.forEach(n=>{n<64?t|=1n<<BigInt(n):r|=1n<<BigInt(n-64);}),[t!==0n?t.toString():null,r!==0n?r.toString():null]}function vt(e,t=20,r=[]){let{filterArgs:n,filterKey:o}=Je(r);return infiniteQueryOptions({queryKey:["assets","hive","transactions",e,t,o],initialData:{pages:[],pageParams:[]},initialPageParam:-1,getNextPageParam:(i,s)=>i?+(i[i.length-1]?.num??0)-1:-1,queryFn:async({pageParam:i})=>(await g("condenser_api.get_account_history",[e,i,t,...n])).map(a=>({num:a[0],type:a[1].op[0],timestamp:a[1].timestamp,trx_id:a[1].trx_id,...a[1].op[1]})),select:({pages:i,pageParams:s})=>({pageParams:s,pages:i.map(a=>a.filter(u=>{switch(u.type){case "author_reward":case "comment_benefactor_reward":return x(u.hive_payout).amount>0;case "transfer":case "transfer_to_savings":case "transfer_to_vesting":case "recurrent_transfer":return x(u.amount).symbol==="HIVE";case "transfer_from_savings":return x(u.amount).symbol==="HIVE";case "fill_recurrent_transfer":let l=x(u.amount);return ["HIVE"].includes(l.symbol);case "claim_reward_balance":return x(u.reward_hive).amount>0;case "curation_reward":case "cancel_transfer_from_savings":case "fill_order":case "limit_order_create":case "limit_order_cancel":case "fill_convert_request":case "fill_collateralized_convert_request":return true;case "limit_order_create2":return true;default:return false}}))})})}function KS(e,t=20,r=[]){let{filterKey:n}=Je(r);return infiniteQueryOptions({...vt(e,t,r),queryKey:["assets","hbd","transactions",e,t,n],select:({pages:o,pageParams:i})=>({pageParams:i,pages:o.map(s=>s.filter(a=>{switch(a.type){case "author_reward":case "comment_benefactor_reward":return x(a.hbd_payout).amount>0;case "claim_reward_balance":return x(a.reward_hbd).amount>0;case "transfer":case "transfer_to_savings":case "transfer_to_vesting":case "recurrent_transfer":return x(a.amount).symbol==="HBD";case "transfer_from_savings":return x(a.amount).symbol==="HBD";case "fill_recurrent_transfer":let l=x(a.amount);return ["HBD"].includes(l.symbol);case "cancel_transfer_from_savings":case "fill_order":case "limit_order_create":case "limit_order_cancel":case "fill_convert_request":case "fill_collateralized_convert_request":case "proposal_pay":case "interest":return true;case "limit_order_create2":return true;default:return false}}))})})}function MS(e,t=20,r=[]){let{filterKey:n}=Je(r),o=new Set(Array.isArray(r)?r:[r]),i=o.has("")||o.size===0;return infiniteQueryOptions({...vt(e,t,r),queryKey:["assets","hive-power","transactions",e,t,n],select:({pages:s,pageParams:a})=>({pageParams:a,pages:s.map(u=>u.filter(p=>{switch(p.type){case "author_reward":case "comment_benefactor_reward":return x(p.vesting_payout).amount>0;case "claim_reward_balance":return x(p.reward_vests).amount>0;case "transfer_to_vesting":return true;case "transfer":case "transfer_to_savings":case "recurrent_transfer":return ["VESTS","HP"].includes(x(p.amount).symbol);case "fill_recurrent_transfer":let d=x(p.amount);return ["VESTS","HP"].includes(d.symbol);case "curation_reward":case "withdraw_vesting":case "delegate_vesting_shares":case "fill_vesting_withdraw":case "return_vesting_delegation":case "producer_reward":case "set_withdraw_vesting_route":return true;default:return i||o.has(p.type)}}))})})}function Ro(e){let t=r=>r.toString().padStart(2,"0");return `${e.getFullYear()}-${t(e.getMonth()+1)}-${t(e.getDate())}T${t(e.getHours())}:${t(e.getMinutes())}:${t(e.getSeconds())}`}function Sr(e,t){return new Date(e.getTime()-t*1e3)}function VS(e=86400){return infiniteQueryOptions({queryKey:["assets","hive","metrics",e],queryFn:async({pageParam:[t,r]})=>(await g("condenser_api.get_market_history",[e,Ro(t),Ro(r)])).map(({hive:o,non_hive:i,open:s})=>({close:i.close/o.close,open:i.open/o.open,low:i.low/o.low,high:i.high/o.high,volume:o.volume,time:new Date(s)})),initialPageParam:[Sr(new Date,Math.max(100*e,28800)),new Date],getNextPageParam:(t,r,[n])=>[Sr(n,Math.max(100*e,28800)),Sr(n,e)]})}function $S(e){return queryOptions({queryKey:["assets","hive","withdrawal-routes",e],queryFn:()=>g("condenser_api.get_withdraw_routes",[e,"outgoing"]),enabled:!!e})}function YS(e,t=50){return queryOptions({queryKey:["assets","hive-power","delegates",e],enabled:!!e,queryFn:()=>g("condenser_api.get_vesting_delegations",[e,"",t])})}function rC(e){return queryOptions({queryKey:["assets","hive-power","delegatings",e],queryFn:async()=>(await(await fetch(f.privateApiHost+`/private-api/received-vesting/${e}`,{headers:{"Content-Type":"application/json"}})).json()).list,select:t=>t.sort((r,n)=>x(n.vesting_shares).amount-x(r.vesting_shares).amount)})}function sC(e=500){return queryOptions({queryKey:["market","order-book",e],queryFn:()=>g("condenser_api.get_order_book",[e])})}function pC(){return queryOptions({queryKey:["market","statistics"],queryFn:()=>g("condenser_api.get_ticker",[])})}function mC(e,t,r){let n=o=>o.toISOString().replace(/\.\d{3}Z$/,"");return queryOptions({queryKey:["market","history",e,t.getTime(),r.getTime()],queryFn:()=>g("condenser_api.get_market_history",[e,n(t),n(r)])})}function _C(){return queryOptions({queryKey:["market","hive-hbd-stats"],queryFn:async()=>{let e=await g("condenser_api.get_ticker",[]),t=new Date,r=new Date(t.getTime()-864e5),n=s=>s.toISOString().replace(/\.\d{3}Z$/,""),o=await g("condenser_api.get_market_history",[86400,n(r),n(t)]);return {price:+e.latest,close:o[0]?o[0].non_hive.open/o[0].hive.open:0,high:o[0]?o[0].non_hive.high/o[0].hive.high:0,low:o[0]?o[0].non_hive.low/o[0].hive.low:0,percent:o[0]?100-o[0].non_hive.open/o[0].hive.open*100/+e.latest:0,totalFromAsset:e.hive_volume.split(" ")[0],totalToAsset:e.hbd_volume.split(" ")[0]}}})}function PC(e,t,r,n){return queryOptions({queryKey:["market","data",e,t,r,n],queryFn:async({signal:o})=>{let i=_(),s=`https://api.coingecko.com/api/v3/coins/${e}/market_chart/range?vs_currency=${t}&from=${r}&to=${n}`,a=await i(s,{signal:o});if(!a.ok)throw new Error(`Failed to fetch market data: ${a.status}`);return a.json()}})}function qo(e){return e.toISOString().replace(/\.\d{3}Z$/,"")}function kC(e=1e3,t,r){let n=r??new Date,o=t??new Date(n.getTime()-600*60*1e3);return queryOptions({queryKey:["market","trade-history",e,o.getTime(),n.getTime()],queryFn:()=>g("condenser_api.get_trade_history",[qo(o),qo(n),e])})}function TC(){return queryOptions({queryKey:["market","feed-history"],queryFn:async()=>{try{return await g("condenser_api.get_feed_history",[])}catch(e){throw e}}})}function KC(){return queryOptions({queryKey:["market","current-median-history-price"],queryFn:async()=>{try{return await g("condenser_api.get_current_median_history_price",[])}catch(e){throw e}}})}function NC(e,t,r){return b(["market","limit-order-create"],e,n=>[_t(e,n.amountToSell,n.minToReceive,n.fillOrKill,n.expiration,n.orderId)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.accounts.full(e),c.wallet.openOrders(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function UC(e,t,r){return b(["market","limit-order-cancel"],e,({orderId:n})=>[dr(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.accounts.full(e),c.wallet.openOrders(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}async function Ye(e){let t=await e.json();if(!e.ok){let r=new Error(`Request failed with status ${e.status}`);throw r.status=e.status,r.data=t,r}return t}async function LC(e,t,r,n){let o=_(),i=`https://api.coingecko.com/api/v3/coins/${e}/market_chart/range?vs_currency=${t}&from=${r}&to=${n}`,s=await o(i);return Ye(s)}async function Fo(e){if(e==="hbd")return 1;let t=_(),r=`https://api.coingecko.com/api/v3/simple/price?ids=hive_dollar&vs_currencies=${e}`,n=await t(r);return (await Ye(n)).hive_dollar[e]}async function WC(e,t){let n=await _()(f.privateApiHost+`/private-api/market-data/${e==="hbd"?"usd":e}/${t}`);return Ye(n)}async function $C(){let t=await _()(f.privateApiHost+"/private-api/market-data/latest");return Ye(t)}async function GC(){let t=await _()("https://api.coingecko.com/api/v3/simple/price?ids=hive&vs_currencies=usd");return Ye(t)}var Lp={"Content-type":"application/json"};async function Wp(e){let t=_(),r=B.getValidatedBaseUrl(),n=await t(`${r}/private-api/engine-api`,{method:"POST",body:JSON.stringify(e),headers:Lp});if(!n.ok)throw new Error(`[SDK][HiveEngine] \u2013 request failed with ${n.status}`);return (await n.json()).result}async function we(e,t){try{return await Wp(e)}catch{return t}}async function YC(e,t=50){let r={jsonrpc:"2.0",method:"find",params:{contract:"market",query:{symbol:e},limit:t,offset:0},id:1},[n,o]=await Promise.all([we({...r,params:{...r.params,table:"buyBook",indexes:[{index:"price",descending:true}]}},[]),we({...r,params:{...r.params,table:"sellBook",indexes:[{index:"price",descending:false}]}},[])]),i=a=>a.sort((u,p)=>{let l=Number(u.price??0);return Number(p.price??0)-l}),s=a=>a.sort((u,p)=>{let l=Number(u.price??0),m=Number(p.price??0);return l-m});return {buy:i(n),sell:s(o)}}async function XC(e,t=50){return we({jsonrpc:"2.0",method:"find",params:{contract:"market",table:"tradesHistory",query:{symbol:e},limit:t,offset:0,indexes:[{index:"timestamp",descending:true}]},id:1},[])}async function ZC(e,t,r=100){let n={jsonrpc:"2.0",method:"find",params:{contract:"market",query:{symbol:t,account:e},limit:r,offset:0},id:1},[o,i]=await Promise.all([we({...n,params:{...n.params,table:"buyBook",indexes:[{index:"timestamp",descending:true}]}},[]),we({...n,params:{...n.params,table:"sellBook",indexes:[{index:"timestamp",descending:true}]}},[])]),s=(p,l)=>(Number(p||0)*Number(l||0)).toFixed(8),a=o.map(p=>({id:p.txId,type:"buy",account:p.account,symbol:p.symbol,quantity:p.quantity,price:p.price,total:p.tokensLocked??s(p.quantity,p.price),timestamp:Number(p.timestamp??0)})),u=i.map(p=>({id:p.txId,type:"sell",account:p.account,symbol:p.symbol,quantity:p.quantity,price:p.price,total:s(p.quantity,p.price),timestamp:Number(p.timestamp??0)}));return [...a,...u].sort((p,l)=>l.timestamp-p.timestamp)}async function $p(e,t){return we({jsonrpc:"2.0",method:"find",params:{contract:"market",table:"metrics",query:{...e?{symbol:e}:{},...t?{account:t}:{}}},id:1},[])}async function Pt(e,t){return $p(t,e)}async function Ot(e){return we({jsonrpc:"2.0",method:"find",params:{contract:"tokens",table:"balances",query:{account:e}},id:1},[])}async function At(e){return we({jsonrpc:"2.0",method:"find",params:{contract:"tokens",table:"tokens",query:{symbol:{$in:e}}},id:2},[])}async function Ko(e,t,r,n){let o=_(),i=B.getValidatedBaseUrl(),s=new URL("/private-api/engine-account-history",i);s.searchParams.set("account",e),s.searchParams.set("symbol",t),s.searchParams.set("limit",r.toString()),s.searchParams.set("offset",n.toString());let a=await o(s.toString(),{method:"GET",headers:{"Content-type":"application/json"}});if(!a.ok)throw new Error(`[SDK][HiveEngine] \u2013 account history failed with ${a.status}`);return await a.json()}async function Io(e,t="daily"){let r=_(),n=B.getValidatedBaseUrl(),o=new URL("/private-api/engine-chart-api",n);o.searchParams.set("symbol",e),o.searchParams.set("interval",t);let i=await r(o.toString(),{headers:{"Content-type":"application/json"}});if(!i.ok)throw new Error(`[SDK][HiveEngine] \u2013 chart failed with ${i.status}`);return await i.json()}async function Do(e){let t=_(),r=B.getValidatedBaseUrl(),n=await t(`${r}/private-api/engine-reward-api/${e}?hive=1`);if(!n.ok)throw new Error(`[SDK][HiveEngine] \u2013 rewards failed with ${n.status}`);return await n.json()}function xt(e){return queryOptions({queryKey:["assets","hive-engine","balances",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>Ot(e)})}function Bo(){return queryOptions({queryKey:["assets","hive-engine","markets"],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>Pt()})}function No(e){return queryOptions({queryKey:["assets","hive-engine","metadata-list",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>At(e)})}function dT(e,t,r=20){return infiniteQueryOptions({queryKey:["assets","hive-engine",t,"transactions",e],enabled:!!t&&!!e,initialPageParam:0,queryFn:async({pageParam:n})=>{if(!t||!e)throw new Error("[SDK][HiveEngine] \u2013 token or username missed");return Ko(e,t,r,n)},getNextPageParam:(n,o,i)=>(n?.length??0)===r?i+r:void 0,getPreviousPageParam:(n,o,i)=>i>0?i-r:void 0})}function yT(e,t="daily"){return queryOptions({queryKey:["assets","hive-engine",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>Io(e,t)})}function bT(e){return queryOptions({queryKey:["assets","hive-engine","unclaimed",e],staleTime:6e4,refetchInterval:9e4,enabled:!!e,queryFn:async()=>{try{let t=await Do(e);return Object.values(t).filter(({pending_token:r})=>r>0)}catch{return []}}})}function AT(e,t){return queryOptions({queryKey:["assets","hive-engine","all-tokens",e,t],queryFn:async()=>Pt(e,t)})}function Me(e,t=void 0){let r={fractionDigits:3,prefix:"",suffix:""};t&&(r={...r,...t});let{fractionDigits:n,prefix:o,suffix:i}=r,s="";o&&(s+=o+" ");let a=Math.abs(parseFloat(e.toString()))<1e-4?0:e,u=typeof a=="string"?parseFloat(a):a;return s+=u.toLocaleString("en-US",{minimumFractionDigits:n,maximumFractionDigits:n,useGrouping:true}),i&&(s+=" "+i),s}var kt=class{symbol;name;icon;precision;stakingEnabled;delegationEnabled;balance;stake;stakedBalance;delegationsIn;delegationsOut;usdValue;constructor(t){this.symbol=t.symbol,this.name=t.name||"",this.icon=t.icon||"",this.precision=t.precision||0,this.stakingEnabled=t.stakingEnabled||false,this.delegationEnabled=t.delegationEnabled||false,this.balance=parseFloat(t.balance)||0,this.stake=parseFloat(t.stake)||0,this.delegationsIn=parseFloat(t.delegationsIn)||0,this.delegationsOut=parseFloat(t.delegationsOut)||0,this.stakedBalance=this.stake+this.delegationsIn-this.delegationsOut,this.usdValue=t.usdValue;}hasDelegations=()=>this.delegationEnabled?this.delegationsIn>0&&this.delegationsOut>0:false;delegations=()=>this.hasDelegations()?`(${Me(this.stake,{fractionDigits:this.precision})} + ${Me(this.delegationsIn,{fractionDigits:this.precision})} - ${Me(this.delegationsOut,{fractionDigits:this.precision})})`:"";staked=()=>this.stakingEnabled?this.stakedBalance<1e-4?this.stakedBalance.toString():Me(this.stakedBalance,{fractionDigits:this.precision}):"-";balanced=()=>this.balance<1e-4?this.balance.toString():Me(this.balance,{fractionDigits:this.precision})};function qT(e,t,r){return queryOptions({queryKey:["assets","hive-engine","balances-with-usd",e,t,r],queryFn:async()=>{if(!e)throw new Error("[HiveEngine] No account in a balances query");let n=await Ot(e),o=await At(n.map(a=>a.symbol)),i=t?t.base/t.quote:0,s=Array.isArray(r)?r:[];return n.map(a=>{let u=o.find(P=>P.symbol===a.symbol),p;if(u?.metadata)try{p=JSON.parse(u.metadata);}catch{p=void 0;}let l=s.find(P=>P.symbol===a.symbol),m=Number(l?.lastPrice??"0"),d=Number(a.balance),y=a.symbol==="SWAP.HIVE"?i*d:m===0?0:Number((m*i*d).toFixed(10));return new kt({symbol:a.symbol,name:u?.name??a.symbol,icon:p?.icon??"",precision:u?.precision??0,stakingEnabled:u?.stakingEnabled??false,delegationEnabled:u?.delegationEnabled??false,balance:a.balance,stake:a.stake,delegationsIn:a.delegationsIn,delegationsOut:a.delegationsOut,usdValue:y})})},enabled:!!e})}function Mo(e,t){return queryOptions({queryKey:["assets","hive-engine",t,"general-info",e],enabled:!!t&&!!e,staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{if(!t||!e)throw new Error("[SDK][HiveEngine] \u2013 token or username missed");let r=h(),n=z(e);await r.prefetchQuery(n);let o=r.getQueryData(n.queryKey),i=await r.ensureQueryData(No([t])),s=await r.ensureQueryData(xt(e)),a=await r.ensureQueryData(Bo()),u=i?.find(S=>S.symbol===t),p=s?.find(S=>S.symbol===t),m=+(a?.find(S=>S.symbol===t)?.lastPrice??"0"),d=parseFloat(p?.balance??"0"),y=parseFloat(p?.stake??"0"),P=parseFloat(p?.pendingUnstake??"0"),v=[{name:"liquid",balance:d},{name:"staked",balance:y}];return P>0&&v.push({name:"unstaking",balance:P}),{name:t,title:u?.name??"",price:m===0?0:Number(m*(o?.price??0)),accountBalance:d+y,layer:"ENGINE",parts:v}}})}async function Qo(e){let r=await _()(`${f.spkNode}/@${e}`);if(!r.ok)throw new Error(`[SDK][SPK] \u2013 wallet failed with ${r.status}`);return await r.json()}async function Ho(){let t=await _()(`${f.spkNode}/markets`);if(!t.ok)throw new Error(`[SDK][SPK] \u2013 markets failed with ${t.status}`);return await t.json()}function me(e){return queryOptions({queryKey:["assets","spk","wallet",e],queryFn:async()=>{if(!e)throw new Error("[SDK][SPK] \u2013 username wasn't provided");return Qo(e)},enabled:!!e,staleTime:6e4,refetchInterval:9e4})}function ge(){return queryOptions({queryKey:["assets","spk","markets"],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{let e=await Ho();return {list:Object.entries(e.markets.node).map(([t,r])=>({name:t,status:r.lastGood>=e.head_block-1200?"\u{1F7E9}":r.lastGood>e.head_block-28800?"\u{1F7E8}":"\u{1F7E5}"})),raw:e}}})}function Uo(e,t){let r=0,n=0,o=0,i=0,s=e.head_block-e.spk_block;if(e.spk_block){if(s<28800)return 0;{i=s/28800,r=e.gov?a(e.gov,i,t.spk_rate_lgov):0,n=e.pow?a(e.pow,i,t.spk_rate_lpow):0,o=a((e.granted.t>0?e.granted.t:0)+(e.granting.t&&e.granting.t>0?e.granting.t:0),i,t.spk_rate_ldel);let u=r+n+o;return u||0}}else return 0;function a(u,p,l){return (u*(1+l/365)-u)*p}}function Et(e){return e.toFixed(3)}function Vo(e){return queryOptions({queryKey:["assets","spk","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await h().prefetchQuery(me(e)),await h().prefetchQuery(ge()),await h().prefetchQuery(z(e));let t=h().getQueryData(me(e).queryKey),r=h().getQueryData(ge().queryKey),n=h().getQueryData(z(e).queryKey);if(!t||!r)return {name:"SPK",layer:"SPK",title:"SPK Network",price:1,accountBalance:0};let o=+Et((t.gov+t.spk)/1e3*+t.tick*(n?.price??0)),i=+Et((t.spk+Uo(t,r.raw.stats||{spk_rate_lgov:"0.001",spk_rate_lpow:Et(parseFloat(r.raw.stats.spk_rate_lpow)*100),spk_rate_ldel:Et(parseFloat(r.raw.stats.spk_rate_ldel)*100)}))/1e3);return {name:"SPK",layer:"SPK",title:"SPK Network",price:o/i,accountBalance:i}}})}function jo(e){return e.toFixed(3)}function Lo(e){return queryOptions({queryKey:["assets","larynx","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await h().prefetchQuery(me(e)),await h().prefetchQuery(ge()),await h().prefetchQuery(z(e));let t=h().getQueryData(me(e).queryKey),r=h().getQueryData(ge().queryKey),n=h().getQueryData(z(e).queryKey);if(!t||!r)return {name:"LARYNX",title:"SPK Network / LARYNX",price:1,accountBalance:0};let o=+jo(t.balance/1e3*+t.tick*(n?.price??0)),i=+jo(t.balance/1e3);return {name:"LARYNX",layer:"SPK",title:"LARYNX",price:o/i,accountBalance:i}}})}function St(e){return e.toFixed(3)}function Wo(e){return queryOptions({queryKey:["assets","larynx-power","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await h().prefetchQuery(me(e)),await h().prefetchQuery(ge()),await h().prefetchQuery(z(e));let t=h().getQueryData(me(e).queryKey),r=h().getQueryData(ge().queryKey),n=h().getQueryData(z(e).queryKey);if(!t||!r)return {name:"LP",title:"SPK Network / LARYNX Power",price:1,accountBalance:0};let o=+St(t.poweredUp/1e3*+t.tick*(n?.price??0)),i=+St(t.poweredUp/1e3);return {name:"LP",title:"LARYNX Power",layer:"SPK",price:o/i,accountBalance:i,parts:[{name:"delegating",balance:t.granting?.t?+St(t.granting.t/1e3):0},{name:"recieved",balance:t.granted?.t?+St(t.granted.t/1e3):0}]}}})}function Xe(e,t=0){return queryOptions({queryKey:["points",e,t],queryFn:async()=>{if(!e)throw new Error("Get points query \u2013 username wasn't provided");let r=e.replace("@",""),n=await fetch(f.privateApiHost+"/private-api/points",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:r})});if(!n.ok)throw new Error(`Failed to fetch points: ${n.status}`);let o=await n.json(),i=await fetch(f.privateApiHost+"/private-api/point-list",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:r,type:t})});if(!i.ok)throw new Error(`Failed to fetch point transactions: ${i.status}`);let s=await i.json();return {points:o.points,uPoints:o.unclaimed_points,transactions:s}},staleTime:3e4,refetchOnMount:true,enabled:!!e})}function $o(e){return queryOptions({queryKey:["assets","points","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>(await h().prefetchQuery(Xe(e)),{name:"POINTS",title:"Ecency Points",price:.002,accountBalance:+(h().getQueryData(Xe(e).queryKey)?.points??0)})})}function AR(e,t){return queryOptions({queryKey:["assets","points","transactions",e,t],queryFn:async()=>(await(await fetch(`${f.privateApiHost}/private-api/point-list`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:e,type:t??0})})).json()).map(({created:o,type:i,amount:s,id:a,sender:u,receiver:p,memo:l})=>({created:new Date(o),type:i,results:[{amount:parseFloat(s),asset:"POINTS"}],id:a,from:u??void 0,to:p??void 0,memo:l??void 0}))})}function MR(e,t,r={refetch:false}){let n=h(),o=r.currency??"usd",i=async p=>(r.refetch?await n.fetchQuery(p):await n.prefetchQuery(p),n.getQueryData(p.queryKey)),s=async p=>{if(!p||o==="usd")return p;try{let l=await Fo(o);return {...p,price:p.price*l}}catch(l){return console.warn(`Failed to convert price from USD to ${o}:`,l),p}},a=ko(e,o,true),u=async()=>{try{let l=(await n.fetchQuery(a)).wallets.find(d=>d.symbol.toUpperCase()===t.toUpperCase());if(!l)return;let m=[];if(l.liquid!==void 0&&l.liquid!==null&&m.push({name:"liquid",balance:l.liquid}),l.staked!==void 0&&l.staked!==null&&l.staked>0&&m.push({name:"staked",balance:l.staked}),l.savings!==void 0&&l.savings!==null&&l.savings>0&&m.push({name:"savings",balance:l.savings}),l.extraData&&Array.isArray(l.extraData))for(let d of l.extraData){if(!d||typeof d!="object")continue;let y=d.dataKey,P=d.value;if(typeof P=="string"){let S=P.replace(/,/g,"").match(/[+-]?\s*(\d+(?:\.\d+)?)/);if(S){let R=Math.abs(Number.parseFloat(S[1]));y==="delegated_hive_power"?m.push({name:"outgoing_delegations",balance:R}):y==="received_hive_power"?m.push({name:"incoming_delegations",balance:R}):y==="powering_down_hive_power"&&m.push({name:"pending_power_down",balance:R});}}}return {name:l.symbol,title:l.name,price:l.fiatRate,accountBalance:l.balance,apr:l.apr?.toString(),layer:l.layer,pendingRewards:l.pendingRewards,parts:m}}catch{return}};return queryOptions({queryKey:["ecency-wallets","asset-info",e,t,o],queryFn:async()=>{let p=await u();if(p&&p.price>0)return p;let l;if(t==="HIVE")l=await i(z(e));else if(t==="HP")l=await i(So(e));else if(t==="HBD")l=await i(Eo(e));else if(t==="SPK")l=await i(Vo(e));else if(t==="LARYNX")l=await i(Lo(e));else if(t==="LP")l=await i(Wo(e));else if(t==="POINTS")l=await i($o(e));else if((await n.ensureQueryData(xt(e))).some(d=>d.symbol===t))l=await i(Mo(e,t));else {if(p)return p;throw new Error(`[SDK][Wallet] \u2013 unrecognized asset "${t}"`)}if(p&&l&&l.price>0){let m=await s(l);return {...p,price:m.price}}return await s(l)}})}var dl=(D=>(D.Transfer="transfer",D.TransferToSavings="transfer-saving",D.WithdrawFromSavings="withdraw-saving",D.Delegate="delegate",D.PowerUp="power-up",D.PowerDown="power-down",D.WithdrawRoutes="withdraw-routes",D.ClaimInterest="claim-interest",D.Swap="swap",D.Convert="convert",D.Gift="gift",D.Promote="promote",D.Claim="claim",D.Buy="buy",D.LockLiquidity="lock",D.Stake="stake",D.Unstake="unstake",D.Undelegate="undelegate",D))(dl||{});function LR(e,t,r){return b(["wallet","transfer"],e,n=>[Se(e,n.to,n.amount,n.memo)],async(n,o)=>{await O(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function JR(e,t,r){return b(["wallet","transfer-point"],e,n=>[Be(e,n.to,n.amount,n.memo)],async(n,o)=>{await O(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function tq(e,t,r){return b(["wallet","delegate-vesting-shares"],e,n=>[$e(e,n.delegatee,n.vestingShares)],async(n,o)=>{await O(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.delegatee),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function sq(e,t,r){return b(["wallet","set-withdraw-vesting-route"],e,n=>[Ge(e,n.toAccount,n.percent,n.autoVest)],async(n,o)=>{await O(t?.adapter,r,[c.wallet.withdrawRoutes(e),c.accounts.full(e),c.accounts.full(o.toAccount)]);},t,"active",{broadcastMode:r})}function pq(e,t,r){return b(["wallet","transfer-spk"],e,n=>{let o=JSON.stringify({to:n.to,amount:n.amount,...typeof n.memo=="string"?{memo:n.memo}:{}});return [["custom_json",{required_auths:[e],required_posting_auths:[],id:"spkcc_spk_send",json:o}]]},async(n,o)=>{await O(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function mq(e,t,r){return b(["wallet","transfer-larynx"],e,n=>{let o=JSON.stringify({to:n.to,amount:n.amount,...typeof n.memo=="string"?{memo:n.memo}:{}});return [["custom_json",{required_auths:[e],required_posting_auths:[],id:"spkcc_send",json:o}]]},async(n,o)=>{await O(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function _q(e,t,r){return b(["wallet","transfer-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"transfer",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity,memo:n.memo}});return [["custom_json",{required_auths:[e],required_posting_auths:[],id:"ssc-mainnet-hive",json:o}]]},async(n,o)=>{await O(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function Oq(e,t,r){return b(["wallet","transfer-to-savings"],e,n=>[De(e,n.to,n.amount,n.memo)],async(n,o)=>{await O(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function Sq(e,t,r){return b(["wallet","transfer-from-savings"],e,n=>[Ce(e,n.to,n.amount,n.memo,n.requestId)],async(n,o)=>{await O(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function Fq(e,t,r){return b(["wallet","transfer-to-vesting"],e,n=>[Le(e,n.to,n.amount)],async(n,o)=>{await O(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function Nq(e,t,r){return b(["wallet","withdraw-vesting"],e,n=>[We(e,n.vestingShares)],async()=>{await O(t?.adapter,r,[c.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function Vq(e,t,r){return b(["wallet","convert"],e,n=>[n.collateralized?Yt(e,n.amount,n.requestId):ze(e,n.amount,n.requestId)],async()=>{await O(t?.adapter,r,[c.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function Gq(e,t,r){return b(["wallet","claim-interest"],e,n=>je(e,n.to,n.amount,n.memo,n.requestId),async()=>{await O(t?.adapter,r,[c.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}var fl=5e3,Ct=new Map;function Zq(e,t,r){return b(["wallet","claim-rewards"],e,n=>[fr(e,n.rewardHive,n.rewardHbd,n.rewardVests)],()=>{let n=e??"__anonymous__",o=[c.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e],c.assets.hiveGeneralInfo(e),c.assets.hbdGeneralInfo(e),c.assets.hivePowerGeneralInfo(e)],i=Ct.get(n);i&&(clearTimeout(i),Ct.delete(n));let s=setTimeout(async()=>{try{let a=h(),p=(await Promise.allSettled(o.map(l=>a.invalidateQueries({queryKey:l})))).filter(l=>l.status==="rejected");p.length>0&&console.error("[SDK][Wallet][useClaimRewards] delayed invalidation rejected",{username:e,rejectedCount:p.length,rejected:p});}catch(a){console.error("[SDK][Wallet][useClaimRewards] delayed invalidation failed",{username:e,error:a});}finally{Ct.delete(n);}},fl);Ct.set(n,s);},t,"posting",{broadcastMode:r})}function nF(e,t,r){return b(["wallet","lock-larynx"],e,n=>{let o=JSON.stringify({amount:n.amount*1e3});return [["custom_json",{id:n.mode==="lock"?"spkcc_gov_up":"spkcc_gov_down",required_auths:[e],required_posting_auths:[],json:o}]]},async()=>{await O(t?.adapter,r,[c.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function aF(e,t,r){return b(["wallet","power-larynx"],e,n=>{let o=JSON.stringify({amount:n.amount*1e3});return [["custom_json",{id:`spkcc_power_${n.mode}`,required_auths:[e],required_posting_auths:[],json:o}]]},async()=>{await O(t?.adapter,r,[c.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function lF(e,t,r){return b(["wallet","delegate-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"delegate",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async(n,o)=>{await O(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function gF(e,t,r){return b(["wallet","undelegate-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"undelegate",contractPayload:{symbol:n.symbol,from:n.from,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async()=>{await O(t?.adapter,r,[c.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function wF(e,t,r){return b(["wallet","stake-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"stake",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async(n,o)=>{await O(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function OF(e,t,r){return b(["wallet","unstake-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"unstake",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async()=>{await O(t?.adapter,r,[c.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function EF(e,t,r){return b(["wallet","claim-engine-rewards"],e,n=>{let o=JSON.stringify(n.tokens.map(i=>({symbol:i})));return [["custom_json",{id:"scot_claim_token",required_auths:[],required_posting_auths:[e],json:o}]]},async()=>{await O(t?.adapter,r,[c.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"posting",{broadcastMode:r})}function RF(e,t,r){return b(["wallet","engine-market-order"],e,n=>{let o,i;n.action==="cancel"?(i="cancel",o={type:n.orderType,id:n.orderId}):(i=n.action,o={symbol:n.symbol,quantity:n.quantity,price:n.price});let s=JSON.stringify({contractName:"market",contractAction:i,contractPayload:o});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:s}]]},async()=>{await O(t?.adapter,r,[c.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function ml(e,t,r){let{from:n,to:o="",amount:i="",memo:s=""}=r,a=r.request_id??Date.now()>>>0;switch(e){case "HIVE":switch(t){case "transfer":return [Se(n,o,i,s)];case "transfer-saving":return [De(n,o,i,s)];case "withdraw-saving":return [Ce(n,o,i,s,a)];case "power-up":return [Le(n,o,i)]}break;case "HBD":switch(t){case "transfer":return [Se(n,o,i,s)];case "transfer-saving":return [De(n,o,i,s)];case "withdraw-saving":return [Ce(n,o,i,s,a)];case "claim-interest":return je(n,o,i,s,a);case "convert":return [ze(n,i,Math.floor(Date.now()/1e3))]}break;case "HP":switch(t){case "power-down":return [We(n,i)];case "delegate":return [$e(n,o,i)];case "withdraw-routes":return [Ge(r.from_account??n,r.to_account??o,r.percent??0,r.auto_vest??false)]}break;case "POINTS":if(t==="transfer"||t==="gift")return [Be(n,o,i,s)];break;case "SPK":if(t==="transfer"){let u=typeof i=="number"?i:parseFloat(i)*1e3;return [["custom_json",{id:"spkcc_spk_send",required_auths:[n],required_posting_auths:[],json:JSON.stringify({to:o,amount:u,...typeof s=="string"&&s?{memo:s}:{}})}]]}break;case "LARYNX":switch(t){case "transfer":{let u=typeof i=="number"?i:parseFloat(i)*1e3;return [["custom_json",{id:"spkcc_send",required_auths:[n],required_posting_auths:[],json:JSON.stringify({to:o,amount:u,...typeof s=="string"&&s?{memo:s}:{}})}]]}case "lock":{let u=typeof r.amount=="string"?parseFloat(r.amount):Number(r.amount??0),p=r.mode==="lock"?"spkcc_gov_up":"spkcc_gov_down";return [gt(n,p,u)]}case "power-up":{let u=typeof r.amount=="string"?parseFloat(r.amount):Number(r.amount??0),p=`spkcc_power_${r.mode??"up"}`;return [gt(n,p,u)]}}break}return null}function gl(e,t,r){let{from:n,to:o="",amount:i=""}=r,s=typeof i=="string"&&i.includes(" ")?i.split(" ")[0]:String(i);switch(t){case "transfer":return [Te(n,"transfer",{symbol:e,to:o,quantity:s,memo:r.memo??""})];case "stake":return [Te(n,"stake",{symbol:e,to:o,quantity:s})];case "unstake":return [Te(n,"unstake",{symbol:e,to:o,quantity:s})];case "delegate":return [Te(n,"delegate",{symbol:e,to:o,quantity:s})];case "undelegate":return [Te(n,"undelegate",{symbol:e,from:o,quantity:s})];case "claim":return [Xt(n,[e])]}return null}function yl(e){return e==="claim"?"posting":"active"}function BF(e,t,r,n,o){let{mutateAsync:i}=Ne.useRecordActivity(e,r);return b(["ecency-wallets",t,r],e,s=>{let a=ml(t,r,s);if(a)return a;let u=gl(t,r,s);if(u)return u;throw new Error(`[SDK][Wallet] \u2013 no operation builder for asset="${t}" operation="${r}"`)},()=>{i();let s=[];s.push(["ecency-wallets","asset-info",e,t]),t==="HIVE"&&s.push(["ecency-wallets","asset-info",e,"HP"]),t==="LARYNX"&&r==="power-up"&&(s.push(["ecency-wallets","asset-info",e,"LP"]),s.push(["ecency-wallets","asset-info",e,"LARYNX"])),s.push(["wallet","portfolio","v2",e]),setTimeout(()=>{s.forEach(a=>{h().invalidateQueries({queryKey:a});});},5e3);},n,yl(r),{broadcastMode:o})}function HF(e,t,r){return b(["wallet","delegate-rc"],e,({to:n,maxRc:o})=>[Zt(e,n,o)],async(n,o)=>{await O(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.to),c.resourceCredits.account(e),c.resourceCredits.account(o.to)]);},t,"active",{broadcastMode:r})}function LF(e,t,r){return b(["witnesses","vote"],e,({witness:n,approve:o})=>[rr(e,n,o)],async()=>{try{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.accounts.full(e),c.witnesses.votes(e)]);}catch(n){console.warn("[useWitnessVote] Post-broadcast side-effect failed:",n);}},t,"active",{broadcastMode:r})}function zF(e,t,r){return b(["witnesses","proxy"],e,({proxy:n})=>[nr(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.accounts.full(e),c.witnesses.proxy()]);},t,"active",{broadcastMode:r})}function _l(e){return {owner:e.witness_name,total_missed:e.missed_blocks,url:e.url,props:{account_creation_fee:`${(e.account_creation_fee/1e3).toFixed(3)} HIVE`,account_subsidy_budget:0,maximum_block_size:e.block_size},hbd_exchange_rate:{base:`${e.price_feed.toFixed(3)} HBD`},available_witness_account_subsidies:0,running_version:e.version,signing_key:e.signing_key,last_hbd_exchange_update:e.feed_updated_at,rank:e.rank,vests:e.vests,voters_num:e.voters_num,voters_num_daily_change:e.voters_num_daily_change,price_feed:e.price_feed,hbd_interest_rate:e.hbd_interest_rate,last_confirmed_block_num:e.last_confirmed_block_num}}function eK(e){return infiniteQueryOptions({queryKey:c.witnesses.list(e),initialPageParam:1,queryFn:async({pageParam:t})=>(await L("hafbe","/witnesses",{"page-size":e,page:t})).witnesses.map(_l),getNextPageParam:(t,r,n)=>t.length===e?n+1:void 0})}function tK(e,t,r,n="vests",o="desc"){return queryOptions({queryKey:c.witnesses.voters(e,t,r,n,o),queryFn:async({signal:i})=>await L("hafbe","/witnesses/{witness-name}/voters",{"witness-name":e,"page-size":r,page:t,sort:n,direction:o},void 0,void 0,i),enabled:!!e,staleTime:6e4})}function rK(e){return queryOptions({queryKey:c.witnesses.voterCount(e),queryFn:async()=>await L("hafbe","/witnesses/{witness-name}/voters/count",{"witness-name":e}),enabled:!!e,staleTime:6e4})}var wl=(y=>(y[y.CHECKIN=10]="CHECKIN",y[y.LOGIN=20]="LOGIN",y[y.CHECKIN_EXTRA=30]="CHECKIN_EXTRA",y[y.POST=100]="POST",y[y.COMMENT=110]="COMMENT",y[y.VOTE=120]="VOTE",y[y.REBLOG=130]="REBLOG",y[y.DELEGATION=150]="DELEGATION",y[y.REFERRAL=160]="REFERRAL",y[y.COMMUNITY=170]="COMMUNITY",y[y.TRANSFER_SENT=998]="TRANSFER_SENT",y[y.TRANSFER_INCOMING=999]="TRANSFER_INCOMING",y[y.MINTED=991]="MINTED",y))(wl||{});function uK(e,t,r,n){let{mutateAsync:o}=Ne.useRecordActivity(e,"points-claimed");return useMutation({mutationFn:async()=>{if(!e)throw new Error("[SDK][Points][Claim] \u2013 username wasn't provided");if(!t)throw new Error("[SDK][Points][Claim] \u2013 access token wasn't found");let s=await _()(f.privateApiHost+"/private-api/points-claim",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!s.ok){let a=await s.text();if(s.status===406)try{return JSON.parse(a)}catch{return {message:a,code:s.status}}throw new Error(`[SDK][Points][Claim] \u2013 failed with status ${s.status}${a?`: ${a}`:""}`)}return s.json()},onError:n,onSuccess:()=>{o(),h().setQueryData(Xe(e).queryKey,i=>i&&{...i,points:(parseFloat(i.points)+parseFloat(i.uPoints)).toFixed(3),uPoints:"0"}),r?.();}})}function fK(e,t,r,n,o,i){return queryOptions({queryKey:c.search.results(e,t,r,n,o,i),queryFn:async({signal:s})=>{let a={q:e,sort:t,hide_low:r};n&&(a.since=n),o&&(a.scroll_id=o),i&&(a.votes=i);let u=await fetch(f.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(a),signal:le(de,s)});if(!u.ok)throw new Error(`Search failed: ${u.status}`);return u.json()}})}function mK(e,t,r=true){return infiniteQueryOptions({queryKey:c.search.controversialRising(e,t),initialPageParam:{sid:void 0,hasNextPage:true},queryFn:async({pageParam:n,signal:o})=>{if(!n.hasNextPage)return {hits:0,took:0,results:[]};let i,s=new Date;switch(t){case "today":i=new Date(s.getTime()-1440*60*1e3);break;case "week":i=new Date(s.getTime()-10080*60*1e3);break;case "month":i=new Date(s.getTime()-720*60*60*1e3);break;case "year":i=new Date(s.getTime()-365*24*60*60*1e3);break;default:i=void 0;}let a="* type:post",u=e==="rising"?"children":e,p=i?i.toISOString().split(".")[0]:void 0,l="0",m=t==="today"?50:200,d={q:a,sort:u,hide_low:l};p&&(d.since=p),n.sid&&(d.scroll_id=n.sid),(d.votes=m);let y=await fetch(f.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(d),signal:le(de,o)});if(!y.ok)throw new Error(`Search failed: ${y.status}`);return y.json()},getNextPageParam:n=>({sid:n?.scroll_id,hasNextPage:n.results.length>0}),enabled:r})}async function Cr(e){let r=await(async()=>{try{return await e.json()}catch{try{return await e.text()}catch{return}}})();if(!e.ok){let n=new Error(`Request failed with status ${e.status}`);throw n.status=e.status,n.data=r,n}if(r===void 0)throw new Error("Response body was empty or invalid JSON");return r}async function hK(e,t,r,n,o,i,s){let a={q:e,sort:t,hide_low:r};n&&(a.since=n),o&&(a.scroll_id=o),i&&(a.votes=i);let p=await _()(f.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(a),signal:le(de,s)});return Cr(p)}async function zo(e,t,r=de){let o=await _()(f.privateApiHost+"/search-api/similar",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e),signal:le(r,t)});return Cr(o)}async function _K(e,t){let n=await _()(f.privateApiHost+"/search-api/search-path",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({q:e}),signal:le(de,t)}),o=await Cr(n);return o?.length>0?o:[e]}var Al=4368*60*60*1e3,xl=3,kl=3e3,El=2e3,Sl=4e3,OK=2;function Cl(e,t){return e.replace(/!\[[^\]]*\]\([^)]*\)/g," ").replace(/\[([^\]]*)\]\([^)]*\)/g,"$1").replace(/<[^>]+>/g," ").replace(/https?:\/\/\S+/g," ").replace(/\s+/g," ").trim().slice(0,t)}function Tl(e){let t=5381;for(let r=0;r<e.length;r++)t=(t<<5)+t+e.charCodeAt(r)|0;return (t>>>0).toString(36)}function AK(e){let t=e.title??"",r=e.json_metadata?.tags,n=(Array.isArray(r)?r:[]).filter(s=>typeof s=="string"&&s!==""),o=Cl(e.body??"",kl),i=Tl(`${t}|${n.join(",")}|${o}`);return queryOptions({queryKey:c.search.similarEntries(e.author,e.permlink,i),queryFn:async({signal:s})=>{let a=new Date(Date.now()-Al).toISOString().slice(0,19),u=await zo({author:e.author,permlink:e.permlink,title:t,body:o,tags:n,since:a},s,typeof window>"u"?El:Sl),p=[],l=new Set;for(let m of u.results){if(p.length>=xl)break;m.permlink!==e.permlink&&(m.tags??[]).indexOf("nsfw")===-1&&(l.has(m.author)||(l.add(m.author),p.push(m)));}return p},staleTime:300*1e3,retry:false})}function TK(e,t=5){let r=e.trim();return queryOptions({queryKey:c.search.account(r,t),queryFn:async()=>{let n=await g("condenser_api.lookup_accounts",[r,t]);return n.length===0?[]:mt(n)},enabled:!!r})}function IK(e,t=10){let r=e.trim();return queryOptions({queryKey:c.search.topics(r,t),queryFn:async()=>(await g("condenser_api.get_trending_tags",[r,t+1])).map(o=>o.name).filter(o=>o!==""&&!o.startsWith("hive-")).slice(0,t),enabled:!!r})}function MK(e,t,r,n,o,i){return infiniteQueryOptions({queryKey:c.search.api(e,t,r,n,o,i),queryFn:async({pageParam:s,signal:a})=>{let u={q:e,sort:t,hide_low:r};n&&(u.since=n),s&&(u.scroll_id=s),o!==void 0&&(u.votes=o),i&&(u.include_nsfw=1);let p=await fetch(f.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(u),signal:le(de,a)});if(!p.ok)throw new Error(`Search failed: ${p.status}`);return p.json()},initialPageParam:void 0,getNextPageParam:s=>s?.scroll_id,enabled:!!e})}function VK(e){return queryOptions({queryKey:["search","path",e],queryFn:async()=>{let t=await fetch(f.privateApiHost+"/search-api/search-path",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({q:e})});if(!t.ok)throw new Error(`Search path failed: ${t.status}`);let r=await t.json();return r?.length>0?r:[e]}})}function $K(e){return queryOptions({queryKey:["promotions","boost-plus-prices"],queryFn:async()=>{if(!e)return [];let t=await fetch(f.privateApiHost+"/private-api/boost-plus-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!t.ok)throw new Error(`Failed to fetch boost plus prices: ${t.status}`);return await t.json()},staleTime:1/0,enabled:!!e})}function YK(e){return queryOptions({queryKey:["promotions","rc-delegation-prices"],queryFn:async()=>{if(!e)return [];let t=await fetch(f.privateApiHost+"/private-api/rc-delegation-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!t.ok)throw new Error(`Failed to fetch RC delegation prices: ${t.status}`);return await t.json()},staleTime:1/0,enabled:!!e})}function tI(e,t){return queryOptions({queryKey:["promotions","rc-delegation-active",e],queryFn:async()=>{if(!t||!e)return null;let r=await fetch(f.privateApiHost+"/private-api/rc-delegation-active",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,username:e})});if(!r.ok)throw new Error(`Failed to fetch RC delegation active: ${r.status}`);let n=await r.json();return n&&n.expires&&n.user?{user:n.user,expires:new Date(n.expires)}:null},enabled:!!e&&!!t})}function iI(e){return queryOptions({queryKey:["promotions","promote-price"],queryFn:async()=>{let t=await fetch(f.privateApiHost+"/private-api/promote-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!t.ok)throw new Error(`Failed to fetch promote prices: ${t.status}`);return await t.json()},enabled:!!e})}function uI(e,t){return queryOptions({queryKey:["promotions","boost-plus-accounts",e],queryFn:async()=>{if(!t||!e)return null;let r=await fetch(f.privateApiHost+"/private-api/boosted-plus-account",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,account:e})});if(!r.ok)throw new Error(`Failed to fetch boost plus account prices: ${r.status}`);let n=await r.json();return n?{account:n.account,expires:new Date(n.expires)}:null},enabled:!!e&&!!t})}function fI(e,t,r){return b(["promotions","boost-plus"],e,({account:n,duration:o})=>[_r(e,n,o)],async(n,{account:o})=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.accounts.full(e),c.promotions.boostPlusAccounts(o)]);},t,"active",{broadcastMode:r})}function hI(e,t,r){return b(["promotions","rc-delegation"],e,({duration:n})=>[wr(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.accounts.full(e),c.resourceCredits.account(e),["promotions","rc-delegation-active",e]]);},t,"active",{broadcastMode:r})}async function bI(e){let r=await _()(f.privateApiHost+"/auth-api/hs-token-refresh",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!r.ok){let o;try{o=await r.json();}catch{o=void 0;}let i=new Error(`Failed to refresh token: ${r.status}`);throw i.status=r.status,i.data=o,i}return await r.json()}var Hl="https://raw.githubusercontent.com/openhive-network/watchmen/main/output/flat/badactors.txt";function AI(){return queryOptions({queryKey:c.badActors.list(),queryFn:async({signal:e})=>{let t=await fetch(Hl,{signal:e});if(!t.ok)throw new Error(`Failed to fetch bad actors list: ${t.status}`);let r=await t.text();return new Set(r.split(`
|
|
2
|
-
`).filter(Boolean))},staleTime:1440*60*1e3,gcTime:1/0})}var
|
|
1
|
+
import {QueryClient,useQuery,useInfiniteQuery,useMutation,queryOptions,infiniteQueryOptions,useQueryClient}from'@tanstack/react-query';import {hexToBytes,bytesToHex}from'@noble/hashes/utils.js';import {ripemd160}from'@noble/hashes/legacy.js';import Nr from'bs58';import {secp256k1}from'@noble/curves/secp256k1.js';import {sha256,sha512}from'@noble/hashes/sha2.js';import {cbc}from'@noble/ciphers/aes.js';import Cn from'hivesigner';var ei=Object.defineProperty;var rt=(e,t)=>{for(var r in t)ei(e,r,{get:t[r],enumerable:true});};var nt=new ArrayBuffer(0),ot=null,it=null;function ti(){return ot||(typeof TextEncoder<"u"?ot=new TextEncoder:ot={encode(e){let t=[];for(let r=0;r<e.length;r++){let n=e.charCodeAt(r);if(n<128)t.push(n);else if(n<2048)t.push(192|n>>6,128|n&63);else if(n>=55296&&n<=56319&&r+1<e.length){let o=e.charCodeAt(++r);n=65536+((n&1023)<<10)+(o&1023),t.push(240|n>>18,128|n>>12&63,128|n>>6&63,128|n&63);}else t.push(224|n>>12,128|n>>6&63,128|n&63);}return new Uint8Array(t)}}),ot}function qr(){return it||(typeof TextDecoder<"u"?it=new TextDecoder:it={decode(e){let t=e instanceof ArrayBuffer?new Uint8Array(e):new Uint8Array(e.buffer,e.byteOffset,e.byteLength),r="";for(let n=0;n<t.length;){let o=t[n],i;o<128?(i=o,n+=1):(o&224)===192?(i=(o&31)<<6|t[n+1]&63,n+=2):(o&240)===224?(i=(o&15)<<12|(t[n+1]&63)<<6|t[n+2]&63,n+=3):(i=(o&7)<<18|(t[n+1]&63)<<12|(t[n+2]&63)<<6|t[n+3]&63,n+=4),i<=65535?r+=String.fromCharCode(i):(i-=65536,r+=String.fromCharCode(55296+(i>>10),56320+(i&1023)));}return r}}),it}var F=class e{static LITTLE_ENDIAN=true;static BIG_ENDIAN=false;static DEFAULT_CAPACITY=16;static DEFAULT_ENDIAN=e.BIG_ENDIAN;buffer;view;offset;markedOffset;limit;littleEndian;constructor(t=e.DEFAULT_CAPACITY,r=e.DEFAULT_ENDIAN){this.buffer=t===0?nt:new ArrayBuffer(t),this.view=t===0?new DataView(nt):new DataView(this.buffer),this.offset=0,this.markedOffset=-1,this.limit=t,this.littleEndian=r;}static allocate(t,r){return new e(t,r)}static concat(t,r){let n=0;for(let a=0;a<t.length;++a){let u=t[a];if(u instanceof e)n+=u.limit-u.offset;else if(u instanceof Uint8Array)n+=u.length;else if(u instanceof ArrayBuffer)n+=u.byteLength;else if(Array.isArray(u))n+=u.length;else throw TypeError("Illegal buffer")}if(n===0)return new e(0,r);let o=new e(n,r),i=new Uint8Array(o.buffer),s=0;for(let a=0;a<t.length;++a){let u=t[a];u instanceof e?(i.set(new Uint8Array(u.buffer,u.offset,u.limit-u.offset),s),s+=u.limit-u.offset):u instanceof Uint8Array?(i.set(u,s),s+=u.length):u instanceof ArrayBuffer?(i.set(new Uint8Array(u),s),s+=u.byteLength):(i.set(u,s),s+=u.length);}return o.limit=o.offset=s,o.offset=0,o}static wrap(t,r){if(t instanceof e){let o=t.clone();return o.markedOffset=-1,o}let n;if(t instanceof Uint8Array)n=new e(0,r),t.length>0&&(n.buffer=t.buffer,n.offset=t.byteOffset,n.limit=t.byteOffset+t.byteLength,n.view=new DataView(t.buffer));else if(t instanceof ArrayBuffer)n=new e(0,r),t.byteLength>0&&(n.buffer=t,n.offset=0,n.limit=t.byteLength,n.view=t.byteLength>0?new DataView(t):new DataView(nt));else if(Array.isArray(t))n=new e(t.length,r),n.limit=t.length,new Uint8Array(n.buffer).set(t);else throw TypeError("Illegal buffer");return n}writeBytes(t,r){return this.append(t,r)}writeInt8(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+1>this.buffer.byteLength&&this.resize(r+1),this.view.setInt8(r,t),n&&(this.offset+=1),this}writeByte(t,r){return this.writeInt8(t,r)}writeUint8(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+1>this.buffer.byteLength&&this.resize(r+1),this.view.setUint8(r,t),n&&(this.offset+=1),this}writeUInt8(t,r){return this.writeUint8(t,r)}readUint8(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getUint8(t);return r&&(this.offset+=1),n}readUInt8(t){return this.readUint8(t)}writeInt16(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+2>this.buffer.byteLength&&this.resize(r+2),this.view.setInt16(r,t,this.littleEndian),n&&(this.offset+=2),this}writeShort(t,r){return this.writeInt16(t,r)}writeUint16(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+2>this.buffer.byteLength&&this.resize(r+2),this.view.setUint16(r,t,this.littleEndian),n&&(this.offset+=2),this}writeUInt16(t,r){return this.writeUint16(t,r)}writeInt32(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+4>this.buffer.byteLength&&this.resize(r+4),this.view.setInt32(r,t,this.littleEndian),n&&(this.offset+=4),this}writeInt(t,r){return this.writeInt32(t,r)}writeUint32(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+4>this.buffer.byteLength&&this.resize(r+4),this.view.setUint32(r,t,this.littleEndian),n&&(this.offset+=4),this}writeUInt32(t,r){return this.writeUint32(t,r)}readUint32(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getUint32(t,this.littleEndian);return r&&(this.offset+=4),n}readUInt32=this.readUint32;append(t,r){let n=typeof r>"u";n?r=this.offset:r=r;let o;return t instanceof e?(o=new Uint8Array(t.buffer,t.offset,t.limit-t.offset),t.offset+=o.length):t instanceof Uint8Array?o=t:t instanceof ArrayBuffer?o=new Uint8Array(t):o=new Uint8Array(t),o.length<=0?this:(r+o.length>this.buffer.byteLength&&this.resize(r+o.length),new Uint8Array(this.buffer).set(o,r),n&&(this.offset+=o.length),this)}clone(t){let r=new e(0,this.littleEndian);return t?(r.buffer=new ArrayBuffer(this.buffer.byteLength),new Uint8Array(r.buffer).set(new Uint8Array(this.buffer)),r.view=new DataView(r.buffer)):(r.buffer=this.buffer,r.view=this.view),r.offset=this.offset,r.markedOffset=this.markedOffset,r.limit=this.limit,r}copy(t,r){if(t===void 0&&(t=this.offset),r===void 0&&(r=this.limit),t===r)return new e(0,this.littleEndian);let n=r-t,o=new e(n,this.littleEndian);return o.offset=0,o.limit=n,new Uint8Array(o.buffer).set(new Uint8Array(this.buffer).subarray(t,r),0),o}copyTo(t,r,n,o){let i=typeof r>"u",s=typeof n>"u";r=i?t.offset:r,n=s?this.offset:n,o=o===void 0?this.limit:o;let a=o-n;return a===0?t:(t.ensureCapacity(r+a),new Uint8Array(t.buffer).set(new Uint8Array(this.buffer).subarray(n,o),r),s&&(this.offset+=a),i&&(t.offset+=a),this)}ensureCapacity(t){let r=this.buffer.byteLength;return r<t?this.resize((r*=2)>t?r:t):this}flip(){return this.limit=this.offset,this.offset=0,this}resize(t){if(this.buffer.byteLength<t){let r=new ArrayBuffer(t);new Uint8Array(r).set(new Uint8Array(this.buffer)),this.buffer=r,this.view=new DataView(r);}return this}skip(t){return this.offset+=t,this}writeInt64(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,typeof t=="number"&&(t=BigInt(t)),r+8>this.buffer.byteLength&&this.resize(r+8),this.view.setBigInt64(r,t,this.littleEndian),n&&(this.offset+=8),this}writeLong(t,r){return this.writeInt64(t,r)}readInt64(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getBigInt64(t,this.littleEndian);return r&&(this.offset+=8),n}readLong(t){return this.readInt64(t)}writeUint64(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,typeof t=="number"&&(t=BigInt(t)),r+8>this.buffer.byteLength&&this.resize(r+8),this.view.setBigUint64(r,t,this.littleEndian),n&&(this.offset+=8),this}writeUInt64(t,r){return this.writeUint64(t,r)}readUint64(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getBigUint64(t,this.littleEndian);return r&&(this.offset+=8),n}readUInt64(t){return this.readUint64(t)}toBuffer(t){let r=this.offset,n=this.limit;return !t&&r===0&&n===this.buffer.byteLength?this.buffer:r===n?nt:this.buffer.slice(r,n)}toArrayBuffer(t){return this.toBuffer(t)}writeVarint32(t,r){let n=typeof r>"u";n?r=this.offset:r=r;let o=this.calculateVarint32(t);for(r+o>this.buffer.byteLength&&this.resize(r+o),t>>>=0;t>=128;)this.view.setUint8(r++,t&127|128),t>>>=7;return this.view.setUint8(r++,t),n?(this.offset=r,this):o}readVarint32(t){let r=typeof t>"u";typeof t>"u"&&(t=this.offset);let n=0,o=0,i;do i=this.view.getUint8(t++),n<5&&(o|=(i&127)<<7*n),++n;while((i&128)!==0);return o|=0,r?(this.offset=t,o):{value:o,length:n}}calculateVarint32(t){return t=t>>>0,t<128?1:t<16384?2:t<1<<21?3:t<1<<28?4:5}writeVString(t,r){let n=typeof r>"u",o=n?this.offset:r,i=ti().encode(t),s=i.length,a=this.calculateVarint32(s);return o+a+s>this.buffer.byteLength&&this.resize(o+a+s),this.writeVarint32(s,o),o+=a,new Uint8Array(this.buffer).set(i,o),o+=s,n?(this.offset=o,this):o-(r||0)}readVString(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=t,o=this.readVarint32(t),i=o.value,s=o.length;t+=s;let a=qr().decode(new Uint8Array(this.buffer,t,i));return t+=i,r?(this.offset=t,a):{string:a,length:t-n}}readUTF8String(t,r){let n=typeof r>"u";n?r=this.offset:r=r;let o=qr().decode(new Uint8Array(this.buffer,r,t));return n?(this.offset+=t,o):{string:o,length:t}}};var C={nodes:["https://api.hive.blog","https://api.deathwing.me","https://api.openhive.network","https://techcoderx.com","https://api.syncad.com","https://rpc.mahdiyari.info"],restNodes:["https://hapi.ecency.com","https://api.hive.blog","https://rpc.mahdiyari.info","https://techcoderx.com","https://hiveapi.actifit.io","https://api.c0ff33a.uk"],restNodesByApi:{hivesense:["https://api.hive.blog","https://api.syncad.com"]},userAgent:"ecency-sdk",chain_id:"beeab0de00000000000000000000000000000000000000000000000000000000",address_prefix:"STM",timeout:5e3,broadcastTimeout:15e3,retry:5},Kt=e=>Array.isArray(e)?[...new Set(e.filter(t=>typeof t=="string").map(t=>t.trim().replace(/\/+$/,"")).filter(t=>t.length>0&&/^https?:\/\/.+/.test(t)))]:[],It=e=>{let t=Kt(e);t.length&&(C.nodes=t);},Dt=e=>{let t=Kt(e);t.length&&(C.restNodes=t);},Bt=e=>{if(!e||typeof e!="object")return;let t={...C.restNodesByApi};for(let[r,n]of Object.entries(e)){let o=Kt(n);o.length?t[r]=o:delete t[r];}C.restNodesByApi=t;},Nt=e=>{if(typeof e!="string")return;let t=e.trim();!t||/[\u0000-\u001f\u007f]/.test(t)||(C.userAgent=t);};var ye=class e{data;recovery;compressed;constructor(t,r,n){this.data=t,this.recovery=r,this.compressed=n??true;}static from(t){if(typeof t=="string"){let r=hexToBytes(t),n=parseInt(bytesToHex(r.subarray(0,1)),16)-31,o=true;n<0&&(o=false,n=n+4);let i=r.subarray(1);return new e(i,n,o)}else throw new Error("Expected string for data")}toBuffer(){let t=new Uint8Array(65).fill(0);return this.compressed?t[0]=this.recovery+31&255:t[0]=this.recovery+27&255,t.set(this.data,1),t}customToString(){return bytesToHex(this.toBuffer())}toString(){return this.customToString()}getPublicKey(t){if(t instanceof Uint8Array&&t.length!==32||typeof t=="string"&&t.length!==64)throw new Error("Expected a valid sha256 hash as message");typeof t=="string"&&(t=hexToBytes(t));let r=secp256k1.Signature.fromBytes(this.data,"compact"),n=new secp256k1.Signature(r.r,r.s,this.recovery);return new j(n.recoverPublicKey(t).toBytes())}};var j=class e{key;prefix;constructor(t,r){this.key=t,this.prefix=r??C.address_prefix;}static fromString(t){let r=C.address_prefix;if(typeof t!="string"||t.length<=r.length)throw new Error("Invalid public key");let n=t.slice(0,r.length);if(n!==r)throw new Error(`Public key must start with ${r}`);let o;try{o=Nr.decode(t.slice(r.length));}catch{throw new Error("Invalid public key encoding")}if(o.length!==37)throw new Error("Invalid public key length");let i=o.subarray(0,33),s=o.subarray(33,37),a=ripemd160(i).subarray(0,4);if(!ni(s,a))throw new Error("Public key checksum mismatch");try{secp256k1.Point.fromBytes(i);}catch{throw new Error("Invalid public key")}return new e(i,n)}static from(t){return t instanceof e?t:e.fromString(t)}verify(t,r){return typeof r=="string"&&(r=ye.from(r)),secp256k1.verify(r.data,t,this.key,{prehash:false,format:"compact"})}toString(){return ri(this.key,this.prefix)}toJSON(){return this.toString()}inspect(){return `PublicKey: ${this.toString()}`}},ri=(e,t)=>{let r=ripemd160(e);return t+Nr.encode(new Uint8Array([...e,...r.subarray(0,4)]))},ni=(e,t)=>{if(e.byteLength!==t.byteLength)return false;for(let r=0;r<e.byteLength;r++)if(e[r]!==t[r])return false;return true};var st=class e{amount;symbol;constructor(t,r){this.amount=t,this.symbol=r==="HIVE"?"STEEM":r==="HBD"?"SBD":r;}static fromString(t,r=null){let[n,o]=t.split(" ");if(["STEEM","VESTS","SBD","TESTS","TBD","HIVE","HBD"].indexOf(o)===-1)throw new Error(`Invalid asset symbol: ${o}`);if(r&&o!==r)throw new Error(`Invalid asset, expected symbol: ${r} got: ${o}`);let i=Number.parseFloat(n);if(!Number.isFinite(i))throw new Error(`Invalid asset amount: ${n}`);return new e(i,o)}static from(t,r){if(t instanceof e){if(r&&t.symbol!==r)throw new Error(`Invalid asset, expected symbol: ${r} got: ${t.symbol}`);return t}else {if(typeof t=="number"&&Number.isFinite(t))return new e(t,r||"STEEM");if(typeof t=="string")return e.fromString(t,r);throw new Error(`Invalid asset '${String(t)}'`)}}getPrecision(){switch(this.symbol){case "TESTS":case "TBD":case "STEEM":case "SBD":case "HBD":case "HIVE":return 3;case "VESTS":return 6;default:return 3}}toString(){return `${this.amount.toFixed(this.getPrecision())} ${this.symbol}`}toJSON(){return this.toString()}};var at=class e{buffer;static from(t){return t instanceof e?t:t instanceof Uint8Array?new e(t):typeof t=="string"?new e(hexToBytes(t)):new e(new Uint8Array(t))}constructor(t){this.buffer=t;}toString(){return bytesToHex(this.buffer)}toJSON(){return this.toString()}};var k={vote:0,comment:1,transfer:2,transfer_to_vesting:3,withdraw_vesting:4,limit_order_create:5,limit_order_cancel:6,feed_publish:7,convert:8,account_create:9,account_update:10,witness_update:11,account_witness_vote:12,account_witness_proxy:13,custom:15,delete_comment:17,custom_json:18,comment_options:19,set_withdraw_vesting_route:20,limit_order_create2:21,claim_account:22,create_claimed_account:23,request_account_recovery:24,recover_account:25,change_recovery_account:26,escrow_transfer:27,escrow_dispute:28,escrow_release:29,escrow_approve:31,transfer_to_savings:32,transfer_from_savings:33,cancel_transfer_from_savings:34,decline_voting_rights:36,reset_account:37,set_reset_account:38,claim_reward_balance:39,delegate_vesting_shares:40,account_create_with_delegation:41,witness_set_properties:42,account_update2:43,create_proposal:44,update_proposal_votes:45,remove_proposal:46,update_proposal:47,collateralized_convert:48,recurrent_transfer:49},Y=()=>{throw new Error("Void can not be serialized")},w=(e,t)=>{e.writeVString(t);},si=(e,t)=>{e.writeInt16(t);},Qr=(e,t)=>{e.writeInt64(t);},Mr=(e,t)=>{e.writeUint8(t);},te=(e,t)=>{e.writeUint16(t);},L=(e,t)=>{e.writeUint32(t);},Hr=(e,t)=>{e.writeUint64(t);},ce=(e,t)=>{e.writeByte(t?1:0);},Ur=e=>(t,r)=>{let[n,o]=r;t.writeVarint32(n),e[n](t,o);},q=(e,t)=>{let r=st.from(t),n=r.getPrecision();e.writeInt64(Math.round(r.amount*Math.pow(10,n))),e.writeUint8(n);for(let o=0;o<7;o++)e.writeUint8(r.symbol.charCodeAt(o)||0);},he=(e,t)=>{e.writeUint32(Math.floor(new Date(t+"Z").getTime()/1e3));},ie=(e,t)=>{t===null||typeof t=="string"&&t.slice(-39)==="1111111111111111111111111111111114T1Anm"?e.append(new Uint8Array(33).fill(0)):e.append(j.from(t).key);},Vr=(e=null)=>(t,r)=>{r=at.from(r);let n=r.buffer.length;if(e){if(n!==e)throw new Error(`Unable to serialize binary. Expected ${e} bytes, got ${n}`)}else t.writeVarint32(n);t.append(r.buffer);},jr=Vr(),Mt=(e,t)=>(r,n)=>{r.writeVarint32(n.length);for(let[o,i]of n)e(r,o),t(r,i);},Q=e=>(t,r)=>{t.writeVarint32(r.length);for(let n of r)e(t,n);},re=e=>(t,r)=>{for(let[n,o]of e)try{o(t,r[n]);}catch(i){throw i.message=`${n}: ${i.message}`,i}},ve=e=>(t,r)=>{r!==void 0?(t.writeByte(1),e(t,r)):t.writeByte(0);},H=re([["weight_threshold",L],["account_auths",Mt(w,te)],["key_auths",Mt(ie,te)]]),ai=re([["account",w],["weight",te]]),Qt=re([["base",q],["quote",q]]),ci=re([["account_creation_fee",q],["maximum_block_size",L],["hbd_interest_rate",te]]),E=(e,t)=>{let r=re(t);return (n,o)=>{n.writeVarint32(e),r(n,o);}},O={};O.account_create=E(k.account_create,[["fee",q],["creator",w],["new_account_name",w],["owner",H],["active",H],["posting",H],["memo_key",ie],["json_metadata",w]]);O.account_create_with_delegation=E(k.account_create_with_delegation,[["fee",q],["delegation",q],["creator",w],["new_account_name",w],["owner",H],["active",H],["posting",H],["memo_key",ie],["json_metadata",w],["extensions",Q(Y)]]);O.account_update=E(k.account_update,[["account",w],["owner",ve(H)],["active",ve(H)],["posting",ve(H)],["memo_key",ie],["json_metadata",w]]);O.account_witness_proxy=E(k.account_witness_proxy,[["account",w],["proxy",w]]);O.account_witness_vote=E(k.account_witness_vote,[["account",w],["witness",w],["approve",ce]]);O.cancel_transfer_from_savings=E(k.cancel_transfer_from_savings,[["from",w],["request_id",L]]);O.change_recovery_account=E(k.change_recovery_account,[["account_to_recover",w],["new_recovery_account",w],["extensions",Q(Y)]]);O.claim_account=E(k.claim_account,[["creator",w],["fee",q],["extensions",Q(Y)]]);O.claim_reward_balance=E(k.claim_reward_balance,[["account",w],["reward_hive",q],["reward_hbd",q],["reward_vests",q]]);O.comment=E(k.comment,[["parent_author",w],["parent_permlink",w],["author",w],["permlink",w],["title",w],["body",w],["json_metadata",w]]);O.comment_options=E(k.comment_options,[["author",w],["permlink",w],["max_accepted_payout",q],["percent_hbd",te],["allow_votes",ce],["allow_curation_rewards",ce],["extensions",Q(Ur([re([["beneficiaries",Q(ai)]])]))]]);O.convert=E(k.convert,[["owner",w],["requestid",L],["amount",q]]);O.create_claimed_account=E(k.create_claimed_account,[["creator",w],["new_account_name",w],["owner",H],["active",H],["posting",H],["memo_key",ie],["json_metadata",w],["extensions",Q(Y)]]);O.custom=E(k.custom,[["required_auths",Q(w)],["id",te],["data",jr]]);O.custom_json=E(k.custom_json,[["required_auths",Q(w)],["required_posting_auths",Q(w)],["id",w],["json",w]]);O.decline_voting_rights=E(k.decline_voting_rights,[["account",w],["decline",ce]]);O.delegate_vesting_shares=E(k.delegate_vesting_shares,[["delegator",w],["delegatee",w],["vesting_shares",q]]);O.delete_comment=E(k.delete_comment,[["author",w],["permlink",w]]);O.escrow_approve=E(k.escrow_approve,[["from",w],["to",w],["agent",w],["who",w],["escrow_id",L],["approve",ce]]);O.escrow_dispute=E(k.escrow_dispute,[["from",w],["to",w],["agent",w],["who",w],["escrow_id",L]]);O.escrow_release=E(k.escrow_release,[["from",w],["to",w],["agent",w],["who",w],["receiver",w],["escrow_id",L],["hbd_amount",q],["hive_amount",q]]);O.escrow_transfer=E(k.escrow_transfer,[["from",w],["to",w],["hbd_amount",q],["hive_amount",q],["escrow_id",L],["agent",w],["fee",q],["json_meta",w],["ratification_deadline",he],["escrow_expiration",he]]);O.feed_publish=E(k.feed_publish,[["publisher",w],["exchange_rate",Qt]]);O.limit_order_cancel=E(k.limit_order_cancel,[["owner",w],["orderid",L]]);O.limit_order_create=E(k.limit_order_create,[["owner",w],["orderid",L],["amount_to_sell",q],["min_to_receive",q],["fill_or_kill",ce],["expiration",he]]);O.limit_order_create2=E(k.limit_order_create2,[["owner",w],["orderid",L],["amount_to_sell",q],["exchange_rate",Qt],["fill_or_kill",ce],["expiration",he]]);O.recover_account=E(k.recover_account,[["account_to_recover",w],["new_owner_authority",H],["recent_owner_authority",H],["extensions",Q(Y)]]);O.request_account_recovery=E(k.request_account_recovery,[["recovery_account",w],["account_to_recover",w],["new_owner_authority",H],["extensions",Q(Y)]]);O.reset_account=E(k.reset_account,[["reset_account",w],["account_to_reset",w],["new_owner_authority",H]]);O.set_reset_account=E(k.set_reset_account,[["account",w],["current_reset_account",w],["reset_account",w]]);O.set_withdraw_vesting_route=E(k.set_withdraw_vesting_route,[["from_account",w],["to_account",w],["percent",te],["auto_vest",ce]]);O.transfer=E(k.transfer,[["from",w],["to",w],["amount",q],["memo",w]]);O.transfer_from_savings=E(k.transfer_from_savings,[["from",w],["request_id",L],["to",w],["amount",q],["memo",w]]);O.transfer_to_savings=E(k.transfer_to_savings,[["from",w],["to",w],["amount",q],["memo",w]]);O.transfer_to_vesting=E(k.transfer_to_vesting,[["from",w],["to",w],["amount",q]]);O.vote=E(k.vote,[["voter",w],["author",w],["permlink",w],["weight",si]]);O.withdraw_vesting=E(k.withdraw_vesting,[["account",w],["vesting_shares",q]]);O.witness_update=E(k.witness_update,[["owner",w],["url",w],["block_signing_key",ie],["props",ci],["fee",q]]);O.witness_set_properties=E(k.witness_set_properties,[["owner",w],["props",Mt(w,jr)],["extensions",Q(Y)]]);O.account_update2=E(k.account_update2,[["account",w],["owner",ve(H)],["active",ve(H)],["posting",ve(H)],["memo_key",ve(ie)],["json_metadata",w],["posting_json_metadata",w],["extensions",Q(Y)]]);O.create_proposal=E(k.create_proposal,[["creator",w],["receiver",w],["start_date",he],["end_date",he],["daily_pay",q],["subject",w],["permlink",w],["extensions",Q(Y)]]);O.update_proposal_votes=E(k.update_proposal_votes,[["voter",w],["proposal_ids",Q(Qr)],["approve",ce],["extensions",Q(Y)]]);O.remove_proposal=E(k.remove_proposal,[["proposal_owner",w],["proposal_ids",Q(Qr)],["extensions",Q(Y)]]);var ui=re([["end_date",he]]);O.update_proposal=E(k.update_proposal,[["proposal_id",Hr],["creator",w],["daily_pay",q],["subject",w],["permlink",w],["extensions",Q(Ur([Y,ui]))]]);O.collateralized_convert=E(k.collateralized_convert,[["owner",w],["requestid",L],["amount",q]]);O.recurrent_transfer=E(k.recurrent_transfer,[["from",w],["to",w],["amount",q],["memo",w],["recurrence",te],["executions",te],["extensions",Q(re([["type",Mr],["value",re([["pair_id",Mr]])]]))]]);var pi=(e,t)=>{let r=O[t[0]];if(!r)throw new Error(`No serializer for operation: ${t[0]}`);try{r(e,t[1]);}catch(n){throw n.message=`${t[0]}: ${n.message}`,n}},li=re([["ref_block_num",te],["ref_block_prefix",L],["expiration",he],["operations",Q(pi)],["extensions",Q(w)]]),di=re([["from",ie],["to",ie],["nonce",Hr],["check",L],["encrypted",Vr()]]),ne={Asset:q,Memo:di,Price:Qt,PublicKey:ie,String:w,Transaction:li,UInt16:te,UInt32:L};var Ue=e=>new Promise(t=>setTimeout(t,e));var fi=(()=>{try{return !(typeof navigator<"u"&&navigator.product==="ReactNative")&&typeof process<"u"&&process.versions!=null&&process.versions.node!=null}catch{return false}})();function Wr(){return fi?{"User-Agent":C.userAgent}:{}}var se=class extends Error{name="RPCError";data;code;stack=void 0;constructor(t){super(t.message),this.code=t.code,"data"in t&&(this.data=t.data);}},Pe=class extends Error{node;rateLimitMs;isRateLimit;constructor(t,r,n={}){super(r),this.node=t,this.rateLimitMs=n.rateLimitMs??0,this.isRateLimit=n.isRateLimit??false;}};function $r(e){if(!e)return 0;let t=Number(e);if(Number.isFinite(t))return t>0?t*1e3:0;let r=Date.parse(e);if(Number.isFinite(r)){let n=r-Date.now();return n>0?n:0}return 0}var mi=["ECONNREFUSED","ENOTFOUND","EHOSTUNREACH","EAI_AGAIN"],gi=["Failed to fetch","NetworkError when attempting to fetch","Load failed","fetch failed"];function yi(e){if(!e)return "";let t=[String(e.name||""),String(e.message||""),String(e.code||"")],r=e.cause;for(let n=0;r&&n<5;n++)t.push(String(r.code||""),String(r.message||"")),r=r.cause;return t.join(" ")}function hi(e){if(!e)return false;if(e instanceof Pe)return true;if(e instanceof se)return false;let t=yi(e);return !!(mi.some(r=>t.includes(r))||gi.some(r=>t.includes(r))||e instanceof SyntaxError||/Unexpected token|JSON\.parse|Unexpected end of JSON/i.test(t))}function _i(e,t){return !!(e===-32603||e<=-32e3&&e>=-32099||e===-32601||e===-32602&&/unable to parse|endpoint data|internal/i.test(t))}function Gr(e){let t=e.indexOf(".");return t>0?e.slice(0,t):e}var wi=1e4,bi=6e4,vi=12e4,Ai=2,Pi=6e4,Lr=12e4,Oi=30,Ht=.3,zr=3,Ut=5*6e4,Jr=6e4,Yr=1e3,Xr=2e3,Zr=700,en=2.5,xi=new Set(["hapi.ecency.com","api.ecency.com"]);function ki(e){try{return xi.has(new URL(e).hostname)}catch{return false}}var ct=class{health=new Map;getOrCreate(t){let r=this.health.get(t);return r||(r={consecutiveFailures:0,lastFailureTime:0,rateLimitedUntil:0,rateLimitStreak:0,lastRateLimitAt:0,apiFailures:new Map,headBlock:0,headBlockUpdatedAt:0,ewmaLatencyMs:void 0,latencySampleCount:0,latencyUpdatedAt:0,lastProbeAt:Date.now()},this.health.set(t,r)),r}recordSuccess(t,r,n){let o=this.getOrCreate(t);o.consecutiveFailures=0,o.rateLimitStreak=0,r&&o.apiFailures.delete(r),typeof n=="number"&&Number.isFinite(n)&&n>=0&&this.recordLatency(o,n);}recordSlowFailure(t,r){!Number.isFinite(r)||r<Xr||this.recordLatency(this.getOrCreate(t),r);}recordLatency(t,r){let n=Date.now();t.latencyUpdatedAt>0&&n-t.latencyUpdatedAt>Ut&&(t.ewmaLatencyMs=void 0,t.latencySampleCount=0),t.ewmaLatencyMs=t.ewmaLatencyMs===void 0?r:Ht*r+(1-Ht)*t.ewmaLatencyMs,t.latencySampleCount++,t.latencyUpdatedAt=n;}recordFailure(t,r){let n=this.getOrCreate(t);if(r){let o=Date.now(),i=n.apiFailures.get(r)??{count:0,cooldownUntil:0,lastFailureTime:0};(i.cooldownUntil>0&&i.cooldownUntil<=o||i.lastFailureTime>0&&o-i.lastFailureTime>3e4)&&(i.count=0,i.cooldownUntil=0),i.count++,i.lastFailureTime=o,i.count>=Ai&&(i.cooldownUntil=o+Pi),n.apiFailures.set(r,i);}else n.consecutiveFailures++,n.lastFailureTime=Date.now();}recordRateLimit(t,r){let n=this.getOrCreate(t),o=Date.now();n.rateLimitStreak>0&&o-n.lastRateLimitAt>vi&&(n.rateLimitStreak=0);let i=typeof r=="number"&&Number.isFinite(r)&&r>0,s=i?r:Math.min(wi*2**n.rateLimitStreak,bi);i||n.rateLimitStreak++,n.lastRateLimitAt=o,n.rateLimitedUntil=i?o+s:Math.max(n.rateLimitedUntil,o+s),n.consecutiveFailures++,n.lastFailureTime=o;}recordHeadBlock(t,r){if(!r||!Number.isFinite(r))return;let n=this.getOrCreate(t);n.headBlock=r,n.headBlockUpdatedAt=Date.now();}consensusHeadBlock(){let t=Date.now(),r=[];for(let n of this.health.values())n.headBlock>0&&t-n.headBlockUpdatedAt<=Lr&&r.push(n.headBlock);return r.length<2?0:(r.sort((n,o)=>n-o),r[Math.floor((r.length-1)/2)])}isNodeHealthy(t,r){let n=this.health.get(t);if(!n)return true;let o=Date.now();if(n.rateLimitedUntil>o||n.consecutiveFailures>=3&&o-n.lastFailureTime<3e4)return false;if(r){let s=n.apiFailures.get(r);if(s&&s.cooldownUntil>o)return false}let i=this.consensusHeadBlock();return !(i>0&&n.headBlock>0&&o-n.headBlockUpdatedAt<=Lr&&i-n.headBlock>Oi)}getOrderedNodes(t,r){let n=[],o=[];for(let p of t)this.isNodeHealthy(p,r)?n.push(p):o.push(p);if(n.length<=1)return [...n,...o];let i=Date.now(),s=this.fastestUsableLatency(n,i),a=n.map((p,l)=>({node:p,i:l,score:this.scoreNode(p,s,i)})).sort((p,l)=>p.score-l.score||p.i-l.i).map(p=>p.node),u=this.pickReprobeCandidate(n,i);return u&&a[0]!==u?[u,...a.filter(p=>p!==u),...o]:[...a,...o]}isLatencyUsable(t,r){return !!t&&t.ewmaLatencyMs!==void 0&&t.latencySampleCount>=zr&&r-t.latencyUpdatedAt<=Ut}fastestUsableLatency(t,r){let n=1/0;for(let o of t){let i=this.health.get(o);this.isLatencyUsable(i,r)&&(n=Math.min(n,i.ewmaLatencyMs));}return n}scoreNode(t,r,n){let o=this.health.get(t);if(!this.isLatencyUsable(o,n))return Yr;let i=o.ewmaLatencyMs;return ki(t)?r>0&&r!==1/0&&i>en*r?i:Math.max(i-Zr,0):i}pickReprobeCandidate(t,r){let n=r-Jr,o,i=1/0;for(let s of t){let a=this.getOrCreate(s),u=Math.max(a.latencyUpdatedAt,a.lastProbeAt);u<=n&&u<i&&(o=s,i=u);}return o&&(this.getOrCreate(o).lastProbeAt=r),o}},_e=new ct,Ae=new ct;function tn(e,t,r,n){r instanceof Pe?r.isRateLimit?e.recordRateLimit(t,r.rateLimitMs||void 0):e.recordFailure(t,n):r instanceof se?e.recordFailure(t,n):e.recordFailure(t);}function Ei(e,t,r,n){if(!n||typeof n!="object"||!r.includes("get_dynamic_global_properties"))return;let o=n.head_block_number;typeof o=="number"&&e.recordHeadBlock(t,o);}function Si(){if(typeof DOMException<"u")return new DOMException("The operation was aborted due to timeout","TimeoutError");let e=new Error("The operation was aborted due to timeout");return e.name="TimeoutError",e}function rn(e){if(typeof AbortSignal.timeout=="function")return {signal:AbortSignal.timeout(e),cleanup:()=>{}};let t=new AbortController,r=setTimeout(()=>t.abort(Si()),e);return {signal:t.signal,cleanup:()=>clearTimeout(r)}}function nn(e,t){if(!t)return {signal:e,cleanup:()=>{}};if(typeof AbortSignal.any=="function")return {signal:AbortSignal.any([e,t]),cleanup:()=>{}};let r=new AbortController;if(e.aborted)return r.abort(e.reason),{signal:r.signal,cleanup:()=>{}};if(t.aborted)return r.abort(t.reason),{signal:r.signal,cleanup:()=>{}};let n=()=>r.abort(e.reason),o=()=>r.abort(t.reason);e.addEventListener("abort",n,{once:true}),t.addEventListener("abort",o,{once:true});let i=()=>{e.removeEventListener("abort",n),t.removeEventListener("abort",o);};return {signal:r.signal,cleanup:i}}var ut=async(e,t,r,n=C.timeout,o=false,i)=>{let s=Math.floor(Math.random()*1e8),a={jsonrpc:"2.0",method:t,params:r,id:s},{signal:u,cleanup:p}=rn(n),{signal:l,cleanup:m}=nn(u,i),d=()=>{p(),m();};try{let y=await fetch(e,{method:"POST",body:JSON.stringify(a),headers:{"Content-Type":"application/json",...Wr()},signal:l});if(y.status===429)throw new Pe(e,"HTTP 429 Rate Limited",{rateLimitMs:$r(y.headers.get("Retry-After")),isRateLimit:!0});if(y.status>=500&&y.status<600)throw new Pe(e,`HTTP ${y.status} from ${e}`);let v=await y.json();if(!v||typeof v.id>"u"||v.id!==s||v.jsonrpc!=="2.0")throw new Error("JSONRPC id mismatch");if("result"in v)return v.result;if("error"in v){let A=v.error;throw "message"in A&&"code"in A?new se(A):v.error}throw v}catch(y){if(y instanceof se||y instanceof Pe||i?.aborted)throw y;if(o)return ut(e,t,r,n,false,i);throw y}finally{d();}};function on(){return Ue(50+Math.random()*50)}var g=async(e,t=[],r=C.timeout,n=C.retry,o)=>{if(!Array.isArray(C.nodes))throw new Error("config.nodes is not an array");if(C.nodes.length===0)throw new Error("config.nodes is empty");let i=Gr(e),s=new Set,a;for(let u=0;u<=n;u++){let p=_e.getOrderedNodes(C.nodes,i),l=p.find(d=>!s.has(d));l||(s.clear(),l=p[0]),s.add(l);let m=Date.now();try{let d=await ut(l,e,t,r,!1,o);return _e.recordSuccess(l,i,Date.now()-m),Ei(_e,l,e,d),d}catch(d){if(d instanceof se&&!_i(d.code,d.message)||o?.aborted)throw d;tn(_e,l,d,i),_e.recordSlowFailure(l,Date.now()-m),a=d,u<n&&await on();}}throw a},Fe=async(e,t=[],r=C.broadcastTimeout,n)=>{if(!Array.isArray(C.nodes))throw new Error("config.nodes is not an array");if(C.nodes.length===0)throw new Error("config.nodes is empty");let o=Gr(e),i=new Set,s;for(let a=0;a<C.nodes.length;a++){let p=_e.getOrderedNodes(C.nodes,o).find(l=>!i.has(l));if(!p)break;if(i.add(p),n?.aborted)throw new Error("Aborted");try{let l=await ut(p,e,t,r,!1,n);return _e.recordSuccess(p,o),l}catch(l){if(l instanceof se||n?.aborted||(tn(_e,p,l,o),s=l,!hi(l)))throw l}}throw s},Ci={balance:"/balance-api",hafah:"/hafah-api",hafbe:"/hafbe-api",hivemind:"/hivemind-api",hivesense:"/hivesense-api",reputation:"/reputation-api","nft-tracker":"/nft-tracker-api",hafsql:"/hafsql",status:"/status-api"};async function $(e,t,r,n=C.timeout,o=C.retry,i){if(!Array.isArray(C.restNodes))throw new Error("config.restNodes is not an array");if(C.restNodes.length===0)throw new Error("config.restNodes is empty");let s=C.restNodesByApi?.[e]?.length?C.restNodesByApi[e]:C.restNodes,a=new Set,u,p=false;for(let l=0;l<=o;l++){let m=Ae.getOrderedNodes(s,e),d=m.find(N=>!a.has(N));d||(a.clear(),d=m[0]),a.add(d);let y=d+Ci[e],v=t,A=r||{},S=new Set;Object.entries(A).forEach(([N,be])=>{v.includes(`{${N}}`)&&(v=v.replace(`{${N}}`,encodeURIComponent(String(be))),S.add(N));});let R=new URL(y+v);if(Object.entries(A).forEach(([N,be])=>{S.has(N)||(Array.isArray(be)?be.forEach(Zo=>R.searchParams.append(N,String(Zo))):R.searchParams.set(N,String(be)));}),i?.aborted)throw new Error("Aborted");p=false;let{signal:T,cleanup:V}=rn(n),{signal:He,cleanup:qt}=nn(T,i),Ft=()=>{V(),qt();},tt=Date.now();try{let N=await fetch(R.toString(),{signal:He,headers:Wr()});if(N.status===404)throw new Error("HTTP 404 - Hint: can happen on wrong params");if(N.status===429)throw Ae.recordRateLimit(d,$r(N.headers.get("Retry-After"))||void 0),p=!0,new Error(`HTTP 429 Rate Limited by ${d}`);if(N.status===503)throw Ae.recordFailure(d,e),p=!0,new Error(`HTTP 503 Service Unavailable from ${d}`);if(!N.ok)throw Ae.recordFailure(d,e),p=!0,new Error(`HTTP ${N.status} from ${d}`);return Ae.recordSuccess(d,e,Date.now()-tt),N.json()}catch(N){if(N?.message?.includes("HTTP 404")||i?.aborted)throw N;p||Ae.recordFailure(d,e),Ae.recordSlowFailure(d,Date.now()-tt),u=N,l<o&&await on();}finally{Ft();}}throw u}var pt=async(e,t=[],r=2,n)=>{if(!Array.isArray(C.nodes))throw new Error("config.nodes is not an Array");if(r>C.nodes.length)throw new Error("quorum > config.nodes.length");let i=(u=>{let p=[...u];for(let l=p.length-1;l>0;l--){let m=Math.floor(Math.random()*(l+1));[p[l],p[m]]=[p[m],p[l]];}return p})(C.nodes),s=Math.min(r,i.length),a=[];for(;s>0&&i.length>0;){let u=i.splice(0,s),p=[],l=[];for(let d=0;d<u.length;d++)p.push(ut(u[d],e,t,void 0,true,n).then(y=>l.push(y)).catch(()=>{}));await Promise.all(p),a.push(...l);let m=Ti(a,r);if(m)return m;if(s=Math.min(r,i.length),s===0)throw new Error("No more nodes available.")}throw new Error("Couldn't reach quorum.")};function Ti(e,t){let r=new Map;for(let o of e){let i=JSON.stringify(o);r.has(i)||r.set(i,[]),r.get(i).push(o);}let n=Array.from(r.values()).find(o=>o.length>=t);return n?n[0]:null}var qi=hexToBytes(C.chain_id),Oe=class e{transaction;expiration=6e4;txId;constructor(t){t?.transaction&&(t.transaction instanceof e?(this.transaction=t.transaction.transaction,this.expiration=t.transaction.expiration):this.transaction=t.transaction,this.transaction&&!Array.isArray(this.transaction.signatures)&&(this.transaction.signatures=[]),this.txId=this.digest().txId),t?.expiration&&(this.expiration=t.expiration);}async addOperation(t,r){this.transaction||await this.createTransaction(this.expiration),this.transaction.operations.push([t,r]);}sign(t){if(!this.transaction)throw new Error("First create a transaction by .addOperation()");if(this.transaction){let{digest:r,txId:n}=this.digest();Array.isArray(t)||(t=[t]);for(let o of t){let i=o.sign(r);this.transaction.signatures.push(i.customToString());}return this.txId=n,this.transaction}else throw new Error("No transaction to sign")}async broadcast(t=false){if(!this.transaction)throw new Error("Attempted to broadcast an empty transaction. Add operations by .addOperation()");if(this.transaction.signatures.length===0)throw new Error("Attempted to broadcast a transaction with no signatures. Sign using .sign(keys)");try{await Fe("condenser_api.broadcast_transaction",[this.transaction]);}catch(i){if(!(i instanceof se&&i.message.includes("Duplicate transaction check failed")))throw i}if(this.txId||(this.txId=this.digest().txId),!t)return {tx_id:this.txId,status:"unknown"};let r=60;await Ue(1e3);let n=await this.checkStatus(),o=1;for(;n?.status!=="within_irreversible_block"&&n?.status!=="expired_irreversible"&&n?.status!=="too_old"&&o<r;)await Ue(1e3+o*300),n=await this.checkStatus(),o++;return {tx_id:this.txId,status:n?.status??"unknown"}}digest(){if(!this.transaction)throw new Error("First create a transaction by .addOperation()");let t=new F(F.DEFAULT_CAPACITY,F.LITTLE_ENDIAN),r={...this.transaction};try{ne.Transaction(t,r);}catch(s){throw new Error("Unable to serialize transaction: "+s)}t.flip();let n=new Uint8Array(t.toBuffer()),o=bytesToHex(sha256(n)).slice(0,40);return {digest:sha256(new Uint8Array([...qi,...n])),txId:o}}addSignature(t){if(!this.transaction)throw new Error("First create a transaction by .create(operations)");if(typeof t!="string")throw new Error("Signature must be string");if(t.length!==130)throw new Error("Signature must be 130 characters long");return this.transaction.signatures.push(t),this.transaction}async checkStatus(){return this.txId||(this.txId=this.digest().txId),g("transaction_status_api.find_transaction",{transaction_id:this.txId,expiration:this.transaction?.expiration})}createTransaction=async t=>{let r=await g("condenser_api.get_dynamic_global_properties",[]),n=hexToBytes(r.head_block_id),o=Number(new Uint32Array(n.buffer,n.byteOffset+4,1)[0]),i=new Date(Date.now()+t).toISOString().slice(0,-5);this.transaction={expiration:i,extensions:[],operations:[],ref_block_num:r.head_block_number&65535,ref_block_prefix:o,signatures:[]};}};var ln=new Uint8Array([128]),M=class e{key;constructor(t){this.key=t;try{secp256k1.getPublicKey(t);}catch{throw new Error("invalid private key")}}static from(t){return typeof t=="string"?e.fromString(t):new e(t)}static fromString(t){return new e(Di(t).subarray(1))}static fromSeed(t){if(typeof t=="string")if(/^[0-9a-fA-F]+$/.test(t))t=hexToBytes(t);else {let n=[];for(let o=0;o<t.length;o++){let i=t.charCodeAt(o);if(i<128)n.push(i);else if(i<2048)n.push(192|i>>6,128|i&63);else if(i>=55296&&i<=56319&&o+1<t.length){let s=t.charCodeAt(++o);i=65536+((i&1023)<<10)+(s&1023),n.push(240|i>>18,128|i>>12&63,128|i>>6&63,128|i&63);}else n.push(224|i>>12,128|i>>6&63,128|i&63);}t=new Uint8Array(n);}return new e(sha256(t))}static fromLogin(t,r,n="active"){let o=t+n+r;return e.fromSeed(o)}sign(t){let r=secp256k1.sign(t,this.key,{extraEntropy:true,format:"recovered",prehash:false}),n=parseInt(bytesToHex(r.subarray(0,1)),16);return ye.from((n+31).toString(16)+bytesToHex(r.subarray(1)))}createPublic(t){return new j(secp256k1.getPublicKey(this.key),t)}toString(){return Ii(new Uint8Array([...ln,...this.key]))}inspect(){let t=this.toString();return `PrivateKey: ${t.slice(0,6)}...${t.slice(-6)}`}getSharedSecret(t){let r=secp256k1.getSharedSecret(this.key,t.key);return sha512(r.subarray(1))}static randomKey(){return new e(secp256k1.keygen().secretKey)}},dn=e=>sha256(sha256(e)),Ii=e=>{let t=dn(e);return Nr.encode(new Uint8Array([...e,...t.slice(0,4)]))},Di=e=>{let t=Nr.decode(e);if(!un(t.slice(0,1),ln))throw new Error("Private key network id mismatch");let r=t.slice(-4),n=t.slice(0,-4),o=dn(n).slice(0,4);if(!un(r,o))throw new Error("Private key checksum mismatch");return n},un=(e,t)=>{if(e===t)return true;if(e.byteLength!==t.byteLength)return false;let r=e.byteLength,n=0;for(;n<r&&e[n]===t[n];)n++;return n===r};var mn=(e,t,r,n=Ui())=>yn(e,t,n,r),gn=(e,t,r,n,o)=>yn(e,t,r,n,o).message,yn=(e,t,r,n,o)=>{let i=r,s=e.getSharedSecret(t),a=new F(F.DEFAULT_CAPACITY,F.LITTLE_ENDIAN);a.writeUint64(i),a.append(s),a.flip();let u=sha512(new Uint8Array(a.toBuffer())),p=u.subarray(32,48),l=u.subarray(0,32),m=sha256(u).subarray(0,4),d=new F(F.DEFAULT_CAPACITY,F.LITTLE_ENDIAN);d.append(m),d.flip();let y=d.readUint32();if(o!==void 0){if(y!==o)throw new Error("Invalid key");n=Qi(n,l,p);}else n=Hi(n,l,p);return {nonce:i,message:n,checksum:y}},Qi=(e,t,r)=>{let n=e;return n=cbc(t,r).decrypt(n),n},Hi=(e,t,r)=>{let n=e;return n=cbc(t,r).encrypt(n),n},jt=null,Ui=()=>{if(jt===null){let r=secp256k1.utils.randomSecretKey();jt=r[0]<<8|r[1];}let e=BigInt(Date.now()),t=++jt%65536;return e=e<<BigInt(16)|BigInt(t),e};var hn=e=>{let t=Gi(e,33);return new j(t)},ji=e=>e.readUint64(),Li=e=>e.readUint32(),Wi=e=>{let t=e.readVarint32(),r=e.copy(e.offset,e.offset+t);return e.skip(t),new Uint8Array(r.toBuffer())},$i=e=>t=>{let r={},n=new F(F.DEFAULT_CAPACITY,F.LITTLE_ENDIAN);n.append(t),n.flip();for(let[o,i]of e)try{r[o]=i(n);}catch(s){throw s.message=`${o}: ${s.message}`,s}return r};function Gi(e,t){if(e){let r=e.copy(e.offset,e.offset+t);return e.skip(t),new Uint8Array(r.toBuffer())}else throw Error("No buffer found on first parameter")}var zi=$i([["from",hn],["to",hn],["nonce",ji],["check",Li],["encrypted",Wi]]),_n={Memo:zi};var bn=(e,t,r,n)=>{if(!r.startsWith("#"))return r;r=r.substring(1),An(),e=Pn(e),t=Ji(t);let o=new F(F.DEFAULT_CAPACITY,F.LITTLE_ENDIAN);o.writeVString(r);let i=new Uint8Array(o.copy(0,o.offset).toBuffer()),{nonce:s,message:a,checksum:u}=mn(e,t,i,n),p=new F(F.DEFAULT_CAPACITY,F.LITTLE_ENDIAN);ne.Memo(p,{check:u,encrypted:a,from:e.createPublic(),nonce:s,to:t}),p.flip();let l=new Uint8Array(p.toBuffer());return "#"+Nr.encode(l)},vn=(e,t)=>{if(!t.startsWith("#"))return t;t=t.substring(1),An(),e=Pn(e);let r=_n.Memo(Nr.decode(t)),{from:n,to:o,nonce:i,check:s,encrypted:a}=r,p=e.createPublic().toString()===new j(n.key).toString()?new j(o.key):new j(n.key);r=gn(e,p,i,a,s);let l=new F(F.DEFAULT_CAPACITY,F.LITTLE_ENDIAN);return l.append(r),l.flip(),"#"+l.readVString()},lt,An=()=>{if(lt===void 0){let e;lt=true;try{let t="5JdeC9P7Pbd1uGdFVEsJ41EkEnADbbHGq6p1BwFxm6txNBsQnsw",n=bn(t,"STM8m5UgaFAAYQRuaNejYdS8FVLVp9Ss3K1qAVk5de6F8s3HnVbvA","#memo\u7231");e=vn(t,n);}finally{lt=e==="#memo\u7231";}}if(lt===false)throw new Error("This environment does not support encryption.")},Pn=e=>typeof e=="string"?M.fromString(e):e,Ji=e=>typeof e=="string"?j.fromString(e):e,On={decode:vn,encode:bn};var z={};rt(z,{buildWitnessSetProperties:()=>rs,makeBitMaskFilter:()=>es,operations:()=>Zi,validateUsername:()=>Xi});var Xi=e=>{let t="Account name should ";if(!e)return t+"not be empty.";let r=e.length;if(r<3)return t+"be longer.";if(r>16)return t+"be shorter.";/\./.test(e)&&(t="Each account segment should ");let n=e.split("."),o=n.length;for(let i=0;i<o;i++){let s=n[i];if(!/^[a-z]/.test(s))return t+"start with a lowercase letter.";if(!/^[a-z0-9-]*$/.test(s))return t+"have only lowercase letters, digits, or dashes.";if(!/[a-z0-9]$/.test(s))return t+"end with a lowercase letter or digit.";if(s.length<3)return t+"be longer."}return null},Zi={vote:0,comment:1,transfer:2,transfer_to_vesting:3,withdraw_vesting:4,limit_order_create:5,limit_order_cancel:6,feed_publish:7,convert:8,account_create:9,account_update:10,witness_update:11,account_witness_vote:12,account_witness_proxy:13,pow:14,custom:15,report_over_production:16,delete_comment:17,custom_json:18,comment_options:19,set_withdraw_vesting_route:20,limit_order_create2:21,claim_account:22,create_claimed_account:23,request_account_recovery:24,recover_account:25,change_recovery_account:26,escrow_transfer:27,escrow_dispute:28,escrow_release:29,pow2:30,escrow_approve:31,transfer_to_savings:32,transfer_from_savings:33,cancel_transfer_from_savings:34,custom_binary:35,decline_voting_rights:36,reset_account:37,set_reset_account:38,claim_reward_balance:39,delegate_vesting_shares:40,account_create_with_delegation:41,witness_set_properties:42,account_update2:43,create_proposal:44,update_proposal_votes:45,remove_proposal:46,update_proposal:47,collateralized_convert:48,recurrent_transfer:49,fill_convert_request:50,author_reward:51,curation_reward:52,comment_reward:53,liquidity_reward:54,interest:55,fill_vesting_withdraw:56,fill_order:57,shutdown_witness:58,fill_transfer_from_savings:59,hardfork:60,comment_payout_update:61,return_vesting_delegation:62,comment_benefactor_reward:63,producer_reward:64,clear_null_account_balance:65,proposal_pay:66,sps_fund:67,hardfork_hive:68,hardfork_hive_restore:69,delayed_voting:70,consolidate_treasury_balance:71,effective_comment_vote:72,ineffective_delete_comment:73,sps_convert:74,expired_account_notification:75,changed_recovery_account:76,transfer_to_vesting_completed:77,pow_reward:78,vesting_shares_split:79,account_created:80,fill_collateralized_convert_request:81,system_warning:82,fill_recurrent_transfer:83,failed_recurrent_transfer:84,limit_order_cancelled:85,producer_missed:86,proposal_fee:87,collateralized_convert_immediate_conversion:88,escrow_approved:89,escrow_rejected:90,proxy_cleared:91,declined_voting_rights:92},es=e=>e.reduce(ts,[BigInt(0),BigInt(0)]).map(t=>t!==BigInt(0)?t.toString():null),ts=([e,t],r)=>r<64?[e|BigInt(1)<<BigInt(r),t]:[e,t|BigInt(1)<<BigInt(r-64)],rs=(e,t)=>{let r={extensions:[],owner:e,props:[]};for(let n of Object.keys(t)){if(t[n]===void 0)continue;let o;switch(n){case "key":case "new_signing_key":o=ne.PublicKey;break;case "account_subsidy_budget":case "account_subsidy_decay":case "maximum_block_size":o=ne.UInt32;break;case "hbd_interest_rate":o=ne.UInt16;break;case "url":o=ne.String;break;case "hbd_exchange_rate":o=ne.Price;break;case "account_creation_fee":o=ne.Asset;break;default:throw new Error(`Unknown witness prop: ${n}`)}r.props.push([n,ns(o,t[n])]);}return r.props.sort((n,o)=>n[0].localeCompare(o[0])),["witness_set_properties",r]},ns=(e,t)=>{let r=new F(F.DEFAULT_CAPACITY,F.LITTLE_ENDIAN);return e(r,t),r.flip(),bytesToHex(new Uint8Array(r.toBuffer()))};function ff(e){let t;if(typeof e=="string"){let r=[];for(let n=0;n<e.length;n++){let o=e.charCodeAt(n);if(o<128)r.push(o);else if(o<2048)r.push(192|o>>6,128|o&63);else if(o>=55296&&o<=56319&&n+1<e.length){let i=e.charCodeAt(++n);o=65536+((o&1023)<<10)+(i&1023),r.push(240|o>>18,128|o>>12&63,128|o>>6&63,128|o&63);}else r.push(224|o>>12,128|o>>6&63,128|o&63);}t=new Uint8Array(r);}else t=e;return sha256(t)}function xn(e){try{return M.fromString(e),!0}catch{return false}}async function W(e,t){let r=new Oe;for(let n of e)await r.addOperation(n[0],n[1]);return r.sign(t),Fe("condenser_api.broadcast_transaction_synchronous",[r.transaction])}async function kn(e,t){let r=new Oe;for(let n of e)await r.addOperation(n[0],n[1]);return r.sign(t),r.broadcast(false)}var is=432e3;function En(e,t){let r=Date.now()/1e3-t.last_update_time,n=Number(t.current_mana)+r*e/is,o=Math.round(n/e*1e4);return !isFinite(o)||o<0?o=0:o>1e4&&(o=1e4),{current_mana:n,max_mana:e,percentage:o}}function ss(e){let t=parseFloat(e.vesting_shares),r=parseFloat(e.delegated_vesting_shares),n=parseFloat(e.received_vesting_shares),o=parseFloat(e.vesting_withdraw_rate),i=(Number(e.to_withdraw)-Number(e.withdrawn))/1e6,s=Math.min(o,i);return t-s-r+n}function Lt(e){let t=ss(e)*1e6;return En(t,e.voting_manabar)}function dt(e){return En(Number(e.max_rc),e.rc_manabar)}var Sn=(u=>(u.COMMON="common",u.INFO="info",u.INSUFFICIENT_RESOURCE_CREDITS="insufficient_resource_credits",u.MISSING_AUTHORITY="missing_authority",u.TOKEN_EXPIRED="token_expired",u.NETWORK="network",u.TIMEOUT="timeout",u.VALIDATION="validation",u))(Sn||{});function Ke(e){let t=e?.error_description?String(e.error_description):"",r=e?.message?String(e.message):"",n=e?.error?String(e.error):"",o=t||r||String(e||""),i=a=>!!(n&&a.test(n)||t&&a.test(t)||r&&a.test(r)||o&&a.test(o));if(i(/please wait to transact/i)||i(/insufficient rc/i)||i(/rc mana|rc account|resource credits/i))return {message:"Insufficient Resource Credits. Please wait or power up.",type:"insufficient_resource_credits",originalError:e};if(i(/you may only post once every/i))return {message:"Please wait before posting again (minimum 3 second interval between comments).",type:"common",originalError:e};if(i(/your current vote on this comment is identical/i))return {message:"You have already voted with the same weight.",type:"info",originalError:e};if(i(/must claim something/i))return {message:"You must claim rewards before performing this action.",type:"info",originalError:e};if(i(/cannot claim that much vests/i))return {message:"Cannot claim that amount. Please check your pending rewards.",type:"info",originalError:e};if(i(/cannot delete a comment with net positive/i))return {message:"Cannot delete a comment with positive votes.",type:"info",originalError:e};if(i(/children == 0/i))return {message:"Cannot delete a comment with replies.",type:"common",originalError:e};if(i(/comment_cashout/i))return {message:"Cannot modify a comment that has already been paid out.",type:"common",originalError:e};if(i(/votes evaluating for comment that is paid out is forbidden/i))return {message:"Cannot vote on posts that have already been paid out.",type:"common",originalError:e};if(i(/no (active|owner|posting|memo) key available/i))return {message:"Key not available. Please provide your key to sign this operation.",type:"missing_authority",originalError:e};if(i(/missing (required )?active authority/i))return {message:"Missing active authority. This operation requires your active key.",type:"missing_authority",originalError:e};if(i(/missing (required )?owner authority/i))return {message:"Missing owner authority. This operation requires your owner key.",type:"missing_authority",originalError:e};if(i(/missing (required )?posting authority/i))return {message:"Missing posting authority. Please check your login method.",type:"missing_authority",originalError:e};if(n==="invalid_grant"||n==="unauthorized_access"||i(/token expired/i)||i(/invalid token/i)||i(/\bunauthorized\b/i)||i(/\bforbidden\b/i))return {message:"Authentication token expired. Please log in again.",type:"token_expired",originalError:e};if(i(/has already reblogged/i)||i(/already reblogged this post/i))return {message:"You have already reblogged this post.",type:"info",originalError:e};if(i(/duplicate transaction/i))return {message:"This transaction has already been processed.",type:"info",originalError:e};if(i(/econnrefused/i)||i(/connection refused/i)||i(/failed to fetch/i)||i(/\bnetwork[-\s]?(request|error|timeout|unreachable|down|failed)\b/i))return {message:"Network error. Please check your connection and try again.",type:"network",originalError:e};if(i(/timeout/i)||i(/timed out/i))return {message:"Request timed out. Please try again.",type:"timeout",originalError:e};if(i(/account.*does not exist/i)||i(/account not found/i))return {message:"Account not found. Please check the username.",type:"validation",originalError:e};if(i(/invalid memo key/i))return {message:"Invalid memo key. Cannot encrypt message.",type:"validation",originalError:e};if(i(/(?:insufficient.*(?:funds|balance)|(?:funds|balance).*insufficient)/i))return {message:"Insufficient funds for this transaction.",type:"validation",originalError:e};if(i(/\b(invalid|validation)\b/i))return {message:(e?.message||o).substring(0,150)||"Validation error occurred",type:"validation",originalError:e};if(e?.error_description&&typeof e.error_description=="string")return {message:e.error_description.substring(0,150),type:"common",originalError:e};if(e?.message&&typeof e.message=="string")return {message:e.message.substring(0,150),type:"common",originalError:e};let s;return typeof e=="object"&&e!==null?e.error_description?s=String(e.error_description):e.code?s=`Error code: ${e.code}`:o&&o!=="[object Object]"?s=o.substring(0,150):s="Unknown error occurred":s=o.substring(0,150)||"Unknown error occurred",{message:s,type:"common",originalError:e}}function as(e){let t=Ke(e);return [t.message,t.type]}function ue(e){let{type:t}=Ke(e);return t==="missing_authority"||t==="token_expired"}function cs(e){let{type:t}=Ke(e);return t==="insufficient_resource_credits"}function us(e){let{type:t}=Ke(e);return t==="info"}function ps(e){let{type:t}=Ke(e);return t==="network"||t==="timeout"}async function pe(e,t,r,n,o="posting",i,s,a="async"){let u=n?.adapter;switch(e){case "key":{if(!u)throw new Error("No adapter provided for key-based auth");let p=i;if(p===void 0)switch(o){case "owner":if(u.getOwnerKey)p=await u.getOwnerKey(t);else throw new Error("Owner key not supported by adapter. Owner operations (like account recovery) require master password login or manual key entry.");break;case "active":u.getActiveKey&&(p=await u.getActiveKey(t));break;case "memo":if(u.getMemoKey)p=await u.getMemoKey(t);else throw new Error("Memo key not supported by adapter. Use memo encryption methods instead.");break;case "posting":default:p=await u.getPostingKey(t);break}if(!p)throw new Error(`No ${o} key available for ${t}`);let l=M.fromString(p);return a==="async"?await kn(r,l):await W(r,l)}case "hiveauth":{if(!u?.broadcastWithHiveAuth)throw new Error("HiveAuth not supported by adapter");return await u.broadcastWithHiveAuth(t,r,o)}case "hivesigner":{if(!u)throw new Error("No adapter provided for HiveSigner auth");if(o!=="posting"){if(u.broadcastWithHiveSigner)return await u.broadcastWithHiveSigner(t,r,o);throw new Error(`HiveSigner access token cannot sign ${o} operations. No platform broadcast available.`)}let p=s!==void 0?s:await u.getAccessToken(t);if(p)try{return (await new Cn.Client({accessToken:p}).broadcast(r)).result}catch(l){if(u.broadcastWithHiveSigner&&ue(l))return await u.broadcastWithHiveSigner(t,r,o);throw l}if(u.broadcastWithHiveSigner)return await u.broadcastWithHiveSigner(t,r,o);throw new Error(`No access token available for ${t}`)}case "keychain":{if(!u?.broadcastWithKeychain)throw new Error("Keychain not supported by adapter");return await u.broadcastWithKeychain(t,r,o)}case "custom":{if(!n?.broadcast)throw new Error("No custom broadcast function provided");return await n.broadcast(r,o)}default:throw new Error(`Unknown auth method: ${e}`)}}async function ds(e,t,r,n="posting",o="async"){let i=r?.adapter;if(i?.getLoginType){let l=await i.getLoginType(e,n);if(l){let m=i.hasPostingAuthorization?await i.hasPostingAuthorization(e):false;if(n==="posting"&&m&&l==="key")try{return await pe("hivesigner",e,t,r,n,void 0,void 0,o)}catch(d){if(!ue(d))throw d;console.warn("[SDK] HiveSigner token auth failed, falling back to key:",d);}if(n==="posting"&&m&&l==="keychain")try{return await pe("hivesigner",e,t,r,n,void 0,void 0,o)}catch(d){if(!ue(d))throw d;console.warn("[SDK] HiveSigner token auth failed, falling back to keychain/snap:",d);}if(n==="posting"&&m&&l==="hiveauth")try{return await pe("hivesigner",e,t,r,n,void 0,void 0,o)}catch(d){if(!ue(d))throw d;console.warn("[SDK] HiveSigner token auth failed, falling back to HiveAuth:",d);}try{return await pe(l,e,t,r,n,void 0,void 0,o)}catch(d){if(ue(d)&&i.showAuthUpgradeUI&&(n==="posting"||n==="active")){let y=t.length>0?t[0][0]:"unknown",v=await i.showAuthUpgradeUI(n,y);if(!v)throw new Error(`Operation requires ${n} authority. User declined alternate auth.`);return await pe(v,e,t,r,n,void 0,void 0,o)}throw d}}if(n==="posting")try{return await pe("hivesigner",e,t,r,n,void 0,void 0,o)}catch(m){if(ue(m)&&i.showAuthUpgradeUI){let d=t.length>0?t[0][0]:"unknown",y=await i.showAuthUpgradeUI(n,d);if(!y)throw new Error(`No login type available for ${e}. Please log in again.`);return await pe(y,e,t,r,n,void 0,void 0,o)}throw m}else if(n==="active"&&i.showAuthUpgradeUI){let m=t.length>0?t[0][0]:"unknown",d=await i.showAuthUpgradeUI(n,m);if(!d)throw new Error(`Operation requires ${n} authority. User declined alternate auth.`);return await pe(d,e,t,r,n,void 0,void 0,o)}}let s=r?.fallbackChain??["key","hiveauth","hivesigner","keychain","custom"],a=new Map;for(let l of s)try{let m=!1,d="",y,v;switch(l){case "key":if(!i)m=!0,d="No adapter provided";else {let A;switch(n){case "owner":i.getOwnerKey&&(A=await i.getOwnerKey(e));break;case "active":i.getActiveKey&&(A=await i.getActiveKey(e));break;case "memo":i.getMemoKey&&(A=await i.getMemoKey(e));break;case "posting":default:A=await i.getPostingKey(e);break}A?y=A:(m=!0,d=`No ${n} key available`);}break;case "hiveauth":i?.broadcastWithHiveAuth||(m=!0,d="HiveAuth not supported by adapter");break;case "hivesigner":if(!i)m=!0,d="No adapter provided";else {let A=await i.getAccessToken(e);A&&(v=A);}break;case "keychain":i?.broadcastWithKeychain||(m=!0,d="Keychain not supported by adapter");break;case "custom":r?.broadcast||(m=!0,d="No custom broadcast function provided");break}if(m){a.set(l,new Error(`Skipped: ${d}`));continue}return await pe(l,e,t,r,n,y,v,o)}catch(m){if(a.set(l,m),!ue(m))throw m}if(!Array.from(a.values()).some(l=>!l.message.startsWith("Skipped:"))){let l=Array.from(a.entries()).map(([m,d])=>`${m}: ${d.message}`).join(", ");throw new Error(`[SDK][Broadcast] No auth methods attempted for ${e}. ${l}`)}let p=Array.from(a.entries()).map(([l,m])=>`${l}: ${m.message}`).join(", ");throw new Error(`[SDK][Broadcast] All auth methods failed for ${e}. Errors: ${p}`)}function b(e=[],t,r,n=()=>{},o,i="posting",s){let a=s?.broadcastMode??"async";return useMutation({onSuccess:n,onMutate:s?.onMutate,onError:s?.onError,onSettled:s?.onSettled,mutationKey:[...e,t],mutationFn:async u=>{if(!t)throw new Error("[Core][Broadcast] Attempted to call broadcast API with anon user");let p=r(u);if(o?.enableFallback!==false&&o?.adapter)return ds(t,p,o,i,a);if(o?.broadcast)return o.broadcast(p,i);let l=o?.postingKey;if(l){if(i!=="posting")throw new Error(`[SDK][Broadcast] Legacy auth only supports posting authority, but '${i}' was requested. Use AuthContextV2 with an adapter for ${i} operations.`);let d=M.fromString(l);return W(p,d)}let m=o?.accessToken;if(m)return (await new Cn.Client({accessToken:m}).broadcast(p)).result;throw new Error("[SDK][Broadcast] \u2013 cannot broadcast w/o posting key or token")}})}async function Tn(e,t,r,n){if(!e)throw new Error("[Core][Broadcast] Attempted to call broadcast API with anon user");let o={id:t,required_auths:[],required_posting_auths:[e],json:JSON.stringify(r)};if(n?.broadcast)return n.broadcast([["custom_json",o]],"posting");let i=n?.postingKey;if(i){let a=M.fromString(i);return W([["custom_json",o]],a)}let s=n?.accessToken;if(s)return (await new Cn.Client({accessToken:s}).customJson([],[e],t,JSON.stringify(r))).result;throw new Error("[SDK][Broadcast] \u2013 cannot broadcast w/o posting key or token")}var Cf=4e3;function P(e,t,r){if(e?.invalidateQueries){if(t==="sync")return e.invalidateQueries(r);setTimeout(()=>e.invalidateQueries?.(r),4e3);}}function le(e,t){let r=AbortSignal.timeout(e);if(!t)return r;if(typeof AbortSignal.any=="function")return AbortSignal.any([t,r]);let n=new AbortController,o=()=>{let i=t.aborted?t.reason:r.reason;n.abort(i),t.removeEventListener("abort",o),r.removeEventListener("abort",o);};return t.aborted?n.abort(t.reason):r.aborted?n.abort(r.reason):(t.addEventListener("abort",o,{once:true}),r.addEventListener("abort",o,{once:true})),n.signal}var xe=(()=>{try{return process.env?.NODE_ENV==="development"}catch{return false}})(),gs=()=>{try{return process.env?.VITE_HELIUS_API_KEY}catch{return}},de=1e4,f={privateApiHost:"https://ecency.com",imageHost:"https://i.ecency.com",get hiveNodes(){return C.nodes},heliusApiKey:gs(),queryClient:new QueryClient,pollsApiHost:"https://poll.ecency.com",plausibleHost:"https://pl.ecency.com",spkNode:"https://spk.good-karma.xyz",dmcaAccounts:[],dmcaTags:[],dmcaPatterns:[],dmcaTagRegexes:[],dmcaPatternRegexes:[],_dmcaInitialized:false},B;(y=>{function e(v){f.queryClient=v;}y.setQueryClient=e;function t(v){f.privateApiHost=v;}y.setPrivateApiHost=t;function r(){return f.privateApiHost?f.privateApiHost:typeof window<"u"&&window.location?.origin?window.location.origin:"https://ecency.com"}y.getValidatedBaseUrl=r;function n(v){f.pollsApiHost=v;}y.setPollsApiHost=n;function o(v){f.imageHost=v;}y.setImageHost=o;function i(v){It(v);}y.setHiveNodes=i;function s(v){Dt(v);}y.setRestNodes=s;function a(v){Bt(v);}y.setRestNodesByApi=a;function u(v){Nt(v);}y.setUserAgent=u;function p(v){if(/(\([^)]*[*+{][^)]*\))[*+{]/.test(v))return {safe:false,reason:"nested quantifiers detected"};if(/\([^|)]*\|[^)]*\)[*+{]/.test(v))return {safe:false,reason:"alternation with quantifier (potential overlap)"};if(/\([^)]*[*+][^)]*\)[*+]/.test(v))return {safe:false,reason:"repeated quantifiers (catastrophic backtracking risk)"};if(/\.\*\.\*/.test(v)||/\.\+\.\+/.test(v))return {safe:false,reason:"multiple greedy quantifiers on wildcards"};let A=/\.?\{(\d+),(\d+)\}/g,S;for(;(S=A.exec(v))!==null;){let[,R,T]=S;if(parseInt(T,10)-parseInt(R,10)>1e3)return {safe:false,reason:`excessive range: {${R},${T}}`}}return {safe:true}}function l(v){let A=["a".repeat(50)+"x","ab".repeat(50)+"x","x".repeat(100),"aaa".repeat(30)+"bbb".repeat(30)+"x"],S=5;for(let R of A){let T=Date.now();try{v.test(R);let V=Date.now()-T;if(V>S)return {safe:!1,reason:`runtime test exceeded ${S}ms (took ${V}ms on input length ${R.length})`}}catch(V){return {safe:false,reason:`runtime test threw error: ${V}`}}}return {safe:true}}function m(v,A=200){try{if(!v)return xe&&console.warn("[SDK] DMCA pattern rejected: empty pattern"),null;if(v.length>A)return xe&&console.warn(`[SDK] DMCA pattern rejected: length ${v.length} exceeds max ${A} - pattern: ${v.substring(0,50)}...`),null;let S=p(v);if(!S.safe)return xe&&console.warn(`[SDK] DMCA pattern rejected: static analysis failed (${S.reason}) - pattern: ${v.substring(0,50)}...`),null;let R;try{R=new RegExp(v);}catch(V){return xe&&console.warn(`[SDK] DMCA pattern rejected: compilation failed - pattern: ${v.substring(0,50)}...`,V),null}let T=l(R);return T.safe?R:(xe&&console.warn(`[SDK] DMCA pattern rejected: runtime test failed (${T.reason}) - pattern: ${v.substring(0,50)}...`),null)}catch(S){return xe&&console.warn(`[SDK] DMCA pattern rejected: unexpected error - pattern: ${v.substring(0,50)}...`,S),null}}function d(v={}){let A=V=>Array.isArray(V)?V.filter(He=>typeof He=="string"):[],S=v||{},R={accounts:A(S.accounts),tags:A(S.tags),patterns:A(S.posts)};f.dmcaAccounts=R.accounts,f.dmcaTags=R.tags,f.dmcaPatterns=R.patterns,f.dmcaTagRegexes=R.tags.map(V=>m(V)).filter(V=>V!==null),f.dmcaPatternRegexes=[];let T=R.tags.length-f.dmcaTagRegexes.length;!f._dmcaInitialized&&xe&&(console.log("[SDK] DMCA configuration loaded:"),console.log(` - Accounts: ${R.accounts.length}`),console.log(` - Tag patterns: ${f.dmcaTagRegexes.length}/${R.tags.length} compiled (${T} rejected)`),console.log(` - Post patterns: ${R.patterns.length} (using exact string matching)`),T>0&&console.warn(`[SDK] ${T} DMCA tag patterns were rejected due to security validation. Check warnings above for details.`)),f._dmcaInitialized=true;}y.setDmcaLists=d;})(B||={});function Hf(){return new QueryClient({defaultOptions:{queries:{refetchOnWindowFocus:false,refetchOnMount:false}}})}var h=()=>f.queryClient,ws;(s=>{function e(a){return h().getQueryData(a)}s.getQueryData=e;function t(a){return h().getQueryData(a)}s.getInfiniteQueryData=t;async function r(a){return await h().prefetchQuery(a),e(a.queryKey)}s.prefetchQuery=r;async function n(a){return await h().prefetchInfiniteQuery(a),t(a.queryKey)}s.prefetchInfiniteQuery=n;function o(a){return {prefetch:()=>r(a),getData:()=>e(a.queryKey),useClientQuery:()=>useQuery(a),fetchAndGet:()=>h().fetchQuery(a)}}s.generateClientServerQuery=o;function i(a){return {prefetch:()=>n(a),getData:()=>t(a.queryKey),useClientQuery:()=>useInfiniteQuery(a),fetchAndGet:()=>h().fetchInfiniteQuery(a)}}s.generateClientServerInfiniteQuery=i;})(ws||={});function Vf(e){return btoa(JSON.stringify(e))}function jf(e){let t=atob(e);if(t[0]==="{")return JSON.parse(t)}var Rn=(o=>(o.HIVE="HIVE",o.HBD="HBD",o.VESTS="VESTS",o.SPK="SPK",o))(Rn||{}),ft=(e=>(e["@@000000021"]="HIVE",e["@@000000013"]="HBD",e["@@000000037"]="VESTS",e))(ft||{});function x(e){if(typeof e=="string"){let t=e.split(" ");return {amount:parseFloat(t[0]),symbol:Rn[t[1]]}}else return {amount:parseFloat(e.amount.toString())/Math.pow(10,e.precision),symbol:ft[e.nai]}}var Wt;function _(){if(!Wt){if(typeof globalThis.fetch!="function")throw new Error("[Ecency][SDK] - global fetch is not available");Wt=globalThis.fetch.bind(globalThis);}return Wt}function qn(e){return typeof e=="string"?/^hive-\d+$/.test(e):false}function bs(e){return e&&typeof e=="object"&&"data"in e&&"pagination"in e&&Array.isArray(e.data)}function X(e,t){return bs(e)?e:{data:Array.isArray(e)?e:[],pagination:{total:Array.isArray(e)?e.length:0,limit:t,offset:0,has_next:false}}}function Ie(e,t){return e/1e6*t}function Fn(e){return e===void 0?true:parseInt(e.split("-")[0],10)<1980}var Kn=60*1e3;function fe(){return queryOptions({queryKey:c.core.dynamicProps(),refetchInterval:Kn,staleTime:Kn,queryFn:async({signal:e})=>{let[t,r,n,o,i]=await Promise.all([g("condenser_api.get_dynamic_global_properties",[],void 0,void 0,e),g("condenser_api.get_feed_history",[],void 0,void 0,e),g("condenser_api.get_chain_properties",[],void 0,void 0,e),g("condenser_api.get_reward_fund",["post"],void 0,void 0,e),g("database_api.get_hardfork_properties",{},void 0,void 0,e).catch(()=>({current_hardfork_version:"1.28.0",last_hardfork:28}))]),s=x(t.total_vesting_shares).amount,a=x(t.total_vesting_fund_hive).amount,u=0;Number.isFinite(s)&&s!==0&&Number.isFinite(a)&&(u=a/s*1e6);let p=x(r.current_median_history.base).amount,l=x(r.current_median_history.quote).amount,m=parseFloat(o.recent_claims),d=x(o.reward_balance).amount,y=Number(t.vote_power_reserve_rate??0),v=o.author_reward_curve??"linear",A=Number(o.content_constant??0),S=String(i.current_hardfork_version??"0.0.0"),R=Number(i.last_hardfork??0),T=t.hbd_print_rate,V=t.hbd_interest_rate,He=t.head_block_number,qt=a,Ft=s,tt=x(t.virtual_supply).amount,N=t.vesting_reward_percent||0,be=n.account_creation_fee;return {hivePerMVests:u,base:p,quote:l,fundRecentClaims:m,fundRewardBalance:d,votePowerReserveRate:y,authorRewardCurve:v,contentConstant:A,currentHardforkVersion:S,lastHardfork:R,hbdPrintRate:T,hbdInterestRate:V,headBlock:He,totalVestingFund:qt,totalVestingShares:Ft,virtualSupply:tt,vestingRewardPercent:N,accountCreationFee:be,raw:{globalDynamic:t,feedHistory:r,chainProps:n,rewardFund:o,hardforkProps:i}}}})}function sm(e="post"){return queryOptions({queryKey:c.core.rewardFund(e),queryFn:()=>g("condenser_api.get_reward_fund",[e])})}function ke(...e){let t=e.length;for(;t>0&&e[t-1]===void 0;)t--;return e.slice(0,t)}var c={posts:{entry:e=>["posts","entry",e],postHeader:(e,t)=>["posts","post-header",e,t],content:(e,t)=>["posts","content",e,t],contentReplies:(e,t)=>["posts","content-replies",e,t],accountPosts:(e,t,r,n)=>["posts","account-posts",e,t,r,n],accountPostsPage:(e,t,r,n,o,i)=>["posts","account-posts-page",e,t,r,n,o,i],userPostVote:(e,t,r)=>["posts","user-vote",e,t,r],reblogs:(e,t)=>["posts","reblogs",e,t],entryActiveVotes:(e,t)=>["posts","entry-active-votes",e,t],rebloggedBy:(e,t)=>["posts","reblogged-by",e,t],tips:(e,t)=>["posts","tips",e,t],normalize:(e,t)=>["posts","normalize",e,t],drafts:e=>["posts","drafts",e],draftsInfinite:(e,t)=>ke("posts","drafts","infinite",e,t),schedules:e=>["posts","schedules",e],schedulesInfinite:(e,t)=>ke("posts","schedules","infinite",e,t),fragments:e=>["posts","fragments",e],fragmentsInfinite:(e,t)=>ke("posts","fragments","infinite",e,t),images:e=>["posts","images",e],galleryImages:e=>["posts","gallery-images",e],imagesInfinite:(e,t)=>ke("posts","images","infinite",e,t),promoted:e=>["posts","promoted",e],_promotedPrefix:["posts","promoted"],accountPostsBlogPrefix:e=>["posts","account-posts",e,"blog"],postsRanked:(e,t,r,n)=>["posts","posts-ranked",e,t,r,n],postsRankedPage:(e,t,r,n,o,i)=>["posts","posts-ranked-page",e,t,r,n,o,i],discussions:(e,t,r,n)=>["posts","discussions",e,t,r,n],discussion:(e,t,r)=>["posts","discussion",e,t,r],deletedEntry:e=>["posts","deleted-entry",e],commentHistory:(e,t,r)=>["posts","comment-history",e,t,r],trendingTags:()=>["posts","trending-tags"],trendingTagsWithStats:e=>["posts","trending-tags","stats",e],wavesFeed:(e={})=>["posts","waves","feed",e.tag??"",e.following??"",e.author??"",e.observer??"",e.limit??0,[...e.containers??[]].sort().join(",")],shortsFeed:(e={})=>["posts","waves","shorts",e.tag??"",e.author??"",e.observer??"",e.limit??0,[...e.containers??[]].sort().join(",")],wavesByHost:e=>["posts","waves","by-host",e],wavesByTag:(e,t)=>["posts","waves","by-tag",e,t],wavesFollowing:(e,t)=>["posts","waves","following",e,t],wavesTrendingTags:(e,t)=>["posts","waves","trending-tags",e,t],wavesByAccount:(e,t)=>["posts","waves","by-account",e,t],wavesTrendingAuthors:e=>["posts","waves","trending-authors",e],_prefix:["posts"]},accounts:{full:e=>["get-account-full",e],list:(...e)=>["accounts","list",...e],friends:(e,t,r,n)=>["accounts","friends",e,t,r,n],searchFriends:(e,t,r)=>["accounts","friends","search",e,t,r],subscriptions:e=>["accounts","subscriptions",e],followCount:e=>["accounts","follow-count",e],recoveries:e=>["accounts","recoveries",e],pendingRecovery:e=>["accounts","recoveries",e,"pending-request"],checkWalletPending:(e,t)=>["accounts","check-wallet-pending",e,t],mutedUsers:e=>["accounts","muted-users",e],following:(e,t,r,n)=>["accounts","following",e,t,r,n],followers:(e,t,r,n)=>["accounts","followers",e,t,r,n],search:(e,t)=>["accounts","search",e,t],profiles:(e,t)=>["accounts","profiles",e,t],lookup:(e,t)=>["accounts","lookup",e,t],transactions:(e,t,r)=>["accounts","transactions",e,t,r],favorites:e=>["accounts","favorites",e],favoritesInfinite:(e,t)=>ke("accounts","favorites","infinite",e,t),checkFavorite:(e,t)=>["accounts","favorites","check",e,t],relations:(e,t)=>["accounts","relations",e,t],bots:()=>["accounts","bots"],voteHistory:(e,t)=>["accounts","vote-history",e,t],reputations:(e,t)=>["accounts","reputations",e,t],bookmarks:e=>["accounts","bookmarks",e],bookmarksInfinite:(e,t)=>ke("accounts","bookmarks","infinite",e,t),referrals:e=>["accounts","referrals",e],referralsStats:e=>["accounts","referrals-stats",e],_prefix:["accounts"]},notifications:{announcements:()=>["notifications","announcements"],spotlights:()=>["notifications","spotlights"],list:(e,t)=>["notifications",e,t],unreadCount:e=>["notifications","unread",e],settings:e=>["notifications","settings",e],_prefix:["notifications"]},core:{rewardFund:e=>["core","reward-fund",e],dynamicProps:()=>["core","dynamic-props"],chainProperties:()=>["core","chain-properties"],_prefix:["core"]},communities:{single:(e,t)=>["community","single",e,t],singlePrefix:e=>["community","single",e],context:(e,t)=>["community","context",e,t],rewarded:()=>["communities","rewarded"],list:(e,t,r)=>["communities","list",e,t,r],subscribers:e=>["communities","subscribers",e],accountNotifications:(e,t)=>["communities","account-notifications",e,t]},proposals:{list:()=>["proposals","list"],proposal:e=>["proposals","proposal",e],votes:(e,t,r)=>["proposals","votes",e,t,r],votesPrefix:e=>["proposals","votes",e],votesByUser:e=>["proposals","votes","by-user",e]},search:{topics:(e,t)=>["search","topics",e,t],path:e=>["search","path",e],account:(e,t)=>["search","account",e,t],results:(e,t,r,n,o,i)=>["search",e,t,typeof r=="string"?r==="1"||r==="true":r,n,o,i],controversialRising:(e,t)=>["search","controversial-rising",e,t],similarEntries:(e,t,r)=>r?["search","similar-entries",e,t,r]:["search","similar-entries",e,t],api:(e,t,r,n,o,i)=>ke("search","api",e,t,r,n,o,i)},witnesses:{list:e=>["witnesses","list",e],votes:e=>["witnesses","votes",e],proxy:()=>["witnesses","proxy"],voters:(e,t,r,n,o)=>["witnesses","voters",e,t,r,n,o],voterCount:e=>["witnesses","voter-count",e]},wallet:{outgoingRcDelegations:(e,t)=>["wallet","outgoing-rc-delegations",e,t],vestingDelegations:(e,t)=>["wallet","vesting-delegations",e,t],withdrawRoutes:e=>["wallet","withdraw-routes",e],incomingRc:e=>["wallet","incoming-rc",e],conversionRequests:e=>["wallet","conversion-requests",e],receivedVestingShares:e=>["wallet","received-vesting-shares",e],savingsWithdraw:e=>["wallet","savings-withdraw",e],openOrders:e=>["wallet","open-orders",e],collateralizedConversionRequests:e=>["wallet","collateralized-conversion-requests",e],recurrentTransfers:e=>["wallet","recurrent-transfers",e],balanceHistory:(e,t,r)=>["wallet","balance-history",e,t,r],aggregatedHistory:(e,t,r)=>r===void 0?["wallet","aggregated-history",e,t]:["wallet","aggregated-history",e,t,r],portfolio:(e,t,r)=>["wallet","portfolio","v2",e,t,r]},assets:{hiveGeneralInfo:e=>["assets","hive","general-info",e],hiveTransactions:(e,t,r)=>["assets","hive","transactions",e,t,r],hiveWithdrawalRoutes:e=>["assets","hive","withdrawal-routes",e],hiveMetrics:e=>["assets","hive","metrics",e],hbdGeneralInfo:e=>["assets","hbd","general-info",e],hbdTransactions:(e,t,r)=>["assets","hbd","transactions",e,t,r],hivePowerGeneralInfo:e=>["assets","hive-power","general-info",e],hivePowerDelegates:e=>["assets","hive-power","delegates",e],hivePowerDelegatings:e=>["assets","hive-power","delegatings",e],hivePowerTransactions:(e,t,r)=>["assets","hive-power","transactions",e,t,r],pointsGeneralInfo:e=>["assets","points","general-info",e],pointsTransactions:(e,t)=>["assets","points","transactions",e,t],ecencyAssetInfo:(e,t,r)=>["ecency-wallets","asset-info",e,t,r]},market:{statistics:()=>["market","statistics"],orderBook:e=>["market","order-book",e],history:(e,t,r)=>["market","history",e,t,r],feedHistory:()=>["market","feed-history"],hiveHbdStats:()=>["market","hive-hbd-stats"],data:(e,t,r,n)=>["market","data",e,t,r,n],tradeHistory:(e,t,r)=>["market","trade-history",e,t,r],currentMedianHistoryPrice:()=>["market","current-median-history-price"]},analytics:{discoverCuration:e=>["analytics","discover-curation",e],pageStats:(e,t,r,n)=>["analytics","page-stats",e,t,r,n],discoverLeaderboard:e=>["analytics","discover-leaderboard",e]},promotions:{promotePrice:()=>["promotions","promote-price"],boostPlusPrices:()=>["promotions","boost-plus-prices"],boostPlusAccounts:e=>["promotions","boost-plus-accounts",e]},resourceCredits:{account:e=>["resource-credits","account",e],stats:()=>["resource-credits","stats"]},points:{points:(e,t)=>["points",e,t],_prefix:e=>["points",e]},polls:{details:(e,t)=>["polls","details",e,t],vote:(e,t)=>e&&t?["polls","vote",e,t]:["polls","vote"],_prefix:["polls"]},operations:{chainProperties:()=>["operations","chain-properties"]},games:{statusCheck:(e,t)=>["games","status-check",e,t]},quests:{status:e=>["quests","status",e]},badActors:{list:()=>["bad-actors","list"],_prefix:["bad-actors"]},ai:{prices:()=>["ai","prices"],assistPrices:e=>["ai","assist-prices",e],_prefix:["ai"]}};function lm(e){return queryOptions({queryKey:c.ai.prices(),queryFn:async()=>{let r=await _()(f.privateApiHost+"/private-api/ai-generate-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!r.ok)throw new Error(`Failed to fetch AI generation prices: ${r.status}`);return await r.json()},staleTime:3e5,enabled:!!e})}function gm(e,t){return queryOptions({queryKey:c.ai.assistPrices(e),queryFn:async()=>{let n=await _()(f.privateApiHost+"/private-api/ai-assist-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch AI assist prices: ${n.status}`);return await n.json()},staleTime:6e4,enabled:!!t})}function wm(e,t){return useMutation({mutationKey:["ai","generate-image"],mutationFn:async r=>{if(!e)throw new Error("[SDK][AI][GenerateImage] \u2013 username wasn't provided");if(!t)throw new Error("[SDK][AI][GenerateImage] \u2013 access token wasn't found");let o=await _()(f.privateApiHost+"/private-api/ai-generate-image",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,us:e,prompt:r.prompt,aspect_ratio:r.aspect_ratio??"1:1",power:r.power??1})});if(!o.ok){let i=await o.text(),s={};try{s=JSON.parse(i);}catch{}let a=new Error(`[SDK][AI][GenerateImage] \u2013 failed with status ${o.status}${i?`: ${i}`:""}`);throw a.status=o.status,a.data=s,a}return await o.json()},onSuccess:()=>{e&&h().invalidateQueries({queryKey:c.points._prefix(e)});}})}function Es(){if(typeof crypto<"u"&&typeof crypto.randomUUID=="function")return crypto.randomUUID();let e=new Uint8Array(16);if(typeof crypto<"u"&&typeof crypto.getRandomValues=="function")crypto.getRandomValues(e);else for(let t=0;t<e.length;t++)e[t]=Math.floor(Math.random()*256);return Array.from(e).map(t=>t.toString(16).padStart(2,"0")).join("")}function Pm(e,t){return useMutation({mutationKey:["ai","assist"],mutationFn:async r=>{if(!e)throw new Error("[SDK][AI][Assist] \u2013 username wasn't provided");if(!t)throw new Error("[SDK][AI][Assist] \u2013 access token wasn't found");let o=await _()(f.privateApiHost+"/private-api/ai-assist",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:r.code??t,us:e,action:r.action,text:r.text,idempotency_key:Es()})});if(!o.ok){let i=await o.text(),s={};try{s=JSON.parse(i);}catch{}let a=new Error(`[SDK][AI][Assist] \u2013 failed with status ${o.status}${i?`: ${i}`:""}`);throw a.status=o.status,a.data=s,a}return await o.json()},onSuccess:r=>{e&&(r.cost>0&&h().invalidateQueries({queryKey:c.points._prefix(e)}),h().invalidateQueries({queryKey:c.ai.assistPrices(e)}));}})}function D(e){return queryOptions({queryKey:c.accounts.full(e),queryFn:async({signal:t})=>{if(!e)return null;let[r,n]=await Promise.all([g("condenser_api.get_accounts",[[e]],void 0,void 0,t),g("bridge.get_profile",{account:e},void 0,void 0,t).catch(u=>{if(t?.aborted)throw u;return null})]);if(!r[0])return null;let o=je(r[0].posting_json_metadata),i=n?.stats,s=i?{account:r[0].name,follower_count:i.followers??0,following_count:i.following??0}:void 0,a=n?.reputation??0;return {name:r[0].name,owner:r[0].owner,active:r[0].active,posting:r[0].posting,memo_key:r[0].memo_key,post_count:r[0].post_count,created:r[0].created,posting_json_metadata:r[0].posting_json_metadata,last_vote_time:r[0].last_vote_time,last_post:r[0].last_post,json_metadata:r[0].json_metadata,reward_hive_balance:r[0].reward_hive_balance,reward_hbd_balance:r[0].reward_hbd_balance,reward_vesting_hive:r[0].reward_vesting_hive,reward_vesting_balance:r[0].reward_vesting_balance,balance:r[0].balance,hbd_balance:r[0].hbd_balance,savings_balance:r[0].savings_balance,savings_hbd_balance:r[0].savings_hbd_balance,savings_hbd_last_interest_payment:r[0].savings_hbd_last_interest_payment,savings_hbd_seconds_last_update:r[0].savings_hbd_seconds_last_update,savings_hbd_seconds:r[0].savings_hbd_seconds,next_vesting_withdrawal:r[0].next_vesting_withdrawal,pending_claimed_accounts:r[0].pending_claimed_accounts,vesting_shares:r[0].vesting_shares,delegated_vesting_shares:r[0].delegated_vesting_shares,received_vesting_shares:r[0].received_vesting_shares,vesting_withdraw_rate:r[0].vesting_withdraw_rate,to_withdraw:r[0].to_withdraw,withdrawn:r[0].withdrawn,witness_votes:r[0].witness_votes,proxy:r[0].proxy,recovery_account:r[0].recovery_account,proxied_vsf_votes:r[0].proxied_vsf_votes,voting_manabar:r[0].voting_manabar,voting_power:r[0].voting_power,downvote_manabar:r[0].downvote_manabar,follow_stats:s,reputation:a,profile:o}},enabled:!!e,staleTime:6e4})}var Cs=new Set(["__proto__","constructor","prototype"]);function mt(e){if(!e||typeof e!="object"||Array.isArray(e))return false;let t=Object.getPrototypeOf(e);return t===null||t===Object.prototype}function In(e,t){let r={...e};for(let n of Object.keys(t)){if(Cs.has(n))continue;let o=t[n],i=r[n];mt(o)&&mt(i)?r[n]=In(i,o):r[n]=o;}return r}function Ts(e){if(!(!e||!Array.isArray(e)))return e.map(({meta:t,...r})=>{if(!t||typeof t!="object")return {...r,meta:t};let{privateKey:n,username:o,...i}=t;return {...r,meta:i}})}function je(e){if(!e)return {};try{let t=JSON.parse(e);if(t&&typeof t=="object"&&t.profile&&typeof t.profile=="object")return t.profile}catch(t){console.warn("[SDK] Failed to parse posting_json_metadata:",t,{length:e?.length??0});}return {}}function Dn(e){return je(e?.posting_json_metadata)}function Rs(e){if(!e)return {};try{let t=JSON.parse(e);if(mt(t))return t}catch(t){console.warn("[SDK] Failed to parse posting_json_metadata root:",t,{length:e?.length??0});}return {}}function Bn({existingPostingJsonMetadata:e,profile:t,tokens:r}){let n=Rs(e),o=mt(n.profile)?n.profile:{},i=$t({existingProfile:o,profile:t,tokens:r});return JSON.stringify({...n,profile:i})}function $t({existingProfile:e,profile:t,tokens:r}){let{tokens:n,version:o,...i}=t??{},s=In(e??{},i);return s.tokens&&!Array.isArray(s.tokens)&&(s.tokens=void 0),r!==void 0?s.tokens=r&&r.length>0?r:[]:n!==void 0&&(s.tokens=n),s.tokens=Ts(s.tokens),s.version=2,s}function gt(e){return e.map(t=>{let r={name:t.name,owner:t.owner,active:t.active,posting:t.posting,memo_key:t.memo_key,post_count:t.post_count,created:t.created,reputation:t.reputation,posting_json_metadata:t.posting_json_metadata,last_vote_time:t.last_vote_time,last_post:t.last_post,json_metadata:t.json_metadata,reward_hive_balance:t.reward_hive_balance,reward_hbd_balance:t.reward_hbd_balance,reward_vesting_hive:t.reward_vesting_hive,reward_vesting_balance:t.reward_vesting_balance,balance:t.balance,hbd_balance:t.hbd_balance,savings_balance:t.savings_balance,savings_hbd_balance:t.savings_hbd_balance,savings_hbd_last_interest_payment:t.savings_hbd_last_interest_payment,savings_hbd_seconds_last_update:t.savings_hbd_seconds_last_update,savings_hbd_seconds:t.savings_hbd_seconds,next_vesting_withdrawal:t.next_vesting_withdrawal,pending_claimed_accounts:t.pending_claimed_accounts,vesting_shares:t.vesting_shares,delegated_vesting_shares:t.delegated_vesting_shares,received_vesting_shares:t.received_vesting_shares,vesting_withdraw_rate:t.vesting_withdraw_rate,to_withdraw:t.to_withdraw,withdrawn:t.withdrawn,witness_votes:t.witness_votes,proxy:t.proxy,recovery_account:t.recovery_account,proxied_vsf_votes:t.proxied_vsf_votes,voting_manabar:t.voting_manabar,voting_power:t.voting_power,downvote_manabar:t.downvote_manabar},n=je(t.posting_json_metadata);if(!n||Object.keys(n).length===0)try{let o=JSON.parse(t.json_metadata||"{}");o.profile&&(n=o.profile);}catch{}return (!n||Object.keys(n).length===0)&&(n={about:"",cover_image:"",location:"",name:"",profile_image:"",website:""}),{...r,profile:n}})}function Bm(e){return queryOptions({queryKey:c.accounts.list(...e),enabled:e.length>0,queryFn:async()=>{let t=await g("condenser_api.get_accounts",[e]);return gt(t)}})}function Um(e){return queryOptions({queryKey:c.accounts.followCount(e),queryFn:()=>g("condenser_api.get_follow_count",[e])})}function $m(e,t,r="blog",n=100){return queryOptions({queryKey:c.accounts.followers(e,t,r,n),queryFn:()=>g("condenser_api.get_followers",[e,t,r,n]),enabled:!!e})}function Xm(e,t,r="blog",n=100){return queryOptions({queryKey:c.accounts.following(e,t,r,n),queryFn:()=>g("condenser_api.get_following",[e,t,r,n]),enabled:!!e})}function ng(e,t=100){return queryOptions({queryKey:c.accounts.mutedUsers(e),queryFn:async()=>(await g("condenser_api.get_following",[e,"","ignore",t])).map(n=>n.following),enabled:!!e})}function cg(e,t=50){return queryOptions({queryKey:c.accounts.lookup(e,t),queryFn:()=>g("condenser_api.lookup_accounts",[e,t]),enabled:!!e,staleTime:1/0})}function fg(e,t=5,r=[]){return queryOptions({queryKey:c.accounts.search(e,r),enabled:!!e,queryFn:async()=>(await g("condenser_api.lookup_accounts",[e,t])).filter(o=>r.length>0?!r.includes(o):true)})}var Qs=new Set(["ownerPublicKey","activePublicKey","postingPublicKey","memoPublicKey"]);function hg(e,t){return queryOptions({queryKey:c.accounts.checkWalletPending(e,t??null),queryFn:async()=>{if(!e||!t)return {exist:false};let n=await _()(f.privateApiHost+"/private-api/wallets",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:e,code:t})});if(!n.ok)return {exist:false};let o=await n.json(),i=Array.isArray(o)?o.flatMap(s=>{if(!s||typeof s!="object")return [];let a=s,u=typeof a.token=="string"?a.token:void 0;if(!u)return [];let p=a.meta&&typeof a.meta=="object"?{...a.meta}:{},l={},m=typeof a.address=="string"&&a.address?a.address:void 0,y=(typeof a.status=="number"?a.status===3:void 0)??false;m&&(l.address=m),l.show=y;let v={symbol:u,currency:u,address:m,show:y,type:"CHAIN",meta:l},A=[];for(let[S,R]of Object.entries(p))typeof S=="string"&&(Qs.has(S)||typeof R!="string"||!R||/^[A-Z0-9]{2,10}$/.test(S)&&A.push({symbol:S,currency:S,address:R,show:y,type:"CHAIN",meta:{address:R,show:y}}));return [v,...A]}):[];return {exist:i.length>0,tokens:i.length?i:void 0,wallets:i.length?i:void 0}},refetchOnMount:true})}function Nn(e,t){return queryOptions({queryKey:c.accounts.relations(e,t),enabled:!!e&&!!t,refetchOnMount:false,refetchInterval:36e5,queryFn:async()=>await g("bridge.get_relationship_between_accounts",[e,t])})}function kg(e){return queryOptions({queryKey:c.accounts.subscriptions(e),enabled:!!e,queryFn:async({signal:t})=>await g("bridge.list_all_subscriptions",{account:e},void 0,void 0,t)??[]})}function Tg(e,t){return queryOptions({queryKey:c.accounts.bookmarks(e),enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][Bookmarks] \u2013 missing auth");return await(await _()(f.privateApiHost+"/private-api/bookmarks",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})})).json()}})}function Rg(e,t,r=10){return infiniteQueryOptions({queryKey:c.accounts.bookmarksInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await _()(`${f.privateApiHost}/private-api/bookmarks?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch bookmarks: ${i.status}`);let s=await i.json();return X(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function Ig(e,t){return queryOptions({queryKey:c.accounts.favorites(e),enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][Favorites] \u2013 missing auth");return await(await _()(f.privateApiHost+"/private-api/favorites",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})})).json()}})}function Dg(e,t,r=10){return infiniteQueryOptions({queryKey:c.accounts.favoritesInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await _()(`${f.privateApiHost}/private-api/favorites?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch favorites: ${i.status}`);let s=await i.json();return X(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function Qg(e,t,r){return queryOptions({queryKey:c.accounts.checkFavorite(e,r),enabled:!!e&&!!t&&!!r,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][Favorites] \u2013 missing auth");if(!r)throw new Error("[SDK][Accounts][Favorites] \u2013 no target username");let o=await _()(f.privateApiHost+"/private-api/favorites-check",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,account:r})});if(!o.ok)throw new Error(`[SDK][Accounts][Favorites] \u2013 favorites-check failed with status ${o.status}: ${o.statusText}`);let i=await o.json();if(typeof i!="boolean")throw new Error(`[SDK][Accounts][Favorites] \u2013 favorites-check returned invalid type: expected boolean, got ${typeof i}`);return i}})}function jg(e,t){return queryOptions({enabled:!!e&&!!t,queryKey:c.accounts.recoveries(e),queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts] Missing username or access token");return (await _()(f.privateApiHost+"/private-api/recoveries",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})})).json()}})}function zg(e){return queryOptions({enabled:!!e,queryKey:c.accounts.pendingRecovery(e),queryFn:()=>g("database_api.find_change_recovery_account_requests",{accounts:[e]})})}function ey(e,t=50){return queryOptions({queryKey:c.accounts.reputations(e,t),enabled:!!e,queryFn:async()=>e?g("condenser_api.get_account_reputations",[e,t]):[]})}var K=z.operations,Mn={transfers:[K.transfer,K.transfer_to_savings,K.transfer_from_savings,K.cancel_transfer_from_savings,K.recurrent_transfer,K.fill_recurrent_transfer,K.escrow_transfer,K.fill_recurrent_transfer],"market-orders":[K.fill_convert_request,K.fill_order,K.fill_collateralized_convert_request,K.limit_order_create2,K.limit_order_create,K.limit_order_cancel],interests:[K.interest],"stake-operations":[K.return_vesting_delegation,K.withdraw_vesting,K.transfer_to_vesting,K.set_withdraw_vesting_route,K.update_proposal_votes,K.fill_vesting_withdraw,K.account_witness_proxy,K.delegate_vesting_shares],rewards:[K.author_reward,K.curation_reward,K.producer_reward,K.claim_reward_balance,K.comment_benefactor_reward,K.liquidity_reward,K.proposal_pay]},Xs=[...Object.values(Mn)].reduce((e,t)=>e.concat(t),[]);function Zs(e){return e.block*1e7+e.trx_in_block*100+e.op_pos}function ea(e){return e.replace(/_operation$/,"")}function ta(e){return typeof e=="object"&&e!==null&&"nai"in e&&"amount"in e&&"precision"in e}function ra(e){if(!ta(e))return e;let t=x(e),r=ft[e.nai]??"UNKNOWN";return `${t.amount.toFixed(e.precision)} ${r}`}function na(e){let t={};for(let[r,n]of Object.entries(e))t[r]=ra(n);return t}function ay(e,t=20,r=""){let n=r?Mn[r]:Xs;return infiniteQueryOptions({queryKey:c.accounts.transactions(e??"",r,t),initialPageParam:null,queryFn:async({pageParam:o,signal:i})=>{if(!e)return {entries:[],currentPage:0};let s={"account-name":e,"operation-types":n.join(","),"page-size":t};o!==null&&(s.page=o);let a=await $("hafah","/accounts/{account-name}/operations",s,void 0,void 0,i);return {entries:a.operations_result.map(p=>{let l=ea(p.op.type);return {...na(p.op.value),num:Zs(p),type:l,timestamp:p.timestamp,trx_id:p.trx_id}}),currentPage:o??a.total_pages}},getNextPageParam:o=>{let i=o.currentPage-1;return i>=1?i:void 0}})}function ly(){return queryOptions({queryKey:c.accounts.bots(),queryFn:async()=>{let e=await fetch(f.privateApiHost+"/private-api/public/bots",{method:"GET",headers:{"Content-Type":"application/json"}});if(!e.ok)throw new Error(`Failed to fetch bots: ${e.status}`);return e.json()},refetchOnMount:true,staleTime:1/0})}function gy(e){return infiniteQueryOptions({queryKey:c.accounts.referrals(e),initialPageParam:{maxId:void 0},queryFn:async({pageParam:t})=>{let{maxId:r}=t??{},n=B.getValidatedBaseUrl(),o=new URL(`/private-api/referrals/${e}`,n);r!==void 0&&o.searchParams.set("max_id",r.toString());let i=await fetch(o.toString(),{method:"GET",headers:{"Content-Type":"application/json"}});if(!i.ok)throw new Error(`Failed to fetch referrals: ${i.status}`);return i.json()},getNextPageParam:t=>{let r=t?.[t.length-1]?.id;return typeof r=="number"?{maxId:r}:void 0}})}function wy(e){return queryOptions({queryKey:c.accounts.referralsStats(e),queryFn:async()=>{let t=await fetch(f.privateApiHost+`/private-api/referrals/${e}/stats`,{method:"GET",headers:{"Content-Type":"application/json"}});if(!t.ok)throw new Error(`Failed to fetch referral stats: ${t.status}`);let r=await t.json();if(!r)throw new Error("No Referrals for this user!");return {total:r.total??0,rewarded:r.rewarded??0}}})}function Oy(e,t,r){let{followType:n="blog",limit:o=100,enabled:i=true}=r??{};return infiniteQueryOptions({queryKey:c.accounts.friends(e,t,n,o),initialPageParam:{startFollowing:""},enabled:i,refetchOnMount:true,queryFn:async({pageParam:s})=>{let{startFollowing:a}=s,l=(await g(`condenser_api.${t==="following"?"get_following":"get_followers"}`,[e,a===""?null:a,n,o])).map(y=>t==="following"?y.following:y.follower);return (await g("bridge.get_profiles",{accounts:l,observer:void 0})??[]).map(y=>({name:y.name,reputation:y.reputation,active:y.active}))},getNextPageParam:s=>s&&s.length===o?{startFollowing:s[s.length-1].name}:void 0})}var ua=30;function Cy(e,t,r){return queryOptions({queryKey:c.accounts.searchFriends(e,t,r),refetchOnMount:false,enabled:false,queryFn:async()=>{if(!r)return [];let n=r.slice(0,-1),s=(await g(`condenser_api.${t==="following"?"get_following":"get_followers"}`,[e,n,"blog",1e3])).map(u=>t==="following"?u.following:u.follower).filter(u=>u.toLowerCase().includes(r.toLowerCase())).slice(0,ua);return (await g("bridge.get_profiles",{accounts:s,observer:void 0}))?.map(u=>({name:u.name,full_name:u.metadata.profile?.name||"",reputation:u.reputation,active:u.active}))??[]}})}function Ky(e=20){return infiniteQueryOptions({queryKey:c.posts.trendingTags(),queryFn:async({pageParam:{afterTag:t}})=>g("condenser_api.get_trending_tags",[t,e]).then(r=>r.filter(n=>n.name!=="").filter(n=>!n.name.startsWith("hive-")).map(n=>n.name)),initialPageParam:{afterTag:""},getNextPageParam:t=>t?.length>0?{afterTag:t[t.length-1]}:void 0,staleTime:3600*1e3})}function Qy(e=250){return infiniteQueryOptions({queryKey:c.posts.trendingTagsWithStats(e),queryFn:async({pageParam:{afterTag:t}})=>g("condenser_api.get_trending_tags",[t,e]).then(r=>r.filter(n=>n.name!=="").filter(n=>!qn(n.name))),initialPageParam:{afterTag:""},getNextPageParam:t=>t?.length?{afterTag:t[t.length-1].name}:void 0,staleTime:1/0})}function De(e,t){return queryOptions({queryKey:c.posts.fragments(e),queryFn:async()=>t?(await _()(f.privateApiHost+"/private-api/fragments",{method:"POST",body:JSON.stringify({code:t}),headers:{"Content-Type":"application/json"}})).json():[],enabled:!!e&&!!t})}function jy(e,t,r=10){return infiniteQueryOptions({queryKey:c.posts.fragmentsInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await _()(`${f.privateApiHost}/private-api/fragments?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch fragments: ${i.status}`);let s=await i.json();return X(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function Gy(e="feed"){return queryOptions({queryKey:c.posts.promoted(e),queryFn:async()=>{let t=B.getValidatedBaseUrl(),r=new URL("/private-api/promoted-entries",t);return e==="waves"&&r.searchParams.append("short_content","1"),await(await _()(r.toString(),{method:"GET",headers:{"Content-Type":"application/json"}})).json()}})}function Zy(e){return queryOptions({queryKey:c.posts.entryActiveVotes(e?.author,e?.permlink),queryFn:async()=>g("condenser_api.get_active_votes",[e?.author,e?.permlink]),enabled:!!e})}function oh(e,t,r){return queryOptions({queryKey:c.posts.userPostVote(e,t,r),queryFn:async()=>(await g("database_api.list_votes",{start:[e,t,r],limit:1,order:"by_voter_comment"}))?.votes?.[0]||null,enabled:!!e&&!!t&&!!r})}function uh(e,t){return queryOptions({queryKey:c.posts.content(e,t),enabled:!!e&&!!t,queryFn:async()=>g("condenser_api.get_content",[e,t])})}function mh(e,t){return queryOptions({queryKey:c.posts.contentReplies(e,t),enabled:!!e&&!!t,queryFn:async()=>g("condenser_api.get_content_replies",{author:e,permlink:t})})}function wh(e,t){return queryOptions({queryKey:c.posts.postHeader(e,t),queryFn:async()=>g("bridge.get_post_header",{author:e,permlink:t}),initialData:null})}function G(e){return Array.isArray(e)?e.map(t=>Qn(t)):Qn(e)}function Qn(e){if(!e)return e;let t=`@${e.author}/${e.permlink}`;return f.dmcaPatterns.includes(t)||f.dmcaPatternRegexes.some(n=>n.test(t))?{...e,body:"This post is not available due to a copyright/fraudulent claim.",title:""}:e}async function Hn(e,t,r){try{let n=await pt("bridge.get_post",{author:e,permlink:t,observer:r},1);if(n&&typeof n=="object"&&n.author===e&&n.permlink===t)return n}catch{}return null}function Un(e,t,r="",n){let o=t?.trim(),i=`/@${e}/${o??""}`;return queryOptions({queryKey:c.posts.entry(i),queryFn:async()=>{if(!o||o==="undefined")return null;let s=await g("bridge.get_post",{author:e,permlink:o,observer:r});if(!s){let u=await Hn(e,o,r);if(!u)return null;let p=n!==void 0?{...u,num:n}:u;return G(p)}let a=n!==void 0?{...s,num:n}:s;return G(a)},enabled:!!e&&!!t&&t.trim()!==""&&t.trim()!=="undefined"})}function Z(e,t,r){return g(`bridge.${e}`,t,void 0,void 0,r)}async function Vn(e,t,r,n){let{json_metadata:o}=e;if(o?.original_author&&o?.original_permlink&&o.tags?.[0]==="cross-post")try{let i=await va(o.original_author,o.original_permlink,t,r,n);return i?{...e,original_entry:i,num:r}:e}catch{return e}return {...e,num:r}}async function jn(e,t,r){let n=e.map(Le),o=await Promise.all(n.map(i=>Vn(i,t,void 0,r)));return G(o)}async function Ln(e,t="",r="",n=20,o="",i="",s){let a=await Z("get_ranked_posts",{sort:e,start_author:t,start_permlink:r,limit:n,tag:o,observer:i},s);return a&&jn(a,i,s)}async function Gt(e,t,r="",n="",o=20,i="",s){if(f.dmcaAccounts.includes(t))return [];let a=await Z("get_account_posts",{sort:e,account:t,start_author:r,start_permlink:n,limit:o,observer:i},s);return a&&jn(a,i,s)}function Le(e){let t={...e,active_votes:Array.isArray(e.active_votes)?[...e.active_votes]:[],beneficiaries:Array.isArray(e.beneficiaries)?[...e.beneficiaries]:[],blacklists:Array.isArray(e.blacklists)?[...e.blacklists]:[],replies:Array.isArray(e.replies)?[...e.replies]:[],stats:e.stats?{...e.stats}:null},r=["author","title","body","created","category","permlink","url","updated"];for(let n of r)t[n]==null&&(t[n]="");return t.author_reputation==null&&(t.author_reputation=0),t.children==null&&(t.children=0),t.depth==null&&(t.depth=0),t.net_rshares==null&&(t.net_rshares=0),t.payout==null&&(t.payout=0),t.percent_hbd==null&&(t.percent_hbd=0),t.stats||(t.stats={flag_weight:0,gray:false,hide:false,total_votes:0}),t.author_payout_value==null&&(t.author_payout_value="0.000 HBD"),t.curator_payout_value==null&&(t.curator_payout_value="0.000 HBD"),t.max_accepted_payout==null&&(t.max_accepted_payout="1000000.000 HBD"),t.payout_at==null&&(t.payout_at=""),t.pending_payout_value==null&&(t.pending_payout_value="0.000 HBD"),t.promoted==null&&(t.promoted="0.000 HBD"),t.is_paidout==null&&(t.is_paidout=false),t}async function va(e="",t="",r="",n,o){let i=await Z("get_post",{author:e,permlink:t,observer:r},o);if(i){let s=Le(i),a=await Vn(s,r,n,o);return G(a)}}async function Kh(e="",t=""){let r=await Z("get_post_header",{author:e,permlink:t});return r&&Le(r)}async function Wn(e,t,r){let n=await Z("get_discussion",{author:e,permlink:t,observer:r||e});if(n){let o={};for(let[i,s]of Object.entries(n))o[i]=Le(s);return o}return n}async function $n(e,t=""){return Z("get_community",{name:e,observer:t})}async function Ih(e="",t=100,r,n="rank",o=""){return Z("list_communities",{last:e,limit:t,query:r,sort:n,observer:o})}async function Gn(e){let t=await Z("normalize_post",{post:e});return t&&Le(t)}async function Dh(e){return Z("list_all_subscriptions",{account:e})}async function Bh(e){return Z("list_subscribers",{community:e})}async function Nh(e,t){return Z("get_relationship_between_accounts",[e,t])}async function yt(e,t){return Z("get_profiles",{accounts:e,observer:t})}var Jn=(o=>(o.trending="trending",o.author_reputation="author_reputation",o.votes="votes",o.created="created",o))(Jn||{});function zt(e){let t=e.match(/^(\d+\.?\d*)\s*([A-Z]+)$/);return t?{amount:parseFloat(t[1]),symbol:t[2]}:{amount:0,symbol:""}}function Aa(e,t,r){let n=l=>zt(l.pending_payout_value).amount+zt(l.author_payout_value).amount+zt(l.curator_payout_value).amount,o=l=>l.net_rshares<0,i=l=>e.json_metadata?.pinned_reply===`${l.author}/${l.permlink}`,s={trending:(l,m)=>{if(o(l))return 1;if(o(m))return -1;let d=n(l),y=n(m);return d!==y?y-d:0},author_reputation:(l,m)=>{let d=l.author_reputation,y=m.author_reputation;return d>y?-1:d<y?1:0},votes:(l,m)=>{let d=l.children,y=m.children;return d>y?-1:d<y?1:0},created:(l,m)=>{if(o(l))return 1;if(o(m))return -1;let d=Date.parse(l.created),y=Date.parse(m.created);return d>y?-1:d<y?1:0}},a=t.sort(s[r]),u=a.findIndex(l=>i(l)),p=a[u];return u>=0&&(a.splice(u,1),a.unshift(p)),a}function Yn(e,t="created",r=true,n){return queryOptions({queryKey:c.posts.discussions(e?.author,e?.permlink,t,n||e?.author),queryFn:async()=>{if(!e)return [];let o=await g("bridge.get_discussion",{author:e.author,permlink:e.permlink,observer:n||e.author}),i=o?Array.from(Object.values(o)):[];return G(i)},enabled:r&&!!e,select:o=>Aa(e,o,t),structuralSharing:(o,i)=>{if(!o||!i)return i;let s=o.filter(p=>p.is_optimistic===true),a=new Set(i.map(p=>`${p.author}/${p.permlink}`)),u=s.filter(p=>!a.has(`${p.author}/${p.permlink}`));return u.length>0?[...i,...u]:i}})}function Lh(e,t,r,n=true){return queryOptions({queryKey:c.posts.discussion(e,t,r||e),enabled:n&&!!e&&!!t,queryFn:async()=>Wn(e,t,r)})}function Yh(e,t="posts",r=20,n="",o=true){return infiniteQueryOptions({queryKey:c.posts.accountPosts(e??"",t,r,n),enabled:!!e&&o,initialPageParam:{author:void 0,permlink:void 0,hasNextPage:true},queryFn:async({pageParam:i,signal:s})=>{if(!i?.hasNextPage||!e)return [];let a=await Gt(t,e,i.author??"",i.permlink??"",r,n,s);return G(a??[])},getNextPageParam:i=>{let s=i?.[i.length-1],a=(i?.length??0)===r;if(a)return {author:s?.author,permlink:s?.permlink,hasNextPage:a}}})}function Xh(e,t="posts",r="",n="",o=20,i="",s=true){return queryOptions({queryKey:c.posts.accountPostsPage(e??"",t,r,n,o,i),enabled:!!e&&s,queryFn:async({signal:a}={})=>{if(!e)return [];let u=await Gt(t,e,r,n,o,i,a);return G(u??[])}})}function i_(e,t,r=20,n="",o=true,i={}){return infiniteQueryOptions({queryKey:c.posts.postsRanked(e,t,r,n),queryFn:async({pageParam:s,signal:a})=>{if(!s.hasNextPage)return [];let u=t;f.dmcaTagRegexes.some(A=>A.test(t))&&(u="");let p=await g("bridge.get_ranked_posts",{sort:e,start_author:s.author,start_permlink:s.permlink,limit:r,tag:u,observer:n},void 0,void 0,a);if(p==null)return [];if(!Array.isArray(p))throw new Error(`[SDK] get_ranked_posts returned ${typeof p} for sort=${e}`);let l=p,m=e==="hot"?l:l.sort((A,S)=>new Date(S.created).getTime()-new Date(A.created).getTime()),d=m.find(A=>A.stats?.is_pinned),y=m.filter(A=>!A.stats?.is_pinned),v=[d,...y].filter(A=>!!A);return G(v)},enabled:o,initialPageParam:{author:void 0,permlink:void 0,hasNextPage:true},getNextPageParam:s=>{let a=s?.[s.length-1];return {author:a?.author,permlink:a?.permlink,hasNextPage:(s?.length??0)>0}}})}function s_(e,t="",r="",n=20,o="",i="",s=true){return queryOptions({queryKey:c.posts.postsRankedPage(e,t,r,n,o,i),enabled:s,queryFn:async({signal:a}={})=>{let u=o;f.dmcaTagRegexes.some(l=>l.test(o))&&(u="");let p=await Ln(e,t,r,n,u,i,a);return G(p??[])}})}function l_(e,t,r=200){return queryOptions({queryKey:c.posts.reblogs(e??"",r),queryFn:async()=>(await g("condenser_api.get_blog_entries",[e??t,0,r])).filter(o=>o.author!==t&&!o.reblogged_on.startsWith("1970-")).map(o=>({author:o.author,permlink:o.permlink})),enabled:!!e})}function y_(e,t){return queryOptions({queryKey:c.posts.rebloggedBy(e??"",t??""),queryFn:async()=>{if(!e||!t)return [];let r=await g("condenser_api.get_reblogged_by",[e,t]);return Array.isArray(r)?r:[]},enabled:!!e&&!!t})}function b_(e,t){return queryOptions({queryKey:c.posts.schedules(e),queryFn:async()=>{if(!e||!t)return [];let n=await _()(f.privateApiHost+"/private-api/schedules",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch schedules: ${n.status}`);return n.json()},enabled:!!e&&!!t})}function v_(e,t,r=10){return infiniteQueryOptions({queryKey:c.posts.schedulesInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await _()(`${f.privateApiHost}/private-api/schedules?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch schedules: ${i.status}`);let s=await i.json();return X(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function x_(e,t){return queryOptions({queryKey:c.posts.drafts(e),queryFn:async()=>{if(!e||!t)return [];let n=await _()(f.privateApiHost+"/private-api/drafts",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch drafts: ${n.status}`);return n.json()},enabled:!!e&&!!t})}function k_(e,t,r=10){return infiniteQueryOptions({queryKey:c.posts.draftsInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await _()(`${f.privateApiHost}/private-api/drafts?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch drafts: ${i.status}`);let s=await i.json();return X(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}async function Zn(e){let r=await _()(f.privateApiHost+"/private-api/images",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!r.ok)throw new Error(`Failed to fetch images: ${r.status}`);return r.json()}function T_(e,t){return queryOptions({queryKey:c.posts.images(e),queryFn:async()=>!e||!t?[]:Zn(t),enabled:!!e&&!!t})}function R_(e,t){return queryOptions({queryKey:c.posts.galleryImages(e),queryFn:async()=>!e||!t?[]:Zn(t),enabled:!!e&&!!t})}function q_(e,t,r=10){return infiniteQueryOptions({queryKey:c.posts.imagesInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await _()(`${f.privateApiHost}/private-api/images?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch images: ${i.status}`);let s=await i.json();return X(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function D_(e,t,r=false){return queryOptions({queryKey:c.posts.commentHistory(e,t,r),queryFn:async({signal:n})=>{let o=await fetch(f.privateApiHost+"/private-api/comment-history",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({author:e,permlink:t,onlyMeta:r?"1":""}),signal:n});if(!o.ok)throw new Error(`Failed to fetch comment history: ${o.status}`);return o.json()},enabled:!!e&&!!t})}function Da(e,t){let r=e?.trim(),n=t?.trim();if(!r||!n)throw new Error("Invalid entry path: author and permlink are required");let o=r.replace(/^@+/,""),i=n.replace(/^\/+/,"");if(!o||!i)throw new Error("Invalid entry path: author and permlink cannot be empty after normalization");return `@${o}/${i}`}function Q_(e,t){let r=t?.trim(),n=e?.trim(),o=!!n&&!!r&&r!=="undefined",i=o?Da(n,r):"";return queryOptions({queryKey:c.posts.deletedEntry(i),queryFn:async({signal:s})=>{let a=await fetch(f.privateApiHost+"/private-api/comment-history",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({author:e,permlink:r||""}),signal:s});if(!a.ok)throw new Error(`Failed to fetch comment history: ${a.status}`);return a.json()},select:s=>{if(!s?.list?.[0])return null;let{body:a,title:u,tags:p}=s.list[0];return {body:a,title:u,tags:p}},enabled:o})}function j_(e,t,r=true){return queryOptions({queryKey:c.posts.tips(e,t),queryFn:async()=>{let n=await fetch(f.privateApiHost+"/private-api/post-tips",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({author:e,permlink:t})});if(!n.ok)throw new Error(`Failed to fetch post tips: ${n.status}`);return n.json()},enabled:!!e&&!!t&&r})}function Na(e,t){return {...e,id:e.id??e.post_id,created:e.created??e.timestamp,host:t}}function Ma(e){return {...e,id:e.id??e.post_id}}function ae(e,t){if(!e)return null;let r=e.container??e,n=Na(r,t),o=e.parent?Ma(e.parent):void 0;return {...e,id:e.id??e.post_id,created:e.created??e.timestamp,max_accepted_payout:e.max_accepted_payout||"1000000.000 HBD",pending_payout_value:e.pending_payout_value||"0.000 HBD",author_payout_value:e.author_payout_value||"0.000 HBD",curator_payout_value:e.curator_payout_value||"0.000 HBD",host:t,container:n,parent:o}}function Qa(e){return Array.isArray(e)?e:[]}async function eo(e){let t=Yn(e,"created",true),r=await f.queryClient.fetchQuery(t),n=Qa(r);if(n.length<=1)return [];let o=n.filter(({parent_author:s,parent_permlink:a})=>s===e.author&&a===e.permlink);return o.length===0?[]:o.filter(s=>!s.stats?.gray)}function to(e,t,r){return e.length===0?[]:e.map(n=>{let o=e.find(i=>i.author===n.parent_author&&i.permlink===n.parent_permlink&&i.author!==r);return {...n,id:n.post_id,host:r,container:t,parent:o}}).filter(n=>n.container.post_id!==n.post_id).sort((n,o)=>new Date(o.created).getTime()-new Date(n.created).getTime())}var Va=20;function ro(e){return {containers:e.containers??[],tag:e.tag?.trim()||void 0,following:e.following?.trim().toLowerCase()||void 0,author:e.author?.trim().toLowerCase()||void 0,observer:e.observer?.trim().toLowerCase()||void 0,limit:e.limit??Va}}async function no({containers:e,tag:t,following:r,author:n,observer:o,limit:i},s,a){let u=B.getValidatedBaseUrl(),p=new URL("/private-api/waves/feed",u);p.searchParams.set("limit",String(i)),s&&p.searchParams.set("cursor",s),e.forEach(d=>p.searchParams.append("container",d)),t&&p.searchParams.set("tag",t),r&&p.searchParams.set("following",r),n&&p.searchParams.set("author",n),o&&p.searchParams.set("observer",o);let l=await fetch(p.toString(),{method:"GET",signal:a});if(!l.ok)throw new Error(`Failed to fetch waves feed: ${l.status}`);let m=await l.json();return !Array.isArray(m)||m.length===0?[]:m.map(d=>{let y=ae(d,d.host??"");return y?{...y,_cursor:d._cursor}:null}).filter(d=>!!d)}function X_(e={}){let t=ro(e),{containers:r,tag:n,following:o,author:i,observer:s,limit:a}=t;return infiniteQueryOptions({queryKey:c.posts.wavesFeed({containers:r,tag:n,following:o,author:i,observer:s,limit:a}),initialPageParam:void 0,queryFn:({pageParam:u,signal:p})=>no(t,u,p),getNextPageParam:u=>{if(!(u.length<a))return u[u.length-1]?._cursor}})}function Z_(e={}){let t=ro(e),{containers:r,tag:n,following:o,author:i,observer:s,limit:a}=t;return queryOptions({queryKey:[...c.posts.wavesFeed({containers:r,tag:n,following:o,author:i,observer:s,limit:a}),"latest"],staleTime:0,queryFn:({signal:u})=>no(t,void 0,u)})}var La=20;function Wa(e){return {containers:e.containers??[],tag:e.tag?.trim()||void 0,author:e.author?.trim().toLowerCase()||void 0,observer:e.observer?.trim().toLowerCase()||void 0,limit:e.limit??La}}async function $a({containers:e,tag:t,author:r,observer:n,limit:o},i,s){let a=B.getValidatedBaseUrl(),u=new URL("/private-api/waves/shorts",a);u.searchParams.set("limit",String(o)),i&&u.searchParams.set("cursor",i),e.forEach(m=>u.searchParams.append("container",m)),t&&u.searchParams.set("tag",t),r&&u.searchParams.set("author",r),n&&u.searchParams.set("observer",n);let p=await fetch(u.toString(),{method:"GET",signal:s});if(!p.ok)throw new Error(`Failed to fetch shorts feed: ${p.status}`);let l=await p.json();return !Array.isArray(l)||l.length===0?[]:l.map(m=>{let d=ae(m,m.host??"");return d?{...d,active_votes:d.active_votes??[],video:m.video,_cursor:m._cursor}:null}).filter(m=>!!m)}function ow(e={}){let t=Wa(e),{containers:r,tag:n,author:o,observer:i,limit:s}=t;return infiniteQueryOptions({queryKey:c.posts.shortsFeed({containers:r,tag:n,author:o,observer:i,limit:s}),initialPageParam:void 0,queryFn:({pageParam:a,signal:u})=>$a(t,a,u),getNextPageParam:a=>{if(!(a.length<s))return a[a.length-1]?._cursor}})}var za=5,Ja=50;async function Ya(e,t){let r=t?.author,n=t?.permlink,o=0,i=t?.post_id;for(;o<Ja;){let s={sort:"posts",account:e,limit:za,...r?{start_author:r}:{},...n?{start_permlink:n}:{}},a;try{a=await g("bridge.get_account_posts",s);}catch(l){return console.error("[SDK] getThreads get_account_posts error:",l),null}if(!a||a.length===0)return null;let u=a.map(l=>(l.id=l.post_id,l.host=e,l));for(let l of u){if(i&&l.post_id===i){i=void 0;continue}if(o+=1,l.stats?.gray){r=l.author,n=l.permlink;continue}let m;try{m=await eo(l);}catch(d){console.error("[SDK] getThreads get_discussion error:",d),r=l.author,n=l.permlink;continue}if(m.length===0){r=l.author,n=l.permlink;continue}return {entries:to(m,l,e)}}let p=u[u.length-1];if(!p)return null;r=p.author,n=p.permlink;}return null}function pw(e){return infiniteQueryOptions({queryKey:c.posts.wavesByHost(e),initialPageParam:void 0,queryFn:async({pageParam:t})=>{let r=await Ya(e,t);return r?r.entries:[]},getNextPageParam:t=>t?.[0]?.container})}var Za=40;function gw(e,t,r=Za){return infiniteQueryOptions({queryKey:c.posts.wavesByTag(e,t),initialPageParam:void 0,queryFn:async({signal:n})=>{try{let o=B.getValidatedBaseUrl(),i=new URL("/private-api/waves/tags",o);i.searchParams.set("container",e),i.searchParams.set("tag",t);let s=await fetch(i.toString(),{method:"GET",headers:{"Content-Type":"application/json"},signal:n});if(!s.ok)throw new Error(`Failed to fetch waves by tag: ${s.status}`);return (await s.json()).slice(0,r).map(p=>ae(p,e)).filter(p=>!!p).sort((p,l)=>new Date(l.created).getTime()-new Date(p.created).getTime())}catch(o){return console.error("[SDK] Failed to fetch waves by tag",o),[]}},getNextPageParam:()=>{}})}function bw(e,t){let r=t?.trim().toLowerCase();return infiniteQueryOptions({queryKey:c.posts.wavesFollowing(e,r??""),enabled:!!r,initialPageParam:void 0,queryFn:async({signal:n})=>{if(!r)return [];try{let o=B.getValidatedBaseUrl(),i=new URL("/private-api/waves/following",o);i.searchParams.set("container",e),i.searchParams.set("username",r);let s=await fetch(i.toString(),{method:"GET",headers:{"Content-Type":"application/json"},signal:n});if(!s.ok)throw new Error(`Failed to fetch waves following feed: ${s.status}`);let a=await s.json();if(!Array.isArray(a)||a.length===0)return [];let u=a.map(p=>ae(p,e)).filter(p=>!!p);return u.length===0?[]:u.sort((p,l)=>new Date(l.created).getTime()-new Date(p.created).getTime())}catch(o){return console.error("[SDK] Failed to fetch waves following feed",o),[]}},getNextPageParam:()=>{}})}function Ow(e,t=24){let r=e?.trim()||void 0;return queryOptions({queryKey:c.posts.wavesTrendingTags(r??"",t),queryFn:async({signal:n})=>{try{let o=B.getValidatedBaseUrl(),i=new URL("/private-api/waves/trending/tags",o);r&&i.searchParams.set("container",r),i.searchParams.set("hours",t.toString());let s=await fetch(i.toString(),{method:"GET",signal:n});if(!s.ok)throw new Error(`Failed to fetch waves trending tags: ${s.status}`);return (await s.json()).map(({tag:u,posts:p})=>({tag:u,posts:p}))}catch(o){return console.error("[SDK] Failed to fetch waves trending tags",o),[]}}})}function Cw(e,t){let r=t?.trim().toLowerCase();return infiniteQueryOptions({queryKey:c.posts.wavesByAccount(e,r??""),enabled:!!r,initialPageParam:void 0,queryFn:async({signal:n})=>{if(!r)return [];try{let o=B.getValidatedBaseUrl(),i=new URL("/private-api/waves/account",o);i.searchParams.set("container",e),i.searchParams.set("username",r);let s=await fetch(i.toString(),{method:"GET",signal:n});if(!s.ok)throw new Error(`Failed to fetch waves for account: ${s.status}`);let a=await s.json();if(!Array.isArray(a)||a.length===0)return [];let u=a.map(p=>ae(p,e)).filter(p=>!!p);return u.length===0?[]:u.sort((p,l)=>new Date(l.created).getTime()-new Date(p.created).getTime())}catch(o){throw console.error("[SDK] Failed to fetch waves for account",o),o}},getNextPageParam:()=>{}})}function Fw(e){return queryOptions({queryKey:c.posts.wavesTrendingAuthors(e),queryFn:async({signal:t})=>{try{let r=B.getValidatedBaseUrl(),n=new URL("/private-api/waves/trending/authors",r);n.searchParams.set("container",e);let o=await fetch(n.toString(),{method:"GET",signal:t});if(!o.ok)throw new Error(`Failed to fetch waves trending authors: ${o.status}`);return (await o.json()).map(({author:s,posts:a})=>({author:s,posts:a}))}catch(r){throw console.error("[SDK] Failed to fetch waves trending authors",r),r}}})}function Nw(e,t=true){return queryOptions({queryKey:c.posts.normalize(e?.author??"",e?.permlink??""),enabled:t&&!!e,queryFn:async()=>Gn(e)})}function sc(e){return !!e&&typeof e=="object"&&"author"in e&&"permlink"in e&&"active_votes"in e}function oo(e){let t=new Date(e);return (new Date().getTime()-t.getTime())/(1e3*60*60*24)}function Lw(e,t){let{limit:r=20,filters:n=[],dayLimit:o=7}=t??{};return infiniteQueryOptions({queryKey:c.accounts.voteHistory(e,r),initialPageParam:{start:-1},queryFn:async({pageParam:i})=>{let{start:s}=i,a=await g("condenser_api.get_account_history",[e,s,r,...n]),p=a.map(([d,y])=>({...y.op[1],num:d,timestamp:y.timestamp})).filter(d=>d.voter===e&&d.weight!==0&&oo(d.timestamp)<=o),l=[];for(let d of p){let y=await f.queryClient.fetchQuery(Un(d.author,d.permlink));sc(y)&&l.push(y);}let[m]=a;return {lastDate:m?oo(m[1].timestamp):0,lastItemFetched:m?m[0]:s,entries:l}},getNextPageParam:i=>({start:i.lastItemFetched})})}function Jw(e,t,r=true){return queryOptions({queryKey:c.accounts.profiles(e,t??""),enabled:r&&e.length>0,queryFn:async()=>yt(e,t)})}function tb(e,t="HIVE",r=200){return infiniteQueryOptions({queryKey:c.wallet.balanceHistory(e??"",t,r),initialPageParam:null,queryFn:async({pageParam:n,signal:o})=>{if(!e)return {entries:[],currentPage:0};let i={"account-name":e,"coin-type":t,"page-size":r,direction:"desc"};n!==null&&(i.page=n);let s=await $("balance","/accounts/{account-name}/balance-history",i,void 0,void 0,o);return {entries:s.operations_result,currentPage:n??s.total_pages}},getNextPageParam:n=>{let o=n.currentPage-1;return o>=1?o:void 0},enabled:!!e})}function sb(e,t="HIVE",r="yearly"){return queryOptions({queryKey:c.wallet.aggregatedHistory(e??"",t,r),queryFn:async()=>e?await $("balance","/accounts/{account-name}/aggregated-history",{"account-name":e,"coin-type":t,granularity:r}):[],enabled:!!e,staleTime:6e4})}function db(e,t,r){let n=useQueryClient(),{data:o}=useQuery(D(e));return b(["accounts","update"],e,i=>{let s=n.getQueryData(D(e).queryKey)??o;if(!s)throw new Error("[SDK][Accounts] \u2013 cannot update not existing account");return [["account_update2",{account:e,json_metadata:"",extensions:[],posting_json_metadata:Bn({existingPostingJsonMetadata:s.posting_json_metadata,profile:i.profile,tokens:i.tokens})}]]},async(i,s)=>{n.setQueryData(D(e).queryKey,a=>{if(!a)return a;let u=JSON.parse(JSON.stringify(a));return u.profile=$t({existingProfile:Dn(a),profile:s.profile,tokens:s.tokens}),u}),await P(t?.adapter,r,[c.accounts.full(e)]);},t,void 0,{broadcastMode:r,onMutate:async()=>{if(e)try{await n.fetchQuery({...D(e),staleTime:0});}catch{}}})}function hb(e,t,r,n,o){return useMutation({mutationKey:["accounts","relation","update",e,t],mutationFn:async i=>{let s=Nn(e,t);await h().prefetchQuery(s);let a=h().getQueryData(s.queryKey);return await Tn(e,"follow",["follow",{follower:e,following:t,what:[...i==="toggle-ignore"&&!a?.ignores?["ignore"]:[],...i==="toggle-follow"&&!a?.follows?["blog"]:[]]}],r),{...a,ignores:i==="toggle-ignore"?!a?.ignores:a?.ignores,follows:i==="toggle-follow"?!a?.follows:a?.follows}},onError:o,onSuccess(i){n(i),h().setQueryData(c.accounts.relations(e,t),i),t&&h().invalidateQueries(D(t));}})}function Jt(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildVoteOp] Missing required parameters");if(n<-1e4||n>1e4)throw new Error("[SDK][buildVoteOp] Weight must be between -10000 and 10000");return ["vote",{voter:e,author:t,permlink:r,weight:n}]}function Ee(e,t,r,n,o,i,s){if(!e||!t||n===void 0||!i)throw new Error("[SDK][buildCommentOp] Missing required parameters");return ["comment",{parent_author:r,parent_permlink:n,author:e,permlink:t,title:o,body:i,json_metadata:JSON.stringify(s)}]}function Se(e,t,r,n,o,i,s){if(!e||!t)throw new Error("[SDK][buildCommentOptionsOp] Missing required parameters");return ["comment_options",{author:e,permlink:t,max_accepted_payout:r,percent_hbd:n,allow_votes:o,allow_curation_rewards:i,extensions:s}]}function Yt(e,t){if(!e||!t)throw new Error("[SDK][buildDeleteCommentOp] Missing required parameters");return ["delete_comment",{author:e,permlink:t}]}function Xt(e,t,r,n=false){if(!e||!t||!r)throw new Error("[SDK][buildReblogOp] Missing required parameters");let o={account:e,author:t,permlink:r};return n&&(o.delete="delete"),["custom_json",{id:"follow",json:JSON.stringify(["reblog",o]),required_auths:[],required_posting_auths:[e]}]}function Ce(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildTransferOp] Missing required parameters");return ["transfer",{from:e,to:t,amount:r,memo:n||""}]}function fc(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildMultiTransferOps] Missing required parameters");return t.trim().split(/[\s,]+/).filter(Boolean).map(i=>Ce(e,i.trim(),r,n))}function mc(e,t,r,n,o,i){if(!e||!t||!r)throw new Error("[SDK][buildRecurrentTransferOp] Missing required parameters");if(o<24)throw new Error("[SDK][buildRecurrentTransferOp] Recurrence must be at least 24 hours");return ["recurrent_transfer",{from:e,to:t,amount:r,memo:n||"",recurrence:o,executions:i,extensions:[]}]}function Be(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildTransferToSavingsOp] Missing required parameters");return ["transfer_to_savings",{from:e,to:t,amount:r,memo:n||""}]}function Te(e,t,r,n,o){if(!e||!t||!r||o===void 0)throw new Error("[SDK][buildTransferFromSavingsOp] Missing required parameters");return ["transfer_from_savings",{from:e,to:t,amount:r,memo:n||"",request_id:o}]}function io(e,t){if(!e||t===void 0)throw new Error("[SDK][buildCancelTransferFromSavingsOp] Missing required parameters");return ["cancel_transfer_from_savings",{from:e,request_id:t}]}function We(e,t,r,n,o){if(!e||!t||!r||o===void 0)throw new Error("[SDK][buildClaimInterestOps] Missing required parameters");return [Te(e,t,r,n,o),io(e,o)]}function $e(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildTransferToVestingOp] Missing required parameters");return ["transfer_to_vesting",{from:e,to:t,amount:r}]}function Ge(e,t){if(!e||!t)throw new Error("[SDK][buildWithdrawVestingOp] Missing required parameters");return ["withdraw_vesting",{account:e,vesting_shares:t}]}function ze(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildDelegateVestingSharesOp] Missing required parameters");return ["delegate_vesting_shares",{delegator:e,delegatee:t,vesting_shares:r}]}function Je(e,t,r,n){if(!e||!t||r===void 0)throw new Error("[SDK][buildSetWithdrawVestingRouteOp] Missing required parameters");if(r<0||r>1e4)throw new Error("[SDK][buildSetWithdrawVestingRouteOp] Percent must be between 0 and 10000");return ["set_withdraw_vesting_route",{from_account:e,to_account:t,percent:r,auto_vest:n}]}function Ye(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildConvertOp] Missing required parameters");return ["convert",{owner:e,amount:t,requestid:r}]}function Zt(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildCollateralizedConvertOp] Missing required parameters");return ["collateralized_convert",{owner:e,amount:t,requestid:r}]}function ht(e,t,r){return ["custom_json",{id:t,required_auths:[e],required_posting_auths:[],json:JSON.stringify({amount:r*1e3})}]}function Re(e,t,r,n="tokens"){return ["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:JSON.stringify({contractName:n,contractAction:t,contractPayload:r})}]}function er(e,t){return ["custom_json",{id:"scot_claim_token",required_auths:[],required_posting_auths:[e],json:JSON.stringify(t.map(r=>({symbol:r})))}]}function tr(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildDelegateRcOp] Missing required parameters");let n=t.includes(",")?t.split(",").map(o=>o.trim()):[t];return ["custom_json",{id:"rc",json:JSON.stringify(["delegate_rc",{from:e,delegatees:n,max_rc:r}]),required_auths:[],required_posting_auths:[e]}]}function rr(e,t){if(!e||!t)throw new Error("[SDK][buildFollowOp] Missing required parameters");return ["custom_json",{id:"follow",json:JSON.stringify(["follow",{follower:e,following:t,what:["blog"]}]),required_auths:[],required_posting_auths:[e]}]}function _t(e,t){if(!e||!t)throw new Error("[SDK][buildUnfollowOp] Missing required parameters");return ["custom_json",{id:"follow",json:JSON.stringify(["follow",{follower:e,following:t,what:[]}]),required_auths:[],required_posting_auths:[e]}]}function gc(e,t){if(!e||!t)throw new Error("[SDK][buildIgnoreOp] Missing required parameters");return ["custom_json",{id:"follow",json:JSON.stringify(["follow",{follower:e,following:t,what:["ignore"]}]),required_auths:[],required_posting_auths:[e]}]}function yc(e,t){if(!e||!t)throw new Error("[SDK][buildUnignoreOp] Missing required parameters");return _t(e,t)}function nr(e,t){if(!e)throw new Error("[SDK][buildSetLastReadOps] Missing required parameters");let r=t||new Date().toISOString().split(".")[0],n=["custom_json",{id:"notify",json:JSON.stringify(["setLastRead",{date:r}]),required_auths:[],required_posting_auths:[e]}],o=["custom_json",{id:"ecency_notify",json:JSON.stringify(["setLastRead",{date:r}]),required_auths:[],required_posting_auths:[e]}];return [n,o]}function or(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildWitnessVoteOp] Missing required parameters");return ["account_witness_vote",{account:e,witness:t,approve:r}]}function ir(e,t){if(!e||t===void 0)throw new Error("[SDK][buildWitnessProxyOp] Missing required parameters");return ["account_witness_proxy",{account:e,proxy:t}]}function sr(e,t){if(!e||!t.receiver||!t.subject||!t.permlink||!t.start||!t.end||!t.dailyPay)throw new Error("[SDK][buildProposalCreateOp] Missing required parameters");let r=new Date(t.start),n=new Date(t.end);if(r.toString()==="Invalid Date"||n.toString()==="Invalid Date")throw new Error("[SDK][buildProposalCreateOp] Invalid date format: start and end must be valid ISO date strings");return ["create_proposal",{creator:e,receiver:t.receiver,start_date:t.start,end_date:t.end,daily_pay:t.dailyPay,subject:t.subject,permlink:t.permlink,extensions:[]}]}function ar(e,t,r){if(!e||!t||t.length===0||r===void 0)throw new Error("[SDK][buildProposalVoteOp] Missing required parameters");return ["update_proposal_votes",{voter:e,proposal_ids:t,approve:r,extensions:[]}]}function hc(e,t){if(!e||!t||t.length===0)throw new Error("[SDK][buildRemoveProposalOp] Missing required parameters");return ["remove_proposal",{proposal_owner:e,proposal_ids:t,extensions:[]}]}function _c(e,t,r,n,o){if(e==null||typeof e!="number"||!t||!r||!n||!o)throw new Error("[SDK][buildUpdateProposalOp] Missing required parameters");return ["update_proposal",{proposal_id:e,creator:t,daily_pay:r,subject:n,permlink:o,extensions:[]}]}function cr(e,t){if(!e||!t)throw new Error("[SDK][buildSubscribeOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["subscribe",{community:t}]),required_auths:[],required_posting_auths:[e]}]}function ur(e,t){if(!e||!t)throw new Error("[SDK][buildUnsubscribeOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["unsubscribe",{community:t}]),required_auths:[],required_posting_auths:[e]}]}function pr(e,t,r,n){if(!e||!t||!r||!n)throw new Error(`[SDK][buildSetRoleOp] Missing required parameters: username=${e}, community=${t}, account=${r}, role=${n}`);return ["custom_json",{id:"community",json:JSON.stringify(["setRole",{community:t,account:r,role:n}]),required_auths:[],required_posting_auths:[e]}]}function lr(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildUpdateCommunityOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["updateProps",{community:t,props:r}]),required_auths:[],required_posting_auths:[e]}]}function dr(e,t,r,n,o){if(!e||!t||!r||!n||o===void 0)throw new Error("[SDK][buildPinPostOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify([o?"pinPost":"unpinPost",{community:t,account:r,permlink:n}]),required_auths:[],required_posting_auths:[e]}]}function fr(e,t,r,n,o,i){if(!e||!t||!r||!n||i===void 0)throw new Error("[SDK][buildMutePostOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify([i?"mutePost":"unmutePost",{community:t,account:r,permlink:n,notes:o}]),required_auths:[],required_posting_auths:[e]}]}function wc(e,t,r,n,o){if(!e||!t||!r||o===void 0)throw new Error("[SDK][buildMuteUserOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify([o?"muteUser":"unmuteUser",{community:t,account:r,notes:n}]),required_auths:[],required_posting_auths:[e]}]}function bc(e,t,r,n,o){if(!e||!t||!r||!n)throw new Error("[SDK][buildFlagPostOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["flagPost",{community:t,account:r,permlink:n,notes:o}]),required_auths:[],required_posting_auths:[e]}]}var so=(r=>(r.Buy="buy",r.Sell="sell",r))(so||{}),ao=(r=>(r.EMPTY="",r.SWAP="9",r))(ao||{});function bt(e,t,r,n,o,i){if(!e||!t||!r||!o||i===void 0)throw new Error("[SDK][buildLimitOrderCreateOp] Missing required parameters");return ["limit_order_create",{owner:e,orderid:i,amount_to_sell:t,min_to_receive:r,fill_or_kill:n,expiration:o}]}function wt(e,t=3){return e.toFixed(t)}function vc(e,t,r,n,o=""){if(!e||n===void 0||!Number.isFinite(t)||t<=0||!Number.isFinite(r)||r<=0)throw new Error("[SDK][buildLimitOrderCreateOpWithType] Missing or invalid parameters");let i=new Date(Date.now());i.setDate(i.getDate()+27);let s=i.toISOString().split(".")[0],a=+`${o}${Math.floor(Date.now()/1e3).toString().slice(2)}`,u=n==="buy"?`${wt(t,3)} HBD`:`${wt(t,3)} HIVE`,p=n==="buy"?`${wt(r,3)} HIVE`:`${wt(r,3)} HBD`;return bt(e,u,p,false,s,a)}function mr(e,t){if(!e||t===void 0)throw new Error("[SDK][buildLimitOrderCancelOp] Missing required parameters");return ["limit_order_cancel",{owner:e,orderid:t}]}function gr(e,t,r,n){if(!e||!t||!r||!n)throw new Error("[SDK][buildClaimRewardBalanceOp] Missing required parameters");return ["claim_reward_balance",{account:e,reward_hive:t,reward_hbd:r,reward_vests:n}]}function Ac(e,t,r,n,o,i){if(!e||!o)throw new Error("[SDK][buildAccountUpdateOp] Missing required parameters");return ["account_update",{account:e,owner:t,active:r,posting:n,memo_key:o,json_metadata:i}]}function Pc(e,t,r,n){if(!e||r===void 0)throw new Error("[SDK][buildAccountUpdate2Op] Missing required parameters");return ["account_update2",{account:e,json_metadata:t||"",posting_json_metadata:r,extensions:n||[]}]}function yr(e,t,r,n){if(!e||!t||!r||!n)throw new Error("[SDK][buildAccountCreateOp] Missing required parameters");let o={weight_threshold:1,account_auths:[],key_auths:[[r.ownerPublicKey,1]]},i={weight_threshold:1,account_auths:[],key_auths:[[r.activePublicKey,1]]},s={weight_threshold:1,account_auths:[["ecency.app",1]],key_auths:[[r.postingPublicKey,1]]};return ["account_create",{creator:e,new_account_name:t,owner:o,active:i,posting:s,memo_key:r.memoPublicKey,json_metadata:"",fee:n}]}function hr(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildCreateClaimedAccountOp] Missing required parameters");let n={weight_threshold:1,account_auths:[],key_auths:[[r.ownerPublicKey,1]]},o={weight_threshold:1,account_auths:[],key_auths:[[r.activePublicKey,1]]},i={weight_threshold:1,account_auths:[["ecency.app",1]],key_auths:[[r.postingPublicKey,1]]};return ["create_claimed_account",{creator:e,new_account_name:t,owner:n,active:o,posting:i,memo_key:r.memoPublicKey,json_metadata:"",extensions:[]}]}function _r(e,t){if(!e||!t)throw new Error("[SDK][buildClaimAccountOp] Missing required parameters");return ["claim_account",{creator:e,fee:t,extensions:[]}]}function wr(e,t,r,n,o,i){if(!e||!t||!r||!o)throw new Error("[SDK][buildGrantPostingPermissionOp] Missing required parameters");let s=t.account_auths.findIndex(([p])=>p===r),a=[...t.account_auths];s>=0?a[s]=[r,n]:a.push([r,n]);let u={...t,account_auths:a};return u.account_auths.sort((p,l)=>p[0]>l[0]?1:-1),["account_update",{account:e,posting:u,memo_key:o,json_metadata:i}]}function Oc(e,t,r,n,o){if(!e||!t||!r||!n)throw new Error("[SDK][buildRevokePostingPermissionOp] Missing required parameters");let i={...t,account_auths:t.account_auths.filter(([s])=>s!==r)};return ["account_update",{account:e,posting:i,memo_key:n,json_metadata:o}]}function xc(e,t,r=[]){if(!e||!t)throw new Error("[SDK][buildChangeRecoveryAccountOp] Missing required parameters");return ["change_recovery_account",{account_to_recover:e,new_recovery_account:t,extensions:r}]}function kc(e,t,r,n=[]){if(!e||!t||!r)throw new Error("[SDK][buildRequestAccountRecoveryOp] Missing required parameters");return ["request_account_recovery",{recovery_account:e,account_to_recover:t,new_owner_authority:r,extensions:n}]}function Ec(e,t,r,n=[]){if(!e||!t||!r)throw new Error("[SDK][buildRecoverAccountOp] Missing required parameters");return ["recover_account",{account_to_recover:e,new_owner_authority:t,recent_owner_authority:r,extensions:n}]}function br(e,t,r){if(!e||!t||!Number.isFinite(r))throw new Error("[SDK][buildBoostPlusOp] Missing required parameters");return ["custom_json",{id:"ecency_boost_plus",json:JSON.stringify({user:e,account:t,duration:r}),required_auths:[e],required_posting_auths:[]}]}function vr(e,t){if(!e||!Number.isInteger(t)||t<=0)throw new Error("[SDK][buildRcDelegationOp] Missing or invalid parameters");return ["custom_json",{id:"ecency_rc_delegation",json:JSON.stringify({user:e,duration:t}),required_auths:[e],required_posting_auths:[]}]}function Ar(e,t,r,n){if(!e||!t||!r||!Number.isFinite(n))throw new Error("[SDK][buildPromoteOp] Missing required parameters");return ["custom_json",{id:"ecency_promote",json:JSON.stringify({user:e,author:t,permlink:r,duration:n}),required_auths:[e],required_posting_auths:[]}]}function Ne(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildPointTransferOp] Missing required parameters");let o=r.replace(/POINTS\b/,"POINT");return ["custom_json",{id:"ecency_point_transfer",json:JSON.stringify({sender:e,receiver:t,amount:o,memo:n||""}),required_auths:[e],required_posting_auths:[]}]}function Sc(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildMultiPointTransferOps] Missing required parameters");let o=t.trim().split(/[\s,]+/).filter(Boolean);if(o.length===0)throw new Error("[SDK][buildMultiPointTransferOps] Missing valid destinations");return o.map(i=>Ne(e,i.trim(),r,n))}function Pr(e){if(!e)throw new Error("[SDK][buildCommunityRegistrationOp] Missing required parameters");return ["custom_json",{id:"ecency_registration",json:JSON.stringify({name:e}),required_auths:[e],required_posting_auths:[]}]}function Cc(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildActiveCustomJsonOp] Missing required parameters");return ["custom_json",{id:t,json:JSON.stringify(r),required_auths:[e],required_posting_auths:[]}]}function Tc(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildPostingCustomJsonOp] Missing required parameters");return ["custom_json",{id:t,json:JSON.stringify(r),required_auths:[],required_posting_auths:[e]}]}function Nb(e,t,r){return b(["accounts","follow"],e,({following:n})=>[rr(e,n)],async(n,o)=>{await P(t?.adapter,r,[c.accounts.relations(e,o.following),c.accounts.full(o.following),c.accounts.followCount(o.following),c.accounts.followCount(e)]);},t,"posting",{broadcastMode:r??"async"})}function Ub(e,t,r){return b(["accounts","unfollow"],e,({following:n})=>[_t(e,n)],async(n,o)=>{await P(t?.adapter,r,[c.accounts.relations(e,o.following),c.accounts.full(o.following),c.accounts.followCount(o.following),c.accounts.followCount(e)]);},t,"posting",{broadcastMode:r??"async"})}function Wb(e,t,r,n){return useMutation({mutationKey:["accounts","bookmarks","add",e],mutationFn:async({author:o,permlink:i})=>{if(!e||!t)throw new Error("[SDK][Account][Bookmarks] \u2013 missing auth");return (await _()(f.privateApiHost+"/private-api/bookmarks-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({author:o,permlink:i,code:t})})).json()},onSuccess:()=>{r(),h().invalidateQueries({queryKey:["accounts","bookmarks",e]});},onError:n})}function Jb(e,t,r,n){return useMutation({mutationKey:["accounts","bookmarks","delete",e],mutationFn:async o=>{if(!e||!t)throw new Error("[SDK][Account][Bookmarks] \u2013 missing auth");return (await _()(f.privateApiHost+"/private-api/bookmarks-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({id:o,code:t})})).json()},onSuccess:()=>{r(),h().invalidateQueries({queryKey:["accounts","bookmarks",e]});},onError:n})}function ev(e,t,r,n){return useMutation({mutationKey:["accounts","favorites","add",e],mutationFn:async o=>{if(!e||!t)throw new Error("[SDK][Account][Favorites] \u2013 missing auth");return (await _()(f.privateApiHost+"/private-api/favorites-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({account:o,code:t})})).json()},onSuccess:(o,i)=>{r();let s=h();s.invalidateQueries({queryKey:c.accounts.favorites(e)}),s.invalidateQueries({queryKey:c.accounts.favoritesInfinite(e)}),s.invalidateQueries({queryKey:c.accounts.checkFavorite(e,i)});},onError:n})}function iv(e,t,r,n){return useMutation({mutationKey:["accounts","favorites","delete",e],mutationFn:async o=>{if(!e||!t)throw new Error("[SDK][Account][Favorites] \u2013 missing auth");let s=await _()(f.privateApiHost+"/private-api/favorites-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({account:o,code:t})});if(!s.ok)throw new Error(`Failed to delete favorite: ${s.status}`);return s.json()},onMutate:async o=>{if(!e)return;let i=h(),s=c.accounts.favorites(e),a=c.accounts.favoritesInfinite(e),u=c.accounts.checkFavorite(e,o);await Promise.all([i.cancelQueries({queryKey:s}),i.cancelQueries({queryKey:a}),i.cancelQueries({queryKey:u})]);let p=i.getQueryData(s);p&&i.setQueryData(s,p.filter(y=>y.account!==o));let l=i.getQueryData(u);i.setQueryData(u,false);let m=i.getQueriesData({queryKey:a}),d=new Map(m);for(let[y,v]of m)v&&i.setQueryData(y,{...v,pages:v.pages.map(A=>({...A,data:A.data.filter(S=>S.account!==o)}))});return {previousList:p,previousInfinite:d,previousCheck:l}},onSuccess:(o,i)=>{r();let s=h();s.invalidateQueries({queryKey:c.accounts.favorites(e)}),s.invalidateQueries({queryKey:c.accounts.favoritesInfinite(e)}),s.invalidateQueries({queryKey:c.accounts.checkFavorite(e,i)});},onError:(o,i,s)=>{let a=h();if(s?.previousList&&a.setQueryData(c.accounts.favorites(e),s.previousList),s?.previousInfinite)for(let[u,p]of s.previousInfinite)a.setQueryData(u,p);s?.previousCheck!==void 0&&a.setQueryData(c.accounts.checkFavorite(e,i),s.previousCheck),n(o);}})}function Bc(e,t){let r=new Map;return e.forEach(([n,o])=>{r.set(n.toString(),o);}),t.forEach(([n,o])=>{r.set(n.toString(),o);}),Array.from(r.entries()).sort(([n],[o])=>n.localeCompare(o)).map(([n,o])=>[n,o])}function co(e,t){let{data:r}=useQuery(D(e));return useMutation({mutationKey:["accounts","keys-update",e],mutationFn:async({keys:n,keepCurrent:o=false,currentKey:i,keysToRevoke:s=[],keysToRevokeByAuthority:a={}})=>{if(n.length===0)throw new Error("[SDK][Update password] \u2013 no new keys provided");if(!r)throw new Error("[SDK][Update password] \u2013 cannot update keys for anon user");let u=p=>{let l=JSON.parse(JSON.stringify(r[p])),d=[...a[p]||[],...a[p]===void 0?s:[]],y=o?l.key_auths.filter(([v])=>!d.includes(v.toString())):[];return l.key_auths=Bc(y,n.map((v,A)=>[v[p].createPublic().toString(),A+1])),l};return W([["account_update",{account:e,json_metadata:r.json_metadata,owner:u("owner"),active:u("active"),posting:u("posting"),memo_key:n[0].memo_key.createPublic().toString()}]],i)},...t})}function gv(e,t){let{data:r}=useQuery(D(e)),{mutateAsync:n}=co(e);return useMutation({mutationKey:["accounts","password-update",e],mutationFn:async({newPassword:o,currentPassword:i,keepCurrent:s})=>{if(!r)throw new Error("[SDK][Update password] \u2013 cannot update password for anon user");let a=M.fromLogin(e,i,"owner");return n({currentKey:a,keepCurrent:s,keys:[{owner:M.fromLogin(e,o,"owner"),active:M.fromLogin(e,o,"active"),posting:M.fromLogin(e,o,"posting"),memo_key:M.fromLogin(e,o,"memo")}]})},...t})}function vv(e,t,r){let n=useQueryClient(),{data:o}=useQuery(D(e));return useMutation({mutationKey:["accounts","revoke-posting",o?.name],mutationFn:async({accountName:i,type:s,key:a})=>{if(!o)throw new Error("[SDK][Accounts] \u2013\xA0cannot revoke posting for anonymous user");let u=JSON.parse(JSON.stringify(o.posting));u.account_auths=u.account_auths.filter(([l])=>l!==i);let p={account:o.name,posting:u,memo_key:o.memo_key,json_metadata:o.json_metadata};if(s==="key"&&a)return W([["account_update",p]],a);if(s==="keychain"){if(!r?.broadcast)throw new Error("[SDK][Accounts] \u2013 missing keychain broadcaster");return r.broadcast([["account_update",p]],"active")}else return !t.hsCallbackUrl&&process.env.NODE_ENV==="development"&&console.warn("[SDK][Accounts] hsCallbackUrl not provided for HiveSigner revoke-posting; user will not be redirected after signing."),Cn.sendOperation(["account_update",p],t.hsCallbackUrl?{callback:t.hsCallbackUrl}:{},()=>{})},onError:t.onError,onSuccess:(i,s,a)=>{t.onSuccess?.(i,s,a),n.setQueryData(D(e).queryKey,u=>({...u,posting:{...u?.posting,account_auths:u?.posting?.account_auths?.filter(([p])=>p!==s.accountName)??[]}}));}})}function Sv(e,t,r,n){let{data:o}=useQuery(D(e));return useMutation({mutationKey:["accounts","recovery",o?.name],mutationFn:async({accountName:i,type:s,key:a,email:u})=>{if(!o)throw new Error("[SDK][Accounts] \u2013\xA0cannot change recovery for anonymous user");let p={account_to_recover:o.name,new_recovery_account:i,extensions:[]};if(s==="ecency"){if(!t)throw new Error("[SDK][Accounts] \u2013 missing access token");return _()(f.privateApiHost+"/private-api/recoveries-add",{method:"POST",body:JSON.stringify({code:t,email:u,publicKeys:[...o.owner.key_auths,...o.active.key_auths,...o.posting.key_auths,o.memo_key]})})}else {if(s==="key"&&a)return W([["change_recovery_account",p]],a);if(s==="keychain"){if(!n?.broadcast)throw new Error("[SDK][Accounts] \u2013 missing keychain broadcaster");return n.broadcast([["change_recovery_account",p]],"owner")}else return !r.hsCallbackUrl&&process.env.NODE_ENV==="development"&&console.warn("[SDK][Accounts] hsCallbackUrl not provided for HiveSigner update-recovery; user will not be redirected after signing."),Cn.sendOperation(["change_recovery_account",p],r.hsCallbackUrl?{callback:r.hsCallbackUrl}:{},()=>{})}},onError:r.onError,onSuccess:r.onSuccess})}function Tv(e,t){let r=e.key_auths.filter(([o])=>!t.has(String(o))).reduce((o,[,i])=>o+i,0),n=(e.account_auths??[]).reduce((o,[,i])=>o+i,0);return r+n>=e.weight_threshold}function uo(e,t){let r=new Set(t.map(s=>s.toString())),n=s=>s.key_auths.some(([a])=>r.has(String(a))),o=s=>{let a=JSON.parse(JSON.stringify(s));return a.key_auths=a.key_auths.filter(([u])=>!r.has(u.toString())),a},i=n(e.owner);return {account:e.name,json_metadata:e.json_metadata,owner:i?o(e.owner):void 0,active:o(e.active),posting:o(e.posting),memo_key:e.memo_key}}function Dv(e,t){let{data:r}=useQuery(D(e));return useMutation({mutationKey:["accounts","revoke-key",r?.name],mutationFn:async({currentKey:n,revokingKey:o})=>{if(!r)throw new Error("[SDK][Revoke key] \u2013 cannot update keys for anon user");let i=Array.isArray(o)?o:[o],s=uo(r,i);return W([["account_update",s]],n)},...t})}function Qv(e,t,r){return b(["accounts","claimAccount"],e,({creator:n,fee:o="0.000 HIVE"})=>[_r(n,o)],async(n,o)=>{await P(t?.adapter,r,[c.accounts.full(o.creator)]);},t,"active",{broadcastMode:r})}function jv(e,t,r){return b(["accounts","grant-posting-permission"],e,n=>[wr(e,n.currentPosting,n.grantedAccount,n.weightThreshold,n.memoKey,n.jsonMetadata)],async()=>{await P(t?.adapter,r,[c.accounts.full(e)]);},t,"active",{broadcastMode:r})}function Gv(e,t,r){return b(["accounts","create"],e,n=>[n.useClaimed?hr(e,n.newAccountName,n.keys):yr(e,n.newAccountName,n.keys,n.fee)],async()=>{await P(t?.adapter,r,[c.accounts.full(e)]);},t,"active",{broadcastMode:r})}var Or=300*60*24,zc=1e4,Jc=5e7;function po(e){let t=x(e.vesting_shares).amount,r=x(e.received_vesting_shares).amount,n=x(e.delegated_vesting_shares).amount,o=x(e.vesting_withdraw_rate).amount,i=(Number(e.to_withdraw)-Number(e.withdrawn))/1e6,s=Math.min(o,i);return t+r-n-s}function Yc(e,t,r){let n=e*1e6;return (t*r/1e4/50+1)*n/1e4}function Xc(e){if(Number.isFinite(e.lastHardfork))return e.lastHardfork>=28;let[t="0",r="0"]=(e.currentHardforkVersion??"0.0.0").split(".");return Number(t)>1||Number(t)===1&&Number(r)>=28}function Zc(e,t,r){let n=t.votePowerReserveRate||Number(t.raw?.globalDynamic?.vote_power_reserve_rate??0);if(!Number.isFinite(n)||n<=0)return 0;let o=po(e);if(!Number.isFinite(o)||o<=0)return 0;let i=o*1e6,s=Math.ceil(i*r*60*60*24/zc/(n*Or)),a=Lt(e),u=Math.min(a.current_mana,a.max_mana);return !Number.isFinite(u)||s>u?0:Math.max(s-Jc,0)}function eu(e,t,r,n=1e4){if(!Number.isFinite(r)||!Number.isFinite(n))return 0;if(Xc(t))return Zc(e,t,n);let o=0;try{if(o=po(e),!Number.isFinite(o))return 0}catch{return 0}return Yc(o,r,n)}function Xv(e){return Lt(e).percentage/100}function Zv(e){if(!Number.isFinite(e))throw new TypeError("Voting power must be a finite number");if(e<0||e>100)throw new RangeError("Voting power must be between 0 and 100");return (100-e)*100*Or/1e4}function e0(e){let t=parseFloat(e.vesting_shares)+parseFloat(e.received_vesting_shares)-parseFloat(e.delegated_vesting_shares),r=Math.floor(Date.now()/1e3)-e.downvote_manabar.last_update_time,n=t*1e6/4;if(n<=0)return 0;let o=parseFloat(e.downvote_manabar.current_mana.toString())+r*n/Or;o>n&&(o=n);let i=o*100/n;return isNaN(i)?0:i>100?100:i}function t0(e){return dt(e).percentage/100}function r0(e,t,r,n=1e4){if(!Number.isFinite(r)||!Number.isFinite(n))return 0;let{fundRecentClaims:o,fundRewardBalance:i,base:s,quote:a}=t;if(!Number.isFinite(o)||!Number.isFinite(i)||!Number.isFinite(s)||!Number.isFinite(a)||o===0||a===0)return 0;let u=eu(e,t,r,n);return Number.isFinite(u)?u/o*i*(s/a):0}var tu={vote:"posting",comment:"posting",delete_comment:"posting",comment_options:"posting",claim_reward_balance:"posting",cancel_transfer_from_savings:"active",collateralized_convert:"active",convert:"active",delegate_vesting_shares:"active",recurrent_transfer:"active",set_withdraw_vesting_route:"active",transfer:"active",transfer_from_savings:"active",transfer_to_savings:"active",transfer_to_vesting:"active",withdraw_vesting:"active",limit_order_create:"active",limit_order_cancel:"active",account_update:"active",account_update2:"active",claim_account:"active",create_claimed_account:"active",account_witness_proxy:"active",account_witness_vote:"active",remove_proposal:"active",update_proposal_votes:"active",change_recovery_account:"owner",request_account_recovery:"owner",recover_account:"owner",reset_account:"owner",set_reset_account:"owner"};function ru(e){let t=e[0],r=e[1];if(t!=="custom_json")throw new Error("Operation is not a custom_json operation");let n=r;return n.required_auths&&n.required_auths.length>0?"active":(n.required_posting_auths&&n.required_posting_auths.length>0,"posting")}function nu(e){let t=e[0];if(t!=="create_proposal"&&t!=="update_proposal")throw new Error("Operation is not a proposal operation");return "active"}function ou(e){let t=e[0];return t==="custom_json"?ru(e):t==="create_proposal"||t==="update_proposal"?nu(e):tu[t]??"posting"}function o0(e){let t="posting";for(let r of e){let n=ou(r);if(n==="owner")return "owner";n==="active"&&t==="posting"&&(t="active");}return t}function u0(e){return useMutation({mutationKey:["operations","sign",e],mutationFn:({operation:t,keyOrSeed:r})=>{if(!e)throw new Error("[Operations][Sign] \u2013 cannot sign op with anon user");let n;return r.split(" ").length===12?n=M.fromLogin(e,r,"active"):xn(r)?n=M.fromString(r):n=M.from(r),W([t],n)}})}function d0(e,t,r="active"){return useMutation({mutationKey:["operations","sign-keychain",e],mutationFn:({operation:n})=>{if(!e)throw new Error("[SDK][Keychain] \u2013\xA0cannot sign operation with anon user");if(!t?.broadcast)throw new Error("[SDK][Keychain] \u2013 missing keychain broadcaster");return t.broadcast([n],r)}})}function y0(e="/"){return useMutation({mutationKey:["operations","sign-hivesigner",e],mutationFn:async({operation:t})=>Cn.sendOperation(t,{callback:e},()=>{})})}function b0(){return queryOptions({queryKey:["operations","chain-properties"],queryFn:async()=>await g("condenser_api.get_chain_properties",[])})}function lo(e,t,r){return {...e,...t??{},title:r.title,body:r.body}}function fo(e,t){return {...e??{},title:t.title,body:t.body}}function S0(e,t){return useMutation({mutationKey:["posts","add-fragment",e],mutationFn:async({title:r,body:n})=>{if(!t)throw new Error("[SDK][Posts] Missing access token");return (await _()(f.privateApiHost+"/private-api/fragments-add",{method:"POST",body:JSON.stringify({code:t,title:r,body:n}),headers:{"Content-Type":"application/json"}})).json()},onSuccess(r,n){let o=h(),i=fo(r,n);o.setQueryData(De(e,t).queryKey,s=>[i,...s??[]]),o.setQueriesData({queryKey:["posts","fragments","infinite",e]},s=>s&&{...s,pages:s.pages.map((a,u)=>u===0?{...a,data:[i,...a.data]}:a)});}})}function I0(e,t){return useMutation({mutationKey:["posts","edit-fragment",e],mutationFn:async({fragmentId:r,title:n,body:o})=>{if(!t)throw new Error("[SDK][Posts] Missing access token");return (await _()(f.privateApiHost+"/private-api/fragments-update",{method:"POST",body:JSON.stringify({code:t,id:r,title:n,body:o}),headers:{"Content-Type":"application/json"}})).json()},onSuccess(r,n){let o=h(),i=s=>lo(s,r,n);o.setQueryData(De(e,t).queryKey,s=>s?.map(a=>a.id===n.fragmentId?i(a):a)??[]),o.setQueriesData({queryKey:["posts","fragments","infinite",e]},s=>s&&{...s,pages:s.pages.map(a=>({...a,data:a.data.map(u=>u.id===n.fragmentId?i(u):u)}))});}})}function H0(e,t){return useMutation({mutationKey:["posts","remove-fragment",e],mutationFn:async({fragmentId:r})=>{if(!t)throw new Error("[SDK][Posts] Missing access token");return _()(f.privateApiHost+"/private-api/fragments-delete",{method:"POST",body:JSON.stringify({code:t,id:r}),headers:{"Content-Type":"application/json"}})},onSuccess(r,n){let o=h();o.setQueryData(De(e,t).queryKey,i=>[...i??[]].filter(({id:s})=>s!==n.fragmentId)),o.setQueriesData({queryKey:["posts","fragments","infinite",e]},i=>i&&{...i,pages:i.pages.map(s=>({...s,data:s.data.filter(a=>a.id!==n.fragmentId)}))});}})}async function U(e){if(!e.ok){let r;try{r=await e.json();}catch{r=void 0;}let n=new Error(`Request failed with status ${e.status}`);throw n.status=e.status,n.data=r,n}let t=await e.text();if(!t||t.trim()==="")return "";try{return JSON.parse(t)}catch(r){return console.warn("[SDK] Failed to parse JSON response:",r,"Response:",t),""}}async function j0(e,t,r,n){let i=await _()(f.privateApiHost+"/private-api/account-create",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:e,email:t,referral:r,captcha_token:n})}),s=await U(i);return {status:i.status,data:s}}async function L0(e){let r=await _()(f.privateApiHost+"/private-api/subscribe",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:e})}),n=await U(r);return {status:r.status,data:n}}async function W0(e,t,r="",n=""){let o={code:e,ty:t};r&&(o.bl=r),n&&(o.tx=n);let s=await _()(f.privateApiHost+"/private-api/usr-activity",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(o)});await U(s);}async function $0(e,t,r=null,n=null){let o={code:e};t&&(o.filter=t),r&&(o.since=r),n&&(o.user=n);let s=await _()(f.privateApiHost+"/private-api/notifications",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(o)});return U(s)}async function G0(e,t,r,n,o,i){let s={code:e,username:t,token:i,system:r,allows_notify:n,notify_types:o},u=await _()(f.privateApiHost+"/private-api/register-device",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(s)});return U(u)}async function z0(e,t,r){let n={code:e,username:t,token:r},i=await _()(f.privateApiHost+"/private-api/detail-device",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(n)});return U(i)}async function mo(e,t){let r={code:e};t&&(r.id=t);let o=await _()(f.privateApiHost+"/private-api/notifications/mark",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return U(o)}async function go(e,t){let r={code:e,url:t},o=await _()(f.privateApiHost+"/private-api/images-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return U(o)}var fu="https://i.ecency.com";async function yo(e,t,r){let n=_(),o=new FormData;o.append("file",e);let i=await n(`${fu}/hs/${t}`,{method:"POST",body:o,signal:r});return U(i)}async function J0(e,t,r,n){let o=_(),i=new FormData;i.append("file",e);let s=await o(`${f.imageHost}/${t}/${r}`,{method:"POST",body:i,signal:n});return U(s)}async function ho(e,t){let r={code:e,id:t},o=await _()(f.privateApiHost+"/private-api/images-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return U(o)}async function _o(e,t,r,n,o){let i={code:e,title:t,body:r,tags:n,meta:o},a=await _()(f.privateApiHost+"/private-api/drafts-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(i)});return U(a)}async function wo(e,t,r,n,o,i){let s={code:e,id:t,title:r,body:n,tags:o,meta:i},u=await _()(f.privateApiHost+"/private-api/drafts-update",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(s)});return U(u)}async function bo(e,t){let r={code:e,id:t},o=await _()(f.privateApiHost+"/private-api/drafts-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return U(o)}async function vo(e,t,r,n,o,i,s,a){let u={code:e,permlink:t,title:r,body:n,meta:o,schedule:s,reblog:a};i&&(u.options=i);let l=await _()(f.privateApiHost+"/private-api/schedules-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(u)});return U(l)}async function Ao(e,t){let r={code:e,id:t},o=await _()(f.privateApiHost+"/private-api/schedules-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return U(o)}async function Po(e,t){let r={code:e,id:t},o=await _()(f.privateApiHost+"/private-api/schedules-move",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return U(o)}async function Y0(e,t,r){let n={code:e,author:t,permlink:r},i=await _()(f.privateApiHost+"/private-api/promoted-post",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(n)});return U(i)}async function X0(e,t,r){let n={username:e,email:t,friend:r},i=await _()(f.privateApiHost+"/private-api/account-create-friend",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(n)});return U(i)}function nA(e,t,r,n){return useMutation({mutationKey:["posts","drafts","add",e],mutationFn:async({title:o,body:i,tags:s,meta:a})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for addDraft");return _o(t,o,i,s,a)},onSuccess:o=>{r?.();let i=h();o?.drafts?i.setQueryData(c.posts.drafts(e),o.drafts):i.invalidateQueries({queryKey:c.posts.drafts(e)}),i.invalidateQueries({queryKey:c.posts.draftsInfinite(e)});},onError:n})}function cA(e,t,r,n){return useMutation({mutationKey:["posts","drafts","update",e],mutationFn:async({draftId:o,title:i,body:s,tags:a,meta:u})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for updateDraft");return wo(t,o,i,s,a,u)},onSuccess:()=>{r?.();let o=h();o.invalidateQueries({queryKey:c.posts.drafts(e)}),o.invalidateQueries({queryKey:c.posts.draftsInfinite(e)});},onError:n})}function mA(e,t,r,n){return useMutation({mutationKey:["posts","drafts","delete",e],mutationFn:async({draftId:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for deleteDraft");return bo(t,o)},onMutate:async({draftId:o})=>{if(!e)return;let i=h(),s=c.posts.drafts(e),a=c.posts.draftsInfinite(e);await Promise.all([i.cancelQueries({queryKey:s}),i.cancelQueries({queryKey:a})]);let u=i.getQueryData(s);u&&i.setQueryData(s,u.filter(m=>m._id!==o));let p=i.getQueriesData({queryKey:a}),l=new Map(p);for(let[m,d]of p)d&&i.setQueryData(m,{...d,pages:d.pages.map(y=>({...y,data:y.data.filter(v=>v._id!==o)}))});return {previousList:u,previousInfinite:l}},onSuccess:()=>{r?.();let o=h();o.invalidateQueries({queryKey:c.posts.drafts(e)}),o.invalidateQueries({queryKey:c.posts.draftsInfinite(e)});},onError:(o,i,s)=>{let a=h();if(s?.previousList&&a.setQueryData(c.posts.drafts(e),s.previousList),s?.previousInfinite)for(let[u,p]of s.previousInfinite)a.setQueryData(u,p);n?.(o);}})}function wA(e,t,r,n){return useMutation({mutationKey:["posts","schedules","add",e],mutationFn:async({permlink:o,title:i,body:s,meta:a,options:u,schedule:p,reblog:l})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for addSchedule");return vo(t,o,i,s,a,u,p,l)},onSuccess:()=>{r?.(),h().invalidateQueries({queryKey:c.posts.schedules(e)});},onError:n})}function OA(e,t,r,n){return useMutation({mutationKey:["posts","schedules","delete",e],mutationFn:async({id:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for deleteSchedule");return Ao(t,o)},onSuccess:o=>{r?.();let i=h();o?i.setQueryData(c.posts.schedules(e),o):i.invalidateQueries({queryKey:c.posts.schedules(e)});},onError:n})}function CA(e,t,r,n){return useMutation({mutationKey:["posts","schedules","move",e],mutationFn:async({id:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for moveSchedule");return Po(t,o)},onSuccess:o=>{r?.();let i=h();o?i.setQueryData(c.posts.schedules(e),o):i.invalidateQueries({queryKey:c.posts.schedules(e)}),i.invalidateQueries({queryKey:c.posts.drafts(e)});},onError:n})}function KA(e,t,r,n){return useMutation({mutationKey:["posts","images","add",e],mutationFn:async({url:o,code:i})=>{let s=i??t;if(!e||!s)throw new Error("[SDK][Posts] \u2013 missing auth for addImage");return go(s,o)},onSuccess:()=>{r?.(),h().invalidateQueries({queryKey:c.posts.images(e)});},onError:n})}function MA(e,t,r,n){return useMutation({mutationKey:["posts","images","delete",e],mutationFn:async({imageId:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for deleteImage");return ho(t,o)},onSuccess:(o,i)=>{r?.();let s=h(),{imageId:a}=i;s.setQueryData(["posts","images",e],u=>u?.filter(p=>p._id!==a)),s.setQueriesData({queryKey:["posts","images","infinite",e]},u=>u&&{...u,pages:u.pages.map(p=>({...p,data:p.data.filter(l=>l._id!==a)}))});},onError:n})}function VA(e,t){return useMutation({mutationKey:["posts","images","upload"],mutationFn:async({file:r,token:n,signal:o})=>yo(r,n,o),onSuccess:e,onError:t})}function At(e,t){return `/@${e}/${t}`}function Pu(e,t,r){return (r??h()).getQueryData(c.posts.entry(At(e,t)))}function Ou(e,t){(t??h()).setQueryData(c.posts.entry(At(e.author,e.permlink)),e);}function vt(e,t,r,n){let o=n??h(),i=At(e,t),s=o.getQueryData(c.posts.entry(i));if(!s)return;let a=r(s);return o.setQueryData(c.posts.entry(i),a),s}var qe;(a=>{function e(u,p,l,m,d){vt(u,p,y=>({...y,active_votes:l,stats:{...y.stats||{gray:false,hide:false,flag_weight:0,total_votes:0},total_votes:l.length,flag_weight:y.stats?.flag_weight||0},total_votes:l.length,payout:m,pending_payout_value:String(m)}),d);}a.updateVotes=e;function t(u,p,l,m){vt(u,p,d=>({...d,reblogs:l}),m);}a.updateReblogsCount=t;function r(u,p,l,m){vt(u,p,d=>({...d,children:l}),m);}a.updateRepliesCount=r;function n(u,p,l,m){vt(p,l,d=>({...d,children:d.children+1,replies:[u,...d.replies]}),m);}a.addReply=n;function o(u,p){u.forEach(l=>Ou(l,p));}a.updateEntries=o;function i(u,p,l){(l??h()).invalidateQueries({queryKey:c.posts.entry(At(u,p))});}a.invalidateEntry=i;function s(u,p,l){return Pu(u,p,l)}a.getEntry=s;})(qe||={});function JA(e,t,r){return b(["posts","vote"],e,({author:n,permlink:o,weight:i})=>[Jt(e,n,o,i)],async(n,o)=>{let i=qe.getEntry(o.author,o.permlink);if(i?.active_votes){let a=[...i.active_votes.filter(p=>p.voter!==e),...o.weight!==0?[{rshares:o.weight,voter:e}]:[]],u=i.payout+(o.estimated??0);qe.updateVotes(o.author,o.permlink,a,u);}let s=n?.id??n?.tx_id;if(t?.adapter?.recordActivity&&s&&t.adapter.recordActivity(120,s,n?.block_num).catch(()=>{}),t?.adapter?.invalidateQueries){let a=()=>{t.adapter.invalidateQueries([c.posts.entry(`/@${o.author}/${o.permlink}`),c.accounts.full(e)]);};(r??"async")==="async"?setTimeout(a,4e3):a();}},t,"posting",{broadcastMode:r??"async"})}function tP(e,t,r){return b(["posts","reblog"],e,({author:n,permlink:o,deleteReblog:i})=>[Xt(e,n,o,i??false)],async(n,o)=>{let i=qe.getEntry(o.author,o.permlink);if(i){let p=Math.max(0,(i.reblogs??0)+(o.deleteReblog?-1:1));qe.updateReblogsCount(o.author,o.permlink,p);}let s=n?.id??n?.tx_id;t?.adapter?.recordActivity&&s&&t.adapter.recordActivity(130,s,n?.block_num).catch(()=>{});let a=()=>{h().invalidateQueries({queryKey:c.posts.accountPostsBlogPrefix(e)}),t?.adapter?.invalidateQueries&&t.adapter.invalidateQueries([c.posts.entry(`/@${o.author}/${o.permlink}`),c.posts.rebloggedBy(o.author,o.permlink)]);};(r??"async")==="async"?setTimeout(a,4e3):a();},t,"posting",{broadcastMode:r??"async"})}function iP(e,t,r){return b(["posts","comment"],e,n=>{let o=[];if(o.push(Ee(n.author,n.permlink,n.parentAuthor,n.parentPermlink,n.title,n.body,n.jsonMetadata)),n.options){let{maxAcceptedPayout:i="1000000.000 HBD",percentHbd:s=1e4,allowVotes:a=true,allowCurationRewards:u=true,beneficiaries:p=[]}=n.options,l=[];if(p.length>0){let m=[...p].sort((d,y)=>d.account.localeCompare(y.account));l.push([0,{beneficiaries:m.map(d=>({account:d.account,weight:d.weight}))}]);}o.push(Se(n.author,n.permlink,i,s,a,u,l));}return o},async(n,o)=>{let i=!o.parentAuthor,s=i?100:110,a=n?.id??n?.tx_id;if(t?.adapter?.recordActivity&&a&&t.adapter.recordActivity(s,a,n?.block_num).catch(()=>{}),t?.adapter?.invalidateQueries){let u=[c.accounts.full(e),c.resourceCredits.account(e)];if(!i){u.push(c.posts.entry(`/@${o.parentAuthor}/${o.parentPermlink}`));let p=o.rootAuthor||o.parentAuthor,l=o.rootPermlink||o.parentPermlink;u.push({predicate:m=>{let d=m.queryKey;return Array.isArray(d)&&d[0]==="posts"&&d[1]==="discussions"&&d[2]===p&&d[3]===l}});}await t.adapter.invalidateQueries(u);}},t,"posting",{broadcastMode:r})}function cP(e,t,r,n){let o=n??h(),i=o.getQueriesData({predicate:s=>{let a=s.queryKey;return Array.isArray(a)&&a[0]==="posts"&&a[1]==="discussions"&&a[2]===t&&a[3]===r}});for(let[s,a]of i)a&&o.setQueryData(s,[e,...a]);}function Oo(e,t,r,n,o){let i=o??h(),s=new Map,a=i.getQueriesData({predicate:u=>{let p=u.queryKey;return Array.isArray(p)&&p[0]==="posts"&&p[1]==="discussions"&&p[2]===r&&p[3]===n}});for(let[u,p]of a)p&&(s.set(u,p),i.setQueryData(u,p.filter(l=>l.author!==e||l.permlink!==t)));return s}function xo(e,t){let r=t??h();for(let[n,o]of e)r.setQueryData(n,o);}function uP(e,t,r,n){let o=n??h(),i=`/@${e}/${t}`,s=o.getQueryData(c.posts.entry(i));return s&&o.setQueryData(c.posts.entry(i),{...s,...r}),s}function pP(e,t,r,n){let o=n??h(),i=`/@${e}/${t}`;o.setQueryData(c.posts.entry(i),r);}function gP(e,t,r){return b(["posts","deleteComment"],e,({author:n,permlink:o})=>[Yt(n,o)],async(n,o)=>{if(t?.adapter?.invalidateQueries){let i=[c.accounts.full(e)];if(o.parentAuthor&&o.parentPermlink){i.push(c.posts.entry(`/@${o.parentAuthor}/${o.parentPermlink}`));let s=o.rootAuthor||o.parentAuthor,a=o.rootPermlink||o.parentPermlink;i.push({predicate:u=>{let p=u.queryKey;return Array.isArray(p)&&p[0]==="posts"&&p[1]==="discussions"&&p[2]===s&&p[3]===a}});}await t.adapter.invalidateQueries(i);}},t,"posting",{broadcastMode:r,onMutate:async n=>{let o=n.rootAuthor||n.parentAuthor,i=n.rootPermlink||n.parentPermlink;return o&&i?{snapshots:Oo(n.author,n.permlink,o,i)}:{}},onError:(n,o,i)=>{let{snapshots:s}=i??{};s&&xo(s);}})}function wP(e,t,r){return b(["posts","cross-post"],e,n=>{let o=[];if(o.push(Ee(n.author,n.permlink,"",n.parentPermlink,n.title,n.body,n.jsonMetadata)),n.options){let{maxAcceptedPayout:i="1000000.000 HBD",percentHbd:s=1e4,allowVotes:a=true,allowCurationRewards:u=true}=n.options;o.push(Se(n.author,n.permlink,i,s,a,u,[]));}return o},async(n,o)=>{if(t?.adapter?.invalidateQueries){let i=[c.accounts.full(e),{predicate:s=>{let a=s.queryKey;return Array.isArray(a)&&a[0]==="posts"&&a[1]==="posts-ranked"&&a[3]===o.parentPermlink}}];await t.adapter.invalidateQueries(i);}},t,"posting",{broadcastMode:r??"async"})}function PP(e,t,r){return b(["posts","update-reply"],e,n=>{let o=[];if(o.push(Ee(n.author,n.permlink,n.parentAuthor,n.parentPermlink,n.title,n.body,n.jsonMetadata)),n.options){let{maxAcceptedPayout:i="1000000.000 HBD",percentHbd:s=1e4,allowVotes:a=true,allowCurationRewards:u=true,beneficiaries:p=[]}=n.options,l=[];if(p.length>0){let m=[...p].sort((d,y)=>d.account.localeCompare(y.account));l.push([0,{beneficiaries:m.map(d=>({account:d.account,weight:d.weight}))}]);}o.push(Se(n.author,n.permlink,i,s,a,u,l));}return o},async(n,o)=>{let i=n?.id??n?.tx_id;if(t?.adapter?.recordActivity&&i&&t.adapter.recordActivity(110,i,n?.block_num).catch(s=>{console.debug("[SDK][Posts][useUpdateReply] recordActivity failed",{activityType:110,blockNum:n?.block_num,transactionId:i,error:s});}),t?.adapter?.invalidateQueries){let s=[c.resourceCredits.account(e)];s.push(c.posts.entry(`/@${o.parentAuthor}/${o.parentPermlink}`));let a=o.rootAuthor||o.parentAuthor,u=o.rootPermlink||o.parentPermlink;s.push({predicate:p=>{let l=p.queryKey;return Array.isArray(l)&&l[0]==="posts"&&l[1]==="discussions"&&l[2]===a&&l[3]===u}}),await t.adapter.invalidateQueries(s);}},t,"posting",{broadcastMode:r})}function EP(e,t,r){return b(["ecency","promote"],e,({author:n,permlink:o,duration:i})=>[Ar(e,n,o,i)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([[...c.posts._promotedPrefix],[...c.points._prefix(e)],c.posts.entry(`/@${o.author}/${o.permlink}`)]);},t,"active",{broadcastMode:r})}var xu=[3e3,3e3,3e3],ku=e=>new Promise(t=>setTimeout(t,e));async function Eu(e,t){return g("condenser_api.get_content",[e,t])}async function Su(e,t,r=0,n){let o=n?.delays??xu,i;try{i=await Eu(e,t);}catch{i=void 0;}if(i||r>=o.length)return;let s=o[r];return s>0&&await ku(s),Su(e,t,r+1,n)}var Me={};rt(Me,{useRecordActivity:()=>xr});function Tu(){return typeof window<"u"&&window.location?{url:window.location.href,domain:window.location.host}:{url:"",domain:""}}function xr(e,t,r){return useMutation({mutationKey:["analytics",t],mutationFn:async()=>{if(!t)throw new Error("[SDK][Analytics] \u2013 no activity type provided");let n=_(),o=Tu(),i=r?.url??o.url,s=r?.domain??o.domain;try{await n(f.plausibleHost+"/api/event",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({name:t,url:i,domain:s,props:{username:e}})});}catch{}}})}function BP(e){return queryOptions({queryKey:["analytics","discover-leaderboard",e],queryFn:async({signal:t})=>{let r=await fetch(f.privateApiHost+`/private-api/leaderboard/${e}`,{signal:t});if(!r.ok)throw new Error(`Failed to fetch leaderboard: ${r.status}`);return r.json()}})}function UP(e){return queryOptions({queryKey:["analytics","discover-curation",e],queryFn:async({signal:t})=>{let r=await fetch(f.privateApiHost+`/private-api/curation/${e}`,{signal:t});if(!r.ok)throw new Error(`Failed to fetch curation data: ${r.status}`);let n=await r.json(),o=n.map(s=>s.account),i=await g("condenser_api.get_accounts",[o]);for(let s=0;s<i.length;s++){let a=i[s],u=n[s],p=typeof a.vesting_shares=="string"?a.vesting_shares:a.vesting_shares.toString(),l=typeof a.received_vesting_shares=="string"?a.received_vesting_shares:a.received_vesting_shares.toString(),m=typeof a.delegated_vesting_shares=="string"?a.delegated_vesting_shares:a.delegated_vesting_shares.toString(),d=typeof a.vesting_withdraw_rate=="string"?a.vesting_withdraw_rate:a.vesting_withdraw_rate.toString(),y=parseFloat(p)+parseFloat(l)-parseFloat(m)-parseFloat(d);u.efficiency=u.vests/y;}return n.sort((s,a)=>a.efficiency-s.efficiency),n}})}function WP(e,t=[],r=["visitors","pageviews","visit_duration"],n){let o=[...t].sort(),i=[...r].sort();return queryOptions({queryKey:["analytics","page-stats",e,o,i,n],queryFn:async({signal:s})=>{let a=await fetch(f.privateApiHost+"/api/stats",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({metrics:r,url:encodeURIComponent(e),dimensions:t,date_range:n}),signal:s});if(!a.ok)throw new Error(`Failed to fetch page stats: ${a.status}`);return a.json()},enabled:!!e,staleTime:0})}var Sr={};rt(Sr,{getAccountTokenQueryOptions:()=>Er,getAccountVideosQueryOptions:()=>Mu});var kr={};rt(kr,{getDecodeMemoQueryOptions:()=>Du});function Du(e,t,r){return queryOptions({queryKey:["integrations","hivesigner","decode-memo",e],queryFn:async()=>{if(r)return new Cn.Client({accessToken:r}).decode(t)}})}var ko={queries:kr};function Er(e,t){return queryOptions({queryKey:["integrations","3speak","authenticate",e],enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Integrations][3Speak] \u2013\xA0anon user");let n=await _()(`https://studio.3speak.tv/mobile/login?username=${e}&hivesigner=true`,{headers:{"Content-Type":"application/json"}}),o=ko.queries.getDecodeMemoQueryOptions(e,(await n.json()).memo,t);await h().prefetchQuery(o);let{memoDecoded:i}=h().getQueryData(o.queryKey);return i.replace("#","")}})}function Mu(e,t){return queryOptions({queryKey:["integrations","3speak","videos",e],enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Integrations][3Speak] \u2013\xA0anon user");let r=Er(e,t);await h().prefetchQuery(r);let n=h().getQueryData(r.queryKey);if(!n)throw new Error("[SDK][Integrations][3Speak] \u2013 missing account token");return await(await _()("https://studio.3speak.tv/mobile/api/my-videos",{headers:{"Content-Type":"application/json",Authorization:`Bearer ${n}`}})).json()}})}var fO={queries:Sr};function _O(e){return queryOptions({queryKey:["integrations","hiveposh","links",e],retry:false,queryFn:async()=>{try{let r=await _()(`https://hiveposh.com/api/v0/linked-accounts/${e}`,{headers:{"Content-Type":"application/json"}});if(r.status===400&&(await r.json().catch(()=>({})))?.message==="User Not Connected"||!r.ok)return null;let n=await r.json();return {twitter:{username:n.twitter_username,profile:n.twitter_profile},reddit:{username:n.reddit_username,profile:n.reddit_profile}}}catch{return null}}})}function AO({url:e,dimensions:t=[],metrics:r=["visitors","pageviews","visit_duration"],filterBy:n="event:page",dateRange:o,enabled:i=true}){return queryOptions({queryKey:["integrations","plausible",e,t,r,n,o],queryFn:async()=>{let a=await _()(`${f.privateApiHost}/api/stats`,{method:"POST",body:JSON.stringify({metrics:r,url:encodeURIComponent(e),dimensions:t,filterBy:n,...o?{date_range:o}:{}}),headers:{"Content-Type":"application/json"}});if(!a.ok)throw new Error(`Failed to fetch Plausible stats: ${a.status}`);return await a.json()},enabled:!!e&&i,retry:1})}function kO(){return queryOptions({queryKey:["resource-credits","stats"],queryFn:async()=>(await g("rc_api.get_rc_stats",{})).rc_stats})}function TO(e){return queryOptions({queryKey:["resource-credits","account",e],queryFn:async()=>(await g("rc_api.find_rc_accounts",{accounts:[e]})).rc_accounts,enabled:!!e})}var Eo={ready:false,currentMana:0,maxMana:0,avgCost:0,estimatedCost:0,willLikelyFail:false,deficit:0,remaining:0};function FO({rcAccount:e,rcStats:t,operation:r,buffer:n=1.2}){if(!e||!t?.ops)return Eo;let{current_mana:o,max_mana:i}=dt(e),s=Number(t.ops[r]?.avg_cost??0);if(!(s>0))return {...Eo,ready:true,currentMana:o,maxMana:i};let a=Number.isFinite(n)&&n>0?n:1.2,u=s*a,p=o<u;return {ready:true,currentMana:o,maxMana:i,avgCost:s,estimatedCost:u,willLikelyFail:p,deficit:p?Math.ceil(u-o):0,remaining:Math.floor(o/s)}}function BO(e,t,r){return queryOptions({queryKey:["games","status-check",r,e],enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Games] \u2013 missing auth");return await(await _()(f.privateApiHost+"/private-api/get-game",{method:"POST",body:JSON.stringify({game_type:r,code:t}),headers:{"Content-Type":"application/json"}})).json()}})}function UO(e,t,r,n){let{mutateAsync:o}=xr(e,"spin-rolled");return useMutation({mutationKey:["games","post",r,e],mutationFn:async()=>{if(!e||!t)throw new Error("[SDK][Games] \u2013 missing auth");return await(await _()(f.privateApiHost+"/private-api/post-game",{method:"POST",body:JSON.stringify({game_type:r,code:t,key:n}),headers:{"Content-Type":"application/json"}})).json()},onSuccess(){o();}})}function WO(e){let t=e?.replace("@","");return queryOptions({queryKey:c.quests.status(t),enabled:!!t,queryFn:async()=>{if(!t)throw new Error("[SDK][Quests] \u2013 username wasn't provided");let n=await _()(f.privateApiHost+"/private-api/quests",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:t})});if(!n.ok)throw new Error(`Failed to fetch quests: ${n.status}`);return await n.json()},staleTime:3e4,refetchOnMount:true})}var $u=[{id:"checkin",tier:"daily",goal:1,i18nKey:"checkin",icon:"check-circle"},{id:"post",tier:"daily",goal:1,i18nKey:"post",icon:"pencil"},{id:"comment",tier:"daily",goal:3,i18nKey:"comment",icon:"comment"},{id:"vote",tier:"daily",goal:10,i18nKey:"vote",icon:"chevron-up-circle"},{id:"reblog",tier:"daily",goal:1,i18nKey:"reblog",icon:"repeat"},{id:"spin",tier:"daily",goal:1,i18nKey:"spin",icon:"gift"},{id:"post",tier:"weekly",goal:5,i18nKey:"post",icon:"pencil"},{id:"comment",tier:"weekly",goal:15,i18nKey:"comment",icon:"comment"},{id:"vote",tier:"weekly",goal:50,i18nKey:"vote",icon:"chevron-up-circle"},{id:"reblog",tier:"weekly",goal:5,i18nKey:"reblog",icon:"repeat"},{id:"post",tier:"monthly",goal:20,i18nKey:"post",icon:"pencil"}];function GO(e,t){return $u.find(r=>r.tier===e&&r.id===t)}function XO(e,t,r){return b(["communities","subscribe"],e,({community:n})=>[cr(e,n)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.accounts.subscriptions(e),[...c.communities.singlePrefix(o.community)],c.communities.context(e,o.community)]);},t,"posting",{broadcastMode:r??"async"})}function rx(e,t,r){return b(["communities","unsubscribe"],e,({community:n})=>[ur(e,n)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.accounts.subscriptions(e),[...c.communities.singlePrefix(o.community)],c.communities.context(e,o.community)]);},t,"posting",{broadcastMode:r??"sync"})}function sx(e,t,r){return b(["communities","mutePost"],e,({community:n,author:o,permlink:i,notes:s,mute:a})=>[fr(e,n,o,i,s,a)],async(n,o)=>{if(t?.adapter?.invalidateQueries){let i=[c.posts.entry(`/@${o.author}/${o.permlink}`),["community","single",o.community],{predicate:s=>{let a=s.queryKey;return Array.isArray(a)&&a[0]==="posts"&&a[1]==="posts-ranked"&&a[3]===o.community}}];await t.adapter.invalidateQueries(i);}},t,"posting",{broadcastMode:r??"sync"})}function px(e,t,r,n){return b(["communities","set-role",e],t,({account:o,role:i})=>[pr(t,e,o,i)],async(o,i)=>{h().setQueriesData({queryKey:c.communities.singlePrefix(e)},a=>{if(!a)return a;let u=[...a.team??[]],p=u.findIndex(([l])=>l===i.account);return p>=0?u[p]=[u[p][0],i.role,u[p][2]??""]:u.push([i.account,i.role,""]),{...a,team:u}}),r?.adapter?.invalidateQueries&&await r.adapter.invalidateQueries([[...c.communities.singlePrefix(e)],c.communities.context(i.account,e)]);},r,"posting",{broadcastMode:n??"async"})}function mx(e,t,r,n){return b(["communities","update",e],t,o=>[lr(t,e,o)],async(o,i)=>{h().setQueriesData({queryKey:c.communities.singlePrefix(e)},a=>a&&{...a,...i}),r?.adapter?.invalidateQueries&&await r.adapter.invalidateQueries([[...c.communities.singlePrefix(e)]]);},r,"posting",{broadcastMode:n??"async"})}function _x(e,t,r){return b(["communities","registerRewards"],e,({name:n})=>[Pr(n)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([[...c.communities.singlePrefix(o.name)],[...c.points._prefix(e)]]);},t,"active",{broadcastMode:r})}function Ax(e,t,r){return b(["communities","pin-post"],e,({community:n,account:o,permlink:i,pin:s})=>[dr(e,n,o,i,s)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.posts.entry(`/@${o.account}/${o.permlink}`),[...c.communities.singlePrefix(o.community)]]);},t,"posting",{broadcastMode:r??"async"})}function Ex(e,t,r=100,n=void 0,o=true){return queryOptions({queryKey:c.communities.list(e,t??"",r),enabled:o,queryFn:async()=>{let i=await g("bridge.list_communities",{last:"",limit:r,sort:e==="hot"?"rank":e,query:t||null,observer:n});return i?e==="hot"?i.sort(()=>Math.random()-.5):i:[]}})}function qx(e,t){return queryOptions({queryKey:c.communities.context(e,t),enabled:!!e&&!!t,queryFn:async()=>{let r=await g("bridge.get_community_context",{account:e,name:t});return {role:r?.role??"guest",subscribed:r?.subscribed??false}}})}function Bx(e,t="",r=true){return queryOptions({queryKey:c.communities.single(e,t),enabled:r&&!!e,queryFn:async()=>$n(e??"",t)})}function Ux(e){return queryOptions({queryKey:c.communities.subscribers(e),queryFn:async()=>await g("bridge.list_subscribers",{community:e})??[],staleTime:6e4})}function $x(e,t){return infiniteQueryOptions({queryKey:c.communities.accountNotifications(e,t),initialPageParam:null,queryFn:async({pageParam:r})=>{try{return await g("bridge.account_notifications",{account:e,limit:t,last_id:r??void 0})??[]}catch{return []}},getNextPageParam:r=>r?.length>0?r[r.length-1].id:null})}function Yx(){return queryOptions({queryKey:c.communities.rewarded(),queryFn:async()=>{let e=await fetch(f.privateApiHost+"/private-api/rewarded-communities",{method:"GET",headers:{"Content-Type":"application/json"}});if(!e.ok)throw new Error(`Failed to fetch rewarded communities: ${e.status}`);return e.json()}})}var ep=(s=>(s.OWNER="owner",s.ADMIN="admin",s.MOD="mod",s.MEMBER="member",s.GUEST="guest",s.MUTED="muted",s))(ep||{}),Zx={owner:["admin","mod","member","guest","muted"],admin:["mod","member","guest","muted"],mod:["member","guest","muted"]};function tk(e,t){return e.startsWith("hive-3")||t===3?"Council":e.startsWith("hive-2")||t===2?"Journal":"Topic"}function rk({communityType:e,userRole:t,subscribed:r}){let n=t==="muted"?false:e==="Topic"?true:["owner","admin","mod","member"].includes(t),o=(()=>{if(t==="muted")return false;switch(e){case "Topic":return true;case "Journal":return t!=="guest"||r;case "Council":return n}})(),i=["owner","admin","mod"].includes(t);return {canPost:n,canComment:o,isModerator:i}}function sk(e,t){return queryOptions({queryKey:c.notifications.unreadCount(e),queryFn:async()=>t?(await(await fetch(`${f.privateApiHost}/private-api/notifications/unread`,{method:"POST",body:JSON.stringify({code:t}),headers:{"Content-Type":"application/json"}})).json()).count:0,enabled:!!e&&!!t,initialData:0,refetchInterval:6e4})}function pk(e,t,r=void 0){return infiniteQueryOptions({queryKey:c.notifications.list(e,r),queryFn:async({pageParam:n})=>{if(!t)return [];let o={code:t,filter:r,since:n,user:void 0},i=await fetch(f.privateApiHost+"/private-api/notifications",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(o)});if(!i.ok)return [];try{return await i.json()}catch{return []}},enabled:!!e&&!!t,initialData:{pages:[],pageParams:[]},initialPageParam:"",getNextPageParam:n=>n?.[n.length-1]?.id??"",refetchOnMount:true})}var np=(p=>(p.VOTES="rvotes",p.MENTIONS="mentions",p.FAVORITES="nfavorites",p.BOOKMARKS="nbookmarks",p.FOLLOWS="follows",p.REPLIES="replies",p.REBLOGS="reblogs",p.TRANSFERS="transfers",p.DELEGATIONS="delegations",p))(np||{});var op=(p=>(p[p.VOTE=1]="VOTE",p[p.MENTION=2]="MENTION",p[p.FOLLOW=3]="FOLLOW",p[p.COMMENT=4]="COMMENT",p[p.RE_BLOG=5]="RE_BLOG",p[p.TRANSFERS=6]="TRANSFERS",p[p.FAVORITES=13]="FAVORITES",p[p.BOOKMARKS=15]="BOOKMARKS",p.ALLOW_NOTIFY="ALLOW_NOTIFY",p))(op||{}),fk=[1,2,3,4,5,6,13,15],ip=(n=>(n.ALL="All",n.UNREAD="Unread",n.READ="Read",n))(ip||{});function hk(e,t,r){return queryOptions({queryKey:c.notifications.settings(e),queryFn:async()=>{let n=e+"-web";if(!t)throw new Error("Missing access token");let o=await fetch(f.privateApiHost+"/private-api/detail-device",{body:JSON.stringify({code:t,username:e,token:n}),method:"POST",headers:{"Content-Type":"application/json"}});if(!o.ok)throw new Error(`Failed to fetch notification settings: ${o.status}`);return o.json()},enabled:!!e&&!!t,refetchOnMount:false,initialData:()=>({status:0,system:"web",allows_notify:0,notify_types:r?[]:[4,3,2,13,15,1,5,6]})})}function vk(){return queryOptions({queryKey:c.notifications.announcements(),queryFn:async()=>{let e=await fetch(f.privateApiHost+"/private-api/announcements",{method:"GET",headers:{"Content-Type":"application/json"}});if(!e.ok)throw new Error(`Failed to fetch announcements: ${e.status}`);return await e.json()||[]},staleTime:36e5})}function xk(e){return queryOptions({queryKey:c.notifications.spotlights(),queryFn:async()=>{let t=await fetch(f.privateApiHost+"/private-api/spotlights",{method:"GET",headers:{"Content-Type":"application/json"}});if(!t.ok)throw new Error(`Failed to fetch spotlights: ${t.status}`);return await t.json()||[]},staleTime:36e5})}function pp(e,t){return {...e,read:!t||t===e.id?1:e.read}}function So(e){return typeof e=="object"&&e!==null&&"pages"in e&&"pageParams"in e&&Array.isArray(e.pages)}function qk(e,t,r,n){let o=h();return useMutation({mutationKey:["notifications","mark-read",e],mutationFn:async({id:i})=>{if(!e||!t)throw new Error("[SDK][Notifications] \u2013 missing auth for markNotifications");return mo(t,i)},onMutate:async({id:i})=>{await o.cancelQueries({queryKey:c.notifications._prefix});let s=[],a=o.getQueriesData({queryKey:c.notifications._prefix,predicate:l=>{let m=l.state.data;return So(m)}});a.forEach(([l,m])=>{if(m&&So(m)){s.push([l,m]);let d={...m,pages:m.pages.map(y=>y.map(v=>pp(v,i)))};o.setQueryData(l,d);}});let u=c.notifications.unreadCount(e),p=o.getQueryData(u);return typeof p=="number"&&p>0&&(s.push([u,p]),i?a.some(([,m])=>m?.pages.some(d=>d.some(y=>y.id===i&&y.read===0)))&&o.setQueryData(u,p-1):o.setQueryData(u,0)),{previousData:s}},onSuccess:i=>{let s=typeof i=="object"&&i!==null?i.unread:void 0;typeof s=="number"&&o.setQueryData(c.notifications.unreadCount(e),s),r?.(s);},onError:(i,s,a)=>{a?.previousData&&a.previousData.forEach(([u,p])=>{o.setQueryData(u,p);}),n?.(i);},onSettled:()=>{o.invalidateQueries({queryKey:c.notifications._prefix});}})}function Dk(e,t,r){return b(["notifications","set-last-read"],e,({date:n})=>nr(e,n),async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.notifications.unreadCount(e)]);},t,"posting",{broadcastMode:r??"async"})}function Qk(e){return queryOptions({queryKey:["proposals","proposal",e],queryFn:async()=>{let r=(await g("condenser_api.find_proposals",[[e]]))[0];return new Date(r.start_date)<new Date&&new Date(r.end_date)>=new Date?r.status="active":new Date(r.end_date)<new Date?r.status="expired":r.status="inactive",r}})}function jk(){return queryOptions({queryKey:["proposals","list"],queryFn:async()=>{let t=(await g("database_api.list_proposals",{start:[-1],limit:500,order:"by_total_votes",order_direction:"descending",status:"all"})).proposals,r=t.filter(o=>o.status==="expired");return [...t.filter(o=>o.status!=="expired"),...r]}})}function zk(e,t,r){return infiniteQueryOptions({queryKey:["proposals","votes",e,t,r],initialPageParam:t,refetchOnMount:true,staleTime:0,queryFn:async({pageParam:n})=>{let s=(await g("condenser_api.list_proposal_votes",[[e,n??t],r,"by_proposal_voter"])).filter(l=>l.proposal?.proposal_id===e).map(l=>({id:l.id,voter:l.voter})),a=await g("condenser_api.get_accounts",[s.map(l=>l.voter)]),u=gt(a);return s.map(l=>({...l,voterAccount:u.find(m=>l.voter===m.name)}))},getNextPageParam:n=>n?.[n.length-1]?.voter??void 0})}function Zk(e){return queryOptions({queryKey:["proposals","votes","by-user",e],enabled:!!e&&e!=="",staleTime:60*1e3,queryFn:async()=>!e||e===""?[]:((await g("database_api.list_proposal_votes",{start:[e],limit:1e3,order:"by_voter_proposal",order_direction:"ascending",status:"votable"})).proposal_votes||[]).filter(n=>n.voter===e)})}function nE(e,t,r){return b(["proposals","vote"],e,({proposalIds:n,approve:o})=>[ar(e,n,o)],async n=>{try{let o=n?.id??n?.tx_id;t?.adapter?.recordActivity&&o&&t.adapter.recordActivity(150,o,n?.block_num).catch(i=>{console.debug("[SDK][Proposals][useProposalVote] recordActivity failed",{activityType:150,blockNum:n?.block_num,transactionId:o,error:i});}),t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.proposals.list(),c.proposals.votesByUser(e)]);}catch(o){console.warn("[useProposalVote] Post-broadcast side-effect failed:",o);}},t,"active",{broadcastMode:r})}function aE(e,t,r){return b(["proposals","create"],e,n=>[sr(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.accounts.full(e),c.proposals.list()]);},t,"active",{broadcastMode:r})}function lE(e,t=50){return infiniteQueryOptions({queryKey:["wallet","vesting-delegations",e,t],initialPageParam:"",queryFn:async({pageParam:r})=>{let n=r?t+1:t,o=await g("condenser_api.get_vesting_delegations",[e,r||"",n]);return r&&o.length>0&&o[0]?.delegatee===r?o.slice(1,t+1):o},getNextPageParam:r=>!r||r.length<t?void 0:r[r.length-1]?.delegatee,enabled:!!e})}function gE(e){return queryOptions({queryKey:["assets","account-delegations",e],enabled:!!e,queryFn:({signal:t})=>$("balance","/accounts/{account-name}/delegations",{"account-name":e},void 0,void 0,t)})}function wE(e){return queryOptions({queryKey:["wallet","vesting-delegation-expirations",e],queryFn:async()=>e?(await g("database_api.find_vesting_delegation_expirations",{account:e})).delegations:[],enabled:!!e})}function PE(e){return queryOptions({queryKey:["wallet","conversion-requests",e],queryFn:()=>g("condenser_api.get_conversion_requests",[e]),select:t=>t.sort((r,n)=>r.requestid-n.requestid)})}function EE(e){return queryOptions({queryKey:["wallet","collateralized-conversion-requests",e],queryFn:()=>g("condenser_api.get_collateralized_conversion_requests",[e]),select:t=>t.sort((r,n)=>r.requestid-n.requestid)})}function RE(e){return queryOptions({queryKey:["wallet","savings-withdraw",e],queryFn:()=>g("condenser_api.get_savings_withdraw_from",[e]),select:t=>t.sort((r,n)=>r.request_id-n.request_id)})}function IE(e){return queryOptions({queryKey:["wallet","withdraw-routes",e],queryFn:()=>g("condenser_api.get_withdraw_routes",[e,"outgoing"])})}function ME(e){return queryOptions({queryKey:["wallet","open-orders",e],queryFn:()=>g("condenser_api.get_open_orders",[e]),select:t=>t.sort((r,n)=>r.orderid-n.orderid),enabled:!!e})}function VE(e,t=100){return infiniteQueryOptions({queryKey:["wallet","outgoing-rc-delegations",e,t],initialPageParam:null,queryFn:async({pageParam:r})=>{let o=(await g("rc_api.list_rc_direct_delegations",{start:[e,r??""],limit:t}).then(i=>i)).rc_direct_delegations||[];return r&&(o=o.filter(i=>i.to!==r)),o},getNextPageParam:r=>r.length===t?r[r.length-1].to:null})}function $E(e){return queryOptions({queryKey:["wallet","incoming-rc",e],enabled:!!e,queryFn:async()=>{if(!e)throw new Error("[SDK][Wallet] - Missing username for incoming RC");let r=await _()(`${f.privateApiHost}/private-api/received-rc/${e}`);if(!r.ok)throw new Error(`Failed to fetch incoming RC: ${r.status}`);return r.json()}})}function YE(e){return queryOptions({queryKey:["wallet","received-vesting-shares",e],queryFn:async()=>{let t=await fetch(f.privateApiHost+`/private-api/received-vesting/${e}`);if(!t.ok)throw new Error(`Failed to fetch received vesting shares: ${t.status}`);return (await t.json()).list}})}function tS(e){return queryOptions({queryKey:["wallet","recurrent-transfers",e],queryFn:()=>g("condenser_api.find_recurrent_transfers",[e]),enabled:!!e})}function oe(e){if(typeof e=="string"){let t=e.trim();return t.length>0?t:void 0}}function ee(e){if(typeof e=="number"&&Number.isFinite(e))return e;if(typeof e=="string"){let t=e.trim();if(!t)return;let r=Number.parseFloat(t);if(Number.isFinite(r))return r;let o=t.replace(/,/g,"").match(/[-+]?\d+(?:\.\d+)?/);if(o){let i=Number.parseFloat(o[0]);if(Number.isFinite(i))return i}}}function Sp(e){if(!e||typeof e!="object")return;let t=e;return {name:oe(t.name)??"",symbol:oe(t.symbol)??"",layer:oe(t.layer)??"hive",balance:ee(t.balance)??0,fiatRate:ee(t.fiatRate)??0,currency:oe(t.currency)??"usd",precision:ee(t.precision)??3,address:oe(t.address),error:oe(t.error),pendingRewards:ee(t.pendingRewards),pendingRewardsFiat:ee(t.pendingRewardsFiat),liquid:ee(t.liquid),liquidFiat:ee(t.liquidFiat),savings:ee(t.savings),savingsFiat:ee(t.savingsFiat),staked:ee(t.staked),stakedFiat:ee(t.stakedFiat),iconUrl:oe(t.iconUrl),actions:t.actions??[],extraData:t.extraData??[],apr:ee(t.apr)}}function Cp(e){if(!e||typeof e!="object")return [];let t=[e],r=e;r.data&&typeof r.data=="object"&&t.push(r.data),r.result&&typeof r.result=="object"&&t.push(r.result),r.portfolio&&typeof r.portfolio=="object"&&t.push(r.portfolio);for(let n of t){if(Array.isArray(n))return n;if(n&&typeof n=="object")for(let o of ["wallets","tokens","assets","items","portfolio","balances"]){let i=n[o];if(Array.isArray(i))return i}}return []}function Tp(e){if(!e||typeof e!="object")return;let t=e;return oe(t.username)??oe(t.name)??oe(t.account)}function Co(e,t="usd",r=true){return queryOptions({queryKey:["wallet","portfolio","v2",e,r?"only-enabled":"all",t],enabled:!!e,staleTime:6e4,refetchInterval:12e4,queryFn:async()=>{if(!e)throw new Error("[SDK][Wallet] \u2013 username is required");let n=`${B.getValidatedBaseUrl()}/wallet-api/portfolio-v2`,o=await fetch(n,{method:"POST",headers:{Accept:"application/json","Content-Type":"application/json"},body:JSON.stringify({username:e,onlyEnabled:r,currency:t})});if(!o.ok)throw new Error(`[SDK][Wallet] \u2013 Portfolio request failed (${o.status})`);let i=await o.json(),s=Cp(i).map(a=>Sp(a)).filter(a=>!!a);if(!s.length)throw new Error("[SDK][Wallet] \u2013 Portfolio payload contained no tokens");return {username:Tp(i)??e,currency:oe(i?.fiatCurrency??i?.currency)?.toUpperCase(),wallets:s}}})}function J(e){return queryOptions({queryKey:["assets","hive","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await h().prefetchQuery(fe()),await h().prefetchQuery(D(e));let t=h().getQueryData(fe().queryKey),r=h().getQueryData(D(e).queryKey),n=await g("condenser_api.get_ticker",[]).catch(()=>{}),o=Number.parseFloat(n?.latest??"");if(!r)return {name:"HIVE",title:"Hive",price:Number.isFinite(o)?o:t?t.base/t.quote:0,accountBalance:0};let i=x(r.balance).amount,s=x(r.savings_balance).amount;return {name:"HIVE",title:"Hive",price:Number.isFinite(o)?o:t?t.base/t.quote:0,accountBalance:i+s,parts:[{name:"current",balance:i},{name:"savings",balance:s}]}}})}function To(e){return queryOptions({queryKey:["assets","hbd","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await h().prefetchQuery(fe()),await h().prefetchQuery(D(e));let t=h().getQueryData(D(e).queryKey),r=h().getQueryData(fe().queryKey),n=1;return t?{name:"HBD",title:"Hive Dollar",price:n,accountBalance:x(t.hbd_balance).amount+x(t?.savings_hbd_balance).amount,apr:((r?.hbdInterestRate??0)/100).toFixed(3),parts:[{name:"current",balance:x(t.hbd_balance).amount},{name:"savings",balance:x(t.savings_hbd_balance).amount}]}:{name:"HBD",title:"Hive Dollar",price:n,accountBalance:0}}})}function Kp(e){let u=9.5-(e.headBlock-7e6)/25e4*.01;u<.95&&(u=.95);let p=e.vestingRewardPercent/1e4,l=e.virtualSupply,m=e.totalVestingFund;return (l*u*p/m).toFixed(3)}function Ro(e){return queryOptions({queryKey:["assets","hive-power","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await h().prefetchQuery(fe()),await h().prefetchQuery(D(e));let t=h().getQueryData(fe().queryKey),r=h().getQueryData(D(e).queryKey);if(!t||!r)return {name:"HP",title:"Hive Power",price:0,accountBalance:0};let n=await g("condenser_api.get_ticker",[]).catch(()=>{}),o=Number.parseFloat(n?.latest??""),i=Number.isFinite(o)?o:t.base/t.quote,s=x(r.vesting_shares).amount,a=x(r.delegated_vesting_shares).amount,u=x(r.received_vesting_shares).amount,p=x(r.vesting_withdraw_rate).amount,l=Math.max((Number(r.to_withdraw)-Number(r.withdrawn))/1e6,0),m=Fn(r.next_vesting_withdrawal)?0:Math.min(p,l),d=+Ie(s,t.hivePerMVests).toFixed(3),y=+Ie(a,t.hivePerMVests).toFixed(3),v=+Ie(u,t.hivePerMVests).toFixed(3),A=+Ie(l,t.hivePerMVests).toFixed(3),S=+Ie(m,t.hivePerMVests).toFixed(3),R=Math.max(d-A,0),T=Math.max(d-y,0);return {name:"HP",title:"Hive Power",price:i,accountBalance:+R.toFixed(3),apr:Kp(t),parts:[{name:"hp_balance",balance:d},{name:"available",balance:+T.toFixed(3)},{name:"outgoing_delegations",balance:y},{name:"incoming_delegations",balance:v},...A>0?[{name:"pending_power_down",balance:+A.toFixed(3)}]:[],...S>0&&S!==A?[{name:"next_power_down",balance:+S.toFixed(3)}]:[]]}}})}var I=z.operations,Cr={transfers:[I.transfer,I.transfer_to_savings,I.transfer_from_savings,I.cancel_transfer_from_savings,I.recurrent_transfer,I.fill_recurrent_transfer,I.escrow_transfer,I.fill_recurrent_transfer],"market-orders":[I.fill_convert_request,I.fill_order,I.fill_collateralized_convert_request,I.limit_order_create2,I.limit_order_create,I.limit_order_cancel],interests:[I.interest],"stake-operations":[I.return_vesting_delegation,I.withdraw_vesting,I.transfer_to_vesting,I.set_withdraw_vesting_route,I.update_proposal_votes,I.fill_vesting_withdraw,I.account_witness_proxy,I.delegate_vesting_shares],rewards:[I.author_reward,I.curation_reward,I.producer_reward,I.claim_reward_balance,I.comment_benefactor_reward,I.liquidity_reward,I.proposal_pay],"":[]};var kS=Object.keys(z.operations);var qo=z.operations,CS=qo,TS=Object.entries(qo).reduce((e,[t,r])=>(e[r]=t,e),{});var Fo=z.operations;function Dp(e){return Object.prototype.hasOwnProperty.call(Fo,e)}function Xe(e){let t=Array.isArray(e)?e:[e],r=t.includes(""),n=Array.from(new Set(t.filter(a=>a!=null&&a!==""))),o=r||n.length===0?"all":n.map(a=>a.toString()).sort().join("|"),i=new Set;r||n.forEach(a=>{if(a in Cr){Cr[a].forEach(u=>i.add(u));return}Dp(a)&&i.add(Fo[a]);});let s=Bp(Array.from(i));return {filterKey:o,filterArgs:s}}function Bp(e){let t=0n,r=0n;return e.forEach(n=>{n<64?t|=1n<<BigInt(n):r|=1n<<BigInt(n-64);}),[t!==0n?t.toString():null,r!==0n?r.toString():null]}function Pt(e,t=20,r=[]){let{filterArgs:n,filterKey:o}=Xe(r);return infiniteQueryOptions({queryKey:["assets","hive","transactions",e,t,o],initialData:{pages:[],pageParams:[]},initialPageParam:-1,getNextPageParam:(i,s)=>i?+(i[i.length-1]?.num??0)-1:-1,queryFn:async({pageParam:i})=>(await g("condenser_api.get_account_history",[e,i,t,...n])).map(a=>({num:a[0],type:a[1].op[0],timestamp:a[1].timestamp,trx_id:a[1].trx_id,...a[1].op[1]})),select:({pages:i,pageParams:s})=>({pageParams:s,pages:i.map(a=>a.filter(u=>{switch(u.type){case "author_reward":case "comment_benefactor_reward":return x(u.hive_payout).amount>0;case "transfer":case "transfer_to_savings":case "transfer_to_vesting":case "recurrent_transfer":return x(u.amount).symbol==="HIVE";case "transfer_from_savings":return x(u.amount).symbol==="HIVE";case "fill_recurrent_transfer":let l=x(u.amount);return ["HIVE"].includes(l.symbol);case "claim_reward_balance":return x(u.reward_hive).amount>0;case "curation_reward":case "cancel_transfer_from_savings":case "fill_order":case "limit_order_create":case "limit_order_cancel":case "fill_convert_request":case "fill_collateralized_convert_request":return true;case "limit_order_create2":return true;default:return false}}))})})}function HS(e,t=20,r=[]){let{filterKey:n}=Xe(r);return infiniteQueryOptions({...Pt(e,t,r),queryKey:["assets","hbd","transactions",e,t,n],select:({pages:o,pageParams:i})=>({pageParams:i,pages:o.map(s=>s.filter(a=>{switch(a.type){case "author_reward":case "comment_benefactor_reward":return x(a.hbd_payout).amount>0;case "claim_reward_balance":return x(a.reward_hbd).amount>0;case "transfer":case "transfer_to_savings":case "transfer_to_vesting":case "recurrent_transfer":return x(a.amount).symbol==="HBD";case "transfer_from_savings":return x(a.amount).symbol==="HBD";case "fill_recurrent_transfer":let l=x(a.amount);return ["HBD"].includes(l.symbol);case "cancel_transfer_from_savings":case "fill_order":case "limit_order_create":case "limit_order_cancel":case "fill_convert_request":case "fill_collateralized_convert_request":case "proposal_pay":case "interest":return true;case "limit_order_create2":return true;default:return false}}))})})}function WS(e,t=20,r=[]){let{filterKey:n}=Xe(r),o=new Set(Array.isArray(r)?r:[r]),i=o.has("")||o.size===0;return infiniteQueryOptions({...Pt(e,t,r),queryKey:["assets","hive-power","transactions",e,t,n],select:({pages:s,pageParams:a})=>({pageParams:a,pages:s.map(u=>u.filter(p=>{switch(p.type){case "author_reward":case "comment_benefactor_reward":return x(p.vesting_payout).amount>0;case "claim_reward_balance":return x(p.reward_vests).amount>0;case "transfer_to_vesting":return true;case "transfer":case "transfer_to_savings":case "recurrent_transfer":return ["VESTS","HP"].includes(x(p.amount).symbol);case "fill_recurrent_transfer":let d=x(p.amount);return ["VESTS","HP"].includes(d.symbol);case "curation_reward":case "withdraw_vesting":case "delegate_vesting_shares":case "fill_vesting_withdraw":case "return_vesting_delegation":case "producer_reward":case "set_withdraw_vesting_route":return true;default:return i||o.has(p.type)}}))})})}function Ko(e){let t=r=>r.toString().padStart(2,"0");return `${e.getFullYear()}-${t(e.getMonth()+1)}-${t(e.getDate())}T${t(e.getHours())}:${t(e.getMinutes())}:${t(e.getSeconds())}`}function Tr(e,t){return new Date(e.getTime()-t*1e3)}function JS(e=86400){return infiniteQueryOptions({queryKey:["assets","hive","metrics",e],queryFn:async({pageParam:[t,r]})=>(await g("condenser_api.get_market_history",[e,Ko(t),Ko(r)])).map(({hive:o,non_hive:i,open:s})=>({close:i.close/o.close,open:i.open/o.open,low:i.low/o.low,high:i.high/o.high,volume:o.volume,time:new Date(s)})),initialPageParam:[Tr(new Date,Math.max(100*e,28800)),new Date],getNextPageParam:(t,r,[n])=>[Tr(n,Math.max(100*e,28800)),Tr(n,e)]})}function eC(e){return queryOptions({queryKey:["assets","hive","withdrawal-routes",e],queryFn:()=>g("condenser_api.get_withdraw_routes",[e,"outgoing"]),enabled:!!e})}function oC(e,t=50){return queryOptions({queryKey:["assets","hive-power","delegates",e],enabled:!!e,queryFn:()=>g("condenser_api.get_vesting_delegations",[e,"",t])})}function uC(e){return queryOptions({queryKey:["assets","hive-power","delegatings",e],queryFn:async()=>(await(await fetch(f.privateApiHost+`/private-api/received-vesting/${e}`,{headers:{"Content-Type":"application/json"}})).json()).list,select:t=>t.sort((r,n)=>x(n.vesting_shares).amount-x(r.vesting_shares).amount)})}function fC(e=500){return queryOptions({queryKey:["market","order-book",e],queryFn:()=>g("condenser_api.get_order_book",[e])})}function hC(){return queryOptions({queryKey:["market","statistics"],queryFn:()=>g("condenser_api.get_ticker",[])})}function vC(e,t,r){let n=o=>o.toISOString().replace(/\.\d{3}Z$/,"");return queryOptions({queryKey:["market","history",e,t.getTime(),r.getTime()],queryFn:()=>g("condenser_api.get_market_history",[e,n(t),n(r)])})}function xC(){return queryOptions({queryKey:["market","hive-hbd-stats"],queryFn:async()=>{let e=await g("condenser_api.get_ticker",[]),t=new Date,r=new Date(t.getTime()-864e5),n=s=>s.toISOString().replace(/\.\d{3}Z$/,""),o=await g("condenser_api.get_market_history",[86400,n(r),n(t)]);return {price:+e.latest,close:o[0]?o[0].non_hive.open/o[0].hive.open:0,high:o[0]?o[0].non_hive.high/o[0].hive.high:0,low:o[0]?o[0].non_hive.low/o[0].hive.low:0,percent:o[0]?100-o[0].non_hive.open/o[0].hive.open*100/+e.latest:0,totalFromAsset:e.hive_volume.split(" ")[0],totalToAsset:e.hbd_volume.split(" ")[0]}}})}function CC(e,t,r,n){return queryOptions({queryKey:["market","data",e,t,r,n],queryFn:async({signal:o})=>{let i=_(),s=`https://api.coingecko.com/api/v3/coins/${e}/market_chart/range?vs_currency=${t}&from=${r}&to=${n}`,a=await i(s,{signal:o});if(!a.ok)throw new Error(`Failed to fetch market data: ${a.status}`);return a.json()}})}function Io(e){return e.toISOString().replace(/\.\d{3}Z$/,"")}function FC(e=1e3,t,r){let n=r??new Date,o=t??new Date(n.getTime()-600*60*1e3);return queryOptions({queryKey:["market","trade-history",e,o.getTime(),n.getTime()],queryFn:()=>g("condenser_api.get_trade_history",[Io(o),Io(n),e])})}function BC(){return queryOptions({queryKey:["market","feed-history"],queryFn:async()=>{try{return await g("condenser_api.get_feed_history",[])}catch(e){throw e}}})}function HC(){return queryOptions({queryKey:["market","current-median-history-price"],queryFn:async()=>{try{return await g("condenser_api.get_current_median_history_price",[])}catch(e){throw e}}})}function LC(e,t,r){return b(["market","limit-order-create"],e,n=>[bt(e,n.amountToSell,n.minToReceive,n.fillOrKill,n.expiration,n.orderId)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.accounts.full(e),c.wallet.openOrders(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function zC(e,t,r){return b(["market","limit-order-cancel"],e,({orderId:n})=>[mr(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.accounts.full(e),c.wallet.openOrders(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}async function Ze(e){let t=await e.json();if(!e.ok){let r=new Error(`Request failed with status ${e.status}`);throw r.status=e.status,r.data=t,r}return t}async function XC(e,t,r,n){let o=_(),i=`https://api.coingecko.com/api/v3/coins/${e}/market_chart/range?vs_currency=${t}&from=${r}&to=${n}`,s=await o(i);return Ze(s)}async function Do(e){if(e==="hbd")return 1;let t=_(),r=`https://api.coingecko.com/api/v3/simple/price?ids=hive_dollar&vs_currencies=${e}`,n=await t(r);return (await Ze(n)).hive_dollar[e]}async function ZC(e,t){let n=await _()(f.privateApiHost+`/private-api/market-data/${e==="hbd"?"usd":e}/${t}`);return Ze(n)}async function eT(){let t=await _()(f.privateApiHost+"/private-api/market-data/latest");return Ze(t)}async function tT(){let t=await _()("https://api.coingecko.com/api/v3/simple/price?ids=hive&vs_currencies=usd");return Ze(t)}var Xp={"Content-type":"application/json"};async function Zp(e){let t=_(),r=B.getValidatedBaseUrl(),n=await t(`${r}/private-api/engine-api`,{method:"POST",body:JSON.stringify(e),headers:Xp});if(!n.ok)throw new Error(`[SDK][HiveEngine] \u2013 request failed with ${n.status}`);return (await n.json()).result}async function we(e,t){try{return await Zp(e)}catch{return t}}async function oT(e,t=50){let r={jsonrpc:"2.0",method:"find",params:{contract:"market",query:{symbol:e},limit:t,offset:0},id:1},[n,o]=await Promise.all([we({...r,params:{...r.params,table:"buyBook",indexes:[{index:"price",descending:true}]}},[]),we({...r,params:{...r.params,table:"sellBook",indexes:[{index:"price",descending:false}]}},[])]),i=a=>a.sort((u,p)=>{let l=Number(u.price??0);return Number(p.price??0)-l}),s=a=>a.sort((u,p)=>{let l=Number(u.price??0),m=Number(p.price??0);return l-m});return {buy:i(n),sell:s(o)}}async function iT(e,t=50){return we({jsonrpc:"2.0",method:"find",params:{contract:"market",table:"tradesHistory",query:{symbol:e},limit:t,offset:0,indexes:[{index:"timestamp",descending:true}]},id:1},[])}async function sT(e,t,r=100){let n={jsonrpc:"2.0",method:"find",params:{contract:"market",query:{symbol:t,account:e},limit:r,offset:0},id:1},[o,i]=await Promise.all([we({...n,params:{...n.params,table:"buyBook",indexes:[{index:"timestamp",descending:true}]}},[]),we({...n,params:{...n.params,table:"sellBook",indexes:[{index:"timestamp",descending:true}]}},[])]),s=(p,l)=>(Number(p||0)*Number(l||0)).toFixed(8),a=o.map(p=>({id:p.txId,type:"buy",account:p.account,symbol:p.symbol,quantity:p.quantity,price:p.price,total:p.tokensLocked??s(p.quantity,p.price),timestamp:Number(p.timestamp??0)})),u=i.map(p=>({id:p.txId,type:"sell",account:p.account,symbol:p.symbol,quantity:p.quantity,price:p.price,total:s(p.quantity,p.price),timestamp:Number(p.timestamp??0)}));return [...a,...u].sort((p,l)=>l.timestamp-p.timestamp)}async function el(e,t){return we({jsonrpc:"2.0",method:"find",params:{contract:"market",table:"metrics",query:{...e?{symbol:e}:{},...t?{account:t}:{}}},id:1},[])}async function Ot(e,t){return el(t,e)}async function xt(e){return we({jsonrpc:"2.0",method:"find",params:{contract:"tokens",table:"balances",query:{account:e}},id:1},[])}async function kt(e){return we({jsonrpc:"2.0",method:"find",params:{contract:"tokens",table:"tokens",query:{symbol:{$in:e}}},id:2},[])}async function Bo(e,t,r,n){let o=_(),i=B.getValidatedBaseUrl(),s=new URL("/private-api/engine-account-history",i);s.searchParams.set("account",e),s.searchParams.set("symbol",t),s.searchParams.set("limit",r.toString()),s.searchParams.set("offset",n.toString());let a=await o(s.toString(),{method:"GET",headers:{"Content-type":"application/json"}});if(!a.ok)throw new Error(`[SDK][HiveEngine] \u2013 account history failed with ${a.status}`);return await a.json()}async function No(e,t="daily"){let r=_(),n=B.getValidatedBaseUrl(),o=new URL("/private-api/engine-chart-api",n);o.searchParams.set("symbol",e),o.searchParams.set("interval",t);let i=await r(o.toString(),{headers:{"Content-type":"application/json"}});if(!i.ok)throw new Error(`[SDK][HiveEngine] \u2013 chart failed with ${i.status}`);return await i.json()}async function Mo(e){let t=_(),r=B.getValidatedBaseUrl(),n=await t(`${r}/private-api/engine-reward-api/${e}?hive=1`);if(!n.ok)throw new Error(`[SDK][HiveEngine] \u2013 rewards failed with ${n.status}`);return await n.json()}function Et(e){return queryOptions({queryKey:["assets","hive-engine","balances",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>xt(e)})}function Qo(){return queryOptions({queryKey:["assets","hive-engine","markets"],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>Ot()})}function Ho(e){return queryOptions({queryKey:["assets","hive-engine","metadata-list",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>kt(e)})}function wT(e,t,r=20){return infiniteQueryOptions({queryKey:["assets","hive-engine",t,"transactions",e],enabled:!!t&&!!e,initialPageParam:0,queryFn:async({pageParam:n})=>{if(!t||!e)throw new Error("[SDK][HiveEngine] \u2013 token or username missed");return Bo(e,t,r,n)},getNextPageParam:(n,o,i)=>(n?.length??0)===r?i+r:void 0,getPreviousPageParam:(n,o,i)=>i>0?i-r:void 0})}function PT(e,t="daily"){return queryOptions({queryKey:["assets","hive-engine",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>No(e,t)})}function ET(e){return queryOptions({queryKey:["assets","hive-engine","unclaimed",e],staleTime:6e4,refetchInterval:9e4,enabled:!!e,queryFn:async()=>{try{let t=await Mo(e);return Object.values(t).filter(({pending_token:r})=>r>0)}catch{return []}}})}function RT(e,t){return queryOptions({queryKey:["assets","hive-engine","all-tokens",e,t],queryFn:async()=>Ot(e,t)})}function Qe(e,t=void 0){let r={fractionDigits:3,prefix:"",suffix:""};t&&(r={...r,...t});let{fractionDigits:n,prefix:o,suffix:i}=r,s="";o&&(s+=o+" ");let a=Math.abs(parseFloat(e.toString()))<1e-4?0:e,u=typeof a=="string"?parseFloat(a):a;return s+=u.toLocaleString("en-US",{minimumFractionDigits:n,maximumFractionDigits:n,useGrouping:true}),i&&(s+=" "+i),s}var St=class{symbol;name;icon;precision;stakingEnabled;delegationEnabled;balance;stake;stakedBalance;delegationsIn;delegationsOut;usdValue;constructor(t){this.symbol=t.symbol,this.name=t.name||"",this.icon=t.icon||"",this.precision=t.precision||0,this.stakingEnabled=t.stakingEnabled||false,this.delegationEnabled=t.delegationEnabled||false,this.balance=parseFloat(t.balance)||0,this.stake=parseFloat(t.stake)||0,this.delegationsIn=parseFloat(t.delegationsIn)||0,this.delegationsOut=parseFloat(t.delegationsOut)||0,this.stakedBalance=this.stake+this.delegationsIn-this.delegationsOut,this.usdValue=t.usdValue;}hasDelegations=()=>this.delegationEnabled?this.delegationsIn>0&&this.delegationsOut>0:false;delegations=()=>this.hasDelegations()?`(${Qe(this.stake,{fractionDigits:this.precision})} + ${Qe(this.delegationsIn,{fractionDigits:this.precision})} - ${Qe(this.delegationsOut,{fractionDigits:this.precision})})`:"";staked=()=>this.stakingEnabled?this.stakedBalance<1e-4?this.stakedBalance.toString():Qe(this.stakedBalance,{fractionDigits:this.precision}):"-";balanced=()=>this.balance<1e-4?this.balance.toString():Qe(this.balance,{fractionDigits:this.precision})};function MT(e,t,r){return queryOptions({queryKey:["assets","hive-engine","balances-with-usd",e,t,r],queryFn:async()=>{if(!e)throw new Error("[HiveEngine] No account in a balances query");let n=await xt(e),o=await kt(n.map(a=>a.symbol)),i=t?t.base/t.quote:0,s=Array.isArray(r)?r:[];return n.map(a=>{let u=o.find(v=>v.symbol===a.symbol),p;if(u?.metadata)try{p=JSON.parse(u.metadata);}catch{p=void 0;}let l=s.find(v=>v.symbol===a.symbol),m=Number(l?.lastPrice??"0"),d=Number(a.balance),y=a.symbol==="SWAP.HIVE"?i*d:m===0?0:Number((m*i*d).toFixed(10));return new St({symbol:a.symbol,name:u?.name??a.symbol,icon:p?.icon??"",precision:u?.precision??0,stakingEnabled:u?.stakingEnabled??false,delegationEnabled:u?.delegationEnabled??false,balance:a.balance,stake:a.stake,delegationsIn:a.delegationsIn,delegationsOut:a.delegationsOut,usdValue:y})})},enabled:!!e})}function Uo(e,t){return queryOptions({queryKey:["assets","hive-engine",t,"general-info",e],enabled:!!t&&!!e,staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{if(!t||!e)throw new Error("[SDK][HiveEngine] \u2013 token or username missed");let r=h(),n=J(e);await r.prefetchQuery(n);let o=r.getQueryData(n.queryKey),i=await r.ensureQueryData(Ho([t])),s=await r.ensureQueryData(Et(e)),a=await r.ensureQueryData(Qo()),u=i?.find(S=>S.symbol===t),p=s?.find(S=>S.symbol===t),m=+(a?.find(S=>S.symbol===t)?.lastPrice??"0"),d=parseFloat(p?.balance??"0"),y=parseFloat(p?.stake??"0"),v=parseFloat(p?.pendingUnstake??"0"),A=[{name:"liquid",balance:d},{name:"staked",balance:y}];return v>0&&A.push({name:"unstaking",balance:v}),{name:t,title:u?.name??"",price:m===0?0:Number(m*(o?.price??0)),accountBalance:d+y,layer:"ENGINE",parts:A}}})}async function Vo(e){let r=await _()(`${f.spkNode}/@${e}`);if(!r.ok)throw new Error(`[SDK][SPK] \u2013 wallet failed with ${r.status}`);return await r.json()}async function jo(){let t=await _()(`${f.spkNode}/markets`);if(!t.ok)throw new Error(`[SDK][SPK] \u2013 markets failed with ${t.status}`);return await t.json()}function me(e){return queryOptions({queryKey:["assets","spk","wallet",e],queryFn:async()=>{if(!e)throw new Error("[SDK][SPK] \u2013 username wasn't provided");return Vo(e)},enabled:!!e,staleTime:6e4,refetchInterval:9e4})}function ge(){return queryOptions({queryKey:["assets","spk","markets"],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{let e=await jo();return {list:Object.entries(e.markets.node).map(([t,r])=>({name:t,status:r.lastGood>=e.head_block-1200?"\u{1F7E9}":r.lastGood>e.head_block-28800?"\u{1F7E8}":"\u{1F7E5}"})),raw:e}}})}function Lo(e,t){let r=0,n=0,o=0,i=0,s=e.head_block-e.spk_block;if(e.spk_block){if(s<28800)return 0;{i=s/28800,r=e.gov?a(e.gov,i,t.spk_rate_lgov):0,n=e.pow?a(e.pow,i,t.spk_rate_lpow):0,o=a((e.granted.t>0?e.granted.t:0)+(e.granting.t&&e.granting.t>0?e.granting.t:0),i,t.spk_rate_ldel);let u=r+n+o;return u||0}}else return 0;function a(u,p,l){return (u*(1+l/365)-u)*p}}function Ct(e){return e.toFixed(3)}function Wo(e){return queryOptions({queryKey:["assets","spk","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await h().prefetchQuery(me(e)),await h().prefetchQuery(ge()),await h().prefetchQuery(J(e));let t=h().getQueryData(me(e).queryKey),r=h().getQueryData(ge().queryKey),n=h().getQueryData(J(e).queryKey);if(!t||!r)return {name:"SPK",layer:"SPK",title:"SPK Network",price:1,accountBalance:0};let o=+Ct((t.gov+t.spk)/1e3*+t.tick*(n?.price??0)),i=+Ct((t.spk+Lo(t,r.raw.stats||{spk_rate_lgov:"0.001",spk_rate_lpow:Ct(parseFloat(r.raw.stats.spk_rate_lpow)*100),spk_rate_ldel:Ct(parseFloat(r.raw.stats.spk_rate_ldel)*100)}))/1e3);return {name:"SPK",layer:"SPK",title:"SPK Network",price:o/i,accountBalance:i}}})}function $o(e){return e.toFixed(3)}function Go(e){return queryOptions({queryKey:["assets","larynx","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await h().prefetchQuery(me(e)),await h().prefetchQuery(ge()),await h().prefetchQuery(J(e));let t=h().getQueryData(me(e).queryKey),r=h().getQueryData(ge().queryKey),n=h().getQueryData(J(e).queryKey);if(!t||!r)return {name:"LARYNX",title:"SPK Network / LARYNX",price:1,accountBalance:0};let o=+$o(t.balance/1e3*+t.tick*(n?.price??0)),i=+$o(t.balance/1e3);return {name:"LARYNX",layer:"SPK",title:"LARYNX",price:o/i,accountBalance:i}}})}function Tt(e){return e.toFixed(3)}function zo(e){return queryOptions({queryKey:["assets","larynx-power","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await h().prefetchQuery(me(e)),await h().prefetchQuery(ge()),await h().prefetchQuery(J(e));let t=h().getQueryData(me(e).queryKey),r=h().getQueryData(ge().queryKey),n=h().getQueryData(J(e).queryKey);if(!t||!r)return {name:"LP",title:"SPK Network / LARYNX Power",price:1,accountBalance:0};let o=+Tt(t.poweredUp/1e3*+t.tick*(n?.price??0)),i=+Tt(t.poweredUp/1e3);return {name:"LP",title:"LARYNX Power",layer:"SPK",price:o/i,accountBalance:i,parts:[{name:"delegating",balance:t.granting?.t?+Tt(t.granting.t/1e3):0},{name:"recieved",balance:t.granted?.t?+Tt(t.granted.t/1e3):0}]}}})}function et(e,t=0){return queryOptions({queryKey:["points",e,t],queryFn:async()=>{if(!e)throw new Error("Get points query \u2013 username wasn't provided");let r=e.replace("@",""),n=await fetch(f.privateApiHost+"/private-api/points",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:r})});if(!n.ok)throw new Error(`Failed to fetch points: ${n.status}`);let o=await n.json(),i=await fetch(f.privateApiHost+"/private-api/point-list",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:r,type:t})});if(!i.ok)throw new Error(`Failed to fetch point transactions: ${i.status}`);let s=await i.json();return {points:o.points,uPoints:o.unclaimed_points,transactions:s}},staleTime:3e4,refetchOnMount:true,enabled:!!e})}function Jo(e){return queryOptions({queryKey:["assets","points","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>(await h().prefetchQuery(et(e)),{name:"POINTS",title:"Ecency Points",price:.002,accountBalance:+(h().getQueryData(et(e).queryKey)?.points??0)})})}function RR(e,t){return queryOptions({queryKey:["assets","points","transactions",e,t],queryFn:async()=>(await(await fetch(`${f.privateApiHost}/private-api/point-list`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:e,type:t??0})})).json()).map(({created:o,type:i,amount:s,id:a,sender:u,receiver:p,memo:l})=>({created:new Date(o),type:i,results:[{amount:parseFloat(s),asset:"POINTS"}],id:a,from:u??void 0,to:p??void 0,memo:l??void 0}))})}function WR(e,t,r={refetch:false}){let n=h(),o=r.currency??"usd",i=async p=>(r.refetch?await n.fetchQuery(p):await n.prefetchQuery(p),n.getQueryData(p.queryKey)),s=async p=>{if(!p||o==="usd")return p;try{let l=await Do(o);return {...p,price:p.price*l}}catch(l){return console.warn(`Failed to convert price from USD to ${o}:`,l),p}},a=Co(e,o,true),u=async()=>{try{let l=(await n.fetchQuery(a)).wallets.find(d=>d.symbol.toUpperCase()===t.toUpperCase());if(!l)return;let m=[];if(l.liquid!==void 0&&l.liquid!==null&&m.push({name:"liquid",balance:l.liquid}),l.staked!==void 0&&l.staked!==null&&l.staked>0&&m.push({name:"staked",balance:l.staked}),l.savings!==void 0&&l.savings!==null&&l.savings>0&&m.push({name:"savings",balance:l.savings}),l.extraData&&Array.isArray(l.extraData))for(let d of l.extraData){if(!d||typeof d!="object")continue;let y=d.dataKey,v=d.value;if(typeof v=="string"){let S=v.replace(/,/g,"").match(/[+-]?\s*(\d+(?:\.\d+)?)/);if(S){let R=Math.abs(Number.parseFloat(S[1]));y==="delegated_hive_power"?m.push({name:"outgoing_delegations",balance:R}):y==="received_hive_power"?m.push({name:"incoming_delegations",balance:R}):y==="powering_down_hive_power"&&m.push({name:"pending_power_down",balance:R});}}}return {name:l.symbol,title:l.name,price:l.fiatRate,accountBalance:l.balance,apr:l.apr?.toString(),layer:l.layer,pendingRewards:l.pendingRewards,parts:m}}catch{return}};return queryOptions({queryKey:["ecency-wallets","asset-info",e,t,o],queryFn:async()=>{let p=await u();if(p&&p.price>0)return p;let l;if(t==="HIVE")l=await i(J(e));else if(t==="HP")l=await i(Ro(e));else if(t==="HBD")l=await i(To(e));else if(t==="SPK")l=await i(Wo(e));else if(t==="LARYNX")l=await i(Go(e));else if(t==="LP")l=await i(zo(e));else if(t==="POINTS")l=await i(Jo(e));else if((await n.ensureQueryData(Et(e))).some(d=>d.symbol===t))l=await i(Uo(e,t));else {if(p)return p;throw new Error(`[SDK][Wallet] \u2013 unrecognized asset "${t}"`)}if(p&&l&&l.price>0){let m=await s(l);return {...p,price:m.price}}return await s(l)}})}var wl=(T=>(T.Transfer="transfer",T.TransferToSavings="transfer-saving",T.WithdrawFromSavings="withdraw-saving",T.Delegate="delegate",T.PowerUp="power-up",T.PowerDown="power-down",T.WithdrawRoutes="withdraw-routes",T.ClaimInterest="claim-interest",T.Swap="swap",T.Convert="convert",T.Gift="gift",T.Promote="promote",T.Claim="claim",T.Buy="buy",T.LockLiquidity="lock",T.Stake="stake",T.Unstake="unstake",T.Undelegate="undelegate",T))(wl||{});function XR(e,t,r){return b(["wallet","transfer"],e,n=>[Ce(e,n.to,n.amount,n.memo)],async(n,o)=>{await P(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function nq(e,t,r){return b(["wallet","transfer-point"],e,n=>[Ne(e,n.to,n.amount,n.memo)],async(n,o)=>{await P(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function cq(e,t,r){return b(["wallet","delegate-vesting-shares"],e,n=>[ze(e,n.delegatee,n.vestingShares)],async(n,o)=>{await P(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.delegatee),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function fq(e,t,r){return b(["wallet","set-withdraw-vesting-route"],e,n=>[Je(e,n.toAccount,n.percent,n.autoVest)],async(n,o)=>{await P(t?.adapter,r,[c.wallet.withdrawRoutes(e),c.accounts.full(e),c.accounts.full(o.toAccount)]);},t,"active",{broadcastMode:r})}function hq(e,t,r){return b(["wallet","transfer-spk"],e,n=>{let o=JSON.stringify({to:n.to,amount:n.amount,...typeof n.memo=="string"?{memo:n.memo}:{}});return [["custom_json",{required_auths:[e],required_posting_auths:[],id:"spkcc_spk_send",json:o}]]},async(n,o)=>{await P(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function vq(e,t,r){return b(["wallet","transfer-larynx"],e,n=>{let o=JSON.stringify({to:n.to,amount:n.amount,...typeof n.memo=="string"?{memo:n.memo}:{}});return [["custom_json",{required_auths:[e],required_posting_auths:[],id:"spkcc_send",json:o}]]},async(n,o)=>{await P(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function xq(e,t,r){return b(["wallet","transfer-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"transfer",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity,memo:n.memo}});return [["custom_json",{required_auths:[e],required_posting_auths:[],id:"ssc-mainnet-hive",json:o}]]},async(n,o)=>{await P(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function Tq(e,t,r){return b(["wallet","transfer-to-savings"],e,n=>[Be(e,n.to,n.amount,n.memo)],async(n,o)=>{await P(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function Iq(e,t,r){return b(["wallet","transfer-from-savings"],e,n=>[Te(e,n.to,n.amount,n.memo,n.requestId)],async(n,o)=>{await P(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function Qq(e,t,r){return b(["wallet","transfer-to-vesting"],e,n=>[$e(e,n.to,n.amount)],async(n,o)=>{await P(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function Lq(e,t,r){return b(["wallet","withdraw-vesting"],e,n=>[Ge(e,n.vestingShares)],async()=>{await P(t?.adapter,r,[c.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function Jq(e,t,r){return b(["wallet","convert"],e,n=>[n.collateralized?Zt(e,n.amount,n.requestId):Ye(e,n.amount,n.requestId)],async()=>{await P(t?.adapter,r,[c.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function tF(e,t,r){return b(["wallet","claim-interest"],e,n=>We(e,n.to,n.amount,n.memo,n.requestId),async()=>{await P(t?.adapter,r,[c.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}var bl=5e3,Rt=new Map;function sF(e,t,r){return b(["wallet","claim-rewards"],e,n=>[gr(e,n.rewardHive,n.rewardHbd,n.rewardVests)],()=>{let n=e??"__anonymous__",o=[c.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e],c.assets.hiveGeneralInfo(e),c.assets.hbdGeneralInfo(e),c.assets.hivePowerGeneralInfo(e)],i=Rt.get(n);i&&(clearTimeout(i),Rt.delete(n));let s=setTimeout(async()=>{try{let a=h(),p=(await Promise.allSettled(o.map(l=>a.invalidateQueries({queryKey:l})))).filter(l=>l.status==="rejected");p.length>0&&console.error("[SDK][Wallet][useClaimRewards] delayed invalidation rejected",{username:e,rejectedCount:p.length,rejected:p});}catch(a){console.error("[SDK][Wallet][useClaimRewards] delayed invalidation failed",{username:e,error:a});}finally{Rt.delete(n);}},bl);Rt.set(n,s);},t,"posting",{broadcastMode:r})}function pF(e,t,r){return b(["wallet","lock-larynx"],e,n=>{let o=JSON.stringify({amount:n.amount*1e3});return [["custom_json",{id:n.mode==="lock"?"spkcc_gov_up":"spkcc_gov_down",required_auths:[e],required_posting_auths:[],json:o}]]},async()=>{await P(t?.adapter,r,[c.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function mF(e,t,r){return b(["wallet","power-larynx"],e,n=>{let o=JSON.stringify({amount:n.amount*1e3});return [["custom_json",{id:`spkcc_power_${n.mode}`,required_auths:[e],required_posting_auths:[],json:o}]]},async()=>{await P(t?.adapter,r,[c.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function _F(e,t,r){return b(["wallet","delegate-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"delegate",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async(n,o)=>{await P(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function AF(e,t,r){return b(["wallet","undelegate-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"undelegate",contractPayload:{symbol:n.symbol,from:n.from,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async()=>{await P(t?.adapter,r,[c.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function kF(e,t,r){return b(["wallet","stake-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"stake",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async(n,o)=>{await P(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function TF(e,t,r){return b(["wallet","unstake-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"unstake",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async()=>{await P(t?.adapter,r,[c.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function KF(e,t,r){return b(["wallet","claim-engine-rewards"],e,n=>{let o=JSON.stringify(n.tokens.map(i=>({symbol:i})));return [["custom_json",{id:"scot_claim_token",required_auths:[],required_posting_auths:[e],json:o}]]},async()=>{await P(t?.adapter,r,[c.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"posting",{broadcastMode:r})}function NF(e,t,r){return b(["wallet","engine-market-order"],e,n=>{let o,i;n.action==="cancel"?(i="cancel",o={type:n.orderType,id:n.orderId}):(i=n.action,o={symbol:n.symbol,quantity:n.quantity,price:n.price});let s=JSON.stringify({contractName:"market",contractAction:i,contractPayload:o});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:s}]]},async()=>{await P(t?.adapter,r,[c.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function vl(e,t,r){let{from:n,to:o="",amount:i="",memo:s=""}=r,a=r.request_id??Date.now()>>>0;switch(e){case "HIVE":switch(t){case "transfer":return [Ce(n,o,i,s)];case "transfer-saving":return [Be(n,o,i,s)];case "withdraw-saving":return [Te(n,o,i,s,a)];case "power-up":return [$e(n,o,i)]}break;case "HBD":switch(t){case "transfer":return [Ce(n,o,i,s)];case "transfer-saving":return [Be(n,o,i,s)];case "withdraw-saving":return [Te(n,o,i,s,a)];case "claim-interest":return We(n,o,i,s,a);case "convert":return [Ye(n,i,Math.floor(Date.now()/1e3))]}break;case "HP":switch(t){case "power-down":return [Ge(n,i)];case "delegate":return [ze(n,o,i)];case "withdraw-routes":return [Je(r.from_account??n,r.to_account??o,r.percent??0,r.auto_vest??false)]}break;case "POINTS":if(t==="transfer"||t==="gift")return [Ne(n,o,i,s)];break;case "SPK":if(t==="transfer"){let u=typeof i=="number"?i:parseFloat(i)*1e3;return [["custom_json",{id:"spkcc_spk_send",required_auths:[n],required_posting_auths:[],json:JSON.stringify({to:o,amount:u,...typeof s=="string"&&s?{memo:s}:{}})}]]}break;case "LARYNX":switch(t){case "transfer":{let u=typeof i=="number"?i:parseFloat(i)*1e3;return [["custom_json",{id:"spkcc_send",required_auths:[n],required_posting_auths:[],json:JSON.stringify({to:o,amount:u,...typeof s=="string"&&s?{memo:s}:{}})}]]}case "lock":{let u=typeof r.amount=="string"?parseFloat(r.amount):Number(r.amount??0),p=r.mode==="lock"?"spkcc_gov_up":"spkcc_gov_down";return [ht(n,p,u)]}case "power-up":{let u=typeof r.amount=="string"?parseFloat(r.amount):Number(r.amount??0),p=`spkcc_power_${r.mode??"up"}`;return [ht(n,p,u)]}}break}return null}function Al(e,t,r){let{from:n,to:o="",amount:i=""}=r,s=typeof i=="string"&&i.includes(" ")?i.split(" ")[0]:String(i);switch(t){case "transfer":return [Re(n,"transfer",{symbol:e,to:o,quantity:s,memo:r.memo??""})];case "stake":return [Re(n,"stake",{symbol:e,to:o,quantity:s})];case "unstake":return [Re(n,"unstake",{symbol:e,to:o,quantity:s})];case "delegate":return [Re(n,"delegate",{symbol:e,to:o,quantity:s})];case "undelegate":return [Re(n,"undelegate",{symbol:e,from:o,quantity:s})];case "claim":return [er(n,[e])]}return null}function Pl(e){return e==="claim"?"posting":"active"}function jF(e,t,r,n,o){let{mutateAsync:i}=Me.useRecordActivity(e,r);return b(["ecency-wallets",t,r],e,s=>{let a=vl(t,r,s);if(a)return a;let u=Al(t,r,s);if(u)return u;throw new Error(`[SDK][Wallet] \u2013 no operation builder for asset="${t}" operation="${r}"`)},()=>{i();let s=[];s.push(["ecency-wallets","asset-info",e,t]),t==="HIVE"&&s.push(["ecency-wallets","asset-info",e,"HP"]),t==="LARYNX"&&r==="power-up"&&(s.push(["ecency-wallets","asset-info",e,"LP"]),s.push(["ecency-wallets","asset-info",e,"LARYNX"])),s.push(["wallet","portfolio","v2",e]),setTimeout(()=>{s.forEach(a=>{h().invalidateQueries({queryKey:a});});},5e3);},n,Pl(r),{broadcastMode:o})}function GF(e,t,r){return b(["wallet","delegate-rc"],e,({to:n,maxRc:o})=>[tr(e,n,o)],async(n,o)=>{await P(t?.adapter,r,[c.accounts.full(e),c.accounts.full(o.to),c.resourceCredits.account(e),c.resourceCredits.account(o.to)]);},t,"active",{broadcastMode:r})}function XF(e,t,r){return b(["witnesses","vote"],e,({witness:n,approve:o})=>[or(e,n,o)],async()=>{try{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.accounts.full(e),c.witnesses.votes(e)]);}catch(n){console.warn("[useWitnessVote] Post-broadcast side-effect failed:",n);}},t,"active",{broadcastMode:r})}function rK(e,t,r){return b(["witnesses","proxy"],e,({proxy:n})=>[ir(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.accounts.full(e),c.witnesses.proxy()]);},t,"active",{broadcastMode:r})}function xl(e){return {owner:e.witness_name,total_missed:e.missed_blocks,url:e.url,props:{account_creation_fee:`${(e.account_creation_fee/1e3).toFixed(3)} HIVE`,account_subsidy_budget:0,maximum_block_size:e.block_size},hbd_exchange_rate:{base:`${e.price_feed.toFixed(3)} HBD`},available_witness_account_subsidies:0,running_version:e.version,signing_key:e.signing_key,last_hbd_exchange_update:e.feed_updated_at,rank:e.rank,vests:e.vests,voters_num:e.voters_num,voters_num_daily_change:e.voters_num_daily_change,price_feed:e.price_feed,hbd_interest_rate:e.hbd_interest_rate,last_confirmed_block_num:e.last_confirmed_block_num}}function aK(e){return infiniteQueryOptions({queryKey:c.witnesses.list(e),initialPageParam:1,queryFn:async({pageParam:t})=>(await $("hafbe","/witnesses",{"page-size":e,page:t})).witnesses.map(xl),getNextPageParam:(t,r,n)=>t.length===e?n+1:void 0})}function cK(e,t,r,n="vests",o="desc"){return queryOptions({queryKey:c.witnesses.voters(e,t,r,n,o),queryFn:async({signal:i})=>await $("hafbe","/witnesses/{witness-name}/voters",{"witness-name":e,"page-size":r,page:t,sort:n,direction:o},void 0,void 0,i),enabled:!!e,staleTime:6e4})}function uK(e){return queryOptions({queryKey:c.witnesses.voterCount(e),queryFn:async()=>await $("hafbe","/witnesses/{witness-name}/voters/count",{"witness-name":e}),enabled:!!e,staleTime:6e4})}var kl=(y=>(y[y.CHECKIN=10]="CHECKIN",y[y.LOGIN=20]="LOGIN",y[y.CHECKIN_EXTRA=30]="CHECKIN_EXTRA",y[y.POST=100]="POST",y[y.COMMENT=110]="COMMENT",y[y.VOTE=120]="VOTE",y[y.REBLOG=130]="REBLOG",y[y.DELEGATION=150]="DELEGATION",y[y.REFERRAL=160]="REFERRAL",y[y.COMMUNITY=170]="COMMUNITY",y[y.TRANSFER_SENT=998]="TRANSFER_SENT",y[y.TRANSFER_INCOMING=999]="TRANSFER_INCOMING",y[y.MINTED=991]="MINTED",y))(kl||{});function yK(e,t,r,n){let{mutateAsync:o}=Me.useRecordActivity(e,"points-claimed");return useMutation({mutationFn:async()=>{if(!e)throw new Error("[SDK][Points][Claim] \u2013 username wasn't provided");if(!t)throw new Error("[SDK][Points][Claim] \u2013 access token wasn't found");let s=await _()(f.privateApiHost+"/private-api/points-claim",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!s.ok){let a=await s.text();if(s.status===406)try{return JSON.parse(a)}catch{return {message:a,code:s.status}}throw new Error(`[SDK][Points][Claim] \u2013 failed with status ${s.status}${a?`: ${a}`:""}`)}return s.json()},onError:n,onSuccess:()=>{o(),h().setQueryData(et(e).queryKey,i=>i&&{...i,points:(parseFloat(i.points)+parseFloat(i.uPoints)).toFixed(3),uPoints:"0"}),r?.();}})}function bK(e,t,r,n,o,i){return queryOptions({queryKey:c.search.results(e,t,r,n,o,i),queryFn:async({signal:s})=>{let a={q:e,sort:t,hide_low:r};n&&(a.since=n),o&&(a.scroll_id=o),i&&(a.votes=i);let u=await fetch(f.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(a),signal:le(de,s)});if(!u.ok)throw new Error(`Search failed: ${u.status}`);return u.json()}})}function vK(e,t,r=true){return infiniteQueryOptions({queryKey:c.search.controversialRising(e,t),initialPageParam:{sid:void 0,hasNextPage:true},queryFn:async({pageParam:n,signal:o})=>{if(!n.hasNextPage)return {hits:0,took:0,results:[]};let i,s=new Date;switch(t){case "today":i=new Date(s.getTime()-1440*60*1e3);break;case "week":i=new Date(s.getTime()-10080*60*1e3);break;case "month":i=new Date(s.getTime()-720*60*60*1e3);break;case "year":i=new Date(s.getTime()-365*24*60*60*1e3);break;default:i=void 0;}let a="* type:post",u=e==="rising"?"children":e,p=i?i.toISOString().split(".")[0]:void 0,l="0",m=t==="today"?50:200,d={q:a,sort:u,hide_low:l};p&&(d.since=p),n.sid&&(d.scroll_id=n.sid),(d.votes=m);let y=await fetch(f.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(d),signal:le(de,o)});if(!y.ok)throw new Error(`Search failed: ${y.status}`);return y.json()},getNextPageParam:n=>({sid:n?.scroll_id,hasNextPage:n.results.length>0}),enabled:r})}async function Rr(e){let r=await(async()=>{try{return await e.json()}catch{try{return await e.text()}catch{return}}})();if(!e.ok){let n=new Error(`Request failed with status ${e.status}`);throw n.status=e.status,n.data=r,n}if(r===void 0)throw new Error("Response body was empty or invalid JSON");return r}async function OK(e,t,r,n,o,i,s){let a={q:e,sort:t,hide_low:r};n&&(a.since=n),o&&(a.scroll_id=o),i&&(a.votes=i);let p=await _()(f.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(a),signal:le(de,s)});return Rr(p)}async function Xo(e,t,r=de){let o=await _()(f.privateApiHost+"/search-api/similar",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e),signal:le(r,t)});return Rr(o)}async function xK(e,t){let n=await _()(f.privateApiHost+"/search-api/search-path",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({q:e}),signal:le(de,t)}),o=await Rr(n);return o?.length>0?o:[e]}var Rl=4368*60*60*1e3,ql=4,Fl=3e3,Kl=2e3,Il=4e3,TK=2;function Dl(e,t){return e.replace(/!\[[^\]]*\]\([^)]*\)/g," ").replace(/\[([^\]]*)\]\([^)]*\)/g,"$1").replace(/<[^>]+>/g," ").replace(/https?:\/\/\S+/g," ").replace(/\s+/g," ").trim().slice(0,t)}function Bl(e){let t=5381;for(let r=0;r<e.length;r++)t=(t<<5)+t+e.charCodeAt(r)|0;return (t>>>0).toString(36)}function RK(e){let t=e.title??"",r=e.json_metadata?.tags,n=(Array.isArray(r)?r:[]).filter(s=>typeof s=="string"&&s!==""),o=Dl(e.body??"",Fl),i=Bl(`${t}|${n.join(",")}|${o}`);return queryOptions({queryKey:c.search.similarEntries(e.author,e.permlink,i),queryFn:async({signal:s})=>{let a=new Date(Date.now()-Rl).toISOString().slice(0,19),u=await Xo({author:e.author,permlink:e.permlink,title:t,body:o,tags:n,since:a},s,typeof window>"u"?Kl:Il),p=[],l=new Set;for(let m of u.results){if(p.length>=ql)break;m.permlink!==e.permlink&&(m.tags??[]).indexOf("nsfw")===-1&&(l.has(m.author)||(l.add(m.author),p.push(m)));}return p},staleTime:300*1e3,retry:false})}function BK(e,t=5){let r=e.trim();return queryOptions({queryKey:c.search.account(r,t),queryFn:async()=>{let n=await g("condenser_api.lookup_accounts",[r,t]);return n.length===0?[]:yt(n)},enabled:!!r})}function UK(e,t=10){let r=e.trim();return queryOptions({queryKey:c.search.topics(r,t),queryFn:async()=>(await g("condenser_api.get_trending_tags",[r,t+1])).map(o=>o.name).filter(o=>o!==""&&!o.startsWith("hive-")).slice(0,t),enabled:!!r})}function WK(e,t,r,n,o,i){return infiniteQueryOptions({queryKey:c.search.api(e,t,r,n,o,i),queryFn:async({pageParam:s,signal:a})=>{let u={q:e,sort:t,hide_low:r};n&&(u.since=n),s&&(u.scroll_id=s),o!==void 0&&(u.votes=o),i&&(u.include_nsfw=1);let p=await fetch(f.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(u),signal:le(de,a)});if(!p.ok)throw new Error(`Search failed: ${p.status}`);return p.json()},initialPageParam:void 0,getNextPageParam:s=>s?.scroll_id,enabled:!!e})}function JK(e){return queryOptions({queryKey:["search","path",e],queryFn:async()=>{let t=await fetch(f.privateApiHost+"/search-api/search-path",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({q:e})});if(!t.ok)throw new Error(`Search path failed: ${t.status}`);let r=await t.json();return r?.length>0?r:[e]}})}function eI(e){return queryOptions({queryKey:["promotions","boost-plus-prices"],queryFn:async()=>{if(!e)return [];let t=await fetch(f.privateApiHost+"/private-api/boost-plus-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!t.ok)throw new Error(`Failed to fetch boost plus prices: ${t.status}`);return await t.json()},staleTime:1/0,enabled:!!e})}function oI(e){return queryOptions({queryKey:["promotions","rc-delegation-prices"],queryFn:async()=>{if(!e)return [];let t=await fetch(f.privateApiHost+"/private-api/rc-delegation-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!t.ok)throw new Error(`Failed to fetch RC delegation prices: ${t.status}`);return await t.json()},staleTime:1/0,enabled:!!e})}function cI(e,t){return queryOptions({queryKey:["promotions","rc-delegation-active",e],queryFn:async()=>{if(!t||!e)return null;let r=await fetch(f.privateApiHost+"/private-api/rc-delegation-active",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,username:e})});if(!r.ok)throw new Error(`Failed to fetch RC delegation active: ${r.status}`);let n=await r.json();return n&&n.expires&&n.user?{user:n.user,expires:new Date(n.expires)}:null},enabled:!!e&&!!t})}function dI(e){return queryOptions({queryKey:["promotions","promote-price"],queryFn:async()=>{let t=await fetch(f.privateApiHost+"/private-api/promote-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!t.ok)throw new Error(`Failed to fetch promote prices: ${t.status}`);return await t.json()},enabled:!!e})}function yI(e,t){return queryOptions({queryKey:["promotions","boost-plus-accounts",e],queryFn:async()=>{if(!t||!e)return null;let r=await fetch(f.privateApiHost+"/private-api/boosted-plus-account",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,account:e})});if(!r.ok)throw new Error(`Failed to fetch boost plus account prices: ${r.status}`);let n=await r.json();return n?{account:n.account,expires:new Date(n.expires)}:null},enabled:!!e&&!!t})}function bI(e,t,r){return b(["promotions","boost-plus"],e,({account:n,duration:o})=>[br(e,n,o)],async(n,{account:o})=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.accounts.full(e),c.promotions.boostPlusAccounts(o)]);},t,"active",{broadcastMode:r})}function OI(e,t,r){return b(["promotions","rc-delegation"],e,({duration:n})=>[vr(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([c.accounts.full(e),c.resourceCredits.account(e),["promotions","rc-delegation-active",e]]);},t,"active",{broadcastMode:r})}async function EI(e){let r=await _()(f.privateApiHost+"/auth-api/hs-token-refresh",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!r.ok){let o;try{o=await r.json();}catch{o=void 0;}let i=new Error(`Failed to refresh token: ${r.status}`);throw i.status=r.status,i.data=o,i}return await r.json()}var Gl="https://raw.githubusercontent.com/openhive-network/watchmen/main/output/flat/badactors.txt";function RI(){return queryOptions({queryKey:c.badActors.list(),queryFn:async({signal:e})=>{let t=await fetch(Gl,{signal:e});if(!t.ok)throw new Error(`Failed to fetch bad actors list: ${t.status}`);let r=await t.text();return new Set(r.split(`
|
|
2
|
+
`).filter(Boolean))},staleTime:1440*60*1e3,gcTime:1/0})}var FI=1.1,zl=(r=>(r.NUMBER_OF_VOTES="number_of_votes",r.TOKENS="tokens",r))(zl||{});function KI(e){return e?e.map((t,r)=>({choice_num:r+1,choice_text:t,votes:{total_votes:0,hive_hp:0,hive_proxied_hp:0,hive_hp_incl_proxied:0}})):[]}function Yl(e){let t=e.poll_choices??[],r=e.poll_voters??[],n=e.poll_stats,o=t.map(a=>{let u=a.votes;return {choice_num:a.choice_num??0,choice_text:a.choice_text??"",votes:u?{total_votes:u.total_votes??0,hive_hp:u.hive_hp,hive_proxied_hp:u.hive_proxied_hp,hive_hp_incl_proxied:u.hive_hp_incl_proxied??null}:void 0}}),i=r.map(a=>({name:a.name??"",choices:a.choices??[],hive_hp:a.hive_hp,hive_proxied_hp:a.hive_proxied_hp,hive_hp_incl_proxied:a.hive_hp_incl_proxied})),s=n?{total_voting_accounts_num:n.total_voting_accounts_num??0,total_hive_hp:n.total_hive_hp,total_hive_proxied_hp:n.total_hive_proxied_hp,total_hive_hp_incl_proxied:n.total_hive_hp_incl_proxied??null}:void 0;return {author:e.author??"",permlink:e.permlink??"",question:e.question??"",poll_choices:o,poll_voters:i,poll_stats:s,poll_trx_id:e.poll_trx_id??"",status:e.status??"",end_time:e.end_time??"",preferred_interpretation:e.preferred_interpretation??"number_of_votes",max_choices_voted:e.max_choices_voted??1,filter_account_age_days:e.filter_account_age_days??0,protocol_version:e.protocol_version??0,created:e.created??"",post_title:e.post_title??"",post_body:e.post_body??"",parent_permlink:e.parent_permlink??"",tags:e.tags??[],image:e.image??[],token:e.token,community_membership:e.community_membership,allow_vote_changes:e.allow_vote_changes,ui_hide_res_until_voted:e.ui_hide_res_until_voted??false,platform:e.platform}}function MI(e,t){return queryOptions({queryKey:c.polls.details(e??"",t??""),enabled:!!e&&!!t,gcTime:1800*1e3,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Polls] \u2013 missing author or permlink");let r=_(),n=`${f.pollsApiHost}/rpc/poll?author=eq.${encodeURIComponent(e)}&permlink=eq.${encodeURIComponent(t)}`,o=await r(n);if(!o.ok)throw new Error(`[SDK][Polls] \u2013 fetch failed: ${o.status}`);let i=await o.json();if(!Array.isArray(i)||!i[0])throw new Error("[SDK][Polls] \u2013 no poll data found");return Yl(i[0])}})}function UI(e,t,r){return b(c.polls.vote(),e??"",({pollTrxId:n,choices:o})=>{if(!e)throw new Error("[SDK][Polls] Cannot vote without an authenticated username");return [["custom_json",{id:"polls",required_auths:[],required_posting_auths:[e],json:JSON.stringify({poll:n,action:"vote",choices:o})}]]},void 0,t,"posting",{broadcastMode:r??"async"})}/**
|
|
3
3
|
* @license bytebuffer.ts (c) 2015 Daniel Wirtz <dcode@dcode.io>
|
|
4
4
|
* Backing buffer: ArrayBuffer, Accessor: DataView
|
|
5
5
|
* Released under the Apache License, Version 2.0
|
|
6
6
|
* see: https://github.com/dcodeIO/bytebuffer.ts for details
|
|
7
7
|
* modified by @xmcl/bytebuffer
|
|
8
8
|
* And customized for hive-tx
|
|
9
|
-
*/export{Dn as ACCOUNT_OPERATION_GROUPS,Ls as ALL_ACCOUNT_OPERATIONS,sk as ALL_NOTIFY_TYPES,dl as AssetOperation,Pf as BROADCAST_INCLUSION_DELAY_MS,no as BuySellTransactionType,f as CONFIG,B as ConfigManager,Ne as EcencyAnalytics,ds as EcencyQueriesManager,Re as EntriesCacheManagement,xn as ErrorType,Er as HIVE_ACCOUNT_OPERATION_GROUPS,wS as HIVE_OPERATION_LIST,OS as HIVE_OPERATION_NAME_BY_ID,PS as HIVE_OPERATION_ORDERS,kt as HiveEngineToken,Oo as HiveSignerIntegration,Oe as HiveTxTransaction,de as INTERNAL_API_TIMEOUT_MS,vn as Memo,lt as NaiMap,Ju as NotificationFilter,Xu as NotificationViewType,Yu as NotifyTypes,Gc as OPERATION_AUTHORITY_MAP,oo as OrderIdPrefix,kI as POLLS_PROTOCOL_VERSION,wl as PointTransactionType,Ul as PollPreferredInterpretation,M as PrivateKey,V as PublicKey,Qu as QUEST_CATALOG,c as QueryKeys,$u as ROLES,OK as SIMILAR_ENTRIES_MIN_RENDER,ye as Signature,$n as SortOrder,Sn as Symbol,sA as ThreeSpeakIntegration,go as addDraft,lo as addImage,tO as addOptimisticDiscussionEntry,_o as addSchedule,X as bridgeApiCall,En as broadcastJson,W as broadcastOperations,On as broadcastOperationsAsync,mr as buildAccountCreateOp,yc as buildAccountUpdate2Op,gc as buildAccountUpdateOp,Pc as buildActiveCustomJsonOp,_r as buildBoostPlusOp,ro as buildCancelTransferFromSavingsOp,_c as buildChangeRecoveryAccountOp,yr as buildClaimAccountOp,je as buildClaimInterestOps,fr as buildClaimRewardBalanceOp,Yt as buildCollateralizedConvertOp,ke as buildCommentOp,Ee as buildCommentOptionsOp,vr as buildCommunityRegistrationOp,ze as buildConvertOp,gr as buildCreateClaimedAccountOp,Zt as buildDelegateRcOp,$e as buildDelegateVestingSharesOp,zt as buildDeleteCommentOp,Xt as buildEngineClaimOp,Te as buildEngineOp,fc as buildFlagPostOp,er as buildFollowOp,hr as buildGrantPostingPermissionOp,cc as buildIgnoreOp,dr as buildLimitOrderCancelOp,_t as buildLimitOrderCreateOp,mc as buildLimitOrderCreateOpWithType,vc as buildMultiPointTransferOps,sc as buildMultiTransferOps,lr as buildMutePostOp,dc as buildMuteUserOp,pr as buildPinPostOp,Be as buildPointTransferOp,Oc as buildPostingCustomJsonOp,Kn as buildPostingJsonMetadata,Lt as buildProfileMetadata,br as buildPromoteOp,or as buildProposalCreateOp,ir as buildProposalVoteOp,wr as buildRcDelegationOp,Jt as buildReblogOp,bc as buildRecoverAccountOp,ac as buildRecurrentTransferOp,pc as buildRemoveProposalOp,wc as buildRequestAccountRecoveryOp,so as buildRevokeKeysOp,hc as buildRevokePostingPermissionOp,tr as buildSetLastReadOps,cr as buildSetRoleOp,Ge as buildSetWithdrawVestingRouteOp,gt as buildSpkCustomJsonOp,sr as buildSubscribeOp,Ce as buildTransferFromSavingsOp,Se as buildTransferOp,De as buildTransferToSavingsOp,Le as buildTransferToVestingOp,yt as buildUnfollowOp,uc as buildUnignoreOp,ar as buildUnsubscribeOp,ur as buildUpdateCommunityOp,lc as buildUpdateProposalOp,Gt as buildVoteOp,We as buildWithdrawVestingOp,nr as buildWitnessProxyOp,rr as buildWitnessVoteOp,pt as calculateRCMana,Vt as calculateVPMana,L as callREST,g as callRPC,qe as callRPCBroadcast,ct as callWithQuorum,Ov as canRevokeFromAuthority,Fg as checkFavoriteQueryOptions,pg as checkUsernameWalletsPendingQueryOptions,Bf as decodeObj,Tc as dedupeAndSortKeyAuths,ho as deleteDraft,mo as deleteImage,wo as deleteSchedule,$v as downVotingPower,Df as encodeObj,kA as estimateRcPrecheck,Fn as extractAccountProfile,es as formatError,Me as formattedNumber,cE as getAccountDelegationsQueryOptions,I as getAccountFullQueryOptions,Qx as getAccountNotificationsInfiniteQueryOptions,Ug as getAccountPendingRecoveryQueryOptions,Wt as getAccountPosts,jh as getAccountPostsInfiniteQueryOptions,Lh as getAccountPostsQueryOptions,OA as getAccountRcQueryOptions,Bg as getAccountRecoveriesQueryOptions,$g as getAccountReputationsQueryOptions,wg as getAccountSubscriptionsQueryOptions,Nw as getAccountVoteHistoryInfiniteQueryOptions,MR as getAccountWalletAssetInfoQueryOptions,Tm as getAccountsQueryOptions,Zw as getAggregatedBalanceQueryOptions,cm as getAiAssistPriceQueryOptions,om as getAiGeneratePriceQueryOptions,AT as getAllHiveEngineTokensQueryOptions,mk as getAnnouncementsQueryOptions,AI as getBadActorsQueryOptions,Gw as getBalanceHistoryInfiniteQueryOptions,Ag as getBookmarksInfiniteQueryOptions,Og as getBookmarksQueryOptions,uI as getBoostPlusAccountPricesQueryOptions,$K as getBoostPlusPricesQueryOptions,oy as getBotsQueryOptions,_ as getBoundFetch,f0 as getChainPropertiesQueryOptions,bE as getCollateralizedConversionRequestsQueryOptions,C_ as getCommentHistoryQueryOptions,Sh as getCommunities,bx as getCommunitiesQueryOptions,jn as getCommunity,xx as getCommunityContextQueryOptions,zx as getCommunityPermissions,Tx as getCommunityQueryOptions,Ix as getCommunitySubscribersQueryOptions,Gx as getCommunityType,rh as getContentQueryOptions,ah as getContentRepliesQueryOptions,mK as getControversialRisingInfiniteQueryOptions,yE as getConversionRequestsQueryOptions,Fo as getCurrencyRate,$C as getCurrencyRates,WC as getCurrencyTokenRate,KC as getCurrentMedianHistoryPriceQueryOptions,zc as getCustomJsonAuthority,F_ as getDeletedEntryQueryOptions,IO as getDiscoverCurationQueryOptions,TO as getDiscoverLeaderboardQueryOptions,Vn as getDiscussion,Nh as getDiscussionQueryOptions,Gn as getDiscussionsQueryOptions,w_ as getDraftsInfiniteQueryOptions,__ as getDraftsQueryOptions,fe as getDynamicPropsQueryOptions,Wy as getEntryActiveVotesQueryOptions,Cg as getFavoritesInfiniteQueryOptions,Sg as getFavoritesQueryOptions,TC as getFeedHistoryQueryOptions,Im as getFollowCountQueryOptions,Qm as getFollowersQueryOptions,Lm as getFollowingQueryOptions,By as getFragmentsInfiniteQueryOptions,Ie as getFragmentsQueryOptions,hy as getFriendsInfiniteQueryOptions,A_ as getGalleryImagesQueryOptions,TA as getGameStatusCheckQueryOptions,Eo as getHbdAssetGeneralInfoQueryOptions,KS as getHbdAssetTransactionsQueryOptions,z as getHiveAssetGeneralInfoQueryOptions,VS as getHiveAssetMetricQueryOptions,vt as getHiveAssetTransactionsQueryOptions,$S as getHiveAssetWithdrawalRoutesQueryOptions,qT as getHiveEngineBalancesWithUsdQueryOptions,$p as getHiveEngineMetrics,ZC as getHiveEngineOpenOrders,YC as getHiveEngineOrderBook,Mo as getHiveEngineTokenGeneralInfoQueryOptions,Io as getHiveEngineTokenMetrics,Ko as getHiveEngineTokenTransactions,dT as getHiveEngineTokenTransactionsQueryOptions,Ot as getHiveEngineTokensBalances,xt as getHiveEngineTokensBalancesQueryOptions,Pt as getHiveEngineTokensMarket,Bo as getHiveEngineTokensMarketQueryOptions,At as getHiveEngineTokensMetadata,No as getHiveEngineTokensMetadataQueryOptions,yT as getHiveEngineTokensMetricsQueryOptions,XC as getHiveEngineTradeHistory,Do as getHiveEngineUnclaimedRewards,bT as getHiveEngineUnclaimedRewardsQueryOptions,_C as getHiveHbdStatsQueryOptions,lA as getHivePoshLinksQueryOptions,So as getHivePowerAssetGeneralInfoQueryOptions,MS as getHivePowerAssetTransactionsQueryOptions,YS as getHivePowerDelegatesInfiniteQueryOptions,rC as getHivePowerDelegatingsQueryOptions,GC as getHivePrice,x_ as getImagesInfiniteQueryOptions,O_ as getImagesQueryOptions,QE as getIncomingRcQueryOptions,Lo as getLarynxAssetGeneralInfoQueryOptions,Wo as getLarynxPowerAssetGeneralInfoQueryOptions,LC as getMarketData,PC as getMarketDataQueryOptions,mC as getMarketHistoryQueryOptions,pC as getMarketStatisticsQueryOptions,Jm as getMutedUsersQueryOptions,Rw as getNormalizePostQueryOptions,U0 as getNotificationSetting,Q0 as getNotifications,nk as getNotificationsInfiniteQueryOptions,pk as getNotificationsSettingsQueryOptions,Zx as getNotificationsUnreadCountQueryOptions,qE as getOpenOrdersQueryOptions,Yc as getOperationAuthority,sC as getOrderBookQueryOptions,DE as getOutgoingRcDelegationsInfiniteQueryOptions,MO as getPageStatsQueryOptions,$o as getPointsAssetGeneralInfoQueryOptions,AR as getPointsAssetTransactionsQueryOptions,Xe as getPointsQueryOptions,qI as getPollQueryOptions,ko as getPortfolioQueryOptions,ma as getPost,Eh as getPostHeader,dh as getPostHeaderQueryOptions,Mn as getPostQueryOptions,B_ as getPostTipsQueryOptions,Un as getPostsRanked,Xh as getPostsRankedInfiniteQueryOptions,Zh as getPostsRankedQueryOptions,mt as getProfiles,Vw as getProfilesQueryOptions,iI as getPromotePriceQueryOptions,j0 as getPromotedPost,Hy as getPromotedPostsQuery,Jc as getProposalAuthority,Fk as getProposalQueryOptions,Uk as getProposalVotesInfiniteQueryOptions,Bk as getProposalsQueryOptions,h as getQueryClient,HA as getQuestCatalogEntry,MA as getQuestsQueryOptions,tI as getRcDelegationActiveQueryOptions,YK as getRcDelegationPricesQueryOptions,wA as getRcStatsQueryOptions,u_ as getRebloggedByQueryOptions,o_ as getReblogsQueryOptions,jE as getReceivedVestingSharesQueryOptions,GE as getRecurrentTransfersQueryOptions,cy as getReferralsInfiniteQueryOptions,dy as getReferralsStatsQueryOptions,Rh as getRelationshipBetweenAccounts,In as getRelationshipBetweenAccountsQueryOptions,Yv as getRequiredAuthority,Zf as getRewardFundQueryOptions,jx as getRewardedCommunitiesQueryOptions,AE as getSavingsWithdrawFromQueryOptions,m_ as getSchedulesInfiniteQueryOptions,f_ as getSchedulesQueryOptions,TK as getSearchAccountQueryOptions,sg as getSearchAccountsByUsernameQueryOptions,MK as getSearchApiInfiniteQueryOptions,Py as getSearchFriendsQueryOptions,VK as getSearchPathQueryOptions,IK as getSearchTopicsQueryOptions,Y_ as getShortsFeedQueryOptions,AK as getSimilarEntriesQueryOptions,Vo as getSpkAssetGeneralInfoQueryOptions,Ho as getSpkMarkets,ge as getSpkMarketsQueryOptions,Qo as getSpkWallet,me as getSpkWalletQueryOptions,_k as getSpotlightsQueryOptions,gA as getStatsQueryOptions,Th as getSubscribers,Ch as getSubscriptions,kC as getTradeHistoryQueryOptions,ey as getTransactionsInfiniteQueryOptions,Ey as getTrendingTagsQueryOptions,Fy as getTrendingTagsWithStatsQueryOptions,Yy as getUserPostVoteQueryOptions,Wk as getUserProposalVotesQueryOptions,dE as getVestingDelegationExpirationsQueryOptions,oE as getVestingDelegationsQueryOptions,Yn as getVisibleFirstLevelThreadItems,Pw as getWavesByAccountQueryOptions,nw as getWavesByHostQueryOptions,cw as getWavesByTagQueryOptions,L_ as getWavesFeedQueryOptions,fw as getWavesFollowingQueryOptions,W_ as getWavesLatestFeedQueryOptions,kw as getWavesTrendingAuthorsQueryOptions,hw as getWavesTrendingTagsQueryOptions,SE as getWithdrawRoutesQueryOptions,rK as getWitnessVoterCountQueryOptions,tK as getWitnessVotersPageQueryOptions,eK as getWitnessesInfiniteQueryOptions,C as hiveTxConfig,G as hiveTxUtils,bI as hsTokenRenew,O as invalidateAfterBroadcast,Cn as isCommunity,Tn as isEmptyDate,rs as isInfoError,ns as isNetworkError,ts as isResourceCreditsError,Pn as isWif,fs as isWrappedResponse,tg as lookupAccountsQueryOptions,Kf as makeQueryClient,EI as mapMetaChoicesToPollChoices,Xn as mapThreadItemsToWaveEntries,po as markNotifications,bo as moveSchedule,Ln as normalizePost,Y as normalizeToWrappedResponse,ae as normalizeWaveEntryFromApi,L0 as onboardEmail,ft as parseAccounts,x as parseAsset,Fe as parseChainError,As as parsePostingMetadataRoot,Ue as parseProfileMetadata,Wv as powerRechargeTime,Gv as rcPower,vo as removeOptimisticDiscussionEntry,Je as resolveHiveOperationFilters,Qn as resolvePost,Po as restoreDiscussionSnapshots,nO as restoreEntryInCache,Uo as rewardSpk,Wx as roleMap,H0 as saveNotificationSetting,hK as search,_K as searchPath,fK as searchQueryOptions,sf as sha256,ue as shouldTriggerAuthFallback,B0 as signUp,zo as similar,ga as sortDiscussions,N0 as subscribeEmail,Fa as toEntryArray,yo as updateDraft,rO as updateEntryInCache,fo as uploadImage,V0 as uploadImageWithSignature,$b as useAccountFavoriteAdd,Xb as useAccountFavoriteDelete,pb as useAccountRelationsUpdate,Cv as useAccountRevokeKey,mv as useAccountRevokePosting,ib as useAccountUpdate,io as useAccountUpdateKeyAuths,cv as useAccountUpdatePassword,vv as useAccountUpdateRecovery,J0 as useAddDraft,v0 as useAddFragment,EP as useAddImage,dP as useAddSchedule,ym as useAiAssist,Mb as useBookmarkAdd,Vb as useBookmarkDelete,fI as useBoostPlus,b as useBroadcastMutation,Fv as useClaimAccount,EF as useClaimEngineRewards,Gq as useClaimInterest,uK as useClaimPoints,Zq as useClaimRewards,XP as useComment,Vq as useConvert,Hv as useCreateAccount,dO as useCrossPost,lF as useDelegateEngineToken,HF as useDelegateRc,tq as useDelegateVestingShares,cO as useDeleteComment,aP as useDeleteDraft,qP as useDeleteImage,hP as useDeleteSchedule,S0 as useEditFragment,RF as useEngineMarketOrder,Rb as useFollow,IA as useGameClaim,dm as useGenerateImage,Bv as useGrantPostingPermission,UC as useLimitOrderCancel,NC as useLimitOrderCreate,nF as useLockLarynx,xk as useMarkNotificationsRead,PP as useMoveSchedule,ZA as useMutePost,gx as usePinPost,II as usePollVote,aF as usePowerLarynx,bO as usePromote,eE as useProposalCreate,Jk as useProposalVote,hI as useRcDelegation,GP as useReblog,Or as useRecordActivity,lx as useRegisterCommunityRewards,K0 as useRemoveFragment,nx as useSetCommunityRole,Ck as useSetLastRead,sq as useSetWithdrawVestingRoute,u0 as useSignOperationByHivesigner,r0 as useSignOperationByKey,i0 as useSignOperationByKeychain,wF as useStakeEngineToken,LA as useSubscribeCommunity,LR as useTransfer,_q as useTransferEngineToken,Sq as useTransferFromSavings,mq as useTransferLarynx,JR as useTransferPoint,pq as useTransferSpk,Oq as useTransferToSavings,Fq as useTransferToVesting,gF as useUndelegateEngineToken,Ib as useUnfollow,OF as useUnstakeEngineToken,zA as useUnsubscribeCommunity,ax as useUpdateCommunity,tP as useUpdateDraft,yO as useUpdateReply,DP as useUploadImage,VP as useVote,BF as useWalletOperation,Nq as useWithdrawVesting,zF as useWitnessProxy,LF as useWitnessVote,M0 as usrActivity,vu as validatePostCreating,Nn as verifyPostOnAlternateNode,Ke as vestsToHp,Lv as votingPower,$c as votingRshares,zv as votingValue,le as withTimeoutSignal};//# sourceMappingURL=index.mjs.map
|
|
9
|
+
*/export{Mn as ACCOUNT_OPERATION_GROUPS,Xs as ALL_ACCOUNT_OPERATIONS,fk as ALL_NOTIFY_TYPES,wl as AssetOperation,Cf as BROADCAST_INCLUSION_DELAY_MS,so as BuySellTransactionType,f as CONFIG,B as ConfigManager,Me as EcencyAnalytics,ws as EcencyQueriesManager,qe as EntriesCacheManagement,Sn as ErrorType,Cr as HIVE_ACCOUNT_OPERATION_GROUPS,kS as HIVE_OPERATION_LIST,TS as HIVE_OPERATION_NAME_BY_ID,CS as HIVE_OPERATION_ORDERS,St as HiveEngineToken,ko as HiveSignerIntegration,Oe as HiveTxTransaction,de as INTERNAL_API_TIMEOUT_MS,On as Memo,ft as NaiMap,np as NotificationFilter,ip as NotificationViewType,op as NotifyTypes,tu as OPERATION_AUTHORITY_MAP,ao as OrderIdPrefix,FI as POLLS_PROTOCOL_VERSION,kl as PointTransactionType,zl as PollPreferredInterpretation,M as PrivateKey,j as PublicKey,$u as QUEST_CATALOG,c as QueryKeys,ep as ROLES,TK as SIMILAR_ENTRIES_MIN_RENDER,ye as Signature,Jn as SortOrder,Rn as Symbol,fO as ThreeSpeakIntegration,_o as addDraft,go as addImage,cP as addOptimisticDiscussionEntry,vo as addSchedule,Z as bridgeApiCall,Tn as broadcastJson,W as broadcastOperations,kn as broadcastOperationsAsync,yr as buildAccountCreateOp,Pc as buildAccountUpdate2Op,Ac as buildAccountUpdateOp,Cc as buildActiveCustomJsonOp,br as buildBoostPlusOp,io as buildCancelTransferFromSavingsOp,xc as buildChangeRecoveryAccountOp,_r as buildClaimAccountOp,We as buildClaimInterestOps,gr as buildClaimRewardBalanceOp,Zt as buildCollateralizedConvertOp,Ee as buildCommentOp,Se as buildCommentOptionsOp,Pr as buildCommunityRegistrationOp,Ye as buildConvertOp,hr as buildCreateClaimedAccountOp,tr as buildDelegateRcOp,ze as buildDelegateVestingSharesOp,Yt as buildDeleteCommentOp,er as buildEngineClaimOp,Re as buildEngineOp,bc as buildFlagPostOp,rr as buildFollowOp,wr as buildGrantPostingPermissionOp,gc as buildIgnoreOp,mr as buildLimitOrderCancelOp,bt as buildLimitOrderCreateOp,vc as buildLimitOrderCreateOpWithType,Sc as buildMultiPointTransferOps,fc as buildMultiTransferOps,fr as buildMutePostOp,wc as buildMuteUserOp,dr as buildPinPostOp,Ne as buildPointTransferOp,Tc as buildPostingCustomJsonOp,Bn as buildPostingJsonMetadata,$t as buildProfileMetadata,Ar as buildPromoteOp,sr as buildProposalCreateOp,ar as buildProposalVoteOp,vr as buildRcDelegationOp,Xt as buildReblogOp,Ec as buildRecoverAccountOp,mc as buildRecurrentTransferOp,hc as buildRemoveProposalOp,kc as buildRequestAccountRecoveryOp,uo as buildRevokeKeysOp,Oc as buildRevokePostingPermissionOp,nr as buildSetLastReadOps,pr as buildSetRoleOp,Je as buildSetWithdrawVestingRouteOp,ht as buildSpkCustomJsonOp,cr as buildSubscribeOp,Te as buildTransferFromSavingsOp,Ce as buildTransferOp,Be as buildTransferToSavingsOp,$e as buildTransferToVestingOp,_t as buildUnfollowOp,yc as buildUnignoreOp,ur as buildUnsubscribeOp,lr as buildUpdateCommunityOp,_c as buildUpdateProposalOp,Jt as buildVoteOp,Ge as buildWithdrawVestingOp,ir as buildWitnessProxyOp,or as buildWitnessVoteOp,dt as calculateRCMana,Lt as calculateVPMana,$ as callREST,g as callRPC,Fe as callRPCBroadcast,pt as callWithQuorum,Tv as canRevokeFromAuthority,Qg as checkFavoriteQueryOptions,hg as checkUsernameWalletsPendingQueryOptions,jf as decodeObj,Bc as dedupeAndSortKeyAuths,bo as deleteDraft,ho as deleteImage,Ao as deleteSchedule,e0 as downVotingPower,Vf as encodeObj,FO as estimateRcPrecheck,Dn as extractAccountProfile,as as formatError,Qe as formattedNumber,gE as getAccountDelegationsQueryOptions,D as getAccountFullQueryOptions,$x as getAccountNotificationsInfiniteQueryOptions,zg as getAccountPendingRecoveryQueryOptions,Gt as getAccountPosts,Yh as getAccountPostsInfiniteQueryOptions,Xh as getAccountPostsQueryOptions,TO as getAccountRcQueryOptions,jg as getAccountRecoveriesQueryOptions,ey as getAccountReputationsQueryOptions,kg as getAccountSubscriptionsQueryOptions,Lw as getAccountVoteHistoryInfiniteQueryOptions,WR as getAccountWalletAssetInfoQueryOptions,Bm as getAccountsQueryOptions,sb as getAggregatedBalanceQueryOptions,gm as getAiAssistPriceQueryOptions,lm as getAiGeneratePriceQueryOptions,RT as getAllHiveEngineTokensQueryOptions,vk as getAnnouncementsQueryOptions,RI as getBadActorsQueryOptions,tb as getBalanceHistoryInfiniteQueryOptions,Rg as getBookmarksInfiniteQueryOptions,Tg as getBookmarksQueryOptions,yI as getBoostPlusAccountPricesQueryOptions,eI as getBoostPlusPricesQueryOptions,ly as getBotsQueryOptions,_ as getBoundFetch,b0 as getChainPropertiesQueryOptions,EE as getCollateralizedConversionRequestsQueryOptions,D_ as getCommentHistoryQueryOptions,Ih as getCommunities,Ex as getCommunitiesQueryOptions,$n as getCommunity,qx as getCommunityContextQueryOptions,rk as getCommunityPermissions,Bx as getCommunityQueryOptions,Ux as getCommunitySubscribersQueryOptions,tk as getCommunityType,uh as getContentQueryOptions,mh as getContentRepliesQueryOptions,vK as getControversialRisingInfiniteQueryOptions,PE as getConversionRequestsQueryOptions,Do as getCurrencyRate,eT as getCurrencyRates,ZC as getCurrencyTokenRate,HC as getCurrentMedianHistoryPriceQueryOptions,ru as getCustomJsonAuthority,Q_ as getDeletedEntryQueryOptions,UP as getDiscoverCurationQueryOptions,BP as getDiscoverLeaderboardQueryOptions,Wn as getDiscussion,Lh as getDiscussionQueryOptions,Yn as getDiscussionsQueryOptions,k_ as getDraftsInfiniteQueryOptions,x_ as getDraftsQueryOptions,fe as getDynamicPropsQueryOptions,Zy as getEntryActiveVotesQueryOptions,Dg as getFavoritesInfiniteQueryOptions,Ig as getFavoritesQueryOptions,BC as getFeedHistoryQueryOptions,Um as getFollowCountQueryOptions,$m as getFollowersQueryOptions,Xm as getFollowingQueryOptions,jy as getFragmentsInfiniteQueryOptions,De as getFragmentsQueryOptions,Oy as getFriendsInfiniteQueryOptions,R_ as getGalleryImagesQueryOptions,BO as getGameStatusCheckQueryOptions,To as getHbdAssetGeneralInfoQueryOptions,HS as getHbdAssetTransactionsQueryOptions,J as getHiveAssetGeneralInfoQueryOptions,JS as getHiveAssetMetricQueryOptions,Pt as getHiveAssetTransactionsQueryOptions,eC as getHiveAssetWithdrawalRoutesQueryOptions,MT as getHiveEngineBalancesWithUsdQueryOptions,el as getHiveEngineMetrics,sT as getHiveEngineOpenOrders,oT as getHiveEngineOrderBook,Uo as getHiveEngineTokenGeneralInfoQueryOptions,No as getHiveEngineTokenMetrics,Bo as getHiveEngineTokenTransactions,wT as getHiveEngineTokenTransactionsQueryOptions,xt as getHiveEngineTokensBalances,Et as getHiveEngineTokensBalancesQueryOptions,Ot as getHiveEngineTokensMarket,Qo as getHiveEngineTokensMarketQueryOptions,kt as getHiveEngineTokensMetadata,Ho as getHiveEngineTokensMetadataQueryOptions,PT as getHiveEngineTokensMetricsQueryOptions,iT as getHiveEngineTradeHistory,Mo as getHiveEngineUnclaimedRewards,ET as getHiveEngineUnclaimedRewardsQueryOptions,xC as getHiveHbdStatsQueryOptions,_O as getHivePoshLinksQueryOptions,Ro as getHivePowerAssetGeneralInfoQueryOptions,WS as getHivePowerAssetTransactionsQueryOptions,oC as getHivePowerDelegatesInfiniteQueryOptions,uC as getHivePowerDelegatingsQueryOptions,tT as getHivePrice,q_ as getImagesInfiniteQueryOptions,T_ as getImagesQueryOptions,$E as getIncomingRcQueryOptions,Go as getLarynxAssetGeneralInfoQueryOptions,zo as getLarynxPowerAssetGeneralInfoQueryOptions,XC as getMarketData,CC as getMarketDataQueryOptions,vC as getMarketHistoryQueryOptions,hC as getMarketStatisticsQueryOptions,ng as getMutedUsersQueryOptions,Nw as getNormalizePostQueryOptions,z0 as getNotificationSetting,$0 as getNotifications,pk as getNotificationsInfiniteQueryOptions,hk as getNotificationsSettingsQueryOptions,sk as getNotificationsUnreadCountQueryOptions,ME as getOpenOrdersQueryOptions,ou as getOperationAuthority,fC as getOrderBookQueryOptions,VE as getOutgoingRcDelegationsInfiniteQueryOptions,WP as getPageStatsQueryOptions,Jo as getPointsAssetGeneralInfoQueryOptions,RR as getPointsAssetTransactionsQueryOptions,et as getPointsQueryOptions,MI as getPollQueryOptions,Co as getPortfolioQueryOptions,va as getPost,Kh as getPostHeader,wh as getPostHeaderQueryOptions,Un as getPostQueryOptions,j_ as getPostTipsQueryOptions,Ln as getPostsRanked,i_ as getPostsRankedInfiniteQueryOptions,s_ as getPostsRankedQueryOptions,yt as getProfiles,Jw as getProfilesQueryOptions,dI as getPromotePriceQueryOptions,Y0 as getPromotedPost,Gy as getPromotedPostsQuery,nu as getProposalAuthority,Qk as getProposalQueryOptions,zk as getProposalVotesInfiniteQueryOptions,jk as getProposalsQueryOptions,h as getQueryClient,GO as getQuestCatalogEntry,WO as getQuestsQueryOptions,cI as getRcDelegationActiveQueryOptions,oI as getRcDelegationPricesQueryOptions,kO as getRcStatsQueryOptions,y_ as getRebloggedByQueryOptions,l_ as getReblogsQueryOptions,YE as getReceivedVestingSharesQueryOptions,tS as getRecurrentTransfersQueryOptions,gy as getReferralsInfiniteQueryOptions,wy as getReferralsStatsQueryOptions,Nh as getRelationshipBetweenAccounts,Nn as getRelationshipBetweenAccountsQueryOptions,o0 as getRequiredAuthority,sm as getRewardFundQueryOptions,Yx as getRewardedCommunitiesQueryOptions,RE as getSavingsWithdrawFromQueryOptions,v_ as getSchedulesInfiniteQueryOptions,b_ as getSchedulesQueryOptions,BK as getSearchAccountQueryOptions,fg as getSearchAccountsByUsernameQueryOptions,WK as getSearchApiInfiniteQueryOptions,Cy as getSearchFriendsQueryOptions,JK as getSearchPathQueryOptions,UK as getSearchTopicsQueryOptions,ow as getShortsFeedQueryOptions,RK as getSimilarEntriesQueryOptions,Wo as getSpkAssetGeneralInfoQueryOptions,jo as getSpkMarkets,ge as getSpkMarketsQueryOptions,Vo as getSpkWallet,me as getSpkWalletQueryOptions,xk as getSpotlightsQueryOptions,AO as getStatsQueryOptions,Bh as getSubscribers,Dh as getSubscriptions,FC as getTradeHistoryQueryOptions,ay as getTransactionsInfiniteQueryOptions,Ky as getTrendingTagsQueryOptions,Qy as getTrendingTagsWithStatsQueryOptions,oh as getUserPostVoteQueryOptions,Zk as getUserProposalVotesQueryOptions,wE as getVestingDelegationExpirationsQueryOptions,lE as getVestingDelegationsQueryOptions,eo as getVisibleFirstLevelThreadItems,Cw as getWavesByAccountQueryOptions,pw as getWavesByHostQueryOptions,gw as getWavesByTagQueryOptions,X_ as getWavesFeedQueryOptions,bw as getWavesFollowingQueryOptions,Z_ as getWavesLatestFeedQueryOptions,Fw as getWavesTrendingAuthorsQueryOptions,Ow as getWavesTrendingTagsQueryOptions,IE as getWithdrawRoutesQueryOptions,uK as getWitnessVoterCountQueryOptions,cK as getWitnessVotersPageQueryOptions,aK as getWitnessesInfiniteQueryOptions,C as hiveTxConfig,z as hiveTxUtils,EI as hsTokenRenew,P as invalidateAfterBroadcast,qn as isCommunity,Fn as isEmptyDate,us as isInfoError,ps as isNetworkError,cs as isResourceCreditsError,xn as isWif,bs as isWrappedResponse,cg as lookupAccountsQueryOptions,Hf as makeQueryClient,KI as mapMetaChoicesToPollChoices,to as mapThreadItemsToWaveEntries,mo as markNotifications,Po as moveSchedule,Gn as normalizePost,X as normalizeToWrappedResponse,ae as normalizeWaveEntryFromApi,X0 as onboardEmail,gt as parseAccounts,x as parseAsset,Ke as parseChainError,Rs as parsePostingMetadataRoot,je as parseProfileMetadata,Zv as powerRechargeTime,t0 as rcPower,Oo as removeOptimisticDiscussionEntry,Xe as resolveHiveOperationFilters,Vn as resolvePost,xo as restoreDiscussionSnapshots,pP as restoreEntryInCache,Lo as rewardSpk,Zx as roleMap,G0 as saveNotificationSetting,OK as search,xK as searchPath,bK as searchQueryOptions,ff as sha256,ue as shouldTriggerAuthFallback,j0 as signUp,Xo as similar,Aa as sortDiscussions,L0 as subscribeEmail,Qa as toEntryArray,wo as updateDraft,uP as updateEntryInCache,yo as uploadImage,J0 as uploadImageWithSignature,ev as useAccountFavoriteAdd,iv as useAccountFavoriteDelete,hb as useAccountRelationsUpdate,Dv as useAccountRevokeKey,vv as useAccountRevokePosting,db as useAccountUpdate,co as useAccountUpdateKeyAuths,gv as useAccountUpdatePassword,Sv as useAccountUpdateRecovery,nA as useAddDraft,S0 as useAddFragment,KA as useAddImage,wA as useAddSchedule,Pm as useAiAssist,Wb as useBookmarkAdd,Jb as useBookmarkDelete,bI as useBoostPlus,b as useBroadcastMutation,Qv as useClaimAccount,KF as useClaimEngineRewards,tF as useClaimInterest,yK as useClaimPoints,sF as useClaimRewards,iP as useComment,Jq as useConvert,Gv as useCreateAccount,wP as useCrossPost,_F as useDelegateEngineToken,GF as useDelegateRc,cq as useDelegateVestingShares,gP as useDeleteComment,mA as useDeleteDraft,MA as useDeleteImage,OA as useDeleteSchedule,I0 as useEditFragment,NF as useEngineMarketOrder,Nb as useFollow,UO as useGameClaim,wm as useGenerateImage,jv as useGrantPostingPermission,zC as useLimitOrderCancel,LC as useLimitOrderCreate,pF as useLockLarynx,qk as useMarkNotificationsRead,CA as useMoveSchedule,sx as useMutePost,Ax as usePinPost,UI as usePollVote,mF as usePowerLarynx,EP as usePromote,aE as useProposalCreate,nE as useProposalVote,OI as useRcDelegation,tP as useReblog,xr as useRecordActivity,_x as useRegisterCommunityRewards,H0 as useRemoveFragment,px as useSetCommunityRole,Dk as useSetLastRead,fq as useSetWithdrawVestingRoute,y0 as useSignOperationByHivesigner,u0 as useSignOperationByKey,d0 as useSignOperationByKeychain,kF as useStakeEngineToken,XO as useSubscribeCommunity,XR as useTransfer,xq as useTransferEngineToken,Iq as useTransferFromSavings,vq as useTransferLarynx,nq as useTransferPoint,hq as useTransferSpk,Tq as useTransferToSavings,Qq as useTransferToVesting,AF as useUndelegateEngineToken,Ub as useUnfollow,TF as useUnstakeEngineToken,rx as useUnsubscribeCommunity,mx as useUpdateCommunity,cA as useUpdateDraft,PP as useUpdateReply,VA as useUploadImage,JA as useVote,jF as useWalletOperation,Lq as useWithdrawVesting,rK as useWitnessProxy,XF as useWitnessVote,W0 as usrActivity,Su as validatePostCreating,Hn as verifyPostOnAlternateNode,Ie as vestsToHp,Xv as votingPower,eu as votingRshares,r0 as votingValue,le as withTimeoutSignal};//# sourceMappingURL=index.mjs.map
|
|
10
10
|
//# sourceMappingURL=index.mjs.map
|