@zama-fhe/sdk 3.0.0-alpha.44 → 3.0.0-alpha.45
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/cjs/base-signer.cjs +1 -1
- package/dist/cjs/ethers/index.cjs +1 -1
- package/dist/cjs/index.cjs +1 -1
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/query/index.cjs +1 -1
- package/dist/cjs/query/index.cjs.map +1 -1
- package/dist/cjs/token.cjs +1 -1
- package/dist/cjs/token.cjs.map +1 -1
- package/dist/cjs/viem/index.cjs +1 -1
- package/dist/cjs/wrappers-registry.cjs +1 -1
- package/dist/cjs/wrappers-registry.cjs.map +1 -1
- package/dist/esm/{base-signer-CG4cQrht.js → base-signer-C8NZHsv4.js} +2 -2
- package/dist/esm/{base-signer-CG4cQrht.js.map → base-signer-C8NZHsv4.js.map} +1 -1
- package/dist/esm/{cleartext-cvKO2Pa6.d.ts → cleartext-Hw0ScIRR.d.ts} +2 -2
- package/dist/esm/ethers/index.d.ts +2 -2
- package/dist/esm/ethers/index.js +1 -1
- package/dist/esm/{index-BCyTf9iS.d.ts → index-CUTD_pS4.d.ts} +18 -208
- package/dist/esm/index.d.ts +6 -6
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/node/index.d.ts +2 -2
- package/dist/esm/query/index.d.ts +13 -5
- package/dist/esm/query/index.js +1 -1
- package/dist/esm/query/index.js.map +1 -1
- package/dist/esm/token-DTgVBH31.js +2 -0
- package/dist/esm/token-DTgVBH31.js.map +1 -0
- package/dist/esm/{types-CS5tPsuA.d.ts → types-CC0Mp18i.d.ts} +8 -23
- package/dist/esm/{types-Cu9WQMaJ.d.ts → types-CKtFhknu.d.ts} +2 -2
- package/dist/esm/{types-ByVlSopa.d.ts → types-DSq1YR39.d.ts} +2 -2
- package/dist/esm/viem/index.d.ts +2 -2
- package/dist/esm/viem/index.js +1 -1
- package/dist/esm/web/index.d.ts +1 -1
- package/dist/esm/wrappers-registry-BNxAZZWS.js +2 -0
- package/dist/esm/wrappers-registry-BNxAZZWS.js.map +1 -0
- package/package.json +1 -1
- package/dist/esm/token-BQNpzWyu.js +0 -2
- package/dist/esm/token-BQNpzWyu.js.map +0 -1
- package/dist/esm/wrappers-registry-BDwgfSOu.js +0 -2
- package/dist/esm/wrappers-registry-BDwgfSOu.js.map +0 -1
package/dist/cjs/base-signer.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const e=require(`./relayer.cjs`),t=require(`./wrappers-registry.cjs`),n=require(`./validation.cjs`),r=require(`./assertions.cjs`),i=require(`./chains.cjs`);let a=require(`viem`),o=require(`zod/mini`);function s(e){return`keypair:${e}`}function c(e){return`permits:${e.signerAddress}:${e.chainId}:${e.delegatorAddress}`}function l(e){return`permits-index:${e}`}function u(e){return(0,a.getAddress)(e)}const d=o.z.custom(e=>typeof e==`string`&&(0,a.isHex)(e,{strict:!0}),`expected 0x-prefixed hex string`),f=o.z.custom(e=>typeof e==`string`&&(0,a.isAddress)(e,{strict:!1}),`expected EVM address`),p=o.z.pipe(f,o.z.transform(u)),m=o.z.int().check(o.z.nonnegative()),h=o.z.int().check(o.z.positive()),g=o.z.int().check(o.z.nonnegative()),_=o.z.int().check(o.z.positive()),v=o.z.int().check(o.z.positive()),y=86400;function b(){return Math.floor(Date.now()/1e3)}function x(e){return[...new Set(e.map(u))].toSorted()}const S=`keypairTTL must be a positive integer number of seconds`,C=`permitTTL must be a positive integer number of days`,w=365*y,T=o.z.int({error:S}).check(o.z.positive({error:S}),o.z.maximum(w,`keypairTTL must not exceed the fhevm ACL maximum of ${w}s (365 days)`)),E=o.z.int({error:C}).check(o.z.positive({error:C})),D=o.z.object({publicKey:d,privateKey:d,createdAt:m,expiresAt:h}),O=o.z.object({keypairPublicKey:d,signerAddress:p,delegatorAddress:p,chainId:v,signedContractAddresses:o.z.array(p).check(o.z.maxLength(10)),signature:d,startTimestamp:m,durationDays:_}),k=o.z.array(O),A=o.z.array(o.z.string());var j=class{#e;#t;#n;#r=new Map;constructor(e){this.#e=e.generator,this.#t=e.storage,this.#n=e.ttl}async readStored(e){let n=s(e),r=await this.#t.get(n);if(r==null)return null;let i=D.safeParse(r);if(!i.success)return await t.L(`delete keypair entry`,()=>this.#t.delete(n)),null;let a=i.data;return b()>=a.expiresAt?(await t.L(`delete keypair entry`,()=>this.#t.delete(n)),null):a}async getOrCreate(e){let n=this.#r.get(e);if(n)return n;let r=(async()=>{let n=await this.readStored(e);if(n!==null)return n;let r=await this.#e(),i=b(),a={publicKey:r.publicKey,privateKey:r.privateKey,createdAt:i,expiresAt:i+this.#n},o=s(e);return await t.L(`persist keypair`,()=>this.#t.set(o,a)),a})().finally(()=>{this.#r.delete(e)});return this.#r.set(e,r),r}async clear(e){let n=s(e);await t.L(`delete keypair entry`,()=>this.#t.delete(n))}};function M(e,t){let n=new Set(e.flatMap(e=>e.signedContractAddresses));return t.filter(e=>!n.has(e))}function N(e){let t=[];for(let n=0;n<e.length;n+=10)t.push(e.slice(n,n+10));return t}function P(e,t,n){return e.filter(e=>e.keypairPublicKey===t&&n<e.startTimestamp+e.durationDays*86400)}function F(e,t){let n=new Set(t);return e.filter(e=>!e.signedContractAddresses.some(e=>n.has(e)))}function I(e,t){return[...new Set([...e,...t])].toSorted()}function L(e,t,n){let r=new Set(n),i=e.filter(e=>new Set([...e.signedContractAddresses,...t]).size<=10);if(i.length===0)return null;function a(e){return e.signedContractAddresses.reduce((e,t)=>e+ +!!r.has(t),0)}let o=Math.max(...i.map(a));return i.filter(e=>a(e)===o).reduce((e,t)=>t.startTimestamp>e.startTimestamp?t:e)}var R=class{#e;constructor(e){this.#e=e.storage}async list(e){let t=c(e),n=await this.#e.get(t);if(n==null)return[];let r=k.safeParse(n);return r.success?r.data:(await this.#i(t),await this.#r(e),[])}async listUsableAndPrune(e,n){let r=await this.list(e),i=P(r,n,Math.floor(Date.now()/1e3));if(i.length!==r.length){let n=c(e);i.length===0?(await this.#i(n),await this.#r(e)):await t.L(`update permit entry`,()=>this.#e.set(n,i))}return i}async append(e,t){if(t.length===0)return;let n=t.map(e=>O.parse(e)),r=await this.list(e);await this.#e.set(c(e),[...r,...n]),await this.#n(e)}async replace(e,t,n){let r=O.parse(n),i=(await this.list(e)).filter(e=>e.signature!==t);await this.#e.set(c(e),[...i,r]),await this.#n(e)}async deletePermitsTouching(e,t){let n=await this.list(e);if(n.length===0)return;let r=c(e),i=F(n,t);i.length===0?(await this.#i(r),await this.#r(e)):await this.#e.set(r,i)}async clearAllForSigner(e){let n=l(e),r=await this.#t(n);await Promise.all(r.map(e=>this.#i(e))),await t.L(`delete permit index`,()=>this.#e.delete(n))}async#t(e){let n=await this.#e.get(e);if(n==null)return[];let r=A.safeParse(n);return r.success?r.data:(await t.L(`delete permit index`,()=>this.#e.delete(e)),[])}async#n(e){let t=l(e.signerAddress),n=c(e),r=await this.#t(t);r.includes(n)||await this.#e.set(t,[...r,n])}async#r(e){let n=l(e.signerAddress),r=c(e),i=await this.#t(n),a=i.filter(e=>e!==r);a.length!==i.length&&(a.length===0?await t.L(`delete permit index`,()=>this.#e.delete(n)):await t.L(`update permit index`,()=>this.#e.set(n,a)))}async#i(e){await t.L(`delete permit entry`,()=>this.#e.delete(e))}};30*y;var z=class{#e;#t;#n;#r;#i;constructor(e){this.#e=new j({generator:()=>e.relayer.generateKeypair(),storage:e.storage,ttl:e.keypairTTL}),this.#t=new R({storage:e.permitStorage??e.storage}),this.#n=e.relayer,this.#r=e.signer,this.#i=e.permitTTL}async grantPermit(e,n){let r=this.#r.requireWalletAccount(`grantPermit`),i=u(r.address),a=x(e),o=await this.#e.getOrCreate(i);if(a.length===0)return{keypair:o,permits:[]};let s={signerAddress:i,chainId:r.chainId,delegatorAddress:n?u(n):i},c=await this.#t.listUsableAndPrune(s,o.publicKey),l=M(c,a);if(l.length>0){let e=L(c,l,a);if(e!==null){let n=I(e.signedContractAddresses,l),r=await this.#a({chunk:n,keypair:o,scope:s});await t.L(`replace permit`,()=>this.#t.replace(s,e.signature,r)),c[c.indexOf(e)]=r}else for(let e of N(l)){let n=await this.#a({chunk:e,keypair:o,scope:s});c.push(n),await t.L(`persist permit`,()=>this.#t.append(s,[n]))}}let d=new Set(a);return{keypair:o,permits:c.filter(e=>e.signedContractAddresses.some(e=>d.has(e)))}}async hasPermit(e,t){if(e.length===0)return!0;let n=this.#r.walletAccount.getSnapshot();if(!n)return!1;let r=u(n.address),i=await this.#e.readStored(r);if(i===null)return!1;let a={signerAddress:r,chainId:n.chainId,delegatorAddress:t?u(t):r};return M(await this.#t.listUsableAndPrune(a,i.publicKey),x(e)).length===0}async revokePermits(e){let t=this.#r.requireWalletAccount(`revokePermits`),n=u(t.address);if(e===void 0){await this.#t.clearAllForSigner(n);return}let r=x(e);if(r.length===0)return;let i=t.chainId;await this.#t.deletePermitsTouching({signerAddress:n,chainId:i,delegatorAddress:n},r)}async clearCredentials(){let e=u(this.#r.requireWalletAccount(`clearCredentials`).address);await this.#e.clear(e),await this.#t.clearAllForSigner(e)}async handleWalletAccountChange(e,n){let r=e?u(e.address):void 0,i=n?u(n.address):void 0;r!==i&&(r&&(await this.#e.clear(r),await this.#t.clearAllForSigner(r)),i&&await t.L(`warm keypair`,async()=>{await this.#e.getOrCreate(i)}))}async#a(n){let{chunk:r,keypair:i,scope:a}=n,o=b(),s=a.delegatorAddress!==a.signerAddress;try{let e=s?await this.#n.createDelegatedUserDecryptEIP712(i.publicKey,r,a.delegatorAddress,o,this.#i):await this.#n.createEIP712(i.publicKey,r,o,this.#i),t=await this.#r.signTypedData(e);return{keypairPublicKey:i.publicKey,signerAddress:a.signerAddress,delegatorAddress:a.delegatorAddress,chainId:a.chainId,signedContractAddresses:r,signature:t,startTimestamp:o,durationDays:this.#i}}catch(n){throw n instanceof e.r?n:t.G(n,`Credential signing failed`)}}},B=class{#e=new Map;async get(e){return this.#e.get(e)??null}async set(e,t){this.#e.set(e,t)}async delete(e){this.#e.delete(e)}};const V=new B;function H(){return typeof window<`u`?new n.n(`CredentialStore`):new B}function U(e=H(),t=e){return{storage:e,permitStorage:t}}function W(t,n){let r=new Map(t.map(e=>[e.id,e]));if(r.size!==t.length){let n=t.map(e=>e.id);throw new e.t(`Duplicate chain id(s) [${[...new Set(n.filter((e,t)=>n.indexOf(e)!==t))].join(`, `)}] in the chains array. Each chain id must appear only once. Note: hardhat and anvil are aliases (both use 31337).`)}let i=new Map(Object.entries(n)),a=new Map;for(let t of r.keys()){let n=r.get(t),o=i.get(String(t));if(!o)throw new e.t(`Chain ${t} has no relayer configured. Add a relayer entry: relayers: { [${t}]: web() }`);if(!n)throw new e.t(`Chain ${t} has a relayer configured but no entry in the chains array. Add the chain config to the chains array.`);a.set(t,{chain:n,relayer:o})}let o=new Set(Object.keys(n).map(Number)),s=new Set([...o].filter(e=>!r.has(e)));if(s.size>0)throw new e.t(`Relayer entries for chain(s) [${[...s].join(`, `)}] have no matching entry in the chains array. Remove them or add the corresponding chain config.`);return a}var G=class{#e;#t;#n;#r;constructor(t,n){if(t.length===0)throw new e.t(`At least one chain is required.`);this.#e=new Map(t.map(e=>[e.id,e])),this.#r=t[0].id;let r=W(t,n),i=new Map;for(let[e,t]of r){let n=t.relayer,r=i.get(n);r||(r=[],i.set(n,r)),r.push([e,t.chain])}let a=new Map,o=[];try{for(let[e,t]of i){let n=t.map(([,e])=>e),r=e.createWorker?.(n);r&&o.push(r);for(let[n,i]of t)a.set(n,e.createRelayer(i,r))}}catch(e){for(let e of o)try{e.terminate()}catch{}throw e}this.#t=a,this.#n=o}get chains(){return[...this.#e.values()]}get chain(){let e=this.#e.get(this.#r);return r.r(e,`RelayerDispatcher: chain`),e}switchChain(t){if(!this.#e.has(t))throw new e.t(`No relayer configured for chain ${t}. Add it to the chains array.`);this.#r=t}get#i(){let e=this.#t.get(this.#r);return r.r(e,`RelayerDispatcher: relayer`),e}generateKeypair(){return this.#i.generateKeypair()}createEIP712(e,t,n,r){return this.#i.createEIP712(e,t,n,r)}encrypt(e){return this.#i.encrypt(e)}userDecrypt(e){return this.#i.userDecrypt(e)}publicDecrypt(e){return this.#i.publicDecrypt(e)}createDelegatedUserDecryptEIP712(e,t,n,r,i){return this.#i.createDelegatedUserDecryptEIP712(e,t,n,r,i)}delegatedUserDecrypt(e){return this.#i.delegatedUserDecrypt(e)}requestZKProofVerification(e){return this.#i.requestZKProofVerification(e)}getPublicKey(){return this.#i.getPublicKey()}getPublicParams(e){return this.#i.getPublicParams(e)}getAclAddress(){return this.#i.getAclAddress()}terminate(){let e=[];for(let t of new Set(this.#t.values()))try{t.terminate()}catch(t){e.push(r.s(t))}for(let t of new Set(this.#n))try{t.terminate()}catch(t){e.push(r.s(t))}if(e.length>0)throw AggregateError(e,`Failed to terminate relayer resources`)}[Symbol.dispose](){this.terminate()}};const K={[i.a.id]:i.a.registryAddress,[i.o.id]:i.o.registryAddress,[i.i.id]:i.i.registryAddress},q=o.z.record(o.z.string().check(o.z.regex(/^\d+$/,`expected numeric chain id key`)),p),J=g,Y=300*1e3;var X=class{provider;#e;#t;#n=new Map;constructor(e){this.provider=e.provider,this.#e=Object.assign({},K,n.t(o.z.optional(q),e.registryAddresses)),this.#t=n.t(J,e.registryTTL??86400)*1e3}getAddress(e){return this.#e[e]}#r(e){let t=this.#n.get(e);if(t){if(Date.now()>=t.expiresAt){this.#n.delete(e);return}return t.data}}#i(e,t,n=this.#t){return this.#n.set(e,{data:t,expiresAt:Date.now()+n}),t}refresh(){this.#n.clear()}get ttlMs(){return this.#t}async getRegistryAddress(){let t=await this.provider.getChainId(),n=this.#e[t];if(!n)throw new e.t(`No wrappers registry address configured for chain ${t}.\nPass a registryAddresses entry for this chain.`);return(0,a.getAddress)(n)}async listPairs(n={}){let r=n.page??1,i=n.pageSize??100,a=n.metadata??!1;if(r<1)throw new e.t(`page must be >= 1, got ${r}`);if(i<1)throw new e.t(`pageSize must be >= 1, got ${i}`);let o=await this.getRegistryAddress(),s=`total:${o}`,c=this.#r(s);if(c===void 0){let e=await this.provider.readContract(t.a(o));c=this.#i(s,Number(e))}let l=BigInt((r-1)*i),u=l+BigInt(i)>BigInt(c)?BigInt(c):l+BigInt(i);if(l>=BigInt(c))return{items:[],total:c,page:r,pageSize:i};let d=`slice:${o}:${l}:${u}`,f=this.#r(d);if(f===void 0){let e=await this.provider.readContract(t.o(o,l,u));f=this.#i(d,[...e])}if(!a)return{items:f,total:c,page:r,pageSize:i};let p=`metadata:${o}:${l}:${u}`,m=this.#r(p);if(m===void 0){let e=await Promise.allSettled(f.map(e=>this.#a(e))),t=e.some(e=>e.status===`rejected`),n=e.map((e,t)=>e.status===`fulfilled`?e.value:Object.assign({},f[t],{metadataFailed:!0,underlying:{name:`Unknown`,symbol:`???`,decimals:0,totalSupply:0n},confidential:{name:`Unknown`,symbol:`???`,decimals:0}}));m=this.#i(p,n,t?Y:void 0)}return{items:m,total:c,page:r,pageSize:i}}async#a(e){let[n,r,i,a,o,s,c]=await Promise.all([this.provider.readContract(t.x(e.tokenAddress)),this.provider.readContract(t.S(e.tokenAddress)),this.provider.readContract(t.y(e.tokenAddress)),this.provider.readContract(t.b(e.tokenAddress)),this.provider.readContract(t.x(e.confidentialTokenAddress)),this.provider.readContract(t.S(e.confidentialTokenAddress)),this.provider.readContract(t.y(e.confidentialTokenAddress))]);return{...e,underlying:{name:n,symbol:r,decimals:i,totalSupply:a},confidential:{name:o,symbol:s,decimals:c}}}async getConfidentialToken(e){let n=await this.getRegistryAddress(),r=(0,a.getAddress)(e),i=`ct:${n}:${r}`,o=this.#r(i);if(o!==void 0)return o;let[s,c]=await this.provider.readContract(t.t(n,r));return c===a.zeroAddress?this.#i(i,null,Y):this.#i(i,{confidentialTokenAddress:c,isValid:s})}async getUnderlyingToken(e){let n=await this.getRegistryAddress(),r=(0,a.getAddress)(e),i=`ut:${n}:${r}`,o=this.#r(i);if(o!==void 0)return o;let[s,c]=await this.provider.readContract(t.n(n,r));return c===a.zeroAddress?this.#i(i,null,Y):this.#i(i,{tokenAddress:c,isValid:s})}async getTokenPairs(){let e=await this.getRegistryAddress();return this.provider.readContract(t.i(e))}async getTokenPairsLength(){let e=await this.getRegistryAddress();return this.provider.readContract(t.a(e))}async getTokenPairsSlice(e,n){let r=await this.getRegistryAddress();return this.provider.readContract(t.o(r,e,n))}async getTokenPair(e){let n=await this.getRegistryAddress();return this.provider.readContract(t.r(n,e))}async getConfidentialTokenAddress(e){let n=await this.getRegistryAddress();return this.provider.readContract(t.t(n,(0,a.getAddress)(e)))}async getTokenAddress(e){let n=await this.getRegistryAddress();return this.provider.readContract(t.n(n,(0,a.getAddress)(e)))}async isConfidentialTokenValid(e){let n=await this.getRegistryAddress();return this.provider.readContract(t.s(n,(0,a.getAddress)(e)))}};function Z(e,t,r){let{storage:i,permitStorage:a}=U(r.storage,r.permitStorage),o=new G(r.chains,r.relayers);return{chains:r.chains,relayer:o,provider:t,signer:e,storage:i,permitStorage:a,keypairTTL:n.t(T,r.keypairTTL??2592e3),permitTTL:n.t(E,r.permitTTL??30),registryTTL:n.t(J,r.registryTTL??86400),onEvent:r.onEvent}}function Q(e,t){return e?.address===t?.address&&e?.chainId===t?.chainId}var $=class{#e=new Set;#t;#n;constructor(e){this.#t=e,this.#n=e!==void 0}getSnapshot(){return this.#t}isReady(){return this.#n}setSnapshot(e){this.#n=!0;let t=this.#t;Q(t,e)||(this.#t=e,this.#r({previous:t,next:e}))}subscribe(e){this.#e.add(e);let t=this.#t;return t&&e({previous:void 0,next:t}),()=>{this.#e.delete(e)}}#r(e){for(let t of this.#e)t(e)}};function ee(e){return new $(e)}var te=class{walletAccount;#e=!1;constructor(e){this.walletAccount=new $(e)}requireWalletAccount(e){let n=this.walletAccount.getSnapshot();if(!n)throw new t.V(e);return n}dispose(){this.#e||(this.#e=!0,this.onDispose())}[Symbol.dispose](){this.dispose()}onDispose(){}};Object.defineProperty(exports,`a`,{enumerable:!0,get:function(){return K}}),Object.defineProperty(exports,`c`,{enumerable:!0,get:function(){return U}}),Object.defineProperty(exports,`d`,{enumerable:!0,get:function(){return z}}),Object.defineProperty(exports,`f`,{enumerable:!0,get:function(){return u}}),Object.defineProperty(exports,`i`,{enumerable:!0,get:function(){return Z}}),Object.defineProperty(exports,`l`,{enumerable:!0,get:function(){return B}}),Object.defineProperty(exports,`m`,{enumerable:!0,get:function(){return d}}),Object.defineProperty(exports,`n`,{enumerable:!0,get:function(){return $}}),Object.defineProperty(exports,`o`,{enumerable:!0,get:function(){return X}}),Object.defineProperty(exports,`p`,{enumerable:!0,get:function(){return p}}),Object.defineProperty(exports,`r`,{enumerable:!0,get:function(){return ee}}),Object.defineProperty(exports,`s`,{enumerable:!0,get:function(){return W}}),Object.defineProperty(exports,`t`,{enumerable:!0,get:function(){return te}}),Object.defineProperty(exports,`u`,{enumerable:!0,get:function(){return V}});
|
|
1
|
+
const e=require(`./relayer.cjs`),t=require(`./wrappers-registry.cjs`),n=require(`./validation.cjs`),r=require(`./assertions.cjs`),i=require(`./chains.cjs`);let a=require(`viem`),o=require(`zod/mini`);function s(e){return`keypair:${e}`}function c(e){return`permits:${e.signerAddress}:${e.chainId}:${e.delegatorAddress}`}function l(e){return`permits-index:${e}`}function u(e){return(0,a.getAddress)(e)}const d=o.z.custom(e=>typeof e==`string`&&(0,a.isHex)(e,{strict:!0}),`expected 0x-prefixed hex string`),f=o.z.custom(e=>typeof e==`string`&&(0,a.isAddress)(e,{strict:!1}),`expected EVM address`),p=o.z.pipe(f,o.z.transform(u)),m=o.z.int().check(o.z.nonnegative()),h=o.z.int().check(o.z.positive()),g=o.z.int().check(o.z.nonnegative()),_=o.z.int().check(o.z.positive()),v=o.z.int().check(o.z.positive()),y=86400;function b(){return Math.floor(Date.now()/1e3)}function x(e){return[...new Set(e.map(u))].toSorted()}const S=`keypairTTL must be a positive integer number of seconds`,C=`permitTTL must be a positive integer number of days`,w=365*y,T=o.z.int({error:S}).check(o.z.positive({error:S}),o.z.maximum(w,`keypairTTL must not exceed the fhevm ACL maximum of ${w}s (365 days)`)),E=o.z.int({error:C}).check(o.z.positive({error:C})),D=o.z.object({publicKey:d,privateKey:d,createdAt:m,expiresAt:h}),O=o.z.object({keypairPublicKey:d,signerAddress:p,delegatorAddress:p,chainId:v,signedContractAddresses:o.z.array(p).check(o.z.maxLength(10)),signature:d,startTimestamp:m,durationDays:_}),k=o.z.array(O),A=o.z.array(o.z.string());var j=class{#e;#t;#n;#r=new Map;constructor(e){this.#e=e.generator,this.#t=e.storage,this.#n=e.ttl}async readStored(e){let n=s(e),r=await this.#t.get(n);if(r==null)return null;let i=D.safeParse(r);if(!i.success)return await t.F(`delete keypair entry`,()=>this.#t.delete(n)),null;let a=i.data;return b()>=a.expiresAt?(await t.F(`delete keypair entry`,()=>this.#t.delete(n)),null):a}async getOrCreate(e){let n=this.#r.get(e);if(n)return n;let r=(async()=>{let n=await this.readStored(e);if(n!==null)return n;let r=await this.#e(),i=b(),a={publicKey:r.publicKey,privateKey:r.privateKey,createdAt:i,expiresAt:i+this.#n},o=s(e);return await t.F(`persist keypair`,()=>this.#t.set(o,a)),a})().finally(()=>{this.#r.delete(e)});return this.#r.set(e,r),r}async clear(e){let n=s(e);await t.F(`delete keypair entry`,()=>this.#t.delete(n))}};function M(e,t){let n=new Set(e.flatMap(e=>e.signedContractAddresses));return t.filter(e=>!n.has(e))}function N(e){let t=[];for(let n=0;n<e.length;n+=10)t.push(e.slice(n,n+10));return t}function P(e,t,n){return e.filter(e=>e.keypairPublicKey===t&&n<e.startTimestamp+e.durationDays*86400)}function F(e,t){let n=new Set(t);return e.filter(e=>!e.signedContractAddresses.some(e=>n.has(e)))}function I(e,t){return[...new Set([...e,...t])].toSorted()}function L(e,t,n){let r=new Set(n),i=e.filter(e=>new Set([...e.signedContractAddresses,...t]).size<=10);if(i.length===0)return null;function a(e){return e.signedContractAddresses.reduce((e,t)=>e+ +!!r.has(t),0)}let o=Math.max(...i.map(a));return i.filter(e=>a(e)===o).reduce((e,t)=>t.startTimestamp>e.startTimestamp?t:e)}var R=class{#e;constructor(e){this.#e=e.storage}async list(e){let t=c(e),n=await this.#e.get(t);if(n==null)return[];let r=k.safeParse(n);return r.success?r.data:(await this.#i(t),await this.#r(e),[])}async listUsableAndPrune(e,n){let r=await this.list(e),i=P(r,n,Math.floor(Date.now()/1e3));if(i.length!==r.length){let n=c(e);i.length===0?(await this.#i(n),await this.#r(e)):await t.F(`update permit entry`,()=>this.#e.set(n,i))}return i}async append(e,t){if(t.length===0)return;let n=t.map(e=>O.parse(e)),r=await this.list(e);await this.#e.set(c(e),[...r,...n]),await this.#n(e)}async replace(e,t,n){let r=O.parse(n),i=(await this.list(e)).filter(e=>e.signature!==t);await this.#e.set(c(e),[...i,r]),await this.#n(e)}async deletePermitsTouching(e,t){let n=await this.list(e);if(n.length===0)return;let r=c(e),i=F(n,t);i.length===0?(await this.#i(r),await this.#r(e)):await this.#e.set(r,i)}async clearAllForSigner(e){let n=l(e),r=await this.#t(n);await Promise.all(r.map(e=>this.#i(e))),await t.F(`delete permit index`,()=>this.#e.delete(n))}async#t(e){let n=await this.#e.get(e);if(n==null)return[];let r=A.safeParse(n);return r.success?r.data:(await t.F(`delete permit index`,()=>this.#e.delete(e)),[])}async#n(e){let t=l(e.signerAddress),n=c(e),r=await this.#t(t);r.includes(n)||await this.#e.set(t,[...r,n])}async#r(e){let n=l(e.signerAddress),r=c(e),i=await this.#t(n),a=i.filter(e=>e!==r);a.length!==i.length&&(a.length===0?await t.F(`delete permit index`,()=>this.#e.delete(n)):await t.F(`update permit index`,()=>this.#e.set(n,a)))}async#i(e){await t.F(`delete permit entry`,()=>this.#e.delete(e))}};30*y;var z=class{#e;#t;#n;#r;#i;constructor(e){this.#e=new j({generator:()=>e.relayer.generateKeypair(),storage:e.storage,ttl:e.keypairTTL}),this.#t=new R({storage:e.permitStorage??e.storage}),this.#n=e.relayer,this.#r=e.signer,this.#i=e.permitTTL}async grantPermit(e,n){let r=this.#r.requireWalletAccount(`grantPermit`),i=u(r.address),a=x(e),o=await this.#e.getOrCreate(i);if(a.length===0)return{keypair:o,permits:[]};let s={signerAddress:i,chainId:r.chainId,delegatorAddress:n?u(n):i},c=await this.#t.listUsableAndPrune(s,o.publicKey),l=M(c,a);if(l.length>0){let e=L(c,l,a);if(e!==null){let n=I(e.signedContractAddresses,l),r=await this.#a({chunk:n,keypair:o,scope:s});await t.F(`replace permit`,()=>this.#t.replace(s,e.signature,r)),c[c.indexOf(e)]=r}else for(let e of N(l)){let n=await this.#a({chunk:e,keypair:o,scope:s});c.push(n),await t.F(`persist permit`,()=>this.#t.append(s,[n]))}}let d=new Set(a);return{keypair:o,permits:c.filter(e=>e.signedContractAddresses.some(e=>d.has(e)))}}async hasPermit(e,t){if(e.length===0)return!0;let n=this.#r.walletAccount.getSnapshot();if(!n)return!1;let r=u(n.address),i=await this.#e.readStored(r);if(i===null)return!1;let a={signerAddress:r,chainId:n.chainId,delegatorAddress:t?u(t):r};return M(await this.#t.listUsableAndPrune(a,i.publicKey),x(e)).length===0}async revokePermits(e){let t=this.#r.requireWalletAccount(`revokePermits`),n=u(t.address);if(e===void 0){await this.#t.clearAllForSigner(n);return}let r=x(e);if(r.length===0)return;let i=t.chainId;await this.#t.deletePermitsTouching({signerAddress:n,chainId:i,delegatorAddress:n},r)}async clearCredentials(){let e=u(this.#r.requireWalletAccount(`clearCredentials`).address);await this.#e.clear(e),await this.#t.clearAllForSigner(e)}async handleWalletAccountChange(e,n){let r=e?u(e.address):void 0,i=n?u(n.address):void 0;r!==i&&(r&&(await this.#e.clear(r),await this.#t.clearAllForSigner(r)),i&&await t.F(`warm keypair`,async()=>{await this.#e.getOrCreate(i)}))}async#a(n){let{chunk:r,keypair:i,scope:a}=n,o=b(),s=a.delegatorAddress!==a.signerAddress;try{let e=s?await this.#n.createDelegatedUserDecryptEIP712(i.publicKey,r,a.delegatorAddress,o,this.#i):await this.#n.createEIP712(i.publicKey,r,o,this.#i),t=await this.#r.signTypedData(e);return{keypairPublicKey:i.publicKey,signerAddress:a.signerAddress,delegatorAddress:a.delegatorAddress,chainId:a.chainId,signedContractAddresses:r,signature:t,startTimestamp:o,durationDays:this.#i}}catch(n){throw n instanceof e.r?n:t.U(n,`Credential signing failed`)}}},B=class{#e=new Map;async get(e){return this.#e.get(e)??null}async set(e,t){this.#e.set(e,t)}async delete(e){this.#e.delete(e)}};const V=new B;function H(){return typeof window<`u`?new n.n(`CredentialStore`):new B}function U(e=H(),t=e){return{storage:e,permitStorage:t}}function W(t,n){let r=new Map(t.map(e=>[e.id,e]));if(r.size!==t.length){let n=t.map(e=>e.id);throw new e.t(`Duplicate chain id(s) [${[...new Set(n.filter((e,t)=>n.indexOf(e)!==t))].join(`, `)}] in the chains array. Each chain id must appear only once. Note: hardhat and anvil are aliases (both use 31337).`)}let i=new Map(Object.entries(n)),a=new Map;for(let t of r.keys()){let n=r.get(t),o=i.get(String(t));if(!o)throw new e.t(`Chain ${t} has no relayer configured. Add a relayer entry: relayers: { [${t}]: web() }`);if(!n)throw new e.t(`Chain ${t} has a relayer configured but no entry in the chains array. Add the chain config to the chains array.`);a.set(t,{chain:n,relayer:o})}let o=new Set(Object.keys(n).map(Number)),s=new Set([...o].filter(e=>!r.has(e)));if(s.size>0)throw new e.t(`Relayer entries for chain(s) [${[...s].join(`, `)}] have no matching entry in the chains array. Remove them or add the corresponding chain config.`);return a}var G=class{#e;#t;#n;#r;constructor(t,n){if(t.length===0)throw new e.t(`At least one chain is required.`);this.#e=new Map(t.map(e=>[e.id,e])),this.#r=t[0].id;let r=W(t,n),i=new Map;for(let[e,t]of r){let n=t.relayer,r=i.get(n);r||(r=[],i.set(n,r)),r.push([e,t.chain])}let a=new Map,o=[];try{for(let[e,t]of i){let n=t.map(([,e])=>e),r=e.createWorker?.(n);r&&o.push(r);for(let[n,i]of t)a.set(n,e.createRelayer(i,r))}}catch(e){for(let e of o)try{e.terminate()}catch{}throw e}this.#t=a,this.#n=o}get chains(){return[...this.#e.values()]}get chain(){let e=this.#e.get(this.#r);return r.r(e,`RelayerDispatcher: chain`),e}switchChain(t){if(!this.#e.has(t))throw new e.t(`No relayer configured for chain ${t}. Add it to the chains array.`);this.#r=t}get#i(){let e=this.#t.get(this.#r);return r.r(e,`RelayerDispatcher: relayer`),e}generateKeypair(){return this.#i.generateKeypair()}createEIP712(e,t,n,r){return this.#i.createEIP712(e,t,n,r)}encrypt(e){return this.#i.encrypt(e)}userDecrypt(e){return this.#i.userDecrypt(e)}publicDecrypt(e){return this.#i.publicDecrypt(e)}createDelegatedUserDecryptEIP712(e,t,n,r,i){return this.#i.createDelegatedUserDecryptEIP712(e,t,n,r,i)}delegatedUserDecrypt(e){return this.#i.delegatedUserDecrypt(e)}requestZKProofVerification(e){return this.#i.requestZKProofVerification(e)}getPublicKey(){return this.#i.getPublicKey()}getPublicParams(e){return this.#i.getPublicParams(e)}getAclAddress(){return this.#i.getAclAddress()}terminate(){let e=[];for(let t of new Set(this.#t.values()))try{t.terminate()}catch(t){e.push(r.s(t))}for(let t of new Set(this.#n))try{t.terminate()}catch(t){e.push(r.s(t))}if(e.length>0)throw AggregateError(e,`Failed to terminate relayer resources`)}[Symbol.dispose](){this.terminate()}};const K={[i.a.id]:i.a.registryAddress,[i.o.id]:i.o.registryAddress,[i.i.id]:i.i.registryAddress},q=o.z.record(o.z.string().check(o.z.regex(/^\d+$/,`expected numeric chain id key`)),p),J=g,Y=300*1e3;var X=class{provider;#e;#t;#n=new Map;constructor(e){this.provider=e.provider,this.#e=Object.assign({},K,n.t(o.z.optional(q),e.registryAddresses)),this.#t=n.t(J,e.registryTTL??86400)*1e3}getAddress(e){return this.#e[e]}#r(e){let t=this.#n.get(e);if(t){if(Date.now()>=t.expiresAt){this.#n.delete(e);return}return t.data}}#i(e,t,n=this.#t){return this.#n.set(e,{data:t,expiresAt:Date.now()+n}),t}refresh(){this.#n.clear()}get ttlMs(){return this.#t}async getRegistryAddress(){let t=await this.provider.getChainId(),n=this.#e[t];if(!n)throw new e.t(`No wrappers registry address configured for chain ${t}.\nPass a registryAddresses entry for this chain.`);return(0,a.getAddress)(n)}async listPairs(n={}){let r=n.page??1,i=n.pageSize??100,a=n.metadata??!1;if(r<1)throw new e.t(`page must be >= 1, got ${r}`);if(i<1)throw new e.t(`pageSize must be >= 1, got ${i}`);let o=await this.getRegistryAddress(),s=`total:${o}`,c=this.#r(s);if(c===void 0){let e=await this.provider.readContract(t.a(o));c=this.#i(s,Number(e))}let l=BigInt((r-1)*i),u=l+BigInt(i)>BigInt(c)?BigInt(c):l+BigInt(i);if(l>=BigInt(c))return{items:[],total:c,page:r,pageSize:i};let d=`slice:${o}:${l}:${u}`,f=this.#r(d);if(f===void 0){let e=await this.provider.readContract(t.o(o,l,u));f=this.#i(d,[...e])}if(!a)return{items:f,total:c,page:r,pageSize:i};let p=`metadata:${o}:${l}:${u}`,m=this.#r(p);if(m===void 0){let e=await Promise.allSettled(f.map(e=>this.#a(e))),t=e.some(e=>e.status===`rejected`),n=e.map((e,t)=>e.status===`fulfilled`?e.value:Object.assign({},f[t],{metadataFailed:!0,underlying:{name:`Unknown`,symbol:`???`,decimals:0,totalSupply:0n},confidential:{name:`Unknown`,symbol:`???`,decimals:0}}));m=this.#i(p,n,t?Y:void 0)}return{items:m,total:c,page:r,pageSize:i}}async#a(e){let[n,r,i,a,o,s,c]=await Promise.all([this.provider.readContract(t.b(e.tokenAddress)),this.provider.readContract(t.x(e.tokenAddress)),this.provider.readContract(t.v(e.tokenAddress)),this.provider.readContract(t.y(e.tokenAddress)),this.provider.readContract(t.b(e.confidentialTokenAddress)),this.provider.readContract(t.x(e.confidentialTokenAddress)),this.provider.readContract(t.v(e.confidentialTokenAddress))]);return{...e,underlying:{name:n,symbol:r,decimals:i,totalSupply:a},confidential:{name:o,symbol:s,decimals:c}}}async getConfidentialToken(e){let n=await this.getRegistryAddress(),r=(0,a.getAddress)(e),i=`ct:${n}:${r}`,o=this.#r(i);if(o!==void 0)return o;let[s,c]=await this.provider.readContract(t.t(n,r));return c===a.zeroAddress?this.#i(i,null,Y):this.#i(i,{confidentialTokenAddress:c,isValid:s})}async getUnderlyingToken(e){let n=await this.getRegistryAddress(),r=(0,a.getAddress)(e),i=`ut:${n}:${r}`,o=this.#r(i);if(o!==void 0)return o;let[s,c]=await this.provider.readContract(t.n(n,r));return c===a.zeroAddress?this.#i(i,null,Y):this.#i(i,{tokenAddress:c,isValid:s})}async getTokenPairs(){let e=await this.getRegistryAddress();return this.provider.readContract(t.i(e))}async getTokenPairsLength(){let e=await this.getRegistryAddress();return this.provider.readContract(t.a(e))}async getTokenPairsSlice(e,n){let r=await this.getRegistryAddress();return this.provider.readContract(t.o(r,e,n))}async getTokenPair(e){let n=await this.getRegistryAddress();return this.provider.readContract(t.r(n,e))}async getConfidentialTokenAddress(e){let n=await this.getRegistryAddress();return this.provider.readContract(t.t(n,(0,a.getAddress)(e)))}async getTokenAddress(e){let n=await this.getRegistryAddress();return this.provider.readContract(t.n(n,(0,a.getAddress)(e)))}async isConfidentialTokenValid(e){let n=await this.getRegistryAddress();return this.provider.readContract(t.s(n,(0,a.getAddress)(e)))}};function Z(e,t,r){let{storage:i,permitStorage:a}=U(r.storage,r.permitStorage),o=new G(r.chains,r.relayers);return{chains:r.chains,relayer:o,provider:t,signer:e,storage:i,permitStorage:a,keypairTTL:n.t(T,r.keypairTTL??2592e3),permitTTL:n.t(E,r.permitTTL??30),registryTTL:n.t(J,r.registryTTL??86400),onEvent:r.onEvent}}function Q(e,t){return e?.address===t?.address&&e?.chainId===t?.chainId}var $=class{#e=new Set;#t;#n;constructor(e){this.#t=e,this.#n=e!==void 0}getSnapshot(){return this.#t}isReady(){return this.#n}setSnapshot(e){this.#n=!0;let t=this.#t;Q(t,e)||(this.#t=e,this.#r({previous:t,next:e}))}subscribe(e){this.#e.add(e);let t=this.#t;return t&&e({previous:void 0,next:t}),()=>{this.#e.delete(e)}}#r(e){for(let t of this.#e)t(e)}};function ee(e){return new $(e)}var te=class{walletAccount;#e=!1;constructor(e){this.walletAccount=new $(e)}requireWalletAccount(e){let n=this.walletAccount.getSnapshot();if(!n)throw new t.z(e);return n}dispose(){this.#e||(this.#e=!0,this.onDispose())}[Symbol.dispose](){this.dispose()}onDispose(){}};Object.defineProperty(exports,`a`,{enumerable:!0,get:function(){return K}}),Object.defineProperty(exports,`c`,{enumerable:!0,get:function(){return U}}),Object.defineProperty(exports,`d`,{enumerable:!0,get:function(){return z}}),Object.defineProperty(exports,`f`,{enumerable:!0,get:function(){return u}}),Object.defineProperty(exports,`i`,{enumerable:!0,get:function(){return Z}}),Object.defineProperty(exports,`l`,{enumerable:!0,get:function(){return B}}),Object.defineProperty(exports,`m`,{enumerable:!0,get:function(){return d}}),Object.defineProperty(exports,`n`,{enumerable:!0,get:function(){return $}}),Object.defineProperty(exports,`o`,{enumerable:!0,get:function(){return X}}),Object.defineProperty(exports,`p`,{enumerable:!0,get:function(){return p}}),Object.defineProperty(exports,`r`,{enumerable:!0,get:function(){return ee}}),Object.defineProperty(exports,`s`,{enumerable:!0,get:function(){return W}}),Object.defineProperty(exports,`t`,{enumerable:!0,get:function(){return te}}),Object.defineProperty(exports,`u`,{enumerable:!0,get:function(){return V}});
|
|
2
2
|
//# sourceMappingURL=base-signer.cjs.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require(`../wrappers-registry.cjs`),t=require(`../base-signer.cjs`),n=require(`../eip1193-subscribe.cjs`);let r=require(`viem`),i=require(`ethers`);var a=class{#e;constructor(e){`ethereum`in e?this.#e=new i.BrowserProvider(e.ethereum):this.#e=e.provider}async getChainId(){let e=await this.#e.getNetwork();return Number(e.chainId)}async readContract(e){return new i.ethers.Contract(e.address,e.abi,this.#e).getFunction(e.functionName)(...e.args)}async getBlockTimestamp(){let e=await this.#e.getBlock(`latest`);if(!e)throw Error(`Failed to fetch latest block`);if(e.timestamp===null)throw Error(`Latest block has no timestamp`);return BigInt(e.timestamp)}async waitForTransactionReceipt(e){let t=await this.#e.waitForTransaction(e);if(!t)throw Error(`Transaction receipt not found`);return{logs:t.logs.map(e=>({topics:e.topics.filter(e=>e!==null),data:e.data}))}}},o=class extends t.t{#e;#t;#n;#r;#i;constructor(t){super(),`ethereum`in t?(this.#e=new i.BrowserProvider(t.ethereum),this.#n=t.ethereum,this.#r=n.t({provider:t.ethereum,getInitialWalletAccount:()=>this.#l(),onWalletAccountChange:({next:e})=>{this.walletAccount.setSnapshot(e)}})):(this.#t=t.signer,this.#r=()=>{},e.
|
|
1
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require(`../wrappers-registry.cjs`),t=require(`../base-signer.cjs`),n=require(`../eip1193-subscribe.cjs`);let r=require(`viem`),i=require(`ethers`);var a=class{#e;constructor(e){`ethereum`in e?this.#e=new i.BrowserProvider(e.ethereum):this.#e=e.provider}async getChainId(){let e=await this.#e.getNetwork();return Number(e.chainId)}async readContract(e){return new i.ethers.Contract(e.address,e.abi,this.#e).getFunction(e.functionName)(...e.args)}async getBlockTimestamp(){let e=await this.#e.getBlock(`latest`);if(!e)throw Error(`Failed to fetch latest block`);if(e.timestamp===null)throw Error(`Latest block has no timestamp`);return BigInt(e.timestamp)}async waitForTransactionReceipt(e){let t=await this.#e.waitForTransaction(e);if(!t)throw Error(`Transaction receipt not found`);return{logs:t.logs.map(e=>({topics:e.topics.filter(e=>e!==null),data:e.data}))}}},o=class extends t.t{#e;#t;#n;#r;#i;constructor(t){super(),`ethereum`in t?(this.#e=new i.BrowserProvider(t.ethereum),this.#n=t.ethereum,this.#r=n.t({provider:t.ethereum,getInitialWalletAccount:()=>this.#l(),onWalletAccountChange:({next:e})=>{this.walletAccount.setSnapshot(e)}})):(this.#t=t.signer,this.#r=()=>{},e.F(`refresh wallet account`,async()=>{await this.refreshWalletAccount()}))}requireWalletAccount(t){let n=this.walletAccount.getSnapshot();if(!n&&!this.walletAccount.isReady())throw new e.R(t);if(!n)throw new e.z(t);return n}refreshWalletAccount(){return this.#n?this.#c():this.#t?this.#s(this.#t):Promise.resolve(void 0)}onDispose(){this.#r()}async#a(){if(this.#t)return this.#t;if(!this.#e)throw new e.I(`resolveSigner`);return this.#e.getSigner()}async#o(e){let t=e.provider;if(!t)return;let[n,i]=await Promise.all([e.getAddress(),t.getNetwork()]);return{address:(0,r.getAddress)(n),chainId:Number(i.chainId)}}async signTypedData(e){let t=await this.#a(),{domain:n,types:i,message:a}=e,{EIP712Domain:o,...s}=i,c=Object.fromEntries(Object.entries(s).map(([e,t])=>[e,[...t]])),l=await t.signTypedData(n,c,a);if(!(0,r.isHex)(l))throw TypeError(`Expected hex string, got: ${l}`);return l}async writeContract(e){let t=await this.#a(),n=new i.Contract(e.address,e.abi,t),a={};e.value!==void 0&&(a.value=e.value),e.gas!==void 0&&(a.gasLimit=e.gas);let o=await n.getFunction(e.functionName)(...e.args,a);if(!(0,r.isHex)(o.hash))throw TypeError(`Expected hex string, got: ${o.hash}`);return o.hash}async#s(e){return this.#i??=this.#o(e).then(e=>(this.walletAccount.setSnapshot(e),e)).finally(()=>{this.#i=void 0}),this.#i}async#c(){let e=await this.#l();return this.walletAccount.setSnapshot(e),e}async#l(){let e=this.#n;if(!e)return;let[t,n]=await Promise.all([e.request({method:`eth_accounts`}),e.request({method:`eth_chainId`})]);if(!Array.isArray(t)||typeof t[0]!=`string`)return;let i=Number(n);if(!(!Number.isSafeInteger(i)||i<=0))return{address:(0,r.getAddress)(t[0]),chainId:i}}};function s(e){if(`signer`in e&&e.signer){let n=new o({signer:e.signer});if(!e.signer.provider)throw Error(`createConfig requires a Signer with an attached provider for chain reads`);return t.i(n,new a({provider:e.signer.provider}),e)}return t.i(new o({ethereum:e.ethereum}),`provider`in e&&e.provider?new a({provider:e.provider}):new a({ethereum:e.ethereum}),e)}function c(e){return{to:e.address,data:(0,r.encodeFunctionData)({abi:e.abi,functionName:e.functionName,args:e.args}),...e.gas===void 0?{}:{gasLimit:e.gas},...e.value===void 0?{}:{value:e.value}}}async function l(e,t){let n=await e.call(c(t));if(!(0,r.isHex)(n))throw TypeError(`Expected hex string, got: ${n}`);return(0,r.decodeFunctionResult)({abi:t.abi,functionName:t.functionName,data:n})}async function u(e,t){let n=await e.sendTransaction(c(t));if(!(0,r.isHex)(n.hash))throw TypeError(`Expected hex string, got: ${n.hash}`);return n.hash}function d(t,n,r){return l(t,e.E(n,r))}function f(t,n){return l(t,e.w(n))}function p(t,n,r){return l(t,e.m(n,r))}function m(t,n,r,i,a){return u(t,e.O(n,r,i,a))}function h(t,n,r,i,a,o){return u(t,e.N(n,r,i,a,o))}function g(t,n,r,i,a){return u(t,e.P(n,r,i,a))}function _(t,n,r,i,a){return u(t,e.S(n,r,i,a))}function v(t,n,r,i){return u(t,e.M(n,r,i))}function y(t,n,r,i){return u(t,e.T(n,r,i))}function b(t,n){return l(t,e.i(n))}function x(t,n){return l(t,e.a(n))}function S(t,n,r,i){return l(t,e.o(n,r,i))}function C(t,n,r){return l(t,e.r(n,r))}function w(t,n,r){return l(t,e.t(n,r))}function T(t,n,r){return l(t,e.n(n,r))}function E(t,n,r){return l(t,e.s(n,r))}exports.EthersProvider=a,exports.EthersSigner=o,Object.defineProperty(exports,`ProviderRpcError`,{enumerable:!0,get:function(){return r.ProviderRpcError}}),exports.createConfig=s,exports.readConfidentialBalanceOfContract=d,exports.readConfidentialTokenAddressContract=w,exports.readIsConfidentialTokenValidContract=E,exports.readSupportsInterfaceContract=p,exports.readTokenAddressContract=T,exports.readTokenPairContract=C,exports.readTokenPairsContract=b,exports.readTokenPairsLengthContract=x,exports.readTokenPairsSliceContract=S,exports.readUnderlyingTokenContract=f,exports.writeConfidentialTransferContract=m,exports.writeFinalizeUnwrapContract=_,exports.writeSetOperatorContract=v,exports.writeUnwrapContract=h,exports.writeUnwrapFromBalanceContract=g,exports.writeWrapContract=y;
|
|
2
2
|
//# sourceMappingURL=index.cjs.map
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require(`./relayer.cjs`),t=require(`./wrappers-registry.cjs`),n=require(`./encryption.cjs`),r=require(`./token.cjs`),i=require(`./relayer-cleartext.cjs`),a=require(`./base-signer.cjs`),o=require(`./validation.cjs`),s=require(`./assertions.cjs`),c=require(`./chains.cjs`);let l=require(`viem`),u=require(`zod/mini`);var d=class extends e.r{constructor(t,n){super(e.i.KeypairExpired,t,n),this.name=`KeypairExpiredError`}},f=class extends e.r{constructor(t,n){super(e.i.InvalidKeypair,t,n),this.name=`InvalidKeypairError`}},p=class extends e.r{constructor(t,n){super(e.i.NoCiphertext,t,n),this.name=`NoCiphertextError`}},m=class extends e.r{constructor(t,n){super(e.i.DelegationSelfNotAllowed,t,n),this.name=`DelegationSelfNotAllowedError`}},h=class extends e.r{constructor(t,n){super(e.i.DelegationCooldown,t,n),this.name=`DelegationCooldownError`}},g=class extends e.r{constructor(t,n){super(e.i.DelegationNotFound,t,n),this.name=`DelegationNotFoundError`}},_=class extends e.r{constructor(t,n){super(e.i.DelegationExpired,t,n),this.name=`DelegationExpiredError`}},v=class extends e.r{constructor(t,n){super(e.i.DelegationExpiryUnchanged,t,n),this.name=`DelegationExpiryUnchangedError`}},y=class extends e.r{constructor(t,n){super(e.i.DelegationDelegateEqualsContract,t,n),this.name=`DelegationDelegateEqualsContractError`}},b=class extends e.r{constructor(t,n){super(e.i.DelegationContractIsSelf,t,n),this.name=`DelegationContractIsSelfError`}},x=class extends e.r{constructor(t,n){super(e.i.AclPaused,t,n),this.name=`AclPausedError`}},S=class extends e.r{constructor(t,n){super(e.i.DelegationExpirationTooSoon,t,n),this.name=`DelegationExpirationTooSoonError`}},C=class extends e.r{constructor(t,n){super(e.i.DelegationNotPropagated,t,n),this.name=`DelegationNotPropagatedError`}};function w(r,i,a=!1){if(r instanceof n.t||r instanceof p||r instanceof e.n||r instanceof C||r instanceof t.W||r instanceof t.U)return r;let o=typeof r==`object`&&r&&`statusCode`in r&&typeof r.statusCode==`number`?r.statusCode:void 0;return o===400?new p(r instanceof Error?r.message:`No ciphertext for this account`,{cause:r}):a&&o===500?new C(`Delegated decryption failed with a server error. This is most commonly caused by the delegation not having propagated to the gateway yet — after granting delegation, allow 1–2 minutes for cross-chain synchronization before retrying. If the error persists, the gateway or relayer may be experiencing an unrelated issue.`,{cause:r}):o===void 0?new n.t(i,{cause:r}):new e.n(r instanceof Error?r.message:i,o,{cause:r})}function ee(){return{type:`cleartext`,createRelayer:t=>{if(!t.executorAddress)throw new e.t(`Cleartext relayer requires an executorAddress. Either use a chain preset that includes it (e.g. hardhat, hoodi) or set it on the chain definition.`);return new i.t(t)}}}function T(e){return e.startsWith(`0x`)?e:`0x${e}`}const te=[{type:`function`,name:`transferAndCall`,stateMutability:`nonpayable`,inputs:[{name:`to`,type:`address`},{name:`value`,type:`uint256`},{name:`data`,type:`bytes`}],outputs:[{name:``,type:`bool`}]}];function E(e,t,n,r=`0x`){return{address:e,abi:te,functionName:`transferAndCall`,args:[t,n,r]}}function ne(e){return a.i(e.signer,e.provider,e)}var D=class{#e;#t;#n;#r;constructor(e){this.#e=e.signer,this.#t=e.provider,this.#n=e.relayer,this.#r=e.decryptionService}#i(e){return t.H(this.#r,e)}async userDecrypt(e){let t=this.#i(`userDecrypt`),n=await r.a(`userDecrypt`,this.#e,this.#t);return t.userDecrypt(e,n.address)}async delegatedDecrypt(e,t,n=t){let i=this.#i(`delegatedDecrypt`),a=await r.a(`delegatedDecrypt`,this.#e,this.#t);return i.delegatedUserDecrypt(e,t,a.address,n)}async publicDecrypt(e){if(e.length===0)return{clearValues:{},decryptionProof:`0x`,abiEncodedClearValues:`0x`};try{return await this.#n.publicDecrypt(e)}catch(e){throw w(e,`Public decryption failed`)}}async delegatedBatchDecrypt({encryptedInputs:e,delegatorAddress:t,accountAddress:n=t,maxConcurrency:i}){let a=this.#i(`delegatedBatchDecrypt`),o=await r.a(`delegatedBatchDecrypt`,this.#e,this.#t);return a.delegatedBatchDecryptHandlesAs({encryptedInputs:e,delegatorAddress:t,delegateAddress:o.address,accountAddress:n,maxConcurrency:i})}},O=class{#e;#t;#n;constructor(e){this.#e=e.signer,this.#t=e.provider,this.#n=e.delegationService}#r(e){return t.H(this.#e,e)}async delegateDecryption({contractAddress:e,delegateAddress:t,expirationDate:n}){let i=this.#r(`delegateDecryption`),a=await r.a(`delegateDecryption`,this.#e,this.#t);return this.#n.delegateDecryption(i,{contractAddress:e,delegateAddress:t,delegatorAddress:a.address,expirationDate:n})}async revokeDelegation({contractAddress:e,delegateAddress:t}){let n=this.#r(`revokeDelegation`),i=await r.a(`revokeDelegation`,this.#e,this.#t);return this.#n.revokeDelegation(n,{contractAddress:e,delegateAddress:t,delegatorAddress:i.address})}async isActive(e){return this.#n.isDelegated(e)}async getExpiry(e){return this.#n.getDelegationExpiry(e)}},k=class{#e;#t;#n;#r;constructor(e){this.#e=e.signer,this.#t=e.provider,this.#n=e.cachingService,this.#r=e.credentialService}#i(e){return t.H(this.#r,e)}async grantPermit(e){if(e.length===0)return;let t=this.#i(`grantPermit`);await r.o(`grantPermit`,this.#e,this.#t),await t.grantPermit(e)}async grantDelegationPermit(e,t){if(t.length===0)return;let n=this.#i(`grantDelegationPermit`);await r.o(`grantDelegationPermit`,this.#e,this.#t),await n.grantPermit(t,e)}async hasPermit(e){return this.#r?this.#r.hasPermit(e):!1}async hasDelegationPermit(e,t){return this.#r?this.#r.hasPermit(t,e):!1}async revokePermits(e){let n=this.#i(`revokePermits`),i=(0,l.getAddress)((await r.a(`revokePermits`,this.#e,this.#t)).address);try{await n.revokePermits(e)}finally{await t.L(`clear decrypt cache`,()=>this.#n.clearForRequester(i))}}async clear(){let e=this.#i(`clear`),n=(0,l.getAddress)((await r.a(`clear`,this.#e,this.#t)).address);try{await e.clearCredentials()}finally{await t.L(`clear decrypt cache`,()=>this.#n.clearForRequester(n))}}};const re=u.z.union([u.z.bigint(),u.z.boolean(),a.p]),ie=u.z.array(u.z.string());var ae=class{#e;#t=`zama:decrypt`;#n=`${this.#t}:keys`;#r=Promise.resolve();constructor(e){this.#e=e}async get(e,t,n){try{let r=this.#s(e,t,n),i=await this.#e.get(r);if(i===null)return null;let a=re.safeParse(i);return a.success?a.data:(await this.delete(e,t,n),null)}catch(e){return console.warn(`[zama-sdk] CachingService.get failed:`,e),null}}async set(e,t,n,r){try{let i=this.#s(e,t,n);await this.#e.set(i,r),this.#r=this.#r.then(()=>this.#l(i).catch(e=>{console.warn(`[zama-sdk] CachingService index write failed:`,e)})),await this.#r}catch(e){console.warn(`[zama-sdk] CachingService.set failed:`,e)}}async delete(e,t,n){let r=this.#s(e,t,n);this.#r=this.#r.then(()=>this.#i(r).catch(e=>{console.warn(`[zama-sdk] CachingService.delete failed:`,e)})),await this.#r}async clearForRequester(e){this.#r=this.#r.then(()=>this.#a(e).catch(e=>{console.warn(`[zama-sdk] CachingService.clearForRequester failed:`,e)})),await this.#r}async clearAll(){this.#r=this.#r.then(()=>this.#o().catch(e=>{console.warn(`[zama-sdk] CachingService.clearAll failed:`,e)})),await this.#r}async#i(e){await this.#e.delete(e).catch(()=>{});let t=await this.#c(),n=t.filter(t=>t!==e);n.length!==t.length&&await this.#e.set(this.#n,n)}async#a(e){let t=(0,l.getAddress)(e),n=`${this.#t}:${t}:`,r=await this.#c(),i=[],a=[];for(let e of r)e.startsWith(n)?i.push(e):a.push(e);await Promise.all(i.map(e=>this.#e.delete(e).catch(()=>{}))),await this.#e.set(this.#n,a)}async#o(){let e=await this.#c();await Promise.all(e.map(e=>this.#e.delete(e).catch(()=>{}))),await this.#e.delete(this.#n)}#s(e,t,n){return`${this.#t}:${(0,l.getAddress)(e)}:${(0,l.getAddress)(t)}:${n.toLowerCase()}`}async#c(){let e=await this.#e.get(this.#n);if(e===null)return[];let t=ie.safeParse(e);return t.success?t.data:(await this.#e.delete(this.#n).catch(()=>{}),[])}async#l(e){let t=await this.#c();t.includes(e)||(t.push(e),await this.#e.set(this.#n,t))}};function oe(e,t){let r=ce(e,t);if(!r)throw new n.t(`No permit covers contract ${t} after allow()`);return A(e,r)}function se(e,t){let r=ce(e,t);if(!r)throw new n.t(`No delegated permit covers contract ${t} after allow()`);return{...A(e,r),delegatorAddress:r.delegatorAddress}}function A(e,t){return{signedContractAddresses:t.signedContractAddresses,privateKey:e.keypair.privateKey,publicKey:e.keypair.publicKey,signature:t.signature,startTimestamp:t.startTimestamp,durationDays:t.durationDays}}function ce(e,t){let n=a.f(t);return e.permits.find(e=>e.signedContractAddresses.includes(n))}var le=class{#e;#t;#n;#r;#i;constructor({cache:e,credentialService:t,delegationService:n,relayer:r,emitEvent:i}){this.#e=e,this.#t=t,this.#n=n,this.#r=r,this.#i=i}async userDecrypt(e,t){let n=(0,l.getAddress)(t);return this.#a(e,{requesterAddress:n,resolveCredentials:e=>this.#t.grantPermit(e),decryptContract:async({credentials:e,contractAddress:t,encryptedValues:r})=>this.#r.userDecrypt({encryptedValues:r,contractAddress:t,...oe(e,t),signerAddress:n}),errorMessage:`Failed to decrypt handles`})}async delegatedUserDecrypt(e,t,n,r){let i=(0,l.getAddress)(t),a=(0,l.getAddress)(n);return this.#a(e,{requesterAddress:(0,l.getAddress)(r),resolveCredentials:e=>this.#t.grantPermit(e,i),validate:e=>this.#l(e,{delegatorAddress:i,delegateAddress:a}),decryptContract:async({credentials:e,contractAddress:t,encryptedValues:n})=>this.#r.delegatedUserDecrypt({encryptedValues:n,contractAddress:t,...se(e,t),delegateAddress:a}),errorMessage:`Failed to decrypt delegated handles`,delegated:!0})}async delegatedBatchDecryptHandlesAs({encryptedInputs:e,delegatorAddress:t,delegateAddress:n,accountAddress:i,maxConcurrency:a=5}){let o=e.map(e=>({encryptedValue:e.encryptedValue,contractAddress:(0,l.getAddress)(e.contractAddress)}));if(o.length===0)return{items:o};let s=(0,l.getAddress)(i);try{let e=await this.delegatedUserDecrypt(o.map(({encryptedValue:e,contractAddress:t})=>({encryptedValue:e,contractAddress:t})),t,n,s);for(let t of o)this.#o(t,e);return{items:o}}catch(e){if(r.m(e))throw e;if(o.length===1){let[t=this.#c()]=o;return t.error=this.#s(e,`Failed to decrypt delegated handles`,!0),{items:o}}}return await r.r(o.map(e=>async()=>{try{let r=await this.delegatedUserDecrypt([{encryptedValue:e.encryptedValue,contractAddress:e.contractAddress}],t,n,s);this.#o(e,r)}catch(t){if(r.m(t))throw t;e.error=this.#s(t,`Failed to decrypt delegated handles`,!0)}}),a),{items:o}}async#a(e,t){if(e.length===0)return{};let n=e.map(e=>({encryptedValue:e.encryptedValue,contractAddress:(0,l.getAddress)(e.contractAddress)})),i={},a=[];for(let e of n)r.p(e.encryptedValue)?i[e.encryptedValue]=0n:a.push(e);if(a.length===0)return i;let o=Array.from(new Set(n.map(e=>e.contractAddress))),c=Array.from(new Set(a.map(e=>e.contractAddress)));t.validate&&await t.validate(c);let u=[];for(let e of a){let n=await this.#e.get(t.requesterAddress,e.contractAddress,e.encryptedValue);n===null?u.push(e):i[e.encryptedValue]=n}if(u.length===0)return i;let d=await t.resolveCredentials(o),f=new Map;for(let e of u){let t=f.get(e.contractAddress);t?t.push(e.encryptedValue):f.set(e.contractAddress,[e.encryptedValue])}let p=Date.now(),m=u.map(e=>e.encryptedValue);try{this.#i({type:r.i.DecryptStart,encryptedValues:m}),await r.r([...f.entries()].map(([e,n])=>async()=>{let r=await t.decryptContract({credentials:d,contractAddress:e,encryptedValues:n});for(let[n,a]of Object.entries(r))i[n]=a,await this.#e.set(t.requesterAddress,e,n,a)}),5);let e={};for(let t of m){let n=i[t];n!==void 0&&(e[t]=n)}return this.#i({type:r.i.DecryptEnd,durationMs:Date.now()-p,encryptedValues:m,result:e}),i}catch(e){throw this.#i({type:r.i.DecryptError,error:s.s(e),durationMs:Date.now()-p,encryptedValues:m}),w(e,t.errorMessage,t.delegated)}}#o(e,t){let r=t[e.encryptedValue];if(r===void 0){e.error=new n.t(`Batch delegated decryption returned no value for encrypted value ${e.encryptedValue} on contract ${e.contractAddress}`);return}e.value=r}#s(t,n,r=!1){return t instanceof e.r?t:w(t,n,r)}#c(){throw new n.t(`Batch delegated decryption invariant failed: missing item`)}async#l(e,{delegatorAddress:t,delegateAddress:n}){let r=await this.#n.findInactiveDelegations(e,t,n);if(r.size!==0)for(let e of r.values())throw e}};function ue(e){if(!(e instanceof Error))return null;let t=e.cause;if(typeof t!=`object`||!t||!(`data`in t))return null;let{data:n}=t;return typeof n!=`object`||!n||!(`errorName`in n)?null:typeof n.errorName==`string`?n.errorName:null}const j={AlreadyDelegatedOrRevokedInSameBlock:e=>new h(`Only one delegate/revoke per (delegator, delegate, contract) per block. Wait for the next block before retrying.`,{cause:e}),SenderCannotBeContractAddress:e=>new b(`The contract address cannot be the caller address.`,{cause:e}),EnforcedPause:e=>new x(`The ACL contract is paused. Delegation operations are temporarily disabled.`,{cause:e}),SenderCannotBeDelegate:e=>new m(`Cannot delegate to yourself (delegate === msg.sender).`,{cause:e}),DelegateCannotBeContractAddress:e=>new y(`Delegate address cannot be the same as the contract address.`,{cause:e}),ExpirationDateBeforeOneHour:e=>new S(`Expiration date must be at least 1 hour in the future.`,{cause:e}),ExpirationDateAlreadySetToSameValue:e=>new v(`The new expiration date is the same as the current one.`,{cause:e}),NotDelegatedYet:e=>new g(`Cannot revoke: no active delegation exists.`,{cause:e})};function de(e){return e in j}function fe(e,t){let n=ue(e);if(n&&de(n))return j[n](t);let r=e instanceof Error?e.message:String(e);for(let[e,n]of Object.entries(j))if(r.includes(e))return n(t);return null}var pe=class{#e;#t;#n;constructor({provider:e,relayer:t,emitEvent:n=()=>{}}){this.#e=e,this.#t=t,this.#n=n}async delegateDecryption(e,{contractAddress:t,delegateAddress:n,delegatorAddress:i,expirationDate:a}){if(a&&a.getTime()<Date.now()+36e5)throw new S(`Expiration date must be at least 1 hour in the future`);let o=(0,l.getAddress)(t),s=(0,l.getAddress)(n),c=(0,l.getAddress)(i);if(s===c)throw new m(`Cannot delegate to yourself (delegate === msg.sender).`);if(s===o)throw new y(`Delegate address cannot be the same as the contract address (${o}).`);let u=await this.#t.getAclAddress(),d=a?BigInt(Math.floor(a.getTime()/1e3)):r.s,f;try{f=await this.getDelegationExpiry({contractAddress:o,delegatorAddress:c,delegateAddress:s})}catch(e){console.warn(`[zama-sdk] delegateDecryption: pre-flight expiry check failed:`,e),f=-1n}if(f===d)throw new v(`The new expiration date (${d}) is the same as the current one. No on-chain change needed.`);return this.#r({operation:`delegateDecryption`,signer:e,contractAddress:t,config:r.c(u,s,o,d)})}async revokeDelegation(e,{contractAddress:t,delegateAddress:n,delegatorAddress:i}){let a=(0,l.getAddress)(t),o=(0,l.getAddress)(n),s=(0,l.getAddress)(i),c=await this.#t.getAclAddress(),u;try{u=await this.getDelegationExpiry({contractAddress:a,delegatorAddress:s,delegateAddress:o})}catch(e){console.warn(`[zama-sdk] revokeDelegation: pre-flight expiry check failed:`,e),u=1n}if(u===0n)throw new g(`No active delegation found for delegate ${o} on contract ${a}.`);return this.#r({operation:`revokeDelegation`,signer:e,contractAddress:t,config:r.d(c,o,a)})}async isDelegated(e){let t=await this.getDelegationExpiry(e);return t===0n?!1:t===r.s?!0:t>await this.#e.getBlockTimestamp()}async getDelegationExpiry({contractAddress:e,delegatorAddress:t,delegateAddress:n}){let i=await this.#t.getAclAddress();return this.#e.readContract(r.l(i,(0,l.getAddress)(t),(0,l.getAddress)(n),(0,l.getAddress)(e)))}async#r({operation:e,signer:t,contractAddress:n,config:i}){try{return await r.n({operation:e,signer:t,provider:this.#e,config:i,emit:e=>this.#n(e,n)})}catch(e){throw this.#i(e),e}}#i(e){if(!(e instanceof r.b))return;let t=fe(e.cause??e,e);if(t)throw t}async findInactiveDelegations(e,t,n){let r=new Map;return await Promise.all(e.map(async e=>{try{await this.assertDelegationActive(e,t,n)}catch(t){if(t instanceof g||t instanceof _){let n=(0,l.getAddress)(e);r.set(n,t);return}throw t}})),r}async assertDelegationActive(e,t,n){let i=(0,l.getAddress)(e),a=(0,l.getAddress)(t),o=(0,l.getAddress)(n),s=await this.getDelegationExpiry({contractAddress:i,delegatorAddress:a,delegateAddress:o});if(s===0n)throw new g(`No active delegation from ${a} to ${o} for ${i}`);if(s!==r.s&&s<=await this.#e.getBlockTimestamp())throw new _(`Delegation from ${a} to ${o} for ${i} has expired`)}},me=class{#e;#t;constructor({relayer:e,emitEvent:t}){this.#e=e,this.#t=t}async encrypt(t){let i=Date.now();try{this.#t({type:r.i.EncryptStart},t.contractAddress);let e=await this.#e.encrypt(t);return this.#t({type:r.i.EncryptEnd,durationMs:Date.now()-i},t.contractAddress),e}catch(a){throw this.#t({type:r.i.EncryptError,error:s.s(a),durationMs:Date.now()-i},t.contractAddress),a instanceof e.r?a:new n.n(`Encryption failed`,{cause:a})}}},he=class{#e;#t;#n;#r;#i=new Set;#a;constructor(e){this.#e=e.signer,this.#t=e.relayer,this.#n=e.cachingService,this.#r=e.credentialService,this.#e&&(this.#a=this.#e.walletAccount.subscribe(e=>{this.#o(e).catch(e=>{console.warn(`[zama-sdk] wallet account handler failed:`,e)})}))}onWalletAccountChange(e){return this.#i.add(e),()=>{this.#i.delete(e)}}dispose(){this.#a?.(),this.#a=void 0,this.#i.clear()}async#o(e){let n=e.previous,r=e.next,i=this.#r;i&&await t.L(`credential wallet account change`,()=>i.handleWalletAccountChange(n,r)),n&&await t.L(`clear decrypt cache`,()=>this.#n.clearForRequester(n.address));let a=r?.chainId;a!==void 0&&t.L(`switch relayer chain`,()=>this.#t.switchChain(a)),await Promise.all(Array.from(this.#i,n=>t.L(`wallet account listener`,()=>n(e))))}};function M(e){return(0,l.keccak256)((0,l.toBytes)(e))}const N={ConfidentialTransfer:M(`ConfidentialTransfer(address,address,bytes32)`),Wrapped:M(`Wrapped(address,uint256)`),UnwrapRequested:M(`UnwrapRequested(address,bytes32,bytes32)`),UnwrapRequestedLegacy:M(`UnwrapRequested(address,bytes32)`),UnwrapFinalized:M(`UnwrapFinalized(address,bytes32,bytes32,uint64)`),UnwrapFinalizedLegacy:M(`UnwrapFinalized(address,bytes32,uint64)`),UnwrappedFinalized:M(`UnwrapFinalized(address,bytes32,bytes32,uint64)`),UnwrappedStarted:M(`UnwrappedStarted(bool,uint256,uint256,address,address,bytes32,bytes32)`)};function P(e){return(0,l.getAddress)(T(e.slice(-40)))}function F(e){return BigInt(e)}function I(e){return e}function L(e,t){let n=2+t*64,r=e.slice(n,n+64);return r.length===64?r:r.padEnd(64,`0`)}function R(e,t){return(0,l.getAddress)(T(L(e,t).slice(-40)))}function z(e,t){return BigInt(`0x`+L(e,t))}function ge(e,t){return BigInt(`0x`+L(e,t))!==0n}function B(e,t){return T(L(e,t))}function V(e){return e.topics[0]!==N.ConfidentialTransfer||e.topics.length<4?null:{eventName:`ConfidentialTransfer`,from:P(e.topics[1]),to:P(e.topics[2]),encryptedAmountHandle:I(e.topics[3])}}function H(e){return e.topics[0]!==N.Wrapped||e.topics.length<2?null:{eventName:`Wrapped`,to:P(e.topics[1]),amountIn:z(e.data,0)}}function U(e){return e.topics[0]===N.UnwrapRequested?e.topics.length<3?null:{eventName:`UnwrapRequested`,receiver:P(e.topics[1]),unwrapRequestId:I(e.topics[2]),encryptedAmount:B(e.data,0)}:e.topics[0]===N.UnwrapRequestedLegacy?e.topics.length<2?null:{eventName:`UnwrapRequested`,receiver:P(e.topics[1]),encryptedAmount:B(e.data,0)}:null}function W(e){return e.topics[0]===N.UnwrapFinalized?e.topics.length<3?null:{eventName:`UnwrapFinalized`,receiver:P(e.topics[1]),unwrapRequestId:I(e.topics[2]),encryptedAmount:B(e.data,0),cleartextAmount:z(e.data,1)}:e.topics[0]===N.UnwrapFinalizedLegacy?e.topics.length<2?null:{eventName:`UnwrapFinalized`,receiver:P(e.topics[1]),encryptedAmount:B(e.data,0),cleartextAmount:z(e.data,1)}:null}function _e(e){let t=W(e);return t?{...t,eventName:`UnwrappedFinalized`}:null}function ve(e){if(e.topics[0]!==N.UnwrapFinalizedLegacy)return null;let t=W(e);return t?{...t,eventName:`UnwrappedFinalized`}:null}function G(e){return e.topics[0]!==N.UnwrappedStarted||e.topics.length<4?null:{eventName:`UnwrappedStarted`,requestId:F(e.topics[1]),txId:F(e.topics[2]),to:P(e.topics[3]),returnVal:ge(e.data,0),refund:R(e.data,1),requestedAmount:B(e.data,2),burnAmount:B(e.data,3)}}function K(e){return V(e)??H(e)??U(e)??ve(e)??W(e)??G(e)}function ye(e){let t=[];for(let n of e){let e=K(n);e&&t.push(e)}return t}function q(e){for(let t of e){let e=U(t);if(e)return e}return null}function be(e){for(let t of e){let e=H(t);if(e)return e}return null}const xe=[N.ConfidentialTransfer,N.Wrapped,N.UnwrapRequested,N.UnwrapRequestedLegacy,N.UnwrapFinalized,N.UnwrapFinalizedLegacy,N.UnwrappedStarted],J={DelegatedForUserDecryption:M(`DelegatedForUserDecryption(address,address,address,uint64,uint64,uint64)`),RevokedDelegationForUserDecryption:M(`RevokedDelegationForUserDecryption(address,address,address,uint64,uint64)`)};function Y(e){return e.topics[0]!==J.DelegatedForUserDecryption||e.topics.length<3?null:{eventName:`DelegatedForUserDecryption`,delegator:P(e.topics[1]),delegate:P(e.topics[2]),contractAddress:R(e.data,0),delegationCounter:z(e.data,1),oldExpirationDate:z(e.data,2),newExpirationDate:z(e.data,3)}}function X(e){return e.topics[0]!==J.RevokedDelegationForUserDecryption||e.topics.length<3?null:{eventName:`RevokedDelegationForUserDecryption`,delegator:P(e.topics[1]),delegate:P(e.topics[2]),contractAddress:R(e.data,0),delegationCounter:z(e.data,1),oldExpirationDate:z(e.data,2)}}function Z(e){return Y(e)??X(e)}function Se(e){let t=[];for(let n of e){let e=Z(n);e&&t.push(e)}return t}function Ce(e){for(let t of e){let e=Y(t);if(e)return e}return null}function we(e){for(let t of e){let e=X(t);if(e)return e}return null}const Te=[J.DelegatedForUserDecryption,J.RevokedDelegationForUserDecryption];var Ee=class extends r.t{#e;#t=null;#n=null;#r(e){try{return s.r(this.sdk.signer,`WrappedToken.sdk.signer`),this.sdk.signer}catch(n){throw new t.R(e,{cause:n})}}async underlying(){return this.#o()}async isPayable(){if(this.#n!==null)return this.#n;try{let e=await this.#o();this.#n=await this.sdk.provider.readContract(t.m(e))}catch{this.#n=!1}return this.#n}async allowance(e){let n=await this.#o();return this.sdk.provider.readContract(t.g(n,(0,l.getAddress)(e),this.address))}async shield(n,i){let a=await r.a(`shield`,this.sdk.signer,this.sdk.provider),o=await this.isPayable(),c=await this.#o(),u=(0,l.getAddress)(a.address),d;try{d=await this.sdk.provider.readContract(t.v(c,u))}catch(t){throw t instanceof e.r?t:new r.g(`Could not read ERC-20 balance for shield validation (token: ${c})`,{cause:s.s(t)})}if(d<n)throw new r.v(`Insufficient ERC-20 balance: requested ${n}, available ${d} (token: ${c})`,{requested:n,available:d,token:c});return o?this.#i(n,c,u,i):this.#a(n,u,i)}async#i(e,t,n,r){this.#r(`shield`);let i=r?.to?(0,l.getAddress)(r.to):n,a=i===n?`0x`:i;return this.submitTransaction({operation:`shield:transferAndCall`,config:E(t,this.address,e,a),onSubmitted:r?.onShieldSubmitted})}async#a(e,n,r){this.#r(`shield`);let i=r?.approvalStrategy??`exact`;i!==`skip`&&await this.#c(e,i===`max`,r);let a=r?.to?(0,l.getAddress)(r.to):n;return this.submitTransaction({operation:`shield:approveAndWrap`,config:t.E(this.address,a,e),onSubmitted:r?.onShieldSubmitted})}async approveUnderlying(e){this.#r(`approveUnderlying`);let n=await r.a(`approveUnderlying`,this.sdk.signer,this.sdk.provider),i=await this.#o(),a=(0,l.getAddress)(n.address),o=e??2n**256n-1n;return o>0n&&await this.sdk.provider.readContract(t.g(i,a,this.address))>0n&&await this.submitTransaction({operation:`approveUnderlying:reset`,config:t._(i,this.address,0n)}),this.submitTransaction({operation:`approveUnderlying`,config:t._(i,this.address,o)})}async unshield(e,n){let{skipBalanceCheck:r=!1,onUnwrapSubmitted:i,onFinalizing:a,onFinalizeSubmitted:o}=n??{};r||await this.assertConfidentialBalance(e);let s={onFinalizing:a,onFinalizeSubmitted:o},c=crypto.randomUUID(),l=await this.unwrap(e);return t.L(`unshield: onUnwrapSubmitted`,()=>i?.(l.txHash)),this.#s(l.txHash,c,s)}async unshieldAll(e){let n=crypto.randomUUID(),r=await this.unwrapAll();return t.L(`unshieldAll: onUnwrapSubmitted`,()=>e?.onUnwrapSubmitted?.(r.txHash)),this.#s(r.txHash,n,e)}async resumeUnshield(e,t){return this.#s(e,crypto.randomUUID(),t)}async unwrap(e){this.#r(`unwrap`);let i=(0,l.getAddress)((await r.a(`unwrap`,this.sdk.signer,this.sdk.provider)).address),{handles:a,inputProof:o}=await this.sdk.encrypt({values:[{value:e,type:`euint64`}],contractAddress:this.address,userAddress:i}),[s]=a;if(!s)throw new n.n(`Encryption returned no handles`);return this.submitTransaction({operation:`unwrap`,config:t.F(this.address,i,i,s,o)})}async unwrapAll(){this.#r(`unwrapAll`);let e=(0,l.getAddress)((await r.a(`unwrapAll`,this.sdk.signer,this.sdk.provider)).address),i=await this.readConfidentialBalanceOf(e);if(r.p(i))throw new n.t(`Cannot unshield: balance is zero`);return this.submitTransaction({operation:`unwrapAll`,config:t.I(this.address,e,e,i)})}async finalizeUnwrap(e){this.#r(`finalizeUnwrap`),await r.o(`finalizeUnwrap`,this.sdk.signer,this.sdk.provider);let n=await this.sdk.decryption.publicDecrypt([e]),i=n.clearValues[e];return s.t(i,`finalizeUnwrap: clearValue`),this.submitTransaction({operation:`finalizeUnwrap`,config:t.C(this.address,e,i,n.decryptionProof)})}async#o(){return this.#e===void 0?(this.#t||=this.sdk.provider.readContract(t.T(this.address)).then(e=>(this.#e=e,this.#t=null,e)).catch(e=>{throw this.#t=null,e}),this.#t):this.#e}async#s(n,i,a){this.emit({type:r.i.UnshieldPhase1Submitted,txHash:n,operationId:i});let o;try{o=await this.sdk.provider.waitForTransactionReceipt(n)}catch(t){throw t instanceof e.r?t:new r.b(`Failed to get unshield receipt`,{cause:t})}let s=q(o.logs);if(!s)throw new r.b(`No UnwrapRequested event found in unshield receipt`);this.emit({type:r.i.UnshieldPhase2Started,operationId:i}),t.L(`unshield: onFinalizing`,()=>a?.onFinalizing?.());let c=await this.finalizeUnwrap(s.unwrapRequestId??s.encryptedAmount);return this.emit({type:r.i.UnshieldPhase2Submitted,txHash:c.txHash,operationId:i}),t.L(`unshield: onFinalizeSubmitted`,()=>a?.onFinalizeSubmitted?.(c.txHash)),c}async#c(e,n,i){this.#r(`approveUnderlying`);let a=await this.#o(),o=(0,l.getAddress)((await r.a(`approveUnderlying`,this.sdk.signer,this.sdk.provider)).address),s=await this.sdk.provider.readContract(t.g(a,o,this.address));if(s>=e)return;s>0n&&await this.submitTransaction({operation:`approveUnderlying:reset`,config:t._(a,this.address,0n)});let c=n?2n**256n-1n:e;await this.submitTransaction({operation:`approveUnderlying`,config:t._(a,this.address,c),onSubmitted:i?.onApprovalSubmitted})}},De=class{relayer;provider;signer;storage;registry;permits;delegations;decryption;#e;#t;#n;#r;#i;#a;#o;#s;constructor(e){this.relayer=e.relayer,this.provider=e.provider,this.signer=e.signer,this.storage=e.storage,this.#t=e.onEvent??function(){},this.#n=new ae(e.storage),this.#s=new pe({provider:this.provider,relayer:this.relayer,emitEvent:this.emitEvent.bind(this)});let t={};for(let n of e.chains)n.registryAddress&&(t[n.id]=n.registryAddress);this.registry=new a.o({provider:this.provider,registryAddresses:t,registryTTL:e.registryTTL}),this.#e=e.registryTTL,e.signer&&(this.#o=new a.d({relayer:this.relayer,signer:e.signer,keypairTTL:e.keypairTTL,permitTTL:e.permitTTL,storage:this.storage,permitStorage:e.permitStorage}),this.#a=new le({cache:this.#n,credentialService:this.#o,delegationService:this.#s,relayer:this.relayer,emitEvent:this.emitEvent.bind(this)})),this.#i=new me({relayer:this.relayer,emitEvent:this.emitEvent.bind(this)}),this.#r=new he({signer:e.signer,relayer:this.relayer,cachingService:this.#n,credentialService:this.#o}),this.permits=new k({signer:this.signer,provider:this.provider,cachingService:this.#n,credentialService:this.#o}),this.delegations=new O({signer:this.signer,provider:this.provider,delegationService:this.#s}),this.decryption=new D({signer:this.signer,provider:this.provider,relayer:this.relayer,decryptionService:this.#a})}onWalletAccountChange(e){return this.#r.onWalletAccountChange(e)}emitEvent(e,t){try{this.#t({...e,tokenAddress:t,timestamp:Date.now()})}catch(e){console.error(`[zama-sdk] onEvent listener threw:`,e)}}createWrappersRegistry(e){return new a.o({provider:this.provider,registryAddresses:e,registryTTL:this.#e})}async encrypt(e){return this.#i.encrypt(e)}createToken(e){return new r.t(this,e)}createWrappedToken(e){return new Ee(this,e)}dispose(){this.#r.dispose()}terminate(){this.dispose(),this.relayer.terminate(),this.signer?.dispose?.()}[Symbol.dispose](){this.terminate()}};function Q(e){return`zama:pending-unshield:${a.f(e)}`}const Oe=u.z.union([u.z.pipe(a.m,u.z.transform(e=>({unwrapTxHash:e}))),u.z.pipe(u.z.object({version:u.z.literal(1),unwrapTxHash:a.m,unwrapRequestId:u.z.optional(a.m)}),u.z.transform(({unwrapTxHash:e,unwrapRequestId:t})=>({unwrapTxHash:e,unwrapRequestId:t})))]);async function ke(e,t,n,r){if(r===void 0){await e.set(Q(t),n);return}await e.set(Q(t),{version:1,unwrapTxHash:n,unwrapRequestId:r})}async function Ae(e,t){return(await je(e,t))?.unwrapTxHash??null}async function je(e,t){let n=Q(t),r=await e.get(n);if(r==null)return null;let i=Oe.safeParse(r);return i.success?i.data:(await e.delete(n),null)}async function Me(e,t){await e.delete(Q(t))}var $=class{async get(e){return(await chrome.storage.session.get(e))[e]??null}async set(e,t){await chrome.storage.session.set({[e]:t})}async delete(e){await chrome.storage.session.remove(e)}};const Ne=new $;exports.ACL_TOPICS=Te,exports.AclPausedError=x,exports.AclTopics=J,exports.BalanceCheckUnavailableError=r.h,exports.BaseSigner=a.t,exports.ChainMismatchError=r.y,exports.ChromeSessionStorage=$,exports.ConfigurationError=e.t,exports.Decryption=D,exports.DecryptionFailedError=n.t,exports.DefaultRegistryAddresses=a.a,exports.DelegationContractIsSelfError=b,exports.DelegationCooldownError=h,exports.DelegationDelegateEqualsContractError=y,exports.DelegationExpirationTooSoonError=S,exports.DelegationExpiredError=_,exports.DelegationExpiryUnchangedError=v,exports.DelegationNotFoundError=g,exports.DelegationNotPropagatedError=C,exports.DelegationSelfNotAllowedError=m,exports.Delegations=O,exports.ERC1363_INTERFACE_ID=t.c,exports.ERC20ReadFailedError=r.g,exports.ERC7984_INTERFACE_ID=t.l,exports.ERC7984_WRAPPER_INTERFACE_ID=t.u,exports.ERC7984_WRAPPER_INTERFACE_ID_LEGACY=t.d,exports.EncryptionFailedError=n.n,exports.IndexedDBStorage=o.n,exports.InsufficientConfidentialBalanceError=r._,exports.InsufficientERC20BalanceError=r.v,exports.InvalidKeypairError=f,exports.KeypairExpiredError=d,exports.MemoryStorage=a.l,exports.MutableWalletAccountStore=a.n,exports.NoCiphertextError=p,exports.Permits=k,exports.RelayerRequestFailedError=e.n,exports.SignerNotConfiguredError=t.R,exports.SignerRequiredError=t.z,exports.SigningFailedError=t.U,exports.SigningRejectedError=t.W,exports.TOKEN_TOPICS=xe,exports.Token=r.t,exports.Topics=N,exports.TransactionRevertedError=r.b,exports.WalletAccountNotReadyError=t.B,exports.WalletNotConnectedError=t.V,exports.WrappedToken=Ee,exports.WrappersRegistry=a.o,exports.ZERO_HANDLE=r.f,exports.ZamaError=e.r,exports.ZamaErrorCode=e.i,exports.ZamaSDK=De,exports.ZamaSDKEvents=r.i,exports.allowanceContract=t.g,exports.anvil=c.t,exports.approveContract=t._,exports.balanceOfContract=t.v,exports.chains=c.n,exports.chromeSessionStorage=Ne,exports.clearPendingUnshield=Me,exports.cleartext=ee,exports.confidentialBalanceOfContract=t.D,exports.confidentialTotalSupplyContract=t.O,exports.confidentialTransferContract=t.k,exports.confidentialTransferFromContract=t.A,exports.createConfig=ne,exports.createWalletAccountStore=a.r,exports.decimalsContract=t.y,exports.decodeAclEvent=Z,exports.decodeAclEvents=Se,exports.decodeConfidentialTransfer=V,exports.decodeDelegatedForUserDecryption=Y,exports.decodeOnChainEvent=K,exports.decodeOnChainEvents=ye,exports.decodeRevokedDelegationForUserDecryption=X,exports.decodeUnwrapFinalized=W,exports.decodeUnwrapRequested=U,exports.decodeUnwrappedFinalized=_e,exports.decodeUnwrappedStarted=G,exports.decodeWrapped=H,exports.delegateForUserDecryptionContract=r.c,exports.finalizeUnwrapContract=t.C,exports.findDelegatedForUserDecryption=Ce,exports.findRevokedDelegationForUserDecryption=we,exports.findUnwrapRequested=q,exports.findWrapped=be,exports.getConfidentialTokenAddressContract=t.t,exports.getDelegationExpiryContract=r.l,exports.getTokenAddressContract=t.n,exports.getTokenPairContract=t.r,exports.getTokenPairsContract=t.i,exports.getTokenPairsLengthContract=t.a,exports.getTokenPairsSliceContract=t.o,exports.hardhat=c.r,exports.hoodi=c.i,exports.indexedDBStorage=o.r,exports.inferredTotalSupplyContract=t.w,exports.isConfidentialTokenContract=t.f,exports.isConfidentialTokenValidContract=t.s,exports.isConfidentialWrapperContract=t.p,exports.isHandleDelegatedContract=r.u,exports.isOperatorContract=t.j,exports.isZeroHandle=r.p,exports.loadPendingUnshield=Ae,exports.loadPendingUnshieldRequest=je,exports.mainnet=c.a,exports.matchZamaError=e.a,exports.memoryStorage=a.u,exports.nameContract=t.x,exports.rateContract=t.M,exports.resolveChainRelayers=a.s,exports.resolveStorage=a.c,exports.revokeDelegationContract=r.d,exports.savePendingUnshield=ke,exports.sepolia=c.o,exports.setOperatorContract=t.N,exports.supportsInterfaceContract=t.h,exports.symbolContract=t.S,exports.totalSupplyContract=t.P,exports.transferAndCallContract=E,exports.underlyingContract=t.T,exports.unwrapContract=t.F,exports.unwrapFromBalanceContract=t.I,exports.wrapContract=t.E;
|
|
1
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require(`./relayer.cjs`),t=require(`./wrappers-registry.cjs`),n=require(`./encryption.cjs`),r=require(`./token.cjs`),i=require(`./relayer-cleartext.cjs`),a=require(`./base-signer.cjs`),o=require(`./validation.cjs`),s=require(`./assertions.cjs`),c=require(`./chains.cjs`);let l=require(`viem`),u=require(`zod/mini`);var d=class extends e.r{constructor(t,n){super(e.i.KeypairExpired,t,n),this.name=`KeypairExpiredError`}},f=class extends e.r{constructor(t,n){super(e.i.InvalidKeypair,t,n),this.name=`InvalidKeypairError`}},p=class extends e.r{constructor(t,n){super(e.i.NoCiphertext,t,n),this.name=`NoCiphertextError`}},m=class extends e.r{constructor(t,n){super(e.i.DelegationSelfNotAllowed,t,n),this.name=`DelegationSelfNotAllowedError`}},h=class extends e.r{constructor(t,n){super(e.i.DelegationCooldown,t,n),this.name=`DelegationCooldownError`}},g=class extends e.r{constructor(t,n){super(e.i.DelegationNotFound,t,n),this.name=`DelegationNotFoundError`}},_=class extends e.r{constructor(t,n){super(e.i.DelegationExpired,t,n),this.name=`DelegationExpiredError`}},v=class extends e.r{constructor(t,n){super(e.i.DelegationExpiryUnchanged,t,n),this.name=`DelegationExpiryUnchangedError`}},y=class extends e.r{constructor(t,n){super(e.i.DelegationDelegateEqualsContract,t,n),this.name=`DelegationDelegateEqualsContractError`}},b=class extends e.r{constructor(t,n){super(e.i.DelegationContractIsSelf,t,n),this.name=`DelegationContractIsSelfError`}},x=class extends e.r{constructor(t,n){super(e.i.AclPaused,t,n),this.name=`AclPausedError`}},S=class extends e.r{constructor(t,n){super(e.i.DelegationExpirationTooSoon,t,n),this.name=`DelegationExpirationTooSoonError`}},C=class extends e.r{constructor(t,n){super(e.i.DelegationNotPropagated,t,n),this.name=`DelegationNotPropagatedError`}};function w(r,i,a=!1){if(r instanceof n.t||r instanceof p||r instanceof e.n||r instanceof C||r instanceof t.H||r instanceof t.V)return r;let o=typeof r==`object`&&r&&`statusCode`in r&&typeof r.statusCode==`number`?r.statusCode:void 0;return o===400?new p(r instanceof Error?r.message:`No ciphertext for this account`,{cause:r}):a&&o===500?new C(`Delegated decryption failed with a server error. This is most commonly caused by the delegation not having propagated to the gateway yet — after granting delegation, allow 1–2 minutes for cross-chain synchronization before retrying. If the error persists, the gateway or relayer may be experiencing an unrelated issue.`,{cause:r}):o===void 0?new n.t(i,{cause:r}):new e.n(r instanceof Error?r.message:i,o,{cause:r})}function ee(){return{type:`cleartext`,createRelayer:t=>{if(!t.executorAddress)throw new e.t(`Cleartext relayer requires an executorAddress. Either use a chain preset that includes it (e.g. hardhat, hoodi) or set it on the chain definition.`);return new i.t(t)}}}function T(e){return e.startsWith(`0x`)?e:`0x${e}`}const te=[{type:`function`,name:`transferAndCall`,stateMutability:`nonpayable`,inputs:[{name:`to`,type:`address`},{name:`value`,type:`uint256`},{name:`data`,type:`bytes`}],outputs:[{name:``,type:`bool`}]}];function E(e,t,n,r=`0x`){return{address:e,abi:te,functionName:`transferAndCall`,args:[t,n,r]}}function ne(e){return a.i(e.signer,e.provider,e)}var D=class{#e;#t;#n;#r;constructor(e){this.#e=e.signer,this.#t=e.provider,this.#n=e.relayer,this.#r=e.decryptionService}#i(e){return t.B(this.#r,e)}async userDecrypt(e){let t=this.#i(`userDecrypt`),n=await r.a(`userDecrypt`,this.#e,this.#t);return t.userDecrypt(e,n.address)}async delegatedDecrypt(e,t,n=t){let i=this.#i(`delegatedDecrypt`),a=await r.a(`delegatedDecrypt`,this.#e,this.#t);return i.delegatedUserDecrypt(e,t,a.address,n)}async publicDecrypt(e){if(e.length===0)return{clearValues:{},decryptionProof:`0x`,abiEncodedClearValues:`0x`};try{return await this.#n.publicDecrypt(e)}catch(e){throw w(e,`Public decryption failed`)}}async delegatedBatchDecrypt({encryptedInputs:e,delegatorAddress:t,accountAddress:n=t,maxConcurrency:i}){let a=this.#i(`delegatedBatchDecrypt`),o=await r.a(`delegatedBatchDecrypt`,this.#e,this.#t);return a.delegatedBatchDecryptHandlesAs({encryptedInputs:e,delegatorAddress:t,delegateAddress:o.address,accountAddress:n,maxConcurrency:i})}},O=class{#e;#t;#n;constructor(e){this.#e=e.signer,this.#t=e.provider,this.#n=e.delegationService}#r(e){return t.B(this.#e,e)}async delegateDecryption({contractAddress:e,delegateAddress:t,expirationDate:n}){let i=this.#r(`delegateDecryption`),a=await r.a(`delegateDecryption`,this.#e,this.#t);return this.#n.delegateDecryption(i,{contractAddress:e,delegateAddress:t,delegatorAddress:a.address,expirationDate:n})}async revokeDelegation({contractAddress:e,delegateAddress:t}){let n=this.#r(`revokeDelegation`),i=await r.a(`revokeDelegation`,this.#e,this.#t);return this.#n.revokeDelegation(n,{contractAddress:e,delegateAddress:t,delegatorAddress:i.address})}async isActive(e){return this.#n.isDelegated(e)}async getExpiry(e){return this.#n.getDelegationExpiry(e)}},k=class{#e;#t;#n;#r;constructor(e){this.#e=e.signer,this.#t=e.provider,this.#n=e.cachingService,this.#r=e.credentialService}#i(e){return t.B(this.#r,e)}async grantPermit(e){if(e.length===0)return;let t=this.#i(`grantPermit`);await r.o(`grantPermit`,this.#e,this.#t),await t.grantPermit(e)}async grantDelegationPermit(e,t){if(t.length===0)return;let n=this.#i(`grantDelegationPermit`);await r.o(`grantDelegationPermit`,this.#e,this.#t),await n.grantPermit(t,e)}async hasPermit(e){return this.#r?this.#r.hasPermit(e):!1}async hasDelegationPermit(e,t){return this.#r?this.#r.hasPermit(t,e):!1}async revokePermits(e){let n=this.#i(`revokePermits`),i=(0,l.getAddress)((await r.a(`revokePermits`,this.#e,this.#t)).address);try{await n.revokePermits(e)}finally{await t.F(`clear decrypt cache`,()=>this.#n.clearForRequester(i))}}async clear(){let e=this.#i(`clear`),n=(0,l.getAddress)((await r.a(`clear`,this.#e,this.#t)).address);try{await e.clearCredentials()}finally{await t.F(`clear decrypt cache`,()=>this.#n.clearForRequester(n))}}};const re=u.z.union([u.z.bigint(),u.z.boolean(),a.p]),ie=u.z.array(u.z.string());var ae=class{#e;#t=`zama:decrypt`;#n=`${this.#t}:keys`;#r=Promise.resolve();constructor(e){this.#e=e}async get(e,t,n){try{let r=this.#s(e,t,n),i=await this.#e.get(r);if(i===null)return null;let a=re.safeParse(i);return a.success?a.data:(await this.delete(e,t,n),null)}catch(e){return console.warn(`[zama-sdk] CachingService.get failed:`,e),null}}async set(e,t,n,r){try{let i=this.#s(e,t,n);await this.#e.set(i,r),this.#r=this.#r.then(()=>this.#l(i).catch(e=>{console.warn(`[zama-sdk] CachingService index write failed:`,e)})),await this.#r}catch(e){console.warn(`[zama-sdk] CachingService.set failed:`,e)}}async delete(e,t,n){let r=this.#s(e,t,n);this.#r=this.#r.then(()=>this.#i(r).catch(e=>{console.warn(`[zama-sdk] CachingService.delete failed:`,e)})),await this.#r}async clearForRequester(e){this.#r=this.#r.then(()=>this.#a(e).catch(e=>{console.warn(`[zama-sdk] CachingService.clearForRequester failed:`,e)})),await this.#r}async clearAll(){this.#r=this.#r.then(()=>this.#o().catch(e=>{console.warn(`[zama-sdk] CachingService.clearAll failed:`,e)})),await this.#r}async#i(e){await this.#e.delete(e).catch(()=>{});let t=await this.#c(),n=t.filter(t=>t!==e);n.length!==t.length&&await this.#e.set(this.#n,n)}async#a(e){let t=(0,l.getAddress)(e),n=`${this.#t}:${t}:`,r=await this.#c(),i=[],a=[];for(let e of r)e.startsWith(n)?i.push(e):a.push(e);await Promise.all(i.map(e=>this.#e.delete(e).catch(()=>{}))),await this.#e.set(this.#n,a)}async#o(){let e=await this.#c();await Promise.all(e.map(e=>this.#e.delete(e).catch(()=>{}))),await this.#e.delete(this.#n)}#s(e,t,n){return`${this.#t}:${(0,l.getAddress)(e)}:${(0,l.getAddress)(t)}:${n.toLowerCase()}`}async#c(){let e=await this.#e.get(this.#n);if(e===null)return[];let t=ie.safeParse(e);return t.success?t.data:(await this.#e.delete(this.#n).catch(()=>{}),[])}async#l(e){let t=await this.#c();t.includes(e)||(t.push(e),await this.#e.set(this.#n,t))}};function oe(e,t){let r=j(e,t);if(!r)throw new n.t(`No permit covers contract ${t} after allow()`);return A(e,r)}function se(e,t){let r=j(e,t);if(!r)throw new n.t(`No delegated permit covers contract ${t} after allow()`);return{...A(e,r),delegatorAddress:r.delegatorAddress}}function A(e,t){return{signedContractAddresses:t.signedContractAddresses,privateKey:e.keypair.privateKey,publicKey:e.keypair.publicKey,signature:t.signature,startTimestamp:t.startTimestamp,durationDays:t.durationDays}}function j(e,t){let n=a.f(t);return e.permits.find(e=>e.signedContractAddresses.includes(n))}var ce=class{#e;#t;#n;#r;#i;constructor({cache:e,credentialService:t,delegationService:n,relayer:r,emitEvent:i}){this.#e=e,this.#t=t,this.#n=n,this.#r=r,this.#i=i}async userDecrypt(e,t){let n=(0,l.getAddress)(t);return this.#a(e,{requesterAddress:n,resolveCredentials:e=>this.#t.grantPermit(e),decryptContract:async({credentials:e,contractAddress:t,encryptedValues:r})=>this.#r.userDecrypt({encryptedValues:r,contractAddress:t,...oe(e,t),signerAddress:n}),errorMessage:`Failed to decrypt handles`})}async delegatedUserDecrypt(e,t,n,r){let i=(0,l.getAddress)(t),a=(0,l.getAddress)(n);return this.#a(e,{requesterAddress:(0,l.getAddress)(r),resolveCredentials:e=>this.#t.grantPermit(e,i),validate:e=>this.#l(e,{delegatorAddress:i,delegateAddress:a}),decryptContract:async({credentials:e,contractAddress:t,encryptedValues:n})=>this.#r.delegatedUserDecrypt({encryptedValues:n,contractAddress:t,...se(e,t),delegateAddress:a}),errorMessage:`Failed to decrypt delegated handles`,delegated:!0})}async delegatedBatchDecryptHandlesAs({encryptedInputs:e,delegatorAddress:t,delegateAddress:n,accountAddress:i,maxConcurrency:a=5}){let o=e.map(e=>({encryptedValue:e.encryptedValue,contractAddress:(0,l.getAddress)(e.contractAddress)}));if(o.length===0)return{items:o};let s=(0,l.getAddress)(i);try{let e=await this.delegatedUserDecrypt(o.map(({encryptedValue:e,contractAddress:t})=>({encryptedValue:e,contractAddress:t})),t,n,s);for(let t of o)this.#o(t,e);return{items:o}}catch(e){if(r.m(e))throw e;if(o.length===1){let[t=this.#c()]=o;return t.error=this.#s(e,`Failed to decrypt delegated handles`,!0),{items:o}}}return await r.r(o.map(e=>async()=>{try{let r=await this.delegatedUserDecrypt([{encryptedValue:e.encryptedValue,contractAddress:e.contractAddress}],t,n,s);this.#o(e,r)}catch(t){if(r.m(t))throw t;e.error=this.#s(t,`Failed to decrypt delegated handles`,!0)}}),a),{items:o}}async#a(e,t){if(e.length===0)return{};let n=e.map(e=>({encryptedValue:e.encryptedValue,contractAddress:(0,l.getAddress)(e.contractAddress)})),i={},a=[];for(let e of n)r.p(e.encryptedValue)?i[e.encryptedValue]=0n:a.push(e);if(a.length===0)return i;let o=Array.from(new Set(n.map(e=>e.contractAddress))),c=Array.from(new Set(a.map(e=>e.contractAddress)));t.validate&&await t.validate(c);let u=[];for(let e of a){let n=await this.#e.get(t.requesterAddress,e.contractAddress,e.encryptedValue);n===null?u.push(e):i[e.encryptedValue]=n}if(u.length===0)return i;let d=await t.resolveCredentials(o),f=new Map;for(let e of u){let t=f.get(e.contractAddress);t?t.push(e.encryptedValue):f.set(e.contractAddress,[e.encryptedValue])}let p=Date.now(),m=u.map(e=>e.encryptedValue);try{this.#i({type:r.i.DecryptStart,encryptedValues:m}),await r.r([...f.entries()].map(([e,n])=>async()=>{let r=await t.decryptContract({credentials:d,contractAddress:e,encryptedValues:n});for(let[n,a]of Object.entries(r))i[n]=a,await this.#e.set(t.requesterAddress,e,n,a)}),5);let e={};for(let t of m){let n=i[t];n!==void 0&&(e[t]=n)}return this.#i({type:r.i.DecryptEnd,durationMs:Date.now()-p,encryptedValues:m,result:e}),i}catch(e){throw this.#i({type:r.i.DecryptError,error:s.s(e),durationMs:Date.now()-p,encryptedValues:m}),w(e,t.errorMessage,t.delegated)}}#o(e,t){let r=t[e.encryptedValue];if(r===void 0){e.error=new n.t(`Batch delegated decryption returned no value for encrypted value ${e.encryptedValue} on contract ${e.contractAddress}`);return}e.value=r}#s(t,n,r=!1){return t instanceof e.r?t:w(t,n,r)}#c(){throw new n.t(`Batch delegated decryption invariant failed: missing item`)}async#l(e,{delegatorAddress:t,delegateAddress:n}){let r=await this.#n.findInactiveDelegations(e,t,n);if(r.size!==0)for(let e of r.values())throw e}};function le(e){if(!(e instanceof Error))return null;let t=e.cause;if(typeof t!=`object`||!t||!(`data`in t))return null;let{data:n}=t;return typeof n!=`object`||!n||!(`errorName`in n)?null:typeof n.errorName==`string`?n.errorName:null}const M={AlreadyDelegatedOrRevokedInSameBlock:e=>new h(`Only one delegate/revoke per (delegator, delegate, contract) per block. Wait for the next block before retrying.`,{cause:e}),SenderCannotBeContractAddress:e=>new b(`The contract address cannot be the caller address.`,{cause:e}),EnforcedPause:e=>new x(`The ACL contract is paused. Delegation operations are temporarily disabled.`,{cause:e}),SenderCannotBeDelegate:e=>new m(`Cannot delegate to yourself (delegate === msg.sender).`,{cause:e}),DelegateCannotBeContractAddress:e=>new y(`Delegate address cannot be the same as the contract address.`,{cause:e}),ExpirationDateBeforeOneHour:e=>new S(`Expiration date must be at least 1 hour in the future.`,{cause:e}),ExpirationDateAlreadySetToSameValue:e=>new v(`The new expiration date is the same as the current one.`,{cause:e}),NotDelegatedYet:e=>new g(`Cannot revoke: no active delegation exists.`,{cause:e})};function ue(e){return e in M}function de(e,t){let n=le(e);if(n&&ue(n))return M[n](t);let r=e instanceof Error?e.message:String(e);for(let[e,n]of Object.entries(M))if(r.includes(e))return n(t);return null}var fe=class{#e;#t;#n;constructor({provider:e,relayer:t,emitEvent:n=()=>{}}){this.#e=e,this.#t=t,this.#n=n}async delegateDecryption(e,{contractAddress:t,delegateAddress:n,delegatorAddress:i,expirationDate:a}){if(a&&a.getTime()<Date.now()+36e5)throw new S(`Expiration date must be at least 1 hour in the future`);let o=(0,l.getAddress)(t),s=(0,l.getAddress)(n),c=(0,l.getAddress)(i);if(s===c)throw new m(`Cannot delegate to yourself (delegate === msg.sender).`);if(s===o)throw new y(`Delegate address cannot be the same as the contract address (${o}).`);let u=await this.#t.getAclAddress(),d=a?BigInt(Math.floor(a.getTime()/1e3)):r.s,f;try{f=await this.getDelegationExpiry({contractAddress:o,delegatorAddress:c,delegateAddress:s})}catch(e){console.warn(`[zama-sdk] delegateDecryption: pre-flight expiry check failed:`,e),f=-1n}if(f===d)throw new v(`The new expiration date (${d}) is the same as the current one. No on-chain change needed.`);return this.#r({operation:`delegateDecryption`,signer:e,contractAddress:t,config:r.c(u,s,o,d)})}async revokeDelegation(e,{contractAddress:t,delegateAddress:n,delegatorAddress:i}){let a=(0,l.getAddress)(t),o=(0,l.getAddress)(n),s=(0,l.getAddress)(i),c=await this.#t.getAclAddress(),u;try{u=await this.getDelegationExpiry({contractAddress:a,delegatorAddress:s,delegateAddress:o})}catch(e){console.warn(`[zama-sdk] revokeDelegation: pre-flight expiry check failed:`,e),u=1n}if(u===0n)throw new g(`No active delegation found for delegate ${o} on contract ${a}.`);return this.#r({operation:`revokeDelegation`,signer:e,contractAddress:t,config:r.d(c,o,a)})}async isDelegated(e){let t=await this.getDelegationExpiry(e);return t===0n?!1:t===r.s?!0:t>await this.#e.getBlockTimestamp()}async getDelegationExpiry({contractAddress:e,delegatorAddress:t,delegateAddress:n}){let i=await this.#t.getAclAddress();return this.#e.readContract(r.l(i,(0,l.getAddress)(t),(0,l.getAddress)(n),(0,l.getAddress)(e)))}async#r({operation:e,signer:t,contractAddress:n,config:i}){try{return await r.n({operation:e,signer:t,provider:this.#e,config:i,emit:e=>this.#n(e,n)})}catch(e){throw this.#i(e),e}}#i(e){if(!(e instanceof r.b))return;let t=de(e.cause??e,e);if(t)throw t}async findInactiveDelegations(e,t,n){let r=new Map;return await Promise.all(e.map(async e=>{try{await this.assertDelegationActive(e,t,n)}catch(t){if(t instanceof g||t instanceof _){let n=(0,l.getAddress)(e);r.set(n,t);return}throw t}})),r}async assertDelegationActive(e,t,n){let i=(0,l.getAddress)(e),a=(0,l.getAddress)(t),o=(0,l.getAddress)(n),s=await this.getDelegationExpiry({contractAddress:i,delegatorAddress:a,delegateAddress:o});if(s===0n)throw new g(`No active delegation from ${a} to ${o} for ${i}`);if(s!==r.s&&s<=await this.#e.getBlockTimestamp())throw new _(`Delegation from ${a} to ${o} for ${i} has expired`)}},pe=class{#e;#t;constructor({relayer:e,emitEvent:t}){this.#e=e,this.#t=t}async encrypt(t){let i=Date.now();try{this.#t({type:r.i.EncryptStart},t.contractAddress);let e=await this.#e.encrypt(t);return this.#t({type:r.i.EncryptEnd,durationMs:Date.now()-i},t.contractAddress),e}catch(a){throw this.#t({type:r.i.EncryptError,error:s.s(a),durationMs:Date.now()-i},t.contractAddress),a instanceof e.r?a:new n.n(`Encryption failed`,{cause:a})}}},me=class{#e;#t;#n;#r;#i=new Set;#a;constructor(e){this.#e=e.signer,this.#t=e.relayer,this.#n=e.cachingService,this.#r=e.credentialService,this.#e&&(this.#a=this.#e.walletAccount.subscribe(e=>{this.#o(e).catch(e=>{console.warn(`[zama-sdk] wallet account handler failed:`,e)})}))}onWalletAccountChange(e){return this.#i.add(e),()=>{this.#i.delete(e)}}dispose(){this.#a?.(),this.#a=void 0,this.#i.clear()}async#o(e){let n=e.previous,r=e.next,i=this.#r;i&&await t.F(`credential wallet account change`,()=>i.handleWalletAccountChange(n,r)),n&&await t.F(`clear decrypt cache`,()=>this.#n.clearForRequester(n.address));let a=r?.chainId;a!==void 0&&t.F(`switch relayer chain`,()=>this.#t.switchChain(a)),await Promise.all(Array.from(this.#i,n=>t.F(`wallet account listener`,()=>n(e))))}};function N(e){return(0,l.keccak256)((0,l.toBytes)(e))}const P={ConfidentialTransfer:N(`ConfidentialTransfer(address,address,bytes32)`),Wrapped:N(`Wrapped(address,uint256)`),UnwrapRequested:N(`UnwrapRequested(address,bytes32,bytes32)`),UnwrapFinalized:N(`UnwrapFinalized(address,bytes32,bytes32,uint64)`),UnwrappedStarted:N(`UnwrappedStarted(bool,uint256,uint256,address,address,bytes32,bytes32)`)};function F(e){return(0,l.getAddress)(T(e.slice(-40)))}function I(e){return BigInt(e)}function L(e){return e}function R(e,t){let n=2+t*64,r=e.slice(n,n+64);return r.length===64?r:r.padEnd(64,`0`)}function z(e,t){return(0,l.getAddress)(T(R(e,t).slice(-40)))}function B(e,t){return BigInt(`0x`+R(e,t))}function he(e,t){return BigInt(`0x`+R(e,t))!==0n}function V(e,t){return T(R(e,t))}function H(e){return e.topics[0]!==P.ConfidentialTransfer||e.topics.length<4?null:{eventName:`ConfidentialTransfer`,from:F(e.topics[1]),to:F(e.topics[2]),encryptedAmountHandle:L(e.topics[3])}}function U(e){return e.topics[0]!==P.Wrapped||e.topics.length<2?null:{eventName:`Wrapped`,to:F(e.topics[1]),amountIn:B(e.data,0)}}function W(e){return e.topics[0]!==P.UnwrapRequested||e.topics.length<3?null:{eventName:`UnwrapRequested`,receiver:F(e.topics[1]),unwrapRequestId:L(e.topics[2]),encryptedAmount:V(e.data,0)}}function G(e){return e.topics[0]!==P.UnwrapFinalized||e.topics.length<3?null:{eventName:`UnwrapFinalized`,receiver:F(e.topics[1]),unwrapRequestId:L(e.topics[2]),encryptedAmount:V(e.data,0),cleartextAmount:B(e.data,1)}}function K(e){return e.topics[0]!==P.UnwrappedStarted||e.topics.length<4?null:{eventName:`UnwrappedStarted`,requestId:I(e.topics[1]),txId:I(e.topics[2]),to:F(e.topics[3]),returnVal:he(e.data,0),refund:z(e.data,1),requestedAmount:V(e.data,2),burnAmount:V(e.data,3)}}function q(e){return H(e)??U(e)??W(e)??G(e)??K(e)}function ge(e){let t=[];for(let n of e){let e=q(n);e&&t.push(e)}return t}function J(e){for(let t of e){let e=W(t);if(e)return e}return null}function _e(e){for(let t of e){let e=U(t);if(e)return e}return null}const ve=[P.ConfidentialTransfer,P.Wrapped,P.UnwrapRequested,P.UnwrapFinalized,P.UnwrappedStarted],Y={DelegatedForUserDecryption:N(`DelegatedForUserDecryption(address,address,address,uint64,uint64,uint64)`),RevokedDelegationForUserDecryption:N(`RevokedDelegationForUserDecryption(address,address,address,uint64,uint64)`)};function X(e){return e.topics[0]!==Y.DelegatedForUserDecryption||e.topics.length<3?null:{eventName:`DelegatedForUserDecryption`,delegator:F(e.topics[1]),delegate:F(e.topics[2]),contractAddress:z(e.data,0),delegationCounter:B(e.data,1),oldExpirationDate:B(e.data,2),newExpirationDate:B(e.data,3)}}function Z(e){return e.topics[0]!==Y.RevokedDelegationForUserDecryption||e.topics.length<3?null:{eventName:`RevokedDelegationForUserDecryption`,delegator:F(e.topics[1]),delegate:F(e.topics[2]),contractAddress:z(e.data,0),delegationCounter:B(e.data,1),oldExpirationDate:B(e.data,2)}}function Q(e){return X(e)??Z(e)}function ye(e){let t=[];for(let n of e){let e=Q(n);e&&t.push(e)}return t}function be(e){for(let t of e){let e=X(t);if(e)return e}return null}function xe(e){for(let t of e){let e=Z(t);if(e)return e}return null}const Se=[Y.DelegatedForUserDecryption,Y.RevokedDelegationForUserDecryption];var Ce=class extends r.t{#e;#t=null;#n=null;#r(e){try{return s.r(this.sdk.signer,`WrappedToken.sdk.signer`),this.sdk.signer}catch(n){throw new t.I(e,{cause:n})}}async underlying(){return this.#o()}async isPayable(){if(this.#n!==null)return this.#n;try{let e=await this.#o();this.#n=await this.sdk.provider.readContract(t.p(e))}catch{this.#n=!1}return this.#n}async allowance(e){let n=await this.#o();return this.sdk.provider.readContract(t.h(n,(0,l.getAddress)(e),this.address))}async shield(n,i){let a=await r.a(`shield`,this.sdk.signer,this.sdk.provider),o=await this.isPayable(),c=await this.#o(),u=(0,l.getAddress)(a.address),d;try{d=await this.sdk.provider.readContract(t._(c,u))}catch(t){throw t instanceof e.r?t:new r.g(`Could not read ERC-20 balance for shield validation (token: ${c})`,{cause:s.s(t)})}if(d<n)throw new r.v(`Insufficient ERC-20 balance: requested ${n}, available ${d} (token: ${c})`,{requested:n,available:d,token:c});return o?this.#i(n,c,u,i):this.#a(n,u,i)}async#i(e,t,n,r){this.#r(`shield`);let i=r?.to?(0,l.getAddress)(r.to):n,a=i===n?`0x`:i;return this.submitTransaction({operation:`shield:transferAndCall`,config:E(t,this.address,e,a),onSubmitted:r?.onShieldSubmitted})}async#a(e,n,r){this.#r(`shield`);let i=r?.approvalStrategy??`exact`;i!==`skip`&&await this.#c(e,i===`max`,r);let a=r?.to?(0,l.getAddress)(r.to):n;return this.submitTransaction({operation:`shield:approveAndWrap`,config:t.T(this.address,a,e),onSubmitted:r?.onShieldSubmitted})}async approveUnderlying(e){this.#r(`approveUnderlying`);let n=await r.a(`approveUnderlying`,this.sdk.signer,this.sdk.provider),i=await this.#o(),a=(0,l.getAddress)(n.address),o=e??2n**256n-1n;return o>0n&&await this.sdk.provider.readContract(t.h(i,a,this.address))>0n&&await this.submitTransaction({operation:`approveUnderlying:reset`,config:t.g(i,this.address,0n)}),this.submitTransaction({operation:`approveUnderlying`,config:t.g(i,this.address,o)})}async unshield(e,n){let{skipBalanceCheck:r=!1,onUnwrapSubmitted:i,onFinalizing:a,onFinalizeSubmitted:o}=n??{};r||await this.assertConfidentialBalance(e);let s={onFinalizing:a,onFinalizeSubmitted:o},c=crypto.randomUUID(),l=await this.unwrap(e);return t.F(`unshield: onUnwrapSubmitted`,()=>i?.(l.txHash)),this.#s(l.txHash,c,s)}async unshieldAll(e){let n=crypto.randomUUID(),r=await this.unwrapAll();return t.F(`unshieldAll: onUnwrapSubmitted`,()=>e?.onUnwrapSubmitted?.(r.txHash)),this.#s(r.txHash,n,e)}async resumeUnshield(e,t){return this.#s(e,crypto.randomUUID(),t)}async unwrap(e){this.#r(`unwrap`);let i=(0,l.getAddress)((await r.a(`unwrap`,this.sdk.signer,this.sdk.provider)).address),{handles:a,inputProof:o}=await this.sdk.encrypt({values:[{value:e,type:`euint64`}],contractAddress:this.address,userAddress:i}),[s]=a;if(!s)throw new n.n(`Encryption returned no handles`);return this.submitTransaction({operation:`unwrap`,config:t.N(this.address,i,i,s,o)})}async unwrapAll(){this.#r(`unwrapAll`);let e=(0,l.getAddress)((await r.a(`unwrapAll`,this.sdk.signer,this.sdk.provider)).address),i=await this.readConfidentialBalanceOf(e);if(r.p(i))throw new n.t(`Cannot unshield: balance is zero`);return this.submitTransaction({operation:`unwrapAll`,config:t.P(this.address,e,e,i)})}async finalizeUnwrap(e){this.#r(`finalizeUnwrap`),await r.o(`finalizeUnwrap`,this.sdk.signer,this.sdk.provider);let n=await this.sdk.decryption.publicDecrypt([e]),i=n.clearValues[e];return s.t(i,`finalizeUnwrap: clearValue`),this.submitTransaction({operation:`finalizeUnwrap`,config:t.S(this.address,e,i,n.decryptionProof)})}async#o(){return this.#e===void 0?(this.#t||=this.sdk.provider.readContract(t.w(this.address)).then(e=>(this.#e=e,this.#t=null,e)).catch(e=>{throw this.#t=null,e}),this.#t):this.#e}async#s(n,i,a){this.emit({type:r.i.UnshieldPhase1Submitted,txHash:n,operationId:i});let o;try{o=await this.sdk.provider.waitForTransactionReceipt(n)}catch(t){throw t instanceof e.r?t:new r.b(`Failed to get unshield receipt`,{cause:t})}let s=J(o.logs);if(!s)throw new r.b(`No UnwrapRequested event found in unshield receipt`);this.emit({type:r.i.UnshieldPhase2Started,operationId:i}),t.F(`unshield: onFinalizing`,()=>a?.onFinalizing?.());let c=await this.finalizeUnwrap(s.unwrapRequestId??s.encryptedAmount);return this.emit({type:r.i.UnshieldPhase2Submitted,txHash:c.txHash,operationId:i}),t.F(`unshield: onFinalizeSubmitted`,()=>a?.onFinalizeSubmitted?.(c.txHash)),c}async#c(e,n,i){this.#r(`approveUnderlying`);let a=await this.#o(),o=(0,l.getAddress)((await r.a(`approveUnderlying`,this.sdk.signer,this.sdk.provider)).address),s=await this.sdk.provider.readContract(t.h(a,o,this.address));if(s>=e)return;s>0n&&await this.submitTransaction({operation:`approveUnderlying:reset`,config:t.g(a,this.address,0n)});let c=n?2n**256n-1n:e;await this.submitTransaction({operation:`approveUnderlying`,config:t.g(a,this.address,c),onSubmitted:i?.onApprovalSubmitted})}},we=class{relayer;provider;signer;storage;registry;permits;delegations;decryption;#e;#t;#n;#r;#i;#a;#o;#s;constructor(e){this.relayer=e.relayer,this.provider=e.provider,this.signer=e.signer,this.storage=e.storage,this.#t=e.onEvent??function(){},this.#n=new ae(e.storage),this.#s=new fe({provider:this.provider,relayer:this.relayer,emitEvent:this.emitEvent.bind(this)});let t={};for(let n of e.chains)n.registryAddress&&(t[n.id]=n.registryAddress);this.registry=new a.o({provider:this.provider,registryAddresses:t,registryTTL:e.registryTTL}),this.#e=e.registryTTL,e.signer&&(this.#o=new a.d({relayer:this.relayer,signer:e.signer,keypairTTL:e.keypairTTL,permitTTL:e.permitTTL,storage:this.storage,permitStorage:e.permitStorage}),this.#a=new ce({cache:this.#n,credentialService:this.#o,delegationService:this.#s,relayer:this.relayer,emitEvent:this.emitEvent.bind(this)})),this.#i=new pe({relayer:this.relayer,emitEvent:this.emitEvent.bind(this)}),this.#r=new me({signer:e.signer,relayer:this.relayer,cachingService:this.#n,credentialService:this.#o}),this.permits=new k({signer:this.signer,provider:this.provider,cachingService:this.#n,credentialService:this.#o}),this.delegations=new O({signer:this.signer,provider:this.provider,delegationService:this.#s}),this.decryption=new D({signer:this.signer,provider:this.provider,relayer:this.relayer,decryptionService:this.#a})}onWalletAccountChange(e){return this.#r.onWalletAccountChange(e)}emitEvent(e,t){try{this.#t({...e,tokenAddress:t,timestamp:Date.now()})}catch(e){console.error(`[zama-sdk] onEvent listener threw:`,e)}}createWrappersRegistry(e){return new a.o({provider:this.provider,registryAddresses:e,registryTTL:this.#e})}async encrypt(e){return this.#i.encrypt(e)}createToken(e){return new r.t(this,e)}createWrappedToken(e){return new Ce(this,e)}dispose(){this.#r.dispose()}terminate(){this.dispose(),this.relayer.terminate(),this.signer?.dispose?.()}[Symbol.dispose](){this.terminate()}};function $(e){return`zama:pending-unshield:${a.f(e)}`}const Te=u.z.union([u.z.pipe(a.m,u.z.transform(e=>({unwrapTxHash:e}))),u.z.pipe(u.z.object({version:u.z.literal(1),unwrapTxHash:a.m,unwrapRequestId:u.z.optional(a.m)}),u.z.transform(({unwrapTxHash:e,unwrapRequestId:t})=>({unwrapTxHash:e,unwrapRequestId:t})))]);async function Ee(e,t,n,r){if(r===void 0){await e.set($(t),n);return}await e.set($(t),{version:1,unwrapTxHash:n,unwrapRequestId:r})}async function De(e,t){return(await Oe(e,t))?.unwrapTxHash??null}async function Oe(e,t){let n=$(t),r=await e.get(n);if(r==null)return null;let i=Te.safeParse(r);return i.success?i.data:(await e.delete(n),null)}async function ke(e,t){await e.delete($(t))}var Ae=class{async get(e){return(await chrome.storage.session.get(e))[e]??null}async set(e,t){await chrome.storage.session.set({[e]:t})}async delete(e){await chrome.storage.session.remove(e)}};const je=new Ae;exports.ACL_TOPICS=Se,exports.AclPausedError=x,exports.AclTopics=Y,exports.BalanceCheckUnavailableError=r.h,exports.BaseSigner=a.t,exports.ChainMismatchError=r.y,exports.ChromeSessionStorage=Ae,exports.ConfigurationError=e.t,exports.Decryption=D,exports.DecryptionFailedError=n.t,exports.DefaultRegistryAddresses=a.a,exports.DelegationContractIsSelfError=b,exports.DelegationCooldownError=h,exports.DelegationDelegateEqualsContractError=y,exports.DelegationExpirationTooSoonError=S,exports.DelegationExpiredError=_,exports.DelegationExpiryUnchangedError=v,exports.DelegationNotFoundError=g,exports.DelegationNotPropagatedError=C,exports.DelegationSelfNotAllowedError=m,exports.Delegations=O,exports.ERC1363_INTERFACE_ID=t.c,exports.ERC20ReadFailedError=r.g,exports.ERC7984_INTERFACE_ID=t.l,exports.ERC7984_WRAPPER_INTERFACE_ID=t.u,exports.EncryptionFailedError=n.n,exports.IndexedDBStorage=o.n,exports.InsufficientConfidentialBalanceError=r._,exports.InsufficientERC20BalanceError=r.v,exports.InvalidKeypairError=f,exports.KeypairExpiredError=d,exports.MemoryStorage=a.l,exports.MutableWalletAccountStore=a.n,exports.NoCiphertextError=p,exports.Permits=k,exports.RelayerRequestFailedError=e.n,exports.SignerNotConfiguredError=t.I,exports.SignerRequiredError=t.L,exports.SigningFailedError=t.V,exports.SigningRejectedError=t.H,exports.TOKEN_TOPICS=ve,exports.Token=r.t,exports.Topics=P,exports.TransactionRevertedError=r.b,exports.WalletAccountNotReadyError=t.R,exports.WalletNotConnectedError=t.z,exports.WrappedToken=Ce,exports.WrappersRegistry=a.o,exports.ZERO_HANDLE=r.f,exports.ZamaError=e.r,exports.ZamaErrorCode=e.i,exports.ZamaSDK=we,exports.ZamaSDKEvents=r.i,exports.allowanceContract=t.h,exports.anvil=c.t,exports.approveContract=t.g,exports.balanceOfContract=t._,exports.chains=c.n,exports.chromeSessionStorage=je,exports.clearPendingUnshield=ke,exports.cleartext=ee,exports.confidentialBalanceOfContract=t.E,exports.confidentialTotalSupplyContract=t.D,exports.confidentialTransferContract=t.O,exports.confidentialTransferFromContract=t.k,exports.createConfig=ne,exports.createWalletAccountStore=a.r,exports.decimalsContract=t.v,exports.decodeAclEvent=Q,exports.decodeAclEvents=ye,exports.decodeConfidentialTransfer=H,exports.decodeDelegatedForUserDecryption=X,exports.decodeOnChainEvent=q,exports.decodeOnChainEvents=ge,exports.decodeRevokedDelegationForUserDecryption=Z,exports.decodeUnwrapFinalized=G,exports.decodeUnwrapRequested=W,exports.decodeUnwrappedStarted=K,exports.decodeWrapped=U,exports.delegateForUserDecryptionContract=r.c,exports.finalizeUnwrapContract=t.S,exports.findDelegatedForUserDecryption=be,exports.findRevokedDelegationForUserDecryption=xe,exports.findUnwrapRequested=J,exports.findWrapped=_e,exports.getConfidentialTokenAddressContract=t.t,exports.getDelegationExpiryContract=r.l,exports.getTokenAddressContract=t.n,exports.getTokenPairContract=t.r,exports.getTokenPairsContract=t.i,exports.getTokenPairsLengthContract=t.a,exports.getTokenPairsSliceContract=t.o,exports.hardhat=c.r,exports.hoodi=c.i,exports.indexedDBStorage=o.r,exports.inferredTotalSupplyContract=t.C,exports.isConfidentialTokenContract=t.d,exports.isConfidentialTokenValidContract=t.s,exports.isConfidentialWrapperContract=t.f,exports.isHandleDelegatedContract=r.u,exports.isOperatorContract=t.A,exports.isZeroHandle=r.p,exports.loadPendingUnshield=De,exports.loadPendingUnshieldRequest=Oe,exports.mainnet=c.a,exports.matchZamaError=e.a,exports.memoryStorage=a.u,exports.nameContract=t.b,exports.rateContract=t.j,exports.resolveChainRelayers=a.s,exports.resolveStorage=a.c,exports.revokeDelegationContract=r.d,exports.savePendingUnshield=Ee,exports.sepolia=c.o,exports.setOperatorContract=t.M,exports.supportsInterfaceContract=t.m,exports.symbolContract=t.x,exports.transferAndCallContract=E,exports.underlyingContract=t.w,exports.unwrapContract=t.N,exports.unwrapFromBalanceContract=t.P,exports.wrapContract=t.T;
|
|
2
2
|
//# sourceMappingURL=index.cjs.map
|