@privy-io/react-auth 1.52.5 → 1.52.6-beta-20240110194055

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.
Files changed (3) hide show
  1. package/dist/esm/index.js +126 -126
  2. package/dist/index.js +131 -131
  3. package/package.json +1 -1
package/dist/esm/index.js CHANGED
@@ -1,4 +1,4 @@
1
- var Ha=(e,t,o)=>{if(!t.has(e))throw TypeError("Cannot "+o)};var Il=(e,t,o)=>(Ha(e,t,"read from private field"),o?o.call(e):t.get(e)),Jn=(e,t,o)=>{if(t.has(e))throw TypeError("Cannot add the same private member more than once");t instanceof WeakSet?t.add(e):t.set(e,o)},Wl=(e,t,o,r)=>(Ha(e,t,"write to private field"),r?r.call(e,o):t.set(e,o),o);var Ml=(e,t,o)=>(Ha(e,t,"access private method"),o);import{getAddress as Fa}from"@ethersproject/address";import{StaticJsonRpcProvider as Y0,Web3Provider as xl}from"@ethersproject/providers";import{createStore as J0}from"mipd";import{useCallback as Q0,useEffect as zt,useMemo as Z0,useRef as Vn,useState as ce}from"react";import{FetchError as vf}from"ofetch";var Ye=class extends Error{constructor(o,r,n){super(o);r instanceof Error&&(this.cause=r),this.privyErrorCode=n}toString(){return`${this.type}${this.privyErrorCode?`-${this.privyErrorCode}`:""}: ${this.message}${this.cause?` [cause: ${this.cause}]`:""}`}},lo=class extends Ye{constructor(o,r,n,i,a){super(n,i,a);this.type=o;this.status=r}},w=class extends Ye{constructor(o,r,n){super(o,r,n);this.type="client_error"}},Qn=class extends w{constructor(){super("Request timed out",void 0,"client_request_timeout")}};var H=class extends Ye{constructor(o,r,n){super(o,r,n);this.type="connector_error"}},te=e=>{if(e instanceof Ye)return e;if(!(e instanceof vf))return Qe(e);if(!e.response)return new lo("api_error",null,e.message,e);let{type:t,message:o,error:r,code:n}=e.data;return new lo(t||"ApiError",e.response.status,o||r,e,n)},Qe=e=>e instanceof Ye?e:e instanceof Error?new w(e.message,e):new w(`Internal error: ${e}`);var Kr=class extends w{constructor(){super("Method called before `ready`. Ensure you wait until `ready` is true before calling.")}},Je=class extends w{constructor(t="Embedded wallet error",o){super(t,o,"unknown_embedded_wallet_error")}},Zn=class extends w{constructor(t="User must be authenticated"){super(t,void 0,"must_be_authenticated")}};var Xn=()=>"/api/v1/sessions",ei=()=>"/api/v1/sessions/logout",Ll=()=>"/api/v1/sessions/fork",ti=()=>"/api/v1/sessions/fork/recover",Nl=()=>"/api/v1/siwe/init",Ol=()=>"/api/v1/siwe/authenticate",Dl=()=>"/api/v1/siwe/link",Ul=()=>"/api/v1/passwordless/init",Fl=()=>"/api/v1/passwordless/authenticate",Bl=()=>"/api/v1/passwordless/link",Gl=()=>"/api/v1/passwordless_sms/init",Hl=()=>"/api/v1/passwordless_sms/authenticate",zl=()=>"/api/v1/passwordless_sms/link",Vl=()=>"/api/v1/oauth/init",$l=()=>"/api/v1/oauth/authenticate",jl=()=>"/api/v1/oauth/link",ql=()=>"/api/v1/siwe/unlink",Kl=()=>"/api/v1/passwordless/unlink",Yl=()=>"/api/v1/passwordless_sms/unlink",Jl=()=>"/api/v1/oauth/unlink",Ql=()=>"/api/v1/analytics_events",Zl=()=>"/api/v1/plugins/moonpay_on_ramp/sign",Xl=()=>"/api/v1/custom_jwt_account/authenticate",ec=()=>"/api/v1/mfa/passwordless_sms/init";var tc=()=>"/api/v1/mfa/passwordless_sms/enroll";var nr=class{constructor(t){this.meta={token:t}}async authenticate(){if(!this.api)throw new w("Auth flow has no API instance");try{let t=Xl(),o=await this.api.post(t,{token:this.meta.token});return{user:o.user,token:o.token,refresh_token:o.refresh_token,is_new_user:o.is_new_user}}catch(t){throw te(t)}}async link(){throw new Error("Unimplemented")}};var Do=class{constructor(t,o){this.meta={email:t,captchaToken:o}}async authenticate(){if(!this.api)throw new w("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new w("Email and email code must be set prior to calling authenticate.");try{let t=Fl(),o=await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode});return{user:o.user,token:o.token,refresh_token:o.refresh_token,is_new_user:o.is_new_user}}catch(t){throw te(t)}}async link(){if(!this.api)throw new w("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new w("Email and email code must be set prior to calling authenticate.");try{let t=Bl();return await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode})}catch(t){throw te(t)}}async sendCodeEmail(t,o){if(!this.api)throw new w("Auth flow has no API instance");if(t&&(this.meta.email=t),o&&(this.meta.captchaToken=o),!this.meta.email)throw new w("Email must be set when initialzing authentication.");try{let r=Ul();return await this.api.post(r,{email:this.meta.email,token:this.meta.captchaToken})}catch(r){throw te(r)}}};var co=class{constructor(t,o,r){this.meta={provider:t},this.meta.authorizationCode=o,this.meta.stateCode=r}isActive(){return!!(this.meta.authorizationCode&&this.meta.stateCode&&this.meta.provider)}async authenticate(){if(!this.api)throw new w("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new w("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling authenticate.");if(this.meta.authorizationCode==="undefined")throw new w("User denied confirmation during OAuth flow");try{let t=$l(),o=await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode});return{user:o.user,token:o.token,refresh_token:o.refresh_token,is_new_user:o.is_new_user}}catch(t){let o=te(t);throw o.privyErrorCode?new w(o.message||"Invalid code during OAuth flow.",void 0,o.privyErrorCode):o.message==="User denied confirmation during OAuth flow"?new w("Invalid code during oauth flow.",void 0,"oauth_user_denied"):new w("Invalid code during OAuth flow.",void 0,"unknown_auth_error")}}async link(){if(!this.api)throw new w("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new w("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling link.");if(this.meta.authorizationCode==="undefined")throw new w("User denied confirmation during OAuth flow");try{let t=jl();return await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode})}catch(t){throw te(t)}}async getAuthorizationUrl(){if(!this.api)throw new w("Auth flow has no API instance");if(!this.meta.provider)throw new w("Provider must be set when initialzing OAuth authentication.");try{let t=Vl();return await this.api.post(t,{provider:this.meta.provider,redirect_to:window.location.href})}catch(t){throw te(t)}}};var ct=class{constructor(t){this.promise=null;this.fn=t}execute(t){return this.promise===null&&(this.promise=(async()=>{try{return await this.fn(t)}finally{this.promise=null}})()),this.promise}};var Uo=class{constructor(t){this.createSiweMessage=(t,o,r,n,i,a,l)=>`${r} wants you to sign in with your Ethereum account:
1
+ var Ha=(e,t,o)=>{if(!t.has(e))throw TypeError("Cannot "+o)};var Wl=(e,t,o)=>(Ha(e,t,"read from private field"),o?o.call(e):t.get(e)),Jn=(e,t,o)=>{if(t.has(e))throw TypeError("Cannot add the same private member more than once");t instanceof WeakSet?t.add(e):t.set(e,o)},Ml=(e,t,o,r)=>(Ha(e,t,"write to private field"),r?r.call(e,o):t.set(e,o),o);var Ll=(e,t,o)=>(Ha(e,t,"access private method"),o);import{getAddress as Fa}from"@ethersproject/address";import{StaticJsonRpcProvider as Y0,Web3Provider as Tl}from"@ethersproject/providers";import{createStore as J0}from"mipd";import{useCallback as Q0,useEffect as zt,useMemo as Z0,useRef as Vn,useState as de}from"react";import{FetchError as vf}from"ofetch";var Ye=class extends Error{constructor(o,r,n){super(o);r instanceof Error&&(this.cause=r),this.privyErrorCode=n}toString(){return`${this.type}${this.privyErrorCode?`-${this.privyErrorCode}`:""}: ${this.message}${this.cause?` [cause: ${this.cause}]`:""}`}},lo=class extends Ye{constructor(o,r,n,i,a){super(n,i,a);this.type=o;this.status=r}},w=class extends Ye{constructor(o,r,n){super(o,r,n);this.type="client_error"}},Qn=class extends w{constructor(){super("Request timed out",void 0,"client_request_timeout")}};var H=class extends Ye{constructor(o,r,n){super(o,r,n);this.type="connector_error"}},te=e=>{if(e instanceof Ye)return e;if(!(e instanceof vf))return Qe(e);if(!e.response)return new lo("api_error",null,e.message,e);let{type:t,message:o,error:r,code:n}=e.data;return new lo(t||"ApiError",e.response.status,o||r,e,n)},Qe=e=>e instanceof Ye?e:e instanceof Error?new w(e.message,e):new w(`Internal error: ${e}`);var Kr=class extends w{constructor(){super("Method called before `ready`. Ensure you wait until `ready` is true before calling.")}},Je=class extends w{constructor(t="Embedded wallet error",o){super(t,o,"unknown_embedded_wallet_error")}},Zn=class extends w{constructor(t="User must be authenticated"){super(t,void 0,"must_be_authenticated")}};var Xn=()=>"/api/v1/sessions",ei=()=>"/api/v1/sessions/logout",Nl=()=>"/api/v1/sessions/fork",ti=()=>"/api/v1/sessions/fork/recover",Ol=()=>"/api/v1/siwe/init",Dl=()=>"/api/v1/siwe/authenticate",Ul=()=>"/api/v1/siwe/link",Fl=()=>"/api/v1/passwordless/init",Bl=()=>"/api/v1/passwordless/authenticate",Gl=()=>"/api/v1/passwordless/link",Hl=()=>"/api/v1/passwordless_sms/init",zl=()=>"/api/v1/passwordless_sms/authenticate",Vl=()=>"/api/v1/passwordless_sms/link",$l=()=>"/api/v1/oauth/init",jl=()=>"/api/v1/oauth/authenticate",ql=()=>"/api/v1/oauth/link",Kl=()=>"/api/v1/siwe/unlink",Yl=()=>"/api/v1/passwordless/unlink",Jl=()=>"/api/v1/passwordless_sms/unlink",Ql=()=>"/api/v1/oauth/unlink",Zl=()=>"/api/v1/analytics_events",Xl=()=>"/api/v1/plugins/moonpay_on_ramp/sign",ec=()=>"/api/v1/custom_jwt_account/authenticate",tc=()=>"/api/v1/mfa/passwordless_sms/init";var oc=()=>"/api/v1/mfa/passwordless_sms/enroll";var ar=class{constructor(t){this.meta={token:t}}async authenticate(){if(!this.api)throw new w("Auth flow has no API instance");try{let t=ec(),o=await this.api.post(t,{token:this.meta.token});return{user:o.user,token:o.token,refresh_token:o.refresh_token,is_new_user:o.is_new_user}}catch(t){throw te(t)}}async link(){throw new Error("Unimplemented")}};var Do=class{constructor(t,o){this.meta={email:t,captchaToken:o}}async authenticate(){if(!this.api)throw new w("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new w("Email and email code must be set prior to calling authenticate.");try{let t=Bl(),o=await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode});return{user:o.user,token:o.token,refresh_token:o.refresh_token,is_new_user:o.is_new_user}}catch(t){throw te(t)}}async link(){if(!this.api)throw new w("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new w("Email and email code must be set prior to calling authenticate.");try{let t=Gl();return await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode})}catch(t){throw te(t)}}async sendCodeEmail(t,o){if(!this.api)throw new w("Auth flow has no API instance");if(t&&(this.meta.email=t),o&&(this.meta.captchaToken=o),!this.meta.email)throw new w("Email must be set when initialzing authentication.");try{let r=Fl();return await this.api.post(r,{email:this.meta.email,token:this.meta.captchaToken})}catch(r){throw te(r)}}};var co=class{constructor(t,o,r){this.meta={provider:t},this.meta.authorizationCode=o,this.meta.stateCode=r}isActive(){return!!(this.meta.authorizationCode&&this.meta.stateCode&&this.meta.provider)}async authenticate(){if(!this.api)throw new w("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new w("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling authenticate.");if(this.meta.authorizationCode==="undefined")throw new w("User denied confirmation during OAuth flow");try{let t=jl(),o=await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode});return{user:o.user,token:o.token,refresh_token:o.refresh_token,is_new_user:o.is_new_user}}catch(t){let o=te(t);throw o.privyErrorCode?new w(o.message||"Invalid code during OAuth flow.",void 0,o.privyErrorCode):o.message==="User denied confirmation during OAuth flow"?new w("Invalid code during oauth flow.",void 0,"oauth_user_denied"):new w("Invalid code during OAuth flow.",void 0,"unknown_auth_error")}}async link(){if(!this.api)throw new w("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new w("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling link.");if(this.meta.authorizationCode==="undefined")throw new w("User denied confirmation during OAuth flow");try{let t=ql();return await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode})}catch(t){throw te(t)}}async getAuthorizationUrl(){if(!this.api)throw new w("Auth flow has no API instance");if(!this.meta.provider)throw new w("Provider must be set when initialzing OAuth authentication.");try{let t=$l();return await this.api.post(t,{provider:this.meta.provider,redirect_to:window.location.href})}catch(t){throw te(t)}}};var ct=class{constructor(t){this.promise=null;this.fn=t}execute(t){return this.promise===null&&(this.promise=(async()=>{try{return await this.fn(t)}finally{this.promise=null}})()),this.promise}};var Uo=class{constructor(t){this.createSiweMessage=(t,o,r,n,i,a,l)=>`${r} wants you to sign in with your Ethereum account:
2
2
  ${o}
3
3
 
4
4
  ${l}
@@ -9,7 +9,7 @@ Chain ID: ${t}
9
9
  Nonce: ${a}
10
10
  Issued At: ${i}
11
11
  Resources:
12
- - https://privy.io`;this.getNonceOnce=new ct(this._getNonceOnce.bind(this)),this.wallet=t}get meta(){return{connectorType:this.wallet.connectorType,walletClientType:this.wallet.walletClientType}}async authenticate(){if(!this.api)throw new w("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign(),r=await this.api.post(Ol(),{message:t,signature:o,chainId:this.wallet.chainId,walletClientType:this.wallet.walletClientType,connectorType:this.wallet.connectorType});return{user:r.user,token:r.token,refresh_token:r.refresh_token,is_new_user:r.is_new_user}}catch(t){throw te(t)}}async link(){if(!this.api)throw new w("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign();return await this.api.post(Dl(),{message:t,signature:o,chainId:this.wallet.chainId,walletClientType:this.wallet.walletClientType,connectorType:this.wallet.connectorType})}catch(t){throw te(t)}}async sign(){if(!this.api)throw new w("Auth flow has no API instance");if(await this.buildSiweMessage(),!this.preparedMessage)throw new w("Could not prepare SIWE message");let t=await this.wallet.sign(this.preparedMessage);return{message:this.preparedMessage,signature:t}}async _getNonceOnce(){if(!this.api)throw new w("Auth flow has no API instance");let t=this.wallet.address;return(await this.api.post(Nl(),{address:t})).nonce}async buildSiweMessage(){if(!this.api)throw new w("Auth flow has no API instance");let t=this.wallet.address,o=this.wallet.chainId.replace("eip155:","");return this.nonce||(this.nonce=await this.getNonceOnce.execute()),this.preparedMessage=this.prepareMessage(o,t,this.nonce),this.preparedMessage}prepareMessage(t,o,r){let n=window.location.host,i=window.location.origin,a="By signing, you are proving you own this wallet and logging in. This does not initiate a transaction or cost any fees.",l=new Date().toISOString();return this.createSiweMessage(t,o,n,i,l,r,a)}};var Fo=class{constructor(t,o){this.meta={phoneNumber:t,captchaToken:o}}async authenticate(){if(!this.api)throw new w("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new w("phone number and sms code must be set prior to calling authenticate.");try{let t=Hl(),o=await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode});return{user:o.user,token:o.token,refresh_token:o.refresh_token,is_new_user:o.is_new_user}}catch(t){throw te(t)}}async link(){if(!this.api)throw new w("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new w("phone number and sms code must be set prior to calling authenticate.");try{let t=zl();return await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode})}catch(t){throw te(t)}}async sendSmsCode(t,o){if(!this.api)throw new w("Auth flow has no API instance");if(t&&(this.meta.phoneNumber=t),o&&(this.meta.captchaToken=o),!this.meta.phoneNumber)throw new w("phone nNumber must be set when initialzing authentication.");try{let r=Gl();return await this.api.post(r,{phoneNumber:this.meta.phoneNumber,token:this.meta.captchaToken})}catch(r){throw te(r)}}};import{v4 as nh}from"uuid";function Ze(e){return new Date(e*1e3)}function wf(e){let t=[];for(let o of e){let r=o.type;switch(o.type){case"wallet":let n={address:o.address,type:o.type,verifiedAt:Ze(o.verified_at),chainType:"ethereum",chainId:o.chain_id,walletClient:o.wallet_client_type==="privy"?"privy":"unknown",walletClientType:o.wallet_client_type,connectorType:o.connector_type,recoveryMethod:o.recovery_method};t.push(n);break;case"email":let i={address:o.address,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(i);break;case"phone":let a={number:o.phoneNumber,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(a);break;case"google_oauth":let l={subject:o.subject,email:o.email,name:o.name,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(l);break;case"twitter_oauth":let s={subject:o.subject,username:o.username,name:o.name,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(s);break;case"discord_oauth":let c={subject:o.subject,username:o.username,email:o.email,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(c);break;case"github_oauth":let u={subject:o.subject,username:o.username,name:o.name,email:o.email,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(u);break;case"tiktok_oauth":let y={subject:o.subject,username:o.username,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(y);break;case"linkedin_oauth":let C={subject:o.subject,name:o.name,email:o.email,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(C);break;case"apple_oauth":let m={subject:o.subject,email:o.email,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(m);break;case"custom_auth":t.push({type:o.type,customUserId:o.custom_user_id,verifiedAt:Ze(o.verified_at)});break;default:console.warn(`Unrecognized account type: ${r}. Please consider upgrading the Privy SDK.`)}}return t}function _t(e,t){return e.sort((o,r)=>r.verifiedAt.getTime()-o.verifiedAt.getTime()),e.find(o=>o.type===t)}var ie=e=>e?.linkedAccounts.find(t=>t.type==="wallet"&&t.walletClientType==="privy")||null,Cf=e=>e.linkedAccounts.filter(t=>t.type==="wallet"),po=(e,t)=>t==="all-users"&&!ie(e)||t==="users-without-wallets"&&!Cf(e)?.length;function vt(e){if(!e)return null;let t=wf(e.linked_accounts),o=_t(t,"wallet"),r=_t(t,"email"),n=_t(t,"phone"),i=_t(t,"google_oauth"),a=_t(t,"twitter_oauth"),l=_t(t,"discord_oauth"),s=_t(t,"github_oauth"),c=_t(t,"tiktok_oauth"),u=_t(t,"linkedin_oauth"),y=_t(t,"apple_oauth"),C=e.mfa_methods.map(({type:P,verified_at:b})=>({type:P,verifiedAt:Ze(b)}));return{id:e.id,createdAt:Ze(e.created_at),linkedAccounts:t,email:r&&{address:r?.address},phone:n&&{number:n?.number},wallet:o&&{address:o.address,chainType:o.chainType,chainId:o.chainId,walletClient:o.walletClient,walletClientType:o.walletClientType,connectorType:o.connectorType,recoveryMethod:o.recoveryMethod},google:i&&{subject:i.subject,email:i.email,name:i.name},twitter:a&&{subject:a.subject,username:a.username,name:a.name},discord:l&&{subject:l.subject,username:l.username,email:l.email},github:s&&{subject:s.subject,username:s.username,name:s.name,email:s.email},tiktok:c&&{subject:c.subject,username:c.username},linkedin:u&&{subject:u.subject,name:u.name},apple:y&&{subject:y.subject,email:y.email},mfaMethods:C.map(P=>P.type)}}import{getAddress as Vc}from"@ethersproject/address";import Xf from"eventemitter3";var oc="1.52.5";var oi="4df5e2316331463a9130964bd6078dfa",rc="fe9c30fc-3bc5-4064-91e2-6ab5887f8f4d",nc="34357d3c125c2bcf2ce2bc3309d98715",ri="https://auth.privy.io",ic=2e4,Xe=1400,ac=2500,za=oc;var Bo="privy:token",Va="privy-token",ni="privy:refresh_token",$a="privy-refresh-token",sc="privy-session",Yr="privy:session_transfer_token",Ef="privy:wallet",Jr="privy:caid",ii=e=>`${Ef}:${e}`,ja="privy:connectors",qa="privy:connections";var Qr=12e4,qt=1,Ka="0x1",ir=3e4,lc="https://api.moonpay.com/v1",cc="https://api.moonpay.com/v1",dc="pk_live_hirbpu0cVcLHrjktC9l7fbc9ctjv0SL",pc="pk_test_fqWjXZMSFwloh7orvJsRfjiUHXJqFzI",uc="0x420000000000000000000000000000000000000F",mc=["function getL1Fee(bytes memory _data) external view returns (uint256)"];var Ya=class{constructor(){this._cache={}}get(t){return this._cache[t]}put(t,o){o!==void 0?this._cache[t]=o:this.del(t)}del(t){delete this._cache[t]}getKeys(){return Object.keys(this._cache)}},Ja=class{get(t){let o=localStorage.getItem(t);return o===null?void 0:JSON.parse(o)}put(t,o){o!==void 0?localStorage.setItem(t,JSON.stringify(o)):this.del(t)}del(t){localStorage.removeItem(t)}getKeys(){return Object.entries(localStorage).map(([t])=>t)}};function Pf(){return typeof window<"u"&&window.localStorage?new Ja:new Ya}var Q=Pf();function fc(){let e=window,t=e.ethereum;if(!t)return[];let o=[];if(t.providers?.length)for(let r of t.providers)r&&o.push(r);return o.push(e.ethereum),o}var ai=e=>{if(e.isApexWallet)return"Apex Wallet";if(e.isAvalanche)return"Core Wallet";if(e.isBackpack)return"Backpack";if(e.isBifrost)return"Bifrost Wallet";if(e.isBitKeep)return"BitKeep";if(e.isBitski)return"Bitski";if(e.isBlockWallet)return"BlockWallet";if(e.isBraveWallet)return"Brave Wallet";if(e.isClover)return"Clover";if(e.isCoin98)return"Coin98 Wallet";if(e.isCoinbaseWallet)return"Coinbase Wallet";if(e.isDawn)return"Dawn Wallet";if(e.isDefiant)return"Defiant";if(e.isDesig)return"Desig Wallet";if(e.isEnkrypt)return"Enkrypt";if(e.isExodus)return"Exodus";if(e.isFordefi)return"Fordefi";if(e.isFrame)return"Frame";if(e.isFrontier)return"Frontier Wallet";if(e.isGamestop)return"GameStop Wallet";if(e.isHaqqWallet)return"HAQQ Wallet";if(e.isHyperPay)return"HyperPay Wallet";if(e.isImToken)return"ImToken";if(e.isHaloWallet)return"Halo Wallet";if(e.isKuCoinWallet)return"KuCoin Wallet";if(e.isMathWallet)return"MathWallet";if(e.isNovaWallet)return"Nova Wallet";if(e.isOkxWallet||e.isOKExWallet)return"OKX Wallet";if(e.isOneInchIOSWallet||e.isOneInchAndroidWallet)return"1inch Wallet";if(e.isOneKey)return"OneKey Wallet";if(e.isOpera)return"Opera";if(e.isPhantom)return"Phantom";if(e.isPortal)return"Ripio Portal";if(e.isRabby)return"Rabby Wallet";if(e.isRainbow)return"Rainbow";if(e.isSafePal)return"SafePal Wallet";if(e.isStatus)return"Status";if(e.isSubWallet)return"SubWallet";if(e.isTalisman)return"Talisman";if(e.isTally||e.isTaho)return"Taho";if(e.isTokenPocket)return"TokenPocket";if(e.isTokenary)return"Tokenary";if(e.isTrust||e.isTrustWallet)return"Trust Wallet";if(e.isTTWallet)return"TTWallet";if(e.isXDEFI)return"XDEFI Wallet";if(e.isZeal)return"Zeal";if(e.isZerion)return"Zerion";if(e.isMetaMask)return"MetaMask"};var Qa=(e,t)=>{if(!e.isMetaMask)return!1;if(e.isMetaMask&&!t)return!0;if(e.isBraveWallet&&!e._events&&!e._state||ai(e)!=="MetaMask")return!1;if(e.providers){for(let o of e.providers)if(!Qa(o))return!1}return!0},kt=()=>!!("phantom"in window&&window?.phantom?.ethereum?.isPhantom),hc=()=>{let e=window;if(!e.ethereum)return!1;if(e.ethereum.isCoinbaseWallet)return!0;if(e.ethereum.providers){for(let t of e.ethereum.providers)if(t&&t.isCoinbaseWallet)return!0}return!1};var yc=e=>!!String(e).toLowerCase().match(/^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/),gc=(e,t)=>{let o=e.slice(0),r=[];for(;o.length;)r.push(o.splice(0,t));return r},uo=(e,t=3,o=4)=>{if(!e)return"";let r=2,n=3;if(t+o+r+n>=e.length)return e;let i=e.slice(0,r+t),a=e.slice(e.length-o,e.length);return`${i}...${a}`},Za=e=>new Promise(t=>setTimeout(t,e));function vc(e,{interval:t=100,timeout:o=5e3}={}){return new Promise((r,n)=>{let i=0,a,l=()=>{if(i>=o){n("Max attempts reached without result");return}if(a=e(),i+=t,a!=null){r(a);return}setTimeout(l,t)};l()})}var wc=(e,t={})=>{let o=t.delayMs||150,r=t.maxAttempts||270;return new Promise(async(n,i)=>{let a=!1,l=0;for(;!a&&l<r;){if(t.abortSignal?.aborted)return;e().then(()=>{a=!0,n()},(...s)=>{a=!0,i(...s)}),l+=1,await Za(o)}a||i(new Error("Exceeded max attempts before resolving function"))})},si=(e,t,o={})=>{let r=new URL(t,e);for(let[n,i]of Object.entries(o))r.searchParams.set(n,i);return r.href};var Xa=e=>e.replace(/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g,""),Go=e=>typeof e=="string"?e:"0x"+e.toString(16);async function Cc(e,t=3e3){let o=!1,r=window;return new Promise(n=>{r.ethereum?i():(window.addEventListener("ethereum#initialized",i,{once:!0}),setTimeout(()=>{i()},t));function i(){if(o)return;o=!0,window.removeEventListener("ethereum#initialized",i);let a=e.getProviders(),l=[];for(let s of a)s.info.rdns!=="com.coinbase.wallet"&&l.push({type:s.info.name.toLowerCase().replace(/\s/g,"_"),eip6963InjectedProvider:s});kt()&&l.push({type:"phantom"});for(let s of fc()){let c=ai(s);if(!a.some(u=>u.info.name===c)){if(Qa(s,!0)&&!l.find(u=>u.type==="metamask")){l.push({type:"metamask",legacyInjectedProvider:s});continue}l.find(u=>u.type==="unknown_browser_extension")||l.push({type:"unknown_browser_extension",legacyInjectedProvider:s})}}n(l)}})}function ar(e){return`eip155:${String(Number(e))}`}var wt=(e,t,o)=>{let r=Number(e),n=t.find(a=>a.id===r);if(!n)throw new H(`Unsupported chainId ${e}`,4901);let i;if(o.rpcUrls&&o.rpcUrls[r]?i=o.rpcUrls[r]:n.rpcUrls.infura?.http[0]?i=n.rpcUrls.infura.http[0]+"/"+oi:n.rpcUrls.blast?.http[0]?i=n.rpcUrls.blast.http[0]+"/"+rc:i=n.rpcUrls.default?.http[0],!i)throw new H(`No RPC url found for ${e}`);return i},bc=(e,t)=>{let o=Number(e),r=t.find(n=>n.id===o);if(!r)throw new H(`Unsupported chainId ${e}`,4901);return r.blockExplorers?.default.url};import Mf from"@coinbase/wallet-sdk";import{jsx as Ec,jsxs as xf}from"react/jsx-runtime";var Zr=({style:e,...t})=>xf("svg",{width:"1024",height:"1024",viewBox:"0 0 1024 1024",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"28px",width:"28px",...e},...t,children:[Ec("rect",{width:"1024",height:"1024",fill:"#0052FF",rx:100,ry:100}),Ec("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M152 512C152 710.823 313.177 872 512 872C710.823 872 872 710.823 872 512C872 313.177 710.823 152 512 152C313.177 152 152 313.177 152 512ZM420 396C406.745 396 396 406.745 396 420V604C396 617.255 406.745 628 420 628H604C617.255 628 628 617.255 628 604V420C628 406.745 617.255 396 604 396H420Z",fill:"white"})]});import{getAddress as It}from"@ethersproject/address";import{Web3Provider as kc}from"@ethersproject/providers";import{default as If}from"eventemitter3";import{StaticJsonRpcProvider as xc}from"@ethersproject/providers";import Rf from"eventemitter3";var Tf=["eth_sign","eth_populateTransactionRequest","eth_signTransaction","personal_sign","eth_signTypedData_v4"],Pc=e=>Tf.includes(e);import{ErrorCode as Sf}from"@ethersproject/logger";var sr=class extends H{constructor(){super("Wallet timeout");this.type="wallet_error"}},lr=class extends H{constructor(){super("User rejected connection");this.type="wallet_error"}},et=e=>{if(e instanceof H)return e;if(e?.code&&e?.reason){let t=new De(e);return e.code===Sf.ACTION_REJECTED&&(t.details=Ve.E4001_USER_REJECTED_REQUEST),t}return e?.code?new De(e):new H("Unknown connector error",e)},At=class extends Ye{constructor(o,r,n){super(o);this.type="provider_error";this.code=r,this.data=n}},De=class extends At{constructor(o){let r=o;super(r.message,r.code,r.data);let n=Object.values(Ve).find(i=>i.eipCode===r.code);this.details=n||Ve.UNKNOWN_ERROR,r.code===-32002&&(r.message?.includes("already pending for origin")?r.message?.includes("wallet_requestPermissions")?this.details=Ve.E32002_CONNECTION_ALREADY_PENDING:this.details=Ve.E32002_REQUEST_ALREADY_PENDING:r.message?.includes("Already processing")&&r.message.includes("eth_requestAccounts")&&(this.details=Ve.E32002_WALLET_LOCKED))}},_f={ERROR_USER_EXISTS:{message:"User already exists for this address",detail:"Try another address!",retryable:!1},ERROR_TIMED_OUT:{message:"Wallet request timed out",detail:"Please try connecting again.",retryable:!0},ERROR_WALLET_CONNECTION:{message:"Could not log in with wallet",detail:"Please try connecting again.",retryable:!0},ERROR_USER_REJECTED_CONNECTION:{message:"You rejected the request",detail:"Please try connecting again.",retryable:!0}},kf={E32002_CONNECTION_ALREADY_PENDING:{eipCode:-32002,message:"Connection request already pending",detail:"Don\u2019t see your wallet? Check your other browser windows.",retryable:!1},E32002_REQUEST_ALREADY_PENDING:{eipCode:-32002,message:"Resource request already pending",detail:"Don\u2019t see your wallet? Check your other browser windows.",retryable:!1},E32002_WALLET_LOCKED:{eipCode:-32002,message:"Wallet might be locked",detail:"Don\u2019t see your wallet? Check your other browser windows.",retryable:!1},E4001_USER_REJECTED_REQUEST:{eipCode:4001,message:"Signature rejected",detail:"Please try signing again.",retryable:!0}},Af={E4001_DEFAULT_USER_REJECTED_REQUEST:{eipCode:4001,message:"User Rejected Request",detail:"The user rejected the request.",default:!0,retryable:!0},E4100_DEFAULT_UNAUTHORIZED:{eipCode:4100,message:"Unauthorized",detail:"The requested method and/or account has not been authorized by the user.",default:!0,retryable:!1},E4200_DEFAULT_UNSUPPORTED_METHOD:{eipCode:4200,message:"Unsupported Method",detail:"The Provider does not support the requested method.",default:!0,retryable:!1},E4900_DEFAULT_DISCONNECTED:{eipCode:4900,message:"Disconnected",detail:"The Provider is disconnected from all chains.",default:!0,retryable:!0},E4901_DEFAULT_CHAIN_DISCONNECTED:{eipCode:4901,message:"Chain Disconnected",detail:"The Provider is not connected to the requested chain.",default:!0,retryable:!0},E32700_DEFAULT_PARSE_ERROR:{eipCode:-32700,message:"Parse error",detail:"Invalid JSON",default:!0,retryable:!1},E32600_DEFAULT_INVALID_REQUEST:{eipCode:-32600,message:"Invalid request",detail:"JSON is not a valid request object",default:!0,retryable:!1},E32601_DEFAULT_METHOD_NOT_FOUND:{eipCode:-32601,message:"Method not found",detail:"Method does not exist",default:!0,retryable:!1},E32602_DEFAULT_INVALID_PARAMS:{eipCode:-32602,message:"Invalid params",detail:"Invalid method parameters",default:!0,retryable:!1},E32603_DEFAULT_INTERNAL_ERROR:{eipCode:-32603,message:"Internal error",detail:"Internal JSON-RPC error",default:!0,retryable:!0},E32000_DEFAULT_INVALID_INPUT:{eipCode:-32e3,message:"Invalid input",detail:"Missing or invalid parameters",default:!0,retryable:!1},E32001_DEFAULT_RESOURCE_NOT_FOUND:{eipCode:-32001,message:"Resource not found",detail:"Requested resource not found",default:!0,retryable:!1},E32002_DEFAULT_RESOURCE_UNAVAILABLE:{eipCode:-32002,message:"Resource unavailable",detail:"Requested resource not available",default:!0,retryable:!0},E32003_DEFAULT_TRANSACTION_REJECTED:{eipCode:-32003,message:"Transaction rejected",detail:"Transaction creation failed",default:!0,retryable:!0},E32004_DEFAULT_METHOD_NOT_SUPPORTED:{eipCode:-32004,message:"Method not supported",detail:"Method is not implemented",default:!0,retryable:!1},E32005_DEFAULT_LIMIT_EXCEEDED:{eipCode:-32005,message:"Limit exceeded",detail:"Request exceeds defined limit",default:!0,retryable:!1},E32006_DEFAULT_JSON_RPC_VERSION_NOT_SUPPORTED:{eipCode:-32006,message:"JSON-RPC version not supported",detail:"Version of JSON-RPC protocol is not supported",default:!0,retryable:!1}},Ve={UNKNOWN_ERROR:{eipCode:0,message:"Unknown error",detail:"Unknown error",retryable:!0},...Af,...kf},Kt={..._f,...Ve};var re=class{constructor(t,o){this.removeListener=(t,o)=>{if(this.walletProvider)try{return this.walletProvider.removeListener(t,o)}catch{console.warn("Unable to remove wallet provider listener")}};this.walletTimeout=(t=new sr,o=this.rpcTimeoutDuration)=>new Promise((r,n)=>setTimeout(()=>{n(t)},o));this.setWalletProvider=t=>{this.walletProvider&&this._subscriptions.forEach(o=>{this.removeListener(o.eventName,o.listener)}),this.walletProvider=t,this._subscriptions.forEach(o=>{this.walletProvider?.on(o.eventName,o.listener)})};this.walletProvider=t,this.rpcTimeoutDuration=o||Qr,this._subscriptions=[]}on(t,o){if(this.walletProvider)return this.walletProvider.on(t,o);this._subscriptions.push({eventName:t,listener:o})}async request(t){if(!this.walletProvider)throw new H(`A wallet request of type ${t.method} was made before setting a wallet provider.`);return Promise.race([this.walletProvider.request(t),this.walletTimeout()]).catch(o=>{throw et(o)})}},mo=class extends Error{constructor(o,r,n){super(o);this.code=r,this.data=n}},li=class extends Rf{constructor(o,r,n,i,a=1){super();this.walletProxy=o,this.address=r,this.chainId=a,this.rpcConfig=n,this.chains=i,this.provider=new xc(wt(a,this.chains,n)),this.rpcTimeoutDuration=cr(n,"privy")}async handleSendTransaction(o){if(!o.params||!Array.isArray(o.params))throw new mo(`Invalid params for ${o.method}`,4200);let r=o.params[0];if(!await Re()||!this.address)throw new mo("Disconnected",4900);return(await Sc(r)).hash}handleSwitchEthereumChain(o){if(!o.params||!Array.isArray(o.params))throw new mo(`Invalid params for ${o.method}`,4200);let r;if(typeof o.params[0]=="string")r=o.params[0];else if("chainId"in o.params[0]&&typeof o.params[0].chainId=="string")r=o.params[0].chainId;else throw new mo(`Invalid params for ${o.method}`,4200);this.chainId=Number(r),this.provider=new xc(wt(this.chainId,this.chains,this.rpcConfig)),this.emit("chainChanged",r)}async handlePersonalSign(o){if(!o.params||!Array.isArray(o.params))throw new Error("Invalid params for eth_estimateGas");let r=o.params[0];return await Tc(r)}async handleEstimateGas(o){if(!o.params||!Array.isArray(o.params))throw new Error("Invalid params for eth_estimateGas");delete o.params[0].gasPrice,delete o.params[0].maxFeePerGas,delete o.params[0].maxPriorityFeePerGas;let r={...o.params[0],chainId:Go(this.chainId)};try{return await this.provider.send("eth_estimateGas",[r])}catch{return delete r.from,await this.provider.send("eth_estimateGas",[r])}}async request(o){switch(console.debug("Embedded1193Provider.request() called with args",o),o.method){case"eth_accounts":case"eth_requestAccounts":return this.address?[this.address]:[];case"eth_chainId":return Go(this.chainId);case"eth_estimateGas":return this.handleEstimateGas(o);case"eth_sendTransaction":return this.handleSendTransaction(o);case"wallet_switchEthereumChain":return this.handleSwitchEthereumChain(o);case"personal_sign":return this.handlePersonalSign(o);default:break}if(Pc(o.method)){let r=await Re();if(await _c(),!r||!this.address)throw new mo("Disconnected",4900);try{return(await this.walletProxy.rpc({address:this.address,accessToken:r,request:{method:o.method,params:o.params}})).response.data}catch(n){throw console.error(n),new mo("Disconnected",4900)}}else return this.provider.send(o.method,o.params)}async connect(){let o=await Re();if(!o||!this.address)return null;try{return(await this.walletProxy.connect({address:this.address,accessToken:o})).address}catch(r){return console.error(r),null}}},Rt=class extends re{constructor(o){super(o,o.rpcTimeoutDuration)}},fo=class extends re{constructor(t){super(t,t.rpcTimeoutDuration)}sendAsync(t,o){throw new Error("sendAsync is no longer supported by EIP-1193. Use the request method instead.")}};var Wf=(e,t)=>{switch(t){case"coinbase_wallet":return e.message.includes("addEthereumChain");default:return e.code===4902||e.message?.includes("4902")}},$e=class extends If{constructor(o,r,n,i){super();this.onAccountsChanged=o=>{o.length===0?this.onDisconnect():this.syncAccounts(o)};this.onChainChanged=o=>{this.wallets.forEach(r=>{r.chainId=ar(o),this.walletClientType==="privy"&&Q.put(ii(r.address),o)}),this.emit("walletsUpdated")};this.onDisconnect=()=>{this.connected=!1,this.wallets=[],this.emit("walletsUpdated")};this.onConnect=()=>{this.connected=!0,this.syncAccounts()};this.wallets=[],this.walletClientType=o,this.chains=r,this.defaultChain=n,this.rpcConfig=i,this.rpcTimeoutDuration=cr(i,o),this.connected=!1,this.initialized=!1}buildConnectedWallet(o,r){let n=async()=>!!this.wallets.find(i=>It(i.address)===It(o));return{address:It(o),chainId:r,switchChain:async i=>{if(!n)throw new H("Wallet is not currently connected.");let a=this.wallets.find(y=>It(y.address)===It(o))?.chainId;if(!a)throw new H("Unable to determine current chainId.");let l,s;if(typeof i=="number"?(l=`0x${i.toString(16)}`,s=i):(l=i,s=Number(i)),a===ar(l))return;let c=this.chains.find(y=>y.id===s);if(!c)throw new H(`Unsupported chainId: ${i}`);let u=async()=>{await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[{chainId:l}]})};try{return await u()}catch(y){if(Wf(y,this.walletClientType))return await this.proxyProvider.request({method:"wallet_addEthereumChain",params:[{chainId:l,chainName:c.name,nativeCurrency:c.nativeCurrency,rpcUrls:[c.rpcUrls.public?.http[0]??""],blockExplorerUrls:[c.blockExplorers?.default.url??""]}]}),u();throw this.walletClientType==="rainbow"&&y.message?.includes("wallet_switchEthereumChain")?new H(`Rainbow does not support the chainId ${r}`):y}},connectedAt:Date.now(),walletClientType:this.walletClientType,connectorType:this.connectorType,isConnected:n,getEthereumProvider:async()=>{if(!await n())throw new H("Wallet is not currently connected.");return this.proxyProvider},getEthersProvider:async()=>{if(!await n())throw new H("Wallet is not currently connected.");return new kc(new Rt(this.proxyProvider))},getWeb3jsProvider:async()=>{if(!await n())throw new H("Wallet is not currently connected.");return new fo(this.proxyProvider)},sign:async i=>{if(!await n())throw new H("Wallet is not currently connected.");return await this.sign(i)},disconnect:()=>{this.disconnect()}}}async syncAccounts(o){let r=o;if(r===void 0){let c=await this.proxyProvider.request({method:"eth_accounts"});Array.isArray(c)&&(r=c)}if(!r||!Array.isArray(r)||r.length<=0||!r[0])return;let n=r[0],i=It(n),a=[],l;if(this.walletClientType==="privy"){let c=Q.get(ii(i));this.chains.find(u=>u.id===Number(c))||(Q.del(ii(i)),c=null),l=c||`0x${this.defaultChain.id.toString(16)}`;try{await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[{chainId:l}]})}catch{console.warn(`Unable to switch embedded wallet to chain ID ${l} on initialization`)}}else try{let c=await this.proxyProvider.request({method:"eth_chainId"});if(typeof c=="string")l=c;else if(typeof c=="number")l=`0x${c.toString(16)}`;else throw new Error("Invalid chainId returned from provider")}catch(c){console.warn(`Failed to get chainId from provider, defaulting to ${Ka}`,c),l=Ka}let s=ar(l);a.find(c=>It(c.address)===i)||a.push(this.buildConnectedWallet(It(n),s)),ci(a,this.wallets)||(this.wallets=a,this.emit("walletsUpdated"))}async getConnectedWallet(){let o=await this.proxyProvider.request({method:"eth_accounts"});return this.wallets.sort((r,n)=>n.connectedAt-r.connectedAt).find(r=>o.find(n=>It(n)===It(r.address)))||null}async isConnected(){let o=await this.proxyProvider.request({method:"eth_accounts"});return Array.isArray(o)&&o.length>0}async sign(o){return await this.connect({showPrompt:!1}),new kc(new Rt(this.proxyProvider)).getSigner().signMessage(o)}subscribeListeners(){this.proxyProvider.on("accountsChanged",this.onAccountsChanged),this.proxyProvider.on("chainChanged",this.onChainChanged),this.proxyProvider.on("disconnect",this.onDisconnect),this.proxyProvider.on("connect",this.onConnect)}unsubscribeListeners(){this.proxyProvider.removeListener("accountsChanged",this.onAccountsChanged),this.proxyProvider.removeListener("chainChanged",this.onChainChanged),this.proxyProvider.removeListener("disconnect",this.onDisconnect),this.proxyProvider.removeListener("connect",this.onConnect)}};var Lf=e=>{let t=`https://mainnet.infura.io/v3/${oi}`,o=1;return e.makeWeb3Provider(t,o)},di,pi=class extends $e{constructor(o,r,n){super("coinbase_wallet",o,r,n);this.connectorType="coinbase_wallet";this.proxyProvider=new re(void 0,this.rpcTimeoutDuration),this.subscribeListeners(),di||(di=new Mf({appName:"Privy",darkMode:!1,headlessMode:!1,enableMobileWalletLink:!0})),this.proxyProvider.setWalletProvider(Lf(di)),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}disconnect(){di.disconnect()}get walletBranding(){return{name:"Coinbase Wallet",icon:Zr}}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new H("Unable to retrieve accounts");this.connected=!0,await this.syncAccounts([o[0]])}catch(o){throw et(o)}}};import{jsx as Ac}from"react/jsx-runtime";var ui=({...e})=>Ac("svg",{width:"15",height:"15",viewBox:"0 0 15 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e,children:Ac("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.37126 11.0323C2.37126 12.696 3.90598 13.4421 5.40654 13.4468C8.91753 13.4468 12.8021 11.2897 12.7819 7.67984C12.7673 5.07728 10.3748 2.86167 7.54357 2.88296C4.8495 2.88296 2.21821 4.6411 2.21803 7.03628C2.21803 7.67951 2.58722 8.30178 3.55231 8.37184C2.74763 9.16826 2.37126 10.1225 2.37126 11.0323ZM7.55283 8.68012C8.11562 8.68012 8.57186 8.13217 8.57186 7.45624C8.57186 6.78032 8.11562 6.23237 7.55283 6.23237C6.99003 6.23237 6.53379 6.78032 6.53379 7.45624C6.53379 8.13217 6.99003 8.68012 7.55283 8.68012ZM10.4747 8.68012C11.0375 8.68012 11.4937 8.13217 11.4937 7.45625C11.4937 6.78032 11.0375 6.23237 10.4747 6.23237C9.91186 6.23237 9.45562 6.78032 9.45562 7.45625C9.45562 8.13217 9.91186 8.68012 10.4747 8.68012Z",fill:e.color||"var(--privy-color-foreground-3)"})});var mi=class extends $e{constructor(o,r,n,i){super("privy",r,n,i);this.connectorType="embedded";this.proxyProvider=o,this.subscribeListeners(),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return await this.isConnected()?(await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[Go(o?.chainId||"0x1")]}),this.getConnectedWallet()):null}get walletBranding(){return{name:"Privy Wallet",icon:ui}}disconnect(){this.connected=!1}async promptConnection(){}};import{jsx as Rc}from"react/jsx-runtime";var dr=({style:e,...t})=>Rc("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",stroke:"currentColor",strokeWidth:1.5,viewBox:"0 0 24 24",style:{...e},...t,children:Rc("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M9 17.25v1.007a3 3 0 01-.879 2.122L7.5 21h9l-.621-.621A3 3 0 0115 18.257V17.25m6-12V15a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 15V5.25m18 0A2.25 2.25 0 0018.75 3H5.25A2.25 2.25 0 003 5.25m18 0V12a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 12V5.25"})});import{jsx as tt,jsxs as Nf}from"react/jsx-runtime";var pr=({style:e,...t})=>Nf("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",x:0,y:0,viewBox:"0 0 318.6 318.6",width:"28",height:"28",style:{height:"28px",width:"28px",...e},...t,children:[tt("style",{children:".s1{stroke-linecap:round;stroke-linejoin:round}.s2{fill:#e4761b;stroke:#e4761b}.s3{fill:#f6851b;stroke:#f6851b}"}),tt("path",{fill:"#e2761b",stroke:"#e2761b",className:"s1",d:"m274.1 35.5-99.5 73.9L193 65.8z"}),tt("path",{d:"m44.4 35.5 98.7 74.6-17.5-44.3zm193.9 171.3-26.5 40.6 56.7 15.6 16.3-55.3zm-204.4.9L50.1 263l56.7-15.6-26.5-40.6z",className:"s1 s2"}),tt("path",{d:"m103.6 138.2-15.8 23.9 56.3 2.5-2-60.5zm111.3 0-39-34.8-1.3 61.2 56.2-2.5zM106.8 247.4l33.8-16.5-29.2-22.8zm71.1-16.5 33.9 16.5-4.7-39.3z",className:"s1 s2"}),tt("path",{fill:"#d7c1b3",stroke:"#d7c1b3",className:"s1",d:"m211.8 247.4-33.9-16.5 2.7 22.1-.3 9.3zm-105 0 31.5 14.9-.2-9.3 2.5-22.1z"}),tt("path",{fill:"#233447",stroke:"#233447",className:"s1",d:"m138.8 193.5-28.2-8.3 19.9-9.1zm40.9 0 8.3-17.4 20 9.1z"}),tt("path",{fill:"#cd6116",stroke:"#cd6116",className:"s1",d:"m106.8 247.4 4.8-40.6-31.3.9zM207 206.8l4.8 40.6 26.5-39.7zm23.8-44.7-56.2 2.5 5.2 28.9 8.3-17.4 20 9.1zm-120.2 23.1 20-9.1 8.2 17.4 5.3-28.9-56.3-2.5z"}),tt("path",{fill:"#e4751f",stroke:"#e4751f",className:"s1",d:"m87.8 162.1 23.6 46-.8-22.9zm120.3 23.1-1 22.9 23.7-46zm-64-20.6-5.3 28.9 6.6 34.1 1.5-44.9zm30.5 0-2.7 18 1.2 45 6.7-34.1z"}),tt("path",{d:"m179.8 193.5-6.7 34.1 4.8 3.3 29.2-22.8 1-22.9zm-69.2-8.3.8 22.9 29.2 22.8 4.8-3.3-6.6-34.1z",className:"s3"}),tt("path",{fill:"#c0ad9e",stroke:"#c0ad9e",className:"s1",d:"m180.3 262.3.3-9.3-2.5-2.2h-37.7l-2.3 2.2.2 9.3-31.5-14.9 11 9 22.3 15.5h38.3l22.4-15.5 11-9z"}),tt("path",{fill:"#161616",stroke:"#161616",className:"s1",d:"m177.9 230.9-4.8-3.3h-27.7l-4.8 3.3-2.5 22.1 2.3-2.2h37.7l2.5 2.2z"}),tt("path",{fill:"#763d16",stroke:"#763d16",className:"s1",d:"m278.3 114.2 8.5-40.8-12.7-37.9-96.2 71.4 37 31.3 52.3 15.3 11.6-13.5-5-3.6 8-7.3-6.2-4.8 8-6.1zM31.8 73.4l8.5 40.8-5.4 4 8 6.1-6.1 4.8 8 7.3-5 3.6 11.5 13.5 52.3-15.3 37-31.3-96.2-71.4z"}),tt("path",{d:"m267.2 153.5-52.3-15.3 15.9 23.9-23.7 46 31.2-.4h46.5zm-163.6-15.3-52.3 15.3-17.4 54.2h46.4l31.1.4-23.6-46zm71 26.4 3.3-57.7 15.2-41.1h-67.5l15 41.1 3.5 57.7 1.2 18.2.1 44.8h27.7l.2-44.8z",className:"s3"})]});var ur=class extends $e{constructor(o,r,n,i,a){super(a||"unknown",o,r,n);this.connectorType="injected";this.proxyProvider=new re(void 0,this.rpcTimeoutDuration),this.subscribeListeners(),this.providerDetail=i;let l=i.provider;this.proxyProvider.setWalletProvider(l),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}get walletBranding(){return{name:this.providerDetail.info.name,icon:this.providerDetail.info.icon}}disconnect(){console.warn(`Programmatic disconnect with ${this.providerDetail.info.name} is not yet supported.`)}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new H("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw et(o)}}},en,Xr=class extends $e{constructor(o,r,n,i,a){super(a?"metamask":"unknown",o,r,n);this.connectorType="injected";Jn(this,en,void 0);this.proxyProvider=new re(void 0,this.rpcTimeoutDuration),this.subscribeListeners(),this.proxyProvider.setWalletProvider(i),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0}),a&&Wl(this,en,{name:"MetaMask",icon:pr})}async connect(o){return o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}get walletBranding(){return Il(this,en)??{name:"Browser Extension",icon:dr}}disconnect(){console.warn("Programmatic disconnect with browser wallets is not yet supported.")}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new H("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw et(o)}}};en=new WeakMap;import{getAddress as Q2}from"@ethersproject/address";import{Web3Provider as X2}from"@ethersproject/providers";import{isMobile as Of}from"react-device-detect";var fi=class extends ur{disconnect(){console.warn("Metamask does not support programmatic disconnect.")}async promptConnection(){try{Of||await this.proxyProvider.request({method:"wallet_requestPermissions",params:[{eth_accounts:{}}]});let t=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!t||t.length===0||!t[0])throw new H("Unable to retrieve accounts");await this.syncAccounts([t[0]])}catch(t){throw et(t)}}};import{jsx as Ic,jsxs as Df}from"react/jsx-runtime";var ho=({style:e,...t})=>Df("svg",{xmlns:"http://www.w3.org/2000/svg",width:"108",height:"108",viewBox:"0 0 108 108",fill:"none",style:{height:"28px",width:"28px",...e},...t,children:[Ic("rect",{width:"108",height:"108",rx:"23",fill:"#AB9FF2"}),Ic("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M46.5267 69.9229C42.0054 76.8509 34.4292 85.6182 24.348 85.6182C19.5824 85.6182 15 83.6563 15 75.1342C15 53.4305 44.6326 19.8327 72.1268 19.8327C87.768 19.8327 94 30.6846 94 43.0079C94 58.8258 83.7355 76.9122 73.5321 76.9122C70.2939 76.9122 68.7053 75.1342 68.7053 72.314C68.7053 71.5783 68.8275 70.7812 69.0719 69.9229C65.5893 75.8699 58.8685 81.3878 52.5754 81.3878C47.993 81.3878 45.6713 78.5063 45.6713 74.4598C45.6713 72.9884 45.9768 71.4556 46.5267 69.9229ZM83.6761 42.5794C83.6761 46.1704 81.5575 47.9658 79.1875 47.9658C76.7816 47.9658 74.6989 46.1704 74.6989 42.5794C74.6989 38.9885 76.7816 37.1931 79.1875 37.1931C81.5575 37.1931 83.6761 38.9885 83.6761 42.5794ZM70.2103 42.5795C70.2103 46.1704 68.0916 47.9658 65.7216 47.9658C63.3157 47.9658 61.233 46.1704 61.233 42.5795C61.233 38.9885 63.3157 37.1931 65.7216 37.1931C68.0916 37.1931 70.2103 38.9885 70.2103 42.5795Z",fill:"#FFFDF8"})]});var hi=class extends $e{constructor(o,r,n){super("phantom",o,r,n);this.connectorType="phantom";this.proxyProvider=new re(void 0,this.rpcTimeoutDuration),this.subscribeListeners(),this.proxyProvider.setWalletProvider(window.phantom.ethereum),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}get walletBranding(){return{name:"Phantom",icon:ho}}disconnect(){console.warn("Phantom does not support programmatic disconnect.")}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new H("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw et(o)}}};import{EthereumProvider as Yf,OPTIONAL_EVENTS as Jf,OPTIONAL_METHODS as Qf}from"@walletconnect/ethereum-provider";import{isMobile as Zf}from"react-device-detect";import{createContext as Ff,useContext as Bf,useEffect as Gf,useRef as Hf,useState as zf}from"react";import{jsx as Uf}from"react/jsx-runtime";function yi({src:e,...t}){return Uf("img",{src:e,...t,style:{display:"none"}})}var E=()=>{throw new Error("You need to wrap your application with the <PrivyProvider> initialized with your app id.")};import{jsx as $f,jsxs as jf}from"react/jsx-runtime";var Wc=Ff({ready:!1,app:null,currentScreen:null,lastScreen:null,navigate:E,navigateBack:E,resetNavigation:E,setModalData:E,onUserCloseViaDialogOrKeybindRef:void 0}),Vf=["LANDING","CONNECT_ONLY_LANDING_SCREEN",null],Mc=e=>{let t=e.appConfig,o=e.authenticated,[r,n]=zf(e.initialScreen);Gf(()=>{!o&&!Vf.includes(e.initialScreen)&&e.setInitialScreen(null)},[o]);let i=Hf(null),a={ready:!!t?.id,app:t,data:e.data,setModalData:e.setModalData,currentScreen:e.initialScreen,lastScreen:r,navigate:l=>{e.setInitialScreen(l),n(e.initialScreen)},navigateBack:()=>{e.setInitialScreen(r)},resetNavigation:()=>{e.setInitialScreen(null),n(null)},onUserCloseViaDialogOrKeybindRef:i};return jf(Wc.Provider,{value:a,children:[(typeof t?.appearance?.logo=="string"||t?.appearance?.logo?.type==="img")&&$f(yi,{src:typeof t.appearance.logo=="string"?t.appearance.logo:t.appearance.logo.props.src}),e.children]})},S=()=>Bf(Wc);import{jsx as mr,jsxs as qf}from"react/jsx-runtime";var tn=({style:e,...t})=>{let{app:o}=S();return qf("svg",{width:"28",height:"28",viewBox:"0 0 28 28",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"28px",width:"28px",...e},...t,children:[mr("rect",{width:"28",height:"28",rx:"3",fill:o?.appearance.palette.colorScheme==="dark"?"#3396ff":"#141414"}),mr("g",{clipPath:"url(#clip0_1765_9946)",children:mr("path",{d:"M8.09448 10.3941C11.3558 7.20196 16.6442 7.20196 19.9055 10.3941L20.2982 10.7782C20.3369 10.8157 20.3677 10.8606 20.3887 10.9102C20.4097 10.9599 20.4206 11.0132 20.4206 11.0671C20.4206 11.121 20.4097 11.1744 20.3887 11.224C20.3677 11.2737 20.3369 11.3186 20.2982 11.3561L18.9554 12.6702C18.9158 12.7086 18.8628 12.7301 18.8077 12.7301C18.7526 12.7301 18.6996 12.7086 18.66 12.6702L18.1198 12.1415C15.8448 9.91503 12.1557 9.91503 9.88015 12.1415L9.30167 12.7075C9.26207 12.7459 9.20909 12.7673 9.15395 12.7673C9.0988 12.7673 9.04582 12.7459 9.00622 12.7075L7.66346 11.3934C7.62475 11.3559 7.59397 11.3109 7.57295 11.2613C7.55193 11.2117 7.5411 11.1583 7.5411 11.1044C7.5411 11.0505 7.55193 10.9971 7.57295 10.9475C7.59397 10.8979 7.62475 10.8529 7.66346 10.8154L8.09448 10.3941ZM22.6829 13.1115L23.8776 14.2814C23.9163 14.319 23.9471 14.3639 23.9681 14.4135C23.9892 14.4632 24 14.5165 24 14.5704C24 14.6243 23.9892 14.6777 23.9681 14.7273C23.9471 14.777 23.9163 14.8219 23.8776 14.8594L18.4893 20.1332C18.4102 20.2101 18.3042 20.2531 18.1938 20.2531C18.0835 20.2531 17.9775 20.2101 17.8984 20.1332L14.0743 16.3901C14.0545 16.3708 14.0279 16.36 14.0003 16.36C13.9726 16.36 13.9461 16.3708 13.9263 16.3901L10.1021 20.1332C10.023 20.2101 9.91703 20.2531 9.8067 20.2531C9.69636 20.2531 9.59038 20.2101 9.51124 20.1332L4.12236 14.8594C4.08365 14.8219 4.05287 14.777 4.03185 14.7273C4.01083 14.6777 4 14.6243 4 14.5704C4 14.5165 4.01083 14.4632 4.03185 14.4135C4.05287 14.3639 4.08365 14.319 4.12236 14.2814L5.31767 13.1115C5.39678 13.0348 5.50265 12.9919 5.61285 12.9919C5.72305 12.9919 5.82892 13.0348 5.90803 13.1115L9.73216 16.8546C9.75194 16.874 9.7785 16.8848 9.80616 16.8848C9.83381 16.8848 9.86037 16.874 9.88015 16.8546L13.7043 13.1115C13.7834 13.0346 13.8894 12.9916 13.9997 12.9916C14.1101 12.9916 14.216 13.0346 14.2952 13.1115L18.1198 16.8546C18.1396 16.874 18.1662 16.8848 18.1938 16.8848C18.2215 16.8848 18.2481 16.874 18.2678 16.8546L22.092 13.1115C22.1711 13.0346 22.2771 12.9916 22.3874 12.9916C22.4977 12.9916 22.6037 13.0346 22.6829 13.1115Z",fill:"white"})}),mr("defs",{children:mr("clipPath",{id:"clip0_1765_9946",children:mr("rect",{width:"20",height:"12.2531",fill:"white",transform:"translate(4 8)"})})})]})};var gi=e=>{let t;try{t=new URL(e).hostname}catch{return}for(let[o,r]of Object.entries(fr))if(t.includes(r.hostname))return{walletClientType:o,entry:r}};var fr={metamask:{id:"c57ca95b47569778a828d19178114f4db188b89b763c899ba0be274e97267d96",displayName:"MetaMask",hostname:"metamask.io",mobile:{native:"metamask://",universal:"https://metamask.app.link"}},trust:{id:"4622a2b2d6af1c9844944291e5e7351a6aa24cd7b23099efac1b2fd875da31a0",displayName:"Trust",hostname:"trustwallet.com",mobile:{universal:"https://link.trustwallet.com"}},safe:{id:"225affb176778569276e484e1b92637ad061b01e13a048b35a9d280c3b58970f",displayName:"Safe",hostname:"safe.global",mobile:{universal:"https://app.safe.global/"}},rainbow:{id:"1ae92b26df02f0abca6304df07debccd18262fdf5fe82daa81593582dac9a369",displayName:"Rainbow",hostname:"rainbow.me",mobile:{native:"rainbow://",universal:"https://rnbwapp.com"}},uniswap:{id:"c03dfee351b6fcc421b4494ea33b9d4b92a984f87aa76d1663bb28705e95034a",displayName:"Uniswap",hostname:"uniswap.org",mobile:{universal:"https://uniswap.org/app"}},zerion:{id:"ecc4036f814562b41a5268adc86270fba1365471402006302e70169465b7ac18",displayName:"Zerion",hostname:"zerion.io",mobile:{native:"zerion://",universal:"https://wallet.zerion.io"}},argent:{id:"bc949c5d968ae81310268bf9193f9c9fb7bb4e1283e1284af8f2bd4992535fd6",displayName:"Argent",hostname:"www.argent.xyz",mobile:{universal:"https://www.argent.xyz/app"}},spot:{id:"74f8092562bd79675e276d8b2062a83601a4106d30202f2d509195e30e19673d",displayName:"Spot",hostname:"www.spot-wallet.com",mobile:{universal:"https://spot.so"}},omni:{id:"afbd95522f4041c71dd4f1a065f971fd32372865b416f95a0b1db759ae33f2a7",displayName:"Omni",hostname:"omni.app",mobile:{universal:"https://links.omni.app"}},cryptocom:{id:"f2436c67184f158d1beda5df53298ee84abfc367581e4505134b5bcf5f46697d",displayName:"Crypto.com",hostname:"crypto.com",mobile:{universal:"https://wallet.crypto.com"}},blockchain:{id:"84b43e8ddfcd18e5fcb5d21e7277733f9cccef76f7d92c836d0e481db0c70c04",displayName:"Blockchain",hostname:"www.blockchain.com",mobile:{universal:"https://www.blockchain.com"}},safepal:{id:"0b415a746fb9ee99cce155c2ceca0c6f6061b1dbca2d722b3ba16381d0562150",displayName:"SafePal",hostname:"safepal.com",mobile:{universal:"https://link.safepal.io"}},bitkeep:{id:"38f5d18bd8522c244bdd70cb4a68e0e718865155811c043f052fb9f1c51de662",displayName:"BitKeep",hostname:"bitkeep.com",mobile:{universal:"https://bkapp.vip"}},zengo:{id:"9414d5a85c8f4eabc1b5b15ebe0cd399e1a2a9d35643ab0ad22a6e4a32f596f0",displayName:"ZenGo",hostname:"zengo.com",mobile:{universal:"https://get.zengo.com/"}},"1inch":{id:"c286eebc742a537cd1d6818363e9dc53b21759a1e8e5d9b263d0c03ec7703576",displayName:"1inch",hostname:"wallet.1inch.io",mobile:{universal:"https://wallet.1inch.io/wc/"}},binance:{id:"8a0ee50d1f22f6651afcae7eb4253e52a3310b90af5daef78a8c4929a9bb99d4",displayName:"Binance",hostname:"www.binance.com",mobile:{universal:"https://app.binance.com/cedefi"}},exodus:{id:"e9ff15be73584489ca4a66f64d32c4537711797e30b6660dbcb71ea72a42b1f4",displayName:"Exodus",hostname:"exodus.com",mobile:{universal:"https://exodus.com/m"}},mew_wallet:{id:"f5b4eeb6015d66be3f5940a895cbaa49ef3439e518cd771270e6b553b48f31d2",displayName:"MEW wallet",hostname:"mewwallet.com",mobile:{universal:"https://mewwallet.com"}},alphawallet:{id:"138f51c8d00ac7b9ac9d8dc75344d096a7dfe370a568aa167eabc0a21830ed98",displayName:"AlphaWallet",hostname:"alphawallet.com",mobile:{universal:"https://aw.app"}},keyring_pro:{id:"47bb07617af518642f3413a201ec5859faa63acb1dd175ca95085d35d38afb83",displayName:"KEYRING PRO",hostname:"keyring.app",mobile:{universal:"https://keyring.app/"}},mathwallet:{id:"7674bb4e353bf52886768a3ddc2a4562ce2f4191c80831291218ebd90f5f5e26",displayName:"MathWallet",hostname:"mathwallet.org",mobile:{universal:"https://www.mathwallet.org"}},unstoppable:{id:"8308656f4548bb81b3508afe355cfbb7f0cb6253d1cc7f998080601f838ecee3",displayName:"Unstoppable",hostname:"unstoppabledomains.com",mobile:{universal:"https://unstoppabledomains.com/mobile"}},obvious:{id:"031f0187049b7f96c6f039d1c9c8138ff7a17fd75d38b34350c7182232cc29aa",displayName:"Obvious",hostname:"obvious.technology",mobile:{universal:"https://wallet.obvious.technology"}},ambire:{id:"2c81da3add65899baeac53758a07e652eea46dbb5195b8074772c62a77bbf568",displayName:"Ambire",hostname:"www.ambire.com",mobile:{universal:"https://mobile.ambire.com"}},internet_money_wallet:{id:"dd43441a6368ec9046540c46c5fdc58f79926d17ce61a176444568ca7c970dcd",displayName:"Internet Money Wallet",hostname:"internetmoney.io",mobile:{universal:"https://internetmoney.io"}},coin98:{id:"2a3c89040ac3b723a1972a33a125b1db11e258a6975d3a61252cd64e6ea5ea01",displayName:"Coin98",hostname:"coin98.com",mobile:{universal:"https://coin98.services"}},abc_wallet:{id:"b956da9052132e3dabdcd78feb596d5194c99b7345d8c4bd7a47cabdcb69a25f",displayName:"ABC Wallet",hostname:"myabcwallet.io",mobile:{universal:"https://abcwalletconnect.page.link"}},arculus_wallet:{id:"0e4915107da5b3408b38e248f7a710f4529d54cd30e9d12ff0eb886d45c18e92",displayName:"Arculus Wallet",hostname:"www.getarculus.com",mobile:{universal:"https://gw.arculus.co/app"}},haha:{id:"719bd888109f5e8dd23419b20e749900ce4d2fc6858cf588395f19c82fd036b3",displayName:"HaHa",hostname:"www.haha.me",mobile:{universal:"https://haha.me"}},cling_wallet:{id:"942d0e22a7e6b520b0a03abcafc4dbe156a1fc151876e3c4a842f914277278ef",displayName:"Cling Wallet",hostname:"clingon.io",mobile:{universal:"https://cling.carrieverse.com/apple-app-site-association"}},broearn:{id:"8ff6eccefefa7506339201bc33346f92a43118d6ff7d6e71d499d8187a1c56a2",displayName:"Broearn",hostname:"www.broearn.com",mobile:{universal:"https://www.broearn.com/link/wallet/"}},copiosa:{id:"07f99a5d9849bb049d74830012b286f8b238e72b0337933ef22b84947409db80",displayName:"Copiosa",hostname:"copiosa.io",mobile:{universal:"https://copiosa.io/action/"}},burrito_wallet:{id:"8821748c25de9dbc4f72a691b25a6ddad9d7df12fa23333fd9c8b5fdc14cc819",displayName:"Burrito Wallet",hostname:"burritowallet.com",mobile:{universal:"https://burritowallet.com/wc?uri="}},enjin_wallet:{id:"bdc9433ffdaee55d31737d83b931caa1f17e30666f5b8e03eea794bac960eb4a",displayName:"Enjin Wallet",hostname:"enjin.io",mobile:{universal:"https://deeplink.wallet.enjin.io/"}},plasma_wallet:{id:"cbe13eb482c76f1fa401ff4c84d9acd0b8bc9af311ca0620a0b192fb28359b4e",displayName:"Plasma Wallet",hostname:"plasma-wallet.com",mobile:{universal:"https://plasma-wallet.com"}},avacus:{id:"94f785c0c8fb8c4f38cd9cd704416430bcaa2137f27e1468782d624bcd155a43",displayName:"Avacus",hostname:"avacus.cc",mobile:{universal:"https://avacus.app.link"}},bee:{id:"2cca8c1b0bea04ba37dee4017991d348cdb7b826804ab2bd31073254f345b715",displayName:"Bee",hostname:"www.beewallet.app",mobile:{universal:"https://beewallet.app/wc"}},pitaka:{id:"14e5d957c6eb62d3ee8fc6239703ac2d537d7e3552154836ca0beef775f630bc",displayName:"Pitaka",hostname:"pitaka.io",mobile:{universal:"https://app.pitaka.io"}},pltwallet:{id:"576c90ceaea34f29ff0104837cf2b2e23d201be43be1433feeb18d375430e1fd",displayName:"PLTwallet",hostname:"pltwallet.io",mobile:{universal:"https://pltwallet.io/"}},minerva:{id:"49bb9d698dbdf2c3d4627d66f99dd9fe90bba1eec84b143f56c64a51473c60bd",displayName:"Minerva",hostname:"minerva.digital",mobile:{universal:"https://minerva.digital"}},kryptogo:{id:"19418ecfd44963883e4d6abca1adeb2036f3b5ffb9bee0ec61f267a9641f878b",displayName:"KryptoGO",hostname:"kryptogo.com",mobile:{universal:"https://kryptogo.page.link"}},prema:{id:"5b8e33346dfb2a532748c247876db8d596734da8977905a27b947ba1e2cf465b",displayName:"PREMA",hostname:"premanft.com",mobile:{universal:"https://premanft.com"}},slingshot:{id:"d23de318f0f56038c5edb730a083216ff0cce00c1514e619ab32231cc9ec484b",displayName:"Slingshot",hostname:"slingshot.finance",mobile:{universal:"https://app.slingshot.finance"}},kriptonio:{id:"50df7da345f84e5a79aaf617df5167335a4b6751626df2e8a38f07029b3dde7b",displayName:"Kriptonio",hostname:"kriptonio.com",mobile:{universal:"https://app.kriptonio.com/mobile"}},timeless:{id:"9751385960bca290c13b443155288f892f62ee920337eda8c5a8874135daaea8",displayName:"Timeless",hostname:"timelesswallet.xyz",mobile:{universal:"https://timelesswallet.xyz"}},secux:{id:"6464873279d46030c0b6b005b33da6be5ed57a752be3ef1f857dc10eaf8028aa",displayName:"SecuX",hostname:"secuxtech.com",mobile:{universal:"https://wsweb.secuxtech.com"}},bitizen:{id:"41f20106359ff63cf732adf1f7dc1a157176c9b02fd266b50da6dcc1e9b86071",displayName:"Bitizen",hostname:"bitizen.org",mobile:{universal:"https://bitizen.org/wallet"}},blocto:{id:"14e7176536cb3706e221daaa3cfd7b88b7da8c7dfb64d1d241044164802c6bdd",displayName:"Blocto",hostname:"blocto.io",mobile:{universal:"https://blocto.app"}},safemoon:{id:"a0e04f1086aac204d4ebdd5f985c12ed226cd0006323fd8143715f9324da58d1",displayName:"SafeMoon",hostname:"safemoon.com",mobile:{universal:"https://safemoon.com/wc"}}};function Kf(e){return{name:e.displayName||"",universalLink:e.mobile.universal,deepLink:e.mobile.native}}var Lc=e=>e in fr,Nc=e=>{let t=fr[e].mobile;if("native"in t)return t.native};function Oc(e,t){let o=Kf(t);if(o.deepLink)return Gc(o.deepLink,e);if(o.universalLink)return Hc(o.universalLink,e);throw new w(`Unsupported wallet ${t.id}`)}var Dc="WALLETCONNECT_DEEPLINK_CHOICE";function Uc(){try{localStorage.removeItem(Dc)}catch{}}function Fc({href:e,name:t}){try{localStorage.setItem(Dc,JSON.stringify({href:e,name:t}))}catch{}}function Bc(e){return e.startsWith("http://")||e.startsWith("https://")}function Gc(e,t){if(Bc(e))return Hc(e,t);let o=e;o.includes("://")||(o=e.replaceAll("/","").replaceAll(":",""),o=`${o}://`),o.endsWith("/")||(o=`${o}/`);let r=encodeURIComponent(t);return{redirect:`${o}wc?uri=${r}`,href:o}}function Hc(e,t){if(!Bc(e))return Gc(e,t);let o=e;o.endsWith("/")||(o=`${o}/`);let r=encodeURIComponent(t);return{redirect:`${o}wc?uri=${r}`,href:o}}function zc(e,t){window.open(e,t,"noreferrer noopener")}var Wt=class extends $e{constructor(o,r,n,i,a){super(a||"unknown",n,i,r);this.connectorType="wallet_connect_v2";this.walletConnectCloudProjectId=o,this.rpcConfig=r,this.proxyProvider=new re(void 0,this.rpcTimeoutDuration),a&&(this.walletEntry=fr[a],this.walletClientType=a),this.createProvider().then(l=>{if(this.provider=l,this.proxyProvider.setWalletProvider(l),this.subscribeListeners(),l.session){if(this.walletProvider?.session?.peer.metadata.url){let s=gi(this.walletProvider?.session?.peer.metadata.url);this.walletEntry=s?.entry,this.walletClientType=s?.walletClientType||"unknown"}this.connected=!0,this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}else this.emit("initialized"),this.initialized=!0}),import("@walletconnect/modal").then(({WalletConnectModal:l})=>{this.modal=new l({projectId:this.walletConnectCloudProjectId,themeVariables:{"--wcm-z-index":"1000000"}}),this.modal.subscribeModal(s=>{!s.open&&!this.walletProvider?.session&&this.onQrModalClosed&&this.onQrModalClosed()})})}async connect(o){return o.showPrompt&&await this.promptConnection(),this.getConnectedWallet()}async isConnected(){return!!this.walletProvider?.connected}get walletBranding(){return this.walletClientType==="metamask"?{name:"Metamask",icon:pr}:{name:Xa(this.walletProvider?.session?.peer.metadata.name||"")||"WalletConnect",icon:this.walletProvider?.session?.peer.metadata.icons?.[0]||tn}}resetConnection(o){this.walletProvider&&this.walletProvider.connected&&(this.walletProvider.signer.session=void 0,this.walletEntry=fr[o],this.walletClientType=o,this.redirectUri=void 0,Uc(),this.onDisconnect())}async promptConnection(){if(this.provider)return new Promise((o,r)=>{let n=()=>{r(new lr)};this.onQrModalClosed=n,(async()=>{let a="",l=await Promise.race([this.walletProvider?.enable(),this.proxyProvider.walletTimeout()]);if(l?.length&&(a=l[0]),!a||a==="")throw new H("Unable to retrieve address");if(this.walletProvider?.session?.peer.metadata.url){let s=gi(this.walletProvider?.session?.peer.metadata.url);this.walletEntry=s?.entry,this.walletClientType=s?.walletClientType||"unknown",this.proxyProvider.rpcTimeoutDuration=cr(this.rpcConfig,this.walletClientType)}this.connected=!0,await this.syncAccounts(l),o()})().catch(a=>{if(a){r(et(a));return}r(new H("Unknown error during connection"))}).finally(()=>this.modal?.closeModal())})}disconnect(){this.walletProvider?.disconnect().then(()=>this.onDisconnect()).catch(()=>console.warn("Unable to disconnect Wallet Connect provider"))}get walletProvider(){return this.proxyProvider.walletProvider}setWalletProvider(o){this.proxyProvider.setWalletProvider(o)}async createProvider(){let o={};for(let n of this.chains){let i=wt(n.id,this.chains,this.rpcConfig);i&&(o[n.id]=i)}let r=await Yf.init({projectId:this.walletConnectCloudProjectId,chains:[this.defaultChain.id],optionalChains:this.chains.map(n=>n.id),optionalEvents:Jf,optionalMethods:Qf,rpcMap:o,showQrModal:!1});return r.on("display_uri",n=>{if(r.signer.abortPairingAttempt(),Zf&&this.walletEntry){let{redirect:i,href:a}=Oc(n,this.walletEntry);Fc({href:a,name:this.walletEntry.displayName}),this.redirectUri=i,zc(i,"_self")}else this.modal?.openModal({uri:n,chains:[this.defaultChain.id]})}),r.on("connect",()=>{if(this.modal?.closeModal(),r.session?.peer.metadata.url){let n=gi(r.session?.peer.metadata.url);this.walletEntry=n?.entry,this.walletClientType=n?.walletClientType||"unknown"}}),r}async enableProvider(){return this.walletProvider?.connected?Promise.resolve(this.walletProvider.accounts):await this.walletProvider?.enable()}};var es=e=>{let t=localStorage.getItem("-walletlink:https://www.walletlink.org:Addresses");return t?!!e?.linkedAccounts.filter(r=>r.type=="wallet"&&r.address===Vc(t)).length:!1},cr=(e,t)=>e.rpcTimeouts?e.rpcTimeouts[t]||Qr:Qr,on=class extends Xf{constructor(o,r,n,i,a){super();this.getEthereumProvider=()=>{let o=this.wallets[0],r=this.walletConnectors.find(n=>n.wallets.find(i=>i.address===o?.address));return!o||!r?new re:r.proxyProvider};this.walletConnectCloudProjectId=o,this.rpcConfig=r,this.chains=n,this.defaultChain=i,this.walletConnectors=[],this.initialized=!1,this.store=a,this.initializedWalletConnectors=0,this.walletsReady=!1,this.storedConnections=this.loadConnectionHistory()}get wallets(){let o=new Set,r=this.walletConnectors.flatMap(i=>i.wallets).sort((i,a)=>i.connectedAt&&a.connectedAt?a.connectedAt-i.connectedAt:0).filter(i=>{let a=`${i.address}${i.walletClientType}${i.connectorType}`;return o.has(a)?!1:(o.add(a),!0)}),n=r.findIndex(i=>i.address===(this.activeWallet?this.activeWallet:"unknown"));return n>=0&&r.unshift(r.splice(n,1)[0]),r}initialize(){this.initialized||(Q.get(ja)&&(Q.getKeys().forEach(o=>{o.startsWith("walletconnect")&&Q.del(o)}),Q.del(ja)),Cc(this.store).then(o=>o.forEach(({type:r,eip6963InjectedProvider:n,legacyInjectedProvider:i})=>{this.createWalletConnector("injected",r,{eip6963InjectedProvider:n,legacyInjectedProvider:i})})),this.createWalletConnector("coinbase_wallet","coinbase_wallet"),this.createWalletConnector("wallet_connect_v2","unknown"),this.initialized=!0)}findWalletConnector(o,r){return o==="wallet_connect_v2"?this.walletConnectors.find(n=>n.connectorType===o)||null:this.walletConnectors.find(n=>n.connectorType===o&&n.walletClientType===r)||null}onInitialized(o){o.wallets.forEach(r=>{let n=this.storedConnections.find(i=>i.address===r.address&&i.connectorType===r.connectorType&&i.walletClientType===r.walletClientType);n&&(r.connectedAt=n.connectedAt)}),this.saveConnectionHistory(),this.emit("walletsUpdated"),this.initializedWalletConnectors++,this.walletsReady=this.initializedWalletConnectors===this.walletConnectors.length}onWalletsUpdated(o){o.initialized&&(this.saveConnectionHistory(),this.emit("walletsUpdated"))}addEmbeddedWalletConnector(o,r,n){let i=this.findWalletConnector("embedded","privy");if(i)i.proxyProvider.walletProxy=o;else{let a=new li(o,r,this.rpcConfig,this.chains,n.id),l=new mi(a,this.chains,n,this.rpcConfig);this.addWalletConnector(l)}}removeEmbeddedWalletConnector(){let o=this.findWalletConnector("embedded","privy");if(o){let r=this.walletConnectors.indexOf(o);this.walletConnectors.splice(r,1),this.saveConnectionHistory(),this.storedConnections=this.loadConnectionHistory(),this.emit("walletsUpdated")}}async createWalletConnector(o,r,n){let i=this.findWalletConnector(o,r);if(i)return i instanceof Wt&&i.resetConnection(r),i;let l=(()=>{if(o==="injected"){if(r==="metamask"&&n?.eip6963InjectedProvider)return new fi(this.chains,this.defaultChain,this.rpcConfig,n?.eip6963InjectedProvider,"metamask");if(r==="metamask"&&n?.legacyInjectedProvider)return new Xr(this.chains,this.defaultChain,this.rpcConfig,n?.legacyInjectedProvider,!0);if(r==="phantom"&&kt())return new hi(this.chains,this.defaultChain,this.rpcConfig);if(n?.legacyInjectedProvider&&r==="unknown_browser_extension")return new Xr(this.chains,this.defaultChain,this.rpcConfig,n?.legacyInjectedProvider);if(n?.eip6963InjectedProvider)return new ur(this.chains,this.defaultChain,this.rpcConfig,n?.eip6963InjectedProvider,r)}else return o==="coinbase_wallet"?new pi(this.chains,this.defaultChain,this.rpcConfig):new Wt(this.walletConnectCloudProjectId,this.rpcConfig,this.chains,this.defaultChain,r)})();return l&&this.addWalletConnector(l),l||null}addWalletConnector(o){this.walletConnectors.push(o),o.on("initialized",()=>this.onInitialized(o)),o.on("walletsUpdated",()=>this.onWalletsUpdated(o))}loadConnectionHistory(){let o=a=>a&&typeof a.address=="string"&&typeof a.connectorType=="string"&&typeof a.walletClientType=="string"&&typeof a.connectedAt=="number",r=Q.get(qa);return r&&Array.isArray(r)&&r.map(a=>o(a)).every(Boolean)?r:[]}saveConnectionHistory(){let o=this.wallets.map(r=>({address:r.address,connectorType:r.connectorType,walletClientType:r.walletClientType,connectedAt:r.connectedAt}));Q.put(qa,o)}async activeWalletSign(o){let r=this.wallets,n=r.length>0?r[0]:null;return n?n.sign(o):null}setActiveWallet(o){this.activeWallet=Vc(o),this.emit("walletsUpdated")}};function ci(e,t){if(e.length!==t.length)return!1;for(let o=0;o<e.length;o++){let r=e[o],n=t[o];if(r?.address!==n?.address||r?.chainId!==n?.chainId||r?.connectorType!==n?.connectorType||r?.connectedAt!==n?.connectedAt||r?.walletClientType!==n?.walletClientType||r?.isConnected!==n?.isConnected||r?.linked!==n?.linked)return!1}return!0}import{ofetch as eh}from"ofetch";var th=[Xn(),ti(),ei()],oh=e=>{let t=new AbortController;return setTimeout(()=>t.abort(),e),t.signal},vi=class{constructor(t,o,r){this.appId=t,this.clientAnalyticsId=o.clientAnalyticsId,this.sdkVersion=za,this.client=o,this.defaults=r,this.fallbackApiUrl=o.fallbackApiUrl,this.baseFetch=eh.create({baseURL:this.defaults.baseURL,retry:3,retryDelay:500,credentials:"include",onRequest:async({request:n,options:i})=>{let a=new Headers(i.headers);a.set("privy-app-id",this.appId),a.set("privy-ca-id",this.clientAnalyticsId||""),a.set("privy-client",`react-auth:${this.sdkVersion}`);let l=!th.includes(n.toString());if(!a.has("authorization")&&l){let s=await this.client.getAccessToken();s!==null&&a.set("authorization",`Bearer ${s}`)}i.headers=a,i.signal||(i.signal=oh(this.defaults.timeout))},onRequestError:({error:n})=>{if(n instanceof DOMException&&n.name==="AbortError")throw new Qn}})}async get(t,o){try{return await this.baseFetch(t,o)}catch(r){throw te(r)}}async post(t,o,r){try{return await this.baseFetch(t,{method:"POST",...o?{body:o}:{},...r})}catch(n){throw te(n)}}async delete(t,o){try{return await this.baseFetch(t,{method:"DELETE",...o})}catch(r){throw te(r)}}};import rn from"js-cookie";function $c(e){return e instanceof Do?"email":e instanceof Fo?"sms":e instanceof Uo?"siwe":e instanceof nr?"custom_auth":e instanceof co?e.meta.provider:null}import*as jc from"jose";var Mt=class{static parse(t){try{return new Mt(t)}catch{return null}}constructor(t){this.value=t,this._decoded=jc.decodeJwt(t)}get subject(){return this._decoded.sub}get expiration(){return this._decoded.exp}get issuer(){return this._decoded.iss}get audience(){return this._decoded.aud}isExpired(t=0){let o=Date.now(),r=(this.expiration-t)*1e3;return o>=r}};var rh=30,wi=class{constructor(){this.authenticateOnce=new ct(async t=>this._authenticate(t)),this.linkOnce=new ct(async t=>this._link(t)),this.refreshOnce=new ct(this._refresh.bind(this)),this.destroyOnce=new ct(this._destroy.bind(this)),this.forkSessionOnce=new ct(this._forkSession.bind(this))}get token(){try{let t=Q.get(Bo);return typeof t=="string"?new Mt(t).value:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get refreshToken(){try{let t=Q.get(ni);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get forkedToken(){try{let t=Q.get(Yr);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get mightHaveServerCookies(){try{let t=rn.get(sc);return t!==void 0&&t.length>0}catch(t){console.error(t)}return!1}hasRefreshCredentials(){return this.mightHaveServerCookies||typeof this.token=="string"&&typeof this.refreshToken=="string"}hasRecoveryCredentials(){return typeof this.forkedToken=="string"}hasActiveToken(){let t=Mt.parse(this.token);return t!==null&&!t.isExpired(rh)}authenticate(t){return this.authenticateOnce.execute(t)}link(t){return this.linkOnce.execute(t)}refresh(){return this.refreshOnce.execute()}forkSession(){return this.forkSessionOnce.execute()}destroy(){return this.destroyOnce.execute()}async _authenticate(t){try{let{token:o,refresh_token:r,user:n,is_new_user:i}=await t.authenticate();this.storeToken(o),this.storeRefreshToken(r);let a=$c(t);return a&&this.client&&this.client.createAnalyticsEvent("sdk_authenticate",{method:a,isNewUser:i}),a==="siwe"&&this.client&&this.client.createAnalyticsEvent("sdk_authenticate_siwe",{connectorType:t.meta.connectorType,walletClientType:t.meta.walletClientType}),{user:vt(n),isNewUser:i}}catch(o){throw console.warn("Error authenticating session"),Qe(o)}}async _link(t){try{let o=await t.link();return vt(o)}catch(o){throw console.warn("Error linking account"),Qe(o)}}async _refresh(){if(!this.api)throw new w("Session has no API instance");if(!this.client)throw new w("Session has no PrivyClient instance");await this.client.getAccessToken({disableAutoRefresh:!0});let t=this.token,o=this.refreshToken,r=this.forkedToken;try{let n;if(t&&o||this.mightHaveServerCookies){let i={};t&&(i.authorization=`Bearer ${t}`);let a=o?{refresh_token:o}:{};n=await this.api.post(Xn(),a,{headers:i}),r&&this.clearForkedToken()}else if(r)n=await this.api.post(ti(),{refresh_token:r}),this.clearForkedToken();else return null;return this.storeToken(n.token),this.storeRefreshToken(n.refresh_token),vt(n.user)}catch(n){if(n instanceof lo&&n.privyErrorCode==="missing_or_invalid_token")return console.warn("Unable to refresh tokens - token is missing or no longer valid"),this.destroyLocalState(),null;throw Qe(n)}}async _destroy(){try{await this.api?.post(ei(),{refresh_token:this.refreshToken})}catch{console.warn("Error destroying session")}this.destroyLocalState()}async _forkSession(){if(!this.api)throw new w("Session has no API instance");let t=this.refreshToken;try{let o=await this.api.post(Ll(),{refresh_token:t});return this.storeToken(o.token),this.storeRefreshToken(o.refresh_token),o.new_session_refresh_token}catch(o){throw Qe(o)}}destroyLocalState(){this.storeToken(null),this.storeRefreshToken(null),this.clearForkedToken(),this.client?.onDeleteToken?.()}storeToken(t){if(typeof t=="string"){let o=Q.get(Bo);if(Q.put(Bo,t),o!==t&&this.client?.onStoreToken?.(t),!this.client?.useServerCookies){let r=Mt.parse(t)?.expiration;rn.set(Va,t,{sameSite:"Strict",secure:!0,expires:r?new Date(r*1e3):void 0})}}else Q.del(Bo),rn.remove(Va)}storeRefreshToken(t){typeof t=="string"?(Q.put(ni,t),this.client?.useServerCookies||rn.set($a,t,{sameSite:"Strict",secure:!0,expires:30})):(Q.del(ni),rn.remove($a))}clearForkedToken(){Q.del(Yr)}};var ts,Ci,qc,nn=class{constructor(t){Jn(this,Ci);this.apiUrl=t.apiUrl||ri,this.fallbackApiUrl=this.apiUrl,this.useServerCookies=!1,this.timeout=t.timeout||ic,this.appId=t.appId,this.clientAnalyticsId=Ml(this,Ci,qc).call(this),ts||(ts=new wi),this.session=ts,this.api=this.generateApi(),this.session.client=this}initializeConnectorManager(t,o,r,n,i){this.connectors||(this.connectors=new on(t,o,r,n,i))}generateApi(){let t=new vi(this.appId,this,{baseURL:this.apiUrl,timeout:this.timeout});return this.session.api=t,t}updateApiUrl(t){this.apiUrl=t||this.fallbackApiUrl,this.api=this.generateApi(),t&&(this.useServerCookies=!0)}authenticate(){if(!this.authFlow)throw new w("No auth flow in progress.");return this.session.authenticate(this.authFlow)}link(){if(!this.authFlow)throw new w("No auth flow in progress.");return this.session.link(this.authFlow)}async logout(){await this.session.destroy(),this.authFlow=void 0}startAuthFlow(t){t.api=this.api,this.authFlow=t}startMfaFlow(t){t.api=this.api,this.mfaFlow=t}async unlinkEmail(t){try{let o=await this.api.post(Kl(),{address:t});return vt(o)}catch(o){throw Qe(o)}}async unlinkPhone(t){try{let o=await this.api.post(Yl(),{phoneNumber:t});return vt(o)}catch(o){throw Qe(o)}}async unlinkWallet(t){try{let o=await this.api.post(ql(),{address:t});return vt(o)}catch(o){throw Qe(o)}}async unlinkOAuth(t,o){try{let r=await this.api.post(Jl(),{provider:t,subject:o});return vt(r)}catch(r){throw Qe(r)}}async createAnalyticsEvent(t,o,r){if(!(typeof window>"u"))try{this.clientAnalyticsId||console.warn("No client analytics id set, refusing to send analytics event"),await this.api.post(Ql(),{event_name:t,client_id:this.clientAnalyticsId,payload:{...o||{},clientTimestamp:r?r.toISOString():new Date().toISOString()}})}catch{}}async signMoonpayOnRampUrl(t){try{return this.api.post(Zl(),t)}catch(o){throw Qe(o)}}async getAuthenticatedUser(){return this.session.hasRefreshCredentials()||this.session.hasRecoveryCredentials()?this.session.refresh():null}async getAccessToken(t){return this.session.hasActiveToken()?Mt.parse(this.session.token)?.audience!==this.appId?(await this.logout(),null):this.session.token:!t?.disableAutoRefresh&&this.session.hasRefreshCredentials()?(await this.session.refresh(),this.session.token):null}async getServerConfig(){try{let t=await this.api.get(`/api/v1/apps/${this.appId}`,{baseURL:this.fallbackApiUrl});return{id:t.id,name:t.name,verificationKey:t.verification_key,logoUrl:t.logo_url||void 0,accentColor:t.accent_color||void 0,showWalletLoginFirst:t.show_wallet_login_first,allowlistConfig:{errorTitle:t.allowlist_config.error_title,errorDetail:t.allowlist_config.error_detail,errorCtaText:t.allowlist_config.cta_text,errorCtaLink:t.allowlist_config.cta_link},walletAuth:t.wallet_auth,emailAuth:t.email_auth,smsAuth:t.sms_auth,googleOAuth:t.google_oauth,twitterOAuth:t.twitter_oauth,discordOAuth:t.discord_oauth,githubOAuth:t.github_oauth,tiktokOAuth:t.tiktok_oauth,linkedinOAuth:t.linkedin_oauth,appleOAuth:t.apple_oauth,termsAndConditionsUrl:t.terms_and_conditions_url,embeddedWalletConfig:{createOnLogin:t.embedded_wallet_config?.create_on_login,requireUserPasswordOnCreate:t.embedded_wallet_config?.require_user_password_on_create},privacyPolicyUrl:t.privacy_policy_url,customApiUrl:t.custom_api_url,walletConnectCloudProjectId:t.wallet_connect_cloud_project_id,fiatOnRampEnabled:t.fiat_on_ramp_enabled,captchaEnabled:t.captcha_enabled,captchaSiteKey:t.captcha_site_key,twitterOAuthOnMobileEnabled:t.twitter_oauth_on_mobile_enabled,createdAt:new Date(t.created_at*1e3),updatedAt:new Date(t.updated_at*1e3),mfaMethods:t.mfa_methods}}catch(t){throw Qe(t)}}async getUsdTokenPrice(t){try{return(await this.api.get(`/api/v1/token_price?chainId=${t.id}&tokenSymbol=${t.nativeCurrency.symbol}`)).usd}catch{console.error(`Unable to fetch token price for chain with id ${t.id}`);return}}async forkSession(){return await this.session.forkSession()}};Ci=new WeakSet,qc=function(){if(typeof window>"u")return null;try{let o=Q.get(Jr);if(typeof o=="string"&&o.length>0)return o}catch{}let t=nh();try{return Q.put(Jr,t),t}catch{return t}};import"wicg-inert";import{useRef as k0,useState as Gm}from"react";import{useEffect as A0}from"react";import R0 from"react-dom";import{createContext as ih,useContext as ah}from"react";var he=ih({ready:!1,authenticated:!1,user:null,walletConnectors:null,connectWallet:E,login:E,linkEmail:E,linkPhone:E,linkWallet:E,linkGoogle:E,linkTwitter:E,linkDiscord:E,linkGithub:E,linkTiktok:E,linkLinkedIn:E,linkApple:E,logout:E,getAccessToken:E,getEthereumProvider:E,getEthersProvider:E,getWeb3jsProvider:E,unlinkEmail:E,unlinkPhone:E,unlinkWallet:E,unlinkGoogle:E,unlinkTwitter:E,unlinkDiscord:E,unlinkGithub:E,unlinkTiktok:E,unlinkLinkedIn:E,unlinkApple:E,setActiveWallet:E,forkSession:E,createWallet:E,signMessage:E,enrollInMfa:E,initEnrollmentWithSms:E,initEnrollmentWithTotp:E,promptMfa:E,init:E,submitEnrollmentWithSms:E,submitEnrollmentWithTotp:E,unenroll:E,submit:E,cancel:E,sendTransaction:E,exportWallet:E,setWalletPassword:E,initLoginWithEmail:E,loginWithCode:E,isModalOpen:!1}),z=()=>ah(he);import{useEffect as sh,useState as lh}from"react";var Kc=e=>{let[t,o]=lh("auto");return sh(()=>{let r=new ResizeObserver(n=>{o(n[0]?.contentRect.height??"auto")});return e.current&&r.observe(e.current),()=>{e.current&&r.unobserve(e.current)}},[e.current]),t};import{createContext as ch,useContext as dh,useEffect as ph}from"react";var Yc={login:{onComplete:[],onError:[]},logout:{onSuccess:[]},connectWallet:{onSuccess:[],onError:[]},createWallet:{onSuccess:[],onError:[]},configureMfa:{onMfaRequired:[]},accessToken:{onAccessTokenGranted:[],onAccessTokenRemoved:[]}},os=ch(void 0),Jc=()=>dh(os);function dt(e,t){if(!t)return;let r=Jc().current[e];return ph(()=>{for(let[n,i]of Object.entries(t))r.hasOwnProperty(n)||console.warn(`Invalid event type "${n}" for action "${e}"`),r[n]?.push(i);return()=>{for(let[n,i]of Object.entries(t))r.hasOwnProperty(n)||console.warn(`Invalid event type "${n}" for action "${e}"`),r[n]=r[n]?.filter(a=>a!==i)}},[t])}function ae(e,t,o,...r){for(let n of e.current[t][o])n(...r)}function Qc(){let e=Jc();return(t,o,...r)=>ae(e,t,o,...r)}function rs(e){dt("configureMfa",e)}import ps from"styled-components";import Ho,{css as ss}from"styled-components";import is from"styled-components";import{Fragment as mh,jsx as ns,jsxs as fh}from"react/jsx-runtime";var bi=({success:e,fail:t})=>fh(mh,{children:[ns(Lt,{className:e?"success":t?"fail":""}),ns(as,{className:e?"success":t?"fail":""})]}),Lt=is.span`
12
+ - https://privy.io`;this.getNonceOnce=new ct(this._getNonceOnce.bind(this)),this.wallet=t}get meta(){return{connectorType:this.wallet.connectorType,walletClientType:this.wallet.walletClientType}}async authenticate(){if(!this.api)throw new w("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign(),r=await this.api.post(Dl(),{message:t,signature:o,chainId:this.wallet.chainId,walletClientType:this.wallet.walletClientType,connectorType:this.wallet.connectorType});return{user:r.user,token:r.token,refresh_token:r.refresh_token,is_new_user:r.is_new_user}}catch(t){throw te(t)}}async link(){if(!this.api)throw new w("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign();return await this.api.post(Ul(),{message:t,signature:o,chainId:this.wallet.chainId,walletClientType:this.wallet.walletClientType,connectorType:this.wallet.connectorType})}catch(t){throw te(t)}}async sign(){if(!this.api)throw new w("Auth flow has no API instance");if(await this.buildSiweMessage(),!this.preparedMessage)throw new w("Could not prepare SIWE message");let t=await this.wallet.sign(this.preparedMessage);return{message:this.preparedMessage,signature:t}}async _getNonceOnce(){if(!this.api)throw new w("Auth flow has no API instance");let t=this.wallet.address;return(await this.api.post(Ol(),{address:t})).nonce}async buildSiweMessage(){if(!this.api)throw new w("Auth flow has no API instance");let t=this.wallet.address,o=this.wallet.chainId.replace("eip155:","");return this.nonce||(this.nonce=await this.getNonceOnce.execute()),this.preparedMessage=this.prepareMessage(o,t,this.nonce),this.preparedMessage}prepareMessage(t,o,r){let n=window.location.host,i=window.location.origin,a="By signing, you are proving you own this wallet and logging in. This does not initiate a transaction or cost any fees.",l=new Date().toISOString();return this.createSiweMessage(t,o,n,i,l,r,a)}};var Fo=class{constructor(t,o){this.meta={phoneNumber:t,captchaToken:o}}async authenticate(){if(!this.api)throw new w("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new w("phone number and sms code must be set prior to calling authenticate.");try{let t=zl(),o=await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode});return{user:o.user,token:o.token,refresh_token:o.refresh_token,is_new_user:o.is_new_user}}catch(t){throw te(t)}}async link(){if(!this.api)throw new w("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new w("phone number and sms code must be set prior to calling authenticate.");try{let t=Vl();return await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode})}catch(t){throw te(t)}}async sendSmsCode(t,o){if(!this.api)throw new w("Auth flow has no API instance");if(t&&(this.meta.phoneNumber=t),o&&(this.meta.captchaToken=o),!this.meta.phoneNumber)throw new w("phone nNumber must be set when initialzing authentication.");try{let r=Hl();return await this.api.post(r,{phoneNumber:this.meta.phoneNumber,token:this.meta.captchaToken})}catch(r){throw te(r)}}};import{v4 as nh}from"uuid";function Ze(e){return new Date(e*1e3)}function wf(e){let t=[];for(let o of e){let r=o.type;switch(o.type){case"wallet":let n={address:o.address,type:o.type,verifiedAt:Ze(o.verified_at),chainType:"ethereum",chainId:o.chain_id,walletClient:o.wallet_client_type==="privy"?"privy":"unknown",walletClientType:o.wallet_client_type,connectorType:o.connector_type,recoveryMethod:o.recovery_method};t.push(n);break;case"email":let i={address:o.address,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(i);break;case"phone":let a={number:o.phoneNumber,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(a);break;case"google_oauth":let l={subject:o.subject,email:o.email,name:o.name,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(l);break;case"twitter_oauth":let s={subject:o.subject,username:o.username,name:o.name,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(s);break;case"discord_oauth":let c={subject:o.subject,username:o.username,email:o.email,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(c);break;case"github_oauth":let u={subject:o.subject,username:o.username,name:o.name,email:o.email,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(u);break;case"tiktok_oauth":let y={subject:o.subject,username:o.username,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(y);break;case"linkedin_oauth":let C={subject:o.subject,name:o.name,email:o.email,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(C);break;case"apple_oauth":let m={subject:o.subject,email:o.email,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(m);break;case"custom_auth":t.push({type:o.type,customUserId:o.custom_user_id,verifiedAt:Ze(o.verified_at)});break;default:console.warn(`Unrecognized account type: ${r}. Please consider upgrading the Privy SDK.`)}}return t}function _t(e,t){return e.sort((o,r)=>r.verifiedAt.getTime()-o.verifiedAt.getTime()),e.find(o=>o.type===t)}var ie=e=>e?.linkedAccounts.find(t=>t.type==="wallet"&&t.walletClientType==="privy")||null,Cf=e=>e.linkedAccounts.filter(t=>t.type==="wallet"),po=(e,t)=>t==="all-users"&&!ie(e)||t==="users-without-wallets"&&!Cf(e)?.length;function vt(e){if(!e)return null;let t=wf(e.linked_accounts),o=_t(t,"wallet"),r=_t(t,"email"),n=_t(t,"phone"),i=_t(t,"google_oauth"),a=_t(t,"twitter_oauth"),l=_t(t,"discord_oauth"),s=_t(t,"github_oauth"),c=_t(t,"tiktok_oauth"),u=_t(t,"linkedin_oauth"),y=_t(t,"apple_oauth"),C=e.mfa_methods.map(({type:P,verified_at:b})=>({type:P,verifiedAt:Ze(b)}));return{id:e.id,createdAt:Ze(e.created_at),linkedAccounts:t,email:r&&{address:r?.address},phone:n&&{number:n?.number},wallet:o&&{address:o.address,chainType:o.chainType,chainId:o.chainId,walletClient:o.walletClient,walletClientType:o.walletClientType,connectorType:o.connectorType,recoveryMethod:o.recoveryMethod},google:i&&{subject:i.subject,email:i.email,name:i.name},twitter:a&&{subject:a.subject,username:a.username,name:a.name},discord:l&&{subject:l.subject,username:l.username,email:l.email},github:s&&{subject:s.subject,username:s.username,name:s.name,email:s.email},tiktok:c&&{subject:c.subject,username:c.username},linkedin:u&&{subject:u.subject,name:u.name},apple:y&&{subject:y.subject,email:y.email},mfaMethods:C.map(P=>P.type)}}import{getAddress as $c}from"@ethersproject/address";import Xf from"eventemitter3";var rc="1.52.5";var oi="4df5e2316331463a9130964bd6078dfa",nc="fe9c30fc-3bc5-4064-91e2-6ab5887f8f4d",ic="34357d3c125c2bcf2ce2bc3309d98715",ri="https://auth.privy.io",ac=2e4,Xe=1400,sc=2500,za=rc;var Bo="privy:token",Va="privy-token",ni="privy:refresh_token",$a="privy-refresh-token",lc="privy-session",Yr="privy:session_transfer_token",Ef="privy:wallet",Jr="privy:caid",ii=e=>`${Ef}:${e}`,ja="privy:connectors",qa="privy:connections";var Qr=12e4,qt=1,Ka="0x1",sr=3e4,cc="https://api.moonpay.com/v1",dc="https://api.moonpay.com/v1",pc="pk_live_hirbpu0cVcLHrjktC9l7fbc9ctjv0SL",uc="pk_test_fqWjXZMSFwloh7orvJsRfjiUHXJqFzI",mc="0x420000000000000000000000000000000000000F",fc=["function getL1Fee(bytes memory _data) external view returns (uint256)"];var Ya=class{constructor(){this._cache={}}get(t){return this._cache[t]}put(t,o){o!==void 0?this._cache[t]=o:this.del(t)}del(t){delete this._cache[t]}getKeys(){return Object.keys(this._cache)}},Ja=class{get(t){let o=localStorage.getItem(t);return o===null?void 0:JSON.parse(o)}put(t,o){o!==void 0?localStorage.setItem(t,JSON.stringify(o)):this.del(t)}del(t){localStorage.removeItem(t)}getKeys(){return Object.entries(localStorage).map(([t])=>t)}};function Pf(){return typeof window<"u"&&window.localStorage?new Ja:new Ya}var Q=Pf();function hc(){let e=window,t=e.ethereum;if(!t)return[];let o=[];if(t.providers?.length)for(let r of t.providers)r&&o.push(r);return o.push(e.ethereum),o}var ai=e=>{if(e.isApexWallet)return"Apex Wallet";if(e.isAvalanche)return"Core Wallet";if(e.isBackpack)return"Backpack";if(e.isBifrost)return"Bifrost Wallet";if(e.isBitKeep)return"BitKeep";if(e.isBitski)return"Bitski";if(e.isBlockWallet)return"BlockWallet";if(e.isBraveWallet)return"Brave Wallet";if(e.isClover)return"Clover";if(e.isCoin98)return"Coin98 Wallet";if(e.isCoinbaseWallet)return"Coinbase Wallet";if(e.isDawn)return"Dawn Wallet";if(e.isDefiant)return"Defiant";if(e.isDesig)return"Desig Wallet";if(e.isEnkrypt)return"Enkrypt";if(e.isExodus)return"Exodus";if(e.isFordefi)return"Fordefi";if(e.isFrame)return"Frame";if(e.isFrontier)return"Frontier Wallet";if(e.isGamestop)return"GameStop Wallet";if(e.isHaqqWallet)return"HAQQ Wallet";if(e.isHyperPay)return"HyperPay Wallet";if(e.isImToken)return"ImToken";if(e.isHaloWallet)return"Halo Wallet";if(e.isKuCoinWallet)return"KuCoin Wallet";if(e.isMathWallet)return"MathWallet";if(e.isNovaWallet)return"Nova Wallet";if(e.isOkxWallet||e.isOKExWallet)return"OKX Wallet";if(e.isOneInchIOSWallet||e.isOneInchAndroidWallet)return"1inch Wallet";if(e.isOneKey)return"OneKey Wallet";if(e.isOpera)return"Opera";if(e.isPhantom)return"Phantom";if(e.isPortal)return"Ripio Portal";if(e.isRabby)return"Rabby Wallet";if(e.isRainbow)return"Rainbow";if(e.isSafePal)return"SafePal Wallet";if(e.isStatus)return"Status";if(e.isSubWallet)return"SubWallet";if(e.isTalisman)return"Talisman";if(e.isTally||e.isTaho)return"Taho";if(e.isTokenPocket)return"TokenPocket";if(e.isTokenary)return"Tokenary";if(e.isTrust||e.isTrustWallet)return"Trust Wallet";if(e.isTTWallet)return"TTWallet";if(e.isXDEFI)return"XDEFI Wallet";if(e.isZeal)return"Zeal";if(e.isZerion)return"Zerion";if(e.isMetaMask)return"MetaMask"};var Qa=(e,t)=>{if(!e.isMetaMask)return!1;if(e.isMetaMask&&!t)return!0;if(e.isBraveWallet&&!e._events&&!e._state||ai(e)!=="MetaMask")return!1;if(e.providers){for(let o of e.providers)if(!Qa(o))return!1}return!0},kt=()=>!!("phantom"in window&&window?.phantom?.ethereum?.isPhantom),yc=()=>{let e=window;if(!e.ethereum)return!1;if(e.ethereum.isCoinbaseWallet)return!0;if(e.ethereum.providers){for(let t of e.ethereum.providers)if(t&&t.isCoinbaseWallet)return!0}return!1};var gc=e=>!!String(e).toLowerCase().match(/^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/),vc=(e,t)=>{let o=e.slice(0),r=[];for(;o.length;)r.push(o.splice(0,t));return r},uo=(e,t=3,o=4)=>{if(!e)return"";let r=2,n=3;if(t+o+r+n>=e.length)return e;let i=e.slice(0,r+t),a=e.slice(e.length-o,e.length);return`${i}...${a}`},Za=e=>new Promise(t=>setTimeout(t,e));function wc(e,{interval:t=100,timeout:o=5e3}={}){return new Promise((r,n)=>{let i=0,a,l=()=>{if(i>=o){n("Max attempts reached without result");return}if(a=e(),i+=t,a!=null){r(a);return}setTimeout(l,t)};l()})}var Cc=(e,t={})=>{let o=t.delayMs||150,r=t.maxAttempts||270;return new Promise(async(n,i)=>{let a=!1,l=0;for(;!a&&l<r;){if(t.abortSignal?.aborted)return;e().then(()=>{a=!0,n()},(...s)=>{a=!0,i(...s)}),l+=1,await Za(o)}a||i(new Error("Exceeded max attempts before resolving function"))})},si=(e,t,o={})=>{let r=new URL(t,e);for(let[n,i]of Object.entries(o))r.searchParams.set(n,i);return r.href};var Xa=e=>e.replace(/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g,""),Go=e=>typeof e=="string"?e:"0x"+e.toString(16);async function bc(e,t=3e3){let o=!1,r=window;return new Promise(n=>{r.ethereum?i():(window.addEventListener("ethereum#initialized",i,{once:!0}),setTimeout(()=>{i()},t));function i(){if(o)return;o=!0,window.removeEventListener("ethereum#initialized",i);let a=e.getProviders(),l=[];for(let s of a)s.info.rdns!=="com.coinbase.wallet"&&l.push({type:s.info.name.toLowerCase().replace(/\s/g,"_"),eip6963InjectedProvider:s});kt()&&l.push({type:"phantom"});for(let s of hc()){let c=ai(s);if(!a.some(u=>u.info.name===c)){if(Qa(s,!0)&&!l.find(u=>u.type==="metamask")){l.push({type:"metamask",legacyInjectedProvider:s});continue}l.find(u=>u.type==="unknown_browser_extension")||l.push({type:"unknown_browser_extension",legacyInjectedProvider:s})}}n(l)}})}function lr(e){return`eip155:${String(Number(e))}`}var wt=(e,t,o)=>{let r=Number(e),n=t.find(a=>a.id===r);if(!n)throw new H(`Unsupported chainId ${e}`,4901);let i;if(o.rpcUrls&&o.rpcUrls[r]?i=o.rpcUrls[r]:n.rpcUrls.infura?.http[0]?i=n.rpcUrls.infura.http[0]+"/"+oi:n.rpcUrls.blast?.http[0]?i=n.rpcUrls.blast.http[0]+"/"+nc:i=n.rpcUrls.default?.http[0],!i)throw new H(`No RPC url found for ${e}`);return i},Ec=(e,t)=>{let o=Number(e),r=t.find(n=>n.id===o);if(!r)throw new H(`Unsupported chainId ${e}`,4901);return r.blockExplorers?.default.url};import Mf from"@coinbase/wallet-sdk";import{jsx as Pc,jsxs as xf}from"react/jsx-runtime";var Zr=({style:e,...t})=>xf("svg",{width:"1024",height:"1024",viewBox:"0 0 1024 1024",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"28px",width:"28px",...e},...t,children:[Pc("rect",{width:"1024",height:"1024",fill:"#0052FF",rx:100,ry:100}),Pc("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M152 512C152 710.823 313.177 872 512 872C710.823 872 872 710.823 872 512C872 313.177 710.823 152 512 152C313.177 152 152 313.177 152 512ZM420 396C406.745 396 396 406.745 396 420V604C396 617.255 406.745 628 420 628H604C617.255 628 628 617.255 628 604V420C628 406.745 617.255 396 604 396H420Z",fill:"white"})]});import{getAddress as It}from"@ethersproject/address";import{Web3Provider as Ac}from"@ethersproject/providers";import{default as If}from"eventemitter3";import{StaticJsonRpcProvider as Tc}from"@ethersproject/providers";import Rf from"eventemitter3";var Tf=["eth_sign","eth_populateTransactionRequest","eth_signTransaction","personal_sign","eth_signTypedData_v4"],xc=e=>Tf.includes(e);import{ErrorCode as Sf}from"@ethersproject/logger";var cr=class extends H{constructor(){super("Wallet timeout");this.type="wallet_error"}},dr=class extends H{constructor(){super("User rejected connection");this.type="wallet_error"}},et=e=>{if(e instanceof H)return e;if(e?.code&&e?.reason){let t=new Ue(e);return e.code===Sf.ACTION_REJECTED&&(t.details=Ve.E4001_USER_REJECTED_REQUEST),t}return e?.code?new Ue(e):new H("Unknown connector error",e)},At=class extends Ye{constructor(o,r,n){super(o);this.type="provider_error";this.code=r,this.data=n}},Ue=class extends At{constructor(o){let r=o;super(r.message,r.code,r.data);let n=Object.values(Ve).find(i=>i.eipCode===r.code);this.details=n||Ve.UNKNOWN_ERROR,r.code===-32002&&(r.message?.includes("already pending for origin")?r.message?.includes("wallet_requestPermissions")?this.details=Ve.E32002_CONNECTION_ALREADY_PENDING:this.details=Ve.E32002_REQUEST_ALREADY_PENDING:r.message?.includes("Already processing")&&r.message.includes("eth_requestAccounts")&&(this.details=Ve.E32002_WALLET_LOCKED))}},_f={ERROR_USER_EXISTS:{message:"User already exists for this address",detail:"Try another address!",retryable:!1},ERROR_TIMED_OUT:{message:"Wallet request timed out",detail:"Please try connecting again.",retryable:!0},ERROR_WALLET_CONNECTION:{message:"Could not log in with wallet",detail:"Please try connecting again.",retryable:!0},ERROR_USER_REJECTED_CONNECTION:{message:"You rejected the request",detail:"Please try connecting again.",retryable:!0}},kf={E32002_CONNECTION_ALREADY_PENDING:{eipCode:-32002,message:"Connection request already pending",detail:"Don\u2019t see your wallet? Check your other browser windows.",retryable:!1},E32002_REQUEST_ALREADY_PENDING:{eipCode:-32002,message:"Resource request already pending",detail:"Don\u2019t see your wallet? Check your other browser windows.",retryable:!1},E32002_WALLET_LOCKED:{eipCode:-32002,message:"Wallet might be locked",detail:"Don\u2019t see your wallet? Check your other browser windows.",retryable:!1},E4001_USER_REJECTED_REQUEST:{eipCode:4001,message:"Signature rejected",detail:"Please try signing again.",retryable:!0}},Af={E4001_DEFAULT_USER_REJECTED_REQUEST:{eipCode:4001,message:"User Rejected Request",detail:"The user rejected the request.",default:!0,retryable:!0},E4100_DEFAULT_UNAUTHORIZED:{eipCode:4100,message:"Unauthorized",detail:"The requested method and/or account has not been authorized by the user.",default:!0,retryable:!1},E4200_DEFAULT_UNSUPPORTED_METHOD:{eipCode:4200,message:"Unsupported Method",detail:"The Provider does not support the requested method.",default:!0,retryable:!1},E4900_DEFAULT_DISCONNECTED:{eipCode:4900,message:"Disconnected",detail:"The Provider is disconnected from all chains.",default:!0,retryable:!0},E4901_DEFAULT_CHAIN_DISCONNECTED:{eipCode:4901,message:"Chain Disconnected",detail:"The Provider is not connected to the requested chain.",default:!0,retryable:!0},E32700_DEFAULT_PARSE_ERROR:{eipCode:-32700,message:"Parse error",detail:"Invalid JSON",default:!0,retryable:!1},E32600_DEFAULT_INVALID_REQUEST:{eipCode:-32600,message:"Invalid request",detail:"JSON is not a valid request object",default:!0,retryable:!1},E32601_DEFAULT_METHOD_NOT_FOUND:{eipCode:-32601,message:"Method not found",detail:"Method does not exist",default:!0,retryable:!1},E32602_DEFAULT_INVALID_PARAMS:{eipCode:-32602,message:"Invalid params",detail:"Invalid method parameters",default:!0,retryable:!1},E32603_DEFAULT_INTERNAL_ERROR:{eipCode:-32603,message:"Internal error",detail:"Internal JSON-RPC error",default:!0,retryable:!0},E32000_DEFAULT_INVALID_INPUT:{eipCode:-32e3,message:"Invalid input",detail:"Missing or invalid parameters",default:!0,retryable:!1},E32001_DEFAULT_RESOURCE_NOT_FOUND:{eipCode:-32001,message:"Resource not found",detail:"Requested resource not found",default:!0,retryable:!1},E32002_DEFAULT_RESOURCE_UNAVAILABLE:{eipCode:-32002,message:"Resource unavailable",detail:"Requested resource not available",default:!0,retryable:!0},E32003_DEFAULT_TRANSACTION_REJECTED:{eipCode:-32003,message:"Transaction rejected",detail:"Transaction creation failed",default:!0,retryable:!0},E32004_DEFAULT_METHOD_NOT_SUPPORTED:{eipCode:-32004,message:"Method not supported",detail:"Method is not implemented",default:!0,retryable:!1},E32005_DEFAULT_LIMIT_EXCEEDED:{eipCode:-32005,message:"Limit exceeded",detail:"Request exceeds defined limit",default:!0,retryable:!1},E32006_DEFAULT_JSON_RPC_VERSION_NOT_SUPPORTED:{eipCode:-32006,message:"JSON-RPC version not supported",detail:"Version of JSON-RPC protocol is not supported",default:!0,retryable:!1}},Ve={UNKNOWN_ERROR:{eipCode:0,message:"Unknown error",detail:"Unknown error",retryable:!0},...Af,...kf},Kt={..._f,...Ve};var re=class{constructor(t,o){this.removeListener=(t,o)=>{if(this.walletProvider)try{return this.walletProvider.removeListener(t,o)}catch{console.warn("Unable to remove wallet provider listener")}};this.walletTimeout=(t=new cr,o=this.rpcTimeoutDuration)=>new Promise((r,n)=>setTimeout(()=>{n(t)},o));this.setWalletProvider=t=>{this.walletProvider&&this._subscriptions.forEach(o=>{this.removeListener(o.eventName,o.listener)}),this.walletProvider=t,this._subscriptions.forEach(o=>{this.walletProvider?.on(o.eventName,o.listener)})};this.walletProvider=t,this.rpcTimeoutDuration=o||Qr,this._subscriptions=[]}on(t,o){if(this.walletProvider)return this.walletProvider.on(t,o);this._subscriptions.push({eventName:t,listener:o})}async request(t){if(!this.walletProvider)throw new H(`A wallet request of type ${t.method} was made before setting a wallet provider.`);return Promise.race([this.walletProvider.request(t),this.walletTimeout()]).catch(o=>{throw et(o)})}},mo=class extends Error{constructor(o,r,n){super(o);this.code=r,this.data=n}},li=class extends Rf{constructor(o,r,n,i,a=1){super();this.walletProxy=o,this.address=r,this.chainId=a,this.rpcConfig=n,this.chains=i,this.provider=new Tc(wt(a,this.chains,n)),this.rpcTimeoutDuration=pr(n,"privy")}async handleSendTransaction(o){if(!o.params||!Array.isArray(o.params))throw new mo(`Invalid params for ${o.method}`,4200);let r=o.params[0];if(!await Ie()||!this.address)throw new mo("Disconnected",4900);return(await _c(r)).hash}handleSwitchEthereumChain(o){if(!o.params||!Array.isArray(o.params))throw new mo(`Invalid params for ${o.method}`,4200);let r;if(typeof o.params[0]=="string")r=o.params[0];else if("chainId"in o.params[0]&&typeof o.params[0].chainId=="string")r=o.params[0].chainId;else throw new mo(`Invalid params for ${o.method}`,4200);this.chainId=Number(r),this.provider=new Tc(wt(this.chainId,this.chains,this.rpcConfig)),this.emit("chainChanged",r)}async handlePersonalSign(o){if(!o.params||!Array.isArray(o.params))throw new Error("Invalid params for eth_estimateGas");let r=o.params[0];return await Sc(r)}async handleEstimateGas(o){if(!o.params||!Array.isArray(o.params))throw new Error("Invalid params for eth_estimateGas");delete o.params[0].gasPrice,delete o.params[0].maxFeePerGas,delete o.params[0].maxPriorityFeePerGas;let r={...o.params[0],chainId:Go(this.chainId)};try{return await this.provider.send("eth_estimateGas",[r])}catch{return delete r.from,await this.provider.send("eth_estimateGas",[r])}}async request(o){switch(console.debug("Embedded1193Provider.request() called with args",o),o.method){case"eth_accounts":case"eth_requestAccounts":return this.address?[this.address]:[];case"eth_chainId":return Go(this.chainId);case"eth_estimateGas":return this.handleEstimateGas(o);case"eth_sendTransaction":return this.handleSendTransaction(o);case"wallet_switchEthereumChain":return this.handleSwitchEthereumChain(o);case"personal_sign":return this.handlePersonalSign(o);default:break}if(xc(o.method)){let r=await Ie();if(await kc(),!r||!this.address)throw new mo("Disconnected",4900);try{return(await this.walletProxy.rpc({address:this.address,accessToken:r,request:{method:o.method,params:o.params}})).response.data}catch(n){throw console.error(n),new mo("Disconnected",4900)}}else return this.provider.send(o.method,o.params)}async connect(){let o=await Ie();if(!o||!this.address)return null;try{return(await this.walletProxy.connect({address:this.address,accessToken:o})).address}catch(r){return console.error(r),null}}},Rt=class extends re{constructor(o){super(o,o.rpcTimeoutDuration)}},fo=class extends re{constructor(t){super(t,t.rpcTimeoutDuration)}sendAsync(t,o){throw new Error("sendAsync is no longer supported by EIP-1193. Use the request method instead.")}};var Wf=(e,t)=>{switch(t){case"coinbase_wallet":return e.message.includes("addEthereumChain");default:return e.code===4902||e.message?.includes("4902")}},$e=class extends If{constructor(o,r,n,i){super();this.onAccountsChanged=o=>{o.length===0?this.onDisconnect():this.syncAccounts(o)};this.onChainChanged=o=>{this.wallets.forEach(r=>{r.chainId=lr(o),this.walletClientType==="privy"&&Q.put(ii(r.address),o)}),this.emit("walletsUpdated")};this.onDisconnect=()=>{this.connected=!1,this.wallets=[],this.emit("walletsUpdated")};this.onConnect=()=>{this.connected=!0,this.syncAccounts()};this.wallets=[],this.walletClientType=o,this.chains=r,this.defaultChain=n,this.rpcConfig=i,this.rpcTimeoutDuration=pr(i,o),this.connected=!1,this.initialized=!1}buildConnectedWallet(o,r){let n=async()=>!!this.wallets.find(i=>It(i.address)===It(o));return{address:It(o),chainId:r,switchChain:async i=>{if(!n)throw new H("Wallet is not currently connected.");let a=this.wallets.find(y=>It(y.address)===It(o))?.chainId;if(!a)throw new H("Unable to determine current chainId.");let l,s;if(typeof i=="number"?(l=`0x${i.toString(16)}`,s=i):(l=i,s=Number(i)),a===lr(l))return;let c=this.chains.find(y=>y.id===s);if(!c)throw new H(`Unsupported chainId: ${i}`);let u=async()=>{await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[{chainId:l}]})};try{return await u()}catch(y){if(Wf(y,this.walletClientType))return await this.proxyProvider.request({method:"wallet_addEthereumChain",params:[{chainId:l,chainName:c.name,nativeCurrency:c.nativeCurrency,rpcUrls:[c.rpcUrls.public?.http[0]??""],blockExplorerUrls:[c.blockExplorers?.default.url??""]}]}),u();throw this.walletClientType==="rainbow"&&y.message?.includes("wallet_switchEthereumChain")?new H(`Rainbow does not support the chainId ${r}`):y}},connectedAt:Date.now(),walletClientType:this.walletClientType,connectorType:this.connectorType,isConnected:n,getEthereumProvider:async()=>{if(!await n())throw new H("Wallet is not currently connected.");return this.proxyProvider},getEthersProvider:async()=>{if(!await n())throw new H("Wallet is not currently connected.");return new Ac(new Rt(this.proxyProvider))},getWeb3jsProvider:async()=>{if(!await n())throw new H("Wallet is not currently connected.");return new fo(this.proxyProvider)},sign:async i=>{if(!await n())throw new H("Wallet is not currently connected.");return await this.sign(i)},disconnect:()=>{this.disconnect()}}}async syncAccounts(o){let r=o;if(r===void 0){let c=await this.proxyProvider.request({method:"eth_accounts"});Array.isArray(c)&&(r=c)}if(!r||!Array.isArray(r)||r.length<=0||!r[0])return;let n=r[0],i=It(n),a=[],l;if(this.walletClientType==="privy"){let c=Q.get(ii(i));this.chains.find(u=>u.id===Number(c))||(Q.del(ii(i)),c=null),l=c||`0x${this.defaultChain.id.toString(16)}`;try{await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[{chainId:l}]})}catch{console.warn(`Unable to switch embedded wallet to chain ID ${l} on initialization`)}}else try{let c=await this.proxyProvider.request({method:"eth_chainId"});if(typeof c=="string")l=c;else if(typeof c=="number")l=`0x${c.toString(16)}`;else throw new Error("Invalid chainId returned from provider")}catch(c){console.warn(`Failed to get chainId from provider, defaulting to ${Ka}`,c),l=Ka}let s=lr(l);a.find(c=>It(c.address)===i)||a.push(this.buildConnectedWallet(It(n),s)),ci(a,this.wallets)||(this.wallets=a,this.emit("walletsUpdated"))}async getConnectedWallet(){let o=await this.proxyProvider.request({method:"eth_accounts"});return this.wallets.sort((r,n)=>n.connectedAt-r.connectedAt).find(r=>o.find(n=>It(n)===It(r.address)))||null}async isConnected(){let o=await this.proxyProvider.request({method:"eth_accounts"});return Array.isArray(o)&&o.length>0}async sign(o){return await this.connect({showPrompt:!1}),new Ac(new Rt(this.proxyProvider)).getSigner().signMessage(o)}subscribeListeners(){this.proxyProvider.on("accountsChanged",this.onAccountsChanged),this.proxyProvider.on("chainChanged",this.onChainChanged),this.proxyProvider.on("disconnect",this.onDisconnect),this.proxyProvider.on("connect",this.onConnect)}unsubscribeListeners(){this.proxyProvider.removeListener("accountsChanged",this.onAccountsChanged),this.proxyProvider.removeListener("chainChanged",this.onChainChanged),this.proxyProvider.removeListener("disconnect",this.onDisconnect),this.proxyProvider.removeListener("connect",this.onConnect)}};var Lf=e=>{let t=`https://mainnet.infura.io/v3/${oi}`,o=1;return e.makeWeb3Provider(t,o)},di,pi=class extends $e{constructor(o,r,n){super("coinbase_wallet",o,r,n);this.connectorType="coinbase_wallet";this.proxyProvider=new re(void 0,this.rpcTimeoutDuration),this.subscribeListeners(),di||(di=new Mf({appName:"Privy",darkMode:!1,headlessMode:!1,enableMobileWalletLink:!0})),this.proxyProvider.setWalletProvider(Lf(di)),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}disconnect(){di.disconnect()}get walletBranding(){return{name:"Coinbase Wallet",icon:Zr}}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new H("Unable to retrieve accounts");this.connected=!0,await this.syncAccounts([o[0]])}catch(o){throw et(o)}}};import{jsx as Rc}from"react/jsx-runtime";var ui=({...e})=>Rc("svg",{width:"15",height:"15",viewBox:"0 0 15 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e,children:Rc("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.37126 11.0323C2.37126 12.696 3.90598 13.4421 5.40654 13.4468C8.91753 13.4468 12.8021 11.2897 12.7819 7.67984C12.7673 5.07728 10.3748 2.86167 7.54357 2.88296C4.8495 2.88296 2.21821 4.6411 2.21803 7.03628C2.21803 7.67951 2.58722 8.30178 3.55231 8.37184C2.74763 9.16826 2.37126 10.1225 2.37126 11.0323ZM7.55283 8.68012C8.11562 8.68012 8.57186 8.13217 8.57186 7.45624C8.57186 6.78032 8.11562 6.23237 7.55283 6.23237C6.99003 6.23237 6.53379 6.78032 6.53379 7.45624C6.53379 8.13217 6.99003 8.68012 7.55283 8.68012ZM10.4747 8.68012C11.0375 8.68012 11.4937 8.13217 11.4937 7.45625C11.4937 6.78032 11.0375 6.23237 10.4747 6.23237C9.91186 6.23237 9.45562 6.78032 9.45562 7.45625C9.45562 8.13217 9.91186 8.68012 10.4747 8.68012Z",fill:e.color||"var(--privy-color-foreground-3)"})});var mi=class extends $e{constructor(o,r,n,i){super("privy",r,n,i);this.connectorType="embedded";this.proxyProvider=o,this.subscribeListeners(),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return await this.isConnected()?(await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[Go(o?.chainId||"0x1")]}),this.getConnectedWallet()):null}get walletBranding(){return{name:"Privy Wallet",icon:ui}}disconnect(){this.connected=!1}async promptConnection(){}};import{jsx as Ic}from"react/jsx-runtime";var ur=({style:e,...t})=>Ic("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",stroke:"currentColor",strokeWidth:1.5,viewBox:"0 0 24 24",style:{...e},...t,children:Ic("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M9 17.25v1.007a3 3 0 01-.879 2.122L7.5 21h9l-.621-.621A3 3 0 0115 18.257V17.25m6-12V15a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 15V5.25m18 0A2.25 2.25 0 0018.75 3H5.25A2.25 2.25 0 003 5.25m18 0V12a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 12V5.25"})});import{jsx as tt,jsxs as Nf}from"react/jsx-runtime";var mr=({style:e,...t})=>Nf("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",x:0,y:0,viewBox:"0 0 318.6 318.6",width:"28",height:"28",style:{height:"28px",width:"28px",...e},...t,children:[tt("style",{children:".s1{stroke-linecap:round;stroke-linejoin:round}.s2{fill:#e4761b;stroke:#e4761b}.s3{fill:#f6851b;stroke:#f6851b}"}),tt("path",{fill:"#e2761b",stroke:"#e2761b",className:"s1",d:"m274.1 35.5-99.5 73.9L193 65.8z"}),tt("path",{d:"m44.4 35.5 98.7 74.6-17.5-44.3zm193.9 171.3-26.5 40.6 56.7 15.6 16.3-55.3zm-204.4.9L50.1 263l56.7-15.6-26.5-40.6z",className:"s1 s2"}),tt("path",{d:"m103.6 138.2-15.8 23.9 56.3 2.5-2-60.5zm111.3 0-39-34.8-1.3 61.2 56.2-2.5zM106.8 247.4l33.8-16.5-29.2-22.8zm71.1-16.5 33.9 16.5-4.7-39.3z",className:"s1 s2"}),tt("path",{fill:"#d7c1b3",stroke:"#d7c1b3",className:"s1",d:"m211.8 247.4-33.9-16.5 2.7 22.1-.3 9.3zm-105 0 31.5 14.9-.2-9.3 2.5-22.1z"}),tt("path",{fill:"#233447",stroke:"#233447",className:"s1",d:"m138.8 193.5-28.2-8.3 19.9-9.1zm40.9 0 8.3-17.4 20 9.1z"}),tt("path",{fill:"#cd6116",stroke:"#cd6116",className:"s1",d:"m106.8 247.4 4.8-40.6-31.3.9zM207 206.8l4.8 40.6 26.5-39.7zm23.8-44.7-56.2 2.5 5.2 28.9 8.3-17.4 20 9.1zm-120.2 23.1 20-9.1 8.2 17.4 5.3-28.9-56.3-2.5z"}),tt("path",{fill:"#e4751f",stroke:"#e4751f",className:"s1",d:"m87.8 162.1 23.6 46-.8-22.9zm120.3 23.1-1 22.9 23.7-46zm-64-20.6-5.3 28.9 6.6 34.1 1.5-44.9zm30.5 0-2.7 18 1.2 45 6.7-34.1z"}),tt("path",{d:"m179.8 193.5-6.7 34.1 4.8 3.3 29.2-22.8 1-22.9zm-69.2-8.3.8 22.9 29.2 22.8 4.8-3.3-6.6-34.1z",className:"s3"}),tt("path",{fill:"#c0ad9e",stroke:"#c0ad9e",className:"s1",d:"m180.3 262.3.3-9.3-2.5-2.2h-37.7l-2.3 2.2.2 9.3-31.5-14.9 11 9 22.3 15.5h38.3l22.4-15.5 11-9z"}),tt("path",{fill:"#161616",stroke:"#161616",className:"s1",d:"m177.9 230.9-4.8-3.3h-27.7l-4.8 3.3-2.5 22.1 2.3-2.2h37.7l2.5 2.2z"}),tt("path",{fill:"#763d16",stroke:"#763d16",className:"s1",d:"m278.3 114.2 8.5-40.8-12.7-37.9-96.2 71.4 37 31.3 52.3 15.3 11.6-13.5-5-3.6 8-7.3-6.2-4.8 8-6.1zM31.8 73.4l8.5 40.8-5.4 4 8 6.1-6.1 4.8 8 7.3-5 3.6 11.5 13.5 52.3-15.3 37-31.3-96.2-71.4z"}),tt("path",{d:"m267.2 153.5-52.3-15.3 15.9 23.9-23.7 46 31.2-.4h46.5zm-163.6-15.3-52.3 15.3-17.4 54.2h46.4l31.1.4-23.6-46zm71 26.4 3.3-57.7 15.2-41.1h-67.5l15 41.1 3.5 57.7 1.2 18.2.1 44.8h27.7l.2-44.8z",className:"s3"})]});var fr=class extends $e{constructor(o,r,n,i,a){super(a||"unknown",o,r,n);this.connectorType="injected";this.proxyProvider=new re(void 0,this.rpcTimeoutDuration),this.subscribeListeners(),this.providerDetail=i;let l=i.provider;this.proxyProvider.setWalletProvider(l),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}get walletBranding(){return{name:this.providerDetail.info.name,icon:this.providerDetail.info.icon}}disconnect(){console.warn(`Programmatic disconnect with ${this.providerDetail.info.name} is not yet supported.`)}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new H("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw et(o)}}},en,Xr=class extends $e{constructor(o,r,n,i,a){super(a?"metamask":"unknown",o,r,n);this.connectorType="injected";Jn(this,en,void 0);this.proxyProvider=new re(void 0,this.rpcTimeoutDuration),this.subscribeListeners(),this.proxyProvider.setWalletProvider(i),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0}),a&&Ml(this,en,{name:"MetaMask",icon:mr})}async connect(o){return o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}get walletBranding(){return Wl(this,en)??{name:"Browser Extension",icon:ur}}disconnect(){console.warn("Programmatic disconnect with browser wallets is not yet supported.")}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new H("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw et(o)}}};en=new WeakMap;import{getAddress as Q2}from"@ethersproject/address";import{Web3Provider as X2}from"@ethersproject/providers";import{isMobile as Of}from"react-device-detect";var fi=class extends fr{disconnect(){console.warn("Metamask does not support programmatic disconnect.")}async promptConnection(){try{Of||await this.proxyProvider.request({method:"wallet_requestPermissions",params:[{eth_accounts:{}}]});let t=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!t||t.length===0||!t[0])throw new H("Unable to retrieve accounts");await this.syncAccounts([t[0]])}catch(t){throw et(t)}}};import{jsx as Wc,jsxs as Df}from"react/jsx-runtime";var ho=({style:e,...t})=>Df("svg",{xmlns:"http://www.w3.org/2000/svg",width:"108",height:"108",viewBox:"0 0 108 108",fill:"none",style:{height:"28px",width:"28px",...e},...t,children:[Wc("rect",{width:"108",height:"108",rx:"23",fill:"#AB9FF2"}),Wc("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M46.5267 69.9229C42.0054 76.8509 34.4292 85.6182 24.348 85.6182C19.5824 85.6182 15 83.6563 15 75.1342C15 53.4305 44.6326 19.8327 72.1268 19.8327C87.768 19.8327 94 30.6846 94 43.0079C94 58.8258 83.7355 76.9122 73.5321 76.9122C70.2939 76.9122 68.7053 75.1342 68.7053 72.314C68.7053 71.5783 68.8275 70.7812 69.0719 69.9229C65.5893 75.8699 58.8685 81.3878 52.5754 81.3878C47.993 81.3878 45.6713 78.5063 45.6713 74.4598C45.6713 72.9884 45.9768 71.4556 46.5267 69.9229ZM83.6761 42.5794C83.6761 46.1704 81.5575 47.9658 79.1875 47.9658C76.7816 47.9658 74.6989 46.1704 74.6989 42.5794C74.6989 38.9885 76.7816 37.1931 79.1875 37.1931C81.5575 37.1931 83.6761 38.9885 83.6761 42.5794ZM70.2103 42.5795C70.2103 46.1704 68.0916 47.9658 65.7216 47.9658C63.3157 47.9658 61.233 46.1704 61.233 42.5795C61.233 38.9885 63.3157 37.1931 65.7216 37.1931C68.0916 37.1931 70.2103 38.9885 70.2103 42.5795Z",fill:"#FFFDF8"})]});var hi=class extends $e{constructor(o,r,n){super("phantom",o,r,n);this.connectorType="phantom";this.proxyProvider=new re(void 0,this.rpcTimeoutDuration),this.subscribeListeners(),this.proxyProvider.setWalletProvider(window.phantom.ethereum),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}get walletBranding(){return{name:"Phantom",icon:ho}}disconnect(){console.warn("Phantom does not support programmatic disconnect.")}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new H("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw et(o)}}};import{EthereumProvider as Yf,OPTIONAL_EVENTS as Jf,OPTIONAL_METHODS as Qf}from"@walletconnect/ethereum-provider";import{isMobile as Zf}from"react-device-detect";import{createContext as Ff,useContext as Bf,useEffect as Gf,useRef as Hf,useState as zf}from"react";import{jsx as Uf}from"react/jsx-runtime";function yi({src:e,...t}){return Uf("img",{src:e,...t,style:{display:"none"}})}var E=()=>{throw new Error("You need to wrap your application with the <PrivyProvider> initialized with your app id.")};import{jsx as $f,jsxs as jf}from"react/jsx-runtime";var Mc=Ff({ready:!1,app:null,currentScreen:null,lastScreen:null,navigate:E,navigateBack:E,resetNavigation:E,setModalData:E,onUserCloseViaDialogOrKeybindRef:void 0}),Vf=["LANDING","CONNECT_ONLY_LANDING_SCREEN",null],Lc=e=>{let t=e.appConfig,o=e.authenticated,[r,n]=zf(e.initialScreen);Gf(()=>{!o&&!Vf.includes(e.initialScreen)&&e.setInitialScreen(null)},[o]);let i=Hf(null),a={ready:!!t?.id,app:t,data:e.data,setModalData:e.setModalData,currentScreen:e.initialScreen,lastScreen:r,navigate:l=>{e.setInitialScreen(l),n(e.initialScreen)},navigateBack:()=>{e.setInitialScreen(r)},resetNavigation:()=>{e.setInitialScreen(null),n(null)},onUserCloseViaDialogOrKeybindRef:i};return jf(Mc.Provider,{value:a,children:[(typeof t?.appearance?.logo=="string"||t?.appearance?.logo?.type==="img")&&$f(yi,{src:typeof t.appearance.logo=="string"?t.appearance.logo:t.appearance.logo.props.src}),e.children]})},S=()=>Bf(Mc);import{jsx as hr,jsxs as qf}from"react/jsx-runtime";var tn=({style:e,...t})=>{let{app:o}=S();return qf("svg",{width:"28",height:"28",viewBox:"0 0 28 28",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"28px",width:"28px",...e},...t,children:[hr("rect",{width:"28",height:"28",rx:"3",fill:o?.appearance.palette.colorScheme==="dark"?"#3396ff":"#141414"}),hr("g",{clipPath:"url(#clip0_1765_9946)",children:hr("path",{d:"M8.09448 10.3941C11.3558 7.20196 16.6442 7.20196 19.9055 10.3941L20.2982 10.7782C20.3369 10.8157 20.3677 10.8606 20.3887 10.9102C20.4097 10.9599 20.4206 11.0132 20.4206 11.0671C20.4206 11.121 20.4097 11.1744 20.3887 11.224C20.3677 11.2737 20.3369 11.3186 20.2982 11.3561L18.9554 12.6702C18.9158 12.7086 18.8628 12.7301 18.8077 12.7301C18.7526 12.7301 18.6996 12.7086 18.66 12.6702L18.1198 12.1415C15.8448 9.91503 12.1557 9.91503 9.88015 12.1415L9.30167 12.7075C9.26207 12.7459 9.20909 12.7673 9.15395 12.7673C9.0988 12.7673 9.04582 12.7459 9.00622 12.7075L7.66346 11.3934C7.62475 11.3559 7.59397 11.3109 7.57295 11.2613C7.55193 11.2117 7.5411 11.1583 7.5411 11.1044C7.5411 11.0505 7.55193 10.9971 7.57295 10.9475C7.59397 10.8979 7.62475 10.8529 7.66346 10.8154L8.09448 10.3941ZM22.6829 13.1115L23.8776 14.2814C23.9163 14.319 23.9471 14.3639 23.9681 14.4135C23.9892 14.4632 24 14.5165 24 14.5704C24 14.6243 23.9892 14.6777 23.9681 14.7273C23.9471 14.777 23.9163 14.8219 23.8776 14.8594L18.4893 20.1332C18.4102 20.2101 18.3042 20.2531 18.1938 20.2531C18.0835 20.2531 17.9775 20.2101 17.8984 20.1332L14.0743 16.3901C14.0545 16.3708 14.0279 16.36 14.0003 16.36C13.9726 16.36 13.9461 16.3708 13.9263 16.3901L10.1021 20.1332C10.023 20.2101 9.91703 20.2531 9.8067 20.2531C9.69636 20.2531 9.59038 20.2101 9.51124 20.1332L4.12236 14.8594C4.08365 14.8219 4.05287 14.777 4.03185 14.7273C4.01083 14.6777 4 14.6243 4 14.5704C4 14.5165 4.01083 14.4632 4.03185 14.4135C4.05287 14.3639 4.08365 14.319 4.12236 14.2814L5.31767 13.1115C5.39678 13.0348 5.50265 12.9919 5.61285 12.9919C5.72305 12.9919 5.82892 13.0348 5.90803 13.1115L9.73216 16.8546C9.75194 16.874 9.7785 16.8848 9.80616 16.8848C9.83381 16.8848 9.86037 16.874 9.88015 16.8546L13.7043 13.1115C13.7834 13.0346 13.8894 12.9916 13.9997 12.9916C14.1101 12.9916 14.216 13.0346 14.2952 13.1115L18.1198 16.8546C18.1396 16.874 18.1662 16.8848 18.1938 16.8848C18.2215 16.8848 18.2481 16.874 18.2678 16.8546L22.092 13.1115C22.1711 13.0346 22.2771 12.9916 22.3874 12.9916C22.4977 12.9916 22.6037 13.0346 22.6829 13.1115Z",fill:"white"})}),hr("defs",{children:hr("clipPath",{id:"clip0_1765_9946",children:hr("rect",{width:"20",height:"12.2531",fill:"white",transform:"translate(4 8)"})})})]})};var gi=e=>{let t;try{t=new URL(e).hostname}catch{return}for(let[o,r]of Object.entries(yr))if(t.includes(r.hostname))return{walletClientType:o,entry:r}};var yr={metamask:{id:"c57ca95b47569778a828d19178114f4db188b89b763c899ba0be274e97267d96",displayName:"MetaMask",hostname:"metamask.io",mobile:{native:"metamask://",universal:"https://metamask.app.link"}},trust:{id:"4622a2b2d6af1c9844944291e5e7351a6aa24cd7b23099efac1b2fd875da31a0",displayName:"Trust",hostname:"trustwallet.com",mobile:{universal:"https://link.trustwallet.com"}},safe:{id:"225affb176778569276e484e1b92637ad061b01e13a048b35a9d280c3b58970f",displayName:"Safe",hostname:"safe.global",mobile:{universal:"https://app.safe.global/"}},rainbow:{id:"1ae92b26df02f0abca6304df07debccd18262fdf5fe82daa81593582dac9a369",displayName:"Rainbow",hostname:"rainbow.me",mobile:{native:"rainbow://",universal:"https://rnbwapp.com"}},uniswap:{id:"c03dfee351b6fcc421b4494ea33b9d4b92a984f87aa76d1663bb28705e95034a",displayName:"Uniswap",hostname:"uniswap.org",mobile:{universal:"https://uniswap.org/app"}},zerion:{id:"ecc4036f814562b41a5268adc86270fba1365471402006302e70169465b7ac18",displayName:"Zerion",hostname:"zerion.io",mobile:{native:"zerion://",universal:"https://wallet.zerion.io"}},argent:{id:"bc949c5d968ae81310268bf9193f9c9fb7bb4e1283e1284af8f2bd4992535fd6",displayName:"Argent",hostname:"www.argent.xyz",mobile:{universal:"https://www.argent.xyz/app"}},spot:{id:"74f8092562bd79675e276d8b2062a83601a4106d30202f2d509195e30e19673d",displayName:"Spot",hostname:"www.spot-wallet.com",mobile:{universal:"https://spot.so"}},omni:{id:"afbd95522f4041c71dd4f1a065f971fd32372865b416f95a0b1db759ae33f2a7",displayName:"Omni",hostname:"omni.app",mobile:{universal:"https://links.omni.app"}},cryptocom:{id:"f2436c67184f158d1beda5df53298ee84abfc367581e4505134b5bcf5f46697d",displayName:"Crypto.com",hostname:"crypto.com",mobile:{universal:"https://wallet.crypto.com"}},blockchain:{id:"84b43e8ddfcd18e5fcb5d21e7277733f9cccef76f7d92c836d0e481db0c70c04",displayName:"Blockchain",hostname:"www.blockchain.com",mobile:{universal:"https://www.blockchain.com"}},safepal:{id:"0b415a746fb9ee99cce155c2ceca0c6f6061b1dbca2d722b3ba16381d0562150",displayName:"SafePal",hostname:"safepal.com",mobile:{universal:"https://link.safepal.io"}},bitkeep:{id:"38f5d18bd8522c244bdd70cb4a68e0e718865155811c043f052fb9f1c51de662",displayName:"BitKeep",hostname:"bitkeep.com",mobile:{universal:"https://bkapp.vip"}},zengo:{id:"9414d5a85c8f4eabc1b5b15ebe0cd399e1a2a9d35643ab0ad22a6e4a32f596f0",displayName:"ZenGo",hostname:"zengo.com",mobile:{universal:"https://get.zengo.com/"}},"1inch":{id:"c286eebc742a537cd1d6818363e9dc53b21759a1e8e5d9b263d0c03ec7703576",displayName:"1inch",hostname:"wallet.1inch.io",mobile:{universal:"https://wallet.1inch.io/wc/"}},binance:{id:"8a0ee50d1f22f6651afcae7eb4253e52a3310b90af5daef78a8c4929a9bb99d4",displayName:"Binance",hostname:"www.binance.com",mobile:{universal:"https://app.binance.com/cedefi"}},exodus:{id:"e9ff15be73584489ca4a66f64d32c4537711797e30b6660dbcb71ea72a42b1f4",displayName:"Exodus",hostname:"exodus.com",mobile:{universal:"https://exodus.com/m"}},mew_wallet:{id:"f5b4eeb6015d66be3f5940a895cbaa49ef3439e518cd771270e6b553b48f31d2",displayName:"MEW wallet",hostname:"mewwallet.com",mobile:{universal:"https://mewwallet.com"}},alphawallet:{id:"138f51c8d00ac7b9ac9d8dc75344d096a7dfe370a568aa167eabc0a21830ed98",displayName:"AlphaWallet",hostname:"alphawallet.com",mobile:{universal:"https://aw.app"}},keyring_pro:{id:"47bb07617af518642f3413a201ec5859faa63acb1dd175ca95085d35d38afb83",displayName:"KEYRING PRO",hostname:"keyring.app",mobile:{universal:"https://keyring.app/"}},mathwallet:{id:"7674bb4e353bf52886768a3ddc2a4562ce2f4191c80831291218ebd90f5f5e26",displayName:"MathWallet",hostname:"mathwallet.org",mobile:{universal:"https://www.mathwallet.org"}},unstoppable:{id:"8308656f4548bb81b3508afe355cfbb7f0cb6253d1cc7f998080601f838ecee3",displayName:"Unstoppable",hostname:"unstoppabledomains.com",mobile:{universal:"https://unstoppabledomains.com/mobile"}},obvious:{id:"031f0187049b7f96c6f039d1c9c8138ff7a17fd75d38b34350c7182232cc29aa",displayName:"Obvious",hostname:"obvious.technology",mobile:{universal:"https://wallet.obvious.technology"}},ambire:{id:"2c81da3add65899baeac53758a07e652eea46dbb5195b8074772c62a77bbf568",displayName:"Ambire",hostname:"www.ambire.com",mobile:{universal:"https://mobile.ambire.com"}},internet_money_wallet:{id:"dd43441a6368ec9046540c46c5fdc58f79926d17ce61a176444568ca7c970dcd",displayName:"Internet Money Wallet",hostname:"internetmoney.io",mobile:{universal:"https://internetmoney.io"}},coin98:{id:"2a3c89040ac3b723a1972a33a125b1db11e258a6975d3a61252cd64e6ea5ea01",displayName:"Coin98",hostname:"coin98.com",mobile:{universal:"https://coin98.services"}},abc_wallet:{id:"b956da9052132e3dabdcd78feb596d5194c99b7345d8c4bd7a47cabdcb69a25f",displayName:"ABC Wallet",hostname:"myabcwallet.io",mobile:{universal:"https://abcwalletconnect.page.link"}},arculus_wallet:{id:"0e4915107da5b3408b38e248f7a710f4529d54cd30e9d12ff0eb886d45c18e92",displayName:"Arculus Wallet",hostname:"www.getarculus.com",mobile:{universal:"https://gw.arculus.co/app"}},haha:{id:"719bd888109f5e8dd23419b20e749900ce4d2fc6858cf588395f19c82fd036b3",displayName:"HaHa",hostname:"www.haha.me",mobile:{universal:"https://haha.me"}},cling_wallet:{id:"942d0e22a7e6b520b0a03abcafc4dbe156a1fc151876e3c4a842f914277278ef",displayName:"Cling Wallet",hostname:"clingon.io",mobile:{universal:"https://cling.carrieverse.com/apple-app-site-association"}},broearn:{id:"8ff6eccefefa7506339201bc33346f92a43118d6ff7d6e71d499d8187a1c56a2",displayName:"Broearn",hostname:"www.broearn.com",mobile:{universal:"https://www.broearn.com/link/wallet/"}},copiosa:{id:"07f99a5d9849bb049d74830012b286f8b238e72b0337933ef22b84947409db80",displayName:"Copiosa",hostname:"copiosa.io",mobile:{universal:"https://copiosa.io/action/"}},burrito_wallet:{id:"8821748c25de9dbc4f72a691b25a6ddad9d7df12fa23333fd9c8b5fdc14cc819",displayName:"Burrito Wallet",hostname:"burritowallet.com",mobile:{universal:"https://burritowallet.com/wc?uri="}},enjin_wallet:{id:"bdc9433ffdaee55d31737d83b931caa1f17e30666f5b8e03eea794bac960eb4a",displayName:"Enjin Wallet",hostname:"enjin.io",mobile:{universal:"https://deeplink.wallet.enjin.io/"}},plasma_wallet:{id:"cbe13eb482c76f1fa401ff4c84d9acd0b8bc9af311ca0620a0b192fb28359b4e",displayName:"Plasma Wallet",hostname:"plasma-wallet.com",mobile:{universal:"https://plasma-wallet.com"}},avacus:{id:"94f785c0c8fb8c4f38cd9cd704416430bcaa2137f27e1468782d624bcd155a43",displayName:"Avacus",hostname:"avacus.cc",mobile:{universal:"https://avacus.app.link"}},bee:{id:"2cca8c1b0bea04ba37dee4017991d348cdb7b826804ab2bd31073254f345b715",displayName:"Bee",hostname:"www.beewallet.app",mobile:{universal:"https://beewallet.app/wc"}},pitaka:{id:"14e5d957c6eb62d3ee8fc6239703ac2d537d7e3552154836ca0beef775f630bc",displayName:"Pitaka",hostname:"pitaka.io",mobile:{universal:"https://app.pitaka.io"}},pltwallet:{id:"576c90ceaea34f29ff0104837cf2b2e23d201be43be1433feeb18d375430e1fd",displayName:"PLTwallet",hostname:"pltwallet.io",mobile:{universal:"https://pltwallet.io/"}},minerva:{id:"49bb9d698dbdf2c3d4627d66f99dd9fe90bba1eec84b143f56c64a51473c60bd",displayName:"Minerva",hostname:"minerva.digital",mobile:{universal:"https://minerva.digital"}},kryptogo:{id:"19418ecfd44963883e4d6abca1adeb2036f3b5ffb9bee0ec61f267a9641f878b",displayName:"KryptoGO",hostname:"kryptogo.com",mobile:{universal:"https://kryptogo.page.link"}},prema:{id:"5b8e33346dfb2a532748c247876db8d596734da8977905a27b947ba1e2cf465b",displayName:"PREMA",hostname:"premanft.com",mobile:{universal:"https://premanft.com"}},slingshot:{id:"d23de318f0f56038c5edb730a083216ff0cce00c1514e619ab32231cc9ec484b",displayName:"Slingshot",hostname:"slingshot.finance",mobile:{universal:"https://app.slingshot.finance"}},kriptonio:{id:"50df7da345f84e5a79aaf617df5167335a4b6751626df2e8a38f07029b3dde7b",displayName:"Kriptonio",hostname:"kriptonio.com",mobile:{universal:"https://app.kriptonio.com/mobile"}},timeless:{id:"9751385960bca290c13b443155288f892f62ee920337eda8c5a8874135daaea8",displayName:"Timeless",hostname:"timelesswallet.xyz",mobile:{universal:"https://timelesswallet.xyz"}},secux:{id:"6464873279d46030c0b6b005b33da6be5ed57a752be3ef1f857dc10eaf8028aa",displayName:"SecuX",hostname:"secuxtech.com",mobile:{universal:"https://wsweb.secuxtech.com"}},bitizen:{id:"41f20106359ff63cf732adf1f7dc1a157176c9b02fd266b50da6dcc1e9b86071",displayName:"Bitizen",hostname:"bitizen.org",mobile:{universal:"https://bitizen.org/wallet"}},blocto:{id:"14e7176536cb3706e221daaa3cfd7b88b7da8c7dfb64d1d241044164802c6bdd",displayName:"Blocto",hostname:"blocto.io",mobile:{universal:"https://blocto.app"}},safemoon:{id:"a0e04f1086aac204d4ebdd5f985c12ed226cd0006323fd8143715f9324da58d1",displayName:"SafeMoon",hostname:"safemoon.com",mobile:{universal:"https://safemoon.com/wc"}}};function Kf(e){return{name:e.displayName||"",universalLink:e.mobile.universal,deepLink:e.mobile.native}}var Nc=e=>e in yr,Oc=e=>{let t=yr[e].mobile;if("native"in t)return t.native};function Dc(e,t){let o=Kf(t);if(o.deepLink)return Hc(o.deepLink,e);if(o.universalLink)return zc(o.universalLink,e);throw new w(`Unsupported wallet ${t.id}`)}var Uc="WALLETCONNECT_DEEPLINK_CHOICE";function Fc(){try{localStorage.removeItem(Uc)}catch{}}function Bc({href:e,name:t}){try{localStorage.setItem(Uc,JSON.stringify({href:e,name:t}))}catch{}}function Gc(e){return e.startsWith("http://")||e.startsWith("https://")}function Hc(e,t){if(Gc(e))return zc(e,t);let o=e;o.includes("://")||(o=e.replaceAll("/","").replaceAll(":",""),o=`${o}://`),o.endsWith("/")||(o=`${o}/`);let r=encodeURIComponent(t);return{redirect:`${o}wc?uri=${r}`,href:o}}function zc(e,t){if(!Gc(e))return Hc(e,t);let o=e;o.endsWith("/")||(o=`${o}/`);let r=encodeURIComponent(t);return{redirect:`${o}wc?uri=${r}`,href:o}}function Vc(e,t){window.open(e,t,"noreferrer noopener")}var Wt=class extends $e{constructor(o,r,n,i,a){super(a||"unknown",n,i,r);this.connectorType="wallet_connect_v2";this.walletConnectCloudProjectId=o,this.rpcConfig=r,this.proxyProvider=new re(void 0,this.rpcTimeoutDuration),a&&(this.walletEntry=yr[a],this.walletClientType=a),this.createProvider().then(l=>{if(this.provider=l,this.proxyProvider.setWalletProvider(l),this.subscribeListeners(),l.session){if(this.walletProvider?.session?.peer.metadata.url){let s=gi(this.walletProvider?.session?.peer.metadata.url);this.walletEntry=s?.entry,this.walletClientType=s?.walletClientType||"unknown"}this.connected=!0,this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}else this.emit("initialized"),this.initialized=!0}),import("@walletconnect/modal").then(({WalletConnectModal:l})=>{this.modal=new l({projectId:this.walletConnectCloudProjectId,themeVariables:{"--wcm-z-index":"1000000"}}),this.modal.subscribeModal(s=>{!s.open&&!this.walletProvider?.session&&this.onQrModalClosed&&this.onQrModalClosed()})})}async connect(o){return o.showPrompt&&await this.promptConnection(),this.getConnectedWallet()}async isConnected(){return!!this.walletProvider?.connected}get walletBranding(){return this.walletClientType==="metamask"?{name:"Metamask",icon:mr}:{name:Xa(this.walletProvider?.session?.peer.metadata.name||"")||"WalletConnect",icon:this.walletProvider?.session?.peer.metadata.icons?.[0]||tn}}resetConnection(o){this.walletProvider&&this.walletProvider.connected&&(this.walletProvider.signer.session=void 0,this.walletEntry=yr[o],this.walletClientType=o,this.redirectUri=void 0,Fc(),this.onDisconnect())}async promptConnection(){if(this.provider)return new Promise((o,r)=>{let n=()=>{r(new dr)};this.onQrModalClosed=n,(async()=>{let a="",l=await Promise.race([this.walletProvider?.enable(),this.proxyProvider.walletTimeout()]);if(l?.length&&(a=l[0]),!a||a==="")throw new H("Unable to retrieve address");if(this.walletProvider?.session?.peer.metadata.url){let s=gi(this.walletProvider?.session?.peer.metadata.url);this.walletEntry=s?.entry,this.walletClientType=s?.walletClientType||"unknown",this.proxyProvider.rpcTimeoutDuration=pr(this.rpcConfig,this.walletClientType)}this.connected=!0,await this.syncAccounts(l),o()})().catch(a=>{if(a){r(et(a));return}r(new H("Unknown error during connection"))}).finally(()=>this.modal?.closeModal())})}disconnect(){this.walletProvider?.disconnect().then(()=>this.onDisconnect()).catch(()=>console.warn("Unable to disconnect Wallet Connect provider"))}get walletProvider(){return this.proxyProvider.walletProvider}setWalletProvider(o){this.proxyProvider.setWalletProvider(o)}async createProvider(){let o={};for(let n of this.chains){let i=wt(n.id,this.chains,this.rpcConfig);i&&(o[n.id]=i)}let r=await Yf.init({projectId:this.walletConnectCloudProjectId,chains:[this.defaultChain.id],optionalChains:this.chains.map(n=>n.id),optionalEvents:Jf,optionalMethods:Qf,rpcMap:o,showQrModal:!1});return r.on("display_uri",n=>{if(r.signer.abortPairingAttempt(),Zf&&this.walletEntry){let{redirect:i,href:a}=Dc(n,this.walletEntry);Bc({href:a,name:this.walletEntry.displayName}),this.redirectUri=i,Vc(i,"_self")}else this.modal?.openModal({uri:n,chains:[this.defaultChain.id]})}),r.on("connect",()=>{if(this.modal?.closeModal(),r.session?.peer.metadata.url){let n=gi(r.session?.peer.metadata.url);this.walletEntry=n?.entry,this.walletClientType=n?.walletClientType||"unknown"}}),r}async enableProvider(){return this.walletProvider?.connected?Promise.resolve(this.walletProvider.accounts):await this.walletProvider?.enable()}};var es=e=>{let t=localStorage.getItem("-walletlink:https://www.walletlink.org:Addresses");return t?!!e?.linkedAccounts.filter(r=>r.type=="wallet"&&r.address===$c(t)).length:!1},pr=(e,t)=>e.rpcTimeouts?e.rpcTimeouts[t]||Qr:Qr,on=class extends Xf{constructor(o,r,n,i,a){super();this.getEthereumProvider=()=>{let o=this.wallets[0],r=this.walletConnectors.find(n=>n.wallets.find(i=>i.address===o?.address));return!o||!r?new re:r.proxyProvider};this.walletConnectCloudProjectId=o,this.rpcConfig=r,this.chains=n,this.defaultChain=i,this.walletConnectors=[],this.initialized=!1,this.store=a,this.initializedWalletConnectors=0,this.walletsReady=!1,this.storedConnections=this.loadConnectionHistory()}get wallets(){let o=new Set,r=this.walletConnectors.flatMap(i=>i.wallets).sort((i,a)=>i.connectedAt&&a.connectedAt?a.connectedAt-i.connectedAt:0).filter(i=>{let a=`${i.address}${i.walletClientType}${i.connectorType}`;return o.has(a)?!1:(o.add(a),!0)}),n=r.findIndex(i=>i.address===(this.activeWallet?this.activeWallet:"unknown"));return n>=0&&r.unshift(r.splice(n,1)[0]),r}initialize(){this.initialized||(Q.get(ja)&&(Q.getKeys().forEach(o=>{o.startsWith("walletconnect")&&Q.del(o)}),Q.del(ja)),bc(this.store).then(o=>o.forEach(({type:r,eip6963InjectedProvider:n,legacyInjectedProvider:i})=>{this.createWalletConnector("injected",r,{eip6963InjectedProvider:n,legacyInjectedProvider:i})})),this.createWalletConnector("coinbase_wallet","coinbase_wallet"),this.createWalletConnector("wallet_connect_v2","unknown"),this.initialized=!0)}findWalletConnector(o,r){return o==="wallet_connect_v2"?this.walletConnectors.find(n=>n.connectorType===o)||null:this.walletConnectors.find(n=>n.connectorType===o&&n.walletClientType===r)||null}onInitialized(o){o.wallets.forEach(r=>{let n=this.storedConnections.find(i=>i.address===r.address&&i.connectorType===r.connectorType&&i.walletClientType===r.walletClientType);n&&(r.connectedAt=n.connectedAt)}),this.saveConnectionHistory(),this.emit("walletsUpdated"),this.initializedWalletConnectors++,this.walletsReady=this.initializedWalletConnectors===this.walletConnectors.length}onWalletsUpdated(o){o.initialized&&(this.saveConnectionHistory(),this.emit("walletsUpdated"))}addEmbeddedWalletConnector(o,r,n){let i=this.findWalletConnector("embedded","privy");if(i)i.proxyProvider.walletProxy=o;else{let a=new li(o,r,this.rpcConfig,this.chains,n.id),l=new mi(a,this.chains,n,this.rpcConfig);this.addWalletConnector(l)}}removeEmbeddedWalletConnector(){let o=this.findWalletConnector("embedded","privy");if(o){let r=this.walletConnectors.indexOf(o);this.walletConnectors.splice(r,1),this.saveConnectionHistory(),this.storedConnections=this.loadConnectionHistory(),this.emit("walletsUpdated")}}async createWalletConnector(o,r,n){let i=this.findWalletConnector(o,r);if(i)return i instanceof Wt&&i.resetConnection(r),i;let l=(()=>{if(o==="injected"){if(r==="metamask"&&n?.eip6963InjectedProvider)return new fi(this.chains,this.defaultChain,this.rpcConfig,n?.eip6963InjectedProvider,"metamask");if(r==="metamask"&&n?.legacyInjectedProvider)return new Xr(this.chains,this.defaultChain,this.rpcConfig,n?.legacyInjectedProvider,!0);if(r==="phantom"&&kt())return new hi(this.chains,this.defaultChain,this.rpcConfig);if(n?.legacyInjectedProvider&&r==="unknown_browser_extension")return new Xr(this.chains,this.defaultChain,this.rpcConfig,n?.legacyInjectedProvider);if(n?.eip6963InjectedProvider)return new fr(this.chains,this.defaultChain,this.rpcConfig,n?.eip6963InjectedProvider,r)}else return o==="coinbase_wallet"?new pi(this.chains,this.defaultChain,this.rpcConfig):new Wt(this.walletConnectCloudProjectId,this.rpcConfig,this.chains,this.defaultChain,r)})();return l&&this.addWalletConnector(l),l||null}addWalletConnector(o){this.walletConnectors.push(o),o.on("initialized",()=>this.onInitialized(o)),o.on("walletsUpdated",()=>this.onWalletsUpdated(o))}loadConnectionHistory(){let o=a=>a&&typeof a.address=="string"&&typeof a.connectorType=="string"&&typeof a.walletClientType=="string"&&typeof a.connectedAt=="number",r=Q.get(qa);return r&&Array.isArray(r)&&r.map(a=>o(a)).every(Boolean)?r:[]}saveConnectionHistory(){let o=this.wallets.map(r=>({address:r.address,connectorType:r.connectorType,walletClientType:r.walletClientType,connectedAt:r.connectedAt}));Q.put(qa,o)}async activeWalletSign(o){let r=this.wallets,n=r.length>0?r[0]:null;return n?n.sign(o):null}setActiveWallet(o){this.activeWallet=$c(o),this.emit("walletsUpdated")}};function ci(e,t){if(e.length!==t.length)return!1;for(let o=0;o<e.length;o++){let r=e[o],n=t[o];if(r?.address!==n?.address||r?.chainId!==n?.chainId||r?.connectorType!==n?.connectorType||r?.connectedAt!==n?.connectedAt||r?.walletClientType!==n?.walletClientType||r?.isConnected!==n?.isConnected||r?.linked!==n?.linked)return!1}return!0}import{ofetch as eh}from"ofetch";var th=[Xn(),ti(),ei()],oh=e=>{let t=new AbortController;return setTimeout(()=>t.abort(),e),t.signal},vi=class{constructor(t,o,r){this.appId=t,this.clientAnalyticsId=o.clientAnalyticsId,this.sdkVersion=za,this.client=o,this.defaults=r,this.fallbackApiUrl=o.fallbackApiUrl,this.baseFetch=eh.create({baseURL:this.defaults.baseURL,retry:3,retryDelay:500,credentials:"include",onRequest:async({request:n,options:i})=>{let a=new Headers(i.headers);a.set("privy-app-id",this.appId),a.set("privy-ca-id",this.clientAnalyticsId||""),a.set("privy-client",`react-auth:${this.sdkVersion}`);let l=!th.includes(n.toString());if(!a.has("authorization")&&l){let s=await this.client.getAccessToken();s!==null&&a.set("authorization",`Bearer ${s}`)}i.headers=a,i.signal||(i.signal=oh(this.defaults.timeout))},onRequestError:({error:n})=>{if(n instanceof DOMException&&n.name==="AbortError")throw new Qn}})}async get(t,o){try{return await this.baseFetch(t,o)}catch(r){throw te(r)}}async post(t,o,r){try{return await this.baseFetch(t,{method:"POST",...o?{body:o}:{},...r})}catch(n){throw te(n)}}async delete(t,o){try{return await this.baseFetch(t,{method:"DELETE",...o})}catch(r){throw te(r)}}};import rn from"js-cookie";function jc(e){return e instanceof Do?"email":e instanceof Fo?"sms":e instanceof Uo?"siwe":e instanceof ar?"custom_auth":e instanceof co?e.meta.provider:null}import*as qc from"jose";var Mt=class{static parse(t){try{return new Mt(t)}catch{return null}}constructor(t){this.value=t,this._decoded=qc.decodeJwt(t)}get subject(){return this._decoded.sub}get expiration(){return this._decoded.exp}get issuer(){return this._decoded.iss}get audience(){return this._decoded.aud}isExpired(t=0){let o=Date.now(),r=(this.expiration-t)*1e3;return o>=r}};var rh=30,wi=class{constructor(){this.authenticateOnce=new ct(async t=>this._authenticate(t)),this.linkOnce=new ct(async t=>this._link(t)),this.refreshOnce=new ct(this._refresh.bind(this)),this.destroyOnce=new ct(this._destroy.bind(this)),this.forkSessionOnce=new ct(this._forkSession.bind(this))}get token(){try{let t=Q.get(Bo);return typeof t=="string"?new Mt(t).value:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get refreshToken(){try{let t=Q.get(ni);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get forkedToken(){try{let t=Q.get(Yr);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get mightHaveServerCookies(){try{let t=rn.get(lc);return t!==void 0&&t.length>0}catch(t){console.error(t)}return!1}hasRefreshCredentials(){return this.mightHaveServerCookies||typeof this.token=="string"&&typeof this.refreshToken=="string"}hasRecoveryCredentials(){return typeof this.forkedToken=="string"}hasActiveToken(){let t=Mt.parse(this.token);return t!==null&&!t.isExpired(rh)}authenticate(t){return this.authenticateOnce.execute(t)}link(t){return this.linkOnce.execute(t)}refresh(){return this.refreshOnce.execute()}forkSession(){return this.forkSessionOnce.execute()}destroy(){return this.destroyOnce.execute()}async _authenticate(t){try{let{token:o,refresh_token:r,user:n,is_new_user:i}=await t.authenticate();this.storeToken(o),this.storeRefreshToken(r);let a=jc(t);return a&&this.client&&this.client.createAnalyticsEvent("sdk_authenticate",{method:a,isNewUser:i}),a==="siwe"&&this.client&&this.client.createAnalyticsEvent("sdk_authenticate_siwe",{connectorType:t.meta.connectorType,walletClientType:t.meta.walletClientType}),{user:vt(n),isNewUser:i}}catch(o){throw console.warn("Error authenticating session"),Qe(o)}}async _link(t){try{let o=await t.link();return vt(o)}catch(o){throw console.warn("Error linking account"),Qe(o)}}async _refresh(){if(!this.api)throw new w("Session has no API instance");if(!this.client)throw new w("Session has no PrivyClient instance");await this.client.getAccessToken({disableAutoRefresh:!0});let t=this.token,o=this.refreshToken,r=this.forkedToken;try{let n;if(t&&o||this.mightHaveServerCookies){let i={};t&&(i.authorization=`Bearer ${t}`);let a=o?{refresh_token:o}:{};n=await this.api.post(Xn(),a,{headers:i}),r&&this.clearForkedToken()}else if(r)n=await this.api.post(ti(),{refresh_token:r}),this.clearForkedToken();else return null;return this.storeToken(n.token),this.storeRefreshToken(n.refresh_token),vt(n.user)}catch(n){if(n instanceof lo&&n.privyErrorCode==="missing_or_invalid_token")return console.warn("Unable to refresh tokens - token is missing or no longer valid"),this.destroyLocalState(),null;throw Qe(n)}}async _destroy(){try{await this.api?.post(ei(),{refresh_token:this.refreshToken})}catch{console.warn("Error destroying session")}this.destroyLocalState()}async _forkSession(){if(!this.api)throw new w("Session has no API instance");let t=this.refreshToken;try{let o=await this.api.post(Nl(),{refresh_token:t});return this.storeToken(o.token),this.storeRefreshToken(o.refresh_token),o.new_session_refresh_token}catch(o){throw Qe(o)}}destroyLocalState(){this.storeToken(null),this.storeRefreshToken(null),this.clearForkedToken(),this.client?.onDeleteToken?.()}storeToken(t){if(typeof t=="string"){let o=Q.get(Bo);if(Q.put(Bo,t),o!==t&&this.client?.onStoreToken?.(t),!this.client?.useServerCookies){let r=Mt.parse(t)?.expiration;rn.set(Va,t,{sameSite:"Strict",secure:!0,expires:r?new Date(r*1e3):void 0})}}else Q.del(Bo),rn.remove(Va)}storeRefreshToken(t){typeof t=="string"?(Q.put(ni,t),this.client?.useServerCookies||rn.set($a,t,{sameSite:"Strict",secure:!0,expires:30})):(Q.del(ni),rn.remove($a))}clearForkedToken(){Q.del(Yr)}};var ts,Ci,Kc,nn=class{constructor(t){Jn(this,Ci);this.apiUrl=t.apiUrl||ri,this.fallbackApiUrl=this.apiUrl,this.useServerCookies=!1,this.timeout=t.timeout||ac,this.appId=t.appId,this.clientAnalyticsId=Ll(this,Ci,Kc).call(this),ts||(ts=new wi),this.session=ts,this.api=this.generateApi(),this.session.client=this}initializeConnectorManager(t,o,r,n,i){this.connectors||(this.connectors=new on(t,o,r,n,i))}generateApi(){let t=new vi(this.appId,this,{baseURL:this.apiUrl,timeout:this.timeout});return this.session.api=t,t}updateApiUrl(t){this.apiUrl=t||this.fallbackApiUrl,this.api=this.generateApi(),t&&(this.useServerCookies=!0)}authenticate(){if(!this.authFlow)throw new w("No auth flow in progress.");return this.session.authenticate(this.authFlow)}link(){if(!this.authFlow)throw new w("No auth flow in progress.");return this.session.link(this.authFlow)}async logout(){await this.session.destroy(),this.authFlow=void 0}startAuthFlow(t){t.api=this.api,this.authFlow=t}startMfaFlow(t){t.api=this.api,this.mfaFlow=t}async unlinkEmail(t){try{let o=await this.api.post(Yl(),{address:t});return vt(o)}catch(o){throw Qe(o)}}async unlinkPhone(t){try{let o=await this.api.post(Jl(),{phoneNumber:t});return vt(o)}catch(o){throw Qe(o)}}async unlinkWallet(t){try{let o=await this.api.post(Kl(),{address:t});return vt(o)}catch(o){throw Qe(o)}}async unlinkOAuth(t,o){try{let r=await this.api.post(Ql(),{provider:t,subject:o});return vt(r)}catch(r){throw Qe(r)}}async createAnalyticsEvent(t,o,r){if(!(typeof window>"u"))try{this.clientAnalyticsId||console.warn("No client analytics id set, refusing to send analytics event"),await this.api.post(Zl(),{event_name:t,client_id:this.clientAnalyticsId,payload:{...o||{},clientTimestamp:r?r.toISOString():new Date().toISOString()}})}catch{}}async signMoonpayOnRampUrl(t){try{return this.api.post(Xl(),t)}catch(o){throw Qe(o)}}async getAuthenticatedUser(){return this.session.hasRefreshCredentials()||this.session.hasRecoveryCredentials()?this.session.refresh():null}async getAccessToken(t){return this.session.hasActiveToken()?Mt.parse(this.session.token)?.audience!==this.appId?(await this.logout(),null):this.session.token:!t?.disableAutoRefresh&&this.session.hasRefreshCredentials()?(await this.session.refresh(),this.session.token):null}async getServerConfig(){try{let t=await this.api.get(`/api/v1/apps/${this.appId}`,{baseURL:this.fallbackApiUrl});return{id:t.id,name:t.name,verificationKey:t.verification_key,logoUrl:t.logo_url||void 0,accentColor:t.accent_color||void 0,showWalletLoginFirst:t.show_wallet_login_first,allowlistConfig:{errorTitle:t.allowlist_config.error_title,errorDetail:t.allowlist_config.error_detail,errorCtaText:t.allowlist_config.cta_text,errorCtaLink:t.allowlist_config.cta_link},walletAuth:t.wallet_auth,emailAuth:t.email_auth,smsAuth:t.sms_auth,googleOAuth:t.google_oauth,twitterOAuth:t.twitter_oauth,discordOAuth:t.discord_oauth,githubOAuth:t.github_oauth,tiktokOAuth:t.tiktok_oauth,linkedinOAuth:t.linkedin_oauth,appleOAuth:t.apple_oauth,termsAndConditionsUrl:t.terms_and_conditions_url,embeddedWalletConfig:{createOnLogin:t.embedded_wallet_config?.create_on_login,requireUserPasswordOnCreate:t.embedded_wallet_config?.require_user_password_on_create},privacyPolicyUrl:t.privacy_policy_url,customApiUrl:t.custom_api_url,walletConnectCloudProjectId:t.wallet_connect_cloud_project_id,fiatOnRampEnabled:t.fiat_on_ramp_enabled,captchaEnabled:t.captcha_enabled,captchaSiteKey:t.captcha_site_key,twitterOAuthOnMobileEnabled:t.twitter_oauth_on_mobile_enabled,createdAt:new Date(t.created_at*1e3),updatedAt:new Date(t.updated_at*1e3),mfaMethods:t.mfa_methods}}catch(t){throw Qe(t)}}async getUsdTokenPrice(t){try{return(await this.api.get(`/api/v1/token_price?chainId=${t.id}&tokenSymbol=${t.nativeCurrency.symbol}`)).usd}catch{console.error(`Unable to fetch token price for chain with id ${t.id}`);return}}async forkSession(){return await this.session.forkSession()}};Ci=new WeakSet,Kc=function(){if(typeof window>"u")return null;try{let o=Q.get(Jr);if(typeof o=="string"&&o.length>0)return o}catch{}let t=nh();try{return Q.put(Jr,t),t}catch{return t}};import"wicg-inert";import{useRef as k0,useState as Gm}from"react";import{useEffect as A0}from"react";import R0 from"react-dom";import{createContext as ih,useContext as ah}from"react";var ye=ih({ready:!1,authenticated:!1,user:null,walletConnectors:null,connectWallet:E,login:E,linkEmail:E,linkPhone:E,linkWallet:E,linkGoogle:E,linkTwitter:E,linkDiscord:E,linkGithub:E,linkTiktok:E,linkLinkedIn:E,linkApple:E,logout:E,getAccessToken:E,getEthereumProvider:E,getEthersProvider:E,getWeb3jsProvider:E,unlinkEmail:E,unlinkPhone:E,unlinkWallet:E,unlinkGoogle:E,unlinkTwitter:E,unlinkDiscord:E,unlinkGithub:E,unlinkTiktok:E,unlinkLinkedIn:E,unlinkApple:E,setActiveWallet:E,forkSession:E,createWallet:E,signMessage:E,enrollInMfa:E,initEnrollmentWithSms:E,initEnrollmentWithTotp:E,promptMfa:E,init:E,submitEnrollmentWithSms:E,submitEnrollmentWithTotp:E,unenroll:E,submit:E,cancel:E,sendTransaction:E,exportWallet:E,setWalletPassword:E,initLoginWithEmail:E,loginWithCode:E,isModalOpen:!1}),z=()=>ah(ye);import{useEffect as sh,useState as lh}from"react";var Yc=e=>{let[t,o]=lh("auto");return sh(()=>{let r=new ResizeObserver(n=>{o(n[0]?.contentRect.height??"auto")});return e.current&&r.observe(e.current),()=>{e.current&&r.unobserve(e.current)}},[e.current]),t};import{createContext as ch,useContext as dh,useEffect as ph}from"react";var Jc={login:{onComplete:[],onError:[]},logout:{onSuccess:[]},connectWallet:{onSuccess:[],onError:[]},createWallet:{onSuccess:[],onError:[]},configureMfa:{onMfaRequired:[]},accessToken:{onAccessTokenGranted:[],onAccessTokenRemoved:[]}},os=ch(void 0),Qc=()=>dh(os);function dt(e,t){if(!t)return;let r=Qc().current[e];return ph(()=>{for(let[n,i]of Object.entries(t))r.hasOwnProperty(n)||console.warn(`Invalid event type "${n}" for action "${e}"`),r[n]?.push(i);return()=>{for(let[n,i]of Object.entries(t))r.hasOwnProperty(n)||console.warn(`Invalid event type "${n}" for action "${e}"`),r[n]=r[n]?.filter(a=>a!==i)}},[t])}function ae(e,t,o,...r){for(let n of e.current[t][o])n(...r)}function Zc(){let e=Qc();return(t,o,...r)=>ae(e,t,o,...r)}function rs(e){dt("configureMfa",e)}import ps from"styled-components";import Ho,{css as ss}from"styled-components";import is from"styled-components";import{Fragment as mh,jsx as ns,jsxs as fh}from"react/jsx-runtime";var bi=({success:e,fail:t})=>fh(mh,{children:[ns(Lt,{className:e?"success":t?"fail":""}),ns(as,{className:e?"success":t?"fail":""})]}),Lt=is.span`
13
13
  && {
14
14
  width: 82px;
15
15
  height: 82px;
@@ -85,13 +85,13 @@ Resources:
85
85
  color: var(--privy-color-foreground-3);
86
86
  cursor: not-allowed;
87
87
  }
88
- `,F=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>pt(Zc,{disabled:t||o,...n,children:t?Si("span",{children:[pt(an,{}),r?pt("span",{children:r}):null]}):e}),Z3=Ho(F)`
88
+ `,F=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>pt(Xc,{disabled:t||o,...n,children:t?Si("span",{children:[pt(an,{}),r?pt("span",{children:r}):null]}):e}),Z3=Ho(F)`
89
89
  ${e=>e.hideAnimations&&ss`
90
90
  && {
91
91
  transition: none;
92
92
  }
93
93
  `}
94
- `,Pi=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>pt(Zc,{as:"a",disabled:t||o,...n,children:t?Si("span",{children:[pt(an,{}),r?pt("span",{children:r}):null]}):e}),Zc=Ho(Ei)`
94
+ `,Pi=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>pt(Xc,{as:"a",disabled:t||o,...n,children:t?Si("span",{children:[pt(an,{}),r?pt("span",{children:r}):null]}):e}),Xc=Ho(Ei)`
95
95
  position: relative;
96
96
 
97
97
  && {
@@ -241,7 +241,7 @@ Resources:
241
241
  cursor: not-allowed;
242
242
  }
243
243
  }
244
- `;import gh from"styled-components";var Xc=gh.span`
244
+ `;import gh from"styled-components";var ed=gh.span`
245
245
  && {
246
246
  width: 82px;
247
247
  height: 82px;
@@ -257,7 +257,7 @@ Resources:
257
257
  border-color: var(--privy-color-accent);
258
258
  border-bottom-color: var(--privy-color-accent);
259
259
  }
260
- `;import{ArrowLeftIcon as Ch,XMarkIcon as bh}from"@heroicons/react/24/outline";import cs from"styled-components";import{createContext as vh,useContext as wh}from"react";var ls=vh({isNewUserThisSession:!1,isLinking:!1,linkingHint:null,walletConnectionStatus:null,mipdStore:null,connectors:[],rpcConfig:{rpcUrls:{}},showFiatPrices:!0,chains:[],clientAnalyticsId:null,pendingTransaction:null,nativeTokenSymbolForChainId:E,initializeWalletProxy:E,getAuthMeta:E,getAuthFlow:E,closePrivyModal:E,connectWallet:E,initLoginWithWallet:E,loginWithWallet:E,loginWithCode:E,initLoginWithEmail:E,initLoginWithSms:E,resendEmailCode:E,resendSmsCode:E,initLoginWithOAuth:E,loginWithOAuth:E,refreshUser:E,walletProxy:null,createAnalyticsEvent:E,getUsdTokenPrice:E,recoverEmbeddedWallet:E,getFiatOnRampConfig:E,updateWallets:E,setReadyToTrue:E}),k=()=>wh(ls);import{jsx as ut,jsxs as Sh}from"react/jsx-runtime";var ed=()=>ut("div",{}),Eh=({backFn:e})=>ut("div",{children:ut(td,{onClick:e,children:ut(Ch,{height:"16px",width:"16px",strokeWidth:2})})}),Ph=e=>ut("div",{children:ut(td,{onClick:e.onClose,children:ut(bh,{height:"16px",width:"16px",strokeWidth:2})})});var T=({backFn:e,onClose:t,title:o,closeable:r=!0})=>{let{closePrivyModal:n}=k(),{app:i}=S();return Sh(xh,{children:[e?ut(Eh,{backFn:e}):ut(ed,{}),o&&ut(Th,{children:o}),i?.render.inDialog&&r?ut(Ph,{onClose:t||(()=>n())}):ut(ed,{})]})},td=cs.button`
260
+ `;import{ArrowLeftIcon as Ch,XMarkIcon as bh}from"@heroicons/react/24/outline";import cs from"styled-components";import{createContext as vh,useContext as wh}from"react";var ls=vh({isNewUserThisSession:!1,isLinking:!1,linkingHint:null,walletConnectionStatus:null,mipdStore:null,connectors:[],rpcConfig:{rpcUrls:{}},showFiatPrices:!0,chains:[],clientAnalyticsId:null,pendingTransaction:null,nativeTokenSymbolForChainId:E,initializeWalletProxy:E,getAuthMeta:E,getAuthFlow:E,closePrivyModal:E,connectWallet:E,initLoginWithWallet:E,loginWithWallet:E,loginWithCode:E,initLoginWithEmail:E,initLoginWithSms:E,resendEmailCode:E,resendSmsCode:E,initLoginWithOAuth:E,loginWithOAuth:E,refreshUser:E,walletProxy:null,createAnalyticsEvent:E,getUsdTokenPrice:E,recoverEmbeddedWallet:E,getFiatOnRampConfig:E,updateWallets:E,setReadyToTrue:E}),k=()=>wh(ls);import{jsx as ut,jsxs as Sh}from"react/jsx-runtime";var td=()=>ut("div",{}),Eh=({backFn:e})=>ut("div",{children:ut(od,{onClick:e,children:ut(Ch,{height:"16px",width:"16px",strokeWidth:2})})}),Ph=e=>ut("div",{children:ut(od,{onClick:e.onClose,children:ut(bh,{height:"16px",width:"16px",strokeWidth:2})})});var T=({backFn:e,onClose:t,title:o,closeable:r=!0})=>{let{closePrivyModal:n}=k(),{app:i}=S();return Sh(xh,{children:[e?ut(Eh,{backFn:e}):ut(td,{}),o&&ut(Th,{children:o}),i?.render.inDialog&&r?ut(Ph,{onClose:t||(()=>n())}):ut(td,{})]})},od=cs.button`
261
261
  && {
262
262
  cursor: pointer;
263
263
  display: flex;
@@ -305,7 +305,7 @@ Resources:
305
305
  text-overflow: ellipsis;
306
306
  text-align: center;
307
307
  color: var(--privy-color-foreground-2);
308
- `;import{jsx as od}from"react/jsx-runtime";var rd=({style:e,...t})=>od("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"currentColor",style:{height:"1.5rem",width:"1.5rem",...e},...t,children:od("path",{fillRule:"evenodd",d:"M12 1.5a5.25 5.25 0 00-5.25 5.25v3a3 3 0 00-3 3v6.75a3 3 0 003 3h10.5a3 3 0 003-3v-6.75a3 3 0 00-3-3v-3c0-2.9-2.35-5.25-5.25-5.25zm3.75 8.25v-3a3.75 3.75 0 10-7.5 0v3h7.5z",clipRule:"evenodd"})});import{Fragment as ds,jsx as Nt,jsxs as _i}from"react/jsx-runtime";var nd=()=>{let{navigate:e,app:t}=S(),o=t?.allowlistConfig.errorTitle||"You don't have access to this app",r=t?.allowlistConfig.errorDetail||"Have you been invited?",n=t?.allowlistConfig.errorCtaText||"Try another account";return _i(ds,{children:[Nt(T,{}),_i(_h,{children:[Nt(Ah,{children:_i("div",{children:[Nt(Xc,{}),Nt(rd,{style:{width:"38px",height:"38px",strokeWidth:"1",stroke:"var(--privy-color-accent)",fill:"var(--privy-color-accent)"}})]})}),_i(kh,{children:[typeof o=="string"?Nt("h3",{children:o}):Nt(ds,{children:o}),typeof r=="string"?Nt("p",{children:r}):Nt(ds,{children:r})]}),t?.allowlistConfig.errorCtaLink?Nt(F,{as:"a",href:t.allowlistConfig.errorCtaLink,children:n}):Nt(F,{onClick:()=>{e("LANDING")},children:n})]})]})},_h=ps.div`
308
+ `;import{jsx as rd}from"react/jsx-runtime";var nd=({style:e,...t})=>rd("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"currentColor",style:{height:"1.5rem",width:"1.5rem",...e},...t,children:rd("path",{fillRule:"evenodd",d:"M12 1.5a5.25 5.25 0 00-5.25 5.25v3a3 3 0 00-3 3v6.75a3 3 0 003 3h10.5a3 3 0 003-3v-6.75a3 3 0 00-3-3v-3c0-2.9-2.35-5.25-5.25-5.25zm3.75 8.25v-3a3.75 3.75 0 10-7.5 0v3h7.5z",clipRule:"evenodd"})});import{Fragment as ds,jsx as Nt,jsxs as _i}from"react/jsx-runtime";var id=()=>{let{navigate:e,app:t}=S(),o=t?.allowlistConfig.errorTitle||"You don't have access to this app",r=t?.allowlistConfig.errorDetail||"Have you been invited?",n=t?.allowlistConfig.errorCtaText||"Try another account";return _i(ds,{children:[Nt(T,{}),_i(_h,{children:[Nt(Ah,{children:_i("div",{children:[Nt(ed,{}),Nt(nd,{style:{width:"38px",height:"38px",strokeWidth:"1",stroke:"var(--privy-color-accent)",fill:"var(--privy-color-accent)"}})]})}),_i(kh,{children:[typeof o=="string"?Nt("h3",{children:o}):Nt(ds,{children:o}),typeof r=="string"?Nt("p",{children:r}):Nt(ds,{children:r})]}),t?.allowlistConfig.errorCtaLink?Nt(F,{as:"a",href:t.allowlistConfig.errorCtaLink,children:n}):Nt(F,{onClick:()=>{e("LANDING")},children:n})]})]})},_h=ps.div`
309
309
  display: flex;
310
310
  flex-direction: column;
311
311
  align-items: center;
@@ -340,7 +340,7 @@ Resources:
340
340
  left: -19px;
341
341
  top: -19px;
342
342
  }
343
- `;import{EnvelopeIcon as Lh,PhoneIcon as Nh}from"@heroicons/react/24/outline";import{useEffect as fd,useState as Ai}from"react";import{isMobile as Oh}from"react-device-detect";import cn from"styled-components";import ot from"styled-components";var yo=ot.div`
343
+ `;import{EnvelopeIcon as Lh,PhoneIcon as Nh}from"@heroicons/react/24/outline";import{useEffect as hd,useState as Ai}from"react";import{isMobile as Oh}from"react-device-detect";import cn from"styled-components";import ot from"styled-components";var yo=ot.div`
344
344
  display: flex;
345
345
  flex-direction: column;
346
346
  align-items: flex-start;
@@ -355,12 +355,12 @@ Resources:
355
355
  justify-content: center;
356
356
  flex-grow: 1;
357
357
  width: 100%;
358
- `,id=ot.div`
358
+ `,ad=ot.div`
359
359
  display: flex;
360
360
  flex-direction: column;
361
361
  align-items: center;
362
362
  width: 100%;
363
- `,ad=ot(Jt)`
363
+ `,sd=ot(Jt)`
364
364
  padding: 20px 0;
365
365
  `,Ct=ot(Jt)`
366
366
  gap: 16px;
@@ -378,7 +378,7 @@ Resources:
378
378
  flex-direction: column;
379
379
  justify-content: space-between;
380
380
  height: 100%;
381
- `,sd=ot.div`
381
+ `,ld=ot.div`
382
382
  display: flex;
383
383
  flex-direction: column;
384
384
  justify-content: flex-start;
@@ -405,9 +405,9 @@ Resources:
405
405
  height: 16px;
406
406
  `,K=ot.div`
407
407
  height: 12px;
408
- `,ld=ot.div`
409
- position: relative;
410
408
  `,cd=ot.div`
409
+ position: relative;
410
+ `,dd=ot.div`
411
411
  background-color: var(--privy-color-accent);
412
412
  display: flex;
413
413
  justify-content: center;
@@ -415,7 +415,7 @@ Resources:
415
415
  border-radius: 50%;
416
416
  border-color: white;
417
417
  border-width: 2px !important;
418
- `;import dd from"styled-components";import{Fragment as Ih,jsx as hr,jsxs as pd}from"react/jsx-runtime";var Rh=dd.div`
418
+ `;import pd from"styled-components";import{Fragment as Ih,jsx as gr,jsxs as ud}from"react/jsx-runtime";var Rh=pd.div`
419
419
  margin-top: 16px;
420
420
  font-size: 13px;
421
421
  text-align: center;
@@ -424,7 +424,7 @@ Resources:
424
424
  && > a {
425
425
  color: var(--privy-color-accent);
426
426
  }
427
- `;function ki(e){let{legal:{privacyPolicyUrl:t,termsAndConditionsUrl:o}}=e.app,r=!!t,n=!!o,i=r&&n;return!r&&!n?null:pd(Rh,{children:["By logging in I agree to the"," ",n&&hr("a",{href:o,target:"_blank",children:i?"Terms":"Terms of Service"}),i&&" & ",r&&hr("a",{href:t,target:"_blank",children:"Privacy Policy"})]})}var G=({protectedByPrivy:e})=>hr(Y,{children:e?pd(Ih,{children:[hr(ui,{className:"hide-on-mobile"}),hr("span",{className:"hide-on-mobile",children:hr("a",{href:"https://www.privy.io/",target:"_blank",children:"Protected by Privy"})})]}):null}),Y=dd.div`
427
+ `;function ki(e){let{legal:{privacyPolicyUrl:t,termsAndConditionsUrl:o}}=e.app,r=!!t,n=!!o,i=r&&n;return!r&&!n?null:ud(Rh,{children:["By logging in I agree to the"," ",n&&gr("a",{href:o,target:"_blank",children:i?"Terms":"Terms of Service"}),i&&" & ",r&&gr("a",{href:t,target:"_blank",children:"Privacy Policy"})]})}var G=({protectedByPrivy:e})=>gr(Y,{children:e?ud(Ih,{children:[gr(ui,{className:"hide-on-mobile"}),gr("span",{className:"hide-on-mobile",children:gr("a",{href:"https://www.privy.io/",target:"_blank",children:"Protected by Privy"})})]}):null}),Y=pd.div`
428
428
  display: flex;
429
429
  align-items: center;
430
430
  justify-content: center;
@@ -451,9 +451,9 @@ Resources:
451
451
  @media all and (display-mode: standalone) {
452
452
  padding-bottom: 30px;
453
453
  }
454
- `;import ms from"styled-components";import{Fragment as Mh,jsx as sn,jsxs as md}from"react/jsx-runtime";var ln=({title:e,description:t,children:o,...r})=>sn(ud,{...r,children:md(Mh,{children:[sn("h3",{children:e}),typeof t=="string"?sn("p",{children:t}):t,o]})}),vo=ms(ln)`
454
+ `;import ms from"styled-components";import{Fragment as Mh,jsx as sn,jsxs as fd}from"react/jsx-runtime";var ln=({title:e,description:t,children:o,...r})=>sn(md,{...r,children:fd(Mh,{children:[sn("h3",{children:e}),typeof t=="string"?sn("p",{children:t}):t,o]})}),vo=ms(ln)`
455
455
  margin-bottom: 24px;
456
- `,ye=({title:e,description:t,icon:o,children:r,...n})=>md(Wh,{...n,children:[o||null,sn("h3",{children:e}),typeof t=="string"?sn("p",{children:t}):t,r]}),ud=ms.div`
456
+ `,ge=({title:e,description:t,icon:o,children:r,...n})=>fd(Wh,{...n,children:[o||null,sn("h3",{children:e}),typeof t=="string"?sn("p",{children:t}):t,r]}),md=ms.div`
457
457
  display: flex;
458
458
  flex-direction: column;
459
459
  justify-content: flex-start;
@@ -473,7 +473,7 @@ Resources:
473
473
  color: var(--privy-color-foreground-2);
474
474
  font-size: 14px;
475
475
  }
476
- `,Wh=ms(ud)`
476
+ `,Wh=ms(md)`
477
477
  align-items: center;
478
478
  text-align: center;
479
479
  gap: 16px;
@@ -481,7 +481,7 @@ Resources:
481
481
  h3 {
482
482
  margin-bottom: 24px;
483
483
  }
484
- `;import{Fragment as fs,jsx as Ie,jsxs as wo}from"react/jsx-runtime";var hs=6,hd=new Array(hs).fill(""),Dh=1400;var gd=()=>{let{app:e,navigate:t,setModalData:o}=S(),{closePrivyModal:r,resendEmailCode:n,resendSmsCode:i,getAuthMeta:a,loginWithCode:l,updateWallets:s}=k(),{authenticated:c,user:u}=z(),[y,C]=Ai(hd),[m,P]=Ai(!1),[b,x]=Ai(null),[v,R]=Ai(null),M=a()?.email?0:1,W=e?.render.inDialog?Xe:0,I=e?.render.inDialog?W-500:0;fd(()=>{if(c&&m&&u)if(po(u,e?.embeddedWallets?.createOnLogin)){let _=setTimeout(()=>{o({createWallet:{onSuccess:()=>{},onFailure:Z=>console.error(Z),callAuthOnSuccessOnClose:!0}}),t("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},I);return()=>clearTimeout(_)}else{s();let _=setTimeout(r,W);return()=>clearTimeout(_)}},[c,m,u]),fd(()=>{if(b&&v===0){let D=setTimeout(()=>{C(hd),x(null),document.querySelector("input[name=code-0]")?.focus()},Dh);return()=>clearTimeout(D)}},[b]);let A=D=>{D.preventDefault();let _=D.currentTarget.value.replace(" ","");if(_==="")return;if(isNaN(Number(_))){x("Code should be numeric"),R(1);return}x(null),R(null);let Z=Number(D.currentTarget.name?.charAt(5)),ne=[..._||[""]].slice(0,hs-Z),fe=[...y.slice(0,Z),...ne,...y.slice(Z+ne.length)];C(fe);let N=ne.length,Oe=Math.min(Math.max(Z+N,0),hs-1);isNaN(Number(D.currentTarget.value))||document.querySelector(`input[name=code-${Oe}]`)?.focus(),fe.every(st=>st&&!isNaN(+st))&&(document.querySelector(`input[name=code-${Oe}]`)?.blur(),l(fe.join("")).then(()=>P(!0)).catch(de=>{de?.status===422?x("Invalid or expired verification code"):de instanceof lo&&de.privyErrorCode==="cannot_link_more_of_type"?x(de.message):x("Issue verifying code"),R(0)}))},L=D=>{v===1&&(x(null),R(null));let _=[...y.slice(0,D),"",...y.slice(D+1)];C(_),D>0&&document.querySelector(`input[name=code-${D-1}]`)?.focus()},O=M==0?Ie(Lh,{color:"var(--privy-color-accent)",strokeWidth:2,height:"48px",width:"48px"}):Ie(Nh,{color:"var(--privy-color-accent)",strokeWidth:2,height:"40px",width:"40px"}),B=M==0?wo("p",{children:["Please check ",Ie(yd,{children:a()?.email})," for an email from privy.io and enter your code below."]}):wo("p",{children:["Please check ",Ie(yd,{children:a()?.phoneNumber})," for a message from ",e?.name||"Privy"," and enter your code below."]});return wo(fs,{children:[Ie(T,{},"header"),wo(Uh,{children:[Ie(ye,{title:"Enter confirmation code",description:B,icon:O}),wo(id,{children:[wo(Fh,{children:[Ie(Bh,{fail:!!b,success:m,children:Ie("span",{children:b||(m?"Success!":"")})}),Ie("div",{children:y.map((D,_)=>Ie("input",{name:`code-${_}`,type:"text",value:y[_],onChange:A,onKeyUp:Z=>{Z.key==="Backspace"&&L(_)},inputMode:"numeric",autoFocus:_===0,pattern:"[0-9]",className:`${m?"success":""} ${b?"fail":""}`,autoComplete:Oh?"one-time-code":"off"},_))})]}),Ie(Gh,{children:M==0?wo(fs,{children:[Ie("span",{children:"Didn't get an email?"}),Ie("button",{onClick:n,children:"Resend Code"})]}):wo(fs,{children:[Ie("span",{children:"Didn't get a message?"}),Ie("button",{onClick:i,children:"Resend Code"})]})})]})]}),Ie(G,{protectedByPrivy:!0})]})},Uh=cn.div`
484
+ `;import{Fragment as fs,jsx as We,jsxs as wo}from"react/jsx-runtime";var hs=6,yd=new Array(hs).fill(""),Dh=1400;var vd=()=>{let{app:e,navigate:t,setModalData:o}=S(),{closePrivyModal:r,resendEmailCode:n,resendSmsCode:i,getAuthMeta:a,loginWithCode:l,updateWallets:s}=k(),{authenticated:c,user:u}=z(),[y,C]=Ai(yd),[m,P]=Ai(!1),[b,x]=Ai(null),[v,R]=Ai(null),M=a()?.email?0:1,W=e?.render.inDialog?Xe:0,I=e?.render.inDialog?W-500:0;hd(()=>{if(c&&m&&u)if(po(u,e?.embeddedWallets?.createOnLogin)){let _=setTimeout(()=>{o({createWallet:{onSuccess:()=>{},onFailure:Z=>console.error(Z),callAuthOnSuccessOnClose:!0}}),t("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},I);return()=>clearTimeout(_)}else{s();let _=setTimeout(r,W);return()=>clearTimeout(_)}},[c,m,u]),hd(()=>{if(b&&v===0){let U=setTimeout(()=>{C(yd),x(null),document.querySelector("input[name=code-0]")?.focus()},Dh);return()=>clearTimeout(U)}},[b]);let A=U=>{U.preventDefault();let _=U.currentTarget.value.replace(" ","");if(_==="")return;if(isNaN(Number(_))){x("Code should be numeric"),R(1);return}x(null),R(null);let Z=Number(U.currentTarget.name?.charAt(5)),ne=[..._||[""]].slice(0,hs-Z),he=[...y.slice(0,Z),...ne,...y.slice(Z+ne.length)];C(he);let N=ne.length,De=Math.min(Math.max(Z+N,0),hs-1);isNaN(Number(U.currentTarget.value))||document.querySelector(`input[name=code-${De}]`)?.focus(),he.every(st=>st&&!isNaN(+st))&&(document.querySelector(`input[name=code-${De}]`)?.blur(),l(he.join("")).then(()=>P(!0)).catch(pe=>{pe?.status===422?x("Invalid or expired verification code"):pe instanceof lo&&pe.privyErrorCode==="cannot_link_more_of_type"?x(pe.message):x("Issue verifying code"),R(0)}))},L=U=>{v===1&&(x(null),R(null));let _=[...y.slice(0,U),"",...y.slice(U+1)];C(_),U>0&&document.querySelector(`input[name=code-${U-1}]`)?.focus()},D=M==0?We(Lh,{color:"var(--privy-color-accent)",strokeWidth:2,height:"48px",width:"48px"}):We(Nh,{color:"var(--privy-color-accent)",strokeWidth:2,height:"40px",width:"40px"}),B=M==0?wo("p",{children:["Please check ",We(gd,{children:a()?.email})," for an email from privy.io and enter your code below."]}):wo("p",{children:["Please check ",We(gd,{children:a()?.phoneNumber})," for a message from ",e?.name||"Privy"," and enter your code below."]});return wo(fs,{children:[We(T,{},"header"),wo(Uh,{children:[We(ge,{title:"Enter confirmation code",description:B,icon:D}),wo(ad,{children:[wo(Fh,{children:[We(Bh,{fail:!!b,success:m,children:We("span",{children:b||(m?"Success!":"")})}),We("div",{children:y.map((U,_)=>We("input",{name:`code-${_}`,type:"text",value:y[_],onChange:A,onKeyUp:Z=>{Z.key==="Backspace"&&L(_)},inputMode:"numeric",autoFocus:_===0,pattern:"[0-9]",className:`${m?"success":""} ${b?"fail":""}`,autoComplete:Oh?"one-time-code":"off"},_))})]}),We(Gh,{children:M==0?wo(fs,{children:[We("span",{children:"Didn't get an email?"}),We("button",{onClick:n,children:"Resend Code"})]}):wo(fs,{children:[We("span",{children:"Didn't get a message?"}),We("button",{onClick:i,children:"Resend Code"})]})})]})]}),We(G,{protectedByPrivy:!0})]})},Uh=cn.div`
485
485
  display: flex;
486
486
  flex-direction: column;
487
487
  align-items: flex-start;
@@ -567,13 +567,13 @@ Resources:
567
567
  > button {
568
568
  text-decoration: underline;
569
569
  }
570
- `,yd=cn.span`
570
+ `,gd=cn.span`
571
571
  font-weight: 500;
572
572
  word-break: break-all;
573
- `;import Hh from"@heroicons/react/24/outline/WalletIcon";import{isMobile as zh}from"react-device-detect";import Vh from"styled-components";import{jsx as bt,jsxs as vd}from"react/jsx-runtime";var wd=({...e})=>vd("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 436.49 511.97",height:"24",width:"24",...e,children:[bt("defs",{children:vd("linearGradient",{id:"brave-linear-gradient",x1:"-18.79",y1:"359.73",x2:"194.32",y2:"359.73",gradientTransform:"matrix(2.05, 0, 0, -2.05, 38.49, 992.77)",gradientUnits:"userSpaceOnUse",children:[bt("stop",{offset:"0","stop-color":"#f1562b"}),bt("stop",{offset:"0.3","stop-color":"#f1542b"}),bt("stop",{offset:"0.41","stop-color":"#f04d2a"}),bt("stop",{offset:"0.49","stop-color":"#ef4229"}),bt("stop",{offset:"0.5","stop-color":"#ef4029"}),bt("stop",{offset:"0.56","stop-color":"#e83e28"}),bt("stop",{offset:"0.67","stop-color":"#e13c26"}),bt("stop",{offset:"1","stop-color":"#df3c26"})]})}),bt("path",{style:{fill:"url(#brave-linear-gradient)"},d:"M436.49,165.63,420.7,122.75l11-24.6A8.47,8.47,0,0,0,430,88.78L400.11,58.6a48.16,48.16,0,0,0-50.23-11.66l-8.19,2.89L296.09.43,218.25,0,140.4.61,94.85,50.41l-8.11-2.87A48.33,48.33,0,0,0,36.19,59.3L5.62,90.05a6.73,6.73,0,0,0-1.36,7.47l11.47,25.56L0,165.92,56.47,380.64a89.7,89.7,0,0,0,34.7,50.23l111.68,75.69a24.73,24.73,0,0,0,30.89,0l111.62-75.8A88.86,88.86,0,0,0,380,380.53l46.07-176.14Z"}),bt("path",{style:{fill:"#fff"},d:"M231,317.33a65.61,65.61,0,0,0-9.11-3.3h-5.49a66.08,66.08,0,0,0-9.11,3.3l-13.81,5.74-15.6,7.18-25.4,13.24a4.84,4.84,0,0,0-.62,9l22.06,15.49q7,5,13.55,10.76l6.21,5.35,13,11.37,5.89,5.2a10.15,10.15,0,0,0,12.95,0l25.39-22.18,13.6-10.77,22.06-15.79a4.8,4.8,0,0,0-.68-8.93l-25.36-12.8L244.84,323ZM387.4,175.2l.8-2.3a61.26,61.26,0,0,0-.57-9.18,73.51,73.51,0,0,0-8.19-15.44l-14.35-21.06-10.22-13.88-19.23-24a69.65,69.65,0,0,0-5.7-6.67h-.4L321,84.25l-42.27,8.14a33.49,33.49,0,0,1-12.59-1.84l-23.21-7.5-16.61-4.59a70.52,70.52,0,0,0-14.67,0L195,83.1l-23.21,7.54a33.89,33.89,0,0,1-12.59,1.84l-42.22-8-8.54-1.58h-.4a65.79,65.79,0,0,0-5.7,6.67l-19.2,24Q77.81,120.32,73,127.45L58.61,148.51l-6.78,11.31a51,51,0,0,0-1.94,13.35l.8,2.3A34.51,34.51,0,0,0,52,179.81l11.33,13,50.23,53.39a14.31,14.31,0,0,1,2.55,14.34L107.68,280a25.23,25.23,0,0,0-.39,16l1.64,4.52a43.58,43.58,0,0,0,13.39,18.76l7.89,6.43a15,15,0,0,0,14.35,1.72L172.62,314A70.38,70.38,0,0,0,187,304.52l22.46-20.27a9,9,0,0,0,3-6.36,9.08,9.08,0,0,0-2.5-6.56L159.2,237.18a9.83,9.83,0,0,1-3.09-12.45l19.66-36.95a19.21,19.21,0,0,0,1-14.67A22.37,22.37,0,0,0,165.58,163L103.94,139.8c-4.44-1.6-4.2-3.6.51-3.88l36.2-3.59a55.9,55.9,0,0,1,16.9,1.5l31.5,8.8a9.64,9.64,0,0,1,6.74,10.76L183.42,221a34.72,34.72,0,0,0-.61,11.41c.5,1.61,4.73,3.6,9.36,4.73l19.19,4a46.38,46.38,0,0,0,16.86,0l17.26-4c4.64-1,8.82-3.23,9.35-4.85a34.94,34.94,0,0,0-.63-11.4l-12.45-67.59a9.66,9.66,0,0,1,6.74-10.76l31.5-8.83a55.87,55.87,0,0,1,16.9-1.5l36.2,3.37c4.74.44,5,2.2.54,3.88L272,162.79a22.08,22.08,0,0,0-11.16,10.12,19.3,19.3,0,0,0,1,14.67l19.69,36.95A9.84,9.84,0,0,1,278.45,237l-50.66,34.23a9,9,0,0,0,.32,12.78l.15.14,22.49,20.27a71.46,71.46,0,0,0,14.35,9.47l28.06,13.35a14.89,14.89,0,0,0,14.34-1.76l7.9-6.45a43.53,43.53,0,0,0,13.38-18.8l1.65-4.52a25.27,25.27,0,0,0-.39-16l-8.26-19.49a14.4,14.4,0,0,1,2.55-14.35l50.23-53.45,11.3-13a35.8,35.8,0,0,0,1.54-4.24Z"})]});import{jsx as V,jsxs as rt}from"react/jsx-runtime";var Cd=({style:e,...t})=>rt("svg",{width:"120",height:"120",viewBox:"0 0 120 120",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:24,width:24,...e},...t,children:[V("g",{clipPath:"url(#clip0_5_32)",children:rt("g",{clipPath:"url(#clip1_5_32)",children:[V("mask",{id:"mask0_5_32",style:{maskType:"alpha"},maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"120",height:"120",children:V("path",{d:"M78.163 0H41.837C29.79 0 23.767 0 17.283 2.04999C10.203 4.62701 4.627 10.203 2.05 17.283C0 23.767 0 29.791 0 41.837V78.163C0 90.21 0 96.232 2.05 102.717C4.627 109.797 10.203 115.373 17.283 117.949C23.767 120 29.79 120 41.837 120H78.163C90.21 120 96.232 120 102.717 117.949C109.797 115.373 115.373 109.797 117.95 102.717C120 96.232 120 90.21 120 78.163V41.837C120 29.791 120 23.767 117.95 17.283C115.373 10.203 109.797 4.62701 102.717 2.04999C96.232 0 90.21 0 78.163 0Z",fill:"black"})}),V("g",{mask:"url(#mask0_5_32)",children:V("rect",{width:"120",height:"120",fill:"url(#paint0_linear_5_32)"})}),V("path",{d:"M20 38H26C56.9279 38 82 63.0721 82 94V100H94C97.3137 100 100 97.3137 100 94C100 53.1309 66.8691 20 26 20C22.6863 20 20 22.6863 20 26V38Z",fill:"url(#paint1_radial_5_32)"}),V("path",{d:"M84 94H100C100 97.3137 97.3137 100 94 100H84V94Z",fill:"url(#paint2_linear_5_32)"}),V("path",{d:"M26 20L26 36H20L20 26C20 22.6863 22.6863 20 26 20Z",fill:"url(#paint3_linear_5_32)"}),V("path",{d:"M20 36H26C58.0325 36 84 61.9675 84 94V100H66V94C66 71.9086 48.0914 54 26 54H20V36Z",fill:"url(#paint4_radial_5_32)"}),V("path",{d:"M68 94H84V100H68V94Z",fill:"url(#paint5_linear_5_32)"}),V("path",{d:"M20 52L20 36L26 36L26 52H20Z",fill:"url(#paint6_linear_5_32)"}),V("path",{d:"M20 62C20 65.3137 22.6863 68 26 68C40.3594 68 52 79.6406 52 94C52 97.3137 54.6863 100 58 100H68V94C68 70.804 49.196 52 26 52H20V62Z",fill:"url(#paint7_radial_5_32)"}),V("path",{d:"M52 94H68V100H58C54.6863 100 52 97.3137 52 94Z",fill:"url(#paint8_radial_5_32)"}),V("path",{d:"M26 68C22.6863 68 20 65.3137 20 62L20 52L26 52L26 68Z",fill:"url(#paint9_radial_5_32)"})]})}),rt("defs",{children:[rt("linearGradient",{id:"paint0_linear_5_32",x1:"60",y1:"0",x2:"60",y2:"120",gradientUnits:"userSpaceOnUse",children:[V("stop",{stopColor:"#174299"}),V("stop",{offset:"1",stopColor:"#001E59"})]}),rt("radialGradient",{id:"paint1_radial_5_32",cx:"0",cy:"0",r:"1",gradientUnits:"userSpaceOnUse",gradientTransform:"translate(26 94) rotate(-90) scale(74)",children:[V("stop",{offset:"0.770277",stopColor:"#FF4000"}),V("stop",{offset:"1",stopColor:"#8754C9"})]}),rt("linearGradient",{id:"paint2_linear_5_32",x1:"83",y1:"97",x2:"100",y2:"97",gradientUnits:"userSpaceOnUse",children:[V("stop",{stopColor:"#FF4000"}),V("stop",{offset:"1",stopColor:"#8754C9"})]}),rt("linearGradient",{id:"paint3_linear_5_32",x1:"23",y1:"20",x2:"23",y2:"37",gradientUnits:"userSpaceOnUse",children:[V("stop",{stopColor:"#8754C9"}),V("stop",{offset:"1",stopColor:"#FF4000"})]}),rt("radialGradient",{id:"paint4_radial_5_32",cx:"0",cy:"0",r:"1",gradientUnits:"userSpaceOnUse",gradientTransform:"translate(26 94) rotate(-90) scale(58)",children:[V("stop",{offset:"0.723929",stopColor:"#FFF700"}),V("stop",{offset:"1",stopColor:"#FF9901"})]}),rt("linearGradient",{id:"paint5_linear_5_32",x1:"68",y1:"97",x2:"84",y2:"97",gradientUnits:"userSpaceOnUse",children:[V("stop",{stopColor:"#FFF700"}),V("stop",{offset:"1",stopColor:"#FF9901"})]}),rt("linearGradient",{id:"paint6_linear_5_32",x1:"23",y1:"52",x2:"23",y2:"36",gradientUnits:"userSpaceOnUse",children:[V("stop",{stopColor:"#FFF700"}),V("stop",{offset:"1",stopColor:"#FF9901"})]}),rt("radialGradient",{id:"paint7_radial_5_32",cx:"0",cy:"0",r:"1",gradientUnits:"userSpaceOnUse",gradientTransform:"translate(26 94) rotate(-90) scale(42)",children:[V("stop",{offset:"0.59513",stopColor:"#00AAFF"}),V("stop",{offset:"1",stopColor:"#01DA40"})]}),rt("radialGradient",{id:"paint8_radial_5_32",cx:"0",cy:"0",r:"1",gradientUnits:"userSpaceOnUse",gradientTransform:"translate(51 97) scale(17 45.3333)",children:[V("stop",{stopColor:"#00AAFF"}),V("stop",{offset:"1",stopColor:"#01DA40"})]}),rt("radialGradient",{id:"paint9_radial_5_32",cx:"0",cy:"0",r:"1",gradientUnits:"userSpaceOnUse",gradientTransform:"translate(23 69) rotate(-90) scale(17 322.37)",children:[V("stop",{stopColor:"#00AAFF"}),V("stop",{offset:"1",stopColor:"#01DA40"})]}),V("clipPath",{id:"clip0_5_32",children:V("rect",{width:"120",height:"120",fill:"white"})}),V("clipPath",{id:"clip1_5_32",children:V("rect",{width:"120",height:"120",fill:"white"})})]})]});import{jsx as dn,jsxs as bd}from"react/jsx-runtime";var Ed=({style:e,...t})=>bd("svg",{width:"176",height:"176",viewBox:"0 0 176 176",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:24,width:24,...e},...t,children:[bd("g",{clipPath:"url(#clip0_1704_1423)",children:[dn("path",{d:"M126.233 176H49.7672C22.287 176 0 153.723 0 126.233V49.7673C0 22.287 22.2769 0 49.7672 0H126.233C153.713 0 176 22.277 176 49.7673V126.233C176 153.723 153.713 176 126.233 176Z",fill:"#2461ED"}),dn("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M100.667 85.6591C83.4133 76.3353 62.4196 64.2443 46.6192 54.3891C41.9573 51.0306 44.3234 43.9023 49.9578 43.9023H128.138C132.499 43.9023 135.416 48.7648 133.231 52.4442C127.977 61.5174 120.308 73.0368 113.901 82.1702C110.462 87.0727 104.858 87.9149 100.667 85.6591ZM75.5031 88.6867C92.1858 97.5795 115.566 111.104 132.178 121.33C137.311 124.498 135.266 132.098 129.271 132.098C119.46 132.098 103.518 132.1 87.6592 132.103C71.9639 132.105 56.3497 132.108 46.8398 132.108C42.0476 132.108 39.5913 127.135 41.6265 123.666C48.5041 111.946 56.2338 100.116 62.6603 91.2834C65.5176 87.3433 71.3325 86.461 75.5031 88.6867Z",fill:"white"})]}),dn("defs",{children:dn("clipPath",{id:"clip0_1704_1423",children:dn("rect",{width:"176",height:"176",fill:"white"})})})]});import pn from"styled-components";var Ri=pn.div`
573
+ `;import Hh from"@heroicons/react/24/outline/WalletIcon";import{isMobile as zh}from"react-device-detect";import Vh from"styled-components";import{jsx as bt,jsxs as wd}from"react/jsx-runtime";var Cd=({...e})=>wd("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 436.49 511.97",height:"24",width:"24",...e,children:[bt("defs",{children:wd("linearGradient",{id:"brave-linear-gradient",x1:"-18.79",y1:"359.73",x2:"194.32",y2:"359.73",gradientTransform:"matrix(2.05, 0, 0, -2.05, 38.49, 992.77)",gradientUnits:"userSpaceOnUse",children:[bt("stop",{offset:"0","stop-color":"#f1562b"}),bt("stop",{offset:"0.3","stop-color":"#f1542b"}),bt("stop",{offset:"0.41","stop-color":"#f04d2a"}),bt("stop",{offset:"0.49","stop-color":"#ef4229"}),bt("stop",{offset:"0.5","stop-color":"#ef4029"}),bt("stop",{offset:"0.56","stop-color":"#e83e28"}),bt("stop",{offset:"0.67","stop-color":"#e13c26"}),bt("stop",{offset:"1","stop-color":"#df3c26"})]})}),bt("path",{style:{fill:"url(#brave-linear-gradient)"},d:"M436.49,165.63,420.7,122.75l11-24.6A8.47,8.47,0,0,0,430,88.78L400.11,58.6a48.16,48.16,0,0,0-50.23-11.66l-8.19,2.89L296.09.43,218.25,0,140.4.61,94.85,50.41l-8.11-2.87A48.33,48.33,0,0,0,36.19,59.3L5.62,90.05a6.73,6.73,0,0,0-1.36,7.47l11.47,25.56L0,165.92,56.47,380.64a89.7,89.7,0,0,0,34.7,50.23l111.68,75.69a24.73,24.73,0,0,0,30.89,0l111.62-75.8A88.86,88.86,0,0,0,380,380.53l46.07-176.14Z"}),bt("path",{style:{fill:"#fff"},d:"M231,317.33a65.61,65.61,0,0,0-9.11-3.3h-5.49a66.08,66.08,0,0,0-9.11,3.3l-13.81,5.74-15.6,7.18-25.4,13.24a4.84,4.84,0,0,0-.62,9l22.06,15.49q7,5,13.55,10.76l6.21,5.35,13,11.37,5.89,5.2a10.15,10.15,0,0,0,12.95,0l25.39-22.18,13.6-10.77,22.06-15.79a4.8,4.8,0,0,0-.68-8.93l-25.36-12.8L244.84,323ZM387.4,175.2l.8-2.3a61.26,61.26,0,0,0-.57-9.18,73.51,73.51,0,0,0-8.19-15.44l-14.35-21.06-10.22-13.88-19.23-24a69.65,69.65,0,0,0-5.7-6.67h-.4L321,84.25l-42.27,8.14a33.49,33.49,0,0,1-12.59-1.84l-23.21-7.5-16.61-4.59a70.52,70.52,0,0,0-14.67,0L195,83.1l-23.21,7.54a33.89,33.89,0,0,1-12.59,1.84l-42.22-8-8.54-1.58h-.4a65.79,65.79,0,0,0-5.7,6.67l-19.2,24Q77.81,120.32,73,127.45L58.61,148.51l-6.78,11.31a51,51,0,0,0-1.94,13.35l.8,2.3A34.51,34.51,0,0,0,52,179.81l11.33,13,50.23,53.39a14.31,14.31,0,0,1,2.55,14.34L107.68,280a25.23,25.23,0,0,0-.39,16l1.64,4.52a43.58,43.58,0,0,0,13.39,18.76l7.89,6.43a15,15,0,0,0,14.35,1.72L172.62,314A70.38,70.38,0,0,0,187,304.52l22.46-20.27a9,9,0,0,0,3-6.36,9.08,9.08,0,0,0-2.5-6.56L159.2,237.18a9.83,9.83,0,0,1-3.09-12.45l19.66-36.95a19.21,19.21,0,0,0,1-14.67A22.37,22.37,0,0,0,165.58,163L103.94,139.8c-4.44-1.6-4.2-3.6.51-3.88l36.2-3.59a55.9,55.9,0,0,1,16.9,1.5l31.5,8.8a9.64,9.64,0,0,1,6.74,10.76L183.42,221a34.72,34.72,0,0,0-.61,11.41c.5,1.61,4.73,3.6,9.36,4.73l19.19,4a46.38,46.38,0,0,0,16.86,0l17.26-4c4.64-1,8.82-3.23,9.35-4.85a34.94,34.94,0,0,0-.63-11.4l-12.45-67.59a9.66,9.66,0,0,1,6.74-10.76l31.5-8.83a55.87,55.87,0,0,1,16.9-1.5l36.2,3.37c4.74.44,5,2.2.54,3.88L272,162.79a22.08,22.08,0,0,0-11.16,10.12,19.3,19.3,0,0,0,1,14.67l19.69,36.95A9.84,9.84,0,0,1,278.45,237l-50.66,34.23a9,9,0,0,0,.32,12.78l.15.14,22.49,20.27a71.46,71.46,0,0,0,14.35,9.47l28.06,13.35a14.89,14.89,0,0,0,14.34-1.76l7.9-6.45a43.53,43.53,0,0,0,13.38-18.8l1.65-4.52a25.27,25.27,0,0,0-.39-16l-8.26-19.49a14.4,14.4,0,0,1,2.55-14.35l50.23-53.45,11.3-13a35.8,35.8,0,0,0,1.54-4.24Z"})]});import{jsx as V,jsxs as rt}from"react/jsx-runtime";var bd=({style:e,...t})=>rt("svg",{width:"120",height:"120",viewBox:"0 0 120 120",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:24,width:24,...e},...t,children:[V("g",{clipPath:"url(#clip0_5_32)",children:rt("g",{clipPath:"url(#clip1_5_32)",children:[V("mask",{id:"mask0_5_32",style:{maskType:"alpha"},maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"120",height:"120",children:V("path",{d:"M78.163 0H41.837C29.79 0 23.767 0 17.283 2.04999C10.203 4.62701 4.627 10.203 2.05 17.283C0 23.767 0 29.791 0 41.837V78.163C0 90.21 0 96.232 2.05 102.717C4.627 109.797 10.203 115.373 17.283 117.949C23.767 120 29.79 120 41.837 120H78.163C90.21 120 96.232 120 102.717 117.949C109.797 115.373 115.373 109.797 117.95 102.717C120 96.232 120 90.21 120 78.163V41.837C120 29.791 120 23.767 117.95 17.283C115.373 10.203 109.797 4.62701 102.717 2.04999C96.232 0 90.21 0 78.163 0Z",fill:"black"})}),V("g",{mask:"url(#mask0_5_32)",children:V("rect",{width:"120",height:"120",fill:"url(#paint0_linear_5_32)"})}),V("path",{d:"M20 38H26C56.9279 38 82 63.0721 82 94V100H94C97.3137 100 100 97.3137 100 94C100 53.1309 66.8691 20 26 20C22.6863 20 20 22.6863 20 26V38Z",fill:"url(#paint1_radial_5_32)"}),V("path",{d:"M84 94H100C100 97.3137 97.3137 100 94 100H84V94Z",fill:"url(#paint2_linear_5_32)"}),V("path",{d:"M26 20L26 36H20L20 26C20 22.6863 22.6863 20 26 20Z",fill:"url(#paint3_linear_5_32)"}),V("path",{d:"M20 36H26C58.0325 36 84 61.9675 84 94V100H66V94C66 71.9086 48.0914 54 26 54H20V36Z",fill:"url(#paint4_radial_5_32)"}),V("path",{d:"M68 94H84V100H68V94Z",fill:"url(#paint5_linear_5_32)"}),V("path",{d:"M20 52L20 36L26 36L26 52H20Z",fill:"url(#paint6_linear_5_32)"}),V("path",{d:"M20 62C20 65.3137 22.6863 68 26 68C40.3594 68 52 79.6406 52 94C52 97.3137 54.6863 100 58 100H68V94C68 70.804 49.196 52 26 52H20V62Z",fill:"url(#paint7_radial_5_32)"}),V("path",{d:"M52 94H68V100H58C54.6863 100 52 97.3137 52 94Z",fill:"url(#paint8_radial_5_32)"}),V("path",{d:"M26 68C22.6863 68 20 65.3137 20 62L20 52L26 52L26 68Z",fill:"url(#paint9_radial_5_32)"})]})}),rt("defs",{children:[rt("linearGradient",{id:"paint0_linear_5_32",x1:"60",y1:"0",x2:"60",y2:"120",gradientUnits:"userSpaceOnUse",children:[V("stop",{stopColor:"#174299"}),V("stop",{offset:"1",stopColor:"#001E59"})]}),rt("radialGradient",{id:"paint1_radial_5_32",cx:"0",cy:"0",r:"1",gradientUnits:"userSpaceOnUse",gradientTransform:"translate(26 94) rotate(-90) scale(74)",children:[V("stop",{offset:"0.770277",stopColor:"#FF4000"}),V("stop",{offset:"1",stopColor:"#8754C9"})]}),rt("linearGradient",{id:"paint2_linear_5_32",x1:"83",y1:"97",x2:"100",y2:"97",gradientUnits:"userSpaceOnUse",children:[V("stop",{stopColor:"#FF4000"}),V("stop",{offset:"1",stopColor:"#8754C9"})]}),rt("linearGradient",{id:"paint3_linear_5_32",x1:"23",y1:"20",x2:"23",y2:"37",gradientUnits:"userSpaceOnUse",children:[V("stop",{stopColor:"#8754C9"}),V("stop",{offset:"1",stopColor:"#FF4000"})]}),rt("radialGradient",{id:"paint4_radial_5_32",cx:"0",cy:"0",r:"1",gradientUnits:"userSpaceOnUse",gradientTransform:"translate(26 94) rotate(-90) scale(58)",children:[V("stop",{offset:"0.723929",stopColor:"#FFF700"}),V("stop",{offset:"1",stopColor:"#FF9901"})]}),rt("linearGradient",{id:"paint5_linear_5_32",x1:"68",y1:"97",x2:"84",y2:"97",gradientUnits:"userSpaceOnUse",children:[V("stop",{stopColor:"#FFF700"}),V("stop",{offset:"1",stopColor:"#FF9901"})]}),rt("linearGradient",{id:"paint6_linear_5_32",x1:"23",y1:"52",x2:"23",y2:"36",gradientUnits:"userSpaceOnUse",children:[V("stop",{stopColor:"#FFF700"}),V("stop",{offset:"1",stopColor:"#FF9901"})]}),rt("radialGradient",{id:"paint7_radial_5_32",cx:"0",cy:"0",r:"1",gradientUnits:"userSpaceOnUse",gradientTransform:"translate(26 94) rotate(-90) scale(42)",children:[V("stop",{offset:"0.59513",stopColor:"#00AAFF"}),V("stop",{offset:"1",stopColor:"#01DA40"})]}),rt("radialGradient",{id:"paint8_radial_5_32",cx:"0",cy:"0",r:"1",gradientUnits:"userSpaceOnUse",gradientTransform:"translate(51 97) scale(17 45.3333)",children:[V("stop",{stopColor:"#00AAFF"}),V("stop",{offset:"1",stopColor:"#01DA40"})]}),rt("radialGradient",{id:"paint9_radial_5_32",cx:"0",cy:"0",r:"1",gradientUnits:"userSpaceOnUse",gradientTransform:"translate(23 69) rotate(-90) scale(17 322.37)",children:[V("stop",{stopColor:"#00AAFF"}),V("stop",{offset:"1",stopColor:"#01DA40"})]}),V("clipPath",{id:"clip0_5_32",children:V("rect",{width:"120",height:"120",fill:"white"})}),V("clipPath",{id:"clip1_5_32",children:V("rect",{width:"120",height:"120",fill:"white"})})]})]});import{jsx as dn,jsxs as Ed}from"react/jsx-runtime";var Pd=({style:e,...t})=>Ed("svg",{width:"176",height:"176",viewBox:"0 0 176 176",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:24,width:24,...e},...t,children:[Ed("g",{clipPath:"url(#clip0_1704_1423)",children:[dn("path",{d:"M126.233 176H49.7672C22.287 176 0 153.723 0 126.233V49.7673C0 22.287 22.2769 0 49.7672 0H126.233C153.713 0 176 22.277 176 49.7673V126.233C176 153.723 153.713 176 126.233 176Z",fill:"#2461ED"}),dn("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M100.667 85.6591C83.4133 76.3353 62.4196 64.2443 46.6192 54.3891C41.9573 51.0306 44.3234 43.9023 49.9578 43.9023H128.138C132.499 43.9023 135.416 48.7648 133.231 52.4442C127.977 61.5174 120.308 73.0368 113.901 82.1702C110.462 87.0727 104.858 87.9149 100.667 85.6591ZM75.5031 88.6867C92.1858 97.5795 115.566 111.104 132.178 121.33C137.311 124.498 135.266 132.098 129.271 132.098C119.46 132.098 103.518 132.1 87.6592 132.103C71.9639 132.105 56.3497 132.108 46.8398 132.108C42.0476 132.108 39.5913 127.135 41.6265 123.666C48.5041 111.946 56.2338 100.116 62.6603 91.2834C65.5176 87.3433 71.3325 86.461 75.5031 88.6867Z",fill:"white"})]}),dn("defs",{children:dn("clipPath",{id:"clip0_1704_1423",children:dn("rect",{width:"176",height:"176",fill:"white"})})})]});import pn from"styled-components";var Ri=pn.div`
574
574
  text-align: left;
575
575
  flex-grow: 1;
576
- `,Pd=pn.div`
576
+ `,xd=pn.div`
577
577
  display: flex;
578
578
  flex-direction: column;
579
579
  justify-content: flex-end;
@@ -593,7 +593,7 @@ Resources:
593
593
  &::-webkit-scrollbar {
594
594
  display: none;
595
595
  }
596
- `,ge=pn.button`
596
+ `,ve=pn.button`
597
597
  && {
598
598
  width: 100%;
599
599
  font-size: 16px;
@@ -634,7 +634,7 @@ Resources:
634
634
  `,Qt=pn.div`
635
635
  width: 100%;
636
636
  ${e=>e.if?"display: none;":""}
637
- `;import{jsx as yr,jsxs as Yh}from"react/jsx-runtime";var Ot={coinbase_wallet:{logo:Zr,displayName:"Coinbase Wallet",rdns:"com.coinbase.wallet"},metamask:{logo:pr,displayName:"MetaMask",rdns:"io.metamask"},phantom:{logo:ho,displayName:"Phantom"},rainbow:{logo:Cd,displayName:"Rainbow",rdns:"me.rainbow"},wallet_connect:{logo:tn,displayName:"WalletConnect"},zerion:{logo:Ed,displayName:"Zerion",rdns:"io.zerion.wallet"},brave_wallet:{logo:wd,displayName:"Brave Wallet",rdns:"com.brave.wallet"}},un=({provider:e,displayName:t,logo:o,connectOnly:r,connector:n})=>{let{navigate:i}=S(),{initLoginWithWallet:a,connectWallet:l}=k(),s=n.connectorType==="wallet_connect_v2"?e:n.walletClientType,c;return n.connectorType==="phantom"?c=()=>{kt()?r?(l(n,s),i("AWAITING_CONNECT_ONLY_CONNECTION")):(a(n,s),i("AWAITING_CONNECTION")):i(zh?"PHANTOM_INTERSTITIAL_SCREEN":"INSTALL_PHANTOM_SCREEN")}:c=()=>{r?(l(n,s),i("AWAITING_CONNECT_ONLY_CONNECTION")):(a(n,s),i("AWAITING_CONNECTION"))},Yh(Kh,{onClick:c,children:[yr(qh,{icon:jh(e,n.connectorType)??o}),yr("span",{style:{textTransform:"capitalize"},children:$h(e,n.connectorType)||t||n.walletClientType}),yr("span",{children:"Connect"})]})},$h=(e,t)=>{if(Ot[e]?.displayName)return Ot[e].displayName;if(t==="wallet_connect_v2"&&e==="wallet_connect")return"Wallet Connect"},jh=(e,t)=>{if(Ot[e]?.logo)return Ot[e].logo;if(t==="wallet_connect_v2"&&e==="wallet_connect")return tn},qh=({icon:e})=>typeof e=="string"?yr("img",{src:e,style:{height:24,width:24,margin:"auto",borderRadius:4}}):typeof e===void 0?yr(Hh,{}):e?yr(e,{}):null,Kh=Vh(ge)`
637
+ `;import{jsx as vr,jsxs as Yh}from"react/jsx-runtime";var Ot={coinbase_wallet:{logo:Zr,displayName:"Coinbase Wallet",rdns:"com.coinbase.wallet"},metamask:{logo:mr,displayName:"MetaMask",rdns:"io.metamask"},phantom:{logo:ho,displayName:"Phantom"},rainbow:{logo:bd,displayName:"Rainbow",rdns:"me.rainbow"},wallet_connect:{logo:tn,displayName:"WalletConnect"},zerion:{logo:Pd,displayName:"Zerion",rdns:"io.zerion.wallet"},brave_wallet:{logo:Cd,displayName:"Brave Wallet",rdns:"com.brave.wallet"}},un=({provider:e,displayName:t,logo:o,connectOnly:r,connector:n})=>{let{navigate:i}=S(),{initLoginWithWallet:a,connectWallet:l}=k(),s=n.connectorType==="wallet_connect_v2"?e:n.walletClientType,c;return n.connectorType==="phantom"?c=()=>{kt()?r?(l(n,s),i("AWAITING_CONNECT_ONLY_CONNECTION")):(a(n,s),i("AWAITING_CONNECTION")):i(zh?"PHANTOM_INTERSTITIAL_SCREEN":"INSTALL_PHANTOM_SCREEN")}:c=()=>{r?(l(n,s),i("AWAITING_CONNECT_ONLY_CONNECTION")):(a(n,s),i("AWAITING_CONNECTION"))},Yh(Kh,{onClick:c,children:[vr(qh,{icon:jh(e,n.connectorType)??o}),vr("span",{style:{textTransform:"capitalize"},children:$h(e,n.connectorType)||t||n.walletClientType}),vr("span",{children:"Connect"})]})},$h=(e,t)=>{if(Ot[e]?.displayName)return Ot[e].displayName;if(t==="wallet_connect_v2"&&e==="wallet_connect")return"Wallet Connect"},jh=(e,t)=>{if(Ot[e]?.logo)return Ot[e].logo;if(t==="wallet_connect_v2"&&e==="wallet_connect")return tn},qh=({icon:e})=>typeof e=="string"?vr("img",{src:e,style:{height:24,width:24,margin:"auto",borderRadius:4}}):typeof e===void 0?vr(Hh,{}):e?vr(e,{}):null,Kh=Vh(ve)`
638
638
  /* Show "Connect" on hover */
639
639
  > :last-child {
640
640
  font-weight: 500;
@@ -656,23 +656,23 @@ Resources:
656
656
  display: none;
657
657
  }
658
658
  }
659
- `;import{Fragment as Zh,jsx as Ii,jsxs as Xh}from"react/jsx-runtime";var Jh=["coinbase_wallet","phantom"],Qh=["metamask","rainbow","zerion"],gr=({connectOnly:e})=>{let{connectors:t}=k(),{app:o}=S(),r=ys(o?.appearance.walletList??[],t,e);return Xh(Zh,{children:[...r]})},ys=(e,t,o)=>{let r=[],n=[],i=[],a=t.find(l=>l.connectorType==="wallet_connect_v2");for(let l of e)if(l==="detected_wallets"){let s=t.filter(({connectorType:c,walletClientType:u})=>c==="injected"&&!e.includes(u));for(let c of s){let{walletClientType:u,walletBranding:y}=c;(u==="unknown"?n:r).push(Ii(un,{connectOnly:o,provider:u,logo:y.icon,displayName:y.name,connector:c},`${l}-${u}`))}}else if(Qh.includes(l)){let s=t.find(c=>c.connectorType==="injected"&&c.walletClientType===l)||a;s&&r.push(Ii(un,{connectOnly:o,provider:l,connector:s},l))}else if(Jh.includes(l)){let s=t.find(({connectorType:c})=>c===l);s&&r.push(Ii(un,{connectOnly:o,provider:l,connector:s},l))}else l==="wallet_connect"&&a&&i.push(Ii(un,{connectOnly:o,provider:l,connector:a},l));return[...n,...r,...i]};import{Fragment as ey,jsx as mn,jsxs as ty}from"react/jsx-runtime";var xd=()=>{let{app:e}=S(),t=`Connect a wallet to ${e?.name}`;return ty(ey,{children:[mn(T,{},"header"),mn(vo,{title:"Connect your wallet",description:t}),mn(Co,{children:mn(gr,{connectOnly:!0})}),mn(G,{protectedByPrivy:!0})]})};import ay from"styled-components";import ny from"styled-components";import oy from"react";import{jsx as ry}from"react/jsx-runtime";var Td=()=>{let{app:e}=S(),t=e?.appearance?.logo,o=`${e?.name} logo`,r={maxHeight:"90px",maxWidth:"180px"};return t?typeof t=="string"?ry("img",{src:t,alt:o,style:r}):t.type==="svg"||t.type==="img"?oy.cloneElement(t,{alt:o,style:r}):(console.warn("`config.appearance.logo` must be a string, or an SVG / IMG element. Nothing will be rendered."),null):null};import{jsx as Sd}from"react/jsx-runtime";var Wi=e=>{let{app:t}=S();return t?.appearance.logo?Sd(iy,{...e,children:Sd(Td,{})}):null},iy=ny.div`
659
+ `;import{Fragment as Zh,jsx as Ii,jsxs as Xh}from"react/jsx-runtime";var Jh=["coinbase_wallet","phantom"],Qh=["metamask","rainbow","zerion"],wr=({connectOnly:e})=>{let{connectors:t}=k(),{app:o}=S(),r=ys(o?.appearance.walletList??[],t,e);return Xh(Zh,{children:[...r]})},ys=(e,t,o)=>{let r=[],n=[],i=[],a=t.find(l=>l.connectorType==="wallet_connect_v2");for(let l of e)if(l==="detected_wallets"){let s=t.filter(({connectorType:c,walletClientType:u})=>c==="injected"&&!e.includes(u));for(let c of s){let{walletClientType:u,walletBranding:y}=c;(u==="unknown"?n:r).push(Ii(un,{connectOnly:o,provider:u,logo:y.icon,displayName:y.name,connector:c},`${l}-${u}`))}}else if(Qh.includes(l)){let s=t.find(c=>c.connectorType==="injected"&&c.walletClientType===l)||a;s&&r.push(Ii(un,{connectOnly:o,provider:l,connector:s},l))}else if(Jh.includes(l)){let s=t.find(({connectorType:c})=>c===l);s&&r.push(Ii(un,{connectOnly:o,provider:l,connector:s},l))}else l==="wallet_connect"&&a&&i.push(Ii(un,{connectOnly:o,provider:l,connector:a},l));return[...n,...r,...i]};import{Fragment as ey,jsx as mn,jsxs as ty}from"react/jsx-runtime";var Td=()=>{let{app:e}=S(),t=`Connect a wallet to ${e?.name}`;return ty(ey,{children:[mn(T,{},"header"),mn(vo,{title:"Connect your wallet",description:t}),mn(Co,{children:mn(wr,{connectOnly:!0})}),mn(G,{protectedByPrivy:!0})]})};import ay from"styled-components";import ny from"styled-components";import oy from"react";import{jsx as ry}from"react/jsx-runtime";var Sd=()=>{let{app:e}=S(),t=e?.appearance?.logo,o=`${e?.name} logo`,r={maxHeight:"90px",maxWidth:"180px"};return t?typeof t=="string"?ry("img",{src:t,alt:o,style:r}):t.type==="svg"||t.type==="img"?oy.cloneElement(t,{alt:o,style:r}):(console.warn("`config.appearance.logo` must be a string, or an SVG / IMG element. Nothing will be rendered."),null):null};import{jsx as _d}from"react/jsx-runtime";var Wi=e=>{let{app:t}=S();return t?.appearance.logo?_d(iy,{...e,children:_d(Sd,{})}):null},iy=ny.div`
660
660
  display: flex;
661
661
  flex-direction: column;
662
662
  align-items: center;
663
663
  padding: 24px 0;
664
664
  flex-grow: 1;
665
665
  justify-content: center;
666
- `;import{Fragment as ly,jsx as vr,jsxs as cy}from"react/jsx-runtime";var _d=()=>{let{app:e}=S();return cy(ly,{children:[vr(T,{},"header"),vr(sy,{}),vr(Co,{children:vr(gr,{connectOnly:!0})}),e&&vr(ki,{app:e}),vr(G,{protectedByPrivy:!0})]})},sy=ay(Wi)`
666
+ `;import{Fragment as ly,jsx as Cr,jsxs as cy}from"react/jsx-runtime";var kd=()=>{let{app:e}=S();return cy(ly,{children:[Cr(T,{},"header"),Cr(sy,{}),Cr(Co,{children:Cr(wr,{connectOnly:!0})}),e&&Cr(ki,{app:e}),Cr(G,{protectedByPrivy:!0})]})},sy=ay(Wi)`
667
667
  margin-bottom: 16px;
668
- `;import{useEffect as Wd,useState as Md}from"react";import{isMobile as gy}from"react-device-detect";import vy from"styled-components";import{useEffect as gs,useState as wr}from"react";import{isMobile as fn}from"react-device-detect";import{useInterval as my}from"react-use";import Ad from"styled-components";import{useState as dy,useEffect as py,useCallback as uy}from"react";function kd(){let[e,t]=dy(!1),o=uy(()=>{document.hidden&&t(!0)},[]);return py(()=>(document.addEventListener("visibilitychange",o),()=>document.removeEventListener("visibilitychange",o)),[o]),{hasTabbedAway:e,reset:()=>t(!1)}}import{Fragment as Id,jsx as Ce,jsxs as hn}from"react/jsx-runtime";var vs=2,ws=e=>e?.privyErrorCode==="linked_to_another_user"?Kt.ERROR_USER_EXISTS:e instanceof De&&!e.details.default?e.details:e instanceof sr?Kt.ERROR_TIMED_OUT:e instanceof lr?Kt.ERROR_USER_REJECTED_CONNECTION:Kt.ERROR_WALLET_CONNECTION,Rd=()=>{let[e,t]=wr(!1),[o,r]=wr(!1),[n,i]=wr(void 0),{app:a,navigate:l,navigateBack:s,lastScreen:c,currentScreen:u,setModalData:y}=S(),{getAuthFlow:C,walletConnectionStatus:m,closePrivyModal:P,loginWithWallet:b,updateWallets:x}=k(),{walletConnectors:v}=z(),[R,M]=wr(0),{user:W}=z(),[I]=wr(W?.linkedAccounts.length||0),[A,L]=wr(""),{hasTabbedAway:O}=kd(),B=fn&&m?.connector?.connectorType==="wallet_connect_v2"||fn&&m?.connector?.connectorType==="coinbase_wallet"||fn&&m?.connector?.connectorType==="injected"&&m?.connector?.walletClientType==="phantom",D=m?.status==="connected",_=m?.status==="switching_to_supported_chain";gs(()=>{let J=C();if(J&&B&&D&&!J.preparedMessage){J.buildSiweMessage();return}!J||B||!D||(async()=>{r(!0),i(void 0);try{m?.connector?.connectorType==="wallet_connect_v2"&&m?.connector?.walletClientType==="metamask"&&await Za(2500),await ne()}catch(ao){console.warn("Auto-prompted signature failed",ao)}finally{r(!1)}})()},[R,D]),gs(()=>{if(W&&e){let J;if(po(W,a?.embeddedWallets?.createOnLogin)){let ao=a?.render.inDialog?Xe:0,Vt=a?.render.inDialog?ao-500:0;J=setTimeout(()=>{y({createWallet:{onSuccess:()=>{},onFailure:tr=>console.error(tr),callAuthOnSuccessOnClose:!0}}),l("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},Vt)}else x(),J=setTimeout(P,Xe);return()=>clearTimeout(J)}},[W,e]);let Z=J=>{if(J?.privyErrorCode==="allowlist_rejected"){l("ALLOWLIST_REJECTION_SCREEN");return}i(ws(J))};async function ne(){try{if(await b(),!a?.render.inDialog)return P();t(!0)}catch(J){Z(J)}finally{r(!1)}}gs(()=>{m?.connectError&&Z(m?.connectError)},[m]),my(()=>{let J=fe==="wallet_connect_v2"&&m?.connector instanceof Wt?m.connector.redirectUri:void 0;J&&L(J)},m?.connector instanceof Wt&&!A?500:null);let fe=m?.connector?.connectorType||"injected",N=m?.connector?.walletClientType||"unknown",Oe=Ot[N]?.displayName||m?.connector?.walletBranding.name||"Browser Extension",st=Ot[N]?.logo||m?.connector?.walletBranding.icon||(J=>Ce(dr,{...J})),de=Oe==="Browser Extension"?Oe.toLowerCase():Oe,Se;e?Se=`Successfully connected with ${de}`:n?Se=n.message:_?Se="Switching networks":D?Se=o&&B?"Signing":"Sign to verify":Se=`Waiting for ${de}`;let ee="Don\u2019t see your wallet? Check your other browser windows.";if(e){let J=W?.linkedAccounts.length||0;I===J?ee="Wallet was already linked.":ee="You\u2019re good to go!"}else R>=vs&&n?ee="Unable to connect wallet":n?ee=n.detail:_?ee="Switch your wallet to the requested network.":D&&B?ee="Sign the message in your wallet to verify it belongs to you.":N==="metamask"&&fn?ee="Click continue to open and connect Metamask.":N==="metamask"?ee="For the best experience, connect only one wallet at a time.":fe==="wallet_connect"?ee="Open your mobile wallet app to continue":fe==="coinbase_wallet"&&(hc()||(es(W)?ee="Continue with the Coinbase app. Not the right wallet? Reset your connection below.":ee="Open the Coinbase app on your phone to continue."));let pe=v?.walletConnectors?.find(J=>J.walletClientType==="coinbase_wallet"),er=N==="coinbase_wallet"&&(es(W)||n===Kt.ERROR_USER_EXISTS);return hn(Id,{children:[Ce(T,{backFn:u===c?void 0:s}),hn(hy,{children:[Ce(Cs,{walletLogo:st,success:e,fail:!!n}),hn(go,{children:[Ce("h3",{children:Se}),Ce("p",{children:ee}),!D&&A&&!O?hn("p",{children:["Still here?"," ",Ce("a",{href:A,target:"_blank",style:{textDecoration:"underline"},children:"Try again"})]}):null]}),er?Ce(F,{onClick:()=>pe&&pe?.disconnect(),disabled:e,children:"Use a different wallet"}):n==Kt.ERROR_USER_EXISTS&&u!==c?Ce(F,{onClick:s,children:"Use a different wallet"}):D&&!e&&B?Ce(F,{onClick:()=>{r(!0),ne(),fy(N)},disabled:o,children:o?"Signing":"Sign with your wallet"}):!e&&n?.retryable&&R<vs?Ce(F,{onClick:()=>{M(R+1),i(void 0),D?(r(!0),ne()):m?.connectRetry()},disabled:!e&&(!n?.retryable||R>=vs),children:"Retry"}):!e&&!n?Ce(F,{onClick:()=>{},disabled:!0,children:"Connecting"}):null]}),Ce(Y,{})]})},fy=e=>{if(!fn||!Lc(e))return;let t=Nc(e);t&&window.open(t,"_self","noopener,noreferrer")},hy=Ad.div`
668
+ `;import{useEffect as Md,useState as Ld}from"react";import{isMobile as gy}from"react-device-detect";import vy from"styled-components";import{useEffect as gs,useState as br}from"react";import{isMobile as fn}from"react-device-detect";import{useInterval as my}from"react-use";import Rd from"styled-components";import{useState as dy,useEffect as py,useCallback as uy}from"react";function Ad(){let[e,t]=dy(!1),o=uy(()=>{document.hidden&&t(!0)},[]);return py(()=>(document.addEventListener("visibilitychange",o),()=>document.removeEventListener("visibilitychange",o)),[o]),{hasTabbedAway:e,reset:()=>t(!1)}}import{Fragment as Wd,jsx as Ee,jsxs as hn}from"react/jsx-runtime";var vs=2,ws=e=>e?.privyErrorCode==="linked_to_another_user"?Kt.ERROR_USER_EXISTS:e instanceof Ue&&!e.details.default?e.details:e instanceof cr?Kt.ERROR_TIMED_OUT:e instanceof dr?Kt.ERROR_USER_REJECTED_CONNECTION:Kt.ERROR_WALLET_CONNECTION,Id=()=>{let[e,t]=br(!1),[o,r]=br(!1),[n,i]=br(void 0),{app:a,navigate:l,navigateBack:s,lastScreen:c,currentScreen:u,setModalData:y}=S(),{getAuthFlow:C,walletConnectionStatus:m,closePrivyModal:P,loginWithWallet:b,updateWallets:x}=k(),{walletConnectors:v}=z(),[R,M]=br(0),{user:W}=z(),[I]=br(W?.linkedAccounts.length||0),[A,L]=br(""),{hasTabbedAway:D}=Ad(),B=fn&&m?.connector?.connectorType==="wallet_connect_v2"||fn&&m?.connector?.connectorType==="coinbase_wallet"||fn&&m?.connector?.connectorType==="injected"&&m?.connector?.walletClientType==="phantom",U=m?.status==="connected",_=m?.status==="switching_to_supported_chain";gs(()=>{let J=C();if(J&&B&&U&&!J.preparedMessage){J.buildSiweMessage();return}!J||B||!U||(async()=>{r(!0),i(void 0);try{m?.connector?.connectorType==="wallet_connect_v2"&&m?.connector?.walletClientType==="metamask"&&await Za(2500),await ne()}catch(ao){console.warn("Auto-prompted signature failed",ao)}finally{r(!1)}})()},[R,U]),gs(()=>{if(W&&e){let J;if(po(W,a?.embeddedWallets?.createOnLogin)){let ao=a?.render.inDialog?Xe:0,Vt=a?.render.inDialog?ao-500:0;J=setTimeout(()=>{y({createWallet:{onSuccess:()=>{},onFailure:rr=>console.error(rr),callAuthOnSuccessOnClose:!0}}),l("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},Vt)}else x(),J=setTimeout(P,Xe);return()=>clearTimeout(J)}},[W,e]);let Z=J=>{if(J?.privyErrorCode==="allowlist_rejected"){l("ALLOWLIST_REJECTION_SCREEN");return}i(ws(J))};async function ne(){try{if(await b(),!a?.render.inDialog)return P();t(!0)}catch(J){Z(J)}finally{r(!1)}}gs(()=>{m?.connectError&&Z(m?.connectError)},[m]),my(()=>{let J=he==="wallet_connect_v2"&&m?.connector instanceof Wt?m.connector.redirectUri:void 0;J&&L(J)},m?.connector instanceof Wt&&!A?500:null);let he=m?.connector?.connectorType||"injected",N=m?.connector?.walletClientType||"unknown",De=Ot[N]?.displayName||m?.connector?.walletBranding.name||"Browser Extension",st=Ot[N]?.logo||m?.connector?.walletBranding.icon||(J=>Ee(ur,{...J})),pe=De==="Browser Extension"?De.toLowerCase():De,ke;e?ke=`Successfully connected with ${pe}`:n?ke=n.message:_?ke="Switching networks":U?ke=o&&B?"Signing":"Sign to verify":ke=`Waiting for ${pe}`;let ee="Don\u2019t see your wallet? Check your other browser windows.";if(e){let J=W?.linkedAccounts.length||0;I===J?ee="Wallet was already linked.":ee="You\u2019re good to go!"}else R>=vs&&n?ee="Unable to connect wallet":n?ee=n.detail:_?ee="Switch your wallet to the requested network.":U&&B?ee="Sign the message in your wallet to verify it belongs to you.":N==="metamask"&&fn?ee="Click continue to open and connect Metamask.":N==="metamask"?ee="For the best experience, connect only one wallet at a time.":he==="wallet_connect"?ee="Open your mobile wallet app to continue":he==="coinbase_wallet"&&(yc()||(es(W)?ee="Continue with the Coinbase app. Not the right wallet? Reset your connection below.":ee="Open the Coinbase app on your phone to continue."));let ue=v?.walletConnectors?.find(J=>J.walletClientType==="coinbase_wallet"),or=N==="coinbase_wallet"&&(es(W)||n===Kt.ERROR_USER_EXISTS);return hn(Wd,{children:[Ee(T,{backFn:u===c?void 0:s}),hn(hy,{children:[Ee(Cs,{walletLogo:st,success:e,fail:!!n}),hn(go,{children:[Ee("h3",{children:ke}),Ee("p",{children:ee}),!U&&A&&!D?hn("p",{children:["Still here?"," ",Ee("a",{href:A,target:"_blank",style:{textDecoration:"underline"},children:"Try again"})]}):null]}),or?Ee(F,{onClick:()=>ue&&ue?.disconnect(),disabled:e,children:"Use a different wallet"}):n==Kt.ERROR_USER_EXISTS&&u!==c?Ee(F,{onClick:s,children:"Use a different wallet"}):U&&!e&&B?Ee(F,{onClick:()=>{r(!0),ne(),fy(N)},disabled:o,children:o?"Signing":"Sign with your wallet"}):!e&&n?.retryable&&R<vs?Ee(F,{onClick:()=>{M(R+1),i(void 0),U?(r(!0),ne()):m?.connectRetry()},disabled:!e&&(!n?.retryable||R>=vs),children:"Retry"}):!e&&!n?Ee(F,{onClick:()=>{},disabled:!0,children:"Connecting"}):null]}),Ee(Y,{})]})},fy=e=>{if(!fn||!Nc(e))return;let t=Oc(e);t&&window.open(t,"_self","noopener,noreferrer")},hy=Rd.div`
669
669
  display: flex;
670
670
  flex-direction: column;
671
671
  align-items: center;
672
672
  justify-content: center;
673
673
  gap: 24px;
674
674
  width: 100%;
675
- `,yy=Ad.div`
675
+ `,yy=Rd.div`
676
676
  display: flex;
677
677
  flex-direction: column;
678
678
  justify-content: center;
@@ -695,14 +695,14 @@ Resources:
695
695
  left: -19px;
696
696
  top: -19px;
697
697
  }
698
- `,Cs=e=>{let t=e.walletLogo;return Ce(Id,{children:Ce(yy,{children:hn("div",{children:[Ce(bi,{success:e.success,fail:e.fail}),typeof t=="string"?Ce("span",{style:{background:`url('${t}')`,height:"38px",width:"38px",borderRadius:"6px",margin:"auto",backgroundSize:"cover"}}):Ce(t,{style:{width:"38px",height:"38px"}})]})})})};import{Fragment as Cy,jsx as Zt,jsxs as bs}from"react/jsx-runtime";var Mi=2,Ld=()=>{let{navigateBack:e,lastScreen:t,currentScreen:o}=S(),{walletConnectionStatus:r,closePrivyModal:n}=k(),[i,a]=Md(void 0),[l,s]=Md(0),c=r?.status==="connected",u=r?.status==="switching_to_supported_chain";Wd(()=>{if(c){let M=setTimeout(n,Xe);return()=>clearTimeout(M)}},[c]);let y=M=>{a(ws(M))};Wd(()=>{r?.connectError&&y(r?.connectError)},[r]);let C=r?.connector?.connectorType||"injected",m=r?.connector?.walletClientType||"unknown",P=Ot[m]?.displayName||r?.connector?.walletBranding.name||"Browser Extension",b=Ot[m]?.logo||r?.connector?.walletBranding.icon||(M=>Zt(dr,{...M})),x=P==="Browser Extension"?P.toLowerCase():P,v;c?v=`Successfully connected with ${x}`:i?v=i.message:u?v="Switching networks":v=`Waiting for ${x}`;let R="Don\u2019t see your wallet? Check your other browser windows.";return c?R="You\u2019re good to go!":l>=Mi&&i?R="Unable to connect wallet":i?R=i.detail:u?R="Switch your wallet to the requested network.":m==="metamask"&&gy?R="Click to continue to open and connect Metamask.":m==="metamask"?R="For the best experience, connect only one wallet at a time.":C==="wallet_connect_v2"?R="Open your mobile wallet app to continue":C==="coinbase_wallet"&&(R="Open the Coinbase app on your phone to continue."),bs(Cy,{children:[Zt(T,{backFn:o===t?void 0:e}),bs(wy,{children:[Zt(Cs,{walletLogo:b,success:c,fail:!!i}),bs(go,{children:[Zt("h3",{children:v}),Zt("p",{children:R})]}),i==Kt.ERROR_USER_EXISTS?Zt(F,{onClick:e,children:"Use a different wallet"}):!c&&i?.retryable&&l<Mi?Zt(F,{onClick:()=>{s(l+1),a(void 0),r?.connectRetry()},disabled:!c&&(!i?.retryable||l>=Mi),children:"Retry"}):!c&&i&&l>=Mi?Zt(F,{onClick:e,children:"Use a different wallet"}):null]}),Zt(Y,{})]})},wy=vy.div`
698
+ `,Cs=e=>{let t=e.walletLogo;return Ee(Wd,{children:Ee(yy,{children:hn("div",{children:[Ee(bi,{success:e.success,fail:e.fail}),typeof t=="string"?Ee("span",{style:{background:`url('${t}')`,height:"38px",width:"38px",borderRadius:"6px",margin:"auto",backgroundSize:"cover"}}):Ee(t,{style:{width:"38px",height:"38px"}})]})})})};import{Fragment as Cy,jsx as Zt,jsxs as bs}from"react/jsx-runtime";var Mi=2,Nd=()=>{let{navigateBack:e,lastScreen:t,currentScreen:o}=S(),{walletConnectionStatus:r,closePrivyModal:n}=k(),[i,a]=Ld(void 0),[l,s]=Ld(0),c=r?.status==="connected",u=r?.status==="switching_to_supported_chain";Md(()=>{if(c){let M=setTimeout(n,Xe);return()=>clearTimeout(M)}},[c]);let y=M=>{a(ws(M))};Md(()=>{r?.connectError&&y(r?.connectError)},[r]);let C=r?.connector?.connectorType||"injected",m=r?.connector?.walletClientType||"unknown",P=Ot[m]?.displayName||r?.connector?.walletBranding.name||"Browser Extension",b=Ot[m]?.logo||r?.connector?.walletBranding.icon||(M=>Zt(ur,{...M})),x=P==="Browser Extension"?P.toLowerCase():P,v;c?v=`Successfully connected with ${x}`:i?v=i.message:u?v="Switching networks":v=`Waiting for ${x}`;let R="Don\u2019t see your wallet? Check your other browser windows.";return c?R="You\u2019re good to go!":l>=Mi&&i?R="Unable to connect wallet":i?R=i.detail:u?R="Switch your wallet to the requested network.":m==="metamask"&&gy?R="Click to continue to open and connect Metamask.":m==="metamask"?R="For the best experience, connect only one wallet at a time.":C==="wallet_connect_v2"?R="Open your mobile wallet app to continue":C==="coinbase_wallet"&&(R="Open the Coinbase app on your phone to continue."),bs(Cy,{children:[Zt(T,{backFn:o===t?void 0:e}),bs(wy,{children:[Zt(Cs,{walletLogo:b,success:c,fail:!!i}),bs(go,{children:[Zt("h3",{children:v}),Zt("p",{children:R})]}),i==Kt.ERROR_USER_EXISTS?Zt(F,{onClick:e,children:"Use a different wallet"}):!c&&i?.retryable&&l<Mi?Zt(F,{onClick:()=>{s(l+1),a(void 0),r?.connectRetry()},disabled:!c&&(!i?.retryable||l>=Mi),children:"Retry"}):!c&&i&&l>=Mi?Zt(F,{onClick:e,children:"Use a different wallet"}):null]}),Zt(Y,{})]})},wy=vy.div`
699
699
  display: flex;
700
700
  flex-direction: column;
701
701
  align-items: center;
702
702
  justify-content: center;
703
703
  gap: 24px;
704
704
  width: 100%;
705
- `;import{XCircleIcon as _y}from"@heroicons/react/24/solid";import{useEffect as ky,useMemo as Ay,useState as Ry}from"react";import Iy from"styled-components";import Li from"styled-components";import{jsx as Es,jsxs as Ty}from"react/jsx-runtime";var Cr=()=>Es(by,{children:Ty(Ey,{children:[Es(Py,{}),Es(xy,{})]})}),by=Li.div`
705
+ `;import{XCircleIcon as _y}from"@heroicons/react/24/solid";import{useEffect as ky,useMemo as Ay,useState as Ry}from"react";import Iy from"styled-components";import Li from"styled-components";import{jsx as Es,jsxs as Ty}from"react/jsx-runtime";var Er=()=>Es(by,{children:Ty(Ey,{children:[Es(Py,{}),Es(xy,{})]})}),by=Li.div`
706
706
  display: flex;
707
707
  justify-content: center;
708
708
  align-items: center;
@@ -758,9 +758,9 @@ Resources:
758
758
  transform: rotate(360deg);
759
759
  }
760
760
  }
761
- `;var Nd=["error","invalid_request_arguments","wallet_not_on_device","invalid_recovery_pin","insufficient_funds","missing_or_invalid_mfa","mfa_verification_max_attempts_reached","mfa_timeout","twilio_verification_failed"];var be=class extends Error{constructor(o,r){super(r);this.type=o}};function zo(e){let t=e.type;return typeof t=="string"&&Nd.includes(t)}function Sy(e){let t=e.type;return typeof t=="string"&&t==="client_error"}function br(e){return zo(e)&&e.type==="wallet_not_on_device"}function Od(e){return zo(e)&&(e.type==="invalid_recovery_pin"||e.type==="invalid_request_arguments")}function Dd(e){return!!(zo(e)&&e.type==="insufficient_funds"||e.code==="INSUFFICIENT_FUNDS")}function Er(e){return!!(zo(e)&&e.type==="mfa_timeout")}function Pr(e){return!!(zo(e)&&e.type==="missing_or_invalid_mfa")}function Ps(e){return!!(zo(e)&&e.type==="mfa_verification_max_attempts_reached")}function xs(e){return!!(zo(e)&&e.message.includes("code 429"))}function Ts(e){return!!(Sy(e)&&e.message==="MFA canceled")}import{Fragment as Fd,jsx as xr,jsxs as Ss}from"react/jsx-runtime";var Ud=1,Bd=()=>{let{authenticated:e,user:t,getAccessToken:o}=z(),{closePrivyModal:r,createAnalyticsEvent:n,walletProxy:i}=k(),{navigate:a,data:l,setModalData:s,onUserCloseViaDialogOrKeybindRef:c}=S(),u=Ay(()=>Date.now(),[]),[y,C]=Ry(!1),{onCompleteNavigateTo:m,onFailure:P}=l?.connectWallet,b=v=>{y||(C(!0),P(typeof v=="string"?new Error(v):v))};ky(()=>{let v=ie(t),R;return!e||!v?b("User must be authenticated and have a Privy wallet before it can be connected"):i?((async()=>{let W=await o();if(!W)return b("User must be authenticated and have a Privy wallet before it can be connected");try{await i.connect({accessToken:W,address:v.address});let I=(Date.now()-u)/1e3;m==="EMBEDDED_WALLET_KEY_EXPORT_SCREEN"&&I<Ud?R=setTimeout(()=>{a(m)},(Ud-I)*1e3):a(m)}catch(I){if(br(I)&&v.recoveryMethod==="privy"){let A=await o();if(!A)return b("User must be authenticated and have a Privy wallet before it can be recovered");try{n("embedded_wallet_pinless_recovery_started",{walletAddress:v.address}),(await i?.recover({address:v.address,accessToken:A}))?.address||b(new Error("Unable to recover wallet")),m?a(m):r({shouldCallAuthOnSuccess:!1}),n("embedded_wallet_recovery_completed",{walletAddress:v.address}),a(m)}catch{b("An error has occurred, please try again.")}}else br(I)?(s({...l,recoverWallet:{privyWallet:v,onCompleteNavigateTo:m,onFailure:P}}),a("EMBEDDED_WALLET_RECOVERY_SCREEN")):b(I)}})(),()=>clearTimeout(R)):void 0},[e,t,i]);let x=()=>{b("User exited before wallet could be connected"),r({shouldCallAuthOnSuccess:!1})};return c.current=x,Ss(Fd,{children:[xr(T,{onClose:x}),y?Ss(Fd,{children:[Ss(Ct,{children:[xr(_y,{fill:"var(--privy-color-error)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),xr(ye,{title:"Something went wrong",description:"We\u2019re on it. Please try again later."})]}),xr(F,{onClick:()=>r({shouldCallAuthOnSuccess:!1}),children:"Close"})]}):xr(Cr,{}),xr(Wy,{})]})},Wy=Iy.div`
761
+ `;var Od=["error","invalid_request_arguments","wallet_not_on_device","invalid_recovery_pin","insufficient_funds","missing_or_invalid_mfa","mfa_verification_max_attempts_reached","mfa_timeout","twilio_verification_failed"];var Pe=class extends Error{constructor(o,r){super(r);this.type=o}};function zo(e){let t=e.type;return typeof t=="string"&&Od.includes(t)}function Sy(e){let t=e.type;return typeof t=="string"&&t==="client_error"}function Vo(e){return zo(e)&&e.type==="wallet_not_on_device"}function Dd(e){return zo(e)&&(e.type==="invalid_recovery_pin"||e.type==="invalid_request_arguments")}function Ud(e){return!!(zo(e)&&e.type==="insufficient_funds"||e.code==="INSUFFICIENT_FUNDS")}function Pr(e){return!!(zo(e)&&e.type==="mfa_timeout")}function xr(e){return!!(zo(e)&&e.type==="missing_or_invalid_mfa")}function Ps(e){return!!(zo(e)&&e.type==="mfa_verification_max_attempts_reached")}function xs(e){return!!(zo(e)&&e.message.includes("code 429"))}function Ts(e){return!!(Sy(e)&&e.message==="MFA canceled")}import{Fragment as Bd,jsx as Tr,jsxs as Ss}from"react/jsx-runtime";var Fd=1,Gd=()=>{let{authenticated:e,user:t,getAccessToken:o}=z(),{closePrivyModal:r,createAnalyticsEvent:n,walletProxy:i}=k(),{navigate:a,data:l,setModalData:s,onUserCloseViaDialogOrKeybindRef:c}=S(),u=Ay(()=>Date.now(),[]),[y,C]=Ry(!1),{onCompleteNavigateTo:m,onFailure:P}=l?.connectWallet,b=v=>{y||(C(!0),P(typeof v=="string"?new Error(v):v))};ky(()=>{let v=ie(t),R;return!e||!v?b("User must be authenticated and have a Privy wallet before it can be connected"):i?((async()=>{let W=await o();if(!W)return b("User must be authenticated and have a Privy wallet before it can be connected");try{await i.connect({accessToken:W,address:v.address});let I=(Date.now()-u)/1e3;m==="EMBEDDED_WALLET_KEY_EXPORT_SCREEN"&&I<Fd?R=setTimeout(()=>{a(m)},(Fd-I)*1e3):a(m)}catch(I){if(Vo(I)&&v.recoveryMethod==="privy"){let A=await o();if(!A)return b("User must be authenticated and have a Privy wallet before it can be recovered");try{n("embedded_wallet_pinless_recovery_started",{walletAddress:v.address}),(await i?.recover({address:v.address,accessToken:A}))?.address||b(new Error("Unable to recover wallet")),m?a(m):r({shouldCallAuthOnSuccess:!1}),n("embedded_wallet_recovery_completed",{walletAddress:v.address}),a(m)}catch{b("An error has occurred, please try again.")}}else Vo(I)?(s({...l,recoverWallet:{privyWallet:v,onCompleteNavigateTo:m,onFailure:P}}),a("EMBEDDED_WALLET_RECOVERY_SCREEN")):b(I)}})(),()=>clearTimeout(R)):void 0},[e,t,i]);let x=()=>{b("User exited before wallet could be connected"),r({shouldCallAuthOnSuccess:!1})};return c.current=x,Ss(Bd,{children:[Tr(T,{onClose:x}),y?Ss(Bd,{children:[Ss(Ct,{children:[Tr(_y,{fill:"var(--privy-color-error)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),Tr(ge,{title:"Something went wrong",description:"We\u2019re on it. Please try again later."})]}),Tr(F,{onClick:()=>r({shouldCallAuthOnSuccess:!1}),children:"Close"})]}):Tr(Er,{}),Tr(Wy,{})]})},Wy=Iy.div`
762
762
  height: 44px;
763
- `;import{CheckCircleIcon as My}from"@heroicons/react/24/solid";import{useEffect as Ly}from"react";import{Fragment as Ny,jsx as Tr,jsxs as Gd}from"react/jsx-runtime";var Hd=()=>{let{user:e}=z(),{closePrivyModal:t,isNewUserThisSession:o,updateWallets:r}=k(),{app:n,data:i,onUserCloseViaDialogOrKeybindRef:a}=S(),{onSuccess:l,onFailure:s,callAuthOnSuccessOnClose:c}=i.createWallet,u=()=>{let y=ie(e);y?(r(),l(y)):s(new Error("Failed to create wallet")),t({shouldCallAuthOnSuccess:c})};return Ly(()=>{let y=setTimeout(u,ac);return()=>clearTimeout(y)},[]),a.current=u,Gd(Ny,{children:[Tr(T,{onClose:u}),Tr(j,{}),Gd(Ct,{children:[Tr(My,{fill:"var(--privy-color-accent)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),Tr(ye,{title:o?`Welcome${n?.name?` to ${n?.name}`:""}`:"All set!",description:o?"You\u2019ve successfully created an account.":"Your account is secured."})]}),Tr(K,{}),Tr(G,{protectedByPrivy:!0})]})};import{ExclamationTriangleIcon as Oy}from"@heroicons/react/20/solid";import{ArrowRightOnRectangleIcon as Dy}from"@heroicons/react/24/outline";import{useEffect as $d,useRef as Uy,useState as _s}from"react";import bo from"styled-components";import{Fragment as qy,jsx as ve,jsxs as Et}from"react/jsx-runtime";var jd=()=>{let[e,t]=_s(null),{authenticated:o,user:r,getAccessToken:n}=z(),{closePrivyModal:i,createAnalyticsEvent:a,clientAnalyticsId:l}=k(),{data:s,onUserCloseViaDialogOrKeybindRef:c}=S(),u=ie(r)?.address,{onFailure:y,onSuccess:C,origin:m,appId:P}=s.keyExport,b=v=>{i({shouldCallAuthOnSuccess:!1}),y(typeof v=="string"?new Error(v):v)},x=()=>{i({shouldCallAuthOnSuccess:!1}),C(),a("embedded_wallet_key_export_completed",{walletAddress:u})};return $d(()=>{let v=ie(r);if(!o||!v)return b("User must be authenticated before exporting their wallet");n().then(t,b)},[o,r]),c.current=x,Et(qy,{children:[ve(T,{onClose:x}),Et(Gy,{children:[Et(ye,{icon:ve(Dy,{color:"var(--privy-color-accent)",strokeWidth:2,height:"40px",width:"40px"}),title:"Transfer Wallet",children:[Et($y,{children:[ve(By,{style:{marginRight:6}}),uo(u)]}),ve("p",{children:"You can bring your account with you to another site using an external wallet."})]}),Et(Hy,{children:[Et(zd,{children:[ve(Vd,{children:"1"}),Et("span",{children:[ve("a",{href:"https://privy-io.notion.site/Transferring-your-account-9dab9e16c6034a7ab1ff7fa479b02828",target:"blank",rel:"noopener noreferrer",children:"Follow the guide"})," ","to transfer your account to your wallet of choice."]})]}),Et(zd,{children:[ve(Vd,{children:"2"}),ve("span",{children:"Copy this key into your other wallet"})]})]}),ve("div",{style:{width:"100%"},children:e&&ve(Fy,{origin:m,appId:P,accessToken:e,clientAnalyticsId:l,address:u,dimensions:{height:"44px"}})}),Et(jy,{children:[Et("div",{children:[ve(Oy,{viewBox:"0 0 20 18"}),ve("h4",{children:"Warning"})]}),ve("p",{children:"Never share your private key with anyone! It controls your account."})]})]}),ve(G,{protectedByPrivy:!0})]})};function Fy(e){let[t,o]=_s(e.dimensions.width),[r,n]=_s(void 0),i=Uy(null);return $d(()=>{if(i.current&&t===void 0){let{width:l}=i.current.getBoundingClientRect();o(l)}let a=getComputedStyle(document.documentElement);n({background2:a.getPropertyValue("--privy-color-background-2"),foreground3:a.getPropertyValue("--privy-color-foreground-3"),foregroundAccent:a.getPropertyValue("--privy-color-foreground-accent"),accent:a.getPropertyValue("--privy-color-accent"),accentDark:a.getPropertyValue("--privy-color-accent-dark"),success:a.getPropertyValue("--privy-color-success")})},[]),ve("div",{ref:i,children:t&&Et(zy,{children:[ve("iframe",{style:{position:"absolute",zIndex:1},width:t,height:e.dimensions.height,allow:"clipboard-write self *",src:si(e.origin,`/apps/${e.appId}/embedded-wallets/export`,{token:e.accessToken,address:e.address,width:`${t}px`,caid:e.clientAnalyticsId,...r})}),ve(Vy,{children:"Loading..."})]})})}function By(e){return ve("svg",{width:"16",height:"17",viewBox:"0 0 16 17",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:e.style,children:ve("path",{d:"M14 8.81335C14 7.98493 13.3284 7.31335 12.5 7.31335H10C10 8.41792 9.10457 9.31335 8 9.31335C6.89543 9.31335 6 8.41792 6 7.31335H3.5C2.67157 7.31335 2 7.98493 2 8.81335M14 8.81335V12.8134C14 13.6418 13.3284 14.3134 12.5 14.3134H3.5C2.67157 14.3134 2 13.6418 2 12.8134V8.81335M14 8.81335V6.81335M2 8.81335V6.81335M14 6.81335C14 5.98493 13.3284 5.31335 12.5 5.31335H3.5C2.67157 5.31335 2 5.98493 2 6.81335M14 6.81335V4.81335C14 3.98493 13.3284 3.31335 12.5 3.31335H3.5C2.67157 3.31335 2 3.98493 2 4.81335V6.81335",stroke:"var(--privy-color-foreground-3)",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})}var Gy=bo.div`
763
+ `;import{CheckCircleIcon as My}from"@heroicons/react/24/solid";import{useEffect as Ly}from"react";import{Fragment as Ny,jsx as Sr,jsxs as Hd}from"react/jsx-runtime";var zd=()=>{let{user:e}=z(),{closePrivyModal:t,isNewUserThisSession:o,updateWallets:r}=k(),{app:n,data:i,onUserCloseViaDialogOrKeybindRef:a}=S(),{onSuccess:l,onFailure:s,callAuthOnSuccessOnClose:c}=i.createWallet,u=()=>{let y=ie(e);y?(r(),l(y)):s(new Error("Failed to create wallet")),t({shouldCallAuthOnSuccess:c})};return Ly(()=>{let y=setTimeout(u,sc);return()=>clearTimeout(y)},[]),a.current=u,Hd(Ny,{children:[Sr(T,{onClose:u}),Sr(j,{}),Hd(Ct,{children:[Sr(My,{fill:"var(--privy-color-accent)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),Sr(ge,{title:o?`Welcome${n?.name?` to ${n?.name}`:""}`:"All set!",description:o?"You\u2019ve successfully created an account.":"Your account is secured."})]}),Sr(K,{}),Sr(G,{protectedByPrivy:!0})]})};import{ExclamationTriangleIcon as Oy}from"@heroicons/react/20/solid";import{ArrowRightOnRectangleIcon as Dy}from"@heroicons/react/24/outline";import{useEffect as jd,useRef as Uy,useState as _s}from"react";import bo from"styled-components";import{Fragment as qy,jsx as we,jsxs as Et}from"react/jsx-runtime";var qd=()=>{let[e,t]=_s(null),{authenticated:o,user:r,getAccessToken:n}=z(),{closePrivyModal:i,createAnalyticsEvent:a,clientAnalyticsId:l}=k(),{data:s,onUserCloseViaDialogOrKeybindRef:c}=S(),u=ie(r)?.address,{onFailure:y,onSuccess:C,origin:m,appId:P}=s.keyExport,b=v=>{i({shouldCallAuthOnSuccess:!1}),y(typeof v=="string"?new Error(v):v)},x=()=>{i({shouldCallAuthOnSuccess:!1}),C(),a("embedded_wallet_key_export_completed",{walletAddress:u})};return jd(()=>{let v=ie(r);if(!o||!v)return b("User must be authenticated before exporting their wallet");n().then(t,b)},[o,r]),c.current=x,Et(qy,{children:[we(T,{onClose:x}),Et(Gy,{children:[Et(ge,{icon:we(Dy,{color:"var(--privy-color-accent)",strokeWidth:2,height:"40px",width:"40px"}),title:"Transfer Wallet",children:[Et($y,{children:[we(By,{style:{marginRight:6}}),uo(u)]}),we("p",{children:"You can bring your account with you to another site using an external wallet."})]}),Et(Hy,{children:[Et(Vd,{children:[we($d,{children:"1"}),Et("span",{children:[we("a",{href:"https://privy-io.notion.site/Transferring-your-account-9dab9e16c6034a7ab1ff7fa479b02828",target:"blank",rel:"noopener noreferrer",children:"Follow the guide"})," ","to transfer your account to your wallet of choice."]})]}),Et(Vd,{children:[we($d,{children:"2"}),we("span",{children:"Copy this key into your other wallet"})]})]}),we("div",{style:{width:"100%"},children:e&&we(Fy,{origin:m,appId:P,accessToken:e,clientAnalyticsId:l,address:u,dimensions:{height:"44px"}})}),Et(jy,{children:[Et("div",{children:[we(Oy,{viewBox:"0 0 20 18"}),we("h4",{children:"Warning"})]}),we("p",{children:"Never share your private key with anyone! It controls your account."})]})]}),we(G,{protectedByPrivy:!0})]})};function Fy(e){let[t,o]=_s(e.dimensions.width),[r,n]=_s(void 0),i=Uy(null);return jd(()=>{if(i.current&&t===void 0){let{width:l}=i.current.getBoundingClientRect();o(l)}let a=getComputedStyle(document.documentElement);n({background2:a.getPropertyValue("--privy-color-background-2"),foreground3:a.getPropertyValue("--privy-color-foreground-3"),foregroundAccent:a.getPropertyValue("--privy-color-foreground-accent"),accent:a.getPropertyValue("--privy-color-accent"),accentDark:a.getPropertyValue("--privy-color-accent-dark"),success:a.getPropertyValue("--privy-color-success")})},[]),we("div",{ref:i,children:t&&Et(zy,{children:[we("iframe",{style:{position:"absolute",zIndex:1},width:t,height:e.dimensions.height,allow:"clipboard-write self *",src:si(e.origin,`/apps/${e.appId}/embedded-wallets/export`,{token:e.accessToken,address:e.address,width:`${t}px`,caid:e.clientAnalyticsId,...r})}),we(Vy,{children:"Loading..."})]})})}function By(e){return we("svg",{width:"16",height:"17",viewBox:"0 0 16 17",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:e.style,children:we("path",{d:"M14 8.81335C14 7.98493 13.3284 7.31335 12.5 7.31335H10C10 8.41792 9.10457 9.31335 8 9.31335C6.89543 9.31335 6 8.41792 6 7.31335H3.5C2.67157 7.31335 2 7.98493 2 8.81335M14 8.81335V12.8134C14 13.6418 13.3284 14.3134 12.5 14.3134H3.5C2.67157 14.3134 2 13.6418 2 12.8134V8.81335M14 8.81335V6.81335M2 8.81335V6.81335M14 6.81335C14 5.98493 13.3284 5.31335 12.5 5.31335H3.5C2.67157 5.31335 2 5.98493 2 6.81335M14 6.81335V4.81335C14 3.98493 13.3284 3.31335 12.5 3.31335H3.5C2.67157 3.31335 2 3.98493 2 4.81335V6.81335",stroke:"var(--privy-color-foreground-3)",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})}var Gy=bo.div`
764
764
  display: flex;
765
765
  flex-direction: column;
766
766
  text-align: left;
@@ -771,7 +771,7 @@ Resources:
771
771
  padding-bottom: 16px;
772
772
  margin-left: 11px;
773
773
  border-left: 1px solid var(--privy-color-foreground-4) !important;
774
- `,zd=bo.div`
774
+ `,Vd=bo.div`
775
775
  display: flex;
776
776
  align-items: top;
777
777
  gap: 8px;
@@ -780,7 +780,7 @@ Resources:
780
780
  color: var(--privy-color-accent);
781
781
  text-decoration: underline;
782
782
  }
783
- `,Vd=bo.div`
783
+ `,$d=bo.div`
784
784
  display: flex;
785
785
  align-items: center;
786
786
  justify-content: center;
@@ -845,7 +845,7 @@ Resources:
845
845
  color: var(--privy-color-error);
846
846
  }
847
847
  }
848
- `;import{XCircleIcon as Bg}from"@heroicons/react/24/outline";import{useEffect as vp,useRef as Gg,useState as bn}from"react";import{useCallback as gp,useEffect as Fg}from"react";import{ExclamationTriangleIcon as Zy}from"@heroicons/react/24/outline";import{useEffect as Xy,useState as Rs}from"react";import{ArrowPathIcon as Ky,EyeIcon as Yy,EyeSlashIcon as Jy}from"@heroicons/react/24/outline";import We,{css as ks}from"styled-components";var Qy=ks`
848
+ `;import{XCircleIcon as Bg}from"@heroicons/react/24/outline";import{useEffect as wp,useRef as Gg,useState as bn}from"react";import{useCallback as vp,useEffect as Fg}from"react";import{ExclamationTriangleIcon as Zy}from"@heroicons/react/24/outline";import{useEffect as Xy,useState as Rs}from"react";import{ArrowPathIcon as Ky,EyeIcon as Yy,EyeSlashIcon as Jy}from"@heroicons/react/24/outline";import Me,{css as ks}from"styled-components";var Qy=ks`
849
849
  font-size: 14px;
850
850
  font-style: normal;
851
851
  font-weight: 400;
@@ -853,7 +853,7 @@ Resources:
853
853
  letter-spacing: -0.008px;
854
854
  text-align: left;
855
855
  transition: color 0.1s ease-in;
856
- `,Ni=We.span`
856
+ `,Ni=Me.span`
857
857
  ${Qy}
858
858
  transition: color 0.1s ease-in;
859
859
  color: ${({error:e})=>e?"var(--privy-color-error)":"var(--privy-color-foreground-3)"};
@@ -862,18 +862,18 @@ Resources:
862
862
  &[aria-hidden='true'] {
863
863
  visibility: hidden;
864
864
  }
865
- `,Eo=We.div`
865
+ `,Eo=Me.div`
866
866
  display: flex;
867
867
  flex-direction: column;
868
868
  justify-content: center;
869
869
  flex-grow: 1;
870
- `,Po=We(F)`
870
+ `,Po=Me(F)`
871
871
  ${e=>e.hideAnimations&&ks`
872
872
  && {
873
873
  transition: none;
874
874
  }
875
875
  `}
876
- `,qd=ks`
876
+ `,Kd=ks`
877
877
  && {
878
878
  width: 100%;
879
879
  border-width: 1px;
@@ -888,23 +888,23 @@ Resources:
888
888
  font-weight: 300;
889
889
  line-height: 22px; /* 137.5% */
890
890
  }
891
- `,Vo=We.input`
892
- ${qd}
891
+ `,$o=Me.input`
892
+ ${Kd}
893
893
 
894
894
  &::placeholder {
895
895
  color: var(--privy-color-foreground-3);
896
896
  font-style: italic;
897
897
  font-size: 14px;
898
898
  }
899
- `,Kd=We.div`
900
- ${qd}
901
- `,xo=We.div`
899
+ `,Yd=Me.div`
900
+ ${Kd}
901
+ `,xo=Me.div`
902
902
  position: relative;
903
903
  width: 100%;
904
904
  display: flex;
905
905
  align-items: center;
906
906
  justify-content: ${({centered:e})=>e?"center":"space-between"};
907
- `,To=We.div`
907
+ `,To=Me.div`
908
908
  display: flex;
909
909
  flex-direction: column;
910
910
  align-items: center;
@@ -926,12 +926,12 @@ Resources:
926
926
  font-weight: 400;
927
927
  line-height: 20px;
928
928
  }
929
- `,yn=We.div`
929
+ `,yn=Me.div`
930
930
  display: flex;
931
931
  flex-direction: column;
932
932
  gap: 10px;
933
933
  padding-bottom: 1rem;
934
- `,gn=We.div`
934
+ `,gn=Me.div`
935
935
  display: flex;
936
936
  text-align: left;
937
937
  align-items: center;
@@ -951,13 +951,13 @@ Resources:
951
951
  > :first-child {
952
952
  min-width: 24px;
953
953
  }
954
- `,z4=We.div`
954
+ `,z4=Me.div`
955
955
  height: var(--privy-height-modal-full);
956
956
 
957
957
  @media (max-width: 440px) {
958
958
  height: var(--privy-height-modal-compact);
959
959
  }
960
- `,As=We(Ei)`
960
+ `,As=Me(Ei)`
961
961
  display: flex;
962
962
  flex: 1;
963
963
  gap: 4px;
@@ -969,7 +969,7 @@ Resources:
969
969
  border-color: var(--privy-color-foreground-3);
970
970
  border-width: 1px;
971
971
  }
972
- `,Sr=We.div`
972
+ `,_r=Me.div`
973
973
  position: absolute;
974
974
  right: 0.5rem;
975
975
 
@@ -977,7 +977,7 @@ Resources:
977
977
  flex-direction: row;
978
978
  justify-content: space-around;
979
979
  align-items: center;
980
- `,Yd=We(Ky)`
980
+ `,Jd=Me(Ky)`
981
981
  height: 1.25rem;
982
982
  width: 1.25rem;
983
983
  stroke: var(--privy-color-accent);
@@ -986,7 +986,7 @@ Resources:
986
986
  :active {
987
987
  stroke: var(--privy-color-accent-light);
988
988
  }
989
- `,_r=We(Jy)`
989
+ `,kr=Me(Jy)`
990
990
  height: 1.25rem;
991
991
  width: 1.25rem;
992
992
  stroke: var(--privy-color-accent);
@@ -995,7 +995,7 @@ Resources:
995
995
  :active {
996
996
  stroke: var(--privy-color-accent-light);
997
997
  }
998
- `,kr=We(Yy)`
998
+ `,Ar=Me(Yy)`
999
999
  height: 1.25rem;
1000
1000
  width: 1.25rem;
1001
1001
  stroke: var(--privy-color-accent);
@@ -1004,7 +1004,7 @@ Resources:
1004
1004
  :active {
1005
1005
  stroke: var(--privy-color-accent-light);
1006
1006
  }
1007
- `,Jd=We.progress`
1007
+ `,Qd=Me.progress`
1008
1008
  height: 4px;
1009
1009
  width: 100%;
1010
1010
  margin: 8px 0;
@@ -1020,14 +1020,14 @@ Resources:
1020
1020
  transition: all 0.1s ease-out;
1021
1021
  background: ${({label:e})=>e==="Strong"&&"#78dca6"||e==="Medium"&&"var(--privy-color-warn)"||"var(--privy-color-error)"};
1022
1022
  }
1023
- `;import{Fragment as eg,jsx as nt,jsxs as Oi}from"react/jsx-runtime";var Qd=({buttonHideAnimations:e,buttonLoading:t,password:o,onSubmit:r,onBack:n})=>{let[i,a]=Rs(!0),[l,s]=Rs(!1),[c,u]=Rs(""),y=o===c;return Xy(()=>{c&&!l&&s(!0)},[c]),Oi(eg,{children:[nt(T,{title:"Confirm Password",closeable:!1,backFn:n}),nt(j,{}),Oi(Eo,{children:[Oi(To,{children:[nt(Zy,{height:48,width:48,stroke:"var(--privy-color-background)",fill:"var(--privy-color-accent)"}),nt("h3",{style:{color:"var(--privy-color-foreground)"},children:"Confirm your password"}),nt("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Please re-enter your password below to continue."})]}),Oi(xo,{children:[nt(Vo,{value:c,onChange:C=>u(C.target.value),onBlur:()=>s(!0),placeholder:"confirm your password",type:i?"password":"text"}),nt(Sr,{style:{right:"0.75rem"},children:i?nt(_r,{onClick:()=>a(!1)}):nt(kr,{onClick:()=>a(!0)})})]}),nt(Ni,{"aria-hidden":!l||y,error:!0,children:"Passwords do not match"})]}),nt(Po,{onClick:r,loading:t,disabled:!y,hideAnimations:e,children:"Continue"}),nt(K,{}),nt(G,{protectedByPrivy:!0})]})};import{ExclamationTriangleIcon as ng}from"@heroicons/react/24/outline";import{useState as ig}from"react";import ag from"styled-components";import Di from"styled-components";import{jsx as vn,jsxs as rg}from"react/jsx-runtime";var Zd=({className:e,checked:t,color:o="var(--privy-color-accent)",...r})=>vn("label",{children:rg(tg,{className:e,children:[vn(ep,{checked:t,...r}),vn(og,{color:o,checked:t,children:vn(Xd,{viewBox:"0 0 24 24",children:vn("polyline",{points:"20 6 9 17 4 12"})})})]})}),tg=Di.div`
1023
+ `;import{Fragment as eg,jsx as nt,jsxs as Oi}from"react/jsx-runtime";var Zd=({buttonHideAnimations:e,buttonLoading:t,password:o,onSubmit:r,onBack:n})=>{let[i,a]=Rs(!0),[l,s]=Rs(!1),[c,u]=Rs(""),y=o===c;return Xy(()=>{c&&!l&&s(!0)},[c]),Oi(eg,{children:[nt(T,{title:"Confirm Password",closeable:!1,backFn:n}),nt(j,{}),Oi(Eo,{children:[Oi(To,{children:[nt(Zy,{height:48,width:48,stroke:"var(--privy-color-background)",fill:"var(--privy-color-accent)"}),nt("h3",{style:{color:"var(--privy-color-foreground)"},children:"Confirm your password"}),nt("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Please re-enter your password below to continue."})]}),Oi(xo,{children:[nt($o,{value:c,onChange:C=>u(C.target.value),onBlur:()=>s(!0),placeholder:"confirm your password",type:i?"password":"text"}),nt(_r,{style:{right:"0.75rem"},children:i?nt(kr,{onClick:()=>a(!1)}):nt(Ar,{onClick:()=>a(!0)})})]}),nt(Ni,{"aria-hidden":!l||y,error:!0,children:"Passwords do not match"})]}),nt(Po,{onClick:r,loading:t,disabled:!y,hideAnimations:e,children:"Continue"}),nt(K,{}),nt(G,{protectedByPrivy:!0})]})};import{ExclamationTriangleIcon as ng}from"@heroicons/react/24/outline";import{useState as ig}from"react";import ag from"styled-components";import Di from"styled-components";import{jsx as vn,jsxs as rg}from"react/jsx-runtime";var Xd=({className:e,checked:t,color:o="var(--privy-color-accent)",...r})=>vn("label",{children:rg(tg,{className:e,children:[vn(tp,{checked:t,...r}),vn(og,{color:o,checked:t,children:vn(ep,{viewBox:"0 0 24 24",children:vn("polyline",{points:"20 6 9 17 4 12"})})})]})}),tg=Di.div`
1024
1024
  display: inline-block;
1025
1025
  vertical-align: middle;
1026
- `,Xd=Di.svg`
1026
+ `,ep=Di.svg`
1027
1027
  fill: none;
1028
1028
  stroke: white;
1029
1029
  stroke-width: 3px;
1030
- `,ep=Di.input.attrs({type:"checkbox"})`
1030
+ `,tp=Di.input.attrs({type:"checkbox"})`
1031
1031
  border: 0;
1032
1032
  clip: rect(0 0 0 0);
1033
1033
  clippath: inset(50%);
@@ -1053,28 +1053,28 @@ Resources:
1053
1053
  border-width: 1px;
1054
1054
  }
1055
1055
 
1056
- ${ep}:focus + & {
1056
+ ${tp}:focus + & {
1057
1057
  box-shadow: 0 0 0 1px ${e=>e.color};
1058
1058
  }
1059
1059
 
1060
- ${Xd} {
1060
+ ${ep} {
1061
1061
  visibility: ${e=>e.checked?"visible":"hidden"};
1062
1062
  }
1063
- `;import{Fragment as tp,jsx as mt,jsxs as wn}from"react/jsx-runtime";var op=({buttonHideAnimations:e,buttonLoading:t,onSubmit:o,onBack:r,config:n})=>{let[i,a]=ig(!1);return wn(tp,{children:[mt(T,{title:"Confirm Password",closeable:!1,backFn:r}),mt(j,{}),wn(Eo,{children:[wn(To,{children:[mt(ng,{height:48,width:48,stroke:"var(--privy-color-background)",fill:"var(--privy-color-error)"}),mt("h3",{style:{color:"var(--privy-color-foreground)"},children:"Confirm you have saved"}),mt("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Losing access to your password means you will lose access to your account."})]}),mt(yn,{children:wn(gn,{style:{color:"var(--privy-color-error)",cursor:"pointer"},onClick:l=>{l.preventDefault(),a(s=>!s)},children:[mt(Zd,{color:"var(--privy-color-error)",checked:i}),mt(tp,{children:"I understand losing my password means losing my account."})]})})]}),wn(sg,{children:[n.initiatedBy==="user"&&mt(Yt,{onClick:n.onCancel,disabled:t,children:"Cancel"}),mt(Po,{onClick:o,loading:t,hideAnimations:e,disabled:!i,children:"Set Password"})]}),mt(K,{}),mt(G,{protectedByPrivy:!0})]})},sg=ag.div`
1063
+ `;import{Fragment as op,jsx as mt,jsxs as wn}from"react/jsx-runtime";var rp=({buttonHideAnimations:e,buttonLoading:t,onSubmit:o,onBack:r,config:n})=>{let[i,a]=ig(!1);return wn(op,{children:[mt(T,{title:"Confirm Password",closeable:!1,backFn:r}),mt(j,{}),wn(Eo,{children:[wn(To,{children:[mt(ng,{height:48,width:48,stroke:"var(--privy-color-background)",fill:"var(--privy-color-error)"}),mt("h3",{style:{color:"var(--privy-color-foreground)"},children:"Confirm you have saved"}),mt("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Losing access to your password means you will lose access to your account."})]}),mt(yn,{children:wn(gn,{style:{color:"var(--privy-color-error)",cursor:"pointer"},onClick:l=>{l.preventDefault(),a(s=>!s)},children:[mt(Xd,{color:"var(--privy-color-error)",checked:i}),mt(op,{children:"I understand losing my password means losing my account."})]})})]}),wn(sg,{children:[n.initiatedBy==="user"&&mt(Yt,{onClick:n.onCancel,disabled:t,children:"Cancel"}),mt(Po,{onClick:o,loading:t,hideAnimations:e,disabled:!i,children:"Set Password"})]}),mt(K,{}),mt(G,{protectedByPrivy:!0})]})},sg=ag.div`
1064
1064
  display: flex;
1065
1065
  gap: 10px;
1066
- `;import{KeyIcon as Pg}from"@heroicons/react/24/outline";import{CheckCircleIcon as cp}from"@heroicons/react/24/solid";import{useState as dp,useMemo as Is,useEffect as xg}from"react";import pp from"styled-components";import lg from"fast-password-entropy";import*as rp from"secure-password-utilities";import{DEFAULT_WORDLIST as cg}from"secure-password-utilities/wordlists";var dg=95,pg=8,ug=3,mg=.3,fg=/[a-z]/,hg=/[A-Z]/,yg=/[0-9]/,gg="a-zA-Z0-9",np="!@#$%^&*()\\-_+.",ip=`${gg}${np}`,vg=new RegExp(`[${np}]`),wg=new RegExp(`[${ip}]`),ap=new RegExp(`^[${ip}]{6,}$`),sp=(e="")=>{let t=e.split("").filter(o=>!wg.test(o)).map(o=>o.replace(" ","SPACE"));return[...new Set(t)]},Ui=()=>rp.generatePassphrase(4,cg);function Cg(e){return e>.9?"Strong":e>.5?"Medium":"Weak"}function bg(e){if(e.length<pg)return 0;let t=0;fg.test(e)&&(t+=1),hg.test(e)&&(t+=1),yg.test(e)&&(t+=1),vg.test(e)&&(t+=1);let o=t/ug;return Math.max(0,Math.min(1,o))}function Eg(e=""){let t=bg(e),o=lg(e)/dg;return(t*mg+o)/2}function lp(e=""){let t=Eg(e);return{value:t,label:Cg(t)}}import{Fragment as _g,jsx as Ee,jsxs as Xt}from"react/jsx-runtime";var up=({buttonHideAnimations:e,buttonLoading:t,password:o="",config:r,onSubmit:n,onClose:i,onPasswordChange:a,onPasswordGenerate:l})=>{let[s,c]=dp(!1),[u,y]=dp(!1);xg(()=>{o&&!u&&y(!0)},[o]);let C=Is(()=>u?(o?.length||0)<6?"Password must be at least 6 characters":ap.test(o||"")?null:`Invalid characters used ( ${sp(o).join(" ")} )`:null,[o,u]),m=Is(()=>C?{value:0,label:"Weak"}:lp(o),[o,C]),P=Is(()=>!!(!o?.length||C),[C,o]);return Xt(_g,{children:[Ee(T,{onClose:i,title:"Secure your account",closeable:r.initiatedBy==="user"}),Ee(j,{}),Xt(Eo,{children:[Xt(To,{children:[Ee(Pg,{height:48,width:48,stroke:"var(--privy-color-accent)"}),Ee("h3",{style:{color:"var(--privy-color-foreground)"},children:"Set your password"}),Ee("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Select a strong, memorable password to secure your account."})]}),Xt(xo,{children:[Ee(Vo,{value:o,onChange:b=>a(b.target.value),placeholder:"enter or generate a strong password",type:s?"password":"text"}),Xt(Sr,{style:{width:"3.5rem"},children:[s?Ee(_r,{onClick:()=>c(!1)}):Ee(kr,{onClick:()=>c(!0)}),Ee(Yd,{onClick:l})]})]}),Ee(Jd,{value:m.value===0?.01:m.value,label:m.label}),Ee(Ni,{error:!!C,children:C||`Password Strength: ${u?m.label:"--"}`}),Xt(Sg,{children:[Ee(Tg,{children:Xt(yn,{children:[Xt(gn,{children:[Ee(cp,{width:24,height:24,fill:"var(--privy-color-accent)"}),"This password is used to secure your account."]}),Xt(gn,{children:[Ee(cp,{width:24,height:24,fill:"var(--privy-color-accent)"}),"You will only be asked to enter it when signing on to a new device."]})]})}),Ee(Po,{onClick:n,loading:t,disabled:P,hideAnimations:e,children:"Continue"})]})]}),Ee(K,{}),Ee(G,{protectedByPrivy:!0})]})},Tg=pp(yn)`
1066
+ `;import{KeyIcon as Pg}from"@heroicons/react/24/outline";import{CheckCircleIcon as dp}from"@heroicons/react/24/solid";import{useState as pp,useMemo as Is,useEffect as xg}from"react";import up from"styled-components";import lg from"fast-password-entropy";import*as np from"secure-password-utilities";import{DEFAULT_WORDLIST as cg}from"secure-password-utilities/wordlists";var dg=95,pg=8,ug=3,mg=.3,fg=/[a-z]/,hg=/[A-Z]/,yg=/[0-9]/,gg="a-zA-Z0-9",ip="!@#$%^&*()\\-_+.",ap=`${gg}${ip}`,vg=new RegExp(`[${ip}]`),wg=new RegExp(`[${ap}]`),sp=new RegExp(`^[${ap}]{6,}$`),lp=(e="")=>{let t=e.split("").filter(o=>!wg.test(o)).map(o=>o.replace(" ","SPACE"));return[...new Set(t)]},Ui=()=>np.generatePassphrase(4,cg);function Cg(e){return e>.9?"Strong":e>.5?"Medium":"Weak"}function bg(e){if(e.length<pg)return 0;let t=0;fg.test(e)&&(t+=1),hg.test(e)&&(t+=1),yg.test(e)&&(t+=1),vg.test(e)&&(t+=1);let o=t/ug;return Math.max(0,Math.min(1,o))}function Eg(e=""){let t=bg(e),o=lg(e)/dg;return(t*mg+o)/2}function cp(e=""){let t=Eg(e);return{value:t,label:Cg(t)}}import{Fragment as _g,jsx as xe,jsxs as Xt}from"react/jsx-runtime";var mp=({buttonHideAnimations:e,buttonLoading:t,password:o="",config:r,onSubmit:n,onClose:i,onPasswordChange:a,onPasswordGenerate:l})=>{let[s,c]=pp(!1),[u,y]=pp(!1);xg(()=>{o&&!u&&y(!0)},[o]);let C=Is(()=>u?(o?.length||0)<6?"Password must be at least 6 characters":sp.test(o||"")?null:`Invalid characters used ( ${lp(o).join(" ")} )`:null,[o,u]),m=Is(()=>C?{value:0,label:"Weak"}:cp(o),[o,C]),P=Is(()=>!!(!o?.length||C),[C,o]);return Xt(_g,{children:[xe(T,{onClose:i,title:"Secure your account",closeable:r.initiatedBy==="user"}),xe(j,{}),Xt(Eo,{children:[Xt(To,{children:[xe(Pg,{height:48,width:48,stroke:"var(--privy-color-accent)"}),xe("h3",{style:{color:"var(--privy-color-foreground)"},children:"Set your password"}),xe("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Select a strong, memorable password to secure your account."})]}),Xt(xo,{children:[xe($o,{value:o,onChange:b=>a(b.target.value),placeholder:"enter or generate a strong password",type:s?"password":"text"}),Xt(_r,{style:{width:"3.5rem"},children:[s?xe(kr,{onClick:()=>c(!1)}):xe(Ar,{onClick:()=>c(!0)}),xe(Jd,{onClick:l})]})]}),xe(Qd,{value:m.value===0?.01:m.value,label:m.label}),xe(Ni,{error:!!C,children:C||`Password Strength: ${u?m.label:"--"}`}),Xt(Sg,{children:[xe(Tg,{children:Xt(yn,{children:[Xt(gn,{children:[xe(dp,{width:24,height:24,fill:"var(--privy-color-accent)"}),"This password is used to secure your account."]}),Xt(gn,{children:[xe(dp,{width:24,height:24,fill:"var(--privy-color-accent)"}),"You will only be asked to enter it when signing on to a new device."]})]})}),xe(Po,{onClick:n,loading:t,disabled:P,hideAnimations:e,children:"Continue"})]})]}),xe(K,{}),xe(G,{protectedByPrivy:!0})]})},Tg=up(yn)`
1067
1067
  flex: 1;
1068
1068
  padding-top: 1rem;
1069
- `,Sg=pp.div`
1069
+ `,Sg=up.div`
1070
1070
  display: flex;
1071
1071
  flex-direction: column;
1072
1072
  height: 100%;
1073
- `;import{ArrowDownTrayIcon as kg,ClipboardDocumentCheckIcon as Ag,DocumentDuplicateIcon as Rg,ExclamationTriangleIcon as Ig}from"@heroicons/react/24/outline";import{useState as Wg,useCallback as mp}from"react";import{Fragment as Ws,jsx as je,jsxs as $o}from"react/jsx-runtime";var fp=({buttonHideAnimations:e,buttonLoading:t,appName:o,password:r,onSubmit:n,onBack:i})=>{let[a,l]=Wg(!1),s=mp(()=>{l(!0),r&&navigator.clipboard.writeText(r)},[r]),c=mp(()=>{let u=document.createElement("a"),y=o.toLowerCase().replace(/[^a-z\s]/g,"").replace(/\s/g,"-"),C=new Blob([Mg(o,r)],{type:"text/plain"}),m=URL.createObjectURL(C);u.href=m,u.target="_blank",u.download=`${y}-privy-wallet-recovery.txt`,document.body.appendChild(u),u.click(),setTimeout(()=>{u.remove(),URL.revokeObjectURL(m)},5e3)},[r]);return $o(Ws,{children:[je(T,{backFn:i,title:"Save Password",closeable:!1}),je(j,{}),$o(Eo,{children:[$o(To,{children:[je(Ig,{height:48,width:48,stroke:"var(--privy-color-background)",fill:"var(--privy-color-accent)"}),je("h3",{style:{color:"var(--privy-color-foreground)"},children:"Save your password"}),je("p",{style:{color:"var(--privy-color-foreground-2)"},children:"For your security, this password cannot be reset if you lose your device. Make sure to secure it to keep your assets safe."})]}),je(xo,{centered:!0,children:je(Kd,{children:r})}),$o("div",{style:{display:"flex",margin:"12px 0",gap:"12px"},children:[je(As,{onClick:s,children:a?$o(Ws,{children:[je(Ag,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Copied"]}):$o(Ws,{children:[je(Rg,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Copy"]})}),$o(As,{onClick:c,children:[je(kg,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Download"]})]})]}),je(Po,{onClick:n,loading:t,hideAnimations:e,children:"Continue"}),je(K,{}),je(G,{protectedByPrivy:!0})]})},Mg=(e,t)=>`Your wallet recovery password for ${e} is
1073
+ `;import{ArrowDownTrayIcon as kg,ClipboardDocumentCheckIcon as Ag,DocumentDuplicateIcon as Rg,ExclamationTriangleIcon as Ig}from"@heroicons/react/24/outline";import{useState as Wg,useCallback as fp}from"react";import{Fragment as Ws,jsx as je,jsxs as jo}from"react/jsx-runtime";var hp=({buttonHideAnimations:e,buttonLoading:t,appName:o,password:r,onSubmit:n,onBack:i})=>{let[a,l]=Wg(!1),s=fp(()=>{l(!0),r&&navigator.clipboard.writeText(r)},[r]),c=fp(()=>{let u=document.createElement("a"),y=o.toLowerCase().replace(/[^a-z\s]/g,"").replace(/\s/g,"-"),C=new Blob([Mg(o,r)],{type:"text/plain"}),m=URL.createObjectURL(C);u.href=m,u.target="_blank",u.download=`${y}-privy-wallet-recovery.txt`,document.body.appendChild(u),u.click(),setTimeout(()=>{u.remove(),URL.revokeObjectURL(m)},5e3)},[r]);return jo(Ws,{children:[je(T,{backFn:i,title:"Save Password",closeable:!1}),je(j,{}),jo(Eo,{children:[jo(To,{children:[je(Ig,{height:48,width:48,stroke:"var(--privy-color-background)",fill:"var(--privy-color-accent)"}),je("h3",{style:{color:"var(--privy-color-foreground)"},children:"Save your password"}),je("p",{style:{color:"var(--privy-color-foreground-2)"},children:"For your security, this password cannot be reset if you lose your device. Make sure to secure it to keep your assets safe."})]}),je(xo,{centered:!0,children:je(Yd,{children:r})}),jo("div",{style:{display:"flex",margin:"12px 0",gap:"12px"},children:[je(As,{onClick:s,children:a?jo(Ws,{children:[je(Ag,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Copied"]}):jo(Ws,{children:[je(Rg,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Copy"]})}),jo(As,{onClick:c,children:[je(kg,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Download"]})]})]}),je(Po,{onClick:n,loading:t,hideAnimations:e,children:"Continue"}),je(K,{}),je(G,{protectedByPrivy:!0})]})},Mg=(e,t)=>`Your wallet recovery password for ${e} is
1074
1074
 
1075
1075
  ${t}
1076
1076
 
1077
- You will need this password to access your ${e} wallet on a new device. Please keep it somewhere safe.`;import{CheckCircleIcon as Lg,XCircleIcon as Ng}from"@heroicons/react/24/outline";import{Fragment as Og,jsx as eo,jsxs as Ms}from"react/jsx-runtime";var hp=({error:e,onClose:t})=>Ms(Og,{children:[eo(T,{closeable:!1}),eo(j,{}),e?Ms(Ct,{children:[eo(Ng,{stroke:"var(--privy-color-error)",width:"64px",height:"64px"}),eo(ye,{title:"Something went wrong",description:e})]}):Ms(Ct,{children:[eo(Lg,{stroke:"var(--privy-color-success)",width:"64px",height:"64px"}),eo(ye,{title:"Success"})]}),eo(F,{onClick:t,children:"Close"}),eo(K,{}),eo(G,{protectedByPrivy:!0})]});import{useReducer as Dg}from"react";var Ug=(e,t)=>{switch(e){case"creating":return t==="back"?e:"saving";case"saving":return t==="back"?"creating":"confirming";case"confirming":return t==="back"?"saving":"finalizing";case"finalizing":return t==="back"?"confirming":"done";default:return e}},yp=()=>{let[e,t]=Dg(Ug,"creating");return{send:t,state:e}};import{jsx as Cn}from"react/jsx-runtime";var Fi=({onSubmit:e,...t})=>{let{send:o,state:r}=yp(),n=gp(async()=>{r==="finalizing"&&await e(),o("next")},[r,o,e]);Fg(()=>{let a;return r==="done"&&t.config.initiatedBy==="automatic"&&(a=setTimeout(()=>t.onClose?.(),Xe)),()=>{a&&clearTimeout(a)}},[r,t.config.initiatedBy,t.onClose]);let i=gp(()=>{o("back")},[o]);return r==="creating"?Cn(up,{...t,onSubmit:n}):r==="saving"?Cn(fp,{...t,onSubmit:n,onBack:i}):r==="confirming"?Cn(Qd,{...t,onSubmit:n,onBack:i}):r==="finalizing"?Cn(op,{...t,onSubmit:n,onBack:i}):r==="done"?Cn(hp,{...t,onSubmit:n}):null};import{Fragment as zg,jsx as Ar,jsxs as wp}from"react/jsx-runtime";var Hg=250,Cp=()=>{let{app:e,navigate:t,data:o,onUserCloseViaDialogOrKeybindRef:r}=S(),[n,i]=bn(""),[a,l]=bn(!1),[s,c]=bn(),[u,y]=bn(null),[C,m]=bn(null),P=Gg(!1),{authenticated:b,getAccessToken:x}=z(),{refreshUser:v,closePrivyModal:R,createAnalyticsEvent:M,isNewUserThisSession:W,initializeWalletProxy:I}=k(),{onSuccess:A,onFailure:L,callAuthOnSuccessOnClose:O}=o.createWallet,B=e?.embeddedWallets.requireUserPasswordOnCreate===!0,D=!!(!n||P.current)&&!B,_=new ct(async()=>ne());vp(()=>{u||I(3e4).then(N=>y(N))},[u]),vp(()=>{if(!b){t("LANDING"),L(new Error("User must be authenticated before creating a Privy wallet"));return}!B&&!a&&!P.current&&(l(!0),_.execute().finally(()=>l(!1)))},[B,b]);let Z=()=>{B&&C&&C?.recoveryMethod!=="user-passcode"?L(new Je("User created a wallet but failed to set a password for it")):C?A(C):L(new Je("User wallet creation failed")),R({shouldCallAuthOnSuccess:O})};r.current=()=>null;let ne=async function(){let N=await x();if(N)try{if(M("embedded_wallet_creation_started"),!await(await I(ir))?.create({accessToken:N,recoveryPassword:s}))throw M("embedded_wallet_creation_failed",{error:"walletProxy did not send a response."}),new Error("Unable to create wallet");let de=await v(),Se=ie(de);if(!Se)throw M("embedded_wallet_creation_failed",{error:"Updated user is missing embedded wallet."}),new Error("Unable to create wallet");m(Se),M("embedded_wallet_creation_completed",{walletAddress:Se.address}),i(""),P.current=!0,B?t("EMBEDDED_WALLET_CREATED_SCREEN"):W?t("EMBEDDED_WALLET_CREATED_SCREEN"):Se&&(A(Se),R({shouldCallAuthOnSuccess:O}))}catch(Oe){if(P.current)return;i("An error has occurred, please try again."),console.warn(Oe)}else i("An error has occured, please login again."),M("embedded_wallet_creation_failed",{error:"Missing access token for user."})},fe=async()=>B?(l(!0),_.execute().then(()=>new Promise(N=>setTimeout(N,Hg))).finally(()=>l(!1))):R({shouldCallAuthOnSuccess:O});return!B&&n?wp(zg,{children:[Ar(T,{closeable:!1}),wp(Ct,{children:[Ar(Bg,{fill:"var(--privy-color-error)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),Ar(ye,{title:"Something went wrong",description:n})]}),Ar(F,{onClick:Z,children:"Close"})]}):D?Ar(Cr,{}):Ar(Fi,{config:{initiatedBy:"automatic"},appName:e?.name||"privy",loading:D||!u,buttonLoading:a,buttonHideAnimations:!C&&a,error:n,password:s||"",onClose:Z,onPasswordChange:c,onPasswordGenerate:()=>c(Ui()),onSubmit:fe})};import{useEffect as Vg,useState as Bi}from"react";import{jsx as $g}from"react/jsx-runtime";var bp=()=>{let[e,t]=Bi(null),[o,r]=Bi(!1),[n,i]=Bi(null),[a,l]=Bi(""),{authenticated:s,getAccessToken:c,user:u}=z(),{walletProxy:y,refreshUser:C,closePrivyModal:m,createAnalyticsEvent:P}=k(),{app:b,navigate:x,data:v,onUserCloseViaDialogOrKeybindRef:R}=S(),{onSuccess:M,onFailure:W}=v.createWallet,I=ie(u),A=e?.recoveryMethod==="user-passcode";Vg(()=>{s||(x("LANDING"),W(new Zn("User must be authenticated before setting a password on a Privy wallet")))},[s]);let L=()=>{if(n){W(n),m({shouldCallAuthOnSuccess:!1});return}if(!A){W(new Je("Exited before password was added to wallet")),m({shouldCallAuthOnSuccess:!1});return}M(e),m({shouldCallAuthOnSuccess:!1})};R.current=L;let O=async()=>{let D=await c();if(D&&I?.address&&a&&y)try{if(P("embedded_wallet_set_password_started",{walletAddress:I.address}),!(await y.setRecoveryPassword({accessToken:D,address:I.address,recoveryPassword:a})).address){i(new Je("Error setting password on privy wallet")),P("embedded_wallet_set_password_failed",{walletAddress:I.address,reason:"error setting password"});return}let Z=await C(),ne=ie(Z);if(!ne){i(new Je("Error setting password on privy wallet")),P("embedded_wallet_set_password_failed",{walletAddress:I.address,reason:"wallet disconnected"});return}t(ne),P("embedded_wallet_set_password_completed",{walletAddress:I.address})}catch(_){console.warn(_),i(_ instanceof Error?_:new Error("Error setting password on privy wallet")),P("embedded_wallet_set_password_failed",{walletAddress:I.address,reason:_})}},B=async()=>{A?(M(e),m({shouldCallAuthOnSuccess:!1})):(r(!0),i(null),await O(),r(!1))};return $g(Fi,{appName:b?.name||"privy",config:{initiatedBy:"user",onCancel:L},error:n?"An error has occurred, please try again.":void 0,buttonLoading:o,buttonHideAnimations:!1,password:a,onPasswordGenerate:()=>l(Ui()),onPasswordChange:l,onSubmit:B,onClose:L})};import{UserCircleIcon as jg}from"@heroicons/react/24/outline";import{LockClosedIcon as qg}from"@heroicons/react/24/solid";import{Fragment as Kg,jsx as to,jsxs as Gi}from"react/jsx-runtime";var Ep=()=>{let{user:e}=z(),{closePrivyModal:t,createAnalyticsEvent:o}=k(),{data:r,setModalData:n,navigate:i,onUserCloseViaDialogOrKeybindRef:a}=S(),{onSuccess:l,onFailure:s}=r.setWalletPassword,c=()=>{s(new Je("Exited before password was added to wallet")),t({shouldCallAuthOnSuccess:!1})};return a.current=c,Gi(Kg,{children:[to(T,{onClose:c}),to(j,{}),Gi(Ct,{children:[Gi(ld,{children:[to(jg,{stroke:"var(--privy-color-accent)",width:"64px",height:"64px"}),to(cd,{style:{width:24,height:24,position:"absolute",bottom:0,right:0},children:to(qg,{width:"12px",height:"12px",fill:"white"})})]}),Gi(ye,{title:"Secure Your Account",children:["Please set a password to secure your account.",to("p",{children:"Losing this password will make your account inaccessible on new devices. You will only be asked for it when you log on to a new device."})]})]}),to(F,{onClick:()=>{let y=ie(e);o("embedded_wallet_set_password_started",{walletAddress:y?.address}),n({createWallet:{onFailure:s,onSuccess:l,callAuthOnSuccessOnClose:!1,addPasswordToExistingWallet:!0}}),i("EMBEDDED_WALLET_PASSWORD_UPDATE_SCREEN")},children:"Add password"}),to(K,{}),to(G,{protectedByPrivy:!0})]})};import{ShieldCheckIcon as Yg}from"@heroicons/react/24/outline";import{useEffect as Jg,useState as Hi}from"react";import zi,{css as Qg}from"styled-components";import{Fragment as o1,jsx as Ue,jsxs as jo}from"react/jsx-runtime";var Pp=()=>{let[e,t]=Hi(!0),{authenticated:o,getAccessToken:r}=z(),{walletProxy:n,closePrivyModal:i,createAnalyticsEvent:a}=k(),{navigate:l,data:s,onUserCloseViaDialogOrKeybindRef:c}=S(),[u,y]=Hi(void 0),[C,m]=Hi(""),[P,b]=Hi(!1),{privyWallet:x,onCompleteNavigateTo:v,onSuccess:R,onFailure:M}=s.recoverWallet,W=(L="User exited before their wallet could be recovered")=>{i({shouldCallAuthOnSuccess:!1}),M(typeof L=="string"?new Je(L):L)};c.current=W,Jg(()=>{if(!o||!x)return W("User must be authenticated and have a Privy wallet before it can be recovered")},[o]);let I=L=>{L&&y(L)};return jo(o1,{children:[Ue(T,{onClose:W}),Ue(j,{}),jo(Xg,{children:[jo(Zg,{children:[Ue(Yg,{height:48,width:48,stroke:"var(--privy-color-accent)"}),Ue("h3",{style:{color:"var(--privy-color-foreground)"},children:"Load your account"}),Ue("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Please provision your account on this new device. To continue, enter your recovery password."})]}),jo("div",{children:[jo(xo,{children:[Ue(Vo,{type:e?"password":"text",onChange:L=>I(L.target.value),disabled:P}),Ue(Sr,{style:{right:"0.75rem"},children:e?Ue(_r,{onClick:()=>t(!1)}):Ue(kr,{onClick:()=>t(!0)})})]}),!!C&&Ue(e1,{children:C})]}),jo("div",{children:[jo(sd,{children:[Ue("h4",{children:"Why is this necessary?"}),Ue("p",{children:"You previously set a password for this wallet. This helps ensure only you can access it"})]}),Ue(t1,{loading:P||!n,disabled:!u,onClick:async()=>{b(!0);let L=await r();if(L&&x&&u!==null)try{a("embedded_wallet_recovery_started",{walletAddress:x.address}),await n?.recover({address:x.address,accessToken:L,recoveryPin:u}),m(""),v?l(v):i({shouldCallAuthOnSuccess:!1}),R?.(x),a("embedded_wallet_recovery_completed",{walletAddress:x.address})}catch(O){Od(O)?m("Invalid recovery password, please try again."):m("An error has occurred, please try again.")}finally{b(!1)}else return W("User must be authenticated and have a Privy wallet before it can be recovered")},warn:!1,hideAnimations:!x&&P,children:"Recover your account"})]})]}),Ue(K,{}),Ue(G,{protectedByPrivy:!0})]})},Zg=zi.div`
1077
+ You will need this password to access your ${e} wallet on a new device. Please keep it somewhere safe.`;import{CheckCircleIcon as Lg,XCircleIcon as Ng}from"@heroicons/react/24/outline";import{Fragment as Og,jsx as eo,jsxs as Ms}from"react/jsx-runtime";var yp=({error:e,onClose:t})=>Ms(Og,{children:[eo(T,{closeable:!1}),eo(j,{}),e?Ms(Ct,{children:[eo(Ng,{stroke:"var(--privy-color-error)",width:"64px",height:"64px"}),eo(ge,{title:"Something went wrong",description:e})]}):Ms(Ct,{children:[eo(Lg,{stroke:"var(--privy-color-success)",width:"64px",height:"64px"}),eo(ge,{title:"Success"})]}),eo(F,{onClick:t,children:"Close"}),eo(K,{}),eo(G,{protectedByPrivy:!0})]});import{useReducer as Dg}from"react";var Ug=(e,t)=>{switch(e){case"creating":return t==="back"?e:"saving";case"saving":return t==="back"?"creating":"confirming";case"confirming":return t==="back"?"saving":"finalizing";case"finalizing":return t==="back"?"confirming":"done";default:return e}},gp=()=>{let[e,t]=Dg(Ug,"creating");return{send:t,state:e}};import{jsx as Cn}from"react/jsx-runtime";var Fi=({onSubmit:e,...t})=>{let{send:o,state:r}=gp(),n=vp(async()=>{r==="finalizing"&&await e(),o("next")},[r,o,e]);Fg(()=>{let a;return r==="done"&&t.config.initiatedBy==="automatic"&&(a=setTimeout(()=>t.onClose?.(),Xe)),()=>{a&&clearTimeout(a)}},[r,t.config.initiatedBy,t.onClose]);let i=vp(()=>{o("back")},[o]);return r==="creating"?Cn(mp,{...t,onSubmit:n}):r==="saving"?Cn(hp,{...t,onSubmit:n,onBack:i}):r==="confirming"?Cn(Zd,{...t,onSubmit:n,onBack:i}):r==="finalizing"?Cn(rp,{...t,onSubmit:n,onBack:i}):r==="done"?Cn(yp,{...t,onSubmit:n}):null};import{Fragment as zg,jsx as Rr,jsxs as Cp}from"react/jsx-runtime";var Hg=250,bp=()=>{let{app:e,navigate:t,data:o,onUserCloseViaDialogOrKeybindRef:r}=S(),[n,i]=bn(""),[a,l]=bn(!1),[s,c]=bn(),[u,y]=bn(null),[C,m]=bn(null),P=Gg(!1),{authenticated:b,getAccessToken:x}=z(),{refreshUser:v,closePrivyModal:R,createAnalyticsEvent:M,isNewUserThisSession:W,initializeWalletProxy:I}=k(),{onSuccess:A,onFailure:L,callAuthOnSuccessOnClose:D}=o.createWallet,B=e?.embeddedWallets.requireUserPasswordOnCreate===!0,U=!!(!n||P.current)&&!B,_=new ct(async()=>ne());wp(()=>{u||I(3e4).then(N=>y(N))},[u]),wp(()=>{if(!b){t("LANDING"),L(new Error("User must be authenticated before creating a Privy wallet"));return}!B&&!a&&!P.current&&(l(!0),_.execute().finally(()=>l(!1)))},[B,b]);let Z=()=>{B&&C&&C?.recoveryMethod!=="user-passcode"?L(new Je("User created a wallet but failed to set a password for it")):C?A(C):L(new Je("User wallet creation failed")),R({shouldCallAuthOnSuccess:D})};r.current=()=>null;let ne=async function(){let N=await x();if(N)try{if(M("embedded_wallet_creation_started"),!await(await I(sr))?.create({accessToken:N,recoveryPassword:s}))throw M("embedded_wallet_creation_failed",{error:"walletProxy did not send a response."}),new Error("Unable to create wallet");let pe=await v(),ke=ie(pe);if(!ke)throw M("embedded_wallet_creation_failed",{error:"Updated user is missing embedded wallet."}),new Error("Unable to create wallet");m(ke),M("embedded_wallet_creation_completed",{walletAddress:ke.address}),i(""),P.current=!0,B?t("EMBEDDED_WALLET_CREATED_SCREEN"):W?t("EMBEDDED_WALLET_CREATED_SCREEN"):ke&&(A(ke),R({shouldCallAuthOnSuccess:D}))}catch(De){if(P.current)return;i("An error has occurred, please try again."),console.warn(De)}else i("An error has occured, please login again."),M("embedded_wallet_creation_failed",{error:"Missing access token for user."})},he=async()=>B?(l(!0),_.execute().then(()=>new Promise(N=>setTimeout(N,Hg))).finally(()=>l(!1))):R({shouldCallAuthOnSuccess:D});return!B&&n?Cp(zg,{children:[Rr(T,{closeable:!1}),Cp(Ct,{children:[Rr(Bg,{fill:"var(--privy-color-error)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),Rr(ge,{title:"Something went wrong",description:n})]}),Rr(F,{onClick:Z,children:"Close"})]}):U?Rr(Er,{}):Rr(Fi,{config:{initiatedBy:"automatic"},appName:e?.name||"privy",loading:U||!u,buttonLoading:a,buttonHideAnimations:!C&&a,error:n,password:s||"",onClose:Z,onPasswordChange:c,onPasswordGenerate:()=>c(Ui()),onSubmit:he})};import{useEffect as Vg,useState as Bi}from"react";import{jsx as $g}from"react/jsx-runtime";var Ep=()=>{let[e,t]=Bi(null),[o,r]=Bi(!1),[n,i]=Bi(null),[a,l]=Bi(""),{authenticated:s,getAccessToken:c,user:u}=z(),{walletProxy:y,refreshUser:C,closePrivyModal:m,createAnalyticsEvent:P}=k(),{app:b,navigate:x,data:v,onUserCloseViaDialogOrKeybindRef:R}=S(),{onSuccess:M,onFailure:W}=v.createWallet,I=ie(u),A=e?.recoveryMethod==="user-passcode";Vg(()=>{s||(x("LANDING"),W(new Zn("User must be authenticated before setting a password on a Privy wallet")))},[s]);let L=()=>{if(n){W(n),m({shouldCallAuthOnSuccess:!1});return}if(!A){W(new Je("Exited before password was added to wallet")),m({shouldCallAuthOnSuccess:!1});return}M(e),m({shouldCallAuthOnSuccess:!1})};R.current=L;let D=async()=>{let U=await c();if(U&&I?.address&&a&&y)try{if(P("embedded_wallet_set_password_started",{walletAddress:I.address}),!(await y.setRecoveryPassword({accessToken:U,address:I.address,recoveryPassword:a})).address){i(new Je("Error setting password on privy wallet")),P("embedded_wallet_set_password_failed",{walletAddress:I.address,reason:"error setting password"});return}let Z=await C(),ne=ie(Z);if(!ne){i(new Je("Error setting password on privy wallet")),P("embedded_wallet_set_password_failed",{walletAddress:I.address,reason:"wallet disconnected"});return}t(ne),P("embedded_wallet_set_password_completed",{walletAddress:I.address})}catch(_){console.warn(_),i(_ instanceof Error?_:new Error("Error setting password on privy wallet")),P("embedded_wallet_set_password_failed",{walletAddress:I.address,reason:_})}},B=async()=>{A?(M(e),m({shouldCallAuthOnSuccess:!1})):(r(!0),i(null),await D(),r(!1))};return $g(Fi,{appName:b?.name||"privy",config:{initiatedBy:"user",onCancel:L},error:n?"An error has occurred, please try again.":void 0,buttonLoading:o,buttonHideAnimations:!1,password:a,onPasswordGenerate:()=>l(Ui()),onPasswordChange:l,onSubmit:B,onClose:L})};import{UserCircleIcon as jg}from"@heroicons/react/24/outline";import{LockClosedIcon as qg}from"@heroicons/react/24/solid";import{Fragment as Kg,jsx as to,jsxs as Gi}from"react/jsx-runtime";var Pp=()=>{let{user:e}=z(),{closePrivyModal:t,createAnalyticsEvent:o}=k(),{data:r,setModalData:n,navigate:i,onUserCloseViaDialogOrKeybindRef:a}=S(),{onSuccess:l,onFailure:s}=r.setWalletPassword,c=()=>{s(new Je("Exited before password was added to wallet")),t({shouldCallAuthOnSuccess:!1})};return a.current=c,Gi(Kg,{children:[to(T,{onClose:c}),to(j,{}),Gi(Ct,{children:[Gi(cd,{children:[to(jg,{stroke:"var(--privy-color-accent)",width:"64px",height:"64px"}),to(dd,{style:{width:24,height:24,position:"absolute",bottom:0,right:0},children:to(qg,{width:"12px",height:"12px",fill:"white"})})]}),Gi(ge,{title:"Secure Your Account",children:["Please set a password to secure your account.",to("p",{children:"Losing this password will make your account inaccessible on new devices. You will only be asked for it when you log on to a new device."})]})]}),to(F,{onClick:()=>{let y=ie(e);o("embedded_wallet_set_password_started",{walletAddress:y?.address}),n({createWallet:{onFailure:s,onSuccess:l,callAuthOnSuccessOnClose:!1,addPasswordToExistingWallet:!0}}),i("EMBEDDED_WALLET_PASSWORD_UPDATE_SCREEN")},children:"Add password"}),to(K,{}),to(G,{protectedByPrivy:!0})]})};import{ShieldCheckIcon as Yg}from"@heroicons/react/24/outline";import{useEffect as Jg,useState as Hi}from"react";import zi,{css as Qg}from"styled-components";import{Fragment as o1,jsx as Fe,jsxs as qo}from"react/jsx-runtime";var xp=()=>{let[e,t]=Hi(!0),{authenticated:o,getAccessToken:r}=z(),{walletProxy:n,closePrivyModal:i,createAnalyticsEvent:a}=k(),{navigate:l,data:s,onUserCloseViaDialogOrKeybindRef:c}=S(),[u,y]=Hi(void 0),[C,m]=Hi(""),[P,b]=Hi(!1),{privyWallet:x,onCompleteNavigateTo:v,onSuccess:R,onFailure:M}=s.recoverWallet,W=(L="User exited before their wallet could be recovered")=>{i({shouldCallAuthOnSuccess:!1}),M(typeof L=="string"?new Je(L):L)};c.current=W,Jg(()=>{if(!o||!x)return W("User must be authenticated and have a Privy wallet before it can be recovered")},[o]);let I=L=>{L&&y(L)};return qo(o1,{children:[Fe(T,{onClose:W}),Fe(j,{}),qo(Xg,{children:[qo(Zg,{children:[Fe(Yg,{height:48,width:48,stroke:"var(--privy-color-accent)"}),Fe("h3",{style:{color:"var(--privy-color-foreground)"},children:"Load your account"}),Fe("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Please provision your account on this new device. To continue, enter your recovery password."})]}),qo("div",{children:[qo(xo,{children:[Fe($o,{type:e?"password":"text",onChange:L=>I(L.target.value),disabled:P}),Fe(_r,{style:{right:"0.75rem"},children:e?Fe(kr,{onClick:()=>t(!1)}):Fe(Ar,{onClick:()=>t(!0)})})]}),!!C&&Fe(e1,{children:C})]}),qo("div",{children:[qo(ld,{children:[Fe("h4",{children:"Why is this necessary?"}),Fe("p",{children:"You previously set a password for this wallet. This helps ensure only you can access it"})]}),Fe(t1,{loading:P||!n,disabled:!u,onClick:async()=>{b(!0);let L=await r();if(L&&x&&u!==null)try{a("embedded_wallet_recovery_started",{walletAddress:x.address}),await n?.recover({address:x.address,accessToken:L,recoveryPin:u}),m(""),v?l(v):i({shouldCallAuthOnSuccess:!1}),R?.(x),a("embedded_wallet_recovery_completed",{walletAddress:x.address})}catch(D){Dd(D)?m("Invalid recovery password, please try again."):m("An error has occurred, please try again.")}finally{b(!1)}else return W("User must be authenticated and have a Privy wallet before it can be recovered")},warn:!1,hideAnimations:!x&&P,children:"Recover your account"})]})]}),Fe(K,{}),Fe(G,{protectedByPrivy:!0})]})},Zg=zi.div`
1078
1078
  display: flex;
1079
1079
  flex-direction: column;
1080
1080
  align-items: center;
@@ -1115,7 +1115,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1115
1115
  transition: none;
1116
1116
  }
1117
1117
  `}
1118
- `;import{EyeSlashIcon as n1,LinkIcon as i1,ClockIcon as a1}from"@heroicons/react/24/outline";import Dt from"styled-components";import{jsx as Ls,jsxs as r1}from"react/jsx-runtime";var Vi=({size:e=61,...t})=>Ls("svg",{width:e,height:e,viewBox:"0 0 61 61",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:r1("g",{id:"moonpay_symbol_wht 2",children:[Ls("rect",{x:"1.3374",y:"1",width:"59",height:"59",rx:"11.5",fill:"#7715F5"}),Ls("path",{id:"Vector",d:"M43.8884 23.3258C45.0203 23.3258 46.1268 22.9901 47.068 22.3613C48.0091 21.7324 48.7427 20.8386 49.1759 19.7928C49.6091 18.747 49.7224 17.5962 49.5016 16.4861C49.2807 15.3759 48.7357 14.3561 47.9353 13.5557C47.1349 12.7553 46.1151 12.2102 45.0049 11.9893C43.8947 11.7685 42.7439 11.8819 41.6982 12.3151C40.6524 12.7482 39.7585 13.4818 39.1297 14.423C38.5008 15.3641 38.1651 16.4707 38.1651 17.6026C38.165 18.3542 38.3131 19.0985 38.6007 19.7929C38.8883 20.4873 39.3098 21.1182 39.8413 21.6496C40.3728 22.1811 41.0037 22.6027 41.6981 22.8903C42.3925 23.1778 43.1367 23.3259 43.8884 23.3258ZM26.3395 49.1017C23.5804 49.1017 20.8832 48.2836 18.5891 46.7507C16.295 45.2178 14.5069 43.039 13.4511 40.49C12.3952 37.9409 12.1189 35.1359 12.6572 32.4298C13.1955 29.7237 14.5241 27.238 16.4751 25.287C18.4262 23.336 20.9118 22.0074 23.6179 21.4691C26.324 20.9308 29.129 21.2071 31.6781 22.2629C34.2272 23.3189 36.406 25.1069 37.9389 27.401C39.4717 29.6952 40.2899 32.3923 40.2899 35.1514C40.2899 36.9835 39.9291 38.7975 39.2281 40.49C38.527 42.1826 37.4994 43.7205 36.204 45.0159C34.9086 46.3113 33.3707 47.3389 31.6781 48.04C29.9856 48.741 28.1715 49.1018 26.3395 49.1017Z",fill:"white"})]})});import{Fragment as xp,jsx as Fe,jsxs as qo}from"react/jsx-runtime";var Ns=({title:e,desc:t,icon:o})=>qo(u1,{children:[Fe(f1,{children:o}),qo(m1,{children:[Fe(d1,{children:e}),Fe(p1,{children:t})]})]}),Tp=({app:e,signedUrl:t,onContinue:o})=>qo(xp,{children:[qo(l1,{children:[Fe(Vi,{size:"3.75rem"}),qo(c1,{children:[e?.name," uses ",Fe("span",{style:{fontWeight:"bold"},children:"Moonpay"})," to fund your account"]}),qo(h1,{children:[Fe(Ns,{icon:Fe(i1,{width:"1rem"}),title:"Purchase assets to fund your account",desc:qo(xp,{children:["Connect a payment method (",Fe("strong",{children:"debit card recommended"}),") to purchase digital assets."]})}),Fe(Ns,{icon:Fe(a1,{width:"1rem"}),title:"Compliance takes time",desc:"Funding a new account may take a few hours. You'll be good to go thereafter."}),Fe(Ns,{icon:Fe(n1,{width:"1rem"}),title:"Your data belongs to you",desc:"MoonPay does not sell your data and will only use it with your permission."})]}),Fe(y1,{className:"mobile-only"})]}),Fe(s1,{children:"By clicking continue, you will be taken to MoonPay in a new tab."}),Fe(Pi,{href:t,target:"_blank",rel:"noopener noreferrer",onClick:o,children:"Continue to Moonpay"})]}),s1=Dt.span`
1118
+ `;import{EyeSlashIcon as n1,LinkIcon as i1,ClockIcon as a1}from"@heroicons/react/24/outline";import Dt from"styled-components";import{jsx as Ls,jsxs as r1}from"react/jsx-runtime";var Vi=({size:e=61,...t})=>Ls("svg",{width:e,height:e,viewBox:"0 0 61 61",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:r1("g",{id:"moonpay_symbol_wht 2",children:[Ls("rect",{x:"1.3374",y:"1",width:"59",height:"59",rx:"11.5",fill:"#7715F5"}),Ls("path",{id:"Vector",d:"M43.8884 23.3258C45.0203 23.3258 46.1268 22.9901 47.068 22.3613C48.0091 21.7324 48.7427 20.8386 49.1759 19.7928C49.6091 18.747 49.7224 17.5962 49.5016 16.4861C49.2807 15.3759 48.7357 14.3561 47.9353 13.5557C47.1349 12.7553 46.1151 12.2102 45.0049 11.9893C43.8947 11.7685 42.7439 11.8819 41.6982 12.3151C40.6524 12.7482 39.7585 13.4818 39.1297 14.423C38.5008 15.3641 38.1651 16.4707 38.1651 17.6026C38.165 18.3542 38.3131 19.0985 38.6007 19.7929C38.8883 20.4873 39.3098 21.1182 39.8413 21.6496C40.3728 22.1811 41.0037 22.6027 41.6981 22.8903C42.3925 23.1778 43.1367 23.3259 43.8884 23.3258ZM26.3395 49.1017C23.5804 49.1017 20.8832 48.2836 18.5891 46.7507C16.295 45.2178 14.5069 43.039 13.4511 40.49C12.3952 37.9409 12.1189 35.1359 12.6572 32.4298C13.1955 29.7237 14.5241 27.238 16.4751 25.287C18.4262 23.336 20.9118 22.0074 23.6179 21.4691C26.324 20.9308 29.129 21.2071 31.6781 22.2629C34.2272 23.3189 36.406 25.1069 37.9389 27.401C39.4717 29.6952 40.2899 32.3923 40.2899 35.1514C40.2899 36.9835 39.9291 38.7975 39.2281 40.49C38.527 42.1826 37.4994 43.7205 36.204 45.0159C34.9086 46.3113 33.3707 47.3389 31.6781 48.04C29.9856 48.741 28.1715 49.1018 26.3395 49.1017Z",fill:"white"})]})});import{Fragment as Tp,jsx as Be,jsxs as Ko}from"react/jsx-runtime";var Ns=({title:e,desc:t,icon:o})=>Ko(u1,{children:[Be(f1,{children:o}),Ko(m1,{children:[Be(d1,{children:e}),Be(p1,{children:t})]})]}),Sp=({app:e,signedUrl:t,onContinue:o})=>Ko(Tp,{children:[Ko(l1,{children:[Be(Vi,{size:"3.75rem"}),Ko(c1,{children:[e?.name," uses ",Be("span",{style:{fontWeight:"bold"},children:"Moonpay"})," to fund your account"]}),Ko(h1,{children:[Be(Ns,{icon:Be(i1,{width:"1rem"}),title:"Purchase assets to fund your account",desc:Ko(Tp,{children:["Connect a payment method (",Be("strong",{children:"debit card recommended"}),") to purchase digital assets."]})}),Be(Ns,{icon:Be(a1,{width:"1rem"}),title:"Compliance takes time",desc:"Funding a new account may take a few hours. You'll be good to go thereafter."}),Be(Ns,{icon:Be(n1,{width:"1rem"}),title:"Your data belongs to you",desc:"MoonPay does not sell your data and will only use it with your permission."})]}),Be(y1,{className:"mobile-only"})]}),Be(s1,{children:"By clicking continue, you will be taken to MoonPay in a new tab."}),Be(Pi,{href:t,target:"_blank",rel:"noopener noreferrer",onClick:o,children:"Continue to Moonpay"})]}),s1=Dt.span`
1119
1119
  display: inline-block;
1120
1120
  color: var(--privy-color-foreground-3);
1121
1121
  text-align: center;
@@ -1171,14 +1171,14 @@ You will need this password to access your ${e} wallet on a new device. Please k
1171
1171
  margin: 0 0.5rem;
1172
1172
  `,y1=Dt.div`
1173
1173
  margin: 30px 0;
1174
- `;import{ofetch as g1}from"ofetch";import{useEffect as v1,useRef as w1,useState as C1}from"react";var $i="moonpay",Sp="sdk_fiat_on_ramp_completed_with_status";async function _p(e,t,o,r,n=!1){let i=o.currencyCode?{}:{defaultCurrencyCode:"ETH_ETHEREUM"},a=o.uiConfig||{accentColor:r.accent,theme:r.colorScheme};return e.signMoonpayOnRampUrl({address:t,useSandbox:n,config:{...o,...i,...a}})}async function b1(e,t){let o=t?cc:lc,r=t?pc:dc;return g1(`${o}/transactions/ext/${e}`,{query:{apiKey:r}})}function kp(e,t=!1){let[o,r]=C1(null),{createAnalyticsEvent:n}=k(),i=w1(0);return v1(()=>{let a=setInterval(async()=>{if(e)try{let[l]=await b1(e,t),s=l.status==="waitingAuthorization"&&l.paymentMethod==="credit_debit_card"?"pending":l.status;r(s),["failed","completed","awaitingAuthorization"].includes(s)&&(n(Sp,{status:s,provider:$i,paymentMethod:l.paymentMethod,cardPaymentType:l.cardPaymentType,currency:l.currency?.code,baseCurrencyAmount:l.baseCurrencyAmount,quoteCurrencyAmount:l.quoteCurrencyAmount,feeAmount:l.feeAmount,extraFeeAmount:l.extraFeeAmount,networkFeeAmount:l.networkFeeAmount}),clearInterval(a))}catch(l){l.response?.status!==404&&(i.current+=1),i.current>=3&&(r("serviceFailure"),n(Sp,{status:"serviceFailure",provider:$i}),clearInterval(a))}},3e3);return()=>clearInterval(a)},[e,i]),o}import{Fragment as E1,jsx as Os,jsxs as P1}from"react/jsx-runtime";var Ap=()=>{let{app:e,data:t,navigate:o}=S(),{createAnalyticsEvent:r}=k(),{signedUrl:n}=t.fiatOnRampPrompt;return!e||!n?null:P1(E1,{children:[Os(T,{title:"Fund account"},"header"),Os(Tp,{app:e,signedUrl:n,onContinue:()=>{r("sdk_fiat_on_ramp_started",{provider:$i}),o("FIAT_ON_RAMP_STATUS_SCREEN")}}),Os(G,{protectedByPrivy:!0})]})};import{ArrowsRightLeftIcon as x1,CheckCircleIcon as T1,XCircleIcon as S1}from"@heroicons/react/24/solid";import{useMemo as _1}from"react";import Rp from"styled-components";import{Fragment as Ds,jsx as Be,jsxs as Ko}from"react/jsx-runtime";var Ip=()=>{let{app:e,data:t}=S(),{closePrivyModal:o}=k(),{externalTransactionId:r}=t?.fiatOnRampStatus,n=kp(r||null,e.fiatOnRamp.useSandbox);return Ko(Ds,{children:[Be(T,{title:"Fund account"},"header"),Be(A1,{status:n,onClickCta:o}),Be(G,{protectedByPrivy:!0})]})},k1=e=>{switch(e){case"completed":return{title:"You've funded your account!",body:"It may take a few minutes for the assets to appear.",cta:"Continue"};case"failed":return{title:"Something went wrong!",body:Ko(Ds,{children:[Ko("p",{children:["It looks like there was an issue with your payment. Please contact"," ",Be("a",{href:"https://support.moonpay.com/hc/en-gb",target:"_blank",rel:"noreferrer noopener",style:{textDecoration:"underline"},children:"Moonpay support"})," ","for assistance."]}),Be("p",{style:{fontStyle:"italic"},children:"Note that debit cards typically work better than credit cards here."})]}),cta:"Done"};case"serviceFailure":return{title:"Something went wrong!",body:"MoonPay ran into an error when processing your transaction. Try again?",cta:"Done"};case"waitingAuthorization":return{title:"Processing payment",body:"This may take up to a few hours. You will receive an email when the purchase is complete.",cta:"Continue"};default:return{title:"In Progress",body:"Go back to MoonPay to finish funding your account.",cta:""}}},A1=({status:e,onClickCta:t})=>{let{title:o,body:r,cta:n}=_1(()=>k1(e),[e]);return Ko(Ds,{children:[Ko(L1,{children:[Be(W1,{status:e}),Ko(go,{children:[Be("h3",{children:o}),Be(M1,{children:r})]})]}),n&&Be(F,{onClick:t,children:n})]})},R1=e=>e?{completed:"var(--privy-color-success)",failed:"var(--privy-color-error)",serviceFailure:"var(--privy-color-error)",waitingAuthorization:"var(--privy-color-accent)",pending:"var(--privy-color-foreground-4)"}[e]:"var(--privy-color-foreground-4)",I1=e=>{switch(e){case"serviceFailure":case"failed":return S1;case"completed":return T1;case"waitingAuthorization":return()=>Be(x1,{width:"3rem",height:"3rem",style:{backgroundColor:"var(--privy-color-foreground-4)",color:"var(--privy-color-background)",borderRadius:"100%",padding:"0.5rem",margin:"0.5rem"}});default:return}},W1=({status:e})=>{if(!e||e==="pending"){let r="var(--privy-color-foreground-4)";return Ko("div",{style:{position:"relative"},children:[Be(Lt,{color:r,style:{position:"absolute"}}),Be(as,{color:r}),Be(Vi,{size:"3rem",style:{position:"absolute",top:"1rem",left:"1rem"}})]})}let t=I1(e),o=R1(e);return Be("div",{style:{borderColor:o,display:"flex",justifyContent:"center",alignItems:"center",borderRadius:"100%",borderWidth:2,padding:"0.5rem",marginBottom:"0.5rem"},children:t&&Be(t,{width:"4rem",height:"4rem",color:o})})},M1=Rp.p`
1174
+ `;import{ofetch as g1}from"ofetch";import{useEffect as v1,useRef as w1,useState as C1}from"react";var $i="moonpay",_p="sdk_fiat_on_ramp_completed_with_status";async function kp(e,t,o,r,n=!1){let i=o.currencyCode?{}:{defaultCurrencyCode:"ETH_ETHEREUM"},a=o.uiConfig||{accentColor:r.accent,theme:r.colorScheme};return e.signMoonpayOnRampUrl({address:t,useSandbox:n,config:{...o,...i,...a}})}async function b1(e,t){let o=t?dc:cc,r=t?uc:pc;return g1(`${o}/transactions/ext/${e}`,{query:{apiKey:r}})}function Ap(e,t=!1){let[o,r]=C1(null),{createAnalyticsEvent:n}=k(),i=w1(0);return v1(()=>{let a=setInterval(async()=>{if(e)try{let[l]=await b1(e,t),s=l.status==="waitingAuthorization"&&l.paymentMethod==="credit_debit_card"?"pending":l.status;r(s),["failed","completed","awaitingAuthorization"].includes(s)&&(n(_p,{status:s,provider:$i,paymentMethod:l.paymentMethod,cardPaymentType:l.cardPaymentType,currency:l.currency?.code,baseCurrencyAmount:l.baseCurrencyAmount,quoteCurrencyAmount:l.quoteCurrencyAmount,feeAmount:l.feeAmount,extraFeeAmount:l.extraFeeAmount,networkFeeAmount:l.networkFeeAmount}),clearInterval(a))}catch(l){l.response?.status!==404&&(i.current+=1),i.current>=3&&(r("serviceFailure"),n(_p,{status:"serviceFailure",provider:$i}),clearInterval(a))}},3e3);return()=>clearInterval(a)},[e,i]),o}import{Fragment as E1,jsx as Os,jsxs as P1}from"react/jsx-runtime";var Rp=()=>{let{app:e,data:t,navigate:o}=S(),{createAnalyticsEvent:r}=k(),{signedUrl:n}=t.fiatOnRampPrompt;return!e||!n?null:P1(E1,{children:[Os(T,{title:"Fund account"},"header"),Os(Sp,{app:e,signedUrl:n,onContinue:()=>{r("sdk_fiat_on_ramp_started",{provider:$i}),o("FIAT_ON_RAMP_STATUS_SCREEN")}}),Os(G,{protectedByPrivy:!0})]})};import{ArrowsRightLeftIcon as x1,CheckCircleIcon as T1,XCircleIcon as S1}from"@heroicons/react/24/solid";import{useMemo as _1}from"react";import Ip from"styled-components";import{Fragment as Ds,jsx as Ge,jsxs as Yo}from"react/jsx-runtime";var Wp=()=>{let{app:e,data:t}=S(),{closePrivyModal:o}=k(),{externalTransactionId:r}=t?.fiatOnRampStatus,n=Ap(r||null,e.fiatOnRamp.useSandbox);return Yo(Ds,{children:[Ge(T,{title:"Fund account"},"header"),Ge(A1,{status:n,onClickCta:o}),Ge(G,{protectedByPrivy:!0})]})},k1=e=>{switch(e){case"completed":return{title:"You've funded your account!",body:"It may take a few minutes for the assets to appear.",cta:"Continue"};case"failed":return{title:"Something went wrong!",body:Yo(Ds,{children:[Yo("p",{children:["It looks like there was an issue with your payment. Please contact"," ",Ge("a",{href:"https://support.moonpay.com/hc/en-gb",target:"_blank",rel:"noreferrer noopener",style:{textDecoration:"underline"},children:"Moonpay support"})," ","for assistance."]}),Ge("p",{style:{fontStyle:"italic"},children:"Note that debit cards typically work better than credit cards here."})]}),cta:"Done"};case"serviceFailure":return{title:"Something went wrong!",body:"MoonPay ran into an error when processing your transaction. Try again?",cta:"Done"};case"waitingAuthorization":return{title:"Processing payment",body:"This may take up to a few hours. You will receive an email when the purchase is complete.",cta:"Continue"};default:return{title:"In Progress",body:"Go back to MoonPay to finish funding your account.",cta:""}}},A1=({status:e,onClickCta:t})=>{let{title:o,body:r,cta:n}=_1(()=>k1(e),[e]);return Yo(Ds,{children:[Yo(L1,{children:[Ge(W1,{status:e}),Yo(go,{children:[Ge("h3",{children:o}),Ge(M1,{children:r})]})]}),n&&Ge(F,{onClick:t,children:n})]})},R1=e=>e?{completed:"var(--privy-color-success)",failed:"var(--privy-color-error)",serviceFailure:"var(--privy-color-error)",waitingAuthorization:"var(--privy-color-accent)",pending:"var(--privy-color-foreground-4)"}[e]:"var(--privy-color-foreground-4)",I1=e=>{switch(e){case"serviceFailure":case"failed":return S1;case"completed":return T1;case"waitingAuthorization":return()=>Ge(x1,{width:"3rem",height:"3rem",style:{backgroundColor:"var(--privy-color-foreground-4)",color:"var(--privy-color-background)",borderRadius:"100%",padding:"0.5rem",margin:"0.5rem"}});default:return}},W1=({status:e})=>{if(!e||e==="pending"){let r="var(--privy-color-foreground-4)";return Yo("div",{style:{position:"relative"},children:[Ge(Lt,{color:r,style:{position:"absolute"}}),Ge(as,{color:r}),Ge(Vi,{size:"3rem",style:{position:"absolute",top:"1rem",left:"1rem"}})]})}let t=I1(e),o=R1(e);return Ge("div",{style:{borderColor:o,display:"flex",justifyContent:"center",alignItems:"center",borderRadius:"100%",borderWidth:2,padding:"0.5rem",marginBottom:"0.5rem"},children:t&&Ge(t,{width:"4rem",height:"4rem",color:o})})},M1=Ip.p`
1175
1175
  font-size: 1rem;
1176
1176
  color: var(--privy-color-foreground-3);
1177
1177
  margin-bottom: 1rem;
1178
1178
  display: flex;
1179
1179
  flex-direction: column;
1180
1180
  gap: 1rem;
1181
- `,L1=Rp.div`
1181
+ `,L1=Ip.div`
1182
1182
  display: flex;
1183
1183
  flex-direction: column;
1184
1184
  align-items: center;
@@ -1186,7 +1186,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1186
1186
  margin-left: 1.75rem;
1187
1187
  margin-right: 1.75rem;
1188
1188
  padding: 2rem 0;
1189
- `;import*as Np from"react-device-detect";import U1 from"styled-components";import Us from"styled-components";import{jsx as Wp}from"react/jsx-runtime";var Mp=({style:e,...t})=>Wp("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",width:"17",height:"17",viewBox:"0 0 17 17",style:{height:"1.25rem",width:"1.25rem",...e},...t,children:Wp("path",{strokeLinecap:"round",strokeLinejoin:"round",fillRule:"evenodd",clipRule:"evenodd",d:"M16.5 8.67993C16.5 9.82986 15.853 10.8287 14.9032 11.3322C15.2188 12.3599 14.97 13.5237 14.1569 14.3368C13.3437 15.1499 12.18 15.3987 11.1523 15.0831C10.6488 16.0329 9.64993 16.6799 8.5 16.6799C7.35007 16.6799 6.35126 16.0329 5.84771 15.0831C4.82003 15.3987 3.65627 15.1499 2.84314 14.3368C2.03001 13.5237 1.78124 12.3599 2.09681 11.3322C1.14699 10.8287 0.5 9.82986 0.5 8.67993C0.5 7.53 1.14699 6.53119 2.0968 6.02764C1.78125 4.99996 2.03003 3.83621 2.84315 3.02309C3.65627 2.20997 4.82002 1.96119 5.8477 2.27675C6.35125 1.32692 7.35007 0.679932 8.5 0.679932C9.64992 0.679932 10.6487 1.32691 11.1523 2.27672C12.18 1.96115 13.3437 2.20993 14.1569 3.02305C14.97 3.83618 15.2188 4.99996 14.9032 6.02764C15.853 6.53119 16.5 7.53 16.5 8.67993ZM12.2659 6.68856C12.5654 6.40238 12.5761 5.92763 12.29 5.62818C12.0038 5.32873 11.529 5.31797 11.2296 5.60416C9.73022 7.03711 8.40877 8.65489 7.3018 10.4211L5.78033 8.89963C5.48744 8.60673 5.01256 8.60673 4.71967 8.89963C4.42678 9.19252 4.42678 9.66739 4.71967 9.96029L6.92031 12.1609C7.08544 12.3261 7.31807 12.4048 7.54957 12.374C7.78106 12.3432 7.98499 12.2064 8.1012 12.0038C9.23027 10.0356 10.6362 8.24613 12.2659 6.68856Z",fill:"var(--privy-color-accent)"})});import{jsx as O1,jsxs as D1}from"react/jsx-runtime";var Lp=Us.div`
1189
+ `;import*as Op from"react-device-detect";import U1 from"styled-components";import Us from"styled-components";import{jsx as Mp}from"react/jsx-runtime";var Lp=({style:e,...t})=>Mp("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",width:"17",height:"17",viewBox:"0 0 17 17",style:{height:"1.25rem",width:"1.25rem",...e},...t,children:Mp("path",{strokeLinecap:"round",strokeLinejoin:"round",fillRule:"evenodd",clipRule:"evenodd",d:"M16.5 8.67993C16.5 9.82986 15.853 10.8287 14.9032 11.3322C15.2188 12.3599 14.97 13.5237 14.1569 14.3368C13.3437 15.1499 12.18 15.3987 11.1523 15.0831C10.6488 16.0329 9.64993 16.6799 8.5 16.6799C7.35007 16.6799 6.35126 16.0329 5.84771 15.0831C4.82003 15.3987 3.65627 15.1499 2.84314 14.3368C2.03001 13.5237 1.78124 12.3599 2.09681 11.3322C1.14699 10.8287 0.5 9.82986 0.5 8.67993C0.5 7.53 1.14699 6.53119 2.0968 6.02764C1.78125 4.99996 2.03003 3.83621 2.84315 3.02309C3.65627 2.20997 4.82002 1.96119 5.8477 2.27675C6.35125 1.32692 7.35007 0.679932 8.5 0.679932C9.64992 0.679932 10.6487 1.32691 11.1523 2.27672C12.18 1.96115 13.3437 2.20993 14.1569 3.02305C14.97 3.83618 15.2188 4.99996 14.9032 6.02764C15.853 6.53119 16.5 7.53 16.5 8.67993ZM12.2659 6.68856C12.5654 6.40238 12.5761 5.92763 12.29 5.62818C12.0038 5.32873 11.529 5.31797 11.2296 5.60416C9.73022 7.03711 8.40877 8.65489 7.3018 10.4211L5.78033 8.89963C5.48744 8.60673 5.01256 8.60673 4.71967 8.89963C4.42678 9.19252 4.42678 9.66739 4.71967 9.96029L6.92031 12.1609C7.08544 12.3261 7.31807 12.4048 7.54957 12.374C7.78106 12.3432 7.98499 12.2064 8.1012 12.0038C9.23027 10.0356 10.6362 8.24613 12.2659 6.68856Z",fill:"var(--privy-color-accent)"})});import{jsx as O1,jsxs as D1}from"react/jsx-runtime";var Np=Us.div`
1190
1190
  display: flex;
1191
1191
  flex-direction: column;
1192
1192
  justify-content: flex-start;
@@ -1197,7 +1197,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1197
1197
  border-left: 2px solid var(--privy-color-foreground-4);
1198
1198
  height: 12px;
1199
1199
  }
1200
- `,ji=({children:e})=>D1(N1,{children:[O1(Mp,{style:{width:"16px",height:"16px"}}),e]}),N1=Us.div`
1200
+ `,ji=({children:e})=>D1(N1,{children:[O1(Lp,{style:{width:"16px",height:"16px"}}),e]}),N1=Us.div`
1201
1201
  display: flex;
1202
1202
  justify-content: flex-start;
1203
1203
  justify-items: center;
@@ -1215,13 +1215,13 @@ You will need this password to access your ${e} wallet on a new device. Please k
1215
1215
  margin-bottom: auto;
1216
1216
  }
1217
1217
  }
1218
- `;import{Fragment as G1,jsx as Pe,jsxs as En}from"react/jsx-runtime";var F1=()=>{let{navigate:e}=S(),t="https://chrome.google.com/webstore/detail/phantom/bfnaelmomeimhlpmgjnjophhpkkoljpa?hl=en";return Np.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/phantom-app/"),En(B1,{children:[Pe(ln,{title:"Create a Phantom wallet",description:"Follow the instructions below to get started."}),Pe(Jt,{children:Pe(ho,{style:{width:"152px",height:"152px"}})}),En(Lp,{children:[Pe(ji,{children:En("div",{children:[Pe("span",{children:"Install the "}),Pe("a",{href:t,target:"_blank",children:"Phantom browser extension"})]})}),Pe(Fs,{}),Pe(ji,{children:"Set up your first wallet"}),Pe(Fs,{}),Pe(ji,{children:"Store your recovery phrase in a safe place!"})]}),Pe(xi,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},Op=()=>{let{navigateBack:e}=S();return En(G1,{children:[Pe(T,{backFn:e},"header"),Pe(j,{}),Pe(F1,{}),Pe(K,{}),En(Y,{children:[Pe("span",{children:"Still not sure? "}),Pe("a",{target:"_blank",href:"https://ethereum.org/en/wallets/",children:"Learn more"})]})]})},B1=U1(Jt)`
1218
+ `;import{Fragment as G1,jsx as Te,jsxs as En}from"react/jsx-runtime";var F1=()=>{let{navigate:e}=S(),t="https://chrome.google.com/webstore/detail/phantom/bfnaelmomeimhlpmgjnjophhpkkoljpa?hl=en";return Op.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/phantom-app/"),En(B1,{children:[Te(ln,{title:"Create a Phantom wallet",description:"Follow the instructions below to get started."}),Te(Jt,{children:Te(ho,{style:{width:"152px",height:"152px"}})}),En(Np,{children:[Te(ji,{children:En("div",{children:[Te("span",{children:"Install the "}),Te("a",{href:t,target:"_blank",children:"Phantom browser extension"})]})}),Te(Fs,{}),Te(ji,{children:"Set up your first wallet"}),Te(Fs,{}),Te(ji,{children:"Store your recovery phrase in a safe place!"})]}),Te(xi,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},Dp=()=>{let{navigateBack:e}=S();return En(G1,{children:[Te(T,{backFn:e},"header"),Te(j,{}),Te(F1,{}),Te(K,{}),En(Y,{children:[Te("span",{children:"Still not sure? "}),Te("a",{target:"_blank",href:"https://ethereum.org/en/wallets/",children:"Learn more"})]})]})},B1=U1(Jt)`
1219
1219
  gap: 30px;
1220
1220
 
1221
1221
  > :first-child > svg {
1222
1222
  margin-top: 20px;
1223
1223
  }
1224
- `;import Mv from"@heroicons/react/24/outline/EnvelopeIcon";import Lv from"@heroicons/react/24/outline/PhoneIcon";import Nv from"@heroicons/react/24/outline/UserCircleIcon";import{useEffect as Ov,useState as ru}from"react";import Dv from"styled-components";import{jsx as Pn,jsxs as Dp}from"react/jsx-runtime";var Up=({...e})=>Dp("svg",{xmlns:"http://www.w3.org/2000/svg",width:"25",height:"25",viewBox:"0 0 25 25",fill:"none",...e,children:[Dp("g",{clipPath:"url(#clip0_2856_1743)",children:[Pn("path",{d:"M22.1673 8.24075V16.3642C22.1673 17.3256 21.3421 18.105 20.3241 18.105H17.0028M22.1673 8.24075C22.1673 7.27936 21.3421 6.5 20.3241 6.5H11.5302M22.1673 8.24075V8.42852C22.1673 9.03302 21.8352 9.59423 21.2901 9.91105L15.1463 13.4818C14.5539 13.8261 13.8067 13.8261 13.2143 13.4818L10.1621 11.5401",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),Pn("path",{d:"M3.12913 6.64816C0.508085 12.9507 3.49251 20.1847 9.79504 22.8057L11.5068 23.5176C12.4522 23.9108 13.7783 23.2222 14.1714 22.2768L14.6054 21.2333C14.7687 20.8406 14.6438 20.3871 14.3024 20.1334L11.2872 17.8927C10.9878 17.6702 10.5843 17.6488 10.2632 17.8384L9.11575 18.5156C8.78274 18.7121 8.3597 18.6844 8.07552 18.4221C5.94293 16.4542 4.77629 13.6264 4.90096 10.7273C4.91757 10.3409 5.19796 10.023 5.57269 9.92753L6.86381 9.59869C7.22522 9.50664 7.49627 9.20696 7.55169 8.83815L8.10986 5.12321C8.17306 4.70259 7.94188 4.29293 7.54915 4.1296L6.50564 3.69564C5.56026 3.30248 4.23416 3.99103 3.84101 4.9364L3.12913 6.64816Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})]}),Pn("defs",{children:Pn("clipPath",{id:"clip0_2856_1743",children:Pn("rect",{x:"0.5",y:"0.5",width:"24",height:"24",rx:"6",fill:"white"})})})]});import ov from"@heroicons/react/24/outline/EnvelopeIcon";import{useRef as rv}from"react";import{EnvelopeIcon as J1}from"@heroicons/react/24/outline";import{forwardRef as Q1,useState as Bs}from"react";import Hs from"styled-components";import{useMemo as H1}from"react";import{useRef as z1}from"react";import{useContext as V1}from"react";import{useState as Fp}from"react";import{createContext as $1}from"react";import{jsx as j1}from"react/jsx-runtime";var Bp=$1({siteKey:"",enabled:!1,appId:void 0,token:void 0,error:void 0,status:"disabled",setToken:E,setError:E,waitForResult:()=>Promise.resolve(""),ref:{current:null},remove:E,reset:E}),xn=class extends Ye{constructor(o,r,n){super(o||"Captcha failed");this.type="Captcha";r instanceof Error&&(this.cause=r),this.privyErrorCode=n}},Gp=({children:e,id:t,captchaSiteKey:o,captchaEnabled:r})=>{let n=z1(null),[i,a]=Fp(),[l,s]=Fp(),c=H1(()=>r?!i&&!l?{status:"loading"}:i&&!l?{status:"success",token:i}:l?{status:"error",error:l}:{status:"ready"}:{status:"disabled"},[r,i,l]);return j1(Bp.Provider,{value:{...c,ref:n,enabled:r,siteKey:o,appId:t,setToken:a,setError:s,remove(){r&&(n.current?.remove(),s(void 0),a(void 0))},reset(){r&&(n.current?.reset(),s(void 0),a(void 0))},async waitForResult(){if(!r)return"";try{return await vc(()=>n.current?.getResponse(),{interval:200,timeout:2e4})}catch{throw new xn("Captcha failed",null,"captcha_timeout")}}},children:e})},Ut=()=>V1(Bp);import{Turnstile as q1}from"@marsidev/react-turnstile";import{useEffect as K1,useMemo as Y1}from"react";import{jsx as Hp}from"react/jsx-runtime";var Tn=e=>{let{enabled:t,siteKey:o,appId:r,setError:n,setToken:i,ref:a}=Ut(),[,l]=Y1(()=>o?.split("t:")||[],[o]);if(K1(()=>a.current?.remove,[]),!t)return null;if(!l)throw new Error("Unsupported captcha site key");return Hp("div",{className:"hidden h-0 w-0",children:Hp(q1,{...e,ref:a,siteKey:l,options:{action:r,size:"invisible"},onUnsupported:()=>{e.onUnsupported?.(),console.warn("Browser does not support Turnstile.")},onError:()=>{e.onError?.(),n("Captcha failed")},onSuccess:s=>{e.onSuccess?.(s),i(s)},onExpire:()=>{e.onExpire?.();try{a.current?.reset(),n(void 0),i(void 0)}catch{n("expired_and_failed_reset")}}})})};import{Fragment as tv,jsx as Rr,jsxs as Gs}from"react/jsx-runtime";var qi=Q1((e,t)=>{let[o,r]=Bs(""),[n,i]=Bs(!1),[a,l]=Bs(null),{headless:s,initLoginWithEmail:c}=k(),{navigate:u}=S(),y=Ut(),C=yc(o),m=n||y.status==="loading",P=n||!C||y.enabled&&y.status!=="success",b=()=>{let x=y.status==="success"?y.token:void 0;i(!0),c(o,x).then(()=>{y.remove(),u("AWAITING_PASSWORDLESS_CODE")}).catch(v=>{v?.status===422?l(v.message):v?.privyErrorCode==="allowlist_rejected"?u("ALLOWLIST_REJECTION_SCREEN"):(console.error(v),l("Issue submitting email")),i(!1)})};return Gs(tv,{children:[Gs(Z1,{children:[Gs(X1,{children:[Rr(J1,{}),Rr("input",{ref:t,id:"email-input",type:"email",placeholder:"your@email.com",onChange:x=>r(x.target.value),onKeyUp:x=>{x.key==="Enter"&&b()},value:o,autoComplete:"email"}),e.stacked?null:Rr(Ti,{isSubmitting:m,onClick:b,disabled:P,children:"Submit"})]}),a&&Rr(ev,{children:a})]}),!s&&Rr(Tn,{onError:()=>l("Issue verifying you are a human")}),e.stacked?Rr(F,{loadingText:null,loading:m,disabled:P,onClick:b,children:"Submit"}):null]})}),Z1=Hs.div`
1224
+ `;import Mv from"@heroicons/react/24/outline/EnvelopeIcon";import Lv from"@heroicons/react/24/outline/PhoneIcon";import Nv from"@heroicons/react/24/outline/UserCircleIcon";import{useEffect as Ov,useState as nu}from"react";import Dv from"styled-components";import{jsx as Pn,jsxs as Up}from"react/jsx-runtime";var Fp=({...e})=>Up("svg",{xmlns:"http://www.w3.org/2000/svg",width:"25",height:"25",viewBox:"0 0 25 25",fill:"none",...e,children:[Up("g",{clipPath:"url(#clip0_2856_1743)",children:[Pn("path",{d:"M22.1673 8.24075V16.3642C22.1673 17.3256 21.3421 18.105 20.3241 18.105H17.0028M22.1673 8.24075C22.1673 7.27936 21.3421 6.5 20.3241 6.5H11.5302M22.1673 8.24075V8.42852C22.1673 9.03302 21.8352 9.59423 21.2901 9.91105L15.1463 13.4818C14.5539 13.8261 13.8067 13.8261 13.2143 13.4818L10.1621 11.5401",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),Pn("path",{d:"M3.12913 6.64816C0.508085 12.9507 3.49251 20.1847 9.79504 22.8057L11.5068 23.5176C12.4522 23.9108 13.7783 23.2222 14.1714 22.2768L14.6054 21.2333C14.7687 20.8406 14.6438 20.3871 14.3024 20.1334L11.2872 17.8927C10.9878 17.6702 10.5843 17.6488 10.2632 17.8384L9.11575 18.5156C8.78274 18.7121 8.3597 18.6844 8.07552 18.4221C5.94293 16.4542 4.77629 13.6264 4.90096 10.7273C4.91757 10.3409 5.19796 10.023 5.57269 9.92753L6.86381 9.59869C7.22522 9.50664 7.49627 9.20696 7.55169 8.83815L8.10986 5.12321C8.17306 4.70259 7.94188 4.29293 7.54915 4.1296L6.50564 3.69564C5.56026 3.30248 4.23416 3.99103 3.84101 4.9364L3.12913 6.64816Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})]}),Pn("defs",{children:Pn("clipPath",{id:"clip0_2856_1743",children:Pn("rect",{x:"0.5",y:"0.5",width:"24",height:"24",rx:"6",fill:"white"})})})]});import ov from"@heroicons/react/24/outline/EnvelopeIcon";import{useRef as rv}from"react";import{EnvelopeIcon as J1}from"@heroicons/react/24/outline";import{forwardRef as Q1,useState as Bs}from"react";import Hs from"styled-components";import{useMemo as H1}from"react";import{useRef as z1}from"react";import{useContext as V1}from"react";import{useState as Bp}from"react";import{createContext as $1}from"react";import{jsx as j1}from"react/jsx-runtime";var Gp=$1({siteKey:"",enabled:!1,appId:void 0,token:void 0,error:void 0,status:"disabled",setToken:E,setError:E,waitForResult:()=>Promise.resolve(""),ref:{current:null},remove:E,reset:E}),xn=class extends Ye{constructor(o,r,n){super(o||"Captcha failed");this.type="Captcha";r instanceof Error&&(this.cause=r),this.privyErrorCode=n}},Hp=({children:e,id:t,captchaSiteKey:o,captchaEnabled:r})=>{let n=z1(null),[i,a]=Bp(),[l,s]=Bp(),c=H1(()=>r?!i&&!l?{status:"loading"}:i&&!l?{status:"success",token:i}:l?{status:"error",error:l}:{status:"ready"}:{status:"disabled"},[r,i,l]);return j1(Gp.Provider,{value:{...c,ref:n,enabled:r,siteKey:o,appId:t,setToken:a,setError:s,remove(){r&&(n.current?.remove(),s(void 0),a(void 0))},reset(){r&&(n.current?.reset(),s(void 0),a(void 0))},async waitForResult(){if(!r)return"";try{return await wc(()=>n.current?.getResponse(),{interval:200,timeout:2e4})}catch{throw new xn("Captcha failed",null,"captcha_timeout")}}},children:e})},Ut=()=>V1(Gp);import{Turnstile as q1}from"@marsidev/react-turnstile";import{useEffect as K1,useMemo as Y1}from"react";import{jsx as zp}from"react/jsx-runtime";var Tn=e=>{let{enabled:t,siteKey:o,appId:r,setError:n,setToken:i,ref:a}=Ut(),[,l]=Y1(()=>o?.split("t:")||[],[o]);if(K1(()=>a.current?.remove,[]),!t)return null;if(!l)throw new Error("Unsupported captcha site key");return zp("div",{className:"hidden h-0 w-0",children:zp(q1,{...e,ref:a,siteKey:l,options:{action:r,size:"invisible"},onUnsupported:()=>{e.onUnsupported?.(),console.warn("Browser does not support Turnstile.")},onError:()=>{e.onError?.(),n("Captcha failed")},onSuccess:s=>{e.onSuccess?.(s),i(s)},onExpire:()=>{e.onExpire?.();try{a.current?.reset(),n(void 0),i(void 0)}catch{n("expired_and_failed_reset")}}})})};import{Fragment as tv,jsx as Ir,jsxs as Gs}from"react/jsx-runtime";var qi=Q1((e,t)=>{let[o,r]=Bs(""),[n,i]=Bs(!1),[a,l]=Bs(null),{headless:s,initLoginWithEmail:c}=k(),{navigate:u}=S(),y=Ut(),C=gc(o),m=n||y.status==="loading",P=n||!C||y.enabled&&y.status!=="success",b=()=>{let x=y.status==="success"?y.token:void 0;i(!0),c(o,x).then(()=>{y.remove(),u("AWAITING_PASSWORDLESS_CODE")}).catch(v=>{v?.status===422?l(v.message):v?.privyErrorCode==="allowlist_rejected"?u("ALLOWLIST_REJECTION_SCREEN"):(console.error(v),l("Issue submitting email")),i(!1)})};return Gs(tv,{children:[Gs(Z1,{children:[Gs(X1,{children:[Ir(J1,{}),Ir("input",{ref:t,id:"email-input",type:"email",placeholder:"your@email.com",onChange:x=>r(x.target.value),onKeyUp:x=>{x.key==="Enter"&&b()},value:o,autoComplete:"email"}),e.stacked?null:Ir(Ti,{isSubmitting:m,onClick:b,disabled:P,children:"Submit"})]}),a&&Ir(ev,{children:a})]}),!s&&Ir(Tn,{onError:()=>l("Issue verifying you are a human")}),e.stacked?Ir(F,{loadingText:null,loading:m,disabled:P,onClick:b,children:"Submit"}):null]})}),Z1=Hs.div`
1225
1225
  width: 100%;
1226
1226
  `,X1=Hs.label`
1227
1227
  display: block;
@@ -1293,7 +1293,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1293
1293
  > a {
1294
1294
  text-decoration: underline;
1295
1295
  }
1296
- `;import{Fragment as nv,jsx as Ki,jsxs as zp}from"react/jsx-runtime";var Vp=({isEditable:e,setIsEditable:t})=>{let o=rv(null);return zp(nv,{children:[Ki(Qt,{if:!e,children:Ki(qi,{ref:o})}),Ki(Qt,{if:e,children:zp(ge,{onClick:()=>{t(),setTimeout(()=>{o.current?.focus()},0)},children:[Ki(ov,{})," Continue with Email"]})})]})};import vv from"@heroicons/react/24/outline/PhoneIcon";import{useRef as wv}from"react";import{forwardRef as mv,useState as Qi}from"react";import Vs from"styled-components";import iv from"libphonenumber-js/examples.mobile.json";import{isPossiblePhoneNumber as av,AsYouType as sv,getCountries as lv,getCountryCallingCode as Yi,getExampleNumber as cv}from"libphonenumber-js/min";import{jsx as uv,jsxs as pv}from"react/jsx-runtime";var Sn=(e,t)=>av(String(e),t),Ji=(e,t)=>`+${Yi(t)} ${e}`,$p=e=>`*${e.replaceAll("-","").slice(-4)}`,jp=e=>new sv(e),dv=lv().map(e=>({code:e,callCode:Yi(e)})),qp=e=>cv(e,iv)?.formatNational(),Kp=({value:e,onChange:t})=>uv("select",{value:e,onChange:t,children:dv.map(o=>pv("option",{value:o.code,children:[o.code," +",o.callCode]},o.code))});import{Fragment as gv,jsx as Ir,jsxs as zs}from"react/jsx-runtime";var Wr=mv((e,t)=>{let{navigate:o,app:r}=S(),{headless:n}=k(),i=Ut(),[a,l]=Qi(""),[s,c]=Qi(r?.intl.defaultCountry??"US"),[u,y]=Qi(!1),[C,m]=Qi(null),P=Sn(a,s),b=jp(s),x=qp(s),v=Yi(s),R=u||i.status==="loading",M=u||!P||i.enabled&&i.status!=="success",W=v.length,I=O=>{let B=O.target.value;c(B),l(""),e.onChange&&e.onChange({rawPhoneNumber:a,qualifiedPhoneNumber:Ji(a,B),countryCode:B,isValid:Sn(a,s)})},A=O=>{try{let B=O.replace(/\D/g,""),D=a.replace(/\D/g,""),_=B===D?O:b.input(O);l(_),e.onChange&&e.onChange({rawPhoneNumber:_,qualifiedPhoneNumber:Ji(O,s),countryCode:s,isValid:Sn(O,s)})}catch(B){console.error("Error processing phone number:",B)}},L=async()=>{let O=i.status==="success"?i.token:void 0;y(!0);try{let B=Ji(a,s);await e.onSubmit({rawPhoneNumber:a,qualifiedPhoneNumber:B,countryCode:s,isValid:Sn(a,s),captchaToken:O})}catch(B){let D=B;D?.status===422||B.type==="twilio_verification_failed"?m(D.message):D?.privyErrorCode==="allowlist_rejected"?o("ALLOWLIST_REJECTION_SCREEN"):(console.error(B),m("Issue submitting phone number"))}finally{i.remove(),y(!1)}};return zs(gv,{children:[zs(fv,{children:[zs(hv,{callingCodeLength:W,children:[Ir(Kp,{value:s,onChange:I}),Ir("input",{ref:t,id:"phone-number-input",type:"tel",placeholder:x,onChange:O=>{A(O.target.value)},onKeyUp:O=>{O.key==="Enter"&&L()},value:a,autoComplete:"tel"}),!e.stacked&&!e.noIncludeSubmitButton?Ir(Ti,{isSubmitting:R,onClick:L,disabled:M,children:"Submit"}):null]}),C&&Ir(yv,{children:C})]}),!n&&Ir(Tn,{onError:()=>m("Issue verifying you are a human")}),e.stacked&&!e.noIncludeSubmitButton?Ir(F,{loading:R,loadingText:null,onClick:L,disabled:M,children:"Submit"}):null]})}),fv=Vs.div`
1296
+ `;import{Fragment as nv,jsx as Ki,jsxs as Vp}from"react/jsx-runtime";var $p=({isEditable:e,setIsEditable:t})=>{let o=rv(null);return Vp(nv,{children:[Ki(Qt,{if:!e,children:Ki(qi,{ref:o})}),Ki(Qt,{if:e,children:Vp(ve,{onClick:()=>{t(),setTimeout(()=>{o.current?.focus()},0)},children:[Ki(ov,{})," Continue with Email"]})})]})};import vv from"@heroicons/react/24/outline/PhoneIcon";import{useRef as wv}from"react";import{forwardRef as mv,useState as Qi}from"react";import Vs from"styled-components";import iv from"libphonenumber-js/examples.mobile.json";import{isPossiblePhoneNumber as av,AsYouType as sv,getCountries as lv,getCountryCallingCode as Yi,getExampleNumber as cv}from"libphonenumber-js/min";import{jsx as uv,jsxs as pv}from"react/jsx-runtime";var Sn=(e,t)=>av(String(e),t),Ji=(e,t)=>`+${Yi(t)} ${e}`,jp=e=>`*${e.replaceAll("-","").slice(-4)}`,qp=e=>new sv(e),dv=lv().map(e=>({code:e,callCode:Yi(e)})),Kp=e=>cv(e,iv)?.formatNational(),Yp=({value:e,onChange:t})=>uv("select",{value:e,onChange:t,children:dv.map(o=>pv("option",{value:o.code,children:[o.code," +",o.callCode]},o.code))});import{Fragment as gv,jsx as Wr,jsxs as zs}from"react/jsx-runtime";var Mr=mv((e,t)=>{let{navigate:o,app:r}=S(),{headless:n}=k(),i=Ut(),[a,l]=Qi(""),[s,c]=Qi(r?.intl.defaultCountry??"US"),[u,y]=Qi(!1),[C,m]=Qi(null),P=Sn(a,s),b=qp(s),x=Kp(s),v=Yi(s),R=u||i.status==="loading",M=u||!P||i.enabled&&i.status!=="success",W=v.length,I=D=>{let B=D.target.value;c(B),l(""),e.onChange&&e.onChange({rawPhoneNumber:a,qualifiedPhoneNumber:Ji(a,B),countryCode:B,isValid:Sn(a,s)})},A=D=>{try{let B=D.replace(/\D/g,""),U=a.replace(/\D/g,""),_=B===U?D:b.input(D);l(_),e.onChange&&e.onChange({rawPhoneNumber:_,qualifiedPhoneNumber:Ji(D,s),countryCode:s,isValid:Sn(D,s)})}catch(B){console.error("Error processing phone number:",B)}},L=async()=>{let D=i.status==="success"?i.token:void 0;y(!0);try{let B=Ji(a,s);await e.onSubmit({rawPhoneNumber:a,qualifiedPhoneNumber:B,countryCode:s,isValid:Sn(a,s),captchaToken:D})}catch(B){let U=B;U?.status===422||B.type==="twilio_verification_failed"?m(U.message):U?.privyErrorCode==="allowlist_rejected"?o("ALLOWLIST_REJECTION_SCREEN"):(console.error(B),m("Issue submitting phone number"))}finally{i.remove(),y(!1)}};return zs(gv,{children:[zs(fv,{children:[zs(hv,{callingCodeLength:W,children:[Wr(Yp,{value:s,onChange:I}),Wr("input",{ref:t,id:"phone-number-input",type:"tel",placeholder:x,onChange:D=>{A(D.target.value)},onKeyUp:D=>{D.key==="Enter"&&L()},value:a,autoComplete:"tel"}),!e.stacked&&!e.noIncludeSubmitButton?Wr(Ti,{isSubmitting:R,onClick:L,disabled:M,children:"Submit"}):null]}),C&&Wr(yv,{children:C})]}),!n&&Wr(Tn,{onError:()=>m("Issue verifying you are a human")}),e.stacked&&!e.noIncludeSubmitButton?Wr(F,{loading:R,loadingText:null,onClick:L,disabled:M,children:"Submit"}):null]})}),fv=Vs.div`
1297
1297
  width: 100%;
1298
1298
  `,hv=Vs.label`
1299
1299
  --country-code-dropdown-width: calc(54px + calc(12 * ${e=>e.callingCodeLength}px));
@@ -1391,9 +1391,9 @@ You will need this password to access your ${e} wallet on a new device. Please k
1391
1391
  > a {
1392
1392
  text-decoration: underline;
1393
1393
  }
1394
- `;import{Fragment as Cv,jsx as Zi,jsxs as Yp}from"react/jsx-runtime";var Jp=({isEditable:e,setIsEditable:t})=>{let o=wv(null),{navigate:r}=S(),{initLoginWithSms:n}=k();async function i({qualifiedPhoneNumber:a,captchaToken:l}){await n(a,l),r("AWAITING_PASSWORDLESS_CODE")}return Yp(Cv,{children:[Zi(Qt,{if:!e,children:Zi(Wr,{ref:o,onSubmit:i})}),Zi(Qt,{if:e,children:Yp(ge,{onClick:()=>{t(),setTimeout(()=>{o.current?.focus()},0)},children:[Zi(vv,{})," Continue with SMS"]})})]})};import{useState as Tv}from"react";import{jsx as Qp,jsxs as bv}from"react/jsx-runtime";var Xi=({style:e,...t})=>bv("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 24 24",style:{height:"24px",...e},...t,children:[Qp("path",{d:"M17.0722 11.6888C17.0471 8.90571 19.3263 7.56847 19.429 7.50274C18.1466 5.60938 16.153 5.35154 15.4417 5.3212C13.7461 5.14678 12.1306 6.32982 11.269 6.32982C10.4074 6.32982 9.08004 5.34648 7.67246 5.37429C5.82158 5.40209 4.11595 6.45874 3.16171 8.13218C1.24068 11.4942 2.6708 16.4817 4.54423 19.2143C5.46091 20.549 6.55041 22.0531 7.98554 21.9975C9.36803 21.9419 9.88905 21.095 11.5571 21.095C13.2251 21.095 13.696 21.9975 15.1537 21.9697C16.6389 21.9393 17.5806 20.6046 18.4897 19.2648C19.5392 17.7153 19.9725 16.2137 19.9975 16.1354C19.965 16.1228 17.1022 15.0155 17.0722 11.6888Z",fill:"currentColor"}),Qp("path",{d:"M14.3295 3.51373C15.0909 2.58347 15.6043 1.28921 15.4641 0C14.3671 0.0455014 13.0396 0.738135 12.2532 1.66838C11.5494 2.48994 10.9307 3.80695 11.0986 5.07089C12.3183 5.16694 13.5681 4.44145 14.3295 3.51373Z",fill:"currentColor"})]});import{jsx as _n,jsxs as Ev}from"react/jsx-runtime";var ea=({style:e,...t})=>Ev("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 71 55",style:{height:"24px",...e},...t,children:[_n("g",{clipPath:"url(#clip0)",children:_n("path",{d:"M60.1045 4.8978C55.5792 2.8214 50.7265 1.2916 45.6527 0.41542C45.5603 0.39851 45.468 0.440769 45.4204 0.525289C44.7963 1.6353 44.105 3.0834 43.6209 4.2216C38.1637 3.4046 32.7345 3.4046 27.3892 4.2216C26.905 3.0581 26.1886 1.6353 25.5617 0.525289C25.5141 0.443589 25.4218 0.40133 25.3294 0.41542C20.2584 1.2888 15.4057 2.8186 10.8776 4.8978C10.8384 4.9147 10.8048 4.9429 10.7825 4.9795C1.57795 18.7309 -0.943561 32.1443 0.293408 45.3914C0.299005 45.4562 0.335386 45.5182 0.385761 45.5576C6.45866 50.0174 12.3413 52.7249 18.1147 54.5195C18.2071 54.5477 18.305 54.5139 18.3638 54.4378C19.7295 52.5728 20.9469 50.6063 21.9907 48.5383C22.0523 48.4172 21.9935 48.2735 21.8676 48.2256C19.9366 47.4931 18.0979 46.6 16.3292 45.5858C16.1893 45.5041 16.1781 45.304 16.3068 45.2082C16.679 44.9293 17.0513 44.6391 17.4067 44.3461C17.471 44.2926 17.5606 44.2813 17.6362 44.3151C29.2558 49.6202 41.8354 49.6202 53.3179 44.3151C53.3935 44.2785 53.4831 44.2898 53.5502 44.3433C53.9057 44.6363 54.2779 44.9293 54.6529 45.2082C54.7816 45.304 54.7732 45.5041 54.6333 45.5858C52.8646 46.6197 51.0259 47.4931 49.0921 48.2228C48.9662 48.2707 48.9102 48.4172 48.9718 48.5383C50.038 50.6034 51.2554 52.5699 52.5959 54.435C52.6519 54.5139 52.7526 54.5477 52.845 54.5195C58.6464 52.7249 64.529 50.0174 70.6019 45.5576C70.6551 45.5182 70.6887 45.459 70.6943 45.3942C72.1747 30.0791 68.2147 16.7757 60.1968 4.9823C60.1772 4.9429 60.1437 4.9147 60.1045 4.8978ZM23.7259 37.3253C20.2276 37.3253 17.3451 34.1136 17.3451 30.1693C17.3451 26.225 20.1717 23.0133 23.7259 23.0133C27.308 23.0133 30.1626 26.2532 30.1066 30.1693C30.1066 34.1136 27.28 37.3253 23.7259 37.3253ZM47.3178 37.3253C43.8196 37.3253 40.9371 34.1136 40.9371 30.1693C40.9371 26.225 43.7636 23.0133 47.3178 23.0133C50.9 23.0133 53.7545 26.2532 53.6986 30.1693C53.6986 34.1136 50.9 37.3253 47.3178 37.3253Z",fill:"#5865F2"})}),_n("defs",{children:_n("clipPath",{id:"clip0",children:_n("rect",{width:"71",height:"55",fill:"white"})})})]});import{jsx as Zp}from"react/jsx-runtime";var ta=({style:e,...t})=>Zp("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"24",y:"24",viewBox:"0 0 98 96",style:{height:"24px",...e},...t,children:Zp("path",{d:"M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z",fill:"currentColor"})});import{jsx as oa,jsxs as Pv}from"react/jsx-runtime";var ra=({style:e,...t})=>Pv("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"26px",width:"26px",...e},...t,children:[oa("path",{d:"M22.56 12.25C22.56 11.47 22.49 10.72 22.36 10H12V14.255H17.92C17.665 15.63 16.89 16.795 15.725 17.575V20.335H19.28C21.36 18.42 22.56 15.6 22.56 12.25Z",fill:"#4285F4"}),oa("path",{d:"M12 23C14.97 23 17.46 22.015 19.28 20.335L15.725 17.575C14.74 18.235 13.48 18.625 12 18.625C9.13504 18.625 6.71004 16.69 5.84504 14.09H2.17004V16.94C3.98004 20.535 7.70004 23 12 23Z",fill:"#34A853"}),oa("path",{d:"M5.845 14.09C5.625 13.43 5.5 12.725 5.5 12C5.5 11.275 5.625 10.57 5.845 9.91V7.06H2.17C1.4 8.59286 0.999321 10.2846 1 12C1 13.775 1.425 15.455 2.17 16.94L5.845 14.09Z",fill:"#FBBC05"}),oa("path",{d:"M12 5.375C13.615 5.375 15.065 5.93 16.205 7.02L19.36 3.865C17.455 2.09 14.965 1 12 1C7.70004 1 3.98004 3.465 2.17004 7.06L5.84504 9.91C6.71004 7.31 9.13504 5.375 12 5.375Z",fill:"#EA4335"})]});import{jsx as na}from"react/jsx-runtime";function ia({style:e,...t}){return na("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",viewBox:"0,0,256,256",style:{height:"26px",width:"26px",...e},...t,children:na("g",{fill:"#0077b5",strokeWidth:"1",strokeLinecap:"butt",strokeLinejoin:"miter",strokeMiterlimit:"10",style:{mixBlendMode:"normal"},children:na("g",{transform:"scale(5.12,5.12)",children:na("path",{d:"M41,4h-32c-2.76,0 -5,2.24 -5,5v32c0,2.76 2.24,5 5,5h32c2.76,0 5,-2.24 5,-5v-32c0,-2.76 -2.24,-5 -5,-5zM17,20v19h-6v-19zM11,14.47c0,-1.4 1.2,-2.47 3,-2.47c1.8,0 2.93,1.07 3,2.47c0,1.4 -1.12,2.53 -3,2.53c-1.8,0 -3,-1.13 -3,-2.53zM39,39h-6c0,0 0,-9.26 0,-10c0,-2 -1,-4 -3.5,-4.04h-0.08c-2.42,0 -3.42,2.06 -3.42,4.04c0,0.91 0,10 0,10h-6v-19h6v2.56c0,0 1.93,-2.56 5.81,-2.56c3.97,0 7.19,2.73 7.19,8.26z"})})})})}import{jsx as $s,jsxs as xv}from"react/jsx-runtime";function aa(e){return xv("svg",{xmlns:"http://www.w3.org/2000/svg",fillRule:"evenodd",clipRule:"evenodd",imageRendering:"optimizeQuality",shapeRendering:"geometricPrecision",textRendering:"geometricPrecision",viewBox:"0 0 293768 333327",width:24,height:24,...e,children:[$s("path",{fill:"#26f4ee",d:"M204958 0c5369 45832 32829 78170 77253 81022v43471l-287 27V87593c-44424-2850-69965-30183-75333-76015l-47060-1v192819c6791 86790-60835 89368-86703 56462 30342 18977 79608 6642 73766-68039V0h58365zM78515 319644c-26591-5471-50770-21358-64969-44588-34496-56437-3401-148418 96651-157884v54345l-164 27v-40773C17274 145544 7961 245185 33650 286633c9906 15984 26169 27227 44864 33011z"}),$s("path",{fill:"#fb2c53",d:"M218434 11587c3505 29920 15609 55386 35948 70259-27522-10602-43651-34934-47791-70262l11843 3zm63489 82463c3786 804 7734 1348 11844 1611v51530c-25770 2537-48321-5946-74600-21749l4034 88251c0 28460 106 41467-15166 67648-34260 58734-95927 63376-137628 35401 54529 22502 137077-4810 136916-103049v-96320c26279 15803 48830 24286 74600 21748V94050zm-171890 37247c5390-1122 11048-1985 16998-2548v54345c-21666 3569-35427 10222-41862 22528-20267 38754 5827 69491 35017 74111-33931 5638-73721-28750-49999-74111 6434-12304 18180-18959 39846-22528v-51797zm64479-119719h1808-1808z"}),$s("path",{d:"M206590 11578c5369 45832 30910 73164 75333 76015v51528c-25770 2539-48321-5945-74600-21748v96320c206 125717-135035 135283-173673 72939-25688-41449-16376-141089 76383-155862v52323c-21666 3569-33412 10224-39846 22528-39762 76035 98926 121273 89342-1225V11577l47060 1z",fill:"currentColor"})]})}import{jsx as Xp}from"react/jsx-runtime";var sa=({style:e,...t})=>Xp("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"24px",width:"24px",...e},...t,children:Xp("path",{d:"M 14.285156 10.171875 L 23.222656 0 L 21.105469 0 L 13.34375 8.832031 L 7.148438 0 L 0 0 L 9.371094 13.355469 L 0 24.019531 L 2.117188 24.019531 L 10.308594 14.691406 L 16.851562 24.019531 L 24 24.019531 M 2.878906 1.5625 L 6.132812 1.5625 L 21.101562 22.535156 L 17.851562 22.535156 ",fill:"currentColor"})});import{jsx as Yo,jsxs as _v}from"react/jsx-runtime";var Sv={apple:{logo:Yo(Xi,{}),displayName:"Apple"},discord:{logo:Yo(ea,{}),displayName:"Discord"},github:{logo:Yo(ta,{}),displayName:"GitHub"},google:{logo:Yo(ra,{}),displayName:"Google"},linkedin:{logo:Yo(ia,{}),displayName:"LinkedIn"},twitter:{logo:Yo(sa,{}),displayName:"Twitter"},tiktok:{logo:Yo(aa,{}),displayName:"TikTok"}},So=({provider:e})=>{let[t,o]=Tv(!1),{initLoginWithOAuth:r}=k(),{displayName:n,logo:i}=Sv[e];return _v(ge,{onClick:()=>{o(!0),r(e),o(!1)},disabled:t,children:[i," ",n]})};import kv from"@heroicons/react/24/outline/ChevronRightIcon";import Av from"@heroicons/react/24/outline/WalletIcon";import{jsx as js,jsxs as Rv}from"react/jsx-runtime";var eu=({onClick:e,text:t})=>Rv(ge,{onClick:e,children:[js(Av,{}),js(Ri,{children:t}),js(kv,{})]});import Iv from"@heroicons/react/24/outline/ChevronRightIcon";import{jsx as tu,jsxs as Wv}from"react/jsx-runtime";var ou=({onClick:e,text:t,icon:o})=>Wv(ge,{onClick:e,children:[o,tu(Ri,{children:t}),tu(Iv,{})]});import{Fragment as kn,jsx as me,jsxs as Mr}from"react/jsx-runtime";var nu=()=>{let{closePrivyModal:e,connectors:t}=k(),{app:o,onUserCloseViaDialogOrKeybindRef:r}=S(),{email:n,sms:i,google:a,twitter:l,discord:s,github:c,tiktok:u,linkedin:y,apple:C,wallet:m}=o?.loginMethods??{},P=o?.appearance.loginGroupPriority||"web2-first",b=o?.appearance.hideDirectWeb2Inputs,[x,v]=ru("default"),[R,M]=ru(n?"email":"sms");Ov(()=>{M(n?"email":"sms")},[n]);let W=()=>{e({shouldCallAuthOnSuccess:!0}),setTimeout(()=>{v("default")},150)};r.current=W;let I=[n&&me(Vp,{isEditable:R==="email",setIsEditable:()=>{M("email")}}),i&&me(Jp,{isEditable:R==="sms",setIsEditable:()=>{M("sms")}})].filter(Boolean),A=[a&&me(So,{provider:"google"}),l&&me(So,{provider:"twitter"}),s&&me(So,{provider:"discord"}),c&&me(So,{provider:"github"}),u&&me(So,{provider:"tiktok"}),y&&me(So,{provider:"linkedin"}),C&&me(So,{provider:"apple"})].filter(Boolean),L=ys(o?.appearance.walletList??[],t,!1),O=x==="default"?void 0:()=>{v("default")},B=Fv({priority:P,email:n,sms:i,social:A}),D=Bv({priority:P,email:n,sms:i,social:A}),_=Gv({priority:P,email:n,sms:i,social:A}),Z=me(eu,{text:_,onClick:()=>v("web3-overflow")}),ne=me(ou,{text:B,icon:D,onClick:()=>v("web2-overflow")}),fe=b?0:1;return Mr(kn,{children:[me(T,{title:"Log in or Sign Up",onClose:W,backFn:O}),x==="default"&&me(Uv,{}),me(Pd,{style:{overflow:"hidden",padding:2},children:Mr(Co,{children:[x==="default"&&P==="web2-first"&&Mr(kn,{children:[...I,...A.length+I.length>4?A.slice(0,3-I.length):A,I.length+A.length>4&&ne,m&&Z]}),x==="default"&&P==="web3-first"&&Mr(kn,{children:[m&&Mr(kn,{children:[...L.length>4?L.slice(0,3):L,L.length>4&&Z]}),I.length+A.length>fe&&ne,I.length+A.length===fe&&I.length?I[0]:null,I.length+A.length===fe&&A.length?A[0]:null]}),x==="web2-overflow"&&Mr(kn,{children:[...P==="web3-first"?I:[],...A]}),...x==="web3-overflow"?L:[]]})}),o&&me(ki,{app:o}),me(G,{protectedByPrivy:!0})]})},Uv=Dv(Wi)`
1394
+ `;import{Fragment as Cv,jsx as Zi,jsxs as Jp}from"react/jsx-runtime";var Qp=({isEditable:e,setIsEditable:t})=>{let o=wv(null),{navigate:r}=S(),{initLoginWithSms:n}=k();async function i({qualifiedPhoneNumber:a,captchaToken:l}){await n(a,l),r("AWAITING_PASSWORDLESS_CODE")}return Jp(Cv,{children:[Zi(Qt,{if:!e,children:Zi(Mr,{ref:o,onSubmit:i})}),Zi(Qt,{if:e,children:Jp(ve,{onClick:()=>{t(),setTimeout(()=>{o.current?.focus()},0)},children:[Zi(vv,{})," Continue with SMS"]})})]})};import{useState as Tv}from"react";import{jsx as Zp,jsxs as bv}from"react/jsx-runtime";var Xi=({style:e,...t})=>bv("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 24 24",style:{height:"24px",...e},...t,children:[Zp("path",{d:"M17.0722 11.6888C17.0471 8.90571 19.3263 7.56847 19.429 7.50274C18.1466 5.60938 16.153 5.35154 15.4417 5.3212C13.7461 5.14678 12.1306 6.32982 11.269 6.32982C10.4074 6.32982 9.08004 5.34648 7.67246 5.37429C5.82158 5.40209 4.11595 6.45874 3.16171 8.13218C1.24068 11.4942 2.6708 16.4817 4.54423 19.2143C5.46091 20.549 6.55041 22.0531 7.98554 21.9975C9.36803 21.9419 9.88905 21.095 11.5571 21.095C13.2251 21.095 13.696 21.9975 15.1537 21.9697C16.6389 21.9393 17.5806 20.6046 18.4897 19.2648C19.5392 17.7153 19.9725 16.2137 19.9975 16.1354C19.965 16.1228 17.1022 15.0155 17.0722 11.6888Z",fill:"currentColor"}),Zp("path",{d:"M14.3295 3.51373C15.0909 2.58347 15.6043 1.28921 15.4641 0C14.3671 0.0455014 13.0396 0.738135 12.2532 1.66838C11.5494 2.48994 10.9307 3.80695 11.0986 5.07089C12.3183 5.16694 13.5681 4.44145 14.3295 3.51373Z",fill:"currentColor"})]});import{jsx as _n,jsxs as Ev}from"react/jsx-runtime";var ea=({style:e,...t})=>Ev("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 71 55",style:{height:"24px",...e},...t,children:[_n("g",{clipPath:"url(#clip0)",children:_n("path",{d:"M60.1045 4.8978C55.5792 2.8214 50.7265 1.2916 45.6527 0.41542C45.5603 0.39851 45.468 0.440769 45.4204 0.525289C44.7963 1.6353 44.105 3.0834 43.6209 4.2216C38.1637 3.4046 32.7345 3.4046 27.3892 4.2216C26.905 3.0581 26.1886 1.6353 25.5617 0.525289C25.5141 0.443589 25.4218 0.40133 25.3294 0.41542C20.2584 1.2888 15.4057 2.8186 10.8776 4.8978C10.8384 4.9147 10.8048 4.9429 10.7825 4.9795C1.57795 18.7309 -0.943561 32.1443 0.293408 45.3914C0.299005 45.4562 0.335386 45.5182 0.385761 45.5576C6.45866 50.0174 12.3413 52.7249 18.1147 54.5195C18.2071 54.5477 18.305 54.5139 18.3638 54.4378C19.7295 52.5728 20.9469 50.6063 21.9907 48.5383C22.0523 48.4172 21.9935 48.2735 21.8676 48.2256C19.9366 47.4931 18.0979 46.6 16.3292 45.5858C16.1893 45.5041 16.1781 45.304 16.3068 45.2082C16.679 44.9293 17.0513 44.6391 17.4067 44.3461C17.471 44.2926 17.5606 44.2813 17.6362 44.3151C29.2558 49.6202 41.8354 49.6202 53.3179 44.3151C53.3935 44.2785 53.4831 44.2898 53.5502 44.3433C53.9057 44.6363 54.2779 44.9293 54.6529 45.2082C54.7816 45.304 54.7732 45.5041 54.6333 45.5858C52.8646 46.6197 51.0259 47.4931 49.0921 48.2228C48.9662 48.2707 48.9102 48.4172 48.9718 48.5383C50.038 50.6034 51.2554 52.5699 52.5959 54.435C52.6519 54.5139 52.7526 54.5477 52.845 54.5195C58.6464 52.7249 64.529 50.0174 70.6019 45.5576C70.6551 45.5182 70.6887 45.459 70.6943 45.3942C72.1747 30.0791 68.2147 16.7757 60.1968 4.9823C60.1772 4.9429 60.1437 4.9147 60.1045 4.8978ZM23.7259 37.3253C20.2276 37.3253 17.3451 34.1136 17.3451 30.1693C17.3451 26.225 20.1717 23.0133 23.7259 23.0133C27.308 23.0133 30.1626 26.2532 30.1066 30.1693C30.1066 34.1136 27.28 37.3253 23.7259 37.3253ZM47.3178 37.3253C43.8196 37.3253 40.9371 34.1136 40.9371 30.1693C40.9371 26.225 43.7636 23.0133 47.3178 23.0133C50.9 23.0133 53.7545 26.2532 53.6986 30.1693C53.6986 34.1136 50.9 37.3253 47.3178 37.3253Z",fill:"#5865F2"})}),_n("defs",{children:_n("clipPath",{id:"clip0",children:_n("rect",{width:"71",height:"55",fill:"white"})})})]});import{jsx as Xp}from"react/jsx-runtime";var ta=({style:e,...t})=>Xp("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"24",y:"24",viewBox:"0 0 98 96",style:{height:"24px",...e},...t,children:Xp("path",{d:"M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z",fill:"currentColor"})});import{jsx as oa,jsxs as Pv}from"react/jsx-runtime";var ra=({style:e,...t})=>Pv("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"26px",width:"26px",...e},...t,children:[oa("path",{d:"M22.56 12.25C22.56 11.47 22.49 10.72 22.36 10H12V14.255H17.92C17.665 15.63 16.89 16.795 15.725 17.575V20.335H19.28C21.36 18.42 22.56 15.6 22.56 12.25Z",fill:"#4285F4"}),oa("path",{d:"M12 23C14.97 23 17.46 22.015 19.28 20.335L15.725 17.575C14.74 18.235 13.48 18.625 12 18.625C9.13504 18.625 6.71004 16.69 5.84504 14.09H2.17004V16.94C3.98004 20.535 7.70004 23 12 23Z",fill:"#34A853"}),oa("path",{d:"M5.845 14.09C5.625 13.43 5.5 12.725 5.5 12C5.5 11.275 5.625 10.57 5.845 9.91V7.06H2.17C1.4 8.59286 0.999321 10.2846 1 12C1 13.775 1.425 15.455 2.17 16.94L5.845 14.09Z",fill:"#FBBC05"}),oa("path",{d:"M12 5.375C13.615 5.375 15.065 5.93 16.205 7.02L19.36 3.865C17.455 2.09 14.965 1 12 1C7.70004 1 3.98004 3.465 2.17004 7.06L5.84504 9.91C6.71004 7.31 9.13504 5.375 12 5.375Z",fill:"#EA4335"})]});import{jsx as na}from"react/jsx-runtime";function ia({style:e,...t}){return na("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",viewBox:"0,0,256,256",style:{height:"26px",width:"26px",...e},...t,children:na("g",{fill:"#0077b5",strokeWidth:"1",strokeLinecap:"butt",strokeLinejoin:"miter",strokeMiterlimit:"10",style:{mixBlendMode:"normal"},children:na("g",{transform:"scale(5.12,5.12)",children:na("path",{d:"M41,4h-32c-2.76,0 -5,2.24 -5,5v32c0,2.76 2.24,5 5,5h32c2.76,0 5,-2.24 5,-5v-32c0,-2.76 -2.24,-5 -5,-5zM17,20v19h-6v-19zM11,14.47c0,-1.4 1.2,-2.47 3,-2.47c1.8,0 2.93,1.07 3,2.47c0,1.4 -1.12,2.53 -3,2.53c-1.8,0 -3,-1.13 -3,-2.53zM39,39h-6c0,0 0,-9.26 0,-10c0,-2 -1,-4 -3.5,-4.04h-0.08c-2.42,0 -3.42,2.06 -3.42,4.04c0,0.91 0,10 0,10h-6v-19h6v2.56c0,0 1.93,-2.56 5.81,-2.56c3.97,0 7.19,2.73 7.19,8.26z"})})})})}import{jsx as $s,jsxs as xv}from"react/jsx-runtime";function aa(e){return xv("svg",{xmlns:"http://www.w3.org/2000/svg",fillRule:"evenodd",clipRule:"evenodd",imageRendering:"optimizeQuality",shapeRendering:"geometricPrecision",textRendering:"geometricPrecision",viewBox:"0 0 293768 333327",width:24,height:24,...e,children:[$s("path",{fill:"#26f4ee",d:"M204958 0c5369 45832 32829 78170 77253 81022v43471l-287 27V87593c-44424-2850-69965-30183-75333-76015l-47060-1v192819c6791 86790-60835 89368-86703 56462 30342 18977 79608 6642 73766-68039V0h58365zM78515 319644c-26591-5471-50770-21358-64969-44588-34496-56437-3401-148418 96651-157884v54345l-164 27v-40773C17274 145544 7961 245185 33650 286633c9906 15984 26169 27227 44864 33011z"}),$s("path",{fill:"#fb2c53",d:"M218434 11587c3505 29920 15609 55386 35948 70259-27522-10602-43651-34934-47791-70262l11843 3zm63489 82463c3786 804 7734 1348 11844 1611v51530c-25770 2537-48321-5946-74600-21749l4034 88251c0 28460 106 41467-15166 67648-34260 58734-95927 63376-137628 35401 54529 22502 137077-4810 136916-103049v-96320c26279 15803 48830 24286 74600 21748V94050zm-171890 37247c5390-1122 11048-1985 16998-2548v54345c-21666 3569-35427 10222-41862 22528-20267 38754 5827 69491 35017 74111-33931 5638-73721-28750-49999-74111 6434-12304 18180-18959 39846-22528v-51797zm64479-119719h1808-1808z"}),$s("path",{d:"M206590 11578c5369 45832 30910 73164 75333 76015v51528c-25770 2539-48321-5945-74600-21748v96320c206 125717-135035 135283-173673 72939-25688-41449-16376-141089 76383-155862v52323c-21666 3569-33412 10224-39846 22528-39762 76035 98926 121273 89342-1225V11577l47060 1z",fill:"currentColor"})]})}import{jsx as eu}from"react/jsx-runtime";var sa=({style:e,...t})=>eu("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"24px",width:"24px",...e},...t,children:eu("path",{d:"M 14.285156 10.171875 L 23.222656 0 L 21.105469 0 L 13.34375 8.832031 L 7.148438 0 L 0 0 L 9.371094 13.355469 L 0 24.019531 L 2.117188 24.019531 L 10.308594 14.691406 L 16.851562 24.019531 L 24 24.019531 M 2.878906 1.5625 L 6.132812 1.5625 L 21.101562 22.535156 L 17.851562 22.535156 ",fill:"currentColor"})});import{jsx as Jo,jsxs as _v}from"react/jsx-runtime";var Sv={apple:{logo:Jo(Xi,{}),displayName:"Apple"},discord:{logo:Jo(ea,{}),displayName:"Discord"},github:{logo:Jo(ta,{}),displayName:"GitHub"},google:{logo:Jo(ra,{}),displayName:"Google"},linkedin:{logo:Jo(ia,{}),displayName:"LinkedIn"},twitter:{logo:Jo(sa,{}),displayName:"Twitter"},tiktok:{logo:Jo(aa,{}),displayName:"TikTok"}},So=({provider:e})=>{let[t,o]=Tv(!1),{initLoginWithOAuth:r}=k(),{displayName:n,logo:i}=Sv[e];return _v(ve,{onClick:()=>{o(!0),r(e),o(!1)},disabled:t,children:[i," ",n]})};import kv from"@heroicons/react/24/outline/ChevronRightIcon";import Av from"@heroicons/react/24/outline/WalletIcon";import{jsx as js,jsxs as Rv}from"react/jsx-runtime";var tu=({onClick:e,text:t})=>Rv(ve,{onClick:e,children:[js(Av,{}),js(Ri,{children:t}),js(kv,{})]});import Iv from"@heroicons/react/24/outline/ChevronRightIcon";import{jsx as ou,jsxs as Wv}from"react/jsx-runtime";var ru=({onClick:e,text:t,icon:o})=>Wv(ve,{onClick:e,children:[o,ou(Ri,{children:t}),ou(Iv,{})]});import{Fragment as kn,jsx as fe,jsxs as Lr}from"react/jsx-runtime";var iu=()=>{let{closePrivyModal:e,connectors:t}=k(),{app:o,onUserCloseViaDialogOrKeybindRef:r}=S(),{email:n,sms:i,google:a,twitter:l,discord:s,github:c,tiktok:u,linkedin:y,apple:C,wallet:m}=o?.loginMethods??{},P=o?.appearance.loginGroupPriority||"web2-first",b=o?.appearance.hideDirectWeb2Inputs,[x,v]=nu("default"),[R,M]=nu(n?"email":"sms");Ov(()=>{M(n?"email":"sms")},[n]);let W=()=>{e({shouldCallAuthOnSuccess:!0}),setTimeout(()=>{v("default")},150)};r.current=W;let I=[n&&fe($p,{isEditable:R==="email",setIsEditable:()=>{M("email")}}),i&&fe(Qp,{isEditable:R==="sms",setIsEditable:()=>{M("sms")}})].filter(Boolean),A=[a&&fe(So,{provider:"google"}),l&&fe(So,{provider:"twitter"}),s&&fe(So,{provider:"discord"}),c&&fe(So,{provider:"github"}),u&&fe(So,{provider:"tiktok"}),y&&fe(So,{provider:"linkedin"}),C&&fe(So,{provider:"apple"})].filter(Boolean),L=ys(o?.appearance.walletList??[],t,!1),D=x==="default"?void 0:()=>{v("default")},B=Fv({priority:P,email:n,sms:i,social:A}),U=Bv({priority:P,email:n,sms:i,social:A}),_=Gv({priority:P,email:n,sms:i,social:A}),Z=fe(tu,{text:_,onClick:()=>v("web3-overflow")}),ne=fe(ru,{text:B,icon:U,onClick:()=>v("web2-overflow")}),he=b?0:1;return Lr(kn,{children:[fe(T,{title:"Log in or Sign Up",onClose:W,backFn:D}),x==="default"&&fe(Uv,{}),fe(xd,{style:{overflow:"hidden",padding:2},children:Lr(Co,{children:[x==="default"&&P==="web2-first"&&Lr(kn,{children:[...I,...A.length+I.length>4?A.slice(0,3-I.length):A,I.length+A.length>4&&ne,m&&Z]}),x==="default"&&P==="web3-first"&&Lr(kn,{children:[m&&Lr(kn,{children:[...L.length>4?L.slice(0,3):L,L.length>4&&Z]}),I.length+A.length>he&&ne,I.length+A.length===he&&I.length?I[0]:null,I.length+A.length===he&&A.length?A[0]:null]}),x==="web2-overflow"&&Lr(kn,{children:[...P==="web3-first"?I:[],...A]}),...x==="web3-overflow"?L:[]]})}),o&&fe(ki,{app:o}),fe(G,{protectedByPrivy:!0})]})},Uv=Dv(Wi)`
1395
1395
  margin-bottom: 16px;
1396
- `,Fv=({priority:e,email:t,sms:o,social:r})=>e==="web2-first"?"Other socials":t&&o&&r.length>0||t&&r.length>0?"Log in with email or socials":o&&r.length>0?"Log in with sms or socials":t&&o?"Continue with email or sms":t?"Continue with email":o?"Continue with sms":"Log in with a social account",Bv=({priority:e,email:t,sms:o,social:r})=>e==="web2-first"||r.length>0?me(Nv,{}):t&&o?me(Up,{}):t?me(Mv,{}):o?me(Lv,{}):null,Gv=({priority:e})=>e==="web2-first"?"Continue with a wallet":"Other wallets";import{EnvelopeIcon as Hv}from"@heroicons/react/24/outline";import{Fragment as zv,jsx as _o,jsxs as Vv}from"react/jsx-runtime";var iu=()=>{let{app:e}=S();return Vv(zv,{children:[_o(T,{},"header"),_o(j,{}),_o(ye,{title:"Connect your email",description:`Add your email to your ${e?.name} account`,icon:_o(Hv,{color:"var(--privy-color-accent)",strokeWidth:2,height:"48px",width:"48px"})}),_o(yo,{children:_o(qi,{stacked:!0})}),_o(K,{}),_o(G,{protectedByPrivy:!0})]})};import{PhoneIcon as $v}from"@heroicons/react/24/outline";import{Fragment as jv,jsx as ko,jsxs as qv}from"react/jsx-runtime";var au=()=>{let{app:e,navigate:t}=S(),{initLoginWithSms:o}=k();async function r({qualifiedPhoneNumber:n,captchaToken:i}){await o(n,i),t("AWAITING_PASSWORDLESS_CODE")}return qv(jv,{children:[ko(T,{},"header"),ko(j,{}),ko(ye,{title:"Connect your phone",description:`Add your number to your ${e?.name} account`,icon:ko($v,{color:"var(--privy-color-accent)",strokeWidth:2,height:"40px",width:"40px"})}),ko(yo,{children:ko(Wr,{stacked:!0,onSubmit:r})}),ko(K,{}),ko(G,{protectedByPrivy:!0})]})};import{Fragment as Kv,jsx as An,jsxs as Yv}from"react/jsx-runtime";var su=()=>{let{linkingHint:e}=k(),{app:t}=S(),o=e?`Select the wallet with ${uo(e)} and follow the instructions to reconnect your wallet${t?.name?` to ${t.name}.`:"."}`:`Link a wallet to your ${t?.name} account`;return Yv(Kv,{children:[An(T,{},"header"),An(vo,{title:`${e?"Reconnect":"Connect"} your wallet`,description:o}),An(Co,{children:An(gr,{connectOnly:!1})}),An(G,{protectedByPrivy:!0})]})};import{jsx as lu,jsxs as Jv}from"react/jsx-runtime";var cu=({style:e,...t})=>Jv("svg",{width:"164",height:"164",viewBox:"0 0 164 164",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"26px",width:"26px",...e},...t,children:[lu("circle",{cx:"82",cy:"82",r:"80",stroke:"#EC6351","stroke-width":"4","stroke-linecap":"round"}),lu("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M81.9999 100.788C93.3288 100.788 102.513 91.6043 102.513 80.2754C102.513 68.9465 93.3288 59.7626 81.9999 59.7626C70.671 59.7626 61.4871 68.9465 61.4871 80.2754C61.4871 91.6043 70.671 100.788 81.9999 100.788ZM88.3236 71.8304C88.9093 71.2446 89.8591 71.2446 90.4449 71.8304C91.0307 72.4161 91.0307 73.3659 90.4449 73.9517L84.121 80.2756L90.445 86.5996C91.0308 87.1854 91.0308 88.1351 90.445 88.7209C89.8592 89.3067 88.9095 89.3067 88.3237 88.7209L81.9997 82.3969L75.6756 88.7209C75.0899 89.3067 74.1401 89.3067 73.5543 88.7209C72.9685 88.1351 72.9685 87.1854 73.5543 86.5996L79.8783 80.2756L73.5544 73.9517C72.9686 73.3659 72.9686 72.4161 73.5544 71.8304C74.1402 71.2446 75.09 71.2446 75.6758 71.8304L81.9997 78.1543L88.3236 71.8304Z",fill:"#EC6351"})]});import{Fragment as Qv,jsx as Ao,jsxs as du}from"react/jsx-runtime";var pu=()=>{let{closePrivyModal:e}=k(),{navigate:t}=S();return du(Qv,{children:[Ao(T,{},"header"),Ao(j,{}),Ao(cu,{style:{width:"160px",height:"160px",margin:"0 auto 20px"}}),Ao(vo,{title:"Could not connect with wallet",description:"Please check that Phantom multichain is enabled and try again.",style:{display:"flex",flexDirection:"column",alignItems:"center",justifyContent:"center",textAlign:"center"}}),du(yo,{children:[Ao(F,{onClick:()=>t("LANDING"),children:"Try again"}),Ao(Yt,{onClick:()=>e(),children:"Cancel"})]}),Ao(K,{}),Ao(G,{protectedByPrivy:!0})]})};import{CheckIcon as Mu}from"@heroicons/react/20/solid";import{DevicePhoneMobileIcon as Mw,FingerPrintIcon as Lw,PhoneIcon as Nw,TrashIcon as Lu}from"@heroicons/react/24/outline";import{CheckCircleIcon as Nu,DevicePhoneMobileIcon as Ou,PhoneIcon as ol}from"@heroicons/react/24/solid";import{ShieldCheckIcon as tl}from"@heroicons/react/24/solid";import{CheckBadgeIcon as Ow,IdentificationIcon as Dw}from"@heroicons/react/24/solid";import{useEffect as Du,useState as oo}from"react";import{useState as Zv}from"react";import Xv from"styled-components";import{jsx as uu}from"react/jsx-runtime";var la=({style:e,color:t,...o})=>uu("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:t||"currentColor",style:{height:"1.5rem",width:"1.5rem",...e},...o,children:uu("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M4.5 12.75l6 6 9-13.5"})});import{jsx as qs}from"react/jsx-runtime";var mu=({color:e,...t})=>qs("svg",{version:"1.1",id:"Layer_1",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",x:"0px",y:"0px",viewBox:"0 0 115.77 122.88",xmlSpace:"preserve",...t,children:qs("g",{children:qs("path",{fill:e||"currentColor",className:"st0",d:"M89.62,13.96v7.73h12.19h0.01v0.02c3.85,0.01,7.34,1.57,9.86,4.1c2.5,2.51,4.06,5.98,4.07,9.82h0.02v0.02 v73.27v0.01h-0.02c-0.01,3.84-1.57,7.33-4.1,9.86c-2.51,2.5-5.98,4.06-9.82,4.07v0.02h-0.02h-61.7H40.1v-0.02 c-3.84-0.01-7.34-1.57-9.86-4.1c-2.5-2.51-4.06-5.98-4.07-9.82h-0.02v-0.02V92.51H13.96h-0.01v-0.02c-3.84-0.01-7.34-1.57-9.86-4.1 c-2.5-2.51-4.06-5.98-4.07-9.82H0v-0.02V13.96v-0.01h0.02c0.01-3.85,1.58-7.34,4.1-9.86c2.51-2.5,5.98-4.06,9.82-4.07V0h0.02h61.7 h0.01v0.02c3.85,0.01,7.34,1.57,9.86,4.1c2.5,2.51,4.06,5.98,4.07,9.82h0.02V13.96L89.62,13.96z M79.04,21.69v-7.73v-0.02h0.02 c0-0.91-0.39-1.75-1.01-2.37c-0.61-0.61-1.46-1-2.37-1v0.02h-0.01h-61.7h-0.02v-0.02c-0.91,0-1.75,0.39-2.37,1.01 c-0.61,0.61-1,1.46-1,2.37h0.02v0.01v64.59v0.02h-0.02c0,0.91,0.39,1.75,1.01,2.37c0.61,0.61,1.46,1,2.37,1v-0.02h0.01h12.19V35.65 v-0.01h0.02c0.01-3.85,1.58-7.34,4.1-9.86c2.51-2.5,5.98-4.06,9.82-4.07v-0.02h0.02H79.04L79.04,21.69z M105.18,108.92V35.65v-0.02 h0.02c0-0.91-0.39-1.75-1.01-2.37c-0.61-0.61-1.46-1-2.37-1v0.02h-0.01h-61.7h-0.02v-0.02c-0.91,0-1.75,0.39-2.37,1.01 c-0.61,0.61-1,1.46-1,2.37h0.02v0.01v73.27v0.02h-0.02c0,0.91,0.39,1.75,1.01,2.37c0.61,0.61,1.46,1,2.37,1v-0.02h0.01h61.7h0.02 v0.02c0.91,0,1.75-0.39,2.37-1.01c0.61-0.61,1-1.46,1-2.37h-0.02V108.92L105.18,108.92z"})})});import{jsx as fu,jsxs as tw}from"react/jsx-runtime";var hu=e=>{let[t,o]=Zv(!1);return tw(ew,{onClick:()=>{o(!0),navigator.clipboard.writeText(e.text),setTimeout(()=>o(!1),1500)},justCopied:t,children:[t?fu(la,{style:{height:"14px",width:"14px"},strokeWidth:"2"}):fu(mu,{style:{height:"14px",width:"14px"}}),t?"Copied":"Copy"," ",e.itemName?e.itemName:"to Clipboard"]})},ew=Xv.button`
1396
+ `,Fv=({priority:e,email:t,sms:o,social:r})=>e==="web2-first"?"Other socials":t&&o&&r.length>0||t&&r.length>0?"Log in with email or socials":o&&r.length>0?"Log in with sms or socials":t&&o?"Continue with email or sms":t?"Continue with email":o?"Continue with sms":"Log in with a social account",Bv=({priority:e,email:t,sms:o,social:r})=>e==="web2-first"||r.length>0?fe(Nv,{}):t&&o?fe(Fp,{}):t?fe(Mv,{}):o?fe(Lv,{}):null,Gv=({priority:e})=>e==="web2-first"?"Continue with a wallet":"Other wallets";import{EnvelopeIcon as Hv}from"@heroicons/react/24/outline";import{Fragment as zv,jsx as _o,jsxs as Vv}from"react/jsx-runtime";var au=()=>{let{app:e}=S();return Vv(zv,{children:[_o(T,{},"header"),_o(j,{}),_o(ge,{title:"Connect your email",description:`Add your email to your ${e?.name} account`,icon:_o(Hv,{color:"var(--privy-color-accent)",strokeWidth:2,height:"48px",width:"48px"})}),_o(yo,{children:_o(qi,{stacked:!0})}),_o(K,{}),_o(G,{protectedByPrivy:!0})]})};import{PhoneIcon as $v}from"@heroicons/react/24/outline";import{Fragment as jv,jsx as ko,jsxs as qv}from"react/jsx-runtime";var su=()=>{let{app:e,navigate:t}=S(),{initLoginWithSms:o}=k();async function r({qualifiedPhoneNumber:n,captchaToken:i}){await o(n,i),t("AWAITING_PASSWORDLESS_CODE")}return qv(jv,{children:[ko(T,{},"header"),ko(j,{}),ko(ge,{title:"Connect your phone",description:`Add your number to your ${e?.name} account`,icon:ko($v,{color:"var(--privy-color-accent)",strokeWidth:2,height:"40px",width:"40px"})}),ko(yo,{children:ko(Mr,{stacked:!0,onSubmit:r})}),ko(K,{}),ko(G,{protectedByPrivy:!0})]})};import{Fragment as Kv,jsx as An,jsxs as Yv}from"react/jsx-runtime";var lu=()=>{let{linkingHint:e}=k(),{app:t}=S(),o=e?`Select the wallet with ${uo(e)} and follow the instructions to reconnect your wallet${t?.name?` to ${t.name}.`:"."}`:`Link a wallet to your ${t?.name} account`;return Yv(Kv,{children:[An(T,{},"header"),An(vo,{title:`${e?"Reconnect":"Connect"} your wallet`,description:o}),An(Co,{children:An(wr,{connectOnly:!1})}),An(G,{protectedByPrivy:!0})]})};import{jsx as cu,jsxs as Jv}from"react/jsx-runtime";var du=({style:e,...t})=>Jv("svg",{width:"164",height:"164",viewBox:"0 0 164 164",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"26px",width:"26px",...e},...t,children:[cu("circle",{cx:"82",cy:"82",r:"80",stroke:"#EC6351","stroke-width":"4","stroke-linecap":"round"}),cu("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M81.9999 100.788C93.3288 100.788 102.513 91.6043 102.513 80.2754C102.513 68.9465 93.3288 59.7626 81.9999 59.7626C70.671 59.7626 61.4871 68.9465 61.4871 80.2754C61.4871 91.6043 70.671 100.788 81.9999 100.788ZM88.3236 71.8304C88.9093 71.2446 89.8591 71.2446 90.4449 71.8304C91.0307 72.4161 91.0307 73.3659 90.4449 73.9517L84.121 80.2756L90.445 86.5996C91.0308 87.1854 91.0308 88.1351 90.445 88.7209C89.8592 89.3067 88.9095 89.3067 88.3237 88.7209L81.9997 82.3969L75.6756 88.7209C75.0899 89.3067 74.1401 89.3067 73.5543 88.7209C72.9685 88.1351 72.9685 87.1854 73.5543 86.5996L79.8783 80.2756L73.5544 73.9517C72.9686 73.3659 72.9686 72.4161 73.5544 71.8304C74.1402 71.2446 75.09 71.2446 75.6758 71.8304L81.9997 78.1543L88.3236 71.8304Z",fill:"#EC6351"})]});import{Fragment as Qv,jsx as Ao,jsxs as pu}from"react/jsx-runtime";var uu=()=>{let{closePrivyModal:e}=k(),{navigate:t}=S();return pu(Qv,{children:[Ao(T,{},"header"),Ao(j,{}),Ao(du,{style:{width:"160px",height:"160px",margin:"0 auto 20px"}}),Ao(vo,{title:"Could not connect with wallet",description:"Please check that Phantom multichain is enabled and try again.",style:{display:"flex",flexDirection:"column",alignItems:"center",justifyContent:"center",textAlign:"center"}}),pu(yo,{children:[Ao(F,{onClick:()=>t("LANDING"),children:"Try again"}),Ao(Yt,{onClick:()=>e(),children:"Cancel"})]}),Ao(K,{}),Ao(G,{protectedByPrivy:!0})]})};import{CheckIcon as Lu}from"@heroicons/react/20/solid";import{DevicePhoneMobileIcon as Mw,FingerPrintIcon as Lw,PhoneIcon as Nw,TrashIcon as Nu}from"@heroicons/react/24/outline";import{CheckCircleIcon as Ou,DevicePhoneMobileIcon as Du,PhoneIcon as ol}from"@heroicons/react/24/solid";import{ShieldCheckIcon as tl}from"@heroicons/react/24/solid";import{CheckBadgeIcon as Ow,IdentificationIcon as Dw}from"@heroicons/react/24/solid";import{useEffect as Uu,useState as oo}from"react";import{useState as Zv}from"react";import Xv from"styled-components";import{jsx as mu}from"react/jsx-runtime";var la=({style:e,color:t,...o})=>mu("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:t||"currentColor",style:{height:"1.5rem",width:"1.5rem",...e},...o,children:mu("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M4.5 12.75l6 6 9-13.5"})});import{jsx as qs}from"react/jsx-runtime";var fu=({color:e,...t})=>qs("svg",{version:"1.1",id:"Layer_1",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",x:"0px",y:"0px",viewBox:"0 0 115.77 122.88",xmlSpace:"preserve",...t,children:qs("g",{children:qs("path",{fill:e||"currentColor",className:"st0",d:"M89.62,13.96v7.73h12.19h0.01v0.02c3.85,0.01,7.34,1.57,9.86,4.1c2.5,2.51,4.06,5.98,4.07,9.82h0.02v0.02 v73.27v0.01h-0.02c-0.01,3.84-1.57,7.33-4.1,9.86c-2.51,2.5-5.98,4.06-9.82,4.07v0.02h-0.02h-61.7H40.1v-0.02 c-3.84-0.01-7.34-1.57-9.86-4.1c-2.5-2.51-4.06-5.98-4.07-9.82h-0.02v-0.02V92.51H13.96h-0.01v-0.02c-3.84-0.01-7.34-1.57-9.86-4.1 c-2.5-2.51-4.06-5.98-4.07-9.82H0v-0.02V13.96v-0.01h0.02c0.01-3.85,1.58-7.34,4.1-9.86c2.51-2.5,5.98-4.06,9.82-4.07V0h0.02h61.7 h0.01v0.02c3.85,0.01,7.34,1.57,9.86,4.1c2.5,2.51,4.06,5.98,4.07,9.82h0.02V13.96L89.62,13.96z M79.04,21.69v-7.73v-0.02h0.02 c0-0.91-0.39-1.75-1.01-2.37c-0.61-0.61-1.46-1-2.37-1v0.02h-0.01h-61.7h-0.02v-0.02c-0.91,0-1.75,0.39-2.37,1.01 c-0.61,0.61-1,1.46-1,2.37h0.02v0.01v64.59v0.02h-0.02c0,0.91,0.39,1.75,1.01,2.37c0.61,0.61,1.46,1,2.37,1v-0.02h0.01h12.19V35.65 v-0.01h0.02c0.01-3.85,1.58-7.34,4.1-9.86c2.51-2.5,5.98-4.06,9.82-4.07v-0.02h0.02H79.04L79.04,21.69z M105.18,108.92V35.65v-0.02 h0.02c0-0.91-0.39-1.75-1.01-2.37c-0.61-0.61-1.46-1-2.37-1v0.02h-0.01h-61.7h-0.02v-0.02c-0.91,0-1.75,0.39-2.37,1.01 c-0.61,0.61-1,1.46-1,2.37h0.02v0.01v73.27v0.02h-0.02c0,0.91,0.39,1.75,1.01,2.37c0.61,0.61,1.46,1,2.37,1v-0.02h0.01h61.7h0.02 v0.02c0.91,0,1.75-0.39,2.37-1.01c0.61-0.61,1-1.46,1-2.37h-0.02V108.92L105.18,108.92z"})})});import{jsx as hu,jsxs as tw}from"react/jsx-runtime";var yu=e=>{let[t,o]=Zv(!1);return tw(ew,{onClick:()=>{o(!0),navigator.clipboard.writeText(e.text),setTimeout(()=>o(!1),1500)},justCopied:t,children:[t?hu(la,{style:{height:"14px",width:"14px"},strokeWidth:"2"}):hu(fu,{style:{height:"14px",width:"14px"}}),t?"Copied":"Copy"," ",e.itemName?e.itemName:"to Clipboard"]})},ew=Xv.button`
1397
1397
  display: flex;
1398
1398
  align-items: center;
1399
1399
  gap: 6px;
@@ -1431,7 +1431,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1431
1431
  width: 14px;
1432
1432
  height: 14px;
1433
1433
  }
1434
- `;import{useState as Ks}from"react";import{isMobile as lw}from"react-device-detect";import Eu from"styled-components";import"wicg-inert";import{useCallback as yu,useRef as ow}from"react";import{useEffect as rw}from"react";import ca from"styled-components";import{Fragment as aw,jsx as gu,jsxs as sw}from"react/jsx-runtime";var nw=({children:e,open:t,onClick:o,...r})=>{let n=ow(null);return rw(()=>{let i=document.getElementById("root")??document.getElementById("__next");t?(i&&i.setAttribute("inert","true"),n.current&&(document.body.style.touchAction="none",document.body.style.overflow="hidden"),n.current?.show()):(i&&i.removeAttribute("inert"),n.current?.close(),document.body.style.removeProperty("touch-action"),document.body.style.removeProperty("overflow"))},[t]),sw(aw,{children:[gu(iw,{className:t?"open":"",onClick:o}),gu("dialog",{role:"dialog",...r,ref:n,children:e})]})},vu=e=>{let{closePrivyModal:t}=k(),{app:o,onUserCloseViaDialogOrKeybindRef:r}=S(),n=yu(()=>{if(e)e();else if(r?.current)r.current(),r.current=null;else return t({shouldCallAuthOnSuccess:!1})},[t]),i=yu(a=>{a.key==="Escape"&&o?.render.inDialog&&n()},[o?.render.inDialog,n]);return{gracefulClosePrivyModal:n,onEscape:i}},Lr=ca.div`
1434
+ `;import{useState as Ks}from"react";import{isMobile as lw}from"react-device-detect";import Pu from"styled-components";import"wicg-inert";import{useCallback as gu,useRef as ow}from"react";import{useEffect as rw}from"react";import ca from"styled-components";import{Fragment as aw,jsx as vu,jsxs as sw}from"react/jsx-runtime";var nw=({children:e,open:t,onClick:o,...r})=>{let n=ow(null);return rw(()=>{let i=document.getElementById("root")??document.getElementById("__next");t?(i&&i.setAttribute("inert","true"),n.current&&(document.body.style.touchAction="none",document.body.style.overflow="hidden"),n.current?.show()):(i&&i.removeAttribute("inert"),n.current?.close(),document.body.style.removeProperty("touch-action"),document.body.style.removeProperty("overflow"))},[t]),sw(aw,{children:[vu(iw,{className:t?"open":"",onClick:o}),vu("dialog",{role:"dialog",...r,ref:n,children:e})]})},wu=e=>{let{closePrivyModal:t}=k(),{app:o,onUserCloseViaDialogOrKeybindRef:r}=S(),n=gu(()=>{if(e)e();else if(r?.current)r.current(),r.current=null;else return t({shouldCallAuthOnSuccess:!1})},[t]),i=gu(a=>{a.key==="Escape"&&o?.render.inDialog&&n()},[o?.render.inDialog,n]);return{gracefulClosePrivyModal:n,onEscape:i}},Qo=ca.div`
1435
1435
  display: flex;
1436
1436
  flex-direction: column;
1437
1437
  text-align: center;
@@ -1466,7 +1466,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1466
1466
  -webkit-backdrop-filter: blur(3px);
1467
1467
  backdrop-filter: blur(3px);
1468
1468
  }
1469
- `,wu=ca(nw)`
1469
+ `,Cu=ca(nw)`
1470
1470
  // reset some default dialog styles
1471
1471
  padding: 0;
1472
1472
  background: transparent;
@@ -1531,23 +1531,23 @@ You will need this password to access your ${e} wallet on a new device. Please k
1531
1531
  }
1532
1532
 
1533
1533
  :not([open]) {
1534
- ${Lr} {
1534
+ ${Qo} {
1535
1535
  transition: none;
1536
1536
  }
1537
1537
  }
1538
- `,Cu=ca.div`
1538
+ `,bu=ca.div`
1539
1539
  display: flex;
1540
1540
  flex-direction: column;
1541
1541
  align-items: center;
1542
1542
  justify-content: center;
1543
1543
  height: 100%;
1544
- `;import{Fragment as hw,jsx as Rn,jsxs as fw}from"react/jsx-runtime";var In=6,cw=new Array(In).fill("");function dw(e){return e.replace(/\s+/g,"")}function Ys(e){return/^[0-9]{1}$/.test(e)}function bu(e){return e.length===In&&e.every(Ys)}function pw(e,t){return e.reduce((o,r)=>o+Number(t(r)),0)}var Nr=({onChange:e,disabled:t,errorReasonOverride:o,success:r})=>{let[n,i]=Ks(cw),[a,l]=Ks(null),[s,c]=Ks(null),u=async P=>{P.preventDefault();let b=dw(P.currentTarget.value);if(b==="")return;let x=pw(n,Ys),v=b.split(""),R=!v.every(Ys),M=v.length+x>In;if(R){l("Passcode can only be numbers"),c(1);return}if(M){l("Passcode must be exactly 6 numbers"),c(1);return}l(null),c(null);let W=Number(P.currentTarget.name?.charAt(4)),I=[...b||[""]].slice(0,In-W),A=[...n.slice(0,W),...I,...n.slice(W+I.length)];i(A);let L=I.length,O=Math.min(Math.max(W+L,0),In-1);if(document.querySelector(`input[name=pin-${O}]`)?.focus(),bu(A))try{await e(A.join("")),document.querySelector(`input[name=pin-${O}]`)?.blur()}catch(D){c(1),l(D.message)}else try{await e(null)}catch(D){c(1),l(D.message)}},y=P=>{s===1&&(l(null),c(null));let b=[...n.slice(0,P),"",...n.slice(P+1)];i(b),P>0&&document.querySelector(`input[name=pin-${P-1}]`)?.focus(),bu(b)?e(b.join("")):e(null)},m=r?"success":!!(o||a)?"fail":"";return Rn(hw,{children:fw(uw,{children:[Rn("div",{children:n.map((P,b)=>Rn("input",{name:`pin-${b}`,type:"text",value:n[b],onChange:u,onKeyUp:x=>{x.key==="Backspace"&&y(b)},inputMode:"numeric",autoFocus:b===0,pattern:"[0-9]",className:m,autoComplete:lw?"one-time-code":"off",disabled:t},b))}),Rn("div",{children:Rn(mw,{fail:!!o||!!a,children:o||a})})]})})},uw=Eu.div`
1544
+ `;import{Fragment as hw,jsx as Rn,jsxs as fw}from"react/jsx-runtime";var In=6,cw=new Array(In).fill("");function dw(e){return e.replace(/\s+/g,"")}function Ys(e){return/^[0-9]{1}$/.test(e)}function Eu(e){return e.length===In&&e.every(Ys)}function pw(e,t){return e.reduce((o,r)=>o+Number(t(r)),0)}var Nr=({onChange:e,disabled:t,errorReasonOverride:o,success:r})=>{let[n,i]=Ks(cw),[a,l]=Ks(null),[s,c]=Ks(null),u=async P=>{P.preventDefault();let b=dw(P.currentTarget.value);if(b==="")return;let x=pw(n,Ys),v=b.split(""),R=!v.every(Ys),M=v.length+x>In;if(R){l("Passcode can only be numbers"),c(1);return}if(M){l("Passcode must be exactly 6 numbers"),c(1);return}l(null),c(null);let W=Number(P.currentTarget.name?.charAt(4)),I=[...b||[""]].slice(0,In-W),A=[...n.slice(0,W),...I,...n.slice(W+I.length)];i(A);let L=I.length,D=Math.min(Math.max(W+L,0),In-1);if(document.querySelector(`input[name=pin-${D}]`)?.focus(),Eu(A))try{await e(A.join("")),document.querySelector(`input[name=pin-${D}]`)?.blur()}catch(U){c(1),l(U.message)}else try{await e(null)}catch(U){c(1),l(U.message)}},y=P=>{s===1&&(l(null),c(null));let b=[...n.slice(0,P),"",...n.slice(P+1)];i(b),P>0&&document.querySelector(`input[name=pin-${P-1}]`)?.focus(),Eu(b)?e(b.join("")):e(null)},m=r?"success":!!(o||a)?"fail":"";return Rn(hw,{children:fw(uw,{children:[Rn("div",{children:n.map((P,b)=>Rn("input",{name:`pin-${b}`,type:"text",value:n[b],onChange:u,onKeyUp:x=>{x.key==="Backspace"&&y(b)},inputMode:"numeric",autoFocus:b===0,pattern:"[0-9]",className:m,autoComplete:lw?"one-time-code":"off",disabled:t},b))}),Rn("div",{children:Rn(mw,{fail:!!o||!!a,children:o||a})})]})})},uw=Pu.div`
1545
1545
  display: flex;
1546
1546
  flex-direction: column;
1547
1547
  width: 100%;
1548
1548
  gap: 8px;
1549
1549
 
1550
- ${Lr}[data-height='medium'] & {
1550
+ ${Qo}[data-height='medium'] & {
1551
1551
  margin-top: 22px;
1552
1552
  }
1553
1553
 
@@ -1612,7 +1612,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1612
1612
  transform: translate(1px, 0px);
1613
1613
  }
1614
1614
  }
1615
- `,mw=Eu.div`
1615
+ `,mw=Pu.div`
1616
1616
  line-height: 20px;
1617
1617
  font-size: 13px;
1618
1618
  display: flex;
@@ -1620,7 +1620,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1620
1620
  width: 100%;
1621
1621
 
1622
1622
  color: ${e=>e.fail?"var(--privy-color-error)":"var(--privy-color-foreground-3)"};
1623
- `;import{useContext as yw}from"react";function Or(){let{promptMfa:e,init:t,submit:o,cancel:r}=yw(he);return{promptMfa:e,init:t,submit:o,cancel:r}}import{useContext as gw}from"react";function Wn(){let{initEnrollmentWithSms:e,initEnrollmentWithTotp:t,submitEnrollmentWithSms:o,submitEnrollmentWithTotp:r,unenroll:n,enrollInMfa:i}=gw(he);return{initEnrollmentWithSms:e,initEnrollmentWithTotp:t,submitEnrollmentWithSms:o,submitEnrollmentWithTotp:r,unenrollWithSms:()=>n("sms"),unenrollWithTotp:()=>n("totp"),showMfaEnrollmentModal:()=>i(!0),closeMfaEnrollmentModal:()=>i(!1)}}import vw from"styled-components";import{jsx as Pu,jsxs as Cw}from"react/jsx-runtime";var xu=e=>Cw(ww,{xmlns:"http://www.w3.org/2000/svg",fill:"none",width:"88",height:"89",viewBox:"0 0 88 89",...e,children:[Pu("rect",{y:"0.666016",width:"88",height:"88",rx:"44"}),Pu("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M45.2463 20.9106C44.5473 20.2486 43.4527 20.2486 42.7537 20.9106C37.8798 25.5263 31.3034 28.3546 24.0625 28.3546C23.9473 28.3546 23.8323 28.3539 23.7174 28.3525C22.9263 28.3427 22.2202 28.8471 21.9731 29.5987C20.9761 32.6311 20.4375 35.8693 20.4375 39.2297C20.4375 53.5896 30.259 65.651 43.5482 69.0714C43.8446 69.1477 44.1554 69.1477 44.4518 69.0714C57.741 65.651 67.5625 53.5896 67.5625 39.2297C67.5625 35.8693 67.0239 32.6311 66.0269 29.5987C65.7798 28.8471 65.0737 28.3427 64.2826 28.3525C64.1677 28.3539 64.0527 28.3546 63.9375 28.3546C56.6966 28.3546 50.1202 25.5263 45.2463 20.9106ZM52.7249 40.2829C53.3067 39.4683 53.1181 38.3363 52.3035 37.7545C51.4889 37.1726 50.3569 37.3613 49.7751 38.1759L41.9562 49.1223L38.0316 45.1977C37.3238 44.4899 36.1762 44.4899 35.4684 45.1977C34.7605 45.9056 34.7605 47.0532 35.4684 47.761L40.9059 53.1985C41.2826 53.5752 41.806 53.7671 42.337 53.7232C42.868 53.6792 43.3527 53.4039 43.6624 52.9704L52.7249 40.2829Z"})]}),ww=vw.svg`
1623
+ `;import{useContext as yw}from"react";function Or(){let{promptMfa:e,init:t,submit:o,cancel:r}=yw(ye);return{promptMfa:e,init:t,submit:o,cancel:r}}import{useContext as gw}from"react";function Wn(){let{initEnrollmentWithSms:e,initEnrollmentWithTotp:t,submitEnrollmentWithSms:o,submitEnrollmentWithTotp:r,unenroll:n,enrollInMfa:i}=gw(ye);return{initEnrollmentWithSms:e,initEnrollmentWithTotp:t,submitEnrollmentWithSms:o,submitEnrollmentWithTotp:r,unenrollWithSms:()=>n("sms"),unenrollWithTotp:()=>n("totp"),showMfaEnrollmentModal:()=>i(!0),closeMfaEnrollmentModal:()=>i(!1)}}import vw from"styled-components";import{jsx as xu,jsxs as Cw}from"react/jsx-runtime";var Tu=e=>Cw(ww,{xmlns:"http://www.w3.org/2000/svg",fill:"none",width:"88",height:"89",viewBox:"0 0 88 89",...e,children:[xu("rect",{y:"0.666016",width:"88",height:"88",rx:"44"}),xu("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M45.2463 20.9106C44.5473 20.2486 43.4527 20.2486 42.7537 20.9106C37.8798 25.5263 31.3034 28.3546 24.0625 28.3546C23.9473 28.3546 23.8323 28.3539 23.7174 28.3525C22.9263 28.3427 22.2202 28.8471 21.9731 29.5987C20.9761 32.6311 20.4375 35.8693 20.4375 39.2297C20.4375 53.5896 30.259 65.651 43.5482 69.0714C43.8446 69.1477 44.1554 69.1477 44.4518 69.0714C57.741 65.651 67.5625 53.5896 67.5625 39.2297C67.5625 35.8693 67.0239 32.6311 66.0269 29.5987C65.7798 28.8471 65.0737 28.3427 64.2826 28.3525C64.1677 28.3539 64.0527 28.3546 63.9375 28.3546C56.6966 28.3546 50.1202 25.5263 45.2463 20.9106ZM52.7249 40.2829C53.3067 39.4683 53.1181 38.3363 52.3035 37.7545C51.4889 37.1726 50.3569 37.3613 49.7751 38.1759L41.9562 49.1223L38.0316 45.1977C37.3238 44.4899 36.1762 44.4899 35.4684 45.1977C34.7605 45.9056 34.7605 47.0532 35.4684 47.761L40.9059 53.1985C41.2826 53.5752 41.806 53.7671 42.337 53.7232C42.868 53.6792 43.3527 53.4039 43.6624 52.9704L52.7249 40.2829Z"})]}),ww=vw.svg`
1624
1624
  height: 90px;
1625
1625
  width: 90px;
1626
1626
 
@@ -1631,7 +1631,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1631
1631
  > path {
1632
1632
  fill: white;
1633
1633
  }
1634
- `;import{ShieldCheckIcon as Iw}from"@heroicons/react/24/solid";import bw from"qrcode";import Ew from"react";import Pw from"styled-components";import{jsx as Tu}from"react/jsx-runtime";var Su=()=>Tu("svg",{width:"200",height:"200",viewBox:"-77 -77 200 200",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"28px",width:"28px"},children:Tu("rect",{width:"50",height:"50",fill:"black",rx:10,ry:10})});import{Fragment as Mn,jsx as Ge,jsxs as Au}from"react/jsx-runtime";var it=7,Js=(e,t,o,r,n)=>{for(let i=t;i<t+r;i++)for(let a=o;a<o+n;a++){let l=e?.[a];l&&l[i]&&(l[i]=0)}return e},xw=e=>{let t=bw.create(e,{errorCorrectionLevel:"high"}).modules,o=gc(Array.from(t.data),t.size);return o=Js(o,0,0,it,it),o=Js(o,o.length-it,0,it,it),o=Js(o,0,o.length-it,it,it),o},Tw=({x:e,y:t,cellSize:o,bgColor:r,fgColor:n})=>Ge(Mn,{children:[0,1,2].map(i=>Ge("circle",{r:o*(it-i*2)/2,cx:e+o*it/2,cy:t+o*it/2,fill:i%2!==0?r:n},`finder-${e}-${t}-${i}`))}),Sw=({cellSize:e,matrixSize:t,bgColor:o,fgColor:r})=>{let n=[[0,0],[(t-it)*e,0],[0,(t-it)*e]];return Ge(Mn,{children:n.map(([i,a])=>Ge(Tw,{x:i,y:a,cellSize:e,bgColor:o,fgColor:r},`finder-${i}-${a}`))})},_w=({matrix:e,cellSize:t,color:o})=>Ge(Mn,{children:e.map((r,n)=>r.map((i,a)=>i?Ge("circle",{r:t/2.5,cx:n*t+t/2,cy:a*t+t/2,fill:o},`circle-${n}-${a}`):Ge(Ew.Fragment,{},`circle-${n}-${a}`)))}),_u=(e,t)=>e-e%t,kw=({outputSize:e,cellSize:t,element:o,size:r,padding:n,bgColor:i})=>{if(!o)return Ge(Mn,{});let a=r||40,l=n||4,s=o,c=e/2-a/2-l;return Au(Mn,{children:[Ge("rect",{x:_u(c,t),y:_u(c,t),width:a+l*2+(c%t?t+.5:.5),height:a+l*2+(c%t?t+.5:.5),fill:i}),Ge(s,{x:e/2-a/2,y:e/2-a/2,height:a,width:a})]})},Aw=e=>{let t=e.outputSize,o=xw(e.url),r=t/o.length;return Au("svg",{height:e.outputSize,width:e.outputSize,viewBox:`0 0 ${e.outputSize} ${e.outputSize}`,style:{height:"100%",width:"100%"},children:[Ge(_w,{matrix:o,cellSize:r,color:e.fgColor}),Ge(Sw,{cellSize:r,matrixSize:o.length,fgColor:e.fgColor,bgColor:e.bgColor}),Ge(kw,{outputSize:e.outputSize,cellSize:r,element:e.logo?.element,bgColor:e.bgColor})]})},Rw=Pw.div`
1634
+ `;import{ShieldCheckIcon as Iw}from"@heroicons/react/24/solid";import bw from"qrcode";import Ew from"react";import Pw from"styled-components";import{jsx as Su}from"react/jsx-runtime";var _u=()=>Su("svg",{width:"200",height:"200",viewBox:"-77 -77 200 200",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"28px",width:"28px"},children:Su("rect",{width:"50",height:"50",fill:"black",rx:10,ry:10})});import{Fragment as Mn,jsx as He,jsxs as Ru}from"react/jsx-runtime";var it=7,Js=(e,t,o,r,n)=>{for(let i=t;i<t+r;i++)for(let a=o;a<o+n;a++){let l=e?.[a];l&&l[i]&&(l[i]=0)}return e},xw=e=>{let t=bw.create(e,{errorCorrectionLevel:"high"}).modules,o=vc(Array.from(t.data),t.size);return o=Js(o,0,0,it,it),o=Js(o,o.length-it,0,it,it),o=Js(o,0,o.length-it,it,it),o},Tw=({x:e,y:t,cellSize:o,bgColor:r,fgColor:n})=>He(Mn,{children:[0,1,2].map(i=>He("circle",{r:o*(it-i*2)/2,cx:e+o*it/2,cy:t+o*it/2,fill:i%2!==0?r:n},`finder-${e}-${t}-${i}`))}),Sw=({cellSize:e,matrixSize:t,bgColor:o,fgColor:r})=>{let n=[[0,0],[(t-it)*e,0],[0,(t-it)*e]];return He(Mn,{children:n.map(([i,a])=>He(Tw,{x:i,y:a,cellSize:e,bgColor:o,fgColor:r},`finder-${i}-${a}`))})},_w=({matrix:e,cellSize:t,color:o})=>He(Mn,{children:e.map((r,n)=>r.map((i,a)=>i?He("circle",{r:t/2.5,cx:n*t+t/2,cy:a*t+t/2,fill:o},`circle-${n}-${a}`):He(Ew.Fragment,{},`circle-${n}-${a}`)))}),ku=(e,t)=>e-e%t,kw=({outputSize:e,cellSize:t,element:o,size:r,padding:n,bgColor:i})=>{if(!o)return He(Mn,{});let a=r||40,l=n||4,s=o,c=e/2-a/2-l;return Ru(Mn,{children:[He("rect",{x:ku(c,t),y:ku(c,t),width:a+l*2+(c%t?t+.5:.5),height:a+l*2+(c%t?t+.5:.5),fill:i}),He(s,{x:e/2-a/2,y:e/2-a/2,height:a,width:a})]})},Aw=e=>{let t=e.outputSize,o=xw(e.url),r=t/o.length;return Ru("svg",{height:e.outputSize,width:e.outputSize,viewBox:`0 0 ${e.outputSize} ${e.outputSize}`,style:{height:"100%",width:"100%"},children:[He(_w,{matrix:o,cellSize:r,color:e.fgColor}),He(Sw,{cellSize:r,matrixSize:o.length,fgColor:e.fgColor,bgColor:e.bgColor}),He(kw,{outputSize:e.outputSize,cellSize:r,element:e.logo?.element,bgColor:e.bgColor})]})},Rw=Pw.div`
1635
1635
  display: flex;
1636
1636
  justify-content: center;
1637
1637
  align-items: center;
@@ -1646,7 +1646,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1646
1646
  border-color: ${e=>e.fgColor};
1647
1647
  border-radius: var(--privy-border-radius-md);
1648
1648
  }
1649
- `,ku=e=>{let t=e.bgColor||"#FFFFFF",o=e.fgColor||"#000000",r=e.size||160;return Ge(Rw,{size:r,bgColor:t,fgColor:o,children:Ge(Aw,{url:e.url,logo:{element:e.squareLogoElement??Su},outputSize:r,bgColor:t,fgColor:o})})};import{jsx as Ww}from"react/jsx-runtime";var Ru=({size:e,authUrl:t})=>Ww(ku,{url:t,squareLogoElement:Iw,size:e,fgColor:"#1F1F1F"});import xe from"styled-components";var Me=xe.div`
1649
+ `,Au=e=>{let t=e.bgColor||"#FFFFFF",o=e.fgColor||"#000000",r=e.size||160;return He(Rw,{size:r,bgColor:t,fgColor:o,children:He(Aw,{url:e.url,logo:{element:e.squareLogoElement??_u},outputSize:r,bgColor:t,fgColor:o})})};import{jsx as Ww}from"react/jsx-runtime";var Iu=({size:e,authUrl:t})=>Ww(Au,{url:t,squareLogoElement:Iw,size:e,fgColor:"#1F1F1F"});import Se from"styled-components";var Le=Se.div`
1650
1650
  display: flex;
1651
1651
  flex-direction: column;
1652
1652
  align-items: center;
@@ -1654,17 +1654,17 @@ You will need this password to access your ${e} wallet on a new device. Please k
1654
1654
  @media (max-width: 440px) {
1655
1655
  padding: 10px 10px 20px;
1656
1656
  }
1657
- `,Le=xe.div`
1657
+ `,Ne=Se.div`
1658
1658
  font-size: 18px;
1659
1659
  line-height: 18px;
1660
1660
  text-align: center;
1661
1661
  font-weight: 600;
1662
1662
  margin-bottom: 10px;
1663
- `,Te=xe.div`
1663
+ `,_e=Se.div`
1664
1664
  font-size: 0.875rem;
1665
1665
 
1666
1666
  text-align: center;
1667
- `,Ro=xe.div`
1667
+ `,Ro=Se.div`
1668
1668
  display: flex;
1669
1669
  flex-direction: column;
1670
1670
  align-items: center;
@@ -1674,7 +1674,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1674
1674
  @media (max-width: 440px) {
1675
1675
  padding: 10px 10px 20px;
1676
1676
  }
1677
- `,Iu=xe.div`
1677
+ `,Wu=Se.div`
1678
1678
  display: flex;
1679
1679
  flex-direction: column;
1680
1680
  align-items: stretch;
@@ -1682,7 +1682,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1682
1682
  padding: 1rem 0rem 0rem;
1683
1683
  flex-grow: 1;
1684
1684
  width: 100%;
1685
- `,Qs=xe.div`
1685
+ `,Qs=Se.div`
1686
1686
  width: 25px;
1687
1687
  display: flex;
1688
1688
  align-items: center;
@@ -1694,19 +1694,19 @@ You will need this password to access your ${e} wallet on a new device. Please k
1694
1694
  width: 25px !important;
1695
1695
  color: var(--privy-color-accent);
1696
1696
  }
1697
- `,Zs=xe.div`
1697
+ `,Zs=Se.div`
1698
1698
  display: flex;
1699
1699
  align-items: center;
1700
1700
  gap: 10px;
1701
1701
  font-size: 0.875rem;
1702
1702
  line-height: 1rem;
1703
1703
  text-align: left;
1704
- `,Io=xe.div`
1704
+ `,Io=Se.div`
1705
1705
  display: flex;
1706
1706
  flex-direction: column;
1707
1707
  gap: 10px;
1708
1708
  padding-top: 20px;
1709
- `,da=xe.div`
1709
+ `,da=Se.div`
1710
1710
  display: flex;
1711
1711
  flex-direction: column;
1712
1712
  align-items: stretch;
@@ -1714,7 +1714,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1714
1714
  padding: 1rem 0rem 0rem;
1715
1715
  flex-grow: 1;
1716
1716
  width: 100%;
1717
- `,pa=xe.div`
1717
+ `,pa=Se.div`
1718
1718
  display: flex;
1719
1719
  gap: 5px;
1720
1720
  width: 100%;
@@ -1722,7 +1722,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1722
1722
  & > button:not(#remove) {
1723
1723
  width: 100%;
1724
1724
  }
1725
- `,Xs=xe.button`
1725
+ `,Xs=Se.button`
1726
1726
  && {
1727
1727
  background-color: transparent;
1728
1728
  color: var(--privy-color-foreground-3);
@@ -1741,7 +1741,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1741
1741
  &&:hover {
1742
1742
  color: var(--privy-color-error);
1743
1743
  }
1744
- `,ua=xe.div`
1744
+ `,ua=Se.div`
1745
1745
  display: flex;
1746
1746
  align-items: center;
1747
1747
  gap: 0.5rem;
@@ -1751,7 +1751,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1751
1751
  height: 20px !important;
1752
1752
  width: 20px !important;
1753
1753
  }
1754
- `,Dr=xe.div`
1754
+ `,Dr=Se.div`
1755
1755
  display: flex;
1756
1756
  align-items: center;
1757
1757
  gap: 6px;
@@ -1765,15 +1765,15 @@ You will need this password to access your ${e} wallet on a new device. Please k
1765
1765
  display: flex !important;
1766
1766
  align-items: flex-end;
1767
1767
  }
1768
- `,ma=xe.div`
1768
+ `,ma=Se.div`
1769
1769
  width: 100%;
1770
1770
  display: flex;
1771
1771
  justify-content: space-between;
1772
- `,Wu=xe.p`
1772
+ `,Mu=Se.p`
1773
1773
  text-align: left;
1774
1774
  width: 100%;
1775
1775
  color: var(--privy-color-foreground-3) !important;
1776
- `,el=xe.button`
1776
+ `,el=Se.button`
1777
1777
  display: flex;
1778
1778
  flex-direction: row;
1779
1779
  align-items: center;
@@ -1803,7 +1803,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1803
1803
  &:hover {
1804
1804
  text-decoration: underline;
1805
1805
  }
1806
- `,He=xe.div`
1806
+ `,ze=Se.div`
1807
1807
  display: flex;
1808
1808
  align-items: center;
1809
1809
  justify-content: center;
@@ -1818,7 +1818,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1818
1818
  width: auto !important;
1819
1819
  color: white;
1820
1820
  }
1821
- `;import{Fragment as ft,jsx as f,jsxs as $}from"react/jsx-runtime";var Uu=()=>{let{user:e,enrollInMfa:t}=z(),[o,r]=oo(!1),[n,i]=oo(null),[a,l]=oo(null),{unenrollWithSms:s,unenrollWithTotp:c}=Wn(),{app:u,ready:y,data:C,onUserCloseViaDialogOrKeybindRef:m}=S(),{closePrivyModal:P}=k(),b=Ut(),{promptMfa:x}=Or(),v=()=>{b.remove(),P({shouldCallAuthOnSuccess:!0}),t(!1),setTimeout(()=>{l(null),i(null)},500)};m.current=v;let R=e?.mfaMethods.includes("sms"),M=!!e?.phone,W=e?.mfaMethods.includes("totp"),I=R||W;Du(()=>{I&&r(!0)},[I]);function A(){l(null),i(null)}function L(){r(!1)}async function O(Z){await x(),i(Z)}if(!y||!e||!u)return $(ft,{children:[f(T,{onClose:v},"header"),f(Me,{children:f(xu,{})}),f(Ro,{children:f(Lt,{})}),f(Y,{})]});async function B(){l(null);try{await s()}catch{l(null)}}async function D(){l(null);try{await c()}catch{l(null)}}if(a==="sms")return $(ft,{children:[f(T,{backFn:A,onClose:v},"header"),f(Me,{children:f(He,{children:f(ol,{})})}),f(Le,{children:"Remove SMS verification?"}),$(Te,{children:["MFA adds an extra layer of security to your ",u?.name," account. Make sure you have other methods to secure your account."]}),f(Io,{children:f(F,{warn:!0,onClick:B,children:"Remove SMS for MFA"})}),f(Y,{})]});if(a==="totp")return $(ft,{children:[f(T,{backFn:A,onClose:v},"header"),f(Me,{children:f(He,{children:f(Ou,{})})}),f(Le,{children:"Remove Authenticator App verification?"}),$(Te,{children:["MFA adds an extra layer of security to your ",u?.name," account. Make sure you have other methods to secure your account."]}),f(Io,{children:f(F,{warn:!0,onClick:D,children:"Remove Authenticator App for MFA"})}),f(Y,{})]});if(C.mfaEnrollmentFlow.mfaMethods.length===0&&!I)return $(ft,{children:[f(T,{onClose:v},"header"),f(Me,{children:f(He,{children:f(tl,{})})}),f(Le,{children:"Add more security"}),$(Te,{children:[u?.name," does not have any verification methods enabled."]}),f(Io,{children:f(F,{onClick:v,children:"Close"})}),f(Y,{})]});let _=!I&&!o;if(_)return $(ft,{children:[f(T,{onClose:v},"header"),f(Me,{children:f(He,{children:f(tl,{})})}),f(Le,{children:"Transaction Protection"}),f(Te,{children:"Set up transaction protection to add an extra layer of security to your account"}),$(Iu,{children:[$(Zs,{children:[f(Qs,{children:f(Ow,{})}),"Enable 2-Step verification for your ",u?.name," wallet."]}),$(Zs,{children:[f(Qs,{children:f(Dw,{})}),"You'll be prompted to authenticate to complete transactions."]})]}),$(Io,{children:[f(F,{onClick:()=>r(!0),children:"Continue"}),f(Yt,{onClick:v,children:"Not now"})]}),f(Y,{})]});switch(n){case"sms":return f(Uw,{onComplete:v,onReset:A,onClose:v});case"totp":return f(Fw,{onComplete:v,onClose:v,onReset:A});default:return $(ft,{children:[f(T,{backFn:_?L:void 0,onClose:v},"header"),f(Me,{children:f(He,{children:f(tl,{})})}),f(Le,{children:"Choose a verification method"}),I?f(Te,{children:"To add or delete verification methods, verification is required."}):f(Te,{children:"How would you like to verify your identity? You can change this later."}),$(da,{children:[(C.mfaEnrollmentFlow.mfaMethods.includes("totp")||W)&&$(pa,{children:[f(ge,{disabled:W,onClick:()=>O("totp"),children:$(ma,{children:[$(ua,{children:[f(Mw,{}),"Authenticator App"]}),W?$(Dr,{children:[f(Mu,{}),"Added"]}):f(Dr,{children:"Recommended"})]})}),W&&f(Xs,{id:"remove",onClick:()=>l("totp"),children:f(Lu,{})})]},"totp"),(C.mfaEnrollmentFlow.mfaMethods.includes("sms")||R)&&$(pa,{children:[f(ge,{disabled:R||M,onClick:()=>O("sms"),children:$(ma,{children:[$(ua,{children:[f(Nw,{}),"SMS"]}),R&&$(Dr,{children:[f(Mu,{}),"Added"]}),M&&f(Dr,{children:"Disabled"})]})}),R&&f(Xs,{id:"remove",onClick:()=>l("sms"),children:f(Lu,{})})]},"sms"),f(pa,{children:f(ge,{disabled:!0,children:$(ma,{children:[$(ua,{children:[f(Lw,{}),"Passkey"]}),f(Dr,{isAccent:!0,children:"Coming soon"})]})})},"passkey")]}),f(Y,{})]})}},Uw=({onComplete:e,onReset:t,onClose:o})=>{let[r,n]=oo(""),[i,a]=oo(!1),[l,s]=oo("enroll"),{initEnrollmentWithSms:c,submitEnrollmentWithSms:u}=Wn(),{app:y,data:C}=S();function m(){C?.mfaEnrollmentFlow?.onSuccess(),e()}async function P({qualifiedPhoneNumber:v}){await c({phoneNumber:v}),n(v),s("verify")}async function b(v){try{if(!v)return;await u({phoneNumber:r,mfaCode:v}),a(!0)}catch(R){throw xs(R)?new Error("You have exceeded the maximum number of attempts. Please close this window and try again in 10 seconds."):Pr(R)?new Error("The code you entered is not valid"):Er(R)?new Error("You have exceeded the time limit for code entry. Please try again in 30 seconds."):Ts(R)?new Error("Verification canceled"):new Error("Unknown error")}}function x(){l==="verify"?s("enroll"):t()}return l==="enroll"?$(ft,{children:[f(T,{backFn:t,onClose:o},"header"),f(Me,{children:f(He,{children:f(ol,{})})}),f(Le,{children:"Set up SMS verification"}),f(Te,{children:"We'll text a verification code to this mobile device whenever you use your Privy wallet."}),$(Ro,{children:[f(Wr,{onSubmit:P}),$(Wu,{children:["By providing your mobile number, you agree to receive text messages from ",y?.name,". Some carrier charges may apply"]})]}),f(Y,{})]}):i?$(ft,{children:[f(T,{onClose:m},"header"),f(Me,{children:f(He,{status:"success",children:f(Nu,{})})}),f(Le,{children:"SMS verification added"}),f(Te,{children:"From now on, you'll enter the verification code sent to your mobile device whenever you use your Privy wallet."}),f(Io,{children:f(F,{onClick:m,children:"Done"})}),f(Y,{})]}):$(ft,{children:[f(T,{backFn:x,onClose:o},"header"),f(Me,{children:f(He,{children:f(ol,{})})}),f(Le,{children:"Enter enrollment code"}),$(Ro,{children:[f(Nr,{onChange:b}),$(Te,{children:["To continue, enter the 6-digit code sent to ",f("strong",{children:$p(r)})]})]}),f(Y,{})]})},Fw=({onComplete:e,onClose:t,onReset:o})=>{let[r,n]=oo("enroll"),[i,a]=oo(null),[l,s]=oo(!1),{initEnrollmentWithTotp:c,submitEnrollmentWithTotp:u}=Wn(),{data:y}=S();Du(()=>{a(null),c().then(x=>{a(x)}).catch(()=>{a(null),o()})},[]);function C(){y?.mfaEnrollmentFlow?.onSuccess(),e()}function m(){n("verify")}async function P(x){try{if(!x)return;await u({mfaCode:x}),s(!0)}catch(v){throw xs(v)?new Error("You have exceeded the maximum number of attempts. Please close this window and try again in 10 seconds."):Pr(v)?new Error("The code you entered is not valid"):Er(v)?new Error("You have exceeded the time limit for code entry. Please try again in 30 seconds."):Ts(v)?new Error("Verification canceled"):new Error("Unknown error")}}function b(){r==="verify"?n("enroll"):o()}return r==="enroll"?$(ft,{children:[f(T,{backFn:o,onClose:t},"header"),f(Le,{children:"Scan QR code"}),f(Te,{children:"Open your authenticator app and scan the QR code to continue."}),f(ad,{children:i?.authUrl?f(Ru,{authUrl:i.authUrl,size:200}):f(Lt,{})}),$(Io,{children:[f(Jt,{children:i?.secret&&f(hu,{itemName:"secret",text:i.secret})}),f(F,{onClick:m,children:"Continue"})]}),f(Y,{})]}):l?$(ft,{children:[f(T,{onClose:C},"header"),f(Me,{children:f(He,{status:"success",children:f(Nu,{})})}),f(Le,{children:"Authenticator app verification added"}),f(Te,{children:"From now on, you'll enter the verification code generated by your authenticator app whenever you use your Privy wallet."}),f(Io,{children:f(F,{onClick:C,children:"Done"})}),f(Y,{})]}):$(ft,{children:[f(T,{backFn:b,onClose:t},"header"),f(Me,{children:f(He,{children:f(Ou,{})})}),f(Le,{children:"Enter enrollment code"}),f(Ro,{children:f(Nr,{onChange:P})}),$(Te,{children:["To continue, enter the 6-digit code generated from your ",f("strong",{children:"authenticator app"})]}),f(Y,{})]})};import{DevicePhoneMobileIcon as BC,PhoneIcon as GC}from"@heroicons/react/24/outline";import{DevicePhoneMobileIcon as HC,PhoneIcon as zC}from"@heroicons/react/24/solid";import{ShieldCheckIcon as VC}from"@heroicons/react/24/solid";import{useEffect as $C,useState as gl}from"react";import{StaticJsonRpcProvider as NC}from"@ethersproject/providers";import{useMemo as OC,useEffect as DC,useState as vm}from"react";import UC from"styled-components";import am from"styled-components";import Bu from"styled-components";import{jsx as Fu,jsxs as Hw}from"react/jsx-runtime";var fa=({label:e,children:t,valueStyles:o})=>Hw(Bw,{children:[Fu("div",{children:e}),Fu(Gw,{style:{...o},children:t})]}),Bw=Bu.div`
1821
+ `;import{Fragment as ft,jsx as h,jsxs as $}from"react/jsx-runtime";var Fu=()=>{let{user:e,enrollInMfa:t}=z(),[o,r]=oo(!1),[n,i]=oo(null),[a,l]=oo(null),{unenrollWithSms:s,unenrollWithTotp:c}=Wn(),{app:u,ready:y,data:C,onUserCloseViaDialogOrKeybindRef:m}=S(),{closePrivyModal:P}=k(),b=Ut(),{promptMfa:x}=Or(),v=()=>{b.remove(),P({shouldCallAuthOnSuccess:!0}),t(!1),setTimeout(()=>{l(null),i(null)},500)};m.current=v;let R=e?.mfaMethods.includes("sms"),M=!!e?.phone,W=e?.mfaMethods.includes("totp"),I=R||W;Uu(()=>{I&&r(!0)},[I]);function A(){l(null),i(null)}function L(){r(!1)}async function D(Z){await x(),i(Z)}if(!y||!e||!u)return $(ft,{children:[h(T,{onClose:v},"header"),h(Le,{children:h(Tu,{})}),h(Ro,{children:h(Lt,{})}),h(Y,{})]});async function B(){l(null);try{await s()}catch{l(null)}}async function U(){l(null);try{await c()}catch{l(null)}}if(a==="sms")return $(ft,{children:[h(T,{backFn:A,onClose:v},"header"),h(Le,{children:h(ze,{children:h(ol,{})})}),h(Ne,{children:"Remove SMS verification?"}),$(_e,{children:["MFA adds an extra layer of security to your ",u?.name," account. Make sure you have other methods to secure your account."]}),h(Io,{children:h(F,{warn:!0,onClick:B,children:"Remove SMS for MFA"})}),h(Y,{})]});if(a==="totp")return $(ft,{children:[h(T,{backFn:A,onClose:v},"header"),h(Le,{children:h(ze,{children:h(Du,{})})}),h(Ne,{children:"Remove Authenticator App verification?"}),$(_e,{children:["MFA adds an extra layer of security to your ",u?.name," account. Make sure you have other methods to secure your account."]}),h(Io,{children:h(F,{warn:!0,onClick:U,children:"Remove Authenticator App for MFA"})}),h(Y,{})]});if(C.mfaEnrollmentFlow.mfaMethods.length===0&&!I)return $(ft,{children:[h(T,{onClose:v},"header"),h(Le,{children:h(ze,{children:h(tl,{})})}),h(Ne,{children:"Add more security"}),$(_e,{children:[u?.name," does not have any verification methods enabled."]}),h(Io,{children:h(F,{onClick:v,children:"Close"})}),h(Y,{})]});let _=!I&&!o;if(_)return $(ft,{children:[h(T,{onClose:v},"header"),h(Le,{children:h(ze,{children:h(tl,{})})}),h(Ne,{children:"Transaction Protection"}),h(_e,{children:"Set up transaction protection to add an extra layer of security to your account"}),$(Wu,{children:[$(Zs,{children:[h(Qs,{children:h(Ow,{})}),"Enable 2-Step verification for your ",u?.name," wallet."]}),$(Zs,{children:[h(Qs,{children:h(Dw,{})}),"You'll be prompted to authenticate to complete transactions."]})]}),$(Io,{children:[h(F,{onClick:()=>r(!0),children:"Continue"}),h(Yt,{onClick:v,children:"Not now"})]}),h(Y,{})]});switch(n){case"sms":return h(Uw,{onComplete:v,onReset:A,onClose:v});case"totp":return h(Fw,{onComplete:v,onClose:v,onReset:A});default:return $(ft,{children:[h(T,{backFn:_?L:void 0,onClose:v},"header"),h(Le,{children:h(ze,{children:h(tl,{})})}),h(Ne,{children:"Choose a verification method"}),I?h(_e,{children:"To add or delete verification methods, verification is required."}):h(_e,{children:"How would you like to verify your identity? You can change this later."}),$(da,{children:[(C.mfaEnrollmentFlow.mfaMethods.includes("totp")||W)&&$(pa,{children:[h(ve,{disabled:W,onClick:()=>D("totp"),children:$(ma,{children:[$(ua,{children:[h(Mw,{}),"Authenticator App"]}),W?$(Dr,{children:[h(Lu,{}),"Added"]}):h(Dr,{children:"Recommended"})]})}),W&&h(Xs,{id:"remove",onClick:()=>l("totp"),children:h(Nu,{})})]},"totp"),(C.mfaEnrollmentFlow.mfaMethods.includes("sms")||R)&&$(pa,{children:[h(ve,{disabled:R||M,onClick:()=>D("sms"),children:$(ma,{children:[$(ua,{children:[h(Nw,{}),"SMS"]}),R&&$(Dr,{children:[h(Lu,{}),"Added"]}),M&&h(Dr,{children:"Disabled"})]})}),R&&h(Xs,{id:"remove",onClick:()=>l("sms"),children:h(Nu,{})})]},"sms"),h(pa,{children:h(ve,{disabled:!0,children:$(ma,{children:[$(ua,{children:[h(Lw,{}),"Passkey"]}),h(Dr,{isAccent:!0,children:"Coming soon"})]})})},"passkey")]}),h(Y,{})]})}},Uw=({onComplete:e,onReset:t,onClose:o})=>{let[r,n]=oo(""),[i,a]=oo(!1),[l,s]=oo("enroll"),{initEnrollmentWithSms:c,submitEnrollmentWithSms:u}=Wn(),{app:y,data:C}=S();function m(){C?.mfaEnrollmentFlow?.onSuccess(),e()}async function P({qualifiedPhoneNumber:v}){await c({phoneNumber:v}),n(v),s("verify")}async function b(v){try{if(!v)return;await u({phoneNumber:r,mfaCode:v}),a(!0)}catch(R){throw xs(R)?new Error("You have exceeded the maximum number of attempts. Please close this window and try again in 10 seconds."):xr(R)?new Error("The code you entered is not valid"):Pr(R)?new Error("You have exceeded the time limit for code entry. Please try again in 30 seconds."):Ts(R)?new Error("Verification canceled"):new Error("Unknown error")}}function x(){l==="verify"?s("enroll"):t()}return l==="enroll"?$(ft,{children:[h(T,{backFn:t,onClose:o},"header"),h(Le,{children:h(ze,{children:h(ol,{})})}),h(Ne,{children:"Set up SMS verification"}),h(_e,{children:"We'll text a verification code to this mobile device whenever you use your Privy wallet."}),$(Ro,{children:[h(Mr,{onSubmit:P}),$(Mu,{children:["By providing your mobile number, you agree to receive text messages from ",y?.name,". Some carrier charges may apply"]})]}),h(Y,{})]}):i?$(ft,{children:[h(T,{onClose:m},"header"),h(Le,{children:h(ze,{status:"success",children:h(Ou,{})})}),h(Ne,{children:"SMS verification added"}),h(_e,{children:"From now on, you'll enter the verification code sent to your mobile device whenever you use your Privy wallet."}),h(Io,{children:h(F,{onClick:m,children:"Done"})}),h(Y,{})]}):$(ft,{children:[h(T,{backFn:x,onClose:o},"header"),h(Le,{children:h(ze,{children:h(ol,{})})}),h(Ne,{children:"Enter enrollment code"}),$(Ro,{children:[h(Nr,{onChange:b}),$(_e,{children:["To continue, enter the 6-digit code sent to ",h("strong",{children:jp(r)})]})]}),h(Y,{})]})},Fw=({onComplete:e,onClose:t,onReset:o})=>{let[r,n]=oo("enroll"),[i,a]=oo(null),[l,s]=oo(!1),{initEnrollmentWithTotp:c,submitEnrollmentWithTotp:u}=Wn(),{data:y}=S();Uu(()=>{a(null),c().then(x=>{a(x)}).catch(()=>{a(null),o()})},[]);function C(){y?.mfaEnrollmentFlow?.onSuccess(),e()}function m(){n("verify")}async function P(x){try{if(!x)return;await u({mfaCode:x}),s(!0)}catch(v){throw xs(v)?new Error("You have exceeded the maximum number of attempts. Please close this window and try again in 10 seconds."):xr(v)?new Error("The code you entered is not valid"):Pr(v)?new Error("You have exceeded the time limit for code entry. Please try again in 30 seconds."):Ts(v)?new Error("Verification canceled"):new Error("Unknown error")}}function b(){r==="verify"?n("enroll"):o()}return r==="enroll"?$(ft,{children:[h(T,{backFn:o,onClose:t},"header"),h(Ne,{children:"Scan QR code"}),h(_e,{children:"Open your authenticator app and scan the QR code to continue."}),h(sd,{children:i?.authUrl?h(Iu,{authUrl:i.authUrl,size:200}):h(Lt,{})}),$(Io,{children:[h(Jt,{children:i?.secret&&h(yu,{itemName:"secret",text:i.secret})}),h(F,{onClick:m,children:"Continue"})]}),h(Y,{})]}):l?$(ft,{children:[h(T,{onClose:C},"header"),h(Le,{children:h(ze,{status:"success",children:h(Ou,{})})}),h(Ne,{children:"Authenticator app verification added"}),h(_e,{children:"From now on, you'll enter the verification code generated by your authenticator app whenever you use your Privy wallet."}),h(Io,{children:h(F,{onClick:C,children:"Done"})}),h(Y,{})]}):$(ft,{children:[h(T,{backFn:b,onClose:t},"header"),h(Le,{children:h(ze,{children:h(Du,{})})}),h(Ne,{children:"Enter enrollment code"}),h(Ro,{children:h(Nr,{onChange:P})}),$(_e,{children:["To continue, enter the 6-digit code generated from your ",h("strong",{children:"authenticator app"})]}),h(Y,{})]})};import{DevicePhoneMobileIcon as BC,PhoneIcon as GC}from"@heroicons/react/24/outline";import{DevicePhoneMobileIcon as HC,PhoneIcon as zC}from"@heroicons/react/24/solid";import{ShieldCheckIcon as VC}from"@heroicons/react/24/solid";import{useEffect as $C,useState as gl}from"react";import{StaticJsonRpcProvider as NC}from"@ethersproject/providers";import{useMemo as OC,useEffect as DC,useState as wm}from"react";import UC from"styled-components";import sm from"styled-components";import Gu from"styled-components";import{jsx as Bu,jsxs as Hw}from"react/jsx-runtime";var fa=({label:e,children:t,valueStyles:o})=>Hw(Bw,{children:[Bu("div",{children:e}),Bu(Gw,{style:{...o},children:t})]}),Bw=Gu.div`
1822
1822
  display: flex;
1823
1823
  align-items: center;
1824
1824
  justify-content: space-between;
@@ -1833,7 +1833,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1833
1833
  color: var(--privy-color-foreground-2);
1834
1834
  text-align: right;
1835
1835
  }
1836
- `,Gw=Bu.div`
1836
+ `,Gw=Gu.div`
1837
1837
  font-size: 14px;
1838
1838
  line-height: 100%;
1839
1839
  display: flex;
@@ -1842,7 +1842,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1842
1842
  border-radius: var(--privy-border-radius-full);
1843
1843
  background-color: var(--privy-color-background-2);
1844
1844
  padding: 4px 8px;
1845
- `;import ya from"styled-components";import{BigNumber as Gu}from"@ethersproject/bignumber";import{formatEther as Hu}from"@ethersproject/units";var Ln=(e,t)=>{let o=(t*parseFloat(Hu(e))).toFixed(2);return o!=="0.00"?`$${o}`:"<$0.01"},Ft=(e,t,o=6,r=!1)=>{let i=parseFloat(Hu(e)).toFixed(o).replace(/0+$/,"").replace(/\.$/,"");return r?`${i} ${t}`:`${i==="0"?"<0.001":i} ${t}`},rl=e=>e.map(le).reduce((t,o)=>t.add(o),Gu.from(0)).toHexString(),zu=(e,t)=>{let{chains:o}=k(),r=`https://etherscan.io/address/${t}`,n=`${bc(e,o)}/address/${t}`;if(!n)return r;try{new URL(n)}catch{return r}return n},le=e=>Gu.from(e);import{Fragment as jw,jsx as ha,jsxs as Vu}from"react/jsx-runtime";var $u=({weiQuantities:e,tokenPrice:t,tokenSymbol:o})=>{let r=rl(e),n=t?Ln(r,t):void 0,i=Ft(r,o);return ha(ju,{children:n||i})},nl=({weiQuantities:e,tokenPrice:t,tokenSymbol:o})=>{let r=rl(e),n=t?Ln(r,t):void 0,i=Ft(r,o);return ha(ju,{children:n?Vu(jw,{children:[ha(zw,{children:"USD"}),n==="<$0.01"?Vu($w,{children:[ha(Vw,{children:"<"}),"$0.01"]}):n]}):i})},ju=ya.span`
1845
+ `;import ya from"styled-components";import{BigNumber as Hu}from"@ethersproject/bignumber";import{formatEther as zu}from"@ethersproject/units";var Ln=(e,t)=>{let o=(t*parseFloat(zu(e))).toFixed(2);return o!=="0.00"?`$${o}`:"<$0.01"},Ft=(e,t,o=6,r=!1)=>{let i=parseFloat(zu(e)).toFixed(o).replace(/0+$/,"").replace(/\.$/,"");return r?`${i} ${t}`:`${i==="0"?"<0.001":i} ${t}`},rl=e=>e.map(ce).reduce((t,o)=>t.add(o),Hu.from(0)).toHexString(),Vu=(e,t)=>{let{chains:o}=k(),r=`https://etherscan.io/address/${t}`,n=`${Ec(e,o)}/address/${t}`;if(!n)return r;try{new URL(n)}catch{return r}return n},ce=e=>Hu.from(e);import{Fragment as jw,jsx as ha,jsxs as $u}from"react/jsx-runtime";var ju=({weiQuantities:e,tokenPrice:t,tokenSymbol:o})=>{let r=rl(e),n=t?Ln(r,t):void 0,i=Ft(r,o);return ha(qu,{children:n||i})},nl=({weiQuantities:e,tokenPrice:t,tokenSymbol:o})=>{let r=rl(e),n=t?Ln(r,t):void 0,i=Ft(r,o);return ha(qu,{children:n?$u(jw,{children:[ha(zw,{children:"USD"}),n==="<$0.01"?$u($w,{children:[ha(Vw,{children:"<"}),"$0.01"]}):n]}):i})},qu=ya.span`
1846
1846
  font-size: 14px;
1847
1847
  line-height: 140%;
1848
1848
  display: flex;
@@ -1857,13 +1857,13 @@ You will need this password to access your ${e} wallet on a new device. Please k
1857
1857
  `,$w=ya.span`
1858
1858
  display: flex;
1859
1859
  align-items: center;
1860
- `;import il from"styled-components";import{jsx as Wo,jsxs as ga}from"react/jsx-runtime";var qu=({gas:e,tokenPrice:t,tokenSymbol:o})=>ga(us,{style:{paddingBottom:"12px"},children:[ga(Yu,{children:[Wo(Qu,{children:"Est. Fees"}),Wo("div",{children:Wo(nl,{weiQuantities:[e],tokenPrice:t,tokenSymbol:o})})]}),t&&Wo(Ju,{children:`${Ft(e,o)}`})]}),Ku=({transactionData:e,gas:t,tokenPrice:o,tokenSymbol:r})=>{let n=le(e.value||0).add(le(t)).toHexString();return ga(us,{children:[ga(Yu,{children:[Wo(Qu,{children:"Total (including fees)"}),Wo("div",{children:Wo(nl,{weiQuantities:[e.value||0,t],tokenPrice:o,tokenSymbol:r})})]}),o&&Wo(Ju,{children:Ft(n,r)})]})},Yu=il.div`
1860
+ `;import il from"styled-components";import{jsx as Wo,jsxs as ga}from"react/jsx-runtime";var Ku=({gas:e,tokenPrice:t,tokenSymbol:o})=>ga(us,{style:{paddingBottom:"12px"},children:[ga(Ju,{children:[Wo(Zu,{children:"Est. Fees"}),Wo("div",{children:Wo(nl,{weiQuantities:[e],tokenPrice:t,tokenSymbol:o})})]}),t&&Wo(Qu,{children:`${Ft(e,o)}`})]}),Yu=({transactionData:e,gas:t,tokenPrice:o,tokenSymbol:r})=>{let n=ce(e.value||0).add(ce(t)).toHexString();return ga(us,{children:[ga(Ju,{children:[Wo(Zu,{children:"Total (including fees)"}),Wo("div",{children:Wo(nl,{weiQuantities:[e.value||0,t],tokenPrice:o,tokenSymbol:r})})]}),o&&Wo(Qu,{children:Ft(n,r)})]})},Ju=il.div`
1861
1861
  display: flex;
1862
1862
  flex-direction: row;
1863
1863
  justify-content: space-between;
1864
1864
  align-items: center;
1865
1865
  padding-top: 4px;
1866
- `,Ju=il.div`
1866
+ `,Qu=il.div`
1867
1867
  display: flex;
1868
1868
  flex-direction: row;
1869
1869
  height: 12px;
@@ -1872,11 +1872,11 @@ You will need this password to access your ${e} wallet on a new device. Please k
1872
1872
  line-height: 12px;
1873
1873
  color: var(--privy-color-foreground-3);
1874
1874
  font-weight: 400;
1875
- `,Qu=il.div`
1875
+ `,Zu=il.div`
1876
1876
  font-size: 14px;
1877
1877
  line-height: 22.4px;
1878
1878
  font-weight: 400;
1879
- `;import{ChevronDownIcon as qw}from"@heroicons/react/24/outline";import{useContext as Jo,useState as Kw}from"react";import Mo from"styled-components";import{createContext as Zu,useContext as QA}from"react";var Ur=Zu(void 0);var Nn=Zu(void 0);import{Fragment as oC,jsx as Pt,jsxs as Xu}from"react/jsx-runtime";var em=({defaultValue:e,children:t})=>{let[o,r]=Kw(e||null),n=i=>{r(o===i?null:i)};return Pt(Ur.Provider,{value:{activePanel:o,togglePanel:n},children:Pt(Yw,{children:t})})},tm=({value:e,children:t})=>{let{activePanel:o,togglePanel:r}=Jo(Ur),n=o===e;return Pt(Nn.Provider,{value:{onToggle:()=>r(e),value:e},children:Pt(Xw,{isActive:n,"data-open":n,children:t})})},om=({children:e})=>{let{activePanel:t}=Jo(Ur),{onToggle:o,value:r}=Jo(Nn),n=t===r;return Xu(oC,{children:[Xu(Jw,{onClick:o,"data-open":n,children:[Pt(Zw,{children:e}),Pt(tC,{isactive:n,children:Pt(qw,{height:"16px",width:"16px",strokeWidth:"2"})})]}),Pt(Qw,{})]})},rm=({children:e})=>{let{activePanel:t}=Jo(Ur),{value:o}=Jo(Nn);return Pt(eC,{"data-open":t===o,children:Pt(im,{children:e})})},nm=({children:e})=>{let{activePanel:t}=Jo(Ur),{value:o}=Jo(Nn);return Pt(im,{children:typeof e=="function"?e({isActive:t===o}):e})},Yw=Mo.div`
1879
+ `;import{ChevronDownIcon as qw}from"@heroicons/react/24/outline";import{useContext as Zo,useState as Kw}from"react";import Mo from"styled-components";import{createContext as Xu,useContext as QA}from"react";var Ur=Xu(void 0);var Nn=Xu(void 0);import{Fragment as oC,jsx as Pt,jsxs as em}from"react/jsx-runtime";var tm=({defaultValue:e,children:t})=>{let[o,r]=Kw(e||null),n=i=>{r(o===i?null:i)};return Pt(Ur.Provider,{value:{activePanel:o,togglePanel:n},children:Pt(Yw,{children:t})})},om=({value:e,children:t})=>{let{activePanel:o,togglePanel:r}=Zo(Ur),n=o===e;return Pt(Nn.Provider,{value:{onToggle:()=>r(e),value:e},children:Pt(Xw,{isActive:n,"data-open":n,children:t})})},rm=({children:e})=>{let{activePanel:t}=Zo(Ur),{onToggle:o,value:r}=Zo(Nn),n=t===r;return em(oC,{children:[em(Jw,{onClick:o,"data-open":n,children:[Pt(Zw,{children:e}),Pt(tC,{isactive:n,children:Pt(qw,{height:"16px",width:"16px",strokeWidth:"2"})})]}),Pt(Qw,{})]})},nm=({children:e})=>{let{activePanel:t}=Zo(Ur),{value:o}=Zo(Nn);return Pt(eC,{"data-open":t===o,children:Pt(am,{children:e})})},im=({children:e})=>{let{activePanel:t}=Zo(Ur),{value:o}=Zo(Nn);return Pt(am,{children:typeof e=="function"?e({isActive:t===o}):e})},Yw=Mo.div`
1880
1880
  display: flex;
1881
1881
  flex-direction: column;
1882
1882
  width: 100%;
@@ -1926,7 +1926,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1926
1926
  &[data-open='false'] {
1927
1927
  max-height: 0;
1928
1928
  }
1929
- `,im=Mo.div`
1929
+ `,am=Mo.div`
1930
1930
  display: flex;
1931
1931
  flex-direction: column;
1932
1932
  gap: 12px;
@@ -1934,15 +1934,15 @@ You will need this password to access your ${e} wallet on a new device. Please k
1934
1934
  min-height: 1px;
1935
1935
  `,tC=Mo.div`
1936
1936
  transform: ${e=>e.isactive?"rotate(180deg)":"rotate(0deg)"};
1937
- `;import rC from"styled-components";import{jsx as iC}from"react/jsx-runtime";var al=({walletAddress:e,chainId:t=qt})=>iC(nC,{href:zu(t,e),target:"_blank",children:uo(e)}),nC=rC.a`
1937
+ `;import rC from"styled-components";import{jsx as iC}from"react/jsx-runtime";var al=({walletAddress:e,chainId:t=qt})=>iC(nC,{href:Vu(t,e),target:"_blank",children:uo(e)}),nC=rC.a`
1938
1938
  &:hover {
1939
1939
  text-decoration: underline;
1940
1940
  }
1941
- `;import{jsx as at,jsxs as sl}from"react/jsx-runtime";var Fr=({from:e,to:t,txn:o,transactionInfo:r,tokenPrice:n,gas:i,tokenSymbol:a})=>{let l=o?.value||0;return at(em,{children:sl(tm,{value:"details",children:[at(om,{children:sl(aC,{children:[at("div",{children:r?.title||r?.actionDescription||"Details"}),at(sC,{children:at($u,{weiQuantities:[l],tokenPrice:n,tokenSymbol:a})})]})}),sl(rm,{children:[at(fa,{label:"From",children:at(al,{walletAddress:e,chainId:o.chainId||qt})}),at(fa,{label:"To",children:at(al,{walletAddress:t,chainId:o.chainId||qt})}),r&&r.action&&at(fa,{label:"Action",children:r.action}),i&&at(qu,{transactionData:o,gas:i,tokenPrice:n,tokenSymbol:a})]}),at(nm,{children:({isActive:s})=>at(Ku,{transactionData:o,displayFee:s,gas:i||"0x0",tokenPrice:n,tokenSymbol:a})})]})})},aC=am.div`
1941
+ `;import{jsx as at,jsxs as sl}from"react/jsx-runtime";var Fr=({from:e,to:t,txn:o,transactionInfo:r,tokenPrice:n,gas:i,tokenSymbol:a})=>{let l=o?.value||0;return at(tm,{children:sl(om,{value:"details",children:[at(rm,{children:sl(aC,{children:[at("div",{children:r?.title||r?.actionDescription||"Details"}),at(sC,{children:at(ju,{weiQuantities:[l],tokenPrice:n,tokenSymbol:a})})]})}),sl(nm,{children:[at(fa,{label:"From",children:at(al,{walletAddress:e,chainId:o.chainId||qt})}),at(fa,{label:"To",children:at(al,{walletAddress:t,chainId:o.chainId||qt})}),r&&r.action&&at(fa,{label:"Action",children:r.action}),i&&at(Ku,{transactionData:o,gas:i,tokenPrice:n,tokenSymbol:a})]}),at(im,{children:({isActive:s})=>at(Yu,{transactionData:o,displayFee:s,gas:i||"0x0",tokenPrice:n,tokenSymbol:a})})]})})},aC=sm.div`
1942
1942
  display: flex;
1943
1943
  flex-direction: row;
1944
1944
  justify-content: space-between;
1945
- `,sC=am.div`
1945
+ `,sC=sm.div`
1946
1946
  flex-shrink: 0;
1947
1947
  padding-left: 8px;
1948
1948
  `;import Dn from"styled-components";import{jsx as On,jsxs as mC}from"react/jsx-runtime";var ll=({description:e,contractInfo:t})=>mC(lC,{children:[t.imgUrl&&On(cC,{size:t.imgSize||"sm",src:t.imgUrl,alt:t.imgAltText||`${t.name} image`}),t.url&&On(dC,{children:On("a",{href:t.url,target:"_blank",rel:"noopener noreferrer",children:t.url.replace(/^(https?:\/\/)(www\.)?/,"")})}),t.name&&On(pC,{children:t.name}),On(uC,{children:e||t.actionText})]}),lC=Dn.div`
@@ -1986,7 +1986,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1986
1986
  overflow: hidden;
1987
1987
  max-width: 275px;
1988
1988
  text-overflow: ellipsis;
1989
- `;import{WalletIcon as fC}from"@heroicons/react/24/outline";import dl from"styled-components";import{jsx as sm,jsxs as cl}from"react/jsx-runtime";var lm=({address:e,txn:t,balance:o,hasFunds:r})=>{let n=!!o,{nativeTokenSymbolForChainId:i}=k(),a=i(t.chainId)||"ETH";return cl(hC,{children:[cl(yC,{children:[sm(fC,{strokeWidth:"2",width:"16px",height:"16px"}),sm("div",{children:uo(e)})]}),cl(gC,{displayBalanceColor:n,hasFunds:r,children:[o?Ft(o,a,6,!0):0," available"]})]})},hC=dl.div`
1989
+ `;import{WalletIcon as fC}from"@heroicons/react/24/outline";import dl from"styled-components";import{jsx as lm,jsxs as cl}from"react/jsx-runtime";var cm=({address:e,txn:t,balance:o,hasFunds:r})=>{let n=!!o,{nativeTokenSymbolForChainId:i}=k(),a=i(t.chainId)||"ETH";return cl(hC,{children:[cl(yC,{children:[lm(fC,{strokeWidth:"2",width:"16px",height:"16px"}),lm("div",{children:uo(e)})]}),cl(gC,{displayBalanceColor:n,hasFunds:r,children:[o?Ft(o,a,6,!0):0," available"]})]})},hC=dl.div`
1990
1990
  display: flex;
1991
1991
  flex-direction: row;
1992
1992
  justify-content: space-between;
@@ -2014,12 +2014,12 @@ You will need this password to access your ${e} wallet on a new device. Please k
2014
2014
  background-color: var(--privy-color-background-2);
2015
2015
  padding: 5px 8px;
2016
2016
  color: ${e=>e.displayBalanceColor?e.hasFunds?"var(--privy-color-success-dark)":"var(--privy-color-error)":"inherit"};
2017
- `;import va from"styled-components";import{Fragment as dm,jsx as Un,jsxs as pm}from"react/jsx-runtime";var um=({description:e,txn:t,tokenSymbol:o,tokenPrice:r})=>{let n=t.value||0,i=r?Ln(n,r):void 0,a=Ft(n,o);return pm(vC,{children:[i?pm(dm,{children:[Un(cm,{children:i}),Un(wC,{children:a})]}):Un(dm,{children:Un(cm,{children:a})}),Un(CC,{children:e})]})},vC=va.div`
2017
+ `;import va from"styled-components";import{Fragment as pm,jsx as Un,jsxs as um}from"react/jsx-runtime";var mm=({description:e,txn:t,tokenSymbol:o,tokenPrice:r})=>{let n=t.value||0,i=r?Ln(n,r):void 0,a=Ft(n,o);return um(vC,{children:[i?um(pm,{children:[Un(dm,{children:i}),Un(wC,{children:a})]}):Un(pm,{children:Un(dm,{children:a})}),Un(CC,{children:e})]})},vC=va.div`
2018
2018
  display: flex;
2019
2019
  flex-direction: column;
2020
2020
  align-items: center;
2021
2021
  margin-bottom: 20px;
2022
- `,cm=va.h2`
2022
+ `,dm=va.h2`
2023
2023
  && {
2024
2024
  font-size: 48px;
2025
2025
  line-height: 48px;
@@ -2039,10 +2039,10 @@ You will need this password to access your ${e} wallet on a new device. Please k
2039
2039
  overflow: hidden;
2040
2040
  max-width: 275px;
2041
2041
  text-overflow: ellipsis;
2042
- `;import{VoidSigner as PC}from"@ethersproject/abstract-signer";import{BigNumber as xt}from"@ethersproject/bignumber";import{Contract as xC}from"@ethersproject/contracts";import{EtherscanProvider as lR}from"@ethersproject/providers";import{serialize as TC}from"@ethersproject/transactions";var wa={id:42161,name:"Arbitrum One",network:"arbitrum",nativeCurrency:{name:"Ether",symbol:"ETH",decimals:18},rpcUrls:{alchemy:{http:["https://arb-mainnet.g.alchemy.com/v2"],webSocket:["wss://arb-mainnet.g.alchemy.com/v2"]},infura:{http:["https://arbitrum-mainnet.infura.io/v3"],webSocket:["wss://arbitrum-mainnet.infura.io/ws/v3"]},default:{http:["https://arb1.arbitrum.io/rpc"]},public:{http:["https://arb1.arbitrum.io/rpc"]}},blockExplorers:{etherscan:{name:"Arbiscan",url:"https://arbiscan.io"},default:{name:"Arbiscan",url:"https://arbiscan.io"}}};var Ca={id:421613,name:"Arbitrum Goerli",network:"arbitrum-goerli",nativeCurrency:{name:"Goerli Ether",symbol:"AGOR",decimals:18},rpcUrls:{alchemy:{http:["https://arb-goerli.g.alchemy.com/v2"],webSocket:["wss://arb-goerli.g.alchemy.com/v2"]},infura:{http:["https://arbitrum-goerli.infura.io/v3"],webSocket:["wss://arbitrum-goerli.infura.io/ws/v3"]},default:{http:["https://goerli-rollup.arbitrum.io/rpc"]},public:{http:["https://goerli-rollup.arbitrum.io/rpc"]}},blockExplorers:{etherscan:{name:"Arbiscan",url:"https://goerli.arbiscan.io/"},default:{name:"Arbiscan",url:"https://goerli.arbiscan.io/"}},testnet:!0};var ba={id:421614,name:"Arbitrum Sepolia",network:"arbitrum-sepolia",nativeCurrency:{name:"Arbitrum Sepolia Ether",symbol:"ETH",decimals:18},rpcUrls:{default:{http:["https://sepolia-rollup.arbitrum.io/rpc"]},public:{http:["https://sepolia-rollup.arbitrum.io/rpc"]}},blockExplorers:{default:{name:"Blockscout",url:"https://sepolia-explorer.arbitrum.io"}},testnet:!0};var Ea={id:8453,network:"base",name:"Base",nativeCurrency:{name:"Ether",symbol:"ETH",decimals:18},rpcUrls:{blast:{http:["https://base-mainnet.blastapi.io"],webSocket:["wss://base-mainnet.blastapi.io"]},default:{http:["https://mainnet.base.org"]},public:{http:["https://mainnet.base.org"]}},blockExplorers:{etherscan:{name:"Basescan",url:"https://basescan.org"},default:{name:"Basescan",url:"https://basescan.org"}},testnet:!0};var Pa={id:84531,network:"base-goerli",name:"Base Goerli Testnet",nativeCurrency:{name:"Goerli Ether",symbol:"ETH",decimals:18},rpcUrls:{blast:{http:["https://base-goerli.blastapi.io"],webSocket:["wss://base-goerli.blastapi.io"]},default:{http:["https://goerli.base.org"]},public:{http:["https://goerli.base.org"]}},blockExplorers:{etherscan:{name:"Basescan",url:"https://goerli.basescan.org"},default:{name:"Basescan",url:"https://goerli.basescan.org"}},testnet:!0};var xa={id:10,name:"OP Mainnet",network:"optimism",nativeCurrency:{name:"Ether",symbol:"ETH",decimals:18},rpcUrls:{alchemy:{http:["https://opt-mainnet.g.alchemy.com/v2"],webSocket:["wss://opt-mainnet.g.alchemy.com/v2"]},infura:{http:["https://optimism-mainnet.infura.io/v3"],webSocket:["wss://optimism-mainnet.infura.io/ws/v3"]},default:{http:["https://mainnet.optimism.io"]},public:{http:["https://mainnet.optimism.io"]}},blockExplorers:{etherscan:{name:"Etherscan",url:"https://optimistic.etherscan.io"},default:{name:"Optimism Explorer",url:"https://explorer.optimism.io"}}};var Ta={id:420,name:"Optimism Goerli Testnet",network:"optimism-goerli",nativeCurrency:{name:"Goerli Ether",symbol:"ETH",decimals:18},rpcUrls:{alchemy:{http:["https://opt-goerli.g.alchemy.com/v2"],webSocket:["wss://opt-goerli.g.alchemy.com/v2"]},infura:{http:["https://optimism-goerli.infura.io/v3"],webSocket:["wss://optimism-goerli.infura.io/ws/v3"]},default:{http:["https://goerli.optimism.io"]},public:{http:["https://goerli.optimism.io"]}},blockExplorers:{etherscan:{name:"Etherscan",url:"https://goerli-optimism.etherscan.io"},default:{name:"Etherscan",url:"https://goerli-optimism.etherscan.io"}},testnet:!0};var Sa={id:7777777,name:"Zora",network:"zora",nativeCurrency:{decimals:18,name:"Ether",symbol:"ETH"},rpcUrls:{default:{http:["https://rpc.zora.energy"],webSocket:["wss://rpc.zora.energy"]},public:{http:["https://rpc.zora.energy"],webSocket:["wss://rpc.zora.energy"]}},blockExplorers:{default:{name:"Explorer",url:"https://explorer.zora.energy"}}};var _a={id:999,name:"Zora Goerli Testnet",network:"zora-testnet",nativeCurrency:{decimals:18,name:"Zora Goerli",symbol:"ETH"},rpcUrls:{default:{http:["https://testnet.rpc.zora.energy"],webSocket:["wss://testnet.rpc.zora.energy"]},public:{http:["https://testnet.rpc.zora.energy"],webSocket:["wss://testnet.rpc.zora.energy"]}},blockExplorers:{default:{name:"Explorer",url:"https://testnet.explorer.zora.energy"}},testnet:!0};import{parseUnits as mm}from"@ethersproject/units";import{ofetch as bC}from"ofetch";var Fn={id:137,name:"Polygon Mainnet",network:"matic",nativeCurrency:{name:"MATIC",symbol:"MATIC",decimals:18},rpcUrls:{alchemy:{http:["https://polygon-mainnet.g.alchemy.com/v2"],webSocket:["wss://polygon-mainnet.g.alchemy.com/v2"]},infura:{http:["https://polygon-mainnet.infura.io/v3"],webSocket:["wss://polygon-mainnet.infura.io/ws/v3"]},default:{http:["https://polygon-rpc.com"]},public:{http:["https://polygon-rpc.com"]}},blockExplorers:{etherscan:{name:"PolygonScan",url:"https://polygonscan.com"},default:{name:"PolygonScan",url:"https://polygonscan.com"}}};var Bn={id:80001,name:"Mumbai",network:"maticmum",nativeCurrency:{name:"MATIC",symbol:"MATIC",decimals:18},rpcUrls:{alchemy:{http:["https://polygon-mumbai.g.alchemy.com/v2"],webSocket:["wss://polygon-mumbai.g.alchemy.com/v2"]},infura:{http:["https://polygon-mumbai.infura.io/v3"],webSocket:["wss://polygon-mumbai.infura.io/ws/v3"]},default:{http:["https://matic-mumbai.chainstacklabs.com"]},public:{http:["https://matic-mumbai.chainstacklabs.com"]}},blockExplorers:{etherscan:{name:"PolygonScan",url:"https://mumbai.polygonscan.com"},default:{name:"PolygonScan",url:"https://mumbai.polygonscan.com"}},testnet:!0};var fm=[Fn.id,Bn.id],pl=e=>({maxPriorityFee:mm(e.maxPriorityFee.toFixed(9),"gwei").toHexString(),maxFee:mm(e.maxFee.toFixed(9),"gwei").toHexString()}),EC=e=>({safeLow:pl(e.safeLow),standard:pl(e.standard),fast:pl(e.fast)}),hm=async e=>{let t="";switch(e){case Fn.id:t="https://gasstation.polygon.technology/v2";break;case Bn.id:t="https://gasstation-testnet.polygon.technology/v2";break;default:throw Error(`chainId ${e} does not support polygon gas stations`)}return EC(await bC(t))};function ro(e){if(typeof e=="number"||typeof e=="bigint"||typeof e=="string")return e;if(typeof e.toHexString=="function")return e.toHexString();throw new Error(`Expected numeric value but received ${e}`)}function SC(e){let t={};return e.to!==void 0&&(t.to=e.to),e.data!==void 0&&(t.data=e.data),e.chainId!==void 0&&(t.chainId=e.chainId),e.type!==void 0&&(t.type=e.type),e.accessList!==void 0&&(t.accessList=e.accessList),e.nonce!==void 0&&(t.nonce=ro(e.nonce)),e.gasLimit!==void 0&&(t.gasLimit=ro(e.gasLimit)),e.gasPrice!==void 0&&(t.gasPrice=ro(e.gasPrice)),e.value!==void 0&&(t.value=ro(e.value)),e.maxFeePerGas!==void 0&&(t.maxFeePerGas=ro(e.maxFeePerGas)),e.maxPriorityFeePerGas!==void 0&&(t.maxPriorityFeePerGas=ro(e.maxPriorityFeePerGas)),t}function _C(e){let t={};return e.to!==void 0&&(t.to=e.to),e.data!==void 0&&(t.data=e.data),e.chainId!==void 0&&(t.chainId=e.chainId),e.type!==void 0&&(t.type=e.type),e.accessList!==void 0&&(t.accessList=e.accessList),e.nonce!==void 0&&(t.nonce=le(e.nonce).toNumber()),e.gasLimit!==void 0&&(t.gasLimit=le(e.gasLimit)),e.gasPrice!==void 0&&(t.gasPrice=le(e.gasPrice)),e.value!==void 0&&(t.value=le(e.value)),e.maxFeePerGas!==void 0&&(t.maxFeePerGas=le(e.maxFeePerGas)),e.maxPriorityFeePerGas!==void 0&&(t.maxPriorityFeePerGas=le(e.maxPriorityFeePerGas)),t}async function Br(e,t,o){t.chainId=Number(t.chainId),gm(t);let r=new PC(e,o);if(t.gas&&(t.gasLimit=t.gas,delete t.gas),fm.includes(t.chainId)&&(!t.maxPriorityFeePerGas||!t.maxFeePerGas))try{let{standard:i}=await hm(t.chainId);t.maxPriorityFeePerGas||(t.maxPriorityFeePerGas=i.maxPriorityFee),t.maxFeePerGas||(t.maxFeePerGas=i.maxFee)}catch(i){throw new Error(`Failed to set gas prices from Polygon gas station with error: ${i}.`)}if(kC(t.chainId)&&!t.maxFeePerGas)try{let{lastBaseFeePerGas:i}=await r.getFeeData();if(i){let a=i.mul(xt.from(120)).div(xt.from(100));t.maxFeePerGas=ro(a),t.maxPriorityFeePerGas=ro(xt.from(0))}}catch(i){throw new Error(`Failed to set gas price for Arbitrum transaction: ${i}.`)}if(ul(t.chainId)&&(!t.maxPriorityFeePerGas||!t.maxFeePerGas)&&!t.gasPrice)try{if(t.type=2,!t.maxPriorityFeePerGas){let i=await o.send("eth_maxPriorityFeePerGas",[]);t.maxPriorityFeePerGas=i}if(t.maxFeePerGas&&(console.warn("maxFeePerGas is specified without maxPriorityFeePerGas - this can result in hung transactions."),t.maxPriorityFeePerGas>=t.maxFeePerGas))throw new Error("Overridden maxFeePerGas is less than or equal to the calculated maxPriorityFeePerGas. Please set both values or maxPriorityFeePerGas alone for correct gas estimation.");if(!t.maxFeePerGas){let{lastBaseFeePerGas:i}=await r.getFeeData();if(!i)throw new Error("Unable to fetch baseFee for last block.");let s=xt.from(i).mul(xt.from(126)).div(xt.from(100)).add(xt.from(t.maxPriorityFeePerGas));t.maxFeePerGas=ro(s)}}catch(i){throw new Error(`Failed to set gas price for OP stack transaction: ${i}.`)}AC(t.chainId)&&t.type!=0&&((t.type==1||t.type==2)&&console.warn("Transaction request type specified is incompatible for chain and will result in undefined behavior. Please use transaction type 0."),t.type===void 0&&(t.type=0));let n=await r.populateTransaction({to:t.to,from:t.from,nonce:t.nonce,gasLimit:t.gasLimit,gasPrice:t.gasPrice,data:t.data,value:t.value,chainId:t.chainId,type:t.type,accessList:t.accessList,maxFeePerGas:t.maxFeePerGas,maxPriorityFeePerGas:t.maxPriorityFeePerGas});return SC(n)}async function ka(e,t,o,r,n){r=Object.assign({chainId:qt},r),gm(r);let a=(await o.rpc({address:t,accessToken:e,request:{method:"eth_signTransaction",params:[r]}})).response.data;return await n.sendTransaction(a)}async function ym(e,t,o){let r=await o.getBalance(e),n=t.value||0,i=r.sub(le(n)),a=!i.isNegative()&&!i.isZero();return{balance:r,hasSufficientFunds:a}}function ul(e){return[Ea.id,Pa.id,xa.id,Ta.id,Sa.id,_a.id].includes(e)}function kC(e){return[wa.id,Ca.id,ba.id].includes(e)}function AC(e){return[56,97].includes(e)}async function ml(e,t){if(!e.chainId||e.chainId&&!ul(e.chainId))return xt.from(0);let o=xt.from(0);try{let r=new xC(uc,mc,t),n=_C(e),i=TC(n);o=await r.getL1Fee(i)}catch{}return o}async function Aa(e,t){delete e.from;let o=xt.from(0),r=xt.from(0);if(e.gasLimit?o=le(e.gasLimit):o=await t.estimateGas(e),e.type==2)if(e.maxFeePerGas)r=le(e.maxFeePerGas);else{let i=await t.getFeeData();i.maxFeePerGas&&(r=i.maxFeePerGas)}else if(e.type==0||e.type==1)if(e.gasPrice)r=le(e.gasPrice);else{let i=await t.getFeeData();i.gasPrice&&(r=i.gasPrice)}else if(e.gasPrice)r=le(e.gasPrice);else{let i=await t.getFeeData();i.gasPrice&&(r=i.gasPrice)}let n=o.mul(r);if(e.chainId&&ul(e.chainId))try{let i=await ml(e,t);n=n.add(i)}catch{}return n}function gm(e){let t=["gasLimit","gasPrice","value","maxPriorityFeePerGas","maxFeePerGas"];for(let o of t){let r=e[o];if(!(typeof r>"u")&&!RC(r))throw new Error(`Transaction request property '${o}' must be a valid number, bigint, or hex string representing a quantity`)}if(typeof e.chainId!="number")throw new Error("Transaction request property 'chainId' must be a number")}function RC(e){let t=typeof e=="number",o=typeof e=="bigint",r=typeof e=="string"&&IC(e);return t||o||r}function IC(e){return/^-?0x[a-f0-9]+$/i.test(e)}function Ra(e){return{to:e.to,from:e.from,contractAddress:e.contractAddress,transactionIndex:e.transactionIndex,root:e.root,logsBloom:e.logsBloom,blockHash:e.blockHash,transactionHash:e.transactionHash,logs:e.logs,blockNumber:e.blockNumber,confirmations:e.confirmations,byzantium:e.byzantium,type:e.type,status:e.status,gasUsed:e.gasUsed.toHexString(),cumulativeGasUsed:e.cumulativeGasUsed.toHexString(),effectiveGasPrice:e.effectiveGasPrice?e.effectiveGasPrice.toHexString():void 0}}import{useState as fl,useEffect as WC}from"react";var Ia=e=>{let{showFiatPrices:t,getUsdTokenPrice:o,chains:r}=k(),[n,i]=fl(!0),[a,l]=fl(void 0),[s,c]=fl(void 0);return WC(()=>{let u=e.chainId||qt,y=r.find(m=>m.id===Number(u));if(!y)throw new H(`Unsupported chain: ${u}`);(async()=>{if(!t){i(!1);return}try{i(!0);let m=await o(y);m?c(m):l(new Error(`Unable to fetch token price on chain id ${y.id}`))}catch(m){l(m)}finally{i(!1)}})()},[e.chainId]),{tokenPrice:s,isTokenPriceLoading:n,tokenPriceError:a}};import{createContext as MC,useContext as LC}from"react";var hl=MC({wallets:[],ready:!1});function Gn(){return LC(hl)}import{jsx as wm}from"react/jsx-runtime";var yl=({pendingTransaction:e})=>{let{getAccessToken:t}=z(),{wallets:o}=Gn(),{walletProxy:r,rpcConfig:n,chains:i,nativeTokenSymbolForChainId:a}=k(),[l,s]=vm(e),{tokenPrice:c}=Ia(l),[u,y]=vm(null),C=a(e.chainId)||"ETH",m=OC(()=>o.find(P=>P.walletClientType==="privy"),[o]);return DC(()=>{async function P(){if(!await t()||!r||!m)return l;let x=new NC(wt(l.chainId,i,n)),v=await Aa(l,x);return y(le(v.toBigInt()).toHexString()),Br(m.address,l,x)}P().then(b=>{s(b)})},[r]),m?wm(FC,{children:wm(Fr,{from:m.address,to:l.to,txn:l,gas:u??void 0,tokenPrice:c,tokenSymbol:C})}):null},FC=UC.div`
2042
+ `;import{VoidSigner as PC}from"@ethersproject/abstract-signer";import{BigNumber as xt}from"@ethersproject/bignumber";import{Contract as xC}from"@ethersproject/contracts";import{EtherscanProvider as lR}from"@ethersproject/providers";import{serialize as TC}from"@ethersproject/transactions";var wa={id:42161,name:"Arbitrum One",network:"arbitrum",nativeCurrency:{name:"Ether",symbol:"ETH",decimals:18},rpcUrls:{alchemy:{http:["https://arb-mainnet.g.alchemy.com/v2"],webSocket:["wss://arb-mainnet.g.alchemy.com/v2"]},infura:{http:["https://arbitrum-mainnet.infura.io/v3"],webSocket:["wss://arbitrum-mainnet.infura.io/ws/v3"]},default:{http:["https://arb1.arbitrum.io/rpc"]},public:{http:["https://arb1.arbitrum.io/rpc"]}},blockExplorers:{etherscan:{name:"Arbiscan",url:"https://arbiscan.io"},default:{name:"Arbiscan",url:"https://arbiscan.io"}}};var Ca={id:421613,name:"Arbitrum Goerli",network:"arbitrum-goerli",nativeCurrency:{name:"Goerli Ether",symbol:"AGOR",decimals:18},rpcUrls:{alchemy:{http:["https://arb-goerli.g.alchemy.com/v2"],webSocket:["wss://arb-goerli.g.alchemy.com/v2"]},infura:{http:["https://arbitrum-goerli.infura.io/v3"],webSocket:["wss://arbitrum-goerli.infura.io/ws/v3"]},default:{http:["https://goerli-rollup.arbitrum.io/rpc"]},public:{http:["https://goerli-rollup.arbitrum.io/rpc"]}},blockExplorers:{etherscan:{name:"Arbiscan",url:"https://goerli.arbiscan.io/"},default:{name:"Arbiscan",url:"https://goerli.arbiscan.io/"}},testnet:!0};var ba={id:421614,name:"Arbitrum Sepolia",network:"arbitrum-sepolia",nativeCurrency:{name:"Arbitrum Sepolia Ether",symbol:"ETH",decimals:18},rpcUrls:{default:{http:["https://sepolia-rollup.arbitrum.io/rpc"]},public:{http:["https://sepolia-rollup.arbitrum.io/rpc"]}},blockExplorers:{default:{name:"Blockscout",url:"https://sepolia-explorer.arbitrum.io"}},testnet:!0};var Ea={id:8453,network:"base",name:"Base",nativeCurrency:{name:"Ether",symbol:"ETH",decimals:18},rpcUrls:{blast:{http:["https://base-mainnet.blastapi.io"],webSocket:["wss://base-mainnet.blastapi.io"]},default:{http:["https://mainnet.base.org"]},public:{http:["https://mainnet.base.org"]}},blockExplorers:{etherscan:{name:"Basescan",url:"https://basescan.org"},default:{name:"Basescan",url:"https://basescan.org"}},testnet:!0};var Pa={id:84531,network:"base-goerli",name:"Base Goerli Testnet",nativeCurrency:{name:"Goerli Ether",symbol:"ETH",decimals:18},rpcUrls:{blast:{http:["https://base-goerli.blastapi.io"],webSocket:["wss://base-goerli.blastapi.io"]},default:{http:["https://goerli.base.org"]},public:{http:["https://goerli.base.org"]}},blockExplorers:{etherscan:{name:"Basescan",url:"https://goerli.basescan.org"},default:{name:"Basescan",url:"https://goerli.basescan.org"}},testnet:!0};var xa={id:10,name:"OP Mainnet",network:"optimism",nativeCurrency:{name:"Ether",symbol:"ETH",decimals:18},rpcUrls:{alchemy:{http:["https://opt-mainnet.g.alchemy.com/v2"],webSocket:["wss://opt-mainnet.g.alchemy.com/v2"]},infura:{http:["https://optimism-mainnet.infura.io/v3"],webSocket:["wss://optimism-mainnet.infura.io/ws/v3"]},default:{http:["https://mainnet.optimism.io"]},public:{http:["https://mainnet.optimism.io"]}},blockExplorers:{etherscan:{name:"Etherscan",url:"https://optimistic.etherscan.io"},default:{name:"Optimism Explorer",url:"https://explorer.optimism.io"}}};var Ta={id:420,name:"Optimism Goerli Testnet",network:"optimism-goerli",nativeCurrency:{name:"Goerli Ether",symbol:"ETH",decimals:18},rpcUrls:{alchemy:{http:["https://opt-goerli.g.alchemy.com/v2"],webSocket:["wss://opt-goerli.g.alchemy.com/v2"]},infura:{http:["https://optimism-goerli.infura.io/v3"],webSocket:["wss://optimism-goerli.infura.io/ws/v3"]},default:{http:["https://goerli.optimism.io"]},public:{http:["https://goerli.optimism.io"]}},blockExplorers:{etherscan:{name:"Etherscan",url:"https://goerli-optimism.etherscan.io"},default:{name:"Etherscan",url:"https://goerli-optimism.etherscan.io"}},testnet:!0};var Sa={id:7777777,name:"Zora",network:"zora",nativeCurrency:{decimals:18,name:"Ether",symbol:"ETH"},rpcUrls:{default:{http:["https://rpc.zora.energy"],webSocket:["wss://rpc.zora.energy"]},public:{http:["https://rpc.zora.energy"],webSocket:["wss://rpc.zora.energy"]}},blockExplorers:{default:{name:"Explorer",url:"https://explorer.zora.energy"}}};var _a={id:999,name:"Zora Goerli Testnet",network:"zora-testnet",nativeCurrency:{decimals:18,name:"Zora Goerli",symbol:"ETH"},rpcUrls:{default:{http:["https://testnet.rpc.zora.energy"],webSocket:["wss://testnet.rpc.zora.energy"]},public:{http:["https://testnet.rpc.zora.energy"],webSocket:["wss://testnet.rpc.zora.energy"]}},blockExplorers:{default:{name:"Explorer",url:"https://testnet.explorer.zora.energy"}},testnet:!0};import{parseUnits as fm}from"@ethersproject/units";import{ofetch as bC}from"ofetch";var Fn={id:137,name:"Polygon Mainnet",network:"matic",nativeCurrency:{name:"MATIC",symbol:"MATIC",decimals:18},rpcUrls:{alchemy:{http:["https://polygon-mainnet.g.alchemy.com/v2"],webSocket:["wss://polygon-mainnet.g.alchemy.com/v2"]},infura:{http:["https://polygon-mainnet.infura.io/v3"],webSocket:["wss://polygon-mainnet.infura.io/ws/v3"]},default:{http:["https://polygon-rpc.com"]},public:{http:["https://polygon-rpc.com"]}},blockExplorers:{etherscan:{name:"PolygonScan",url:"https://polygonscan.com"},default:{name:"PolygonScan",url:"https://polygonscan.com"}}};var Bn={id:80001,name:"Mumbai",network:"maticmum",nativeCurrency:{name:"MATIC",symbol:"MATIC",decimals:18},rpcUrls:{alchemy:{http:["https://polygon-mumbai.g.alchemy.com/v2"],webSocket:["wss://polygon-mumbai.g.alchemy.com/v2"]},infura:{http:["https://polygon-mumbai.infura.io/v3"],webSocket:["wss://polygon-mumbai.infura.io/ws/v3"]},default:{http:["https://matic-mumbai.chainstacklabs.com"]},public:{http:["https://matic-mumbai.chainstacklabs.com"]}},blockExplorers:{etherscan:{name:"PolygonScan",url:"https://mumbai.polygonscan.com"},default:{name:"PolygonScan",url:"https://mumbai.polygonscan.com"}},testnet:!0};var hm=[Fn.id,Bn.id],pl=e=>({maxPriorityFee:fm(e.maxPriorityFee.toFixed(9),"gwei").toHexString(),maxFee:fm(e.maxFee.toFixed(9),"gwei").toHexString()}),EC=e=>({safeLow:pl(e.safeLow),standard:pl(e.standard),fast:pl(e.fast)}),ym=async e=>{let t="";switch(e){case Fn.id:t="https://gasstation.polygon.technology/v2";break;case Bn.id:t="https://gasstation-testnet.polygon.technology/v2";break;default:throw Error(`chainId ${e} does not support polygon gas stations`)}return EC(await bC(t))};function ro(e){if(typeof e=="number"||typeof e=="bigint"||typeof e=="string")return e;if(typeof e.toHexString=="function")return e.toHexString();throw new Error(`Expected numeric value but received ${e}`)}function SC(e){let t={};return e.to!==void 0&&(t.to=e.to),e.data!==void 0&&(t.data=e.data),e.chainId!==void 0&&(t.chainId=e.chainId),e.type!==void 0&&(t.type=e.type),e.accessList!==void 0&&(t.accessList=e.accessList),e.nonce!==void 0&&(t.nonce=ro(e.nonce)),e.gasLimit!==void 0&&(t.gasLimit=ro(e.gasLimit)),e.gasPrice!==void 0&&(t.gasPrice=ro(e.gasPrice)),e.value!==void 0&&(t.value=ro(e.value)),e.maxFeePerGas!==void 0&&(t.maxFeePerGas=ro(e.maxFeePerGas)),e.maxPriorityFeePerGas!==void 0&&(t.maxPriorityFeePerGas=ro(e.maxPriorityFeePerGas)),t}function _C(e){let t={};return e.to!==void 0&&(t.to=e.to),e.data!==void 0&&(t.data=e.data),e.chainId!==void 0&&(t.chainId=e.chainId),e.type!==void 0&&(t.type=e.type),e.accessList!==void 0&&(t.accessList=e.accessList),e.nonce!==void 0&&(t.nonce=ce(e.nonce).toNumber()),e.gasLimit!==void 0&&(t.gasLimit=ce(e.gasLimit)),e.gasPrice!==void 0&&(t.gasPrice=ce(e.gasPrice)),e.value!==void 0&&(t.value=ce(e.value)),e.maxFeePerGas!==void 0&&(t.maxFeePerGas=ce(e.maxFeePerGas)),e.maxPriorityFeePerGas!==void 0&&(t.maxPriorityFeePerGas=ce(e.maxPriorityFeePerGas)),t}async function Br(e,t,o){t.chainId=Number(t.chainId),vm(t);let r=new PC(e,o);if(t.gas&&(t.gasLimit=t.gas,delete t.gas),hm.includes(t.chainId)&&(!t.maxPriorityFeePerGas||!t.maxFeePerGas))try{let{standard:i}=await ym(t.chainId);t.maxPriorityFeePerGas||(t.maxPriorityFeePerGas=i.maxPriorityFee),t.maxFeePerGas||(t.maxFeePerGas=i.maxFee)}catch(i){throw new Error(`Failed to set gas prices from Polygon gas station with error: ${i}.`)}if(kC(t.chainId)&&!t.maxFeePerGas)try{let{lastBaseFeePerGas:i}=await r.getFeeData();if(i){let a=i.mul(xt.from(120)).div(xt.from(100));t.maxFeePerGas=ro(a),t.maxPriorityFeePerGas=ro(xt.from(0))}}catch(i){throw new Error(`Failed to set gas price for Arbitrum transaction: ${i}.`)}if(ul(t.chainId)&&(!t.maxPriorityFeePerGas||!t.maxFeePerGas)&&!t.gasPrice)try{if(t.type=2,!t.maxPriorityFeePerGas){let i=await o.send("eth_maxPriorityFeePerGas",[]);t.maxPriorityFeePerGas=i}if(t.maxFeePerGas&&(console.warn("maxFeePerGas is specified without maxPriorityFeePerGas - this can result in hung transactions."),t.maxPriorityFeePerGas>=t.maxFeePerGas))throw new Error("Overridden maxFeePerGas is less than or equal to the calculated maxPriorityFeePerGas. Please set both values or maxPriorityFeePerGas alone for correct gas estimation.");if(!t.maxFeePerGas){let{lastBaseFeePerGas:i}=await r.getFeeData();if(!i)throw new Error("Unable to fetch baseFee for last block.");let s=xt.from(i).mul(xt.from(126)).div(xt.from(100)).add(xt.from(t.maxPriorityFeePerGas));t.maxFeePerGas=ro(s)}}catch(i){throw new Error(`Failed to set gas price for OP stack transaction: ${i}.`)}AC(t.chainId)&&t.type!=0&&((t.type==1||t.type==2)&&console.warn("Transaction request type specified is incompatible for chain and will result in undefined behavior. Please use transaction type 0."),t.type===void 0&&(t.type=0));let n=await r.populateTransaction({to:t.to,from:t.from,nonce:t.nonce,gasLimit:t.gasLimit,gasPrice:t.gasPrice,data:t.data,value:t.value,chainId:t.chainId,type:t.type,accessList:t.accessList,maxFeePerGas:t.maxFeePerGas,maxPriorityFeePerGas:t.maxPriorityFeePerGas});return SC(n)}async function ka(e,t,o,r,n){r=Object.assign({chainId:qt},r),vm(r);let a=(await o.rpc({address:t,accessToken:e,request:{method:"eth_signTransaction",params:[r]}})).response.data;return await n.sendTransaction(a)}async function gm(e,t,o){let r=await o.getBalance(e),n=t.value||0,i=r.sub(ce(n)),a=!i.isNegative()&&!i.isZero();return{balance:r,hasSufficientFunds:a}}function ul(e){return[Ea.id,Pa.id,xa.id,Ta.id,Sa.id,_a.id].includes(e)}function kC(e){return[wa.id,Ca.id,ba.id].includes(e)}function AC(e){return[56,97].includes(e)}async function ml(e,t){if(!e.chainId||e.chainId&&!ul(e.chainId))return xt.from(0);let o=xt.from(0);try{let r=new xC(mc,fc,t),n=_C(e),i=TC(n);o=await r.getL1Fee(i)}catch{}return o}async function Aa(e,t){delete e.from;let o=xt.from(0),r=xt.from(0);if(e.gasLimit?o=ce(e.gasLimit):o=await t.estimateGas(e),e.type==2)if(e.maxFeePerGas)r=ce(e.maxFeePerGas);else{let i=await t.getFeeData();i.maxFeePerGas&&(r=i.maxFeePerGas)}else if(e.type==0||e.type==1)if(e.gasPrice)r=ce(e.gasPrice);else{let i=await t.getFeeData();i.gasPrice&&(r=i.gasPrice)}else if(e.gasPrice)r=ce(e.gasPrice);else{let i=await t.getFeeData();i.gasPrice&&(r=i.gasPrice)}let n=o.mul(r);if(e.chainId&&ul(e.chainId))try{let i=await ml(e,t);n=n.add(i)}catch{}return n}function vm(e){let t=["gasLimit","gasPrice","value","maxPriorityFeePerGas","maxFeePerGas"];for(let o of t){let r=e[o];if(!(typeof r>"u")&&!RC(r))throw new Error(`Transaction request property '${o}' must be a valid number, bigint, or hex string representing a quantity`)}if(typeof e.chainId!="number")throw new Error("Transaction request property 'chainId' must be a number")}function RC(e){let t=typeof e=="number",o=typeof e=="bigint",r=typeof e=="string"&&IC(e);return t||o||r}function IC(e){return/^-?0x[a-f0-9]+$/i.test(e)}function Ra(e){return{to:e.to,from:e.from,contractAddress:e.contractAddress,transactionIndex:e.transactionIndex,root:e.root,logsBloom:e.logsBloom,blockHash:e.blockHash,transactionHash:e.transactionHash,logs:e.logs,blockNumber:e.blockNumber,confirmations:e.confirmations,byzantium:e.byzantium,type:e.type,status:e.status,gasUsed:e.gasUsed.toHexString(),cumulativeGasUsed:e.cumulativeGasUsed.toHexString(),effectiveGasPrice:e.effectiveGasPrice?e.effectiveGasPrice.toHexString():void 0}}import{useState as fl,useEffect as WC}from"react";var Ia=e=>{let{showFiatPrices:t,getUsdTokenPrice:o,chains:r}=k(),[n,i]=fl(!0),[a,l]=fl(void 0),[s,c]=fl(void 0);return WC(()=>{let u=e.chainId||qt,y=r.find(m=>m.id===Number(u));if(!y)throw new H(`Unsupported chain: ${u}`);(async()=>{if(!t){i(!1);return}try{i(!0);let m=await o(y);m?c(m):l(new Error(`Unable to fetch token price on chain id ${y.id}`))}catch(m){l(m)}finally{i(!1)}})()},[e.chainId]),{tokenPrice:s,isTokenPriceLoading:n,tokenPriceError:a}};import{createContext as MC,useContext as LC}from"react";var hl=MC({wallets:[],ready:!1});function Gn(){return LC(hl)}import{jsx as Cm}from"react/jsx-runtime";var yl=({pendingTransaction:e})=>{let{getAccessToken:t}=z(),{wallets:o}=Gn(),{walletProxy:r,rpcConfig:n,chains:i,nativeTokenSymbolForChainId:a}=k(),[l,s]=wm(e),{tokenPrice:c}=Ia(l),[u,y]=wm(null),C=a(e.chainId)||"ETH",m=OC(()=>o.find(P=>P.walletClientType==="privy"),[o]);return DC(()=>{async function P(){if(!await t()||!r||!m)return l;let x=new NC(wt(l.chainId,i,n)),v=await Aa(l,x);return y(ce(v.toBigInt()).toHexString()),Br(m.address,l,x)}P().then(b=>{s(b)})},[r]),m?Cm(FC,{children:Cm(Fr,{from:m.address,to:l.to,txn:l,gas:u??void 0,tokenPrice:c,tokenSymbol:C})}):null},FC=UC.div`
2043
2043
  width: 100%;
2044
2044
  padding: 1rem 0;
2045
- `;import{Fragment as vl,jsx as q,jsxs as Bt}from"react/jsx-runtime";var Cm=({open:e,onClose:t})=>{let{user:o}=z(),[r,n]=gl(null),{init:i,cancel:a}=Or();$C(()=>{e&&o?.mfaMethods&&o.mfaMethods.length>0?l(o.mfaMethods[0]):n(null)},[o?.mfaMethods,e]);async function l(c){try{n(c),await i(c)}catch(u){console.error(u)}}let s=()=>{n(null),a(),t()};return!e||!o?null:r?q(jC,{selectedMethod:r,onClose:s,onBack:o.mfaMethods.length>1?()=>n(null):void 0}):Bt(vl,{children:[q(T,{onClose:s},"header"),q(Me,{children:q(He,{children:q(VC,{})})}),q(Le,{children:"Verify your identity"}),q(Te,{children:"Choose a verification method"}),Bt(da,{children:[o.mfaMethods.includes("totp")&&Bt(ge,{onClick:()=>l("totp"),children:[q(BC,{}),"Authenticator App"]},"totp"),o.mfaMethods.includes("sms")&&Bt(ge,{onClick:()=>l("sms"),children:[q(GC,{}),"SMS"]},"sms")]}),q(Y,{})]})},jC=({selectedMethod:e,onClose:t,onBack:o})=>{let{app:r}=S(),{pendingTransaction:n}=k(),[i,a]=gl(!1),[l,s]=gl(!1),{submit:c}=Or();async function u(y){try{if(!y)return;await c(e,y),s(!0),a(!1),t()}catch(C){throw Ps(C)?(a(!0),new Error("You have exceeded the maximum number of attempts. Please close this window and try again in 10 seconds.")):Pr(C)?(a(!1),new Error("The code you entered is not valid")):Er(C)?(a(!0),new Error("You have exceeded the time limit for code entry. Please try again in 30 seconds.")):(a(!1),new Error("Unknown error"))}}switch(e){case"sms":return Bt(vl,{children:[q(T,{onClose:t},"header"),q(Me,{children:q(He,{children:q(zC,{})})}),q(Le,{children:"Enter verification code"}),Bt(Ro,{children:[q(Nr,{success:l,disabled:i,onChange:u}),Bt(Te,{children:["To continue, please enter the 6-digit code sent to your ",q("strong",{children:"mobile device"})]}),n&&q(yl,{pendingTransaction:n})]}),o&&q(el,{theme:r?.appearance.palette.colorScheme,onClick:o,children:"Choose another method"}),q(Yt,{onClick:t,children:"Not now"}),q(Y,{})]});case"totp":return Bt(vl,{children:[q(T,{onClose:t},"header"),q(Me,{children:q(He,{children:q(HC,{})})}),q(Le,{children:"Enter verification code"}),Bt(Ro,{children:[q(Nr,{success:l,disabled:i,onChange:u}),Bt(Te,{children:["To continue, please enter the 6-digit code generated from your"," ",q("strong",{children:"authenticator app"})]}),n&&q(yl,{pendingTransaction:n})]}),o&&q(el,{theme:r?.appearance.palette.colorScheme,onClick:o,children:"Choose another method"}),q(Yt,{onClick:t,children:"Not now"}),q(Y,{})]});default:return null}};import{useEffect as bm,useState as Em}from"react";import xm from"styled-components";function wl(e){return e.charAt(0).toUpperCase()+e.slice(1)}import{Fragment as YC,jsx as no,jsxs as Ma}from"react/jsx-runtime";var Pm={google:{name:"Google",component:ra},discord:{name:"Discord",component:ea},github:{name:"Github",component:ta},linkedin:{name:"LinkedIn",component:ia},twitter:{name:"Twitter",component:sa},tiktok:{name:"Tiktok",component:aa},apple:{name:"Apple",component:Xi}},Wa=()=>{let e=new URL(window.location.href);e.searchParams.delete("privy_oauth_code"),e.searchParams.delete("privy_oauth_provider"),e.searchParams.delete("privy_oauth_state"),window.history.pushState({},"",e)},Tm=()=>{let{ready:e,user:t,authenticated:o}=z(),{app:r,setModalData:n,navigate:i,resetNavigation:a}=S(),{getAuthMeta:l,initLoginWithOAuth:s,loginWithOAuth:c,updateWallets:u,setReadyToTrue:y,closePrivyModal:C}=k(),[m,P]=Em(!1),[b,x]=Em(void 0),v=l()?.provider||"google",R=Pm[v].name,M=Pm[v].component,W=r?.render.inDialog?Xe:0;bm(()=>{c(v).then(()=>{Wa(),P(!0)}).catch(L=>{let O={retryable:!1,message:"Authentication failed"};if(L?.privyErrorCode==="allowlist_rejected"){x(void 0),a(),i("ALLOWLIST_REJECTION_SCREEN"),Wa();return}else L?.privyErrorCode==="linked_to_another_user"?O.detail="This account has already been linked to another user.":L?.privyErrorCode==="invalid_credentials"?(O.retryable=!0,O.detail="Something went wrong. Try again."):L.privyErrorCode==="oauth_user_denied"&&(O.detail=`Retry and check ${wl(v)} to finish connecting your account.`,O.retryable=!0);Wa(),x(O)}).finally(()=>{y()})},[]),bm(()=>{if(e&&o&&m&&t)if(po(t,r?.embeddedWallets?.createOnLogin)){let O=setTimeout(()=>{n({createWallet:{onSuccess:()=>{},onFailure:B=>console.error(B),callAuthOnSuccessOnClose:!0}}),i("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},W);return()=>clearTimeout(O)}else{let O=setTimeout(C,W);return u(),()=>clearTimeout(O)}},[e,o,m,t]);let I=m?`Successfully connected with ${R}`:b?b.message:`Verifying connection to ${R}`,A="";return m?A="You\u2019re good to go!":b?A=b.detail:A="Just a few moments more",Ma(YC,{children:[no(T,{}),no(j,{}),Ma(qC,{children:[no(KC,{children:Ma("div",{children:[no(bi,{success:m,fail:!!b}),no(M,{style:{width:"38px",height:"38px"}})]})}),Ma(go,{children:[no("h3",{children:I}),no("p",{children:A})]}),b&&b?.retryable?no(xi,{onClick:()=>{Wa(),s(v),x(void 0)},disabled:!m&&!b?.retryable,children:"Retry"}):null]}),no(Y,{})]})},qC=xm.div`
2045
+ `;import{Fragment as vl,jsx as q,jsxs as Bt}from"react/jsx-runtime";var wl=({open:e,onClose:t})=>{let{user:o}=z(),[r,n]=gl(null),{init:i,cancel:a}=Or();$C(()=>{e&&o?.mfaMethods&&o.mfaMethods.length>0?l(o.mfaMethods[0]):n(null)},[o?.mfaMethods,e]);async function l(c){try{n(c),await i(c)}catch(u){console.error(u)}}let s=()=>{n(null),a(),t()};return!e||!o?null:r?q(jC,{selectedMethod:r,onClose:s,onBack:o.mfaMethods.length>1?()=>n(null):void 0}):Bt(vl,{children:[q(T,{onClose:s},"header"),q(Le,{children:q(ze,{children:q(VC,{})})}),q(Ne,{children:"Verify your identity"}),q(_e,{children:"Choose a verification method"}),Bt(da,{children:[o.mfaMethods.includes("totp")&&Bt(ve,{onClick:()=>l("totp"),children:[q(BC,{}),"Authenticator App"]},"totp"),o.mfaMethods.includes("sms")&&Bt(ve,{onClick:()=>l("sms"),children:[q(GC,{}),"SMS"]},"sms")]}),q(Y,{})]})},jC=({selectedMethod:e,onClose:t,onBack:o})=>{let{app:r}=S(),{pendingTransaction:n}=k(),[i,a]=gl(!1),[l,s]=gl(!1),{submit:c}=Or();async function u(y){try{if(!y)return;await c(e,y),s(!0),a(!1),t()}catch(C){throw Ps(C)?(a(!0),new Error("You have exceeded the maximum number of attempts. Please close this window and try again in 10 seconds.")):xr(C)?(a(!1),new Error("The code you entered is not valid")):Pr(C)?(a(!0),new Error("You have exceeded the time limit for code entry. Please try again in 30 seconds.")):(a(!1),new Error("Unknown error"))}}switch(e){case"sms":return Bt(vl,{children:[q(T,{onClose:t},"header"),q(Le,{children:q(ze,{children:q(zC,{})})}),q(Ne,{children:"Enter verification code"}),Bt(Ro,{children:[q(Nr,{success:l,disabled:i,onChange:u}),Bt(_e,{children:["To continue, please enter the 6-digit code sent to your ",q("strong",{children:"mobile device"})]}),n&&q(yl,{pendingTransaction:n})]}),o&&q(el,{theme:r?.appearance.palette.colorScheme,onClick:o,children:"Choose another method"}),q(Yt,{onClick:t,children:"Not now"}),q(Y,{})]});case"totp":return Bt(vl,{children:[q(T,{onClose:t},"header"),q(Le,{children:q(ze,{children:q(HC,{})})}),q(Ne,{children:"Enter verification code"}),Bt(Ro,{children:[q(Nr,{success:l,disabled:i,onChange:u}),Bt(_e,{children:["To continue, please enter the 6-digit code generated from your"," ",q("strong",{children:"authenticator app"})]}),n&&q(yl,{pendingTransaction:n})]}),o&&q(el,{theme:r?.appearance.palette.colorScheme,onClick:o,children:"Choose another method"}),q(Yt,{onClick:t,children:"Not now"}),q(Y,{})]});default:return null}};import{useEffect as bm,useState as Em}from"react";import xm from"styled-components";function Cl(e){return e.charAt(0).toUpperCase()+e.slice(1)}import{Fragment as YC,jsx as no,jsxs as Ma}from"react/jsx-runtime";var Pm={google:{name:"Google",component:ra},discord:{name:"Discord",component:ea},github:{name:"Github",component:ta},linkedin:{name:"LinkedIn",component:ia},twitter:{name:"Twitter",component:sa},tiktok:{name:"Tiktok",component:aa},apple:{name:"Apple",component:Xi}},Wa=()=>{let e=new URL(window.location.href);e.searchParams.delete("privy_oauth_code"),e.searchParams.delete("privy_oauth_provider"),e.searchParams.delete("privy_oauth_state"),window.history.pushState({},"",e)},Tm=()=>{let{ready:e,user:t,authenticated:o}=z(),{app:r,setModalData:n,navigate:i,resetNavigation:a}=S(),{getAuthMeta:l,initLoginWithOAuth:s,loginWithOAuth:c,updateWallets:u,setReadyToTrue:y,closePrivyModal:C}=k(),[m,P]=Em(!1),[b,x]=Em(void 0),v=l()?.provider||"google",R=Pm[v].name,M=Pm[v].component,W=r?.render.inDialog?Xe:0;bm(()=>{c(v).then(()=>{Wa(),P(!0)}).catch(L=>{let D={retryable:!1,message:"Authentication failed"};if(L?.privyErrorCode==="allowlist_rejected"){x(void 0),a(),i("ALLOWLIST_REJECTION_SCREEN"),Wa();return}else L?.privyErrorCode==="linked_to_another_user"?D.detail="This account has already been linked to another user.":L?.privyErrorCode==="invalid_credentials"?(D.retryable=!0,D.detail="Something went wrong. Try again."):L.privyErrorCode==="oauth_user_denied"&&(D.detail=`Retry and check ${Cl(v)} to finish connecting your account.`,D.retryable=!0);Wa(),x(D)}).finally(()=>{y()})},[]),bm(()=>{if(e&&o&&m&&t)if(po(t,r?.embeddedWallets?.createOnLogin)){let D=setTimeout(()=>{n({createWallet:{onSuccess:()=>{},onFailure:B=>console.error(B),callAuthOnSuccessOnClose:!0}}),i("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},W);return()=>clearTimeout(D)}else{let D=setTimeout(C,W);return u(),()=>clearTimeout(D)}},[e,o,m,t]);let I=m?`Successfully connected with ${R}`:b?b.message:`Verifying connection to ${R}`,A="";return m?A="You\u2019re good to go!":b?A=b.detail:A="Just a few moments more",Ma(YC,{children:[no(T,{}),no(j,{}),Ma(qC,{children:[no(KC,{children:Ma("div",{children:[no(bi,{success:m,fail:!!b}),no(M,{style:{width:"38px",height:"38px"}})]})}),Ma(go,{children:[no("h3",{children:I}),no("p",{children:A})]}),b&&b?.retryable?no(xi,{onClick:()=>{Wa(),s(v),x(void 0)},disabled:!m&&!b?.retryable,children:"Retry"}):null]}),no(Y,{})]})},qC=xm.div`
2046
2046
  display: flex;
2047
2047
  flex-direction: column;
2048
2048
  align-items: center;
@@ -2075,12 +2075,12 @@ You will need this password to access your ${e} wallet on a new device. Please k
2075
2075
  }
2076
2076
  `;import{useEffect as QC,useState as _m}from"react";import ZC from"styled-components";import{isMobile as JC}from"react-device-detect";var Sm=(e,t)=>{let o=new URL(window.location.href),r=encodeURIComponent(o.href.replace(/\/$/g,"")+`?privy_token=${e}&privy_connector=injected&privy_wallet_client=phantom`);if(!kt()&&JC)return`${t?"phantom://":"https://phantom.app/ul/"}browse/${r}?ref=${r}`};import{Fragment as e0,jsx as io,jsxs as km}from"react/jsx-runtime";var Am=()=>{let{forkSession:e,ready:t,authenticated:o}=z(),[r,n]=_m(""),[i,a]=_m(!1);QC(()=>{t&&o&&e().then(n)},[t,o]);let l=Sm(r,!i),s={title:"Redirecting to Phantom Mobile Wallet",description:"We'll take you to the Phantom Mobile Wallet app to continue your login experience.",footnote:""};return t&&(s.description="For the best experience, we'll automatically log you into the Phantom Mobile Wallet in-app browser.",s.footnote="Once you're done, you can always return here and refresh to view your updated account."),i&&(s.title="Still here?",s.description="You may need to install the Phantom mobile app.",s.footnote="Once you're done, you can return here or connect via Phantom's in-app browser."),km(e0,{children:[io(T,{},"header"),io(j,{}),io(vo,{title:s.title,description:s.description}),km(yo,{children:[io(XC,{children:io(ho,{style:{width:"72px",height:"72px"}})}),io(Pi,{href:l,onClick:()=>{setTimeout(()=>a(!0),1e3)},loading:t&&!l,children:i?"Go to App Store":"Continue"}),s.footnote?io("p",{children:s.footnote}):null]}),io(K,{}),io(G,{protectedByPrivy:!0})]})},XC=ZC(Jt)`
2077
2077
  margin: 16px auto;
2078
- `;import{StaticJsonRpcProvider as a0}from"@ethersproject/providers";import{useMemo as Wm,useEffect as Mm,useState as ht}from"react";import Hr from"styled-components";function Rm(e){return e.to&&e.data?"CONTRACT_CALL":e.to&&e.value?"SEND":"UNKNOWN"}import{BigNumber as Cl}from"@ethersproject/bignumber";import t0 from"styled-components";import{Fragment as n0,jsx as Hn,jsxs as i0}from"react/jsx-runtime";var o0=(e,t)=>{if(e.gasUsed&&e.effectiveGasPrice)try{let o=Cl.from(e.gasUsed),r=Cl.from(e.effectiveGasPrice),n=o.mul(r);if(t){let i=Cl.from(t);n=n.add(i)}return n.toString()}catch{return}else return},Im=({txn:e,receipt:t,transactionInfo:o,onClose:r,tokenPrice:n,tokenSymbol:i,l1GasEstimate:a})=>i0(n0,{children:[Hn(T,{onClose:r}),Hn(ln,{title:"Transaction complete!",description:"You're all set."}),Hn(Fr,{tokenPrice:n,from:t.from,to:t.to,gas:o0(t,a),txn:e,transactionInfo:o,tokenSymbol:i}),Hn(r0,{loading:!1,onClick:r,children:"All Done"}),Hn(Y,{})]}),r0=t0(F)`
2078
+ `;import{StaticJsonRpcProvider as a0}from"@ethersproject/providers";import{useMemo as Wm,useEffect as Mm,useState as ht}from"react";import Hr from"styled-components";function Rm(e){return e.to&&e.data?"CONTRACT_CALL":e.to&&e.value?"SEND":"UNKNOWN"}import{BigNumber as bl}from"@ethersproject/bignumber";import t0 from"styled-components";import{Fragment as n0,jsx as Hn,jsxs as i0}from"react/jsx-runtime";var o0=(e,t)=>{if(e.gasUsed&&e.effectiveGasPrice)try{let o=bl.from(e.gasUsed),r=bl.from(e.effectiveGasPrice),n=o.mul(r);if(t){let i=bl.from(t);n=n.add(i)}return n.toString()}catch{return}else return},Im=({txn:e,receipt:t,transactionInfo:o,onClose:r,tokenPrice:n,tokenSymbol:i,l1GasEstimate:a})=>i0(n0,{children:[Hn(T,{onClose:r}),Hn(ln,{title:"Transaction complete!",description:"You're all set."}),Hn(Fr,{tokenPrice:n,from:t.from,to:t.to,gas:o0(t,a),txn:e,transactionInfo:o,tokenSymbol:i}),Hn(r0,{loading:!1,onClick:r,children:"All Done"}),Hn(Y,{})]}),r0=t0(F)`
2079
2079
  && {
2080
2080
  margin-top: 24px;
2081
2081
  }
2082
2082
  transition: color 350ms ease, background-color 350ms ease;
2083
- `;import{Fragment as bl,jsx as Ne,jsxs as Gr}from"react/jsx-runtime";var s0=({txn:e,txnFamily:t,uiOptions:o,tokenSymbol:r,tokenPrice:n})=>{if(t==="CONTRACT_CALL"){if(o.transactionInfo?.contractInfo)return Ne(ll,{contractInfo:o.transactionInfo.contractInfo,description:o.description});if(o.senderInfo)return Ne(ll,{contractInfo:o.senderInfo,description:o.description||o.senderInfo.actionText})}return Ne(bl,{children:Ne(um,{description:o.description||o.transactionInfo?.description||"",txn:e,tokenSymbol:r,tokenPrice:n})})},Nm=()=>{let{authenticated:e,getAccessToken:t}=z(),{wallets:o}=Gn(),{walletProxy:r,closePrivyModal:n,getFiatOnRampConfig:i,rpcConfig:a,chains:l,nativeTokenSymbolForChainId:s}=k(),{app:c,navigate:u,data:y,onUserCloseViaDialogOrKeybindRef:C,setModalData:m}=S(),{transactionRequest:P,onSuccess:b,onFailure:x,uiOptions:v,fundWalletConfig:R}=y.sendTransaction,[M,W]=ht(null),[I,A]=ht(null),[L,O]=ht(""),[B,D]=ht(),[_,Z]=ht(!1),ne=()=>{O(""),D(void 0)},fe=(ke,qe,Ke)=>{O(ke),D(new De(new At(qe??ke,Ke??Ve.E32603_DEFAULT_INTERNAL_ERROR.eipCode)))},[N,Oe]=ht(!1),[st,de]=ht(!0),[Se,ee]=ht(null),[pe,er]=ht(P),{tokenPrice:J,isTokenPriceLoading:ao}=Ia(pe),Vt=s(P.chainId)||"ETH",[tr,zr]=ht(null),[jn,or]=ht(null),[qn,oe]=ht(!0);Mm(()=>{e||(u("LANDING"),x(new Error("User must be authenticated before transacting with a Privy wallet")))},[e]);let _e=Wm(()=>o.find(ke=>ke.walletClientType==="privy"),[o]),Ba=async()=>{if(!_e)return console.warn("No privy wallet found, cannot fund wallet.");let{signedUrl:ke,externalTransactionId:qe}=await i(_e.address,{config:R?.config||{}});m({fiatOnRampPrompt:{signedUrl:ke},fiatOnRampStatus:{externalTransactionId:qe}}),u("FIAT_ON_RAMP_PROMPT_SCREEN")},se=Wm(()=>new a0(wt(pe.chainId,l,a)),[pe.chainId,a]);Mm(()=>{let ke=()=>{de(!1),fe("Wallet has insufficient funds for this transaction."),c?.fiatOnRamp.enabled&&Z(!0)};async function qe(){let Ke=pe;if(!(!await t()||!r||!_e)){try{Ke=await Br(_e.address,pe,se),er(Ke)}catch(gt){Dd(gt)?ke():fe("There was an error preparing your transaction. Please try again.",gt.reason)}try{let gt=await Aa(Ke,se);zr(le(gt.toBigInt()).toHexString());let $r=await ml(pe,se);or(le($r.toBigInt()).toHexString())}catch{zr(null)}try{let{balance:gt,hasSufficientFunds:$r}=await ym(_e.address,Ke,se);ee(gt.toHexString()),$r||ke()}catch(gt){console.warn(`Failed to fetch wallet balance with error: ${gt}`)}oe(!1)}}qe()},[r]);let Oo=Rm(pe),Ga=Oo==="SEND"?`Send ${Vt}`:"Review transaction",Vr={modalTitle:v.header||v.modalTitle||Ga,buttonText:v.buttonText||"Submit"},$t=()=>{N||(I?b(I):x(B||new De(new At("The user rejected the request",Ve.E4001_USER_REJECTED_REQUEST.eipCode))),n({shouldCallAuthOnSuccess:!1}))};return C.current=$t,J===void 0&&ao||qn?Gr(bl,{children:[v.transactionInfo?.contractInfo?.imgUrl&&Ne(yi,{src:v.transactionInfo?.contractInfo?.imgUrl}),Ne(T,{title:Vr.modalTitle,onClose:$t}),Ne(Lm,{children:Ne(Cr,{})})]}):M!==null?Ne(Im,{txn:pe,onClose:$t,receipt:M,transactionInfo:v.transactionInfo,tokenPrice:J,tokenSymbol:Vt,l1GasEstimate:jn}):Gr(bl,{children:[Ne(T,{title:Vr.modalTitle,onClose:$t}),Gr(Lm,{children:[Gr(p0,{children:[Ne(s0,{txn:pe,txnFamily:Oo,uiOptions:v,tokenSymbol:Vt,tokenPrice:J}),_e?Ne(Fr,{from:_e.address,to:pe.to,txn:pe,transactionInfo:v.transactionInfo,gas:tr||void 0,tokenPrice:J,tokenSymbol:Vt}):null]}),Gr(u0,{children:[Ne(l0,{children:L}),Ne(lm,{txn:pe,address:_e?.address??"",hasFunds:st,balance:Se}),Gr(c0,{children:[_&&Ne(F,{onClick:Ba,children:"Add Funds"}),Ne(d0,{disabled:N||!st,loading:!r||N,loadingText:N?"Submitting (may take a few minutes)...":"Loading...",onClick:async()=>{Oe(!0);let ke=await t();if(ke&&!N&&_e)try{let qe=await ka(ke,_e.address,r,pe,se);A(qe);let Ke=await qe.wait();W(Ra(Ke)),ne()}catch(qe){let Ke="There was an error processing your transaction. Please contact support.";console.warn({transaction:pe,error:qe}),fe(Ke,qe.reason)}finally{Oe(!1)}},children:Vr.buttonText})]})]})]})]})},Lm=Hr.div`
2083
+ `;import{Fragment as El,jsx as Oe,jsxs as Gr}from"react/jsx-runtime";var s0=({txn:e,txnFamily:t,uiOptions:o,tokenSymbol:r,tokenPrice:n})=>{if(t==="CONTRACT_CALL"){if(o.transactionInfo?.contractInfo)return Oe(ll,{contractInfo:o.transactionInfo.contractInfo,description:o.description});if(o.senderInfo)return Oe(ll,{contractInfo:o.senderInfo,description:o.description||o.senderInfo.actionText})}return Oe(El,{children:Oe(mm,{description:o.description||o.transactionInfo?.description||"",txn:e,tokenSymbol:r,tokenPrice:n})})},Nm=()=>{let{authenticated:e,getAccessToken:t}=z(),{wallets:o}=Gn(),{walletProxy:r,closePrivyModal:n,getFiatOnRampConfig:i,rpcConfig:a,chains:l,nativeTokenSymbolForChainId:s}=k(),{app:c,navigate:u,data:y,onUserCloseViaDialogOrKeybindRef:C,setModalData:m}=S(),{transactionRequest:P,onSuccess:b,onFailure:x,uiOptions:v,fundWalletConfig:R}=y.sendTransaction,[M,W]=ht(null),[I,A]=ht(null),[L,D]=ht(""),[B,U]=ht(),[_,Z]=ht(!1),ne=()=>{D(""),U(void 0)},he=(Re,qe,Ke)=>{D(Re),U(new Ue(new At(qe??Re,Ke??Ve.E32603_DEFAULT_INTERNAL_ERROR.eipCode)))},[N,De]=ht(!1),[st,pe]=ht(!0),[ke,ee]=ht(null),[ue,or]=ht(P),{tokenPrice:J,isTokenPriceLoading:ao}=Ia(ue),Vt=s(P.chainId)||"ETH",[rr,zr]=ht(null),[jn,nr]=ht(null),[qn,oe]=ht(!0);Mm(()=>{e||(u("LANDING"),x(new Error("User must be authenticated before transacting with a Privy wallet")))},[e]);let Ae=Wm(()=>o.find(Re=>Re.walletClientType==="privy"),[o]),Ba=async()=>{if(!Ae)return console.warn("No privy wallet found, cannot fund wallet.");let{signedUrl:Re,externalTransactionId:qe}=await i(Ae.address,{config:R?.config||{}});m({fiatOnRampPrompt:{signedUrl:Re},fiatOnRampStatus:{externalTransactionId:qe}}),u("FIAT_ON_RAMP_PROMPT_SCREEN")},se=Wm(()=>new a0(wt(ue.chainId,l,a)),[ue.chainId,a]);Mm(()=>{let Re=()=>{pe(!1),he("Wallet has insufficient funds for this transaction."),c?.fiatOnRamp.enabled&&Z(!0)};async function qe(){let Ke=ue;if(!(!await t()||!r||!Ae)){try{Ke=await Br(Ae.address,ue,se),or(Ke)}catch(gt){Ud(gt)?Re():he("There was an error preparing your transaction. Please try again.",gt.reason)}try{let gt=await Aa(Ke,se);zr(ce(gt.toBigInt()).toHexString());let $r=await ml(ue,se);nr(ce($r.toBigInt()).toHexString())}catch{zr(null)}try{let{balance:gt,hasSufficientFunds:$r}=await gm(Ae.address,Ke,se);ee(gt.toHexString()),$r||Re()}catch(gt){console.warn(`Failed to fetch wallet balance with error: ${gt}`)}oe(!1)}}qe()},[r]);let Oo=Rm(ue),Ga=Oo==="SEND"?`Send ${Vt}`:"Review transaction",Vr={modalTitle:v.header||v.modalTitle||Ga,buttonText:v.buttonText||"Submit"},$t=()=>{N||(I?b(I):x(B||new Ue(new At("The user rejected the request",Ve.E4001_USER_REJECTED_REQUEST.eipCode))),n({shouldCallAuthOnSuccess:!1}))};return C.current=$t,J===void 0&&ao||qn?Gr(El,{children:[v.transactionInfo?.contractInfo?.imgUrl&&Oe(yi,{src:v.transactionInfo?.contractInfo?.imgUrl}),Oe(T,{title:Vr.modalTitle,onClose:$t}),Oe(Lm,{children:Oe(Er,{})})]}):M!==null?Oe(Im,{txn:ue,onClose:$t,receipt:M,transactionInfo:v.transactionInfo,tokenPrice:J,tokenSymbol:Vt,l1GasEstimate:jn}):Gr(El,{children:[Oe(T,{title:Vr.modalTitle,onClose:$t}),Gr(Lm,{children:[Gr(p0,{children:[Oe(s0,{txn:ue,txnFamily:Oo,uiOptions:v,tokenSymbol:Vt,tokenPrice:J}),Ae?Oe(Fr,{from:Ae.address,to:ue.to,txn:ue,transactionInfo:v.transactionInfo,gas:rr||void 0,tokenPrice:J,tokenSymbol:Vt}):null]}),Gr(u0,{children:[Oe(l0,{children:L}),Oe(cm,{txn:ue,address:Ae?.address??"",hasFunds:st,balance:ke}),Gr(c0,{children:[_&&Oe(F,{onClick:Ba,children:"Add Funds"}),Oe(d0,{disabled:N||!st,loading:!r||N,loadingText:N?"Submitting (may take a few minutes)...":"Loading...",onClick:async()=>{De(!0);let Re=await t();if(Re&&!N&&Ae)try{let qe=await ka(Re,Ae.address,r,ue,se);A(qe);let Ke=await qe.wait();W(Ra(Ke)),ne()}catch(qe){let Ke="There was an error processing your transaction. Please contact support.";console.warn({transaction:ue,error:qe}),he(Ke,qe.reason)}finally{De(!1)}},children:Vr.buttonText})]})]})]})]})},Lm=Hr.div`
2084
2084
  display: flex;
2085
2085
  flex-direction: column;
2086
2086
  justify-content: space-between;
@@ -2109,19 +2109,19 @@ You will need this password to access your ${e} wallet on a new device. Please k
2109
2109
  display: flex;
2110
2110
  flex-direction: column;
2111
2111
  gap: 8px;
2112
- `;import{isHexString as m0}from"@ethersproject/bytes";import{toUtf8String as f0}from"@ethersproject/strings";import{useEffect as Om,useState as La}from"react";import Qo,{css as h0}from"styled-components";import{Fragment as x0,jsx as Tt,jsxs as El}from"react/jsx-runtime";var y0=e=>{if(!m0(e))return e;try{return f0(e)}catch{return e}},Dm=()=>{let{authenticated:e}=z(),{initializeWalletProxy:t,closePrivyModal:o}=k(),{navigate:r,data:n,onUserCloseViaDialogOrKeybindRef:i}=S(),[a,l]=La(!0),[s,c]=La(""),[u,y]=La(),[C,m]=La(null),P=C!==null;Om(()=>{e||r("LANDING")},[e]),Om(()=>{t(ir).then(A=>{l(!1),A||(c("An error has occurred, please try again."),y(new De(new At(s,Ve.E32603_DEFAULT_INTERNAL_ERROR.eipCode))))})},[]);let{message:b,confirmAndSignMessage:x,onSuccess:v,onFailure:R,uiOptions:M}=n.signMessage,W={title:M.title||"Sign message",description:M.description||"Signing this message will not cost you any fees.",buttonText:M.buttonText||"Sign and continue"},I=A=>{A?v(A):R(u||new De(new At("The user rejected the request.",Ve.E4001_USER_REJECTED_REQUEST.eipCode))),o({shouldCallAuthOnSuccess:!1}),m(null),c(""),y(void 0)};return i.current=()=>{I(C)},El(x0,{children:[Tt(T,{onClose:()=>I(C)}),Tt(j,{}),El(g0,{children:[Tt(v0,{children:W.title}),Tt(w0,{children:W.description}),Tt(C0,{children:y0(b)}),Tt(b0,{fail:!0,children:s}),Tt(P0,{success:P,loading:a,disabled:P,onClick:async()=>{try{let A=await x();m(A),c(""),setTimeout(()=>{I(A)},Xe)}catch{c("An error has occurred, please try again."),y(new De(new At(s,Ve.E32603_DEFAULT_INTERNAL_ERROR.eipCode)))}},children:P?El(E0,{children:[Tt(la,{style:{height:"0.9rem",width:"0.9rem"},strokeWidth:2})," ",Tt("span",{children:"Success"})]}):W.buttonText})]}),Tt(K,{}),Tt(G,{protectedByPrivy:!0})]})},g0=Qo.div`
2112
+ `;import{isHexString as m0}from"@ethersproject/bytes";import{toUtf8String as f0}from"@ethersproject/strings";import{useEffect as Om,useState as La}from"react";import Xo,{css as h0}from"styled-components";import{Fragment as x0,jsx as Tt,jsxs as Pl}from"react/jsx-runtime";var y0=e=>{if(!m0(e))return e;try{return f0(e)}catch{return e}},Dm=()=>{let{authenticated:e}=z(),{initializeWalletProxy:t,closePrivyModal:o}=k(),{navigate:r,data:n,onUserCloseViaDialogOrKeybindRef:i}=S(),[a,l]=La(!0),[s,c]=La(""),[u,y]=La(),[C,m]=La(null),P=C!==null;Om(()=>{e||r("LANDING")},[e]),Om(()=>{t(sr).then(A=>{l(!1),A||(c("An error has occurred, please try again."),y(new Ue(new At(s,Ve.E32603_DEFAULT_INTERNAL_ERROR.eipCode))))})},[]);let{message:b,confirmAndSignMessage:x,onSuccess:v,onFailure:R,uiOptions:M}=n.signMessage,W={title:M.title||"Sign message",description:M.description||"Signing this message will not cost you any fees.",buttonText:M.buttonText||"Sign and continue"},I=A=>{A?v(A):R(u||new Ue(new At("The user rejected the request.",Ve.E4001_USER_REJECTED_REQUEST.eipCode))),o({shouldCallAuthOnSuccess:!1}),m(null),c(""),y(void 0)};return i.current=()=>{I(C)},Pl(x0,{children:[Tt(T,{onClose:()=>I(C)}),Tt(j,{}),Pl(g0,{children:[Tt(v0,{children:W.title}),Tt(w0,{children:W.description}),Tt(C0,{children:y0(b)}),Tt(b0,{fail:!0,children:s}),Tt(P0,{success:P,loading:a,disabled:P,onClick:async()=>{try{let A=await x();m(A),c(""),setTimeout(()=>{I(A)},Xe)}catch{c("An error has occurred, please try again."),y(new Ue(new At(s,Ve.E32603_DEFAULT_INTERNAL_ERROR.eipCode)))}},children:P?Pl(E0,{children:[Tt(la,{style:{height:"0.9rem",width:"0.9rem"},strokeWidth:2})," ",Tt("span",{children:"Success"})]}):W.buttonText})]}),Tt(K,{}),Tt(G,{protectedByPrivy:!0})]})},g0=Xo.div`
2113
2113
  display: flex;
2114
2114
  flex-direction: column;
2115
2115
  align-items: center;
2116
2116
  justify-content: center;
2117
- `,v0=Qo.span`
2117
+ `,v0=Xo.span`
2118
2118
  color: var(--privy-color-foreground);
2119
2119
  text-align: center;
2120
2120
  font-size: 1.125rem;
2121
2121
  font-weight: 500;
2122
2122
  line-height: 1.25rem; /* 111.111% */
2123
2123
  text-align: center;
2124
- `,w0=Qo.span`
2124
+ `,w0=Xo.span`
2125
2125
  margin-top: 4px;
2126
2126
  color: var(--privy-color-foreground);
2127
2127
  text-align: center;
@@ -2131,7 +2131,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
2131
2131
  font-weight: 400;
2132
2132
  line-height: 20px; /* 142.857% */
2133
2133
  letter-spacing: -0.008px;
2134
- `,C0=Qo.div`
2134
+ `,C0=Xo.div`
2135
2135
  margin-top: 1.5rem;
2136
2136
  background-color: var(--privy-color-background-2);
2137
2137
  border-radius: var(--privy-border-radius-md);
@@ -2149,7 +2149,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
2149
2149
  &::-webkit-scrollbar {
2150
2150
  display: none; /* Safari and Chrome */
2151
2151
  }
2152
- `,b0=Qo.div`
2152
+ `,b0=Xo.div`
2153
2153
  line-height: 20px;
2154
2154
  height: 20px;
2155
2155
  font-size: 13px;
@@ -2159,11 +2159,11 @@ You will need this password to access your ${e} wallet on a new device. Please k
2159
2159
  width: 100%;
2160
2160
  margin-top: 16px;
2161
2161
  margin-bottom: 4px;
2162
- `,E0=Qo.span`
2162
+ `,E0=Xo.span`
2163
2163
  display: flex;
2164
2164
  align-items: center;
2165
2165
  gap: 8px;
2166
- `,P0=Qo(F)`
2166
+ `,P0=Xo(F)`
2167
2167
  transition: color 350ms ease, background-color 350ms ease;
2168
2168
 
2169
2169
  ${e=>e.success&&h0`
@@ -2496,4 +2496,4 @@ You will need this password to access your ${e} wallet on a new device. Please k
2496
2496
  opacity: 1;
2497
2497
  }
2498
2498
  }
2499
- `;import{jsx as ze,jsxs as Hm}from"react/jsx-runtime";var I0={["LANDING"]:nu,["AWAITING_PASSWORDLESS_CODE"]:gd,["AWAITING_CONNECTION"]:Rd,["AWAITING_CONNECT_ONLY_CONNECTION"]:Ld,["PHANTOM_INTERSTITIAL_SCREEN"]:Am,["LOGIN_FAILED_SCREEN"]:pu,["AWAITING_OAUTH_SCREEN"]:Tm,["ALLOWLIST_REJECTION_SCREEN"]:nd,["INSTALL_PHANTOM_SCREEN"]:Op,["LINK_EMAIL_SCREEN"]:iu,["LINK_PHONE_SCREEN"]:au,["LINK_WALLET_SCREEN"]:su,["CONNECT_ONLY_LANDING_SCREEN"]:_d,["CONNECT_ONLY_AUTHENTICATED_SCREEN"]:xd,["EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN"]:Cp,["EMBEDDED_WALLET_CREATED_SCREEN"]:Hd,["EMBEDDED_WALLET_CONNECTING_SCREEN"]:Bd,["EMBEDDED_WALLET_RECOVERY_SCREEN"]:Pp,["EMBEDDED_WALLET_KEY_EXPORT_SCREEN"]:jd,["EMBEDDED_WALLET_SIGN_REQUEST_SCREEN"]:Dm,["EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN"]:Nm,["FIAT_ON_RAMP_PROMPT_SCREEN"]:Ap,["FIAT_ON_RAMP_STATUS_SCREEN"]:Ip,["EMBEDDED_WALLET_PASSWORD_UPDATE_SPLASH_SCREEN"]:Ep,["EMBEDDED_WALLET_PASSWORD_UPDATE_SCREEN"]:bp,["MFA_ENROLLMENT_FLOW_SCREEN"]:Uu},W0=({isMfaVerifying:e,onMfaVerificationComplete:t})=>{let{ready:o}=z(),{ready:r,currentScreen:n}=S(),i=k0(null),a=Kc(i);if((!o||!r)&&n!=="AWAITING_OAUTH_SCREEN")return Hm(Lr,{children:[ze(T,{}),ze(j,{}),ze(Cu,{children:ze(Lt,{})}),ze(K,{}),ze(Y,{})]});if(!n)return null;let l=I0[n];return l?ze(Lr,{style:{height:a},children:Hm("div",{ref:i,children:[ze(Qt,{if:!!e,children:ze(l,{})}),ze(Qt,{if:!e,children:ze(Cm,{open:e,onClose:t})})]})}):null},zm=({open:e})=>{let{app:t}=S(),[o,r]=Gm(!1),{gracefulClosePrivyModal:n,onEscape:i}=vu(),[a,l]=Gm(!1);rs({onMfaRequired:()=>{t?.mfa.noPromptOnMfaRequired||l(!0)}}),A0(()=>{r(!0)},[]);let s=ze(Bm,{children:ze(W0,{isMfaVerifying:a,onMfaVerificationComplete:()=>l(!1)})}),c=e||a,u=t?.render.inDialog?ze("div",{onKeyDown:i,children:ze(wu,{open:c,id:"privy-dialog",onClick:()=>n(),children:s})}):s;if(o){let y=t?.render.inParentNodeId&&document.getElementById(t.render.inParentNodeId)||document.body;return R0.createPortal(u,y)}return null};var yt={appearance:{theme:"light",accentColor:"#676FFF",walletList:["detected_wallets","metamask","coinbase_wallet","rainbow","wallet_connect"]},walletConnectCloudProjectId:nc,rpcConfig:{rpcUrls:{},rpcTimeouts:{}},captchaEnabled:!1,_render:{inDialog:!0,inParentNodeId:null},fiatOnRamp:{useSandbox:!1}};var M0=new Set(["metamask","coinbase_wallet","rainbow","zerion","phantom","wallet_connect","detected_wallets"]),L0=e=>M0.has(e),N0=(e,t,o)=>o.indexOf(e)===t,Vm=({input:e})=>e?e.filter(L0).filter(N0):yt.appearance.walletList;var $m={id:43114,name:"Avalanche",network:"avalanche",nativeCurrency:{decimals:18,name:"Avalanche",symbol:"AVAX"},rpcUrls:{default:{http:["https://api.avax.network/ext/bc/C/rpc"]},public:{http:["https://api.avax.network/ext/bc/C/rpc"]}},blockExplorers:{etherscan:{name:"SnowTrace",url:"https://snowtrace.io"},default:{name:"SnowTrace",url:"https://snowtrace.io"}}};var jm={id:43113,name:"Avalanche Fuji",network:"avalanche-fuji",nativeCurrency:{decimals:18,name:"Avalanche Fuji",symbol:"AVAX"},rpcUrls:{default:{http:["https://api.avax-test.network/ext/bc/C/rpc"]},public:{http:["https://api.avax-test.network/ext/bc/C/rpc"]}},blockExplorers:{etherscan:{name:"SnowTrace",url:"https://testnet.snowtrace.io"},default:{name:"SnowTrace",url:"https://testnet.snowtrace.io"}},testnet:!0};var qm={id:42220,name:"Celo Mainnet",network:"celo",nativeCurrency:{decimals:18,name:"CELO",symbol:"CELO"},rpcUrls:{default:{http:["https://forno.celo.org"]},infura:{http:["https://celo-mainnet.infura.io/v3"]},public:{http:["https://forno.celo.org"]}},blockExplorers:{default:{name:"Celo Explorer",url:"https://explorer.celo.org/mainnet"},etherscan:{name:"CeloScan",url:"https://celoscan.io"}},testnet:!1};var Km={id:44787,name:"Celo Alfajores Testnet",network:"celo-alfajores",nativeCurrency:{decimals:18,name:"CELO",symbol:"CELO"},rpcUrls:{default:{http:["https://alfajores-forno.celo-testnet.org"]},infura:{http:["https://celo-alfajores.infura.io/v3"]},public:{http:["https://alfajores-forno.celo-testnet.org"]}},blockExplorers:{default:{name:"Celo Explorer",url:"https://explorer.celo.org/alfajores"},etherscan:{name:"CeloScan",url:"https://alfajores.celoscan.io/"}},testnet:!0};var Ym={id:314,name:"Filecoin - Mainnet",network:"filecoin-mainnet",nativeCurrency:{decimals:18,name:"filecoin",symbol:"FIL"},rpcUrls:{default:{http:["https://api.node.glif.io/rpc/v1"]},public:{http:["https://api.node.glif.io/rpc/v1"]}},blockExplorers:{default:{name:"Filfox",url:"https://filfox.info/en"},filscan:{name:"Filscan",url:"https://filscan.io"},filscout:{name:"Filscout",url:"https://filscout.io/en"},glif:{name:"Glif",url:"https://explorer.glif.io"}}};var Jm={id:314159,name:"Filecoin - Calibration testnet",network:"filecoin-calibration",nativeCurrency:{decimals:18,name:"testnet filecoin",symbol:"tFIL"},rpcUrls:{default:{http:["https://api.calibration.node.glif.io/rpc/v1"]},public:{http:["https://api.calibration.node.glif.io/rpc/v1"]}},blockExplorers:{default:{name:"Filscan",url:"https://calibration.filscan.io"}}};var Qm={id:5,network:"goerli",name:"Goerli",nativeCurrency:{name:"Goerli Ether",symbol:"ETH",decimals:18},rpcUrls:{alchemy:{http:["https://eth-goerli.g.alchemy.com/v2"],webSocket:["wss://eth-goerli.g.alchemy.com/v2"]},infura:{http:["https://goerli.infura.io/v3"],webSocket:["wss://goerli.infura.io/ws/v3"]},default:{http:["https://rpc.ankr.com/eth_goerli"]},public:{http:["https://rpc.ankr.com/eth_goerli"]}},blockExplorers:{etherscan:{name:"Etherscan",url:"https://goerli.etherscan.io"},default:{name:"Etherscan",url:"https://goerli.etherscan.io"}},testnet:!0};var Zm={id:17e3,name:"Holesky",network:"holesky",nativeCurrency:{name:"ETH",symbol:"ETH",decimals:18},rpcUrls:{default:{http:["https://ethereum-holesky.publicnode.com"]},public:{http:["https://ethereum-holesky.publicnode.com"]}},blockExplorers:{etherscan:{name:"EtherScan",url:"https://holesky.etherscan.io"},default:{name:"EtherScan",url:"https://holesky.etherscan.io"}}};var Xm={id:59144,network:"linea-mainnet",name:"Linea Mainnet",nativeCurrency:{name:"Linea Ether",symbol:"ETH",decimals:18},rpcUrls:{infura:{http:["https://linea-mainnet.infura.io/v3"],webSocket:["wss://linea-mainnet.infura.io/ws/v3"]},default:{http:["https://rpc.linea.build"],webSocket:["wss://rpc.linea.build"]},public:{http:["https://rpc.linea.build"],webSocket:["wss://rpc.linea.build"]}},blockExplorers:{default:{name:"Etherscan",url:"https://lineascan.build"},etherscan:{name:"Etherscan",url:"https://lineascan.build"}},testnet:!1};var ef={id:59140,network:"linea-testnet",name:"Linea Goerli Testnet",nativeCurrency:{name:"Linea Ether",symbol:"ETH",decimals:18},rpcUrls:{infura:{http:["https://linea-goerli.infura.io/v3"],webSocket:["wss://linea-goerli.infura.io/ws/v3"]},default:{http:["https://rpc.goerli.linea.build"],webSocket:["wss://rpc.goerli.linea.build"]},public:{http:["https://rpc.goerli.linea.build"],webSocket:["wss://rpc.goerli.linea.build"]}},blockExplorers:{default:{name:"Etherscan",url:"https://goerli.lineascan.build"},etherscan:{name:"Etherscan",url:"https://goerli.lineascan.build"}},testnet:!0};var Na={id:1,network:"homestead",name:"Ethereum",nativeCurrency:{name:"Ether",symbol:"ETH",decimals:18},rpcUrls:{alchemy:{http:["https://eth-mainnet.g.alchemy.com/v2"],webSocket:["wss://eth-mainnet.g.alchemy.com/v2"]},infura:{http:["https://mainnet.infura.io/v3"],webSocket:["wss://mainnet.infura.io/ws/v3"]},default:{http:["https://cloudflare-eth.com"]},public:{http:["https://cloudflare-eth.com"]}},blockExplorers:{etherscan:{name:"Etherscan",url:"https://etherscan.io"},default:{name:"Etherscan",url:"https://etherscan.io"}}};var tf={id:17001,name:"Redstone Holesky",network:"redstone-holesky",nativeCurrency:{name:"ETH",symbol:"ETH",decimals:18},rpcUrls:{default:{http:["https://rpc.holesky.redstone.xyz"]},public:{http:["https://rpc.holesky.redstone.xyz"]}},blockExplorers:{etherscan:{name:"EtherScan",url:"https://explorer.holesky.redstone.xyz"},default:{name:"EtherScan",url:"https://explorer.holesky.redstone.xyz"}}};var of={id:11155111,network:"sepolia",name:"Sepolia",nativeCurrency:{name:"Sepolia Ether",symbol:"SEP",decimals:18},rpcUrls:{alchemy:{http:["https://eth-sepolia.g.alchemy.com/v2"],webSocket:["wss://eth-sepolia.g.alchemy.com/v2"]},infura:{http:["https://sepolia.infura.io/v3"],webSocket:["wss://sepolia.infura.io/ws/v3"]},default:{http:["https://rpc.sepolia.org"]},public:{http:["https://rpc.sepolia.org"]}},blockExplorers:{etherscan:{name:"Etherscan",url:"https://sepolia.etherscan.io"},default:{name:"Etherscan",url:"https://sepolia.etherscan.io"}},testnet:!0};var zn=[wa,Ca,ba,Qm,of,Na,xa,Ta,Fn,Bn,qm,Km,Ym,Jm,Ea,Pa,Xm,ef,$m,jm,Sa,_a,Zm,tf],kL=new Set(zn.map(e=>e.id));import Zo from"tinycolor2";var rf="#FFFFFF",O0="#000000",D0=rf,U0="#1E1E1D";function F0(e){return e<.8&&e>.2&&console.warn("Background color is not light or dark enough, which could lead to accessibility issues."),e>.5?"light":"dark"}function Lo(e,t){let o=Math.max(0,Math.min(1,e.toHsl().l+t));return Zo({...e.toHsl(),l:o})}function nf({backgroundTheme:e,accentHex:t,successHex:o="#51BA81",warnHex:r="#FFB74D",errorHex:n="#EC6351",whiteHex:i=rf,blackHex:a=O0}){let l;switch(e){case"light":l=D0;break;case"dark":l=U0;break;default:l=e;break}let s=Zo(l),c=Zo(t),u=Zo(o),y=Zo(r),C=Zo(n),m=F0(s.getLuminance()),P=Lo(s,m==="light"?-.04:.11),b=Lo(s,m==="light"?-.88:.87),x=Lo(s,m==="light"?-.77:.75),v=Lo(s,m==="light"?-.43:.45).desaturate(m==="light"?60:20),R=Lo(s,m==="light"?-.08:.25).desaturate(m==="light"?60:20),M=Lo(c,.15),W=Lo(c,-.06),I=Zo(c.getLuminance()>.5?a:i),A=Lo(u,-.16);return{colorScheme:m,background:s.toHslString(),background2:P.toHslString(),foreground:b.toHslString(),foreground2:x.toHslString(),foreground3:v.toHslString(),foreground4:R.toHslString(),accent:c.toHslString(),accentLight:M.toHslString(),accentDark:W.toHslString(),foregroundAccent:I.toHslString(),success:u.toHslString(),successDark:A.toHslString(),error:C.toHslString(),warn:y.toHslString()}}function Oa(e,t){let o=["google","twitter","discord","tiktok","linkedin","github","apple"],r=t?.loginMethods?.filter(B=>o.includes(B)),n,i,a,l,s,c,u,y,C,m;t?.loginMethods?(n=t.loginMethods.includes("email"),i=t.loginMethods.includes("sms"),a=t.loginMethods.includes("wallet"),l=r?.includes("google"),s=r?.includes("twitter"),c=r?.includes("discord"),u=r?.includes("tiktok"),C=r?.includes("github"),y=r?.includes("linkedin"),m=r?.includes("apple")):(n=e.emailAuth,i=e.smsAuth,a=e.walletAuth,l=e.googleOAuth,s=e.twitterOAuth,c=e.discordOAuth,C=e.githubOAuth,u=e.tiktokOAuth,y=e.linkedinOAuth,m=e.appleOAuth);let P=[n,i].filter(Boolean),b=[l,s,c,C,u,y,m].filter(Boolean),x=[a].filter(Boolean);if(P.length+b.length+x.length===0)throw new Error("You must enable at least one login method");let v=t?.appearance?.showWalletLoginFirst!==void 0?t?.appearance?.showWalletLoginFirst:e.showWalletLoginFirst;v&&x.length===0?(console.warn("You should only enable `showWalletLoginFirst` when `wallet` logins are also enabled. `showWalletLoginFirst` has been set to false"),v=!1):!v&&b.length+P.length===0&&(console.warn("You should only disable `showWalletLoginFirst` when `email`, `sms`, or social logins are also enabled. `showWalletLoginFirst` has been set to true"),v=!0);let R=Vm({isWalletLoginEnabled:a,input:t?.appearance?.walletList});if(t?.embeddedWallets?.waitForTransactionConfirmation===!1&&t.embeddedWallets.noPromptOnSignature!==!0)throw new Error("Overriding `config.embeddedWallets.waitForTransactionConfirmation` requires that you also enable `config.embeddedWallets.noPromptOnSignature`");let M=t?.intl?.defaultCountry??"US",{chains:W,defaultChain:I}=B0(t?.additionalChains,t?.supportedChains,t?.defaultChain),A=!!t?.defaultChain||!!t?.supportedChains,L=t?.customAuth?.getCustomAccessToken&&t?.customAuth?.enabled!==!1;return{id:e.id,name:e.name,allowlistConfig:e.allowlistConfig,appearance:{logo:t?.appearance?.logo??e.logoUrl,palette:nf({backgroundTheme:t?.appearance?.theme??yt.appearance.theme,accentHex:t?.appearance?.accentColor??e.accentColor??yt.appearance.accentColor}),loginGroupPriority:v?"web3-first":"web2-first",hideDirectWeb2Inputs:!!t?.appearance?.hideDirectWeb2Inputs,walletList:R},loginMethods:{wallet:a,email:n,sms:i,google:l,twitter:s,discord:c,github:C,tiktok:u,linkedin:y,apple:m},legal:{termsAndConditionsUrl:t?.legal?.termsAndConditionsUrl??e.termsAndConditionsUrl,privacyPolicyUrl:t?.legal?.privacyPolicyUrl??e.privacyPolicyUrl},walletConnectCloudProjectId:t?.walletConnectCloudProjectId??e.walletConnectCloudProjectId??yt.walletConnectCloudProjectId,rpcConfig:{rpcUrls:t?.rpcConfig?.rpcUrls??yt.rpcConfig.rpcUrls,rpcTimeouts:t?.rpcConfig?.rpcTimeouts??yt.rpcConfig.rpcTimeouts},chains:W,defaultChain:I,intl:{defaultCountry:M},shouldSwitchChainOnConnect:A,captchaEnabled:e.captchaEnabled??yt.captchaEnabled,captchaSiteKey:e.captchaSiteKey,embeddedWallets:{...e.embeddedWalletConfig,...L?{createOnLogin:"all-users",requireUserPasswordOnCreate:!1,noPromptOnSignature:!0}:{},waitForTransactionConfirmation:!0,priceDisplay:{primary:"fiat-currency",secondary:"native-token"},...t?.embeddedWallets},mfa:{methods:e.mfaMethods??[],noPromptOnMfaRequired:t?.mfa?.noPromptOnMfaRequired??!1},customAuth:L?{enabled:!0,...t.customAuth}:void 0,fiatOnRamp:{enabled:e.fiatOnRampEnabled,useSandbox:t?.fiatOnRamp?.useSandbox??yt.fiatOnRamp.useSandbox},loginConfig:{twitterOAuthOnMobileEnabled:e.twitterOAuthOnMobileEnabled??!1},render:{inDialog:t?._render?.inDialog??yt._render.inDialog,inParentNodeId:t?._render?.inParentNodeId??yt._render.inParentNodeId}}}function af(e,t){if(!e)return{legacyCreateEmbeddedWalletFlag:t};let{appearance:o,additionalChains:r,supportedChains:n,defaultChain:i,...a}=e;return{...a,...r?{additionalChains:r.map(s=>s.id)}:void 0,...n?{supportedChains:n.map(s=>s.id)}:void 0,...i?{defaultChain:i.id}:void 0,...o?{...o,...o.logo&&typeof o.logo?{logo:"component"}:void 0}:void 0,legacyCreateEmbeddedWalletFlag:t}}function B0(e,t,o){let r;if(e&&t&&console.warn("You should only specify one of `additionalChains` or `supportedChains`. Using `supportedChains`."),t){if(t.length===0)throw new Error("`supportedChains` must contain at least one chain");r=t.map(a=>zn.find(s=>s.id===a.id)??a)}else r=zn.concat(e??[]);let n=t?r[0]:Na,i=o??n;if(!r.find(a=>a.id===i.id))throw new Error("`defaultChain` must be included in `supportedChains`");return{chains:r,defaultChain:i}}import{useRef as G0,useEffect as H0}from"react";var Da=class{constructor(){this.callbacks={}}enqueue(t,o){this.callbacks[t]=o}dequeue(t,o){let r=this.callbacks[o];if(!r)throw new Error(`cannot dequeue ${t} event: no event found for id ${o}`);switch(delete this.callbacks[o],t){case"privy:iframe:ready":return r;case"privy:wallet:create":return r;case"privy:wallet:connect":return r;case"privy:wallet:recover":return r;case"privy:wallet:rpc":return r;case"privy:wallet:set-recovery-password":return r;case"privy:mfa:verify":return r;case"privy:mfa:init-enrollment":return r;case"privy:mfa:submit-enrollment":return r;case"privy:mfa:unenroll":return r;default:throw new Error(`invalid wallet event type ${t}`)}}};async function Xo(e,t,o,r,n,i=!1){let a=i,l=async u=>{if(a&&t&&t.length>0){u===(i?0:1)?n("configureMfa","onMfaRequired",t):r.current?.reject(new be("missing_or_invalid_mfa","MFA verification failed, retry."));let y=await new Promise((C,m)=>{o.current={resolve:C,reject:m};let P=1e3*60*5;setTimeout(()=>{let b=new be("mfa_timeout","Timed out waiting for MFA code");r.current?.reject(b),m(b)},P)});return await e(y)}return await e()},s=4,c=null;for(let u=0;u<s;u++)try{c=await l(u),r.current?.resolve(void 0);break}catch(y){if(y.type==="missing_or_invalid_mfa")a=!0;else throw r.current?.resolve(void 0),y}if(c===null){let u=new be("mfa_verification_max_attempts_reached","Max MFA verification attempts reached");throw r.current?.reject(u),u}return c}import{jsx as K0}from"react/jsx-runtime";var z0=function(e){return()=>`id-${e++}`}(0);function V0(e){return typeof e.event=="string"&&/^privy:.+/.test(e.event)}function Gt(e){return e.error!==void 0}var St=new Da,Pl=new Map,$0=(e,t)=>typeof t=="bigint"?t.toString():t,j0=(e,t)=>`${e}${JSON.stringify(t,$0)}`;function Ht(e,t,o){let r=o.contentWindow;if(!r)throw new Error("iframe not initialized");let n=j0(e,t);if(e==="privy:wallet:create"){let a=Pl.get(n);if(a)return a}let i=new Promise((a,l)=>{let s=z0();St.enqueue(s,{resolve:a,reject:l}),r.postMessage({id:s,event:e,data:t},"*")}).finally(()=>{Pl.delete(n)});return Pl.set(n,i),i}function q0(e){switch(e.event){case"privy:iframe:ready":let t=St.dequeue(e.event,e.id);return Gt(e)?t.reject(new be(e.error.type,e.error.message)):t.resolve(e.data);case"privy:wallet:create":let o=St.dequeue(e.event,e.id);return Gt(e)?o.reject(new be(e.error.type,e.error.message)):o.resolve(e.data);case"privy:wallet:connect":let r=St.dequeue(e.event,e.id);return Gt(e)?r.reject(new be(e.error.type,e.error.message)):r.resolve(e.data);case"privy:wallet:recover":let n=St.dequeue(e.event,e.id);return Gt(e)?n.reject(new be(e.error.type,e.error.message)):n.resolve(e.data);case"privy:wallet:rpc":let i=St.dequeue(e.event,e.id);return Gt(e)?i.reject(new be(e.error.type,e.error.message)):i.resolve(e.data);case"privy:wallet:set-recovery-password":let a=St.dequeue(e.event,e.id);return Gt(e)?a.reject(new be(e.error.type,e.error.message)):a.resolve(e.data);case"privy:mfa:verify":let l=St.dequeue(e.event,e.id);return Gt(e)?l.reject(new be(e.error.type,e.error.message)):l.resolve(e.data);case"privy:mfa:init-enrollment":{let s=St.dequeue(e.event,e.id);return Gt(e)?s.reject(new be(e.error.type,e.error.message)):s.resolve(e.data)}case"privy:mfa:submit-enrollment":{let s=St.dequeue(e.event,e.id);return Gt(e)?s.reject(new be(e.error.type,e.error.message)):s.resolve(e.data)}case"privy:mfa:unenroll":{let s=St.dequeue(e.event,e.id);return Gt(e)?s.reject(new be(e.error.type,e.error.message)):s.resolve(e.data)}default:console.warn("Unsupported wallet proxy method:",e)}}function sf(e){let t=G0(null),o=Qc();return H0(()=>{let r=t.current;if(!r)return;function n(c){c&&c.origin===e.origin&&V0(c.data)&&q0(c.data)}let i={create(c){return Ht("privy:wallet:create",c,r)},connect(c){return Ht("privy:wallet:connect",c,r)},recover(c){return Xo(u=>Ht("privy:wallet:recover",{...c,...u},r),e.mfaMethods,e.mfaPromise,e.mfaSubmitPromise,o,!0)},rpc(c){return Xo(u=>Ht("privy:wallet:rpc",{...c,...u},r),e.mfaMethods,e.mfaPromise,e.mfaSubmitPromise,o)},setRecoveryPassword(c){return Xo(u=>Ht("privy:wallet:set-recovery-password",{...c,...u},r),e.mfaMethods,e.mfaPromise,e.mfaSubmitPromise,o)},verifyMfa(c){return Xo(u=>Ht("privy:mfa:verify",{...c,...u},r),e.mfaMethods,e.mfaPromise,e.mfaSubmitPromise,o,!0)},initEnrollMfa(c){return Xo(u=>Ht("privy:mfa:init-enrollment",{...c,...u},r),e.mfaMethods,e.mfaPromise,e.mfaSubmitPromise,o)},submitEnrollMfa(c){return Ht("privy:mfa:submit-enrollment",c,r)},unenrollMfa(c){return Xo(u=>Ht("privy:mfa:unenroll",{...c,...u},r),e.mfaMethods,e.mfaPromise,e.mfaSubmitPromise,o,!0)}};window.addEventListener("message",n);let a=()=>e.onLoad(i),l=(...c)=>{console.warn("Privy iframe failed to load: ",...c),e.onLoadFailed()},s=new AbortController;return wc(()=>Ht("privy:iframe:ready",{},r),{abortSignal:s.signal}).then(a,l),()=>{window.removeEventListener("message",n),s.abort()}},[t.current,e.mfaMethods]),K0("iframe",{ref:t,width:"0",height:"0",style:{display:"none",height:"0px",width:"0px"},src:si(e.origin,`/apps/${e.appId}/embedded-wallets`,{caid:e.clientAnalyticsId})})}var Ua=class{constructor(t,o){this.meta={action:t,phoneNumber:o}}async init(){if(!this.meta.action)throw new w("action required");if(!this.api)throw new w("Auth flow has no API instance");if(this.meta.action==="enroll"&&!this.meta.phoneNumber)throw new w("phone number must be set when initialzing authentication.");try{let t=ec();await this.api.post(t,{action:this.meta.action,phoneNumber:this.meta.phoneNumber})}catch(t){throw te(t)}}async authenticate(){if(!this.meta.action)throw new w("action required");if(!this.api)throw new w("Mfa flow has no API instance");if(!this.meta.smsCode)throw new w("sms code must be set prior to calling authenticate.");if(this.meta.action==="enroll"&&!this.meta.phoneNumber)throw new w("phone number must be set prior to calling authenticate.");try{let t=tc(),o=await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode});return vt(o)}catch(t){throw te(t)}}};import{jsx as No,jsxs as lf}from"react/jsx-runtime";var $n;function X0(e){return typeof e=="string"&&e.length===25}function Re(){if(!$n){let e=Q.get(Bo);return Promise.resolve(e||null)}return $n.getAccessToken()}var cf,Tc=(e,t)=>cf(e,t),df,Sc=(e,t)=>df(e,t),pf,_c=()=>pf(),eb=()=>{let t=new URLSearchParams(window.location.search).get("privy_token");if(!t)return;Q.put(Yr,t);let o=new URL(window.location.href);o.searchParams.delete("privy_token"),window.history.pushState({},"",o)},tb=({config:e,...t})=>{if(!X0(t.appId))throw new w("Cannot initialize the Privy provider with an invalid Privy app ID");$n||($n=new nn({appId:t.appId,apiUrl:t.apiUrl||ri}));let o=Object.assign({},e);return t.createPrivyWalletOnLogin!==void 0&&o.embeddedWallets?.createOnLogin===void 0&&(o.embeddedWallets||(o.embeddedWallets={}),o.embeddedWallets.createOnLogin=t.createPrivyWalletOnLogin?"users-without-wallets":"off"),t.createPrivyWalletOnLogin!==void 0&&e?.embeddedWallets?.createOnLogin&&console.warn("Both `createPrivyWalletOnLogin` and `config.embeddedWallets.createOnLogin` are set. `createPrivyWalletOnLogin` is deprecated and should be removed."),No(ob,{...t,config:o,client:$n})},ob=e=>{let t=e.client,[o,r]=ce(!1),[n,i]=ce(!1),[a,l]=ce(!1),[s,c]=ce(null),[u,y]=ce(!1),[C,m]=ce([]),P=Vn(C),[b,x]=ce(!1),[v,R]=ce(null),[M,W]=ce(!1),[I,A]=ce({status:"disconnected",connectError:null,connector:null,connectRetry:E}),[L,O]=ce(null),[B,D]=ce(null),[_,Z]=ce(null),[ne,fe]=ce({showWalletLoginFirst:!0,allowlistConfig:{errorTitle:null,errorDetail:null,errorCtaText:null,errorCtaLink:null},walletAuth:!0,emailAuth:!0,smsAuth:!1,googleOAuth:!1,twitterOAuth:!1,discordOAuth:!1,githubOAuth:!1,linkedinOAuth:!1,appleOAuth:!1,termsAndConditionsUrl:null,privacyPolicyUrl:null,embeddedWalletConfig:{createOnLogin:"off",requireUserPasswordOnCreate:!1},fiatOnRampEnabled:!1,captchaEnabled:!1,captchaSiteKey:""}),[N,Oe]=ce(()=>{let p=af(e.config,e.createPrivyWalletOnLogin);return t.createAnalyticsEvent("sdk_initialize",p),Oa(ne,e.config)}),[st,de]=ce(!0),[Se,ee]=ce({}),[pe,er]=ce(null),[J,ao]=ce(null),[Vt,tr]=ce(!1),[zr,jn]=ce(!1),or=Vn(null),qn=Vn(null),oe=Vn(Yc);t.onStoreToken=p=>{p&&ae(oe,"accessToken","onAccessTokenGranted",p)},t.onDeleteToken=()=>{ae(oe,"accessToken","onAccessTokenRemoved")};let _e=Vn(),Ba=Q0(p=>{let d=t.connectors?.walletsReady||!1;return a&&s?.linkedAccounts?.some(g=>g.type==="wallet"&&g.walletClientType==="privy")?d&&p?.some(g=>g?.walletClientType==="privy"):d},[a,s?.linkedAccounts,t?.connectors?.walletsReady]),se=p=>{R(p),setTimeout(()=>{r(!0)},15),t.createAnalyticsEvent("modal_open",{initialScreen:p})},Oo=p=>{N.embeddedWallets.createOnLogin!=="off"&&de(!0),se(p)};zt(()=>{if(!_||!s){t.connectors?.removeEmbeddedWalletConnector();return}let p=s?.linkedAccounts.filter(d=>d.type==="wallet"&&d.walletClient==="privy");if(p&&p.length>0){let d=p[0].address;t.connectors?.addEmbeddedWalletConnector(_,d,N.defaultChain)}},[_,s]),zt(()=>{_&&J?.(_)},[_]),zt(()=>{(async()=>{if(!N.customAuth?.enabled)return;de(!0);let{getCustomAccessToken:d,isLoading:h}=N.customAuth;if(!(!n||h))try{let g=await d();if(!g){await jr.logout();return}if(a)return;t.startAuthFlow(new nr(g));let{user:U,isNewUser:X}=await t.authenticate();U||await jr.logout(),c(U||null),x(X||!1),l(!0),jn(!0)}catch(g){console.warn(g),a&&await jr.logout()}})()},[N.customAuth?.enabled,N.customAuth?.getCustomAccessToken,N.customAuth?.isLoading,n,a]),zt(()=>{zr&&_&&s&&po(s,e.config?.embeddedWallets?.createOnLogin)&&(jn(!1),_l(s,ir).catch(console.error))},[zr&&_&&s]),zt(()=>{async function p(){let d=await t.getServerConfig();fe(d);let h=Oa(d,e.config);Oe(h),d.customApiUrl&&t.updateApiUrl(d.customApiUrl);let g=J0();O(g),t.initializeConnectorManager(h.walletConnectCloudProjectId,h.rpcConfig,h.chains,h.defaultChain,g),t.connectors?.initialize();let U=Ga();eb();let X=await t.getAuthenticatedUser();e.config?.customAuth?.enabled||(l(!!X),X&&ae(oe,"login","onComplete",X,!1,!0,null),c(X)),U||we.setReadyToTrue(),U&&X&&y(!0),qe()}n||p()},[t,pe,n]),zt(()=>{let p=Oa(ne,e.config);Oe(p)},[e.config,ne]);let Ga=()=>{let p=new URLSearchParams(window.location.search),d=p.get("privy_oauth_code"),h=p.get("privy_oauth_state"),g=p.get("privy_oauth_provider");return d&&h&&g?(t.startAuthFlow(new co(g,d,h)),Oo("AWAITING_OAUTH_SCREEN"),!0):!1},Vr=async(p,d,h)=>{let g=await t.connectors?.createWalletConnector(p,d)||null;$t(g,d,h)};async function $t(p,d,h){if(!p)return A({status:"disconnected",connectError:new H("Unable to connect to wallet."),connector:null,connectRetry:E}),h?.(null);p instanceof Wt&&d&&p.resetConnection(d),A({connector:p,status:"connecting",connectError:null,connectRetry:()=>$t(p,d,h)});try{let g=await p.connect({showPrompt:!0});if(N.shouldSwitchChainOnConnect&&!N.chains.find(U=>U.id===Number(g?.chainId))&&!(g?.connectorType==="wallet_connect_v2"&&g?.walletClientType==="metamask")){A(U=>({...U,connector:p,status:"switching_to_supported_chain",connectError:null,connectRetry:E}));try{await g?.switchChain(N.defaultChain.id),g&&(g.chainId=ar(Go(N.defaultChain.id)))}catch{console.warn(`Unable to switch to default chain: ${N.defaultChain.id}`)}}return A(U=>({...U,status:"connected",connectError:null,connectRetry:E})),g&&!M&&ae(oe,"connectWallet","onSuccess",g),h?.(g)}catch(g){return g instanceof Ye?(console.warn(g.cause?g.cause:g.message),M||ae(oe,"connectWallet","onError",g.privyErrorCode||"generic_connect_wallet_error")):(console.warn(g),M||ae(oe,"connectWallet","onError","unknown_connect_wallet_error")),A(U=>({...U,status:"disconnected",connectError:g})),h?.(null)}}let ke=p=>{p!==null&&t.startAuthFlow(new Uo(p))},qe=()=>{let p=new URLSearchParams(window.location.search),d=p.get("privy_connector"),h=p.get("privy_wallet_client");if(!d||!h)return;if(h==="phantom"&&!kt()&&Oo("LOGIN_FAILED_SCREEN"),!t.connectors)throw new w("Connector not initialized");se("AWAITING_CONNECTION");let g=new URL(window.location.href);g.searchParams.delete("privy_connector"),g.searchParams.delete("privy_wallet_client"),window.history.pushState({},"",g),Vr(d,h,ke)};zt(()=>{n&&a&&s===null&&t.getAuthenticatedUser().then(c)},[n,a,s,t]);let Ke=()=>{if(!a)throw new w("User must be authenticated before linking a wallet.");y(!0),se("LINK_WALLET_SCREEN")},Tl=p=>{if(!a||!s)return!1;for(let d of s.linkedAccounts)if(d.type==="wallet"&&d.address===p.address)return!0;return!1},gt=async p=>{if(!t.connectors)throw new w("Connector not initialized");let d=t.connectors.findWalletConnector(p.connectorType,p.walletClientType)||null;A(h=>({...h,connector:d,status:"connected",connectError:null,connectRetry:E})),ke(p),Oo("AWAITING_CONNECTION")},$r=async(p,d)=>{_e.current="siwe",await $t(p,d,ke)},Sl=async(p,d)=>{if(!N.fiatOnRamp.enabled)throw new w("Fiat on-ramp is not enabled");if(!d||!d.provider||d.provider==="moonpay"){let{signedUrl:h,externalTransactionId:g}=await _p(t,p,d?.config??{},N.appearance.palette,N.fiatOnRamp.useSandbox);return{signedUrl:h,externalTransactionId:g}}else throw new w("Unsupported fund provider. Currently supported option is `moonpay`.")},Kn=()=>{m(p=>{let d=t.connectors?.wallets.map(h=>({...h,linked:Tl(h),loginOrLink:async()=>{if(!await h.isConnected())throw new w("Wallet is not connected");if(h.connectorType==="embedded"&&h.walletClientType==="privy")throw new w("Cannot link or login with embedded wallet");gt(h)},fund:async g=>{let{signedUrl:U,externalTransactionId:X}=await Sl(h.address,g);ee({fiatOnRampPrompt:{signedUrl:U},fiatOnRampStatus:{externalTransactionId:X}}),se("FIAT_ON_RAMP_PROMPT_SCREEN")},unlink:async()=>{if(!a)throw new w("User is not authenticated.");if(h.connectorType==="embedded"&&h.walletClientType==="privy")throw new w("Cannot unlink an embedded wallet");let g=await t.unlinkWallet(h.address);c(g)}}))||[];return tr(Ba(d)),ci(p,d)?p:d})};zt(()=>{Kn()},[s?.linkedAccounts,a,n]),zt(()=>{if(n){if(!t.connectors)throw new w("Connector not initialized");Kn(),t.connectors.on("walletsUpdated",Kn)}},[n]);let mf=()=>{se(a?"CONNECT_ONLY_AUTHENTICATED_SCREEN":"CONNECT_ONLY_LANDING_SCREEN")};zt(()=>{if(!C[0])return;let p=C[0],d=P.current.find(g=>g.address===p.address),h=s?.linkedAccounts.find(g=>g.type==="wallet"&&g.address===p.address);if(!d&&h){let g=Object.assign({},s);g.wallet=h&&{address:h.address,chainType:h.chainType,chainId:h.chainId,walletClient:h.walletClient,walletClientType:h.walletClientType,connectorType:h.connectorType},c(g)}P.current=C},[C]);let _l=async(p,d)=>{if(ie(p))throw ae(oe,"createWallet","onError","embedded_wallet_already_exists"),new Error("Only one Privy wallet per user is currently allowed");let[g,U]=await Promise.all([we.initializeWalletProxy(d),Re()]);if(!g&&e.config?.customAuth?.enabled)throw ae(oe,"createWallet","onError","unknown_embedded_wallet_error"),new Error("Failed to connect to wallet proxy");if(!g||!U||e.config?.embeddedWallets?.requireUserPasswordOnCreate)return new Promise((X,Ae)=>{de(!0),ee({createWallet:{onSuccess:lt=>{ae(oe,"createWallet","onSuccess",lt),X(lt)},onFailure:lt=>{ae(oe,"createWallet","onError","unknown_embedded_wallet_error"),Ae(lt)},callAuthOnSuccessOnClose:!1}}),se("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")});{await g.create({accessToken:U});let X=await we.refreshUser(),Ae=ie(X);if(!Ae)throw ae(oe,"createWallet","onError","unknown_embedded_wallet_error"),new Error("Failed to create wallet");return ae(oe,"createWallet","onSuccess",Ae),Ae}},ff=p=>{if(!N.chains.map(d=>d.id).includes(p))throw new H(`Chain ID ${p} is not supported. It must be added to the config.supportedChains property of the PrivyProvider.`,"unsupported_chain_id")},kl=(p,d,h)=>new Promise(async(g,U)=>{if(!a||!s){U(new Error("User must be authenticated before signing with a Privy wallet"));return}let X=ie(s);if(!X){U(new Error("Must have a Privy wallet before signing"));return}de(!0);let Ae=t.connectors?.findWalletConnector("embedded","privy")?.proxyProvider,rr=p.chainId?Number(p.chainId):Ae.chainId;ff(rr);let lt=Object.assign({},p,{chainId:rr}),qr=async()=>{let so=await Re();if(!so||!_){U(new Error("Must have valid access token and Privy wallet to send transaction"));return}try{if(!await we.recoverEmbeddedWallet()){U(new Error("Unable to connect to wallet"));return}let Rl=new Y0(wt(lt.chainId,N.chains,N.rpcConfig)),yf=await Br(X.address,lt,Rl),gf=await ka(so,X.address,_,yf,Rl);g(gf)}catch(Yn){U(Yn)}};if(N.embeddedWallets.noPromptOnSignature)d&&console.warn("uiOptions defined with `noPromptOnSignature` set to true in app config"),qr();else{let so={transactionRequest:lt,onSuccess:g,onFailure:U,uiOptions:d||{},fundWalletConfig:h},Yn={onCompleteNavigateTo:"EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN",onFailure:U};ee({connectWallet:Yn,sendTransaction:so}),se("EMBEDDED_WALLET_CONNECTING_SCREEN")}});function Al(){return new Promise(async(p,d)=>{let h=await Re();if(!h||!_)throw new Error("Must have valid access token to enroll in MFA");try{await _.verifyMfa({accessToken:h}),p()}catch(g){d(g)}})}let jr={ready:n,authenticated:a,user:s,walletConnectors:t.connectors||null,connectWallet:mf,linkWallet:Ke,linkEmail:()=>{if(!a)throw new w("User must be authenticated before linking an email address.");if(s?.email)throw new w("User already has an email linked to their account.");y(!0),se("LINK_EMAIL_SCREEN")},linkPhone:()=>{if(!a)throw new w("User must be authenticated before linking a phone number.");if(s?.phone)throw new w("User already has a phone number linked to their account.");y(!0),se("LINK_PHONE_SCREEN")},linkGoogle:async()=>{if(!a)throw new w("User must be authenticated before linking a Google account.");if(s?.google)throw new w("User already has a Google account linked to their account.");await we.initLoginWithOAuth("google")},linkTwitter:async()=>{if(!a)throw new w("User must be authenticated before linking a Twitter account.");if(s?.twitter)throw new w("User already has a Twitter account linked to their account.");await we.initLoginWithOAuth("twitter")},linkDiscord:async()=>{if(!a)throw new w("User must be authenticated before linking a Discord account.");if(s?.discord)throw new w("User already has a Discord account linked to their account.");await we.initLoginWithOAuth("discord")},linkGithub:async()=>{if(!a)throw new w("User must be authenticated before linking a GitHub account.");if(s?.github)throw new w("User already has a Github account linked to their account.");await we.initLoginWithOAuth("github")},linkTiktok:async()=>{if(!a)throw new w("User must be authenticated before linking a TikTok account.");if(s?.tiktok)throw new w("User already has a Tiktok account linked to their account.");await we.initLoginWithOAuth("tiktok")},linkLinkedIn:async()=>{if(!a)throw new w("User must be authenticated before linking a LinkedIn account.");if(s?.linkedin)throw new w("User already has a LinkedIn account linked to their account.");await we.initLoginWithOAuth("linkedin")},linkApple:async()=>{if(!a)throw new w("User must be authenticated before linking an Apple account.");await we.initLoginWithOAuth("apple")},login:async()=>{if(n||(await new Promise(p=>{er(()=>p)}),er(null)),a){console.warn("Attempted to log in, but user is already logged in. Use a `link` helper instead.");return}W(!0),Oo("LANDING")},logout:async()=>{await t.logout(),c(null),l(!1),R(null),ae(oe,"logout","onSuccess"),y(!1),r(!1),Q.del(Jr)},getAccessToken:()=>t.getAccessToken(),getEthereumProvider:()=>{if(!s||!s.wallet)return new re;let p=C.find(h=>s.wallet&&h.address===s.wallet.address),d=t.connectors?.walletConnectors.find(h=>h.wallets.find(g=>g.address===p?.address));return!p||!d?new re:d.proxyProvider},getEthersProvider:()=>{if(!s||!s.wallet)return new xl(new Rt(new re));let p=C.find(h=>s.wallet&&h.address===s.wallet.address),d=t.connectors?.walletConnectors.find(h=>h.wallets.find(g=>g.address===p?.address));return!p||!d?new xl(new Rt(new re)):new xl(new Rt(d.proxyProvider))},getWeb3jsProvider:()=>{if(!s||!s.wallet)return new fo(new re);let p=C.find(h=>s.wallet&&h.address===s.wallet.address),d=t.connectors?.walletConnectors.find(h=>h.wallets.find(g=>g.address===p?.address));return!p||!d?new fo(new re):new fo(d.proxyProvider)},unlinkWallet:async p=>{let d=await t.unlinkWallet(p);return c(d),d},unlinkEmail:async p=>{let d=await t.unlinkEmail(p);return c(d),d},unlinkPhone:async p=>{let d=await t.unlinkPhone(p);return c(d),d},unlinkGoogle:async p=>{let d=await t.unlinkOAuth("google",p);return c(d),d},unlinkTwitter:async p=>{let d=await t.unlinkOAuth("twitter",p);return c(d),d},unlinkDiscord:async p=>{let d=await t.unlinkOAuth("discord",p);return c(d),d},unlinkGithub:async p=>{let d=await t.unlinkOAuth("github",p);return c(d),d},unlinkTiktok:async p=>{let d=await t.unlinkOAuth("tiktok",p);return c(d),d},unlinkLinkedIn:async p=>{let d=await t.unlinkOAuth("linkedin",p);return c(d),d},unlinkApple:async p=>{let d=await t.unlinkOAuth("apple",p);return c(d),d},setActiveWallet:async p=>{let d=C.find(g=>Fa(g.address)===Fa(p)),h=s?.linkedAccounts.find(g=>g.type==="wallet"&&Fa(g.address)===Fa(p));if(!d||!await d.isConnected())D(p),Ke();else if(!d.linked)d.loginOrLink();else{let g=Object.assign({},s);g.wallet=h&&{address:h.address,chainType:h.chainType,chainId:h.chainId,walletClient:h.walletClient,walletClientType:h.walletClientType,connectorType:h.connectorType},c(g)}},forkSession:()=>t.forkSession(),createWallet:async()=>{if(!a||!s)throw ae(oe,"createWallet","onError","must_be_authenticated"),new Error("User must be authenticated before creating a Privy wallet");return _l(s,15e3)},setWalletPassword:()=>new Promise(async(p,d)=>{if(!a||!s){d(new Error("User must be authenticated before adding password to Privy wallet"));return}let h=ie(s);if(!h||!_){d(new Error("Must have a Privy wallet to add a password"));return}if(h.recoveryMethod==="user-passcode"){d(new Error("Cannot set password. Embedded wallet already has a password."));return}await Al(),de(!0);let g={onSuccess:p,onFailure:d,callAuthOnSuccessOnClose:!1},U={onCompleteNavigateTo:"EMBEDDED_WALLET_PASSWORD_UPDATE_SPLASH_SCREEN",onFailure:d};ee({setWalletPassword:g,connectWallet:U}),se("EMBEDDED_WALLET_CONNECTING_SCREEN")}),signMessage:(p,d)=>new Promise(async(h,g)=>{if(!a||!s){g(new Error("User must be authenticated before signing with a Privy wallet"));return}let U=ie(s);if(!U){g(new Error("Must have a Privy wallet before signing"));return}if(typeof p!="string"||p.length<1){g(new Error("Message must be a non-empty string"));return}de(!0);let X=async()=>{if(!a)throw new Error("User must be authenticated before signing with a Privy wallet");let Ae=await Re();if(!_||!Ae)throw new Error("Unable to connect to wallet");if(!await we.recoverEmbeddedWallet())throw new Error("Unable to connect to wallet");t.createAnalyticsEvent("embedded_wallet_sign_message_started",{walletAddress:U.address});let{response:lt}=await _.rpc({accessToken:Ae,address:U.address,request:{method:"personal_sign",params:[p,U.address]}}),qr=lt.data;return t.createAnalyticsEvent("embedded_wallet_sign_message_completed",{walletAddress:U.address}),qr};if(N.embeddedWallets.noPromptOnSignature){d&&console.warn("uiOptions defined with `noPromptOnSignature` set to true in app config");try{let Ae=await X();h(Ae)}catch(Ae){g(Ae??new De("Unable to sign message"))}}else{let lt={message:p,confirmAndSignMessage:X,onSuccess:so=>{h(so)},onFailure:so=>{g(so)},uiOptions:d||{}},qr={onCompleteNavigateTo:"EMBEDDED_WALLET_SIGN_REQUEST_SCREEN",onFailure:g};ee({signMessage:lt,connectWallet:qr}),se("EMBEDDED_WALLET_CONNECTING_SCREEN")}}),sendTransaction:async(p,d,h)=>{let U=await(await kl(p,d,h)).wait();return Ra(U)},exportWallet:()=>new Promise(async(p,d)=>{if(!a||!s){d(new Error("User must be authenticated before exporting their Privy wallet"));return}if(!ie(s)){d(new Error("Must have a Privy wallet before exporting"));return}de(!0);let g={onCompleteNavigateTo:"EMBEDDED_WALLET_KEY_EXPORT_SCREEN",onFailure:d},U=await Re();if(!U||!_)throw new Error("Must have valid access token to enroll in MFA");if(!_){d(new Error("Must have a Privy wallet before exporting"));return}await _.verifyMfa({accessToken:U});let X={appId:e.appId,origin:t.apiUrl,onSuccess:p,onFailure:d};ee({keyExport:X,connectWallet:g}),se("EMBEDDED_WALLET_CONNECTING_SCREEN")}),promptMfa:Al,async init(p){let d;switch(p){case"sms":d=new Ua("verify");break;case"totp":return;default:throw new Error(`Unsupported MFA method: ${p}`)}t.startMfaFlow(d),await d.init()},async submit(p,d){switch(p){case"totp":case"sms":or.current?.resolve({mfaMethod:p,mfaCode:d}),await new Promise((h,g)=>{qn.current={resolve:h,reject:g}});break;default:throw or.current?.reject(new w("Unsupported MFA method")),new w(`Unsupported MFA method: ${p}`)}},cancel(){or.current?.reject(new w("MFA canceled"))},async initEnrollmentWithSms(p){let d=await Re();if(!d||!_)throw new Error("Must have valid access token to enroll in MFA");await _.initEnrollMfa({method:"sms",accessToken:d,phoneNumber:p.phoneNumber})},enrollInMfa(p){return new Promise((d,h)=>{if(!p){we.closePrivyModal(),d();return}N.mfa.noPromptOnMfaRequired&&console.warn("[Privy Warning] Triggering the 'showMfaEnrollmentModal' function when 'noPromptOnMfaRequired' is set to true is unexpected. If this is intentional, ensure that you are building custom UIs for MFA verification."),ee({mfaEnrollmentFlow:{mfaMethods:N.mfa.methods,onSuccess:d,onFailure:h}}),se("MFA_ENROLLMENT_FLOW_SCREEN")})},async initEnrollmentWithTotp(){let p=await Re();if(!p||!_)throw new Error("Must have valid access token to enroll in MFA");let d=await _.initEnrollMfa({method:"totp",accessToken:p});return{secret:d.secret,authUrl:d.authUrl}},async submitEnrollmentWithSms(p){let d=await Re();if(!d||!_)throw new Error("Must have valid access token to enroll in MFA");await _.submitEnrollMfa({method:"sms",accessToken:d,phoneNumber:p.phoneNumber,code:p.mfaCode});let h=await t.getAuthenticatedUser();c(h)},async submitEnrollmentWithTotp(p){let d=await Re();if(!d||!_)throw new Error("Must have valid access token to enroll in MFA");await _.submitEnrollMfa({method:"totp",accessToken:d,code:p.mfaCode});let h=await t.getAuthenticatedUser();c(h)},async unenroll(p){let d=await Re();if(!d||!_)throw new Error("Must have valid access token to remove MFA");await _.unenrollMfa({method:p,accessToken:d});let h=await t.getAuthenticatedUser();c(h)},loginWithCode(p){return we.loginWithCode(p)},initLoginWithEmail(p,d){return we.initLoginWithEmail(p,d)},isModalOpen:o};cf=jr.signMessage,df=async(...p)=>{let d=await kl(...p);return N.embeddedWallets.waitForTransactionConfirmation&&await d.wait(),d};let we=(()=>({headless:!!e.config?.headless,isNewUserThisSession:b,isLinking:u,linkingHint:B,pendingTransaction:null,walletConnectionStatus:I,mipdStore:L,connectors:t.connectors?.walletConnectors??[],rpcConfig:N.rpcConfig,chains:N.chains,showFiatPrices:N.embeddedWallets.priceDisplay.primary!=="native-token",clientAnalyticsId:t.clientAnalyticsId,nativeTokenSymbolForChainId:p=>N.chains.find(d=>d.id===Number(p))?.nativeCurrency.symbol,initializeWalletProxy:async p=>{if(_)return _;let d=new Promise(U=>{ao(()=>X=>U(X))}),h=new Promise(U=>setTimeout(()=>U(null),p)),g=await Promise.race([d,h]);return ao(null),g},getAuthFlow:()=>t.authFlow,getAuthMeta:()=>t.authFlow?.meta,closePrivyModal:(p={shouldCallAuthOnSuccess:!0})=>{let d=n&&a&&s;p.shouldCallAuthOnSuccess&&d?(ae(oe,"login","onComplete",s,b,!1,_e.current??null),e.onSuccess?.(s,b)):M&&ae(oe,"login","onError","exited_auth_flow"),D(null),W(!1),y(!1),x(!1),r(!1),setTimeout(()=>{t.authFlow=void 0},200),t.createAnalyticsEvent("modal_closed")},connectWallet:$t,initLoginWithWallet:$r,loginWithWallet:async()=>{if(!n)throw new Kr;if(!(t.authFlow instanceof Uo))throw new w("Must initialize SIWE flow first.");let p,d;if(a)p=await t.link();else try{({user:p,isNewUser:d}=await t.authenticate())}catch(h){throw ae(oe,"login","onError",h.privyErrorCode||"generic_connect_wallet_error"),h}c(p||s||null),x(d||!1),l(!0)},initLoginWithOAuth:async p=>{t.startAuthFlow(new co(p));let d=await t.authFlow.getAuthorizationUrl();d&&d.url&&window.location.assign(d.url)},loginWithOAuth:async p=>{if(!(t.authFlow instanceof co))throw new w("Must initialize OAuth flow before calling loginWithOAuth");let d,h;if(a)d=await t.link();else try{({user:d,isNewUser:h}=await t.authenticate()),_e.current=p}catch(g){throw ae(oe,"login","onError",g.privyErrorCode||"unknown_auth_error"),g}c(d),x(h||!1),l(!0)},initLoginWithEmail:async(p,d)=>{let h=new Do(p,d);t.startAuthFlow(h);try{_e.current="email",await h.sendCodeEmail()}catch(g){throw ae(oe,"login","onError",g.privyErrorCode||"unknown_auth_error"),g}},initLoginWithSms:async(p,d)=>{let h=new Fo(p,d);t.startAuthFlow(h);try{_e.current="sms",await h.sendSmsCode()}catch(g){throw ae(oe,"login","onError",g.privyErrorCode||"unknown_auth_error"),g}},resendEmailCode:async()=>{await t.authFlow?.sendCodeEmail()},resendSmsCode:async()=>{await t.authFlow?.sendSmsCode()},loginWithCode:async p=>{if(!n)throw new Kr;if(t.authFlow instanceof Do)t.authFlow.meta.emailCode=p.trim();else if(t.authFlow instanceof Fo)t.authFlow.meta.smsCode=p.trim();else throw new w("Must initialize a passwordless code flow first");let d,h;a?d=await t.link():{user:d,isNewUser:h}=await t.authenticate(),c(d||s||null),x(h||!1),l(!0)},refreshUser:async()=>{let p=await t.getAuthenticatedUser();return c(p),p},walletProxy:_,createAnalyticsEvent:(p,d,h)=>t.createAnalyticsEvent(p,d,h),getUsdTokenPrice:p=>t.getUsdTokenPrice(p),recoverEmbeddedWallet:async()=>new Promise(async(p,d)=>{let h=s?.linkedAccounts.find(U=>U.type==="wallet"&&U.walletClientType==="privy"),g=await Re();if(!g||!_||!h){d(new Error("Must have valid access token and Privy wallet to recover wallet"));return}de(!0);try{await _.connect({accessToken:g,address:h.address}),p(!0)}catch(U){br(U)&&h.recoveryMethod==="privy"?(t.createAnalyticsEvent("embedded_wallet_pinless_recovery_started",{walletAddress:h.address}),(await _.recover({address:h.address,accessToken:g})).address||d(new Error("Unable to recover wallet")),t.createAnalyticsEvent("embedded_wallet_recovery_completed",{walletAddress:h.address}),p(!0)):br(U)?(ee({recoverWallet:{privyWallet:h,onFailure:d,onSuccess:()=>p(!0)}}),se("EMBEDDED_WALLET_RECOVERY_SCREEN")):d(U)}}),getFiatOnRampConfig:Sl,setReadyToTrue:()=>{i(!0),pe?.()},updateWallets:()=>Kn()}))();pf=we.recoverEmbeddedWallet;let hf=Z0(()=>({wallets:C,ready:Vt}),[C,Vt]);return No(he.Provider,{value:jr,children:No(os.Provider,{value:oe,children:No(hl.Provider,{value:hf,children:lf(Gp,{...N,children:[e.children,lf(ls.Provider,{value:we,children:[No(Fm,{theme:{...N.appearance.palette||{}}}),No(Mc,{appConfig:N,data:Se,setModalData:ee,setInitialScreen:R,initialScreen:v,authenticated:a,children:No(zm,{open:o})}),st&&ne.id?No(sf,{appId:e.appId,clientAnalyticsId:t.clientAnalyticsId,origin:t.apiUrl,mfaMethods:s?.mfaMethods,mfaPromise:or,mfaSubmitPromise:qn,onLoad:Z,onLoadFailed:()=>null}):null]})]})})})})};import{useContext as rb}from"react";function nb(e){let{login:t}=rb(he);return dt("login",e),{login:t}}import{useContext as ib}from"react";function ab(e){let{logout:t}=ib(he);return dt("logout",e),{logout:t}}import{useCallback as uf}from"react";var sb=()=>{let e=Ut(),{initLoginWithEmail:t,loginWithCode:o}=z(),r=uf(async({email:i})=>{if(!i)throw new Error("Email required to send OTP code");if(e.status==="disabled")return t(i);let a=await e.waitForResult();return t(i,a)},[t,e]),n=uf(async({code:i})=>{if(e.enabled&&e.status!=="success")throw new xn(e.error,null,"captcha_failure");return o(i)},[o,e.status]);return{sendCode:r,loginWithCode:n}};import{useContext as lb}from"react";function cb(e){let{connectWallet:t}=lb(he);return dt("connectWallet",e),{connectWallet:t}}import{useContext as db}from"react";function pb(e){let{createWallet:t}=db(he);return dt("createWallet",e),{createWallet:t}}import{useContext as ub}from"react";var mb=()=>{let{isModalOpen:e}=ub(he);return{isOpen:e}};import{useContext as fb}from"react";function hb(e){let{getAccessToken:t}=fb(he);return dt("accessToken",e),{getAccessToken:t}}export{Rt as AsExternalProvider,Tn as Captcha,on as ConnectorManager,nn as PrivyClient,tb as PrivyProvider,re as PrivyProxyProvider,zn as SUPPORTED_CHAINS,za as VERSION,$e as WalletConnector,Ps as errorIndicatesMaxMfaRetries,Er as errorIndicatesMfaTimeout,Pr as errorIndicatesMfaVerificationFailed,Re as getAccessToken,cb as useConnectWallet,pb as useCreateWallet,nb as useLogin,sb as useLoginWithEmail,ab as useLogout,Or as useMfa,Wn as useMfaEnrollment,mb as useModalStatus,z as usePrivy,rs as useRegisterMfaListener,hb as useToken,Gn as useWallets};
2499
+ `;import{jsx as Ce,jsxs as Hm}from"react/jsx-runtime";var I0={["LANDING"]:iu,["AWAITING_PASSWORDLESS_CODE"]:vd,["AWAITING_CONNECTION"]:Id,["AWAITING_CONNECT_ONLY_CONNECTION"]:Nd,["PHANTOM_INTERSTITIAL_SCREEN"]:Am,["LOGIN_FAILED_SCREEN"]:uu,["AWAITING_OAUTH_SCREEN"]:Tm,["ALLOWLIST_REJECTION_SCREEN"]:id,["INSTALL_PHANTOM_SCREEN"]:Dp,["LINK_EMAIL_SCREEN"]:au,["LINK_PHONE_SCREEN"]:su,["LINK_WALLET_SCREEN"]:lu,["CONNECT_ONLY_LANDING_SCREEN"]:kd,["CONNECT_ONLY_AUTHENTICATED_SCREEN"]:Td,["EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN"]:bp,["EMBEDDED_WALLET_CREATED_SCREEN"]:zd,["EMBEDDED_WALLET_CONNECTING_SCREEN"]:Gd,["EMBEDDED_WALLET_RECOVERY_SCREEN"]:xp,["EMBEDDED_WALLET_KEY_EXPORT_SCREEN"]:qd,["EMBEDDED_WALLET_SIGN_REQUEST_SCREEN"]:Dm,["EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN"]:Nm,["FIAT_ON_RAMP_PROMPT_SCREEN"]:Rp,["FIAT_ON_RAMP_STATUS_SCREEN"]:Wp,["EMBEDDED_WALLET_PASSWORD_UPDATE_SPLASH_SCREEN"]:Pp,["EMBEDDED_WALLET_PASSWORD_UPDATE_SCREEN"]:Ep,["MFA_ENROLLMENT_FLOW_SCREEN"]:Fu},W0=({isMfaVerifying:e,onMfaVerificationComplete:t})=>{let{ready:o}=z(),{ready:r,currentScreen:n}=S(),i=k0(null),a=Yc(i);if((!o||!r)&&n!=="AWAITING_OAUTH_SCREEN")return Hm(Qo,{children:[Ce(T,{}),Ce(j,{}),Ce(bu,{children:Ce(Lt,{})}),Ce(K,{}),Ce(Y,{})]});if(!n&&e)return Ce(Qo,{style:{height:a},children:Ce("div",{ref:i,children:Ce(wl,{open:e,onClose:t})})});if(!n)return null;let l=I0[n];return Ce(Qo,{style:{height:a},children:Hm("div",{ref:i,children:[Ce(Qt,{if:!!e,children:Ce(l,{})}),Ce(Qt,{if:!e,children:Ce(wl,{open:e,onClose:t})})]})})},zm=({open:e})=>{let{app:t}=S(),[o,r]=Gm(!1),{gracefulClosePrivyModal:n,onEscape:i}=wu(),[a,l]=Gm(!1);rs({onMfaRequired:()=>{t?.mfa.noPromptOnMfaRequired||l(!0)}}),A0(()=>{r(!0)},[]);let s=Ce(Bm,{children:Ce(W0,{isMfaVerifying:a,onMfaVerificationComplete:()=>l(!1)})}),c=e||a,u=t?.render.inDialog?Ce("div",{onKeyDown:i,children:Ce(Cu,{open:c,id:"privy-dialog",onClick:()=>n(),children:s})}):s;if(o){let y=t?.render.inParentNodeId&&document.getElementById(t.render.inParentNodeId)||document.body;return R0.createPortal(u,y)}return null};var yt={appearance:{theme:"light",accentColor:"#676FFF",walletList:["detected_wallets","metamask","coinbase_wallet","rainbow","wallet_connect"]},walletConnectCloudProjectId:ic,rpcConfig:{rpcUrls:{},rpcTimeouts:{}},captchaEnabled:!1,_render:{inDialog:!0,inParentNodeId:null},fiatOnRamp:{useSandbox:!1}};var M0=new Set(["metamask","coinbase_wallet","rainbow","zerion","phantom","wallet_connect","detected_wallets"]),L0=e=>M0.has(e),N0=(e,t,o)=>o.indexOf(e)===t,Vm=({input:e})=>e?e.filter(L0).filter(N0):yt.appearance.walletList;var $m={id:43114,name:"Avalanche",network:"avalanche",nativeCurrency:{decimals:18,name:"Avalanche",symbol:"AVAX"},rpcUrls:{default:{http:["https://api.avax.network/ext/bc/C/rpc"]},public:{http:["https://api.avax.network/ext/bc/C/rpc"]}},blockExplorers:{etherscan:{name:"SnowTrace",url:"https://snowtrace.io"},default:{name:"SnowTrace",url:"https://snowtrace.io"}}};var jm={id:43113,name:"Avalanche Fuji",network:"avalanche-fuji",nativeCurrency:{decimals:18,name:"Avalanche Fuji",symbol:"AVAX"},rpcUrls:{default:{http:["https://api.avax-test.network/ext/bc/C/rpc"]},public:{http:["https://api.avax-test.network/ext/bc/C/rpc"]}},blockExplorers:{etherscan:{name:"SnowTrace",url:"https://testnet.snowtrace.io"},default:{name:"SnowTrace",url:"https://testnet.snowtrace.io"}},testnet:!0};var qm={id:42220,name:"Celo Mainnet",network:"celo",nativeCurrency:{decimals:18,name:"CELO",symbol:"CELO"},rpcUrls:{default:{http:["https://forno.celo.org"]},infura:{http:["https://celo-mainnet.infura.io/v3"]},public:{http:["https://forno.celo.org"]}},blockExplorers:{default:{name:"Celo Explorer",url:"https://explorer.celo.org/mainnet"},etherscan:{name:"CeloScan",url:"https://celoscan.io"}},testnet:!1};var Km={id:44787,name:"Celo Alfajores Testnet",network:"celo-alfajores",nativeCurrency:{decimals:18,name:"CELO",symbol:"CELO"},rpcUrls:{default:{http:["https://alfajores-forno.celo-testnet.org"]},infura:{http:["https://celo-alfajores.infura.io/v3"]},public:{http:["https://alfajores-forno.celo-testnet.org"]}},blockExplorers:{default:{name:"Celo Explorer",url:"https://explorer.celo.org/alfajores"},etherscan:{name:"CeloScan",url:"https://alfajores.celoscan.io/"}},testnet:!0};var Ym={id:314,name:"Filecoin - Mainnet",network:"filecoin-mainnet",nativeCurrency:{decimals:18,name:"filecoin",symbol:"FIL"},rpcUrls:{default:{http:["https://api.node.glif.io/rpc/v1"]},public:{http:["https://api.node.glif.io/rpc/v1"]}},blockExplorers:{default:{name:"Filfox",url:"https://filfox.info/en"},filscan:{name:"Filscan",url:"https://filscan.io"},filscout:{name:"Filscout",url:"https://filscout.io/en"},glif:{name:"Glif",url:"https://explorer.glif.io"}}};var Jm={id:314159,name:"Filecoin - Calibration testnet",network:"filecoin-calibration",nativeCurrency:{decimals:18,name:"testnet filecoin",symbol:"tFIL"},rpcUrls:{default:{http:["https://api.calibration.node.glif.io/rpc/v1"]},public:{http:["https://api.calibration.node.glif.io/rpc/v1"]}},blockExplorers:{default:{name:"Filscan",url:"https://calibration.filscan.io"}}};var Qm={id:5,network:"goerli",name:"Goerli",nativeCurrency:{name:"Goerli Ether",symbol:"ETH",decimals:18},rpcUrls:{alchemy:{http:["https://eth-goerli.g.alchemy.com/v2"],webSocket:["wss://eth-goerli.g.alchemy.com/v2"]},infura:{http:["https://goerli.infura.io/v3"],webSocket:["wss://goerli.infura.io/ws/v3"]},default:{http:["https://rpc.ankr.com/eth_goerli"]},public:{http:["https://rpc.ankr.com/eth_goerli"]}},blockExplorers:{etherscan:{name:"Etherscan",url:"https://goerli.etherscan.io"},default:{name:"Etherscan",url:"https://goerli.etherscan.io"}},testnet:!0};var Zm={id:17e3,name:"Holesky",network:"holesky",nativeCurrency:{name:"ETH",symbol:"ETH",decimals:18},rpcUrls:{default:{http:["https://ethereum-holesky.publicnode.com"]},public:{http:["https://ethereum-holesky.publicnode.com"]}},blockExplorers:{etherscan:{name:"EtherScan",url:"https://holesky.etherscan.io"},default:{name:"EtherScan",url:"https://holesky.etherscan.io"}}};var Xm={id:59144,network:"linea-mainnet",name:"Linea Mainnet",nativeCurrency:{name:"Linea Ether",symbol:"ETH",decimals:18},rpcUrls:{infura:{http:["https://linea-mainnet.infura.io/v3"],webSocket:["wss://linea-mainnet.infura.io/ws/v3"]},default:{http:["https://rpc.linea.build"],webSocket:["wss://rpc.linea.build"]},public:{http:["https://rpc.linea.build"],webSocket:["wss://rpc.linea.build"]}},blockExplorers:{default:{name:"Etherscan",url:"https://lineascan.build"},etherscan:{name:"Etherscan",url:"https://lineascan.build"}},testnet:!1};var ef={id:59140,network:"linea-testnet",name:"Linea Goerli Testnet",nativeCurrency:{name:"Linea Ether",symbol:"ETH",decimals:18},rpcUrls:{infura:{http:["https://linea-goerli.infura.io/v3"],webSocket:["wss://linea-goerli.infura.io/ws/v3"]},default:{http:["https://rpc.goerli.linea.build"],webSocket:["wss://rpc.goerli.linea.build"]},public:{http:["https://rpc.goerli.linea.build"],webSocket:["wss://rpc.goerli.linea.build"]}},blockExplorers:{default:{name:"Etherscan",url:"https://goerli.lineascan.build"},etherscan:{name:"Etherscan",url:"https://goerli.lineascan.build"}},testnet:!0};var Na={id:1,network:"homestead",name:"Ethereum",nativeCurrency:{name:"Ether",symbol:"ETH",decimals:18},rpcUrls:{alchemy:{http:["https://eth-mainnet.g.alchemy.com/v2"],webSocket:["wss://eth-mainnet.g.alchemy.com/v2"]},infura:{http:["https://mainnet.infura.io/v3"],webSocket:["wss://mainnet.infura.io/ws/v3"]},default:{http:["https://cloudflare-eth.com"]},public:{http:["https://cloudflare-eth.com"]}},blockExplorers:{etherscan:{name:"Etherscan",url:"https://etherscan.io"},default:{name:"Etherscan",url:"https://etherscan.io"}}};var tf={id:17001,name:"Redstone Holesky",network:"redstone-holesky",nativeCurrency:{name:"ETH",symbol:"ETH",decimals:18},rpcUrls:{default:{http:["https://rpc.holesky.redstone.xyz"]},public:{http:["https://rpc.holesky.redstone.xyz"]}},blockExplorers:{etherscan:{name:"EtherScan",url:"https://explorer.holesky.redstone.xyz"},default:{name:"EtherScan",url:"https://explorer.holesky.redstone.xyz"}}};var of={id:11155111,network:"sepolia",name:"Sepolia",nativeCurrency:{name:"Sepolia Ether",symbol:"SEP",decimals:18},rpcUrls:{alchemy:{http:["https://eth-sepolia.g.alchemy.com/v2"],webSocket:["wss://eth-sepolia.g.alchemy.com/v2"]},infura:{http:["https://sepolia.infura.io/v3"],webSocket:["wss://sepolia.infura.io/ws/v3"]},default:{http:["https://rpc.sepolia.org"]},public:{http:["https://rpc.sepolia.org"]}},blockExplorers:{etherscan:{name:"Etherscan",url:"https://sepolia.etherscan.io"},default:{name:"Etherscan",url:"https://sepolia.etherscan.io"}},testnet:!0};var zn=[wa,Ca,ba,Qm,of,Na,xa,Ta,Fn,Bn,qm,Km,Ym,Jm,Ea,Pa,Xm,ef,$m,jm,Sa,_a,Zm,tf],kL=new Set(zn.map(e=>e.id));import er from"tinycolor2";var rf="#FFFFFF",O0="#000000",D0=rf,U0="#1E1E1D";function F0(e){return e<.8&&e>.2&&console.warn("Background color is not light or dark enough, which could lead to accessibility issues."),e>.5?"light":"dark"}function Lo(e,t){let o=Math.max(0,Math.min(1,e.toHsl().l+t));return er({...e.toHsl(),l:o})}function nf({backgroundTheme:e,accentHex:t,successHex:o="#51BA81",warnHex:r="#FFB74D",errorHex:n="#EC6351",whiteHex:i=rf,blackHex:a=O0}){let l;switch(e){case"light":l=D0;break;case"dark":l=U0;break;default:l=e;break}let s=er(l),c=er(t),u=er(o),y=er(r),C=er(n),m=F0(s.getLuminance()),P=Lo(s,m==="light"?-.04:.11),b=Lo(s,m==="light"?-.88:.87),x=Lo(s,m==="light"?-.77:.75),v=Lo(s,m==="light"?-.43:.45).desaturate(m==="light"?60:20),R=Lo(s,m==="light"?-.08:.25).desaturate(m==="light"?60:20),M=Lo(c,.15),W=Lo(c,-.06),I=er(c.getLuminance()>.5?a:i),A=Lo(u,-.16);return{colorScheme:m,background:s.toHslString(),background2:P.toHslString(),foreground:b.toHslString(),foreground2:x.toHslString(),foreground3:v.toHslString(),foreground4:R.toHslString(),accent:c.toHslString(),accentLight:M.toHslString(),accentDark:W.toHslString(),foregroundAccent:I.toHslString(),success:u.toHslString(),successDark:A.toHslString(),error:C.toHslString(),warn:y.toHslString()}}function Oa(e,t){let o=["google","twitter","discord","tiktok","linkedin","github","apple"],r=t?.loginMethods?.filter(B=>o.includes(B)),n,i,a,l,s,c,u,y,C,m;t?.loginMethods?(n=t.loginMethods.includes("email"),i=t.loginMethods.includes("sms"),a=t.loginMethods.includes("wallet"),l=r?.includes("google"),s=r?.includes("twitter"),c=r?.includes("discord"),u=r?.includes("tiktok"),C=r?.includes("github"),y=r?.includes("linkedin"),m=r?.includes("apple")):(n=e.emailAuth,i=e.smsAuth,a=e.walletAuth,l=e.googleOAuth,s=e.twitterOAuth,c=e.discordOAuth,C=e.githubOAuth,u=e.tiktokOAuth,y=e.linkedinOAuth,m=e.appleOAuth);let P=[n,i].filter(Boolean),b=[l,s,c,C,u,y,m].filter(Boolean),x=[a].filter(Boolean);if(P.length+b.length+x.length===0)throw new Error("You must enable at least one login method");let v=t?.appearance?.showWalletLoginFirst!==void 0?t?.appearance?.showWalletLoginFirst:e.showWalletLoginFirst;v&&x.length===0?(console.warn("You should only enable `showWalletLoginFirst` when `wallet` logins are also enabled. `showWalletLoginFirst` has been set to false"),v=!1):!v&&b.length+P.length===0&&(console.warn("You should only disable `showWalletLoginFirst` when `email`, `sms`, or social logins are also enabled. `showWalletLoginFirst` has been set to true"),v=!0);let R=Vm({isWalletLoginEnabled:a,input:t?.appearance?.walletList});if(t?.embeddedWallets?.waitForTransactionConfirmation===!1&&t.embeddedWallets.noPromptOnSignature!==!0)throw new Error("Overriding `config.embeddedWallets.waitForTransactionConfirmation` requires that you also enable `config.embeddedWallets.noPromptOnSignature`");let M=t?.intl?.defaultCountry??"US",{chains:W,defaultChain:I}=B0(t?.additionalChains,t?.supportedChains,t?.defaultChain),A=!!t?.defaultChain||!!t?.supportedChains,L=t?.customAuth?.getCustomAccessToken&&t?.customAuth?.enabled!==!1;return{id:e.id,name:e.name,allowlistConfig:e.allowlistConfig,appearance:{logo:t?.appearance?.logo??e.logoUrl,palette:nf({backgroundTheme:t?.appearance?.theme??yt.appearance.theme,accentHex:t?.appearance?.accentColor??e.accentColor??yt.appearance.accentColor}),loginGroupPriority:v?"web3-first":"web2-first",hideDirectWeb2Inputs:!!t?.appearance?.hideDirectWeb2Inputs,walletList:R},loginMethods:{wallet:a,email:n,sms:i,google:l,twitter:s,discord:c,github:C,tiktok:u,linkedin:y,apple:m},legal:{termsAndConditionsUrl:t?.legal?.termsAndConditionsUrl??e.termsAndConditionsUrl,privacyPolicyUrl:t?.legal?.privacyPolicyUrl??e.privacyPolicyUrl},walletConnectCloudProjectId:t?.walletConnectCloudProjectId??e.walletConnectCloudProjectId??yt.walletConnectCloudProjectId,rpcConfig:{rpcUrls:t?.rpcConfig?.rpcUrls??yt.rpcConfig.rpcUrls,rpcTimeouts:t?.rpcConfig?.rpcTimeouts??yt.rpcConfig.rpcTimeouts},chains:W,defaultChain:I,intl:{defaultCountry:M},shouldSwitchChainOnConnect:A,captchaEnabled:e.captchaEnabled??yt.captchaEnabled,captchaSiteKey:e.captchaSiteKey,embeddedWallets:{...e.embeddedWalletConfig,...L?{createOnLogin:"all-users",requireUserPasswordOnCreate:!1,noPromptOnSignature:!0}:{},waitForTransactionConfirmation:!0,priceDisplay:{primary:"fiat-currency",secondary:"native-token"},...t?.embeddedWallets},mfa:{methods:e.mfaMethods??[],noPromptOnMfaRequired:t?.mfa?.noPromptOnMfaRequired??!1},customAuth:L?{enabled:!0,...t.customAuth}:void 0,fiatOnRamp:{enabled:e.fiatOnRampEnabled,useSandbox:t?.fiatOnRamp?.useSandbox??yt.fiatOnRamp.useSandbox},loginConfig:{twitterOAuthOnMobileEnabled:e.twitterOAuthOnMobileEnabled??!1},render:{inDialog:t?._render?.inDialog??yt._render.inDialog,inParentNodeId:t?._render?.inParentNodeId??yt._render.inParentNodeId}}}function af(e,t){if(!e)return{legacyCreateEmbeddedWalletFlag:t};let{appearance:o,additionalChains:r,supportedChains:n,defaultChain:i,...a}=e;return{...a,...r?{additionalChains:r.map(s=>s.id)}:void 0,...n?{supportedChains:n.map(s=>s.id)}:void 0,...i?{defaultChain:i.id}:void 0,...o?{...o,...o.logo&&typeof o.logo?{logo:"component"}:void 0}:void 0,legacyCreateEmbeddedWalletFlag:t}}function B0(e,t,o){let r;if(e&&t&&console.warn("You should only specify one of `additionalChains` or `supportedChains`. Using `supportedChains`."),t){if(t.length===0)throw new Error("`supportedChains` must contain at least one chain");r=t.map(a=>zn.find(s=>s.id===a.id)??a)}else r=zn.concat(e??[]);let n=t?r[0]:Na,i=o??n;if(!r.find(a=>a.id===i.id))throw new Error("`defaultChain` must be included in `supportedChains`");return{chains:r,defaultChain:i}}import{useRef as G0,useEffect as H0}from"react";var Da=class{constructor(){this.callbacks={}}enqueue(t,o){this.callbacks[t]=o}dequeue(t,o){let r=this.callbacks[o];if(!r)throw new Error(`cannot dequeue ${t} event: no event found for id ${o}`);switch(delete this.callbacks[o],t){case"privy:iframe:ready":return r;case"privy:wallet:create":return r;case"privy:wallet:connect":return r;case"privy:wallet:recover":return r;case"privy:wallet:rpc":return r;case"privy:wallet:set-recovery-password":return r;case"privy:mfa:verify":return r;case"privy:mfa:init-enrollment":return r;case"privy:mfa:submit-enrollment":return r;case"privy:mfa:unenroll":return r;default:throw new Error(`invalid wallet event type ${t}`)}}};async function tr(e,t,o,r,n,i=!1){let a=i,l=async u=>{if(a&&t&&t.length>0){u===(i?0:1)?n("configureMfa","onMfaRequired",t):r.current?.reject(new Pe("missing_or_invalid_mfa","MFA verification failed, retry."));let y=await new Promise((C,m)=>{o.current={resolve:C,reject:m};let P=1e3*60*5;setTimeout(()=>{let b=new Pe("mfa_timeout","Timed out waiting for MFA code");r.current?.reject(b),m(b)},P)});return await e(y)}return await e()},s=4,c=null;for(let u=0;u<s;u++)try{c=await l(u),r.current?.resolve(void 0);break}catch(y){if(y.type==="missing_or_invalid_mfa")a=!0;else throw r.current?.resolve(void 0),y}if(c===null){let u=new Pe("mfa_verification_max_attempts_reached","Max MFA verification attempts reached");throw r.current?.reject(u),u}return c}import{jsx as K0}from"react/jsx-runtime";var z0=function(e){return()=>`id-${e++}`}(0);function V0(e){return typeof e.event=="string"&&/^privy:.+/.test(e.event)}function Gt(e){return e.error!==void 0}var St=new Da,xl=new Map,$0=(e,t)=>typeof t=="bigint"?t.toString():t,j0=(e,t)=>`${e}${JSON.stringify(t,$0)}`;function Ht(e,t,o){let r=o.contentWindow;if(!r)throw new Error("iframe not initialized");let n=j0(e,t);if(e==="privy:wallet:create"){let a=xl.get(n);if(a)return a}let i=new Promise((a,l)=>{let s=z0();St.enqueue(s,{resolve:a,reject:l}),r.postMessage({id:s,event:e,data:t},"*")}).finally(()=>{xl.delete(n)});return xl.set(n,i),i}function q0(e){switch(e.event){case"privy:iframe:ready":let t=St.dequeue(e.event,e.id);return Gt(e)?t.reject(new Pe(e.error.type,e.error.message)):t.resolve(e.data);case"privy:wallet:create":let o=St.dequeue(e.event,e.id);return Gt(e)?o.reject(new Pe(e.error.type,e.error.message)):o.resolve(e.data);case"privy:wallet:connect":let r=St.dequeue(e.event,e.id);return Gt(e)?r.reject(new Pe(e.error.type,e.error.message)):r.resolve(e.data);case"privy:wallet:recover":let n=St.dequeue(e.event,e.id);return Gt(e)?n.reject(new Pe(e.error.type,e.error.message)):n.resolve(e.data);case"privy:wallet:rpc":let i=St.dequeue(e.event,e.id);return Gt(e)?i.reject(new Pe(e.error.type,e.error.message)):i.resolve(e.data);case"privy:wallet:set-recovery-password":let a=St.dequeue(e.event,e.id);return Gt(e)?a.reject(new Pe(e.error.type,e.error.message)):a.resolve(e.data);case"privy:mfa:verify":let l=St.dequeue(e.event,e.id);return Gt(e)?l.reject(new Pe(e.error.type,e.error.message)):l.resolve(e.data);case"privy:mfa:init-enrollment":{let s=St.dequeue(e.event,e.id);return Gt(e)?s.reject(new Pe(e.error.type,e.error.message)):s.resolve(e.data)}case"privy:mfa:submit-enrollment":{let s=St.dequeue(e.event,e.id);return Gt(e)?s.reject(new Pe(e.error.type,e.error.message)):s.resolve(e.data)}case"privy:mfa:unenroll":{let s=St.dequeue(e.event,e.id);return Gt(e)?s.reject(new Pe(e.error.type,e.error.message)):s.resolve(e.data)}default:console.warn("Unsupported wallet proxy method:",e)}}function sf(e){let t=G0(null),o=Zc();return H0(()=>{let r=t.current;if(!r)return;function n(c){c&&c.origin===e.origin&&V0(c.data)&&q0(c.data)}let i={create(c){return Ht("privy:wallet:create",c,r)},connect(c){return Ht("privy:wallet:connect",c,r)},recover(c){return tr(u=>Ht("privy:wallet:recover",{...c,...u},r),e.mfaMethods,e.mfaPromise,e.mfaSubmitPromise,o,!0)},rpc(c){return tr(u=>Ht("privy:wallet:rpc",{...c,...u},r),e.mfaMethods,e.mfaPromise,e.mfaSubmitPromise,o)},setRecoveryPassword(c){return tr(u=>Ht("privy:wallet:set-recovery-password",{...c,...u},r),e.mfaMethods,e.mfaPromise,e.mfaSubmitPromise,o)},verifyMfa(c){return tr(u=>Ht("privy:mfa:verify",{...c,...u},r),e.mfaMethods,e.mfaPromise,e.mfaSubmitPromise,o,!0)},initEnrollMfa(c){return tr(u=>Ht("privy:mfa:init-enrollment",{...c,...u},r),e.mfaMethods,e.mfaPromise,e.mfaSubmitPromise,o)},submitEnrollMfa(c){return Ht("privy:mfa:submit-enrollment",c,r)},unenrollMfa(c){return tr(u=>Ht("privy:mfa:unenroll",{...c,...u},r),e.mfaMethods,e.mfaPromise,e.mfaSubmitPromise,o,!0)}};window.addEventListener("message",n);let a=()=>e.onLoad(i),l=(...c)=>{console.warn("Privy iframe failed to load: ",...c),e.onLoadFailed()},s=new AbortController;return Cc(()=>Ht("privy:iframe:ready",{},r),{abortSignal:s.signal}).then(a,l),()=>{window.removeEventListener("message",n),s.abort()}},[t.current,e.mfaMethods]),K0("iframe",{ref:t,width:"0",height:"0",style:{display:"none",height:"0px",width:"0px"},src:si(e.origin,`/apps/${e.appId}/embedded-wallets`,{caid:e.clientAnalyticsId})})}var Ua=class{constructor(t,o){this.meta={action:t,phoneNumber:o}}async init(){if(!this.meta.action)throw new w("action required");if(!this.api)throw new w("Auth flow has no API instance");if(this.meta.action==="enroll"&&!this.meta.phoneNumber)throw new w("phone number must be set when initialzing authentication.");try{let t=tc();await this.api.post(t,{action:this.meta.action,phoneNumber:this.meta.phoneNumber})}catch(t){throw te(t)}}async authenticate(){if(!this.meta.action)throw new w("action required");if(!this.api)throw new w("Mfa flow has no API instance");if(!this.meta.smsCode)throw new w("sms code must be set prior to calling authenticate.");if(this.meta.action==="enroll"&&!this.meta.phoneNumber)throw new w("phone number must be set prior to calling authenticate.");try{let t=oc(),o=await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode});return vt(o)}catch(t){throw te(t)}}};import{jsx as No,jsxs as lf}from"react/jsx-runtime";var $n;function X0(e){return typeof e=="string"&&e.length===25}function Ie(){if(!$n){let e=Q.get(Bo);return Promise.resolve(e||null)}return $n.getAccessToken()}var cf,Sc=(e,t)=>cf(e,t),df,_c=(e,t)=>df(e,t),pf,kc=()=>pf(),eb=()=>{let t=new URLSearchParams(window.location.search).get("privy_token");if(!t)return;Q.put(Yr,t);let o=new URL(window.location.href);o.searchParams.delete("privy_token"),window.history.pushState({},"",o)},tb=({config:e,...t})=>{if(!X0(t.appId))throw new w("Cannot initialize the Privy provider with an invalid Privy app ID");$n||($n=new nn({appId:t.appId,apiUrl:t.apiUrl||ri}));let o=Object.assign({},e);return t.createPrivyWalletOnLogin!==void 0&&o.embeddedWallets?.createOnLogin===void 0&&(o.embeddedWallets||(o.embeddedWallets={}),o.embeddedWallets.createOnLogin=t.createPrivyWalletOnLogin?"users-without-wallets":"off"),t.createPrivyWalletOnLogin!==void 0&&e?.embeddedWallets?.createOnLogin&&console.warn("Both `createPrivyWalletOnLogin` and `config.embeddedWallets.createOnLogin` are set. `createPrivyWalletOnLogin` is deprecated and should be removed."),No(ob,{...t,config:o,client:$n})},ob=e=>{let t=e.client,[o,r]=de(!1),[n,i]=de(!1),[a,l]=de(!1),[s,c]=de(null),[u,y]=de(!1),[C,m]=de([]),P=Vn(C),[b,x]=de(!1),[v,R]=de(null),[M,W]=de(!1),[I,A]=de({status:"disconnected",connectError:null,connector:null,connectRetry:E}),[L,D]=de(null),[B,U]=de(null),[_,Z]=de(null),[ne,he]=de({showWalletLoginFirst:!0,allowlistConfig:{errorTitle:null,errorDetail:null,errorCtaText:null,errorCtaLink:null},walletAuth:!0,emailAuth:!0,smsAuth:!1,googleOAuth:!1,twitterOAuth:!1,discordOAuth:!1,githubOAuth:!1,linkedinOAuth:!1,appleOAuth:!1,termsAndConditionsUrl:null,privacyPolicyUrl:null,embeddedWalletConfig:{createOnLogin:"off",requireUserPasswordOnCreate:!1},fiatOnRampEnabled:!1,captchaEnabled:!1,captchaSiteKey:""}),[N,De]=de(()=>{let p=af(e.config,e.createPrivyWalletOnLogin);return t.createAnalyticsEvent("sdk_initialize",p),Oa(ne,e.config)}),[st,pe]=de(!0),[ke,ee]=de({}),[ue,or]=de(null),[J,ao]=de(null),[Vt,rr]=de(!1),[zr,jn]=de(!1),nr=Vn(null),qn=Vn(null),oe=Vn(Jc);t.onStoreToken=p=>{p&&ae(oe,"accessToken","onAccessTokenGranted",p)},t.onDeleteToken=()=>{ae(oe,"accessToken","onAccessTokenRemoved")};let Ae=Vn(),Ba=Q0(p=>{let d=t.connectors?.walletsReady||!1;return a&&s?.linkedAccounts?.some(g=>g.type==="wallet"&&g.walletClientType==="privy")?d&&p?.some(g=>g?.walletClientType==="privy"):d},[a,s?.linkedAccounts,t?.connectors?.walletsReady]),se=p=>{R(p),setTimeout(()=>{r(!0)},15),t.createAnalyticsEvent("modal_open",{initialScreen:p})},Oo=p=>{N.embeddedWallets.createOnLogin!=="off"&&pe(!0),se(p)};zt(()=>{if(!_||!s){t.connectors?.removeEmbeddedWalletConnector();return}let p=s?.linkedAccounts.filter(d=>d.type==="wallet"&&d.walletClient==="privy");if(p&&p.length>0){let d=p[0].address;t.connectors?.addEmbeddedWalletConnector(_,d,N.defaultChain)}},[_,s]),zt(()=>{_&&J?.(_)},[_]),zt(()=>{(async()=>{if(!N.customAuth?.enabled)return;pe(!0);let{getCustomAccessToken:d,isLoading:f}=N.customAuth;if(!(!n||f))try{let g=await d();if(!g){await jr.logout();return}if(a)return;t.startAuthFlow(new ar(g));let{user:O,isNewUser:X}=await t.authenticate();O||await jr.logout(),c(O||null),x(X||!1),l(!0),jn(!0)}catch(g){console.warn(g),a&&await jr.logout()}})()},[N.customAuth?.enabled,N.customAuth?.getCustomAccessToken,N.customAuth?.isLoading,n,a]),zt(()=>{zr&&_&&s&&po(s,e.config?.embeddedWallets?.createOnLogin)&&(jn(!1),kl(s,sr).catch(console.error))},[zr&&_&&s]),zt(()=>{async function p(){let d=await t.getServerConfig();he(d);let f=Oa(d,e.config);De(f),d.customApiUrl&&t.updateApiUrl(d.customApiUrl);let g=J0();D(g),t.initializeConnectorManager(f.walletConnectCloudProjectId,f.rpcConfig,f.chains,f.defaultChain,g),t.connectors?.initialize();let O=Ga();eb();let X=await t.getAuthenticatedUser();e.config?.customAuth?.enabled||(l(!!X),X&&ae(oe,"login","onComplete",X,!1,!0,null),c(X)),O||be.setReadyToTrue(),O&&X&&y(!0),qe()}n||p()},[t,ue,n]),zt(()=>{let p=Oa(ne,e.config);De(p)},[e.config,ne]);let Ga=()=>{let p=new URLSearchParams(window.location.search),d=p.get("privy_oauth_code"),f=p.get("privy_oauth_state"),g=p.get("privy_oauth_provider");return d&&f&&g?(t.startAuthFlow(new co(g,d,f)),Oo("AWAITING_OAUTH_SCREEN"),!0):!1},Vr=async(p,d,f)=>{let g=await t.connectors?.createWalletConnector(p,d)||null;$t(g,d,f)};async function $t(p,d,f){if(!p)return A({status:"disconnected",connectError:new H("Unable to connect to wallet."),connector:null,connectRetry:E}),f?.(null);p instanceof Wt&&d&&p.resetConnection(d),A({connector:p,status:"connecting",connectError:null,connectRetry:()=>$t(p,d,f)});try{let g=await p.connect({showPrompt:!0});if(N.shouldSwitchChainOnConnect&&!N.chains.find(O=>O.id===Number(g?.chainId))&&!(g?.connectorType==="wallet_connect_v2"&&g?.walletClientType==="metamask")){A(O=>({...O,connector:p,status:"switching_to_supported_chain",connectError:null,connectRetry:E}));try{await g?.switchChain(N.defaultChain.id),g&&(g.chainId=lr(Go(N.defaultChain.id)))}catch{console.warn(`Unable to switch to default chain: ${N.defaultChain.id}`)}}return A(O=>({...O,status:"connected",connectError:null,connectRetry:E})),g&&!M&&ae(oe,"connectWallet","onSuccess",g),f?.(g)}catch(g){return g instanceof Ye?(console.warn(g.cause?g.cause:g.message),M||ae(oe,"connectWallet","onError",g.privyErrorCode||"generic_connect_wallet_error")):(console.warn(g),M||ae(oe,"connectWallet","onError","unknown_connect_wallet_error")),A(O=>({...O,status:"disconnected",connectError:g})),f?.(null)}}let Re=p=>{p!==null&&t.startAuthFlow(new Uo(p))},qe=()=>{let p=new URLSearchParams(window.location.search),d=p.get("privy_connector"),f=p.get("privy_wallet_client");if(!d||!f)return;if(f==="phantom"&&!kt()&&Oo("LOGIN_FAILED_SCREEN"),!t.connectors)throw new w("Connector not initialized");se("AWAITING_CONNECTION");let g=new URL(window.location.href);g.searchParams.delete("privy_connector"),g.searchParams.delete("privy_wallet_client"),window.history.pushState({},"",g),Vr(d,f,Re)};zt(()=>{n&&a&&s===null&&t.getAuthenticatedUser().then(c)},[n,a,s,t]);let Ke=()=>{if(!a)throw new w("User must be authenticated before linking a wallet.");y(!0),se("LINK_WALLET_SCREEN")},Sl=p=>{if(!a||!s)return!1;for(let d of s.linkedAccounts)if(d.type==="wallet"&&d.address===p.address)return!0;return!1},gt=async p=>{if(!t.connectors)throw new w("Connector not initialized");let d=t.connectors.findWalletConnector(p.connectorType,p.walletClientType)||null;A(f=>({...f,connector:d,status:"connected",connectError:null,connectRetry:E})),Re(p),Oo("AWAITING_CONNECTION")},$r=async(p,d)=>{Ae.current="siwe",await $t(p,d,Re)},_l=async(p,d)=>{if(!N.fiatOnRamp.enabled)throw new w("Fiat on-ramp is not enabled");if(!d||!d.provider||d.provider==="moonpay"){let{signedUrl:f,externalTransactionId:g}=await kp(t,p,d?.config??{},N.appearance.palette,N.fiatOnRamp.useSandbox);return{signedUrl:f,externalTransactionId:g}}else throw new w("Unsupported fund provider. Currently supported option is `moonpay`.")},Kn=()=>{m(p=>{let d=t.connectors?.wallets.map(f=>({...f,linked:Sl(f),loginOrLink:async()=>{if(!await f.isConnected())throw new w("Wallet is not connected");if(f.connectorType==="embedded"&&f.walletClientType==="privy")throw new w("Cannot link or login with embedded wallet");gt(f)},fund:async g=>{let{signedUrl:O,externalTransactionId:X}=await _l(f.address,g);ee({fiatOnRampPrompt:{signedUrl:O},fiatOnRampStatus:{externalTransactionId:X}}),se("FIAT_ON_RAMP_PROMPT_SCREEN")},unlink:async()=>{if(!a)throw new w("User is not authenticated.");if(f.connectorType==="embedded"&&f.walletClientType==="privy")throw new w("Cannot unlink an embedded wallet");let g=await t.unlinkWallet(f.address);c(g)}}))||[];return rr(Ba(d)),ci(p,d)?p:d})};zt(()=>{Kn()},[s?.linkedAccounts,a,n]),zt(()=>{if(n){if(!t.connectors)throw new w("Connector not initialized");Kn(),t.connectors.on("walletsUpdated",Kn)}},[n]);let mf=()=>{se(a?"CONNECT_ONLY_AUTHENTICATED_SCREEN":"CONNECT_ONLY_LANDING_SCREEN")};zt(()=>{if(!C[0])return;let p=C[0],d=P.current.find(g=>g.address===p.address),f=s?.linkedAccounts.find(g=>g.type==="wallet"&&g.address===p.address);if(!d&&f){let g=Object.assign({},s);g.wallet=f&&{address:f.address,chainType:f.chainType,chainId:f.chainId,walletClient:f.walletClient,walletClientType:f.walletClientType,connectorType:f.connectorType},c(g)}P.current=C},[C]);let kl=async(p,d)=>{if(ie(p))throw ae(oe,"createWallet","onError","embedded_wallet_already_exists"),new Error("Only one Privy wallet per user is currently allowed");let[g,O]=await Promise.all([be.initializeWalletProxy(d),Ie()]);if(!g&&e.config?.customAuth?.enabled)throw ae(oe,"createWallet","onError","unknown_embedded_wallet_error"),new Error("Failed to connect to wallet proxy");if(!g||!O||e.config?.embeddedWallets?.requireUserPasswordOnCreate)return new Promise((X,le)=>{pe(!0),ee({createWallet:{onSuccess:lt=>{ae(oe,"createWallet","onSuccess",lt),X(lt)},onFailure:lt=>{ae(oe,"createWallet","onError","unknown_embedded_wallet_error"),le(lt)},callAuthOnSuccessOnClose:!1}}),se("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")});{await g.create({accessToken:O});let X=await be.refreshUser(),le=ie(X);if(!le)throw ae(oe,"createWallet","onError","unknown_embedded_wallet_error"),new Error("Failed to create wallet");return ae(oe,"createWallet","onSuccess",le),le}},ff=p=>{if(!N.chains.map(d=>d.id).includes(p))throw new H(`Chain ID ${p} is not supported. It must be added to the config.supportedChains property of the PrivyProvider.`,"unsupported_chain_id")},Al=(p,d,f)=>new Promise(async(g,O)=>{if(!a||!s){O(new Error("User must be authenticated before signing with a Privy wallet"));return}let X=ie(s);if(!X){O(new Error("Must have a Privy wallet before signing"));return}pe(!0);let le=t.connectors?.findWalletConnector("embedded","privy")?.proxyProvider,ir=p.chainId?Number(p.chainId):le.chainId;ff(ir);let lt=Object.assign({},p,{chainId:ir}),qr=async()=>{let so=await Ie();if(!so||!_){O(new Error("Must have valid access token and Privy wallet to send transaction"));return}try{if(!await be.recoverEmbeddedWallet()){O(new Error("Unable to connect to wallet"));return}let Il=new Y0(wt(lt.chainId,N.chains,N.rpcConfig)),yf=await Br(X.address,lt,Il),gf=await ka(so,X.address,_,yf,Il);g(gf)}catch(Yn){O(Yn)}};if(N.embeddedWallets.noPromptOnSignature)d&&console.warn("uiOptions defined with `noPromptOnSignature` set to true in app config"),qr();else{let so={transactionRequest:lt,onSuccess:g,onFailure:O,uiOptions:d||{},fundWalletConfig:f},Yn={onCompleteNavigateTo:"EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN",onFailure:O};ee({connectWallet:Yn,sendTransaction:so}),se("EMBEDDED_WALLET_CONNECTING_SCREEN")}});function Rl(){return new Promise(async(p,d)=>{let f=await Ie();if(!f||!_)throw new Error("Must have valid access token to enroll in MFA");try{await _.verifyMfa({accessToken:f}),p()}catch(g){d(g)}})}let jr={ready:n,authenticated:a,user:s,walletConnectors:t.connectors||null,connectWallet:mf,linkWallet:Ke,linkEmail:()=>{if(!a)throw new w("User must be authenticated before linking an email address.");if(s?.email)throw new w("User already has an email linked to their account.");y(!0),se("LINK_EMAIL_SCREEN")},linkPhone:()=>{if(!a)throw new w("User must be authenticated before linking a phone number.");if(s?.phone)throw new w("User already has a phone number linked to their account.");y(!0),se("LINK_PHONE_SCREEN")},linkGoogle:async()=>{if(!a)throw new w("User must be authenticated before linking a Google account.");if(s?.google)throw new w("User already has a Google account linked to their account.");await be.initLoginWithOAuth("google")},linkTwitter:async()=>{if(!a)throw new w("User must be authenticated before linking a Twitter account.");if(s?.twitter)throw new w("User already has a Twitter account linked to their account.");await be.initLoginWithOAuth("twitter")},linkDiscord:async()=>{if(!a)throw new w("User must be authenticated before linking a Discord account.");if(s?.discord)throw new w("User already has a Discord account linked to their account.");await be.initLoginWithOAuth("discord")},linkGithub:async()=>{if(!a)throw new w("User must be authenticated before linking a GitHub account.");if(s?.github)throw new w("User already has a Github account linked to their account.");await be.initLoginWithOAuth("github")},linkTiktok:async()=>{if(!a)throw new w("User must be authenticated before linking a TikTok account.");if(s?.tiktok)throw new w("User already has a Tiktok account linked to their account.");await be.initLoginWithOAuth("tiktok")},linkLinkedIn:async()=>{if(!a)throw new w("User must be authenticated before linking a LinkedIn account.");if(s?.linkedin)throw new w("User already has a LinkedIn account linked to their account.");await be.initLoginWithOAuth("linkedin")},linkApple:async()=>{if(!a)throw new w("User must be authenticated before linking an Apple account.");await be.initLoginWithOAuth("apple")},login:async()=>{if(n||(await new Promise(p=>{or(()=>p)}),or(null)),a){console.warn("Attempted to log in, but user is already logged in. Use a `link` helper instead.");return}W(!0),Oo("LANDING")},logout:async()=>{await t.logout(),c(null),l(!1),R(null),ae(oe,"logout","onSuccess"),y(!1),r(!1),Q.del(Jr)},getAccessToken:()=>t.getAccessToken(),getEthereumProvider:()=>{if(!s||!s.wallet)return new re;let p=C.find(f=>s.wallet&&f.address===s.wallet.address),d=t.connectors?.walletConnectors.find(f=>f.wallets.find(g=>g.address===p?.address));return!p||!d?new re:d.proxyProvider},getEthersProvider:()=>{if(!s||!s.wallet)return new Tl(new Rt(new re));let p=C.find(f=>s.wallet&&f.address===s.wallet.address),d=t.connectors?.walletConnectors.find(f=>f.wallets.find(g=>g.address===p?.address));return!p||!d?new Tl(new Rt(new re)):new Tl(new Rt(d.proxyProvider))},getWeb3jsProvider:()=>{if(!s||!s.wallet)return new fo(new re);let p=C.find(f=>s.wallet&&f.address===s.wallet.address),d=t.connectors?.walletConnectors.find(f=>f.wallets.find(g=>g.address===p?.address));return!p||!d?new fo(new re):new fo(d.proxyProvider)},unlinkWallet:async p=>{let d=await t.unlinkWallet(p);return c(d),d},unlinkEmail:async p=>{let d=await t.unlinkEmail(p);return c(d),d},unlinkPhone:async p=>{let d=await t.unlinkPhone(p);return c(d),d},unlinkGoogle:async p=>{let d=await t.unlinkOAuth("google",p);return c(d),d},unlinkTwitter:async p=>{let d=await t.unlinkOAuth("twitter",p);return c(d),d},unlinkDiscord:async p=>{let d=await t.unlinkOAuth("discord",p);return c(d),d},unlinkGithub:async p=>{let d=await t.unlinkOAuth("github",p);return c(d),d},unlinkTiktok:async p=>{let d=await t.unlinkOAuth("tiktok",p);return c(d),d},unlinkLinkedIn:async p=>{let d=await t.unlinkOAuth("linkedin",p);return c(d),d},unlinkApple:async p=>{let d=await t.unlinkOAuth("apple",p);return c(d),d},setActiveWallet:async p=>{let d=C.find(g=>Fa(g.address)===Fa(p)),f=s?.linkedAccounts.find(g=>g.type==="wallet"&&Fa(g.address)===Fa(p));if(!d||!await d.isConnected())U(p),Ke();else if(!d.linked)d.loginOrLink();else{let g=Object.assign({},s);g.wallet=f&&{address:f.address,chainType:f.chainType,chainId:f.chainId,walletClient:f.walletClient,walletClientType:f.walletClientType,connectorType:f.connectorType},c(g)}},forkSession:()=>t.forkSession(),createWallet:async()=>{if(!a||!s)throw ae(oe,"createWallet","onError","must_be_authenticated"),new Error("User must be authenticated before creating a Privy wallet");return kl(s,15e3)},setWalletPassword:()=>new Promise(async(p,d)=>{if(!a||!s){d(new Error("User must be authenticated before adding password to Privy wallet"));return}let f=ie(s);if(!f||!_){d(new Error("Must have a Privy wallet to add a password"));return}if(f.recoveryMethod==="user-passcode"){d(new Error("Cannot set password. Embedded wallet already has a password."));return}await Rl(),pe(!0);let g={onSuccess:p,onFailure:d,callAuthOnSuccessOnClose:!1},O={onCompleteNavigateTo:"EMBEDDED_WALLET_PASSWORD_UPDATE_SPLASH_SCREEN",onFailure:d};ee({setWalletPassword:g,connectWallet:O}),se("EMBEDDED_WALLET_CONNECTING_SCREEN")}),signMessage:(p,d)=>new Promise(async(f,g)=>{if(!a||!s){g(new Error("User must be authenticated before signing with a Privy wallet"));return}let O=ie(s);if(!O){g(new Error("Must have a Privy wallet before signing"));return}if(typeof p!="string"||p.length<1){g(new Error("Message must be a non-empty string"));return}pe(!0);let X=async()=>{if(!a)throw new Error("User must be authenticated before signing with a Privy wallet");let le=await Ie();if(!_||!le)throw new Error("Unable to connect to wallet");if(!await be.recoverEmbeddedWallet())throw new Error("Unable to connect to wallet");t.createAnalyticsEvent("embedded_wallet_sign_message_started",{walletAddress:O.address});let{response:lt}=await _.rpc({accessToken:le,address:O.address,request:{method:"personal_sign",params:[p,O.address]}}),qr=lt.data;return t.createAnalyticsEvent("embedded_wallet_sign_message_completed",{walletAddress:O.address}),qr};if(N.embeddedWallets.noPromptOnSignature){d&&console.warn("uiOptions defined with `noPromptOnSignature` set to true in app config");try{let le=await X();f(le)}catch(le){g(le??new Ue("Unable to sign message"))}}else{let lt={message:p,confirmAndSignMessage:X,onSuccess:so=>{f(so)},onFailure:so=>{g(so)},uiOptions:d||{}},qr={onCompleteNavigateTo:"EMBEDDED_WALLET_SIGN_REQUEST_SCREEN",onFailure:g};ee({signMessage:lt,connectWallet:qr}),se("EMBEDDED_WALLET_CONNECTING_SCREEN")}}),sendTransaction:async(p,d,f)=>{let O=await(await Al(p,d,f)).wait();return Ra(O)},exportWallet:()=>new Promise(async(p,d)=>{if(!a||!s){d(new Error("User must be authenticated before exporting their Privy wallet"));return}let f=ie(s);if(!f){d(new Error("Must have a Privy wallet before exporting"));return}pe(!0);let g={onCompleteNavigateTo:"EMBEDDED_WALLET_KEY_EXPORT_SCREEN",onFailure:d},O=await Ie();if(!O||!_){d(new Error("Must have valid access token to enroll in MFA"));return}if(!_){d(new Error("Must have a Privy wallet before exporting"));return}try{try{await _.connect({accessToken:O,address:f.address}),await _.verifyMfa({accessToken:O})}catch(le){if(Vo(le)&&f.recoveryMethod==="privy")await _.recover({accessToken:O,address:f.address});else throw le}}catch(le){d(le);return}let X={appId:e.appId,origin:t.apiUrl,onSuccess:p,onFailure:d};ee({keyExport:X,connectWallet:g}),se("EMBEDDED_WALLET_CONNECTING_SCREEN")}),promptMfa:Rl,async init(p){let d;switch(p){case"sms":d=new Ua("verify");break;case"totp":return;default:throw new Error(`Unsupported MFA method: ${p}`)}t.startMfaFlow(d),await d.init()},async submit(p,d){switch(p){case"totp":case"sms":nr.current?.resolve({mfaMethod:p,mfaCode:d}),await new Promise((f,g)=>{qn.current={resolve:f,reject:g}});break;default:throw nr.current?.reject(new w("Unsupported MFA method")),new w(`Unsupported MFA method: ${p}`)}},cancel(){nr.current?.reject(new w("MFA canceled"))},async initEnrollmentWithSms(p){let d=await Ie();if(!d||!_)throw new Error("Must have valid access token to enroll in MFA");await _.initEnrollMfa({method:"sms",accessToken:d,phoneNumber:p.phoneNumber})},enrollInMfa(p){return new Promise((d,f)=>{if(!p){be.closePrivyModal(),d();return}N.mfa.noPromptOnMfaRequired&&console.warn("[Privy Warning] Triggering the 'showMfaEnrollmentModal' function when 'noPromptOnMfaRequired' is set to true is unexpected. If this is intentional, ensure that you are building custom UIs for MFA verification."),ee({mfaEnrollmentFlow:{mfaMethods:N.mfa.methods,onSuccess:d,onFailure:f}}),se("MFA_ENROLLMENT_FLOW_SCREEN")})},async initEnrollmentWithTotp(){let p=await Ie();if(!p||!_)throw new Error("Must have valid access token to enroll in MFA");let d=await _.initEnrollMfa({method:"totp",accessToken:p});return{secret:d.secret,authUrl:d.authUrl}},async submitEnrollmentWithSms(p){let d=await Ie();if(!d||!_)throw new Error("Must have valid access token to enroll in MFA");await _.submitEnrollMfa({method:"sms",accessToken:d,phoneNumber:p.phoneNumber,code:p.mfaCode});let f=await t.getAuthenticatedUser();c(f)},async submitEnrollmentWithTotp(p){let d=await Ie();if(!d||!_)throw new Error("Must have valid access token to enroll in MFA");await _.submitEnrollMfa({method:"totp",accessToken:d,code:p.mfaCode});let f=await t.getAuthenticatedUser();c(f)},async unenroll(p){let d=await Ie();if(!d||!_)throw new Error("Must have valid access token to remove MFA");await _.unenrollMfa({method:p,accessToken:d});let f=await t.getAuthenticatedUser();c(f)},loginWithCode(p){return be.loginWithCode(p)},initLoginWithEmail(p,d){return be.initLoginWithEmail(p,d)},isModalOpen:o};cf=jr.signMessage,df=async(...p)=>{let d=await Al(...p);return N.embeddedWallets.waitForTransactionConfirmation&&await d.wait(),d};let be=(()=>({headless:!!e.config?.headless,isNewUserThisSession:b,isLinking:u,linkingHint:B,pendingTransaction:null,walletConnectionStatus:I,mipdStore:L,connectors:t.connectors?.walletConnectors??[],rpcConfig:N.rpcConfig,chains:N.chains,showFiatPrices:N.embeddedWallets.priceDisplay.primary!=="native-token",clientAnalyticsId:t.clientAnalyticsId,nativeTokenSymbolForChainId:p=>N.chains.find(d=>d.id===Number(p))?.nativeCurrency.symbol,initializeWalletProxy:async p=>{if(_)return _;let d=new Promise(O=>{ao(()=>X=>O(X))}),f=new Promise(O=>setTimeout(()=>O(null),p)),g=await Promise.race([d,f]);return ao(null),g},getAuthFlow:()=>t.authFlow,getAuthMeta:()=>t.authFlow?.meta,closePrivyModal:(p={shouldCallAuthOnSuccess:!0})=>{let d=n&&a&&s;p.shouldCallAuthOnSuccess&&d?(ae(oe,"login","onComplete",s,b,!1,Ae.current??null),e.onSuccess?.(s,b)):M&&ae(oe,"login","onError","exited_auth_flow"),U(null),W(!1),y(!1),x(!1),r(!1),setTimeout(()=>{t.authFlow=void 0},200),t.createAnalyticsEvent("modal_closed")},connectWallet:$t,initLoginWithWallet:$r,loginWithWallet:async()=>{if(!n)throw new Kr;if(!(t.authFlow instanceof Uo))throw new w("Must initialize SIWE flow first.");let p,d;if(a)p=await t.link();else try{({user:p,isNewUser:d}=await t.authenticate())}catch(f){throw ae(oe,"login","onError",f.privyErrorCode||"generic_connect_wallet_error"),f}c(p||s||null),x(d||!1),l(!0)},initLoginWithOAuth:async p=>{t.startAuthFlow(new co(p));let d=await t.authFlow.getAuthorizationUrl();d&&d.url&&window.location.assign(d.url)},loginWithOAuth:async p=>{if(!(t.authFlow instanceof co))throw new w("Must initialize OAuth flow before calling loginWithOAuth");let d,f;if(a)d=await t.link();else try{({user:d,isNewUser:f}=await t.authenticate()),Ae.current=p}catch(g){throw ae(oe,"login","onError",g.privyErrorCode||"unknown_auth_error"),g}c(d),x(f||!1),l(!0)},initLoginWithEmail:async(p,d)=>{let f=new Do(p,d);t.startAuthFlow(f);try{Ae.current="email",await f.sendCodeEmail()}catch(g){throw ae(oe,"login","onError",g.privyErrorCode||"unknown_auth_error"),g}},initLoginWithSms:async(p,d)=>{let f=new Fo(p,d);t.startAuthFlow(f);try{Ae.current="sms",await f.sendSmsCode()}catch(g){throw ae(oe,"login","onError",g.privyErrorCode||"unknown_auth_error"),g}},resendEmailCode:async()=>{await t.authFlow?.sendCodeEmail()},resendSmsCode:async()=>{await t.authFlow?.sendSmsCode()},loginWithCode:async p=>{if(!n)throw new Kr;if(t.authFlow instanceof Do)t.authFlow.meta.emailCode=p.trim();else if(t.authFlow instanceof Fo)t.authFlow.meta.smsCode=p.trim();else throw new w("Must initialize a passwordless code flow first");let d,f;a?d=await t.link():{user:d,isNewUser:f}=await t.authenticate(),c(d||s||null),x(f||!1),l(!0)},refreshUser:async()=>{let p=await t.getAuthenticatedUser();return c(p),p},walletProxy:_,createAnalyticsEvent:(p,d,f)=>t.createAnalyticsEvent(p,d,f),getUsdTokenPrice:p=>t.getUsdTokenPrice(p),recoverEmbeddedWallet:async()=>new Promise(async(p,d)=>{let f=s?.linkedAccounts.find(O=>O.type==="wallet"&&O.walletClientType==="privy"),g=await Ie();if(!g||!_||!f){d(new Error("Must have valid access token and Privy wallet to recover wallet"));return}pe(!0);try{await _.connect({accessToken:g,address:f.address}),p(!0)}catch(O){Vo(O)&&f.recoveryMethod==="privy"?(t.createAnalyticsEvent("embedded_wallet_pinless_recovery_started",{walletAddress:f.address}),(await _.recover({address:f.address,accessToken:g})).address||d(new Error("Unable to recover wallet")),t.createAnalyticsEvent("embedded_wallet_recovery_completed",{walletAddress:f.address}),p(!0)):Vo(O)?(ee({recoverWallet:{privyWallet:f,onFailure:d,onSuccess:()=>p(!0)}}),se("EMBEDDED_WALLET_RECOVERY_SCREEN")):d(O)}}),getFiatOnRampConfig:_l,setReadyToTrue:()=>{i(!0),ue?.()},updateWallets:()=>Kn()}))();pf=be.recoverEmbeddedWallet;let hf=Z0(()=>({wallets:C,ready:Vt}),[C,Vt]);return No(ye.Provider,{value:jr,children:No(os.Provider,{value:oe,children:No(hl.Provider,{value:hf,children:lf(Hp,{...N,children:[e.children,lf(ls.Provider,{value:be,children:[No(Fm,{theme:{...N.appearance.palette||{}}}),No(Lc,{appConfig:N,data:ke,setModalData:ee,setInitialScreen:R,initialScreen:v,authenticated:a,children:No(zm,{open:o})}),st&&ne.id?No(sf,{appId:e.appId,clientAnalyticsId:t.clientAnalyticsId,origin:t.apiUrl,mfaMethods:s?.mfaMethods,mfaPromise:nr,mfaSubmitPromise:qn,onLoad:Z,onLoadFailed:()=>null}):null]})]})})})})};import{useContext as rb}from"react";function nb(e){let{login:t}=rb(ye);return dt("login",e),{login:t}}import{useContext as ib}from"react";function ab(e){let{logout:t}=ib(ye);return dt("logout",e),{logout:t}}import{useCallback as uf}from"react";var sb=()=>{let e=Ut(),{initLoginWithEmail:t,loginWithCode:o}=z(),r=uf(async({email:i})=>{if(!i)throw new Error("Email required to send OTP code");if(e.status==="disabled")return t(i);let a=await e.waitForResult();return t(i,a)},[t,e]),n=uf(async({code:i})=>{if(e.enabled&&e.status!=="success")throw new xn(e.error,null,"captcha_failure");return o(i)},[o,e.status]);return{sendCode:r,loginWithCode:n}};import{useContext as lb}from"react";function cb(e){let{connectWallet:t}=lb(ye);return dt("connectWallet",e),{connectWallet:t}}import{useContext as db}from"react";function pb(e){let{createWallet:t}=db(ye);return dt("createWallet",e),{createWallet:t}}import{useContext as ub}from"react";var mb=()=>{let{isModalOpen:e}=ub(ye);return{isOpen:e}};import{useContext as fb}from"react";function hb(e){let{getAccessToken:t}=fb(ye);return dt("accessToken",e),{getAccessToken:t}}export{Rt as AsExternalProvider,Tn as Captcha,on as ConnectorManager,nn as PrivyClient,tb as PrivyProvider,re as PrivyProxyProvider,zn as SUPPORTED_CHAINS,za as VERSION,$e as WalletConnector,Ps as errorIndicatesMaxMfaRetries,Pr as errorIndicatesMfaTimeout,xr as errorIndicatesMfaVerificationFailed,Ie as getAccessToken,cb as useConnectWallet,pb as useCreateWallet,nb as useLogin,sb as useLoginWithEmail,ab as useLogout,Or as useMfa,Wn as useMfaEnrollment,mb as useModalStatus,z as usePrivy,rs as useRegisterMfaListener,hb as useToken,Gn as useWallets};