@luno-kit/react 0.0.12-beta.3 → 0.0.13

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/index.cjs CHANGED
@@ -1,4 +1,4 @@
1
- 'use strict';var chunkNNF3FZ3W_cjs=require('./chunk-NNF3FZ3W.cjs'),chunk7BEPQQMD_cjs=require('./chunk-7BEPQQMD.cjs'),core=require('@luno-kit/core'),re=require('react'),utils=require('@luno-kit/core/utils'),zustand=require('zustand'),jsxRuntime=require('react/jsx-runtime'),utils$1=require('dedot/utils'),reactQuery=require('@tanstack/react-query');function _interopDefault(e){return e&&e.__esModule?e:{default:e}}var re__default=/*#__PURE__*/_interopDefault(re);var C={LAST_CONNECTOR_ID:"lastConnectorId",LAST_CHAIN_ID:"lastChainId",LAST_SELECTED_ACCOUNT_INFO:"lastSelectedAccountInfo",RECENT_SELECTED_ACCOUNT_INFO:"recentSelectedAccountInfo",RECENT_CONNECTOR_ID:"recentConnectorId"};var q=()=>{let e=re.useRef(false);return {isInitialized:e.current,markAsInitialized:()=>{e.current=true;}}};var _=[],D=()=>{_.forEach(e=>{try{e();}catch(r){console.warn("[LunoStore] Error during listener cleanup:",r);}}),_=[];},G=zustand.create((e,r)=>({config:void 0,status:"disconnected",activeConnector:void 0,accounts:[],account:void 0,currentChainId:void 0,currentChain:void 0,currentApi:void 0,isApiReady:false,apiError:null,_setConfig:async n=>{D();let i=null;try{i=await n.storage.getItem(C.LAST_CHAIN_ID);}catch(a){console.warn("[LunoStore] Failed to read stored chain ID from storage:",a);}let t=i?.toLowerCase(),o=t&&n.chains.some(a=>a.genesisHash.toLowerCase()===t)?t:n.chains[0]?.genesisHash,s=o?n.chains.find(a=>a.genesisHash.toLowerCase()===o):void 0;e({config:n,status:"disconnected",activeConnector:void 0,accounts:[],currentChainId:o,currentChain:s});},_setApi:n=>{e({currentApi:n});},_setIsApiReady:n=>{e({isApiReady:n});},setAccount:async n=>{if(!n)return;let{accounts:i,config:t}=r(),o=typeof n=="string"?n.toLowerCase():n.publicKey?.toLowerCase(),s=i.find(a=>a.publicKey?.toLowerCase()===o);if(!s)throw new Error("[LunoStore] setAccount: The provided account or address is not in the current accounts list. Ignored.");if(e({account:s}),t)try{let a={publicKey:s.publicKey,address:s.address,name:s.name,source:s.meta?.source};await t.storage.setItem(C.LAST_SELECTED_ACCOUNT_INFO,JSON.stringify(a)),await t.storage.setItem(C.RECENT_SELECTED_ACCOUNT_INFO,JSON.stringify(a));}catch(a){console.error("[LunoStore] Failed to persist selected account:",a);}},connect:async(n,i)=>{let t=r().config;if(!t)throw e({status:"disconnected"}),new Error("[LunoStore] LunoConfig has not been initialized. Cannot connect.");let o=t.connectors.find(a=>a.id===n);if(!o)throw e({status:"disconnected"}),new Error(`[LunoStore] Connector with ID "${n}" not found in LunoConfig.`);e({status:"connecting"});let s=r().activeConnector;(s&&s.id!==o.id||s&&s.id===o.id)&&D();try{let a=async l=>{if(l.length===0){await r().disconnect();return}l.forEach(h=>{h.publicKey||console.warn(`[LunoStore] Account ${h.address} (from ${o.name}) is missing publicKey.`);});let b=l[0];try{let h=await t.storage.getItem(C.LAST_SELECTED_ACCOUNT_INFO),E=await t.storage.getItem(C.RECENT_SELECTED_ACCOUNT_INFO),g=h||E;if(g){let T=JSON.parse(g),L=l.find(v=>utils.isSameAddress(v.address,T.address));L&&(b=L);}}catch(h){console.warn("[LunoStore] Failed to restore account during accountsChanged:",h);}e({accounts:l,account:b});},d=()=>{if(r().activeConnector?.id===o.id){D();try{t.storage.removeItem(C.LAST_CONNECTOR_ID),t.storage.removeItem(C.LAST_CHAIN_ID);}catch(l){console.error("[LunoStore] Failed to remove connection info from storage:",l);}e({status:"disconnected",activeConnector:void 0,accounts:[]});}else console.warn(`[LunoStore] Received disconnect event from an inactive connector ${o.name}. Ignored.`);};o.on("accountsChanged",a),_.push(()=>o.off("accountsChanged",a)),o.on("disconnect",d),_.push(()=>o.off("disconnect",d));let u=i||r().currentChainId||t.chains[0]?.genesisHash,f=await o.connect(t.appName,t.chains,u);if(!f||f?.length===0)throw new Error("[LunoStore] No accounts found from wallet");let m=f[0];try{let l=await t.storage.getItem(C.LAST_SELECTED_ACCOUNT_INFO),b=await t.storage.getItem(C.RECENT_SELECTED_ACCOUNT_INFO),h=l||b;if(h){let E=JSON.parse(h),g=f.find(T=>utils.isSameAddress(T.address,E.address));g&&(m=g);}}catch(l){console.warn("[LunoStore] Failed to restore selected account from storage:",l);}e({activeConnector:o,accounts:f,status:"connected",account:m});let S={publicKey:m.publicKey,address:m.address,name:m.name,source:m.meta?.source};try{t.storage.setItem(C.LAST_CONNECTOR_ID,o.id),t.storage.setItem(C.RECENT_CONNECTOR_ID,o.id),t.storage.setItem(C.LAST_SELECTED_ACCOUNT_INFO,JSON.stringify(S)),t.storage.setItem(C.RECENT_SELECTED_ACCOUNT_INFO,JSON.stringify(S));}catch(l){console.error("[LunoStore] Failed to persist connectorId to storage:",l);}let p=r().currentChainId,y=i||p||t.chains[0]?.genesisHash;if(y){let l=t.chains.find(b=>b.genesisHash===y);if(l){(y!==p||!r().currentApi)&&e({currentChainId:y,currentChain:l,currentApi:void 0});try{t.storage.setItem(C.LAST_CHAIN_ID,y);}catch(b){console.error("[LunoStore] Failed to persist chainId to storage:",b);}}else console.warn(`[LunoStore] After connection, target chain ID "${y}" was not found in config. Current chain state might not have changed. Not persisting chainId.`);}}catch(a){throw D(),e({status:"disconnected",activeConnector:void 0,accounts:[]}),new Error(`${o.name}: ${a?.message||a}`)}},disconnect:async()=>{let{activeConnector:n,status:i,config:t}=r();if(!(!n||i==="disconnecting"||i==="disconnected")){e({status:"disconnecting"});try{if(await n.disconnect(),t)try{await t.storage.removeItem(C.LAST_CONNECTOR_ID),await t.storage.removeItem(C.LAST_CHAIN_ID),await t.storage.removeItem(C.LAST_SELECTED_ACCOUNT_INFO);}catch(o){console.error("[LunoStore] Failed to remove connection info from storage during disconnect action:",o);}D(),e({status:"disconnected",activeConnector:void 0,accounts:[],account:void 0}),r().status!=="disconnected"&&console.warn("[LunoStore] disconnect method called, but status is not yet 'disconnected' (event handler might be delayed or did not fire). Check connector events.");}catch(o){throw e({status:"connected"}),new Error(`[LunoStore] Error disconnecting from ${n.name}: ${o?.message||o}`)}}},switchChain:async n=>{let{config:i,currentChainId:t,currentApi:o,activeConnector:s,account:a,accounts:d}=r();if(!i)throw new Error("[LunoStore] LunoConfig has not been initialized. Cannot switch chain.");if(n===t)return;let u=i.chains.find(f=>f.genesisHash===n);if(!u)throw new Error(`[LunoStore] Chain with ID "${n}" not found in LunoConfig.`);try{try{o&&o.status==="connected"&&await o.disconnect();}catch(m){console.warn("[LunoStore] Failed to disconnect from previous chain:",m);}e({currentChainId:n,currentChain:u,currentApi:void 0,isApiReady:!1,apiError:null});let f=await chunk7BEPQQMD_cjs.a({config:i,chainId:n});e({currentApi:f,isApiReady:!0}),await i.storage.setItem(C.LAST_CHAIN_ID,n);}catch(f){e({apiError:f,isApiReady:false});}},_setApiError:n=>{e({apiError:n});}}));var k=re__default.default.createContext({});var ae=({config:e,children:r})=>{let{_setConfig:n,_setApi:i,_setIsApiReady:t,_setApiError:o,setAccount:s,currentChainId:a,config:d,currentApi:u,connect:f,status:m,activeConnector:S,accounts:p,account:y,currentChain:l,isApiReady:b,apiError:h,disconnect:E,switchChain:g}=G(),{markAsInitialized:T,isInitialized:L}=q(),v=re.useCallback(()=>{i(void 0),t(false);},[i,t]);re.useEffect(()=>{e&&n(e);},[e]),re.useEffect(()=>{if(L)return;if(!e||!a){u&&u.status==="connected"&&u.disconnect().catch(console.error),v();return}let A=e.chains.find(x=>x.genesisHash===a),w=e.transports[a];if(!A||!w){u&&u.status==="connected"&&u.disconnect().catch(console.error),v();return}u&&u.status==="connected"&&u.disconnect().catch(x=>console.error("[LunoProvider] Error disconnecting previous API:",x)),v(),chunk7BEPQQMD_cjs.a({config:e,chainId:a}).then(x=>{i(x),t(true);}).catch(x=>{v(),o(x);}).finally(()=>T());},[e,a]),re.useEffect(()=>{e&&(async()=>{if(await chunk7BEPQQMD_cjs.c(500),!!e.autoConnect){if(!e.storage){console.warn("[LunoProvider]: AutoConnect Storage not available, cannot auto-connect.");return}try{let w=await e.storage.getItem(C.LAST_CONNECTOR_ID),x=await e.storage.getItem(C.LAST_CHAIN_ID);w?await f(w,x||void 0):console.warn("[LunoProvider]: AutoConnect No persisted session found or missing data.");}catch(w){console.error("[LunoProvider]: AutoConnect Error during auto-connect process:",w);}}})();},[e]),re.useEffect(()=>{if(b&&u&&l&&l.ss58Format!==void 0&&l.ss58Format!==null)try{let A=u.consts.system.ss58Prefix;A!=null&&A!==l.ss58Format?console.error(`[LunoProvider]: SS58 Format Mismatch for chain "${l.name}" (genesisHash: ${l.genesisHash}):
1
+ 'use strict';var chunk7BEPQQMD_cjs=require('./chunk-7BEPQQMD.cjs'),chunkNNF3FZ3W_cjs=require('./chunk-NNF3FZ3W.cjs'),core=require('@luno-kit/core'),re=require('react'),utils=require('@luno-kit/core/utils'),zustand=require('zustand'),jsxRuntime=require('react/jsx-runtime'),utils$1=require('dedot/utils'),reactQuery=require('@tanstack/react-query');function _interopDefault(e){return e&&e.__esModule?e:{default:e}}var re__default=/*#__PURE__*/_interopDefault(re);var C={LAST_CONNECTOR_ID:"lastConnectorId",LAST_CHAIN_ID:"lastChainId",LAST_SELECTED_ACCOUNT_INFO:"lastSelectedAccountInfo",RECENT_SELECTED_ACCOUNT_INFO:"recentSelectedAccountInfo",RECENT_CONNECTOR_ID:"recentConnectorId"};var q=()=>{let e=re.useRef(false);return {isInitialized:e.current,markAsInitialized:()=>{e.current=true;}}};var _=[],D=()=>{_.forEach(e=>{try{e();}catch(r){console.warn("[LunoStore] Error during listener cleanup:",r);}}),_=[];},G=zustand.create((e,r)=>({config:void 0,status:"disconnected",activeConnector:void 0,accounts:[],account:void 0,currentChainId:void 0,currentChain:void 0,currentApi:void 0,isApiReady:false,apiError:null,_setConfig:async n=>{D();let i=null;try{i=await n.storage.getItem(C.LAST_CHAIN_ID);}catch(a){console.warn("[LunoStore] Failed to read stored chain ID from storage:",a);}let t=i?.toLowerCase(),o=t&&n.chains.some(a=>a.genesisHash.toLowerCase()===t)?t:n.chains[0]?.genesisHash,s=o?n.chains.find(a=>a.genesisHash.toLowerCase()===o):void 0;e({config:n,status:"disconnected",activeConnector:void 0,accounts:[],currentChainId:o,currentChain:s});},_setApi:n=>{e({currentApi:n});},_setIsApiReady:n=>{e({isApiReady:n});},setAccount:async n=>{if(!n)return;let{accounts:i,config:t}=r(),o=typeof n=="string"?n.toLowerCase():n.publicKey?.toLowerCase(),s=i.find(a=>a.publicKey?.toLowerCase()===o);if(!s)throw new Error("[LunoStore] setAccount: The provided account or address is not in the current accounts list. Ignored.");if(e({account:s}),t)try{let a={publicKey:s.publicKey,address:s.address,name:s.name,source:s.meta?.source};await t.storage.setItem(C.LAST_SELECTED_ACCOUNT_INFO,JSON.stringify(a)),await t.storage.setItem(C.RECENT_SELECTED_ACCOUNT_INFO,JSON.stringify(a));}catch(a){console.error("[LunoStore] Failed to persist selected account:",a);}},connect:async(n,i)=>{let t=r().config;if(!t)throw e({status:"disconnected"}),new Error("[LunoStore] LunoConfig has not been initialized. Cannot connect.");let o=t.connectors.find(a=>a.id===n);if(!o)throw e({status:"disconnected"}),new Error(`[LunoStore] Connector with ID "${n}" not found in LunoConfig.`);e({status:"connecting"});let s=r().activeConnector;(s&&s.id!==o.id||s&&s.id===o.id)&&D();try{let a=async l=>{if(l.length===0){await r().disconnect();return}l.forEach(h=>{h.publicKey||console.warn(`[LunoStore] Account ${h.address} (from ${o.name}) is missing publicKey.`);});let b=l[0];try{let h=await t.storage.getItem(C.LAST_SELECTED_ACCOUNT_INFO),E=await t.storage.getItem(C.RECENT_SELECTED_ACCOUNT_INFO),g=h||E;if(g){let T=JSON.parse(g),L=l.find(v=>utils.isSameAddress(v.address,T.address));L&&(b=L);}}catch(h){console.warn("[LunoStore] Failed to restore account during accountsChanged:",h);}e({accounts:l,account:b});},d=()=>{if(r().activeConnector?.id===o.id){D();try{t.storage.removeItem(C.LAST_CONNECTOR_ID),t.storage.removeItem(C.LAST_CHAIN_ID);}catch(l){console.error("[LunoStore] Failed to remove connection info from storage:",l);}e({status:"disconnected",activeConnector:void 0,accounts:[]});}else console.warn(`[LunoStore] Received disconnect event from an inactive connector ${o.name}. Ignored.`);};o.on("accountsChanged",a),_.push(()=>o.off("accountsChanged",a)),o.on("disconnect",d),_.push(()=>o.off("disconnect",d));let u=i||r().currentChainId||t.chains[0]?.genesisHash,f=await o.connect(t.appName,t.chains,u);if(!f||f?.length===0)throw new Error("[LunoStore] No accounts found from wallet");let m=f[0];try{let l=await t.storage.getItem(C.LAST_SELECTED_ACCOUNT_INFO),b=await t.storage.getItem(C.RECENT_SELECTED_ACCOUNT_INFO),h=l||b;if(h){let E=JSON.parse(h),g=f.find(T=>utils.isSameAddress(T.address,E.address));g&&(m=g);}}catch(l){console.warn("[LunoStore] Failed to restore selected account from storage:",l);}e({activeConnector:o,accounts:f,status:"connected",account:m});let S={publicKey:m.publicKey,address:m.address,name:m.name,source:m.meta?.source};try{t.storage.setItem(C.LAST_CONNECTOR_ID,o.id),t.storage.setItem(C.RECENT_CONNECTOR_ID,o.id),t.storage.setItem(C.LAST_SELECTED_ACCOUNT_INFO,JSON.stringify(S)),t.storage.setItem(C.RECENT_SELECTED_ACCOUNT_INFO,JSON.stringify(S));}catch(l){console.error("[LunoStore] Failed to persist connectorId to storage:",l);}let p=r().currentChainId,y=i||p||t.chains[0]?.genesisHash;if(y){let l=t.chains.find(b=>b.genesisHash===y);if(l){(y!==p||!r().currentApi)&&e({currentChainId:y,currentChain:l,currentApi:void 0});try{t.storage.setItem(C.LAST_CHAIN_ID,y);}catch(b){console.error("[LunoStore] Failed to persist chainId to storage:",b);}}else console.warn(`[LunoStore] After connection, target chain ID "${y}" was not found in config. Current chain state might not have changed. Not persisting chainId.`);}}catch(a){throw D(),e({status:"disconnected",activeConnector:void 0,accounts:[]}),new Error(`${o.name}: ${a?.message||a}`)}},disconnect:async()=>{let{activeConnector:n,status:i,config:t}=r();if(!(!n||i==="disconnecting"||i==="disconnected")){e({status:"disconnecting"});try{if(await n.disconnect(),t)try{await t.storage.removeItem(C.LAST_CONNECTOR_ID),await t.storage.removeItem(C.LAST_CHAIN_ID),await t.storage.removeItem(C.LAST_SELECTED_ACCOUNT_INFO);}catch(o){console.error("[LunoStore] Failed to remove connection info from storage during disconnect action:",o);}D(),e({status:"disconnected",activeConnector:void 0,accounts:[],account:void 0}),r().status!=="disconnected"&&console.warn("[LunoStore] disconnect method called, but status is not yet 'disconnected' (event handler might be delayed or did not fire). Check connector events.");}catch(o){throw e({status:"connected"}),new Error(`[LunoStore] Error disconnecting from ${n.name}: ${o?.message||o}`)}}},switchChain:async n=>{let{config:i,currentChainId:t,currentApi:o,activeConnector:s,account:a,accounts:d}=r();if(!i)throw new Error("[LunoStore] LunoConfig has not been initialized. Cannot switch chain.");if(n===t)return;let u=i.chains.find(f=>f.genesisHash===n);if(!u)throw new Error(`[LunoStore] Chain with ID "${n}" not found in LunoConfig.`);try{try{o&&o.status==="connected"&&await o.disconnect();}catch(m){console.warn("[LunoStore] Failed to disconnect from previous chain:",m);}e({currentChainId:n,currentChain:u,currentApi:void 0,isApiReady:!1,apiError:null});let f=await chunk7BEPQQMD_cjs.a({config:i,chainId:n});e({currentApi:f,isApiReady:!0}),await i.storage.setItem(C.LAST_CHAIN_ID,n);}catch(f){e({apiError:f,isApiReady:false});}},_setApiError:n=>{e({apiError:n});}}));var k=re__default.default.createContext({});var ae=({config:e,children:r})=>{let{_setConfig:n,_setApi:i,_setIsApiReady:t,_setApiError:o,setAccount:s,currentChainId:a,config:d,currentApi:u,connect:f,status:m,activeConnector:S,accounts:p,account:y,currentChain:l,isApiReady:b,apiError:h,disconnect:E,switchChain:g}=G(),{markAsInitialized:T,isInitialized:L}=q(),v=re.useCallback(()=>{i(void 0),t(false);},[i,t]);re.useEffect(()=>{e&&n(e);},[e]),re.useEffect(()=>{if(L)return;if(!e||!a){u&&u.status==="connected"&&u.disconnect().catch(console.error),v();return}let A=e.chains.find(x=>x.genesisHash===a),w=e.transports[a];if(!A||!w){u&&u.status==="connected"&&u.disconnect().catch(console.error),v();return}u&&u.status==="connected"&&u.disconnect().catch(x=>console.error("[LunoProvider] Error disconnecting previous API:",x)),v(),chunk7BEPQQMD_cjs.a({config:e,chainId:a}).then(x=>{i(x),t(true);}).catch(x=>{v(),o(x);}).finally(()=>T());},[e,a]),re.useEffect(()=>{e&&(async()=>{if(await chunk7BEPQQMD_cjs.c(500),!!e.autoConnect){if(!e.storage){console.warn("[LunoProvider]: AutoConnect Storage not available, cannot auto-connect.");return}try{let w=await e.storage.getItem(C.LAST_CONNECTOR_ID),x=await e.storage.getItem(C.LAST_CHAIN_ID);w?await f(w,x||void 0):console.warn("[LunoProvider]: AutoConnect No persisted session found or missing data.");}catch(w){console.error("[LunoProvider]: AutoConnect Error during auto-connect process:",w);}}})();},[e]),re.useEffect(()=>{if(b&&u&&l&&l.ss58Format!==void 0&&l.ss58Format!==null)try{let A=u.consts.system.ss58Prefix;A!=null&&A!==l.ss58Format?console.error(`[LunoProvider]: SS58 Format Mismatch for chain "${l.name}" (genesisHash: ${l.genesisHash}):
2
2
  - Configured SS58Format: ${l.ss58Format}
3
3
  - Node Runtime SS58Format: ${A}
4
4
  Please verify your Luno configuration for this chain to ensure correct address display and interaction.`):A==null&&console.warn(`[LunoProvider]: Could not determine SS58 format from the API for chain "${l.name}". Cannot validate configured SS58Format (${l.ss58Format}). The application will use the configured value.`);}catch(A){console.error(`[LunoProvider]: Error retrieving SS58 format from API for chain "${l.name}" while attempting validation:`,A);}},[b,u,l]);let O=re.useMemo(()=>({config:d,status:m,activeConnector:S,accounts:p,account:y,setAccount:s,currentChainId:a,currentChain:l,currentApi:u,isApiReady:b,connect:f,disconnect:E,switchChain:g,apiError:h}),[d,m,S,p,y,a,l,u,b,h,f,E,g,s]);return jsxRuntime.jsx(k.Provider,{value:O,children:r})};var c=()=>{let e=re.useContext(k);if(e===void 0)throw new Error("useLuno must be used within a LunoProvider");return e};var U=()=>{let{account:e,currentChain:r}=c(),n=re.useMemo(()=>{if(e){if(!r||r?.ss58Format===void 0)return e;try{let i=utils.convertAddress(e.address,r.ss58Format);return {...e,address:i}}catch(i){return console.error(`[useAccount]: Failed to re-format address for account ${e.address}:`,i),{...e}}}},[e,r,r?.ss58Format]);return {account:n,address:n?.address}};var hn=()=>{let{accounts:e,setAccount:r,currentChain:n}=c();return {accounts:re.useMemo(()=>!n||n?.ss58Format===void 0?e??[]:(e||[]).map(t=>{try{let o=utils.convertAddress(t.address,n.ss58Format);return {...t,address:o}}catch(o){return console.error(`[useAccounts]: Failed to re-format address for account ${t.address}:`,o),{...t}}}),[e,n,n?.ss58Format]),selectAccount:r}};var bn=()=>{let{activeConnector:e}=c();return e};var xn=()=>{let{currentApi:e,isApiReady:r,apiError:n}=c();return {api:e,isApiReady:r,apiError:n}};var ye=e=>e,V=({queryKey:e,factory:r,params:n,options:i={}})=>{let[t,o]=re.useState(void 0),{currentApi:s,isApiReady:a}=c(),d=reactQuery.useQueryClient(),{enabled:u=true,transform:f=ye,defaultValue:m}=i,S=re.useRef(null),p=re.useMemo(()=>{if(!(!n||!s||!a))return typeof n=="function"?[n(s)]:n},[n,s,a]),y=re.useMemo(()=>[e,p,s?.genesisHash],[e,p,s?.genesisHash]);re.useEffect(()=>{if(S.current&&(S.current(),S.current=null),!(!u||!r||!s||!p||!a)){try{let h=r(s),E=typeof h=="function"?h.bind(s):h,g=T=>{try{let L=f(T);d.setQueryData(y,L),o(void 0);}catch(L){o(new Error(`[useSubscription]: ${L}`));}};E(...p,g).then(T=>{S.current=T;}).catch(T=>{o(new Error(`[useSubscription]: ${T}`));});}catch(h){o(new Error(`[useSubscription]: ${h}`));}return ()=>{S.current&&(S.current(),S.current=null,o(void 0));}}},[JSON.stringify(y),u,d]);let{data:l,isLoading:b}=reactQuery.useQuery({queryKey:y,queryFn:()=>Promise.resolve(m),enabled:false,initialData:m});return {data:l,error:t,isLoading:!!(u&&a&&!l)}};var be=10,Ee=(e,r)=>{let n=e[0],i=e[1],t=n.data.free,o=n.data.reserved,s=n.data.frozen,a=BigInt(t)+BigInt(o),d=t>s?BigInt(t)-BigInt(s):0n;return {free:t,total:a,reserved:o,transferable:d,formattedTransferable:utils.formatBalance(d,r.tokenDecimals),formattedTotal:utils.formatBalance(a,r.tokenDecimals),locks:i.map(u=>({id:u.id,amount:u.amount,reason:u.reasons,lockHuman:utils.formatBalance(u.amount,r.tokenDecimals)}))}},Mn=({address:e})=>{let{currentApi:r,isApiReady:n,currentChain:i}=c(),t=re.useMemo(()=>!r||!n||!e?false:r.isEthereum?utils$1.isEvmAddress(e):!utils$1.isEvmAddress(e),[r,n,e]),o=V({queryKey:"/native-balance",factory:s=>s.queryMulti,params:s=>[{fn:s.query.system.account,args:[e]},{fn:s.query.balances.locks,args:[e]}],options:{enabled:t,transform:s=>{let a={tokenDecimals:i?.nativeCurrency?.decimals??be,tokenSymbol:i?.nativeCurrency?.symbol,ss58Format:i?.ss58Format};return Ee(s,a)}}});return r&&n&&e&&!t?{isLoading:false,data:{free:0n,reserved:0n,total:0n,transferable:0n,formattedTransferable:"0",formattedTotal:"0",locks:[]},error:void 0}:o};var Vn=()=>{let{currentApi:e,isApiReady:r}=c();return V({queryKey:"/block-number",factory:i=>i.query.system.number,params:[],options:{enabled:!!e&&r,transform:i=>i}})};var $n=()=>{let{currentChain:e,currentChainId:r}=c();return {chain:e,chainId:r}};var Qn=()=>{let{config:e}=c();return e?.chains?[...e.chains]:[]};var Gn=()=>{let{config:e}=c();return e};function I(e,r){let n={};r?.onSuccess&&(n.onSuccess=r.onSuccess),r?.onError&&(n.onError=r.onError),r?.onSettled&&(n.onSettled=r.onSettled);let i=reactQuery.useMutation({mutationFn:e,retry:false,throwOnError:false,...n});return {mutate:(t,o)=>{i.mutate(t,o);},mutateAsync:(t,o)=>i.mutateAsync(t,o),data:i.data,error:i.error,isError:i.isError,isIdle:i.isIdle,isPending:i.isPending,isSuccess:i.isSuccess,reset:i.reset,status:i.status,variables:i.variables}}var nt=e=>{let{connect:r,config:n,activeConnector:i,status:t}=c(),s=I(async a=>{await r(a.connectorId,a.targetChainId),await chunk7BEPQQMD_cjs.c();},e);return {connect:s.mutate,connectAsync:s.mutateAsync,connectors:n?.connectors?[...n.connectors]:[],activeConnector:i,status:t,data:s.data,error:s.error,isError:s.isError,isIdle:s.isIdle,isPending:s.isPending,isSuccess:s.isSuccess,reset:s.reset,variables:s.variables}};var rt=()=>{let{config:e}=c();return e?.connectors?[...e.connectors]:[]};var ct=e=>{let{disconnect:r,status:n}=c(),t=I(async()=>{await r();},e);return {disconnect:o=>t.mutate(void 0,o),disconnectAsync:o=>t.mutateAsync(void 0,o),status:n,data:t.data,error:t.error,isError:t.isError,isIdle:t.isIdle,isPending:t.isPending,isSuccess:t.isSuccess,reset:t.reset}};function ft(){let{account:e,currentChain:r}=c(),[n,i]=re.useState(null),[t,o]=re.useState(false),[s,a]=re.useState(null),d=re.useCallback(async(u,f)=>{let m=f||e?.address;if(!(!u||!m||!r)){o(true),a(null);try{let S=await u.paymentInfo(m),p=r.nativeCurrency.decimals,y={...S,partialFeeFormatted:utils.formatBalance(S.partialFee,p)};return i(y),y}catch(S){let p=S instanceof Error?S:new Error("Failed to estimate payment info");a(p);}finally{o(false);}}},[e?.address,r]);return {data:n,isLoading:t,error:s,estimate:d}}var Ct=()=>{let{currentApi:e,currentChainId:r,isApiReady:n}=c(),{data:i,isLoading:t,error:o}=reactQuery.useQuery({queryKey:["/genesis-hash",r],queryFn:async()=>await e.rpc.chain_getBlockHash(0),enabled:!!e&&n&&!!r,staleTime:1/0,gcTime:1/0,retry:false});return {data:i,isLoading:t,error:o}};var X=()=>{let{activeConnector:e}=c(),{account:r}=U(),[n,i]=re.useState(void 0),[t,o]=re.useState(false);return re.useEffect(()=>{if(!e||!r?.address){i(void 0),o(false);return}o(true),e.getSigner().then(s=>i(s)).catch(()=>i(void 0)).finally(()=>o(false));},[e,r?.address]),{data:n,isLoading:t}};function vt(){let{data:e}=X(),{address:r}=U(),[n,i]=re.useState(false),[t,o]=re.useState(void 0);return re.useEffect(()=>{if(!e||!r){o(void 0),i(false);return}i(true),utils.createPapiSigner(r,e).then(s=>o(s)).catch(()=>o(void 0)).finally(()=>i(false));},[e,r]),{data:t,isLoading:n}}var Dt=()=>{let{currentApi:e,isApiReady:r,currentChainId:n}=c();return reactQuery.useQuery({queryKey:["luno","runtimeVersion",n],queryFn:async()=>await e.getRuntimeVersion(),enabled:!!e&&r&&!!n})};function Ft(e){let{activeConnector:r,currentApi:n,isApiReady:i}=c(),{account:t}=U(),[o,s]=re.useState("idle"),[a,d]=re.useState("idle"),[u,f]=re.useState(null),m=e?.waitFor??"finalized",S=re.useCallback(async y=>{if(s("idle"),d("idle"),!n||!i)throw new Error("[useSendTransaction]: Polkadot API is not ready.");if(!r)throw new Error("[useSendTransaction]: No active connector found.");if(!t||!t.address||!t.meta?.source)throw new Error("[useSendTransaction]: No active account, address, or account metadata (source) found.");if(!y.extrinsic)throw new Error("[useSendTransaction]: No extrinsic provided to send.");let l=await r.getSigner();if(!l)throw new Error("[useSendTransaction]: Could not retrieve signer from the injector.");return s("signing"),new Promise((b,h)=>{let E;y.extrinsic.signAndSend(t.address,{signer:l},({status:g,dispatchError:T,events:L,dispatchInfo:v,txHash:O,...A})=>{let w=R=>{E&&E(),b(R);},x=R=>{E&&E(),f(R),h(R);},z=(R,ne,P)=>({transactionHash:O,blockHash:R,blockNumber:ne,events:L,status:!!P?"failed":"success",dispatchError:P||void 0,errorMessage:P?chunk7BEPQQMD_cjs.b(n,P):void 0,dispatchInfo:v,rawReceipt:{status:g,dispatchError:T,events:L,dispatchInfo:v,txHash:O,...A}});switch(g.type){case "Broadcasting":s("pending"),d("broadcasting");break;case "BestChainBlockIncluded":s("pending"),d("inBlock"),m==="inBlock"&&(s(T?"failed":"success"),w(z(g.value?.blockHash,g.value?.blockNumber,T)));break;case "Finalized":d("finalized"),m==="finalized"&&(s(T?"failed":"success"),w(z(g.value?.blockHash,g.value?.blockNumber,T)));break;case "Invalid":s("failed"),d("invalid"),x(new Error(`Transaction invalid: ${O}`));break;case "Drop":s("failed"),d("dropped"),x(new Error(`Transaction dropped: ${O}`));break}}).then(g=>{E=g;}).catch(g=>{s("failed"),console.error("[useSendTransaction]: Error in signAndSend promise:",g?.message||g),f(g),h(g);});})},[n,i,r,t,s,d,m]),p=I(S,e);return {sendTransaction:p.mutate,sendTransactionAsync:p.mutateAsync,data:p.data,error:u||p.error,isError:!!u||p.isError,isIdle:p.isIdle,isPending:p.isPending,isSuccess:p.isSuccess,reset:p.reset,status:p.status,variables:p.variables,txStatus:o,detailedStatus:a}}function zt(e){let{account:r,activeConnector:n,currentApi:i,isApiReady:t}=c(),[o,s]=re.useState(null),a=re.useCallback(async u=>{if(!i||!t)throw new Error("[useSendTransactionHash]: Polkadot API is not ready.");if(!n)throw new Error("[useSendTransactionHash]: No active connector found.");if(!r||!r.address||!r.meta?.source)throw new Error("[useSendTransactionHash]: No active account, address, or account metadata (source) found.");if(!u.extrinsic)throw new Error("[useSendTransactionHash]: No extrinsic provided to send.");let f=await n.getSigner();if(!f)throw new Error("[useSendTransactionHash]: Could not retrieve signer from the injector.");try{return await u.extrinsic.signAndSend(r.address,{signer:f}).catch(S=>{throw S})}catch(m){throw s(m),m}},[i,t,n,r]),d=I(a,e);return {sendTransaction:d.mutate,sendTransactionAsync:d.mutateAsync,data:d.data,error:o||d.error,isError:!!o||d.isError,isIdle:d.isIdle,isPending:d.isPending,isSuccess:d.isSuccess,reset:d.reset,status:d.status,variables:d.variables}}function Gt(e){let{activeConnector:r,account:n,accounts:i}=c(),o=I(async s=>{if(!r)throw new Error("[useSignMessage]: No active connector found to sign the message.");if(!n||!n.address||!n.meta?.source)throw new Error("[useSignMessage]: No address provided for signing.");if(!i.some(u=>u.address===n.address))throw new Error(`[useSignMessage]: Address ${n.address} is not managed by ${r.id}.`);if(!s.message)throw new Error("[useSignMessage]: No message provided for signing.");let a=i.find(u=>utils.isSameAddress(u.address,n.address));if(!a)throw new Error("[useSignMessage]: Invalid account address.");let d=await r.signMessage(s.message,a.address);if(!d)throw new Error("[useSignMessage]: Signature was not obtained. The user may have cancelled the request or the connector failed.");return {signature:d,rawMessage:s.message,addressUsed:n.address}},e);return {signMessage:o.mutate,signMessageAsync:o.mutateAsync,data:o.data,error:o.error,isError:o.isError,isIdle:o.isIdle,isPending:o.isPending,isSuccess:o.isSuccess,reset:o.reset,status:o.status,variables:o.variables}}var ee=42,Zt=()=>{let{currentApi:e,isApiReady:r,currentChain:n}=c(),i=n?.ss58Format!==void 0?n.ss58Format:ee;return re.useMemo(()=>{if(e&&r){let t;try{let o=e.consts.system.ss58Prefix;t=utils$1.isNumber(o)?o:ee;}catch(o){console.error("[useSs58Format] Error fetching chainSS58:",o),t=i;}return {data:t,isLoading:false}}else return {data:void 0,isLoading:true}},[e,r,i])};var to=()=>{let{status:e}=c();return e};var io=e=>{let{switchChain:r,config:n,currentChain:i,currentChainId:t}=c(),s=I(async a=>{await r(a.chainId);},e);return {switchChain:s.mutate,switchChainAsync:s.mutateAsync,chains:n?.chains?[...n.chains]:[],currentChain:i,currentChainId:t,data:s.data,error:s.error,isError:s.isError,isIdle:s.isIdle,isPending:s.isPending,isSuccess:s.isSuccess,reset:s.reset,variables:s.variables}};Object.defineProperty(exports,"ConnectionStatus",{enumerable:true,get:function(){return chunkNNF3FZ3W_cjs.a}});exports.LunoProvider=ae;exports.useAccount=U;exports.useAccounts=hn;exports.useActiveConnector=bn;exports.useApi=xn;exports.useBalance=Mn;exports.useBlockNumber=Vn;exports.useChain=$n;exports.useChains=Qn;exports.useConfig=Gn;exports.useConnect=nt;exports.useConnectors=rt;exports.useDisconnect=ct;exports.useEstimatePaymentInfo=ft;exports.useGenesisHash=Ct;exports.usePapiSigner=vt;exports.useRuntimeVersion=Dt;exports.useSendTransaction=Ft;exports.useSendTransactionHash=zt;exports.useSignMessage=Gt;exports.useSigner=X;exports.useSs58Format=Zt;exports.useStatus=to;exports.useSubscription=V;exports.useSwitchChain=io;Object.keys(core).forEach(function(k){if(k!=='default'&&!Object.prototype.hasOwnProperty.call(exports,k))Object.defineProperty(exports,k,{enumerable:true,get:function(){return core[k]}})});//# sourceMappingURL=index.cjs.map
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- export{a as ConnectionStatus}from'./chunk-ZBVBO5KX.js';import {a,c as c$1,b}from'./chunk-QCEMRLYF.js';export*from'@luno-kit/core';import re,{useCallback,useEffect,useMemo,useState,useRef,useContext}from'react';import {isSameAddress,convertAddress,formatBalance,createPapiSigner}from'@luno-kit/core/utils';import {create}from'zustand';import {jsx}from'react/jsx-runtime';import {isEvmAddress,isNumber}from'dedot/utils';import {useQueryClient,useQuery,useMutation}from'@tanstack/react-query';var C={LAST_CONNECTOR_ID:"lastConnectorId",LAST_CHAIN_ID:"lastChainId",LAST_SELECTED_ACCOUNT_INFO:"lastSelectedAccountInfo",RECENT_SELECTED_ACCOUNT_INFO:"recentSelectedAccountInfo",RECENT_CONNECTOR_ID:"recentConnectorId"};var q=()=>{let e=useRef(false);return {isInitialized:e.current,markAsInitialized:()=>{e.current=true;}}};var _=[],D=()=>{_.forEach(e=>{try{e();}catch(r){console.warn("[LunoStore] Error during listener cleanup:",r);}}),_=[];},G=create((e,r)=>({config:void 0,status:"disconnected",activeConnector:void 0,accounts:[],account:void 0,currentChainId:void 0,currentChain:void 0,currentApi:void 0,isApiReady:false,apiError:null,_setConfig:async n=>{D();let i=null;try{i=await n.storage.getItem(C.LAST_CHAIN_ID);}catch(a){console.warn("[LunoStore] Failed to read stored chain ID from storage:",a);}let t=i?.toLowerCase(),o=t&&n.chains.some(a=>a.genesisHash.toLowerCase()===t)?t:n.chains[0]?.genesisHash,s=o?n.chains.find(a=>a.genesisHash.toLowerCase()===o):void 0;e({config:n,status:"disconnected",activeConnector:void 0,accounts:[],currentChainId:o,currentChain:s});},_setApi:n=>{e({currentApi:n});},_setIsApiReady:n=>{e({isApiReady:n});},setAccount:async n=>{if(!n)return;let{accounts:i,config:t}=r(),o=typeof n=="string"?n.toLowerCase():n.publicKey?.toLowerCase(),s=i.find(a=>a.publicKey?.toLowerCase()===o);if(!s)throw new Error("[LunoStore] setAccount: The provided account or address is not in the current accounts list. Ignored.");if(e({account:s}),t)try{let a={publicKey:s.publicKey,address:s.address,name:s.name,source:s.meta?.source};await t.storage.setItem(C.LAST_SELECTED_ACCOUNT_INFO,JSON.stringify(a)),await t.storage.setItem(C.RECENT_SELECTED_ACCOUNT_INFO,JSON.stringify(a));}catch(a){console.error("[LunoStore] Failed to persist selected account:",a);}},connect:async(n,i)=>{let t=r().config;if(!t)throw e({status:"disconnected"}),new Error("[LunoStore] LunoConfig has not been initialized. Cannot connect.");let o=t.connectors.find(a=>a.id===n);if(!o)throw e({status:"disconnected"}),new Error(`[LunoStore] Connector with ID "${n}" not found in LunoConfig.`);e({status:"connecting"});let s=r().activeConnector;(s&&s.id!==o.id||s&&s.id===o.id)&&D();try{let a=async l=>{if(l.length===0){await r().disconnect();return}l.forEach(h=>{h.publicKey||console.warn(`[LunoStore] Account ${h.address} (from ${o.name}) is missing publicKey.`);});let b=l[0];try{let h=await t.storage.getItem(C.LAST_SELECTED_ACCOUNT_INFO),E=await t.storage.getItem(C.RECENT_SELECTED_ACCOUNT_INFO),g=h||E;if(g){let T=JSON.parse(g),L=l.find(v=>isSameAddress(v.address,T.address));L&&(b=L);}}catch(h){console.warn("[LunoStore] Failed to restore account during accountsChanged:",h);}e({accounts:l,account:b});},d=()=>{if(r().activeConnector?.id===o.id){D();try{t.storage.removeItem(C.LAST_CONNECTOR_ID),t.storage.removeItem(C.LAST_CHAIN_ID);}catch(l){console.error("[LunoStore] Failed to remove connection info from storage:",l);}e({status:"disconnected",activeConnector:void 0,accounts:[]});}else console.warn(`[LunoStore] Received disconnect event from an inactive connector ${o.name}. Ignored.`);};o.on("accountsChanged",a),_.push(()=>o.off("accountsChanged",a)),o.on("disconnect",d),_.push(()=>o.off("disconnect",d));let u=i||r().currentChainId||t.chains[0]?.genesisHash,f=await o.connect(t.appName,t.chains,u);if(!f||f?.length===0)throw new Error("[LunoStore] No accounts found from wallet");let m=f[0];try{let l=await t.storage.getItem(C.LAST_SELECTED_ACCOUNT_INFO),b=await t.storage.getItem(C.RECENT_SELECTED_ACCOUNT_INFO),h=l||b;if(h){let E=JSON.parse(h),g=f.find(T=>isSameAddress(T.address,E.address));g&&(m=g);}}catch(l){console.warn("[LunoStore] Failed to restore selected account from storage:",l);}e({activeConnector:o,accounts:f,status:"connected",account:m});let S={publicKey:m.publicKey,address:m.address,name:m.name,source:m.meta?.source};try{t.storage.setItem(C.LAST_CONNECTOR_ID,o.id),t.storage.setItem(C.RECENT_CONNECTOR_ID,o.id),t.storage.setItem(C.LAST_SELECTED_ACCOUNT_INFO,JSON.stringify(S)),t.storage.setItem(C.RECENT_SELECTED_ACCOUNT_INFO,JSON.stringify(S));}catch(l){console.error("[LunoStore] Failed to persist connectorId to storage:",l);}let p=r().currentChainId,y=i||p||t.chains[0]?.genesisHash;if(y){let l=t.chains.find(b=>b.genesisHash===y);if(l){(y!==p||!r().currentApi)&&e({currentChainId:y,currentChain:l,currentApi:void 0});try{t.storage.setItem(C.LAST_CHAIN_ID,y);}catch(b){console.error("[LunoStore] Failed to persist chainId to storage:",b);}}else console.warn(`[LunoStore] After connection, target chain ID "${y}" was not found in config. Current chain state might not have changed. Not persisting chainId.`);}}catch(a){throw D(),e({status:"disconnected",activeConnector:void 0,accounts:[]}),new Error(`${o.name}: ${a?.message||a}`)}},disconnect:async()=>{let{activeConnector:n,status:i,config:t}=r();if(!(!n||i==="disconnecting"||i==="disconnected")){e({status:"disconnecting"});try{if(await n.disconnect(),t)try{await t.storage.removeItem(C.LAST_CONNECTOR_ID),await t.storage.removeItem(C.LAST_CHAIN_ID),await t.storage.removeItem(C.LAST_SELECTED_ACCOUNT_INFO);}catch(o){console.error("[LunoStore] Failed to remove connection info from storage during disconnect action:",o);}D(),e({status:"disconnected",activeConnector:void 0,accounts:[],account:void 0}),r().status!=="disconnected"&&console.warn("[LunoStore] disconnect method called, but status is not yet 'disconnected' (event handler might be delayed or did not fire). Check connector events.");}catch(o){throw e({status:"connected"}),new Error(`[LunoStore] Error disconnecting from ${n.name}: ${o?.message||o}`)}}},switchChain:async n=>{let{config:i,currentChainId:t,currentApi:o,activeConnector:s,account:a$1,accounts:d}=r();if(!i)throw new Error("[LunoStore] LunoConfig has not been initialized. Cannot switch chain.");if(n===t)return;let u=i.chains.find(f=>f.genesisHash===n);if(!u)throw new Error(`[LunoStore] Chain with ID "${n}" not found in LunoConfig.`);try{try{o&&o.status==="connected"&&await o.disconnect();}catch(m){console.warn("[LunoStore] Failed to disconnect from previous chain:",m);}e({currentChainId:n,currentChain:u,currentApi:void 0,isApiReady:!1,apiError:null});let f=await a({config:i,chainId:n});e({currentApi:f,isApiReady:!0}),await i.storage.setItem(C.LAST_CHAIN_ID,n);}catch(f){e({apiError:f,isApiReady:false});}},_setApiError:n=>{e({apiError:n});}}));var k=re.createContext({});var ae=({config:e,children:r})=>{let{_setConfig:n,_setApi:i,_setIsApiReady:t,_setApiError:o,setAccount:s,currentChainId:a$1,config:d,currentApi:u,connect:f,status:m,activeConnector:S,accounts:p,account:y,currentChain:l,isApiReady:b,apiError:h,disconnect:E,switchChain:g}=G(),{markAsInitialized:T,isInitialized:L}=q(),v=useCallback(()=>{i(void 0),t(false);},[i,t]);useEffect(()=>{e&&n(e);},[e]),useEffect(()=>{if(L)return;if(!e||!a$1){u&&u.status==="connected"&&u.disconnect().catch(console.error),v();return}let A=e.chains.find(x=>x.genesisHash===a$1),w=e.transports[a$1];if(!A||!w){u&&u.status==="connected"&&u.disconnect().catch(console.error),v();return}u&&u.status==="connected"&&u.disconnect().catch(x=>console.error("[LunoProvider] Error disconnecting previous API:",x)),v(),a({config:e,chainId:a$1}).then(x=>{i(x),t(true);}).catch(x=>{v(),o(x);}).finally(()=>T());},[e,a$1]),useEffect(()=>{e&&(async()=>{if(await c$1(500),!!e.autoConnect){if(!e.storage){console.warn("[LunoProvider]: AutoConnect Storage not available, cannot auto-connect.");return}try{let w=await e.storage.getItem(C.LAST_CONNECTOR_ID),x=await e.storage.getItem(C.LAST_CHAIN_ID);w?await f(w,x||void 0):console.warn("[LunoProvider]: AutoConnect No persisted session found or missing data.");}catch(w){console.error("[LunoProvider]: AutoConnect Error during auto-connect process:",w);}}})();},[e]),useEffect(()=>{if(b&&u&&l&&l.ss58Format!==void 0&&l.ss58Format!==null)try{let A=u.consts.system.ss58Prefix;A!=null&&A!==l.ss58Format?console.error(`[LunoProvider]: SS58 Format Mismatch for chain "${l.name}" (genesisHash: ${l.genesisHash}):
1
+ import {a,c as c$1,b}from'./chunk-QCEMRLYF.js';export{a as ConnectionStatus}from'./chunk-ZBVBO5KX.js';export*from'@luno-kit/core';import re,{useCallback,useEffect,useMemo,useState,useRef,useContext}from'react';import {isSameAddress,convertAddress,formatBalance,createPapiSigner}from'@luno-kit/core/utils';import {create}from'zustand';import {jsx}from'react/jsx-runtime';import {isEvmAddress,isNumber}from'dedot/utils';import {useQueryClient,useQuery,useMutation}from'@tanstack/react-query';var C={LAST_CONNECTOR_ID:"lastConnectorId",LAST_CHAIN_ID:"lastChainId",LAST_SELECTED_ACCOUNT_INFO:"lastSelectedAccountInfo",RECENT_SELECTED_ACCOUNT_INFO:"recentSelectedAccountInfo",RECENT_CONNECTOR_ID:"recentConnectorId"};var q=()=>{let e=useRef(false);return {isInitialized:e.current,markAsInitialized:()=>{e.current=true;}}};var _=[],D=()=>{_.forEach(e=>{try{e();}catch(r){console.warn("[LunoStore] Error during listener cleanup:",r);}}),_=[];},G=create((e,r)=>({config:void 0,status:"disconnected",activeConnector:void 0,accounts:[],account:void 0,currentChainId:void 0,currentChain:void 0,currentApi:void 0,isApiReady:false,apiError:null,_setConfig:async n=>{D();let i=null;try{i=await n.storage.getItem(C.LAST_CHAIN_ID);}catch(a){console.warn("[LunoStore] Failed to read stored chain ID from storage:",a);}let t=i?.toLowerCase(),o=t&&n.chains.some(a=>a.genesisHash.toLowerCase()===t)?t:n.chains[0]?.genesisHash,s=o?n.chains.find(a=>a.genesisHash.toLowerCase()===o):void 0;e({config:n,status:"disconnected",activeConnector:void 0,accounts:[],currentChainId:o,currentChain:s});},_setApi:n=>{e({currentApi:n});},_setIsApiReady:n=>{e({isApiReady:n});},setAccount:async n=>{if(!n)return;let{accounts:i,config:t}=r(),o=typeof n=="string"?n.toLowerCase():n.publicKey?.toLowerCase(),s=i.find(a=>a.publicKey?.toLowerCase()===o);if(!s)throw new Error("[LunoStore] setAccount: The provided account or address is not in the current accounts list. Ignored.");if(e({account:s}),t)try{let a={publicKey:s.publicKey,address:s.address,name:s.name,source:s.meta?.source};await t.storage.setItem(C.LAST_SELECTED_ACCOUNT_INFO,JSON.stringify(a)),await t.storage.setItem(C.RECENT_SELECTED_ACCOUNT_INFO,JSON.stringify(a));}catch(a){console.error("[LunoStore] Failed to persist selected account:",a);}},connect:async(n,i)=>{let t=r().config;if(!t)throw e({status:"disconnected"}),new Error("[LunoStore] LunoConfig has not been initialized. Cannot connect.");let o=t.connectors.find(a=>a.id===n);if(!o)throw e({status:"disconnected"}),new Error(`[LunoStore] Connector with ID "${n}" not found in LunoConfig.`);e({status:"connecting"});let s=r().activeConnector;(s&&s.id!==o.id||s&&s.id===o.id)&&D();try{let a=async l=>{if(l.length===0){await r().disconnect();return}l.forEach(h=>{h.publicKey||console.warn(`[LunoStore] Account ${h.address} (from ${o.name}) is missing publicKey.`);});let b=l[0];try{let h=await t.storage.getItem(C.LAST_SELECTED_ACCOUNT_INFO),E=await t.storage.getItem(C.RECENT_SELECTED_ACCOUNT_INFO),g=h||E;if(g){let T=JSON.parse(g),L=l.find(v=>isSameAddress(v.address,T.address));L&&(b=L);}}catch(h){console.warn("[LunoStore] Failed to restore account during accountsChanged:",h);}e({accounts:l,account:b});},d=()=>{if(r().activeConnector?.id===o.id){D();try{t.storage.removeItem(C.LAST_CONNECTOR_ID),t.storage.removeItem(C.LAST_CHAIN_ID);}catch(l){console.error("[LunoStore] Failed to remove connection info from storage:",l);}e({status:"disconnected",activeConnector:void 0,accounts:[]});}else console.warn(`[LunoStore] Received disconnect event from an inactive connector ${o.name}. Ignored.`);};o.on("accountsChanged",a),_.push(()=>o.off("accountsChanged",a)),o.on("disconnect",d),_.push(()=>o.off("disconnect",d));let u=i||r().currentChainId||t.chains[0]?.genesisHash,f=await o.connect(t.appName,t.chains,u);if(!f||f?.length===0)throw new Error("[LunoStore] No accounts found from wallet");let m=f[0];try{let l=await t.storage.getItem(C.LAST_SELECTED_ACCOUNT_INFO),b=await t.storage.getItem(C.RECENT_SELECTED_ACCOUNT_INFO),h=l||b;if(h){let E=JSON.parse(h),g=f.find(T=>isSameAddress(T.address,E.address));g&&(m=g);}}catch(l){console.warn("[LunoStore] Failed to restore selected account from storage:",l);}e({activeConnector:o,accounts:f,status:"connected",account:m});let S={publicKey:m.publicKey,address:m.address,name:m.name,source:m.meta?.source};try{t.storage.setItem(C.LAST_CONNECTOR_ID,o.id),t.storage.setItem(C.RECENT_CONNECTOR_ID,o.id),t.storage.setItem(C.LAST_SELECTED_ACCOUNT_INFO,JSON.stringify(S)),t.storage.setItem(C.RECENT_SELECTED_ACCOUNT_INFO,JSON.stringify(S));}catch(l){console.error("[LunoStore] Failed to persist connectorId to storage:",l);}let p=r().currentChainId,y=i||p||t.chains[0]?.genesisHash;if(y){let l=t.chains.find(b=>b.genesisHash===y);if(l){(y!==p||!r().currentApi)&&e({currentChainId:y,currentChain:l,currentApi:void 0});try{t.storage.setItem(C.LAST_CHAIN_ID,y);}catch(b){console.error("[LunoStore] Failed to persist chainId to storage:",b);}}else console.warn(`[LunoStore] After connection, target chain ID "${y}" was not found in config. Current chain state might not have changed. Not persisting chainId.`);}}catch(a){throw D(),e({status:"disconnected",activeConnector:void 0,accounts:[]}),new Error(`${o.name}: ${a?.message||a}`)}},disconnect:async()=>{let{activeConnector:n,status:i,config:t}=r();if(!(!n||i==="disconnecting"||i==="disconnected")){e({status:"disconnecting"});try{if(await n.disconnect(),t)try{await t.storage.removeItem(C.LAST_CONNECTOR_ID),await t.storage.removeItem(C.LAST_CHAIN_ID),await t.storage.removeItem(C.LAST_SELECTED_ACCOUNT_INFO);}catch(o){console.error("[LunoStore] Failed to remove connection info from storage during disconnect action:",o);}D(),e({status:"disconnected",activeConnector:void 0,accounts:[],account:void 0}),r().status!=="disconnected"&&console.warn("[LunoStore] disconnect method called, but status is not yet 'disconnected' (event handler might be delayed or did not fire). Check connector events.");}catch(o){throw e({status:"connected"}),new Error(`[LunoStore] Error disconnecting from ${n.name}: ${o?.message||o}`)}}},switchChain:async n=>{let{config:i,currentChainId:t,currentApi:o,activeConnector:s,account:a$1,accounts:d}=r();if(!i)throw new Error("[LunoStore] LunoConfig has not been initialized. Cannot switch chain.");if(n===t)return;let u=i.chains.find(f=>f.genesisHash===n);if(!u)throw new Error(`[LunoStore] Chain with ID "${n}" not found in LunoConfig.`);try{try{o&&o.status==="connected"&&await o.disconnect();}catch(m){console.warn("[LunoStore] Failed to disconnect from previous chain:",m);}e({currentChainId:n,currentChain:u,currentApi:void 0,isApiReady:!1,apiError:null});let f=await a({config:i,chainId:n});e({currentApi:f,isApiReady:!0}),await i.storage.setItem(C.LAST_CHAIN_ID,n);}catch(f){e({apiError:f,isApiReady:false});}},_setApiError:n=>{e({apiError:n});}}));var k=re.createContext({});var ae=({config:e,children:r})=>{let{_setConfig:n,_setApi:i,_setIsApiReady:t,_setApiError:o,setAccount:s,currentChainId:a$1,config:d,currentApi:u,connect:f,status:m,activeConnector:S,accounts:p,account:y,currentChain:l,isApiReady:b,apiError:h,disconnect:E,switchChain:g}=G(),{markAsInitialized:T,isInitialized:L}=q(),v=useCallback(()=>{i(void 0),t(false);},[i,t]);useEffect(()=>{e&&n(e);},[e]),useEffect(()=>{if(L)return;if(!e||!a$1){u&&u.status==="connected"&&u.disconnect().catch(console.error),v();return}let A=e.chains.find(x=>x.genesisHash===a$1),w=e.transports[a$1];if(!A||!w){u&&u.status==="connected"&&u.disconnect().catch(console.error),v();return}u&&u.status==="connected"&&u.disconnect().catch(x=>console.error("[LunoProvider] Error disconnecting previous API:",x)),v(),a({config:e,chainId:a$1}).then(x=>{i(x),t(true);}).catch(x=>{v(),o(x);}).finally(()=>T());},[e,a$1]),useEffect(()=>{e&&(async()=>{if(await c$1(500),!!e.autoConnect){if(!e.storage){console.warn("[LunoProvider]: AutoConnect Storage not available, cannot auto-connect.");return}try{let w=await e.storage.getItem(C.LAST_CONNECTOR_ID),x=await e.storage.getItem(C.LAST_CHAIN_ID);w?await f(w,x||void 0):console.warn("[LunoProvider]: AutoConnect No persisted session found or missing data.");}catch(w){console.error("[LunoProvider]: AutoConnect Error during auto-connect process:",w);}}})();},[e]),useEffect(()=>{if(b&&u&&l&&l.ss58Format!==void 0&&l.ss58Format!==null)try{let A=u.consts.system.ss58Prefix;A!=null&&A!==l.ss58Format?console.error(`[LunoProvider]: SS58 Format Mismatch for chain "${l.name}" (genesisHash: ${l.genesisHash}):
2
2
  - Configured SS58Format: ${l.ss58Format}
3
3
  - Node Runtime SS58Format: ${A}
4
4
  Please verify your Luno configuration for this chain to ensure correct address display and interaction.`):A==null&&console.warn(`[LunoProvider]: Could not determine SS58 format from the API for chain "${l.name}". Cannot validate configured SS58Format (${l.ss58Format}). The application will use the configured value.`);}catch(A){console.error(`[LunoProvider]: Error retrieving SS58 format from API for chain "${l.name}" while attempting validation:`,A);}},[b,u,l]);let O=useMemo(()=>({config:d,status:m,activeConnector:S,accounts:p,account:y,setAccount:s,currentChainId:a$1,currentChain:l,currentApi:u,isApiReady:b,connect:f,disconnect:E,switchChain:g,apiError:h}),[d,m,S,p,y,a$1,l,u,b,h,f,E,g,s]);return jsx(k.Provider,{value:O,children:r})};var c=()=>{let e=useContext(k);if(e===void 0)throw new Error("useLuno must be used within a LunoProvider");return e};var U=()=>{let{account:e,currentChain:r}=c(),n=useMemo(()=>{if(e){if(!r||r?.ss58Format===void 0)return e;try{let i=convertAddress(e.address,r.ss58Format);return {...e,address:i}}catch(i){return console.error(`[useAccount]: Failed to re-format address for account ${e.address}:`,i),{...e}}}},[e,r,r?.ss58Format]);return {account:n,address:n?.address}};var hn=()=>{let{accounts:e,setAccount:r,currentChain:n}=c();return {accounts:useMemo(()=>!n||n?.ss58Format===void 0?e??[]:(e||[]).map(t=>{try{let o=convertAddress(t.address,n.ss58Format);return {...t,address:o}}catch(o){return console.error(`[useAccounts]: Failed to re-format address for account ${t.address}:`,o),{...t}}}),[e,n,n?.ss58Format]),selectAccount:r}};var bn=()=>{let{activeConnector:e}=c();return e};var xn=()=>{let{currentApi:e,isApiReady:r,apiError:n}=c();return {api:e,isApiReady:r,apiError:n}};var ye=e=>e,V=({queryKey:e,factory:r,params:n,options:i={}})=>{let[t,o]=useState(void 0),{currentApi:s,isApiReady:a}=c(),d=useQueryClient(),{enabled:u=true,transform:f=ye,defaultValue:m}=i,S=useRef(null),p=useMemo(()=>{if(!(!n||!s||!a))return typeof n=="function"?[n(s)]:n},[n,s,a]),y=useMemo(()=>[e,p,s?.genesisHash],[e,p,s?.genesisHash]);useEffect(()=>{if(S.current&&(S.current(),S.current=null),!(!u||!r||!s||!p||!a)){try{let h=r(s),E=typeof h=="function"?h.bind(s):h,g=T=>{try{let L=f(T);d.setQueryData(y,L),o(void 0);}catch(L){o(new Error(`[useSubscription]: ${L}`));}};E(...p,g).then(T=>{S.current=T;}).catch(T=>{o(new Error(`[useSubscription]: ${T}`));});}catch(h){o(new Error(`[useSubscription]: ${h}`));}return ()=>{S.current&&(S.current(),S.current=null,o(void 0));}}},[JSON.stringify(y),u,d]);let{data:l,isLoading:b}=useQuery({queryKey:y,queryFn:()=>Promise.resolve(m),enabled:false,initialData:m});return {data:l,error:t,isLoading:!!(u&&a&&!l)}};var be=10,Ee=(e,r)=>{let n=e[0],i=e[1],t=n.data.free,o=n.data.reserved,s=n.data.frozen,a=BigInt(t)+BigInt(o),d=t>s?BigInt(t)-BigInt(s):0n;return {free:t,total:a,reserved:o,transferable:d,formattedTransferable:formatBalance(d,r.tokenDecimals),formattedTotal:formatBalance(a,r.tokenDecimals),locks:i.map(u=>({id:u.id,amount:u.amount,reason:u.reasons,lockHuman:formatBalance(u.amount,r.tokenDecimals)}))}},Mn=({address:e})=>{let{currentApi:r,isApiReady:n,currentChain:i}=c(),t=useMemo(()=>!r||!n||!e?false:r.isEthereum?isEvmAddress(e):!isEvmAddress(e),[r,n,e]),o=V({queryKey:"/native-balance",factory:s=>s.queryMulti,params:s=>[{fn:s.query.system.account,args:[e]},{fn:s.query.balances.locks,args:[e]}],options:{enabled:t,transform:s=>{let a={tokenDecimals:i?.nativeCurrency?.decimals??be,tokenSymbol:i?.nativeCurrency?.symbol,ss58Format:i?.ss58Format};return Ee(s,a)}}});return r&&n&&e&&!t?{isLoading:false,data:{free:0n,reserved:0n,total:0n,transferable:0n,formattedTransferable:"0",formattedTotal:"0",locks:[]},error:void 0}:o};var Vn=()=>{let{currentApi:e,isApiReady:r}=c();return V({queryKey:"/block-number",factory:i=>i.query.system.number,params:[],options:{enabled:!!e&&r,transform:i=>i}})};var $n=()=>{let{currentChain:e,currentChainId:r}=c();return {chain:e,chainId:r}};var Qn=()=>{let{config:e}=c();return e?.chains?[...e.chains]:[]};var Gn=()=>{let{config:e}=c();return e};function I(e,r){let n={};r?.onSuccess&&(n.onSuccess=r.onSuccess),r?.onError&&(n.onError=r.onError),r?.onSettled&&(n.onSettled=r.onSettled);let i=useMutation({mutationFn:e,retry:false,throwOnError:false,...n});return {mutate:(t,o)=>{i.mutate(t,o);},mutateAsync:(t,o)=>i.mutateAsync(t,o),data:i.data,error:i.error,isError:i.isError,isIdle:i.isIdle,isPending:i.isPending,isSuccess:i.isSuccess,reset:i.reset,status:i.status,variables:i.variables}}var nt=e=>{let{connect:r,config:n,activeConnector:i,status:t}=c(),s=I(async a=>{await r(a.connectorId,a.targetChainId),await c$1();},e);return {connect:s.mutate,connectAsync:s.mutateAsync,connectors:n?.connectors?[...n.connectors]:[],activeConnector:i,status:t,data:s.data,error:s.error,isError:s.isError,isIdle:s.isIdle,isPending:s.isPending,isSuccess:s.isSuccess,reset:s.reset,variables:s.variables}};var rt=()=>{let{config:e}=c();return e?.connectors?[...e.connectors]:[]};var ct=e=>{let{disconnect:r,status:n}=c(),t=I(async()=>{await r();},e);return {disconnect:o=>t.mutate(void 0,o),disconnectAsync:o=>t.mutateAsync(void 0,o),status:n,data:t.data,error:t.error,isError:t.isError,isIdle:t.isIdle,isPending:t.isPending,isSuccess:t.isSuccess,reset:t.reset}};function ft(){let{account:e,currentChain:r}=c(),[n,i]=useState(null),[t,o]=useState(false),[s,a]=useState(null),d=useCallback(async(u,f)=>{let m=f||e?.address;if(!(!u||!m||!r)){o(true),a(null);try{let S=await u.paymentInfo(m),p=r.nativeCurrency.decimals,y={...S,partialFeeFormatted:formatBalance(S.partialFee,p)};return i(y),y}catch(S){let p=S instanceof Error?S:new Error("Failed to estimate payment info");a(p);}finally{o(false);}}},[e?.address,r]);return {data:n,isLoading:t,error:s,estimate:d}}var Ct=()=>{let{currentApi:e,currentChainId:r,isApiReady:n}=c(),{data:i,isLoading:t,error:o}=useQuery({queryKey:["/genesis-hash",r],queryFn:async()=>await e.rpc.chain_getBlockHash(0),enabled:!!e&&n&&!!r,staleTime:1/0,gcTime:1/0,retry:false});return {data:i,isLoading:t,error:o}};var X=()=>{let{activeConnector:e}=c(),{account:r}=U(),[n,i]=useState(void 0),[t,o]=useState(false);return useEffect(()=>{if(!e||!r?.address){i(void 0),o(false);return}o(true),e.getSigner().then(s=>i(s)).catch(()=>i(void 0)).finally(()=>o(false));},[e,r?.address]),{data:n,isLoading:t}};function vt(){let{data:e}=X(),{address:r}=U(),[n,i]=useState(false),[t,o]=useState(void 0);return useEffect(()=>{if(!e||!r){o(void 0),i(false);return}i(true),createPapiSigner(r,e).then(s=>o(s)).catch(()=>o(void 0)).finally(()=>i(false));},[e,r]),{data:t,isLoading:n}}var Dt=()=>{let{currentApi:e,isApiReady:r,currentChainId:n}=c();return useQuery({queryKey:["luno","runtimeVersion",n],queryFn:async()=>await e.getRuntimeVersion(),enabled:!!e&&r&&!!n})};function Ft(e){let{activeConnector:r,currentApi:n,isApiReady:i}=c(),{account:t}=U(),[o,s]=useState("idle"),[a,d]=useState("idle"),[u,f]=useState(null),m=e?.waitFor??"finalized",S=useCallback(async y=>{if(s("idle"),d("idle"),!n||!i)throw new Error("[useSendTransaction]: Polkadot API is not ready.");if(!r)throw new Error("[useSendTransaction]: No active connector found.");if(!t||!t.address||!t.meta?.source)throw new Error("[useSendTransaction]: No active account, address, or account metadata (source) found.");if(!y.extrinsic)throw new Error("[useSendTransaction]: No extrinsic provided to send.");let l=await r.getSigner();if(!l)throw new Error("[useSendTransaction]: Could not retrieve signer from the injector.");return s("signing"),new Promise((b$1,h)=>{let E;y.extrinsic.signAndSend(t.address,{signer:l},({status:g,dispatchError:T,events:L,dispatchInfo:v,txHash:O,...A})=>{let w=R=>{E&&E(),b$1(R);},x=R=>{E&&E(),f(R),h(R);},z=(R,ne,P)=>({transactionHash:O,blockHash:R,blockNumber:ne,events:L,status:!!P?"failed":"success",dispatchError:P||void 0,errorMessage:P?b(n,P):void 0,dispatchInfo:v,rawReceipt:{status:g,dispatchError:T,events:L,dispatchInfo:v,txHash:O,...A}});switch(g.type){case "Broadcasting":s("pending"),d("broadcasting");break;case "BestChainBlockIncluded":s("pending"),d("inBlock"),m==="inBlock"&&(s(T?"failed":"success"),w(z(g.value?.blockHash,g.value?.blockNumber,T)));break;case "Finalized":d("finalized"),m==="finalized"&&(s(T?"failed":"success"),w(z(g.value?.blockHash,g.value?.blockNumber,T)));break;case "Invalid":s("failed"),d("invalid"),x(new Error(`Transaction invalid: ${O}`));break;case "Drop":s("failed"),d("dropped"),x(new Error(`Transaction dropped: ${O}`));break}}).then(g=>{E=g;}).catch(g=>{s("failed"),console.error("[useSendTransaction]: Error in signAndSend promise:",g?.message||g),f(g),h(g);});})},[n,i,r,t,s,d,m]),p=I(S,e);return {sendTransaction:p.mutate,sendTransactionAsync:p.mutateAsync,data:p.data,error:u||p.error,isError:!!u||p.isError,isIdle:p.isIdle,isPending:p.isPending,isSuccess:p.isSuccess,reset:p.reset,status:p.status,variables:p.variables,txStatus:o,detailedStatus:a}}function zt(e){let{account:r,activeConnector:n,currentApi:i,isApiReady:t}=c(),[o,s]=useState(null),a=useCallback(async u=>{if(!i||!t)throw new Error("[useSendTransactionHash]: Polkadot API is not ready.");if(!n)throw new Error("[useSendTransactionHash]: No active connector found.");if(!r||!r.address||!r.meta?.source)throw new Error("[useSendTransactionHash]: No active account, address, or account metadata (source) found.");if(!u.extrinsic)throw new Error("[useSendTransactionHash]: No extrinsic provided to send.");let f=await n.getSigner();if(!f)throw new Error("[useSendTransactionHash]: Could not retrieve signer from the injector.");try{return await u.extrinsic.signAndSend(r.address,{signer:f}).catch(S=>{throw S})}catch(m){throw s(m),m}},[i,t,n,r]),d=I(a,e);return {sendTransaction:d.mutate,sendTransactionAsync:d.mutateAsync,data:d.data,error:o||d.error,isError:!!o||d.isError,isIdle:d.isIdle,isPending:d.isPending,isSuccess:d.isSuccess,reset:d.reset,status:d.status,variables:d.variables}}function Gt(e){let{activeConnector:r,account:n,accounts:i}=c(),o=I(async s=>{if(!r)throw new Error("[useSignMessage]: No active connector found to sign the message.");if(!n||!n.address||!n.meta?.source)throw new Error("[useSignMessage]: No address provided for signing.");if(!i.some(u=>u.address===n.address))throw new Error(`[useSignMessage]: Address ${n.address} is not managed by ${r.id}.`);if(!s.message)throw new Error("[useSignMessage]: No message provided for signing.");let a=i.find(u=>isSameAddress(u.address,n.address));if(!a)throw new Error("[useSignMessage]: Invalid account address.");let d=await r.signMessage(s.message,a.address);if(!d)throw new Error("[useSignMessage]: Signature was not obtained. The user may have cancelled the request or the connector failed.");return {signature:d,rawMessage:s.message,addressUsed:n.address}},e);return {signMessage:o.mutate,signMessageAsync:o.mutateAsync,data:o.data,error:o.error,isError:o.isError,isIdle:o.isIdle,isPending:o.isPending,isSuccess:o.isSuccess,reset:o.reset,status:o.status,variables:o.variables}}var ee=42,Zt=()=>{let{currentApi:e,isApiReady:r,currentChain:n}=c(),i=n?.ss58Format!==void 0?n.ss58Format:ee;return useMemo(()=>{if(e&&r){let t;try{let o=e.consts.system.ss58Prefix;t=isNumber(o)?o:ee;}catch(o){console.error("[useSs58Format] Error fetching chainSS58:",o),t=i;}return {data:t,isLoading:false}}else return {data:void 0,isLoading:true}},[e,r,i])};var to=()=>{let{status:e}=c();return e};var io=e=>{let{switchChain:r,config:n,currentChain:i,currentChainId:t}=c(),s=I(async a=>{await r(a.chainId);},e);return {switchChain:s.mutate,switchChainAsync:s.mutateAsync,chains:n?.chains?[...n.chains]:[],currentChain:i,currentChainId:t,data:s.data,error:s.error,isError:s.isError,isIdle:s.isIdle,isPending:s.isPending,isSuccess:s.isSuccess,reset:s.reset,variables:s.variables}};export{ae as LunoProvider,U as useAccount,hn as useAccounts,bn as useActiveConnector,xn as useApi,Mn as useBalance,Vn as useBlockNumber,$n as useChain,Qn as useChains,Gn as useConfig,nt as useConnect,rt as useConnectors,ct as useDisconnect,ft as useEstimatePaymentInfo,Ct as useGenesisHash,vt as usePapiSigner,Dt as useRuntimeVersion,Ft as useSendTransaction,zt as useSendTransactionHash,Gt as useSignMessage,X as useSigner,Zt as useSs58Format,to as useStatus,V as useSubscription,io as useSwitchChain};//# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@luno-kit/react",
3
3
  "description": "React Hooks and Provider for Luno, enabling easy Polkadot wallet interactions in React applications.",
4
- "version": "0.0.12-beta.3",
4
+ "version": "0.0.13",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
@@ -51,7 +51,7 @@
51
51
  "@dedot/chaintypes": "0.152.0",
52
52
  "dedot": "0.16.0",
53
53
  "zustand": "5.0.4",
54
- "@luno-kit/core": "0.0.12-beta.3"
54
+ "@luno-kit/core": "0.0.13"
55
55
  },
56
56
  "devDependencies": {
57
57
  "@tanstack/react-query": "5.81.5",