@privy-io/react-auth 1.45.2-beta-20231026190443 → 1.45.2

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 +225 -200
  2. package/dist/index.js +220 -195
  3. package/package.json +1 -1
package/dist/esm/index.js CHANGED
@@ -1,4 +1,4 @@
1
- var Ou=(e,t,o)=>{if(!t.has(e))throw TypeError("Cannot "+o)};var vs=(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)};var ws=(e,t,o)=>(Ou(e,t,"access private method"),o);import{getAddress as ki}from"@ethersproject/address";import{StaticJsonRpcProvider as Uv,Web3Provider as ds}from"@ethersproject/providers";import{useEffect as At,useMemo as Fv,useRef as ps,useState as te}from"react";import{FetchError as Du}from"ofetch";var tt=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}]`:""}`}},zo=class extends tt{constructor(o,r,n,i,a){super(n,i,a);this.type=o;this.status=r}},g=class extends tt{constructor(o,r,n){super(o,r,n);this.type="client_error"}},nn=class extends g{constructor(){super("Request timed out",void 0,"client_request_timeout")}};var B=class extends tt{constructor(o,r,n){super(o,r,n);this.type="connector_error"}},Q=e=>{if(e instanceof tt)return e;if(!(e instanceof Du))return De(e);if(!e.response)return new zo("api_error",null,e.message,e);let{type:t,message:o,error:r,code:n}=e.data;return new zo(t||"ApiError",e.response.status,o||r,e,n)},De=e=>e instanceof tt?e:e instanceof Error?new g(e.message,e):new g(`Internal error: ${e}`);var Tr=class extends g{constructor(){super("Method called before `ready`. Ensure you wait until `ready` is true before calling.")}},Oe=class extends g{constructor(t="Embedded wallet error",o){super(t,o,"unknown_embedded_wallet_error")}},an=class extends g{constructor(t="User must be authenticated"){super(t,void 0,"must_be_authenticated")}};var sn=()=>"/api/v1/sessions",Cs=()=>"/api/v1/sessions/logout",bs=()=>"/api/v1/sessions/fork",ln=()=>"/api/v1/sessions/fork/recover",Es=()=>"/api/v1/siwe/init",xs=()=>"/api/v1/siwe/authenticate",Ts=()=>"/api/v1/siwe/link",Ps=()=>"/api/v1/passwordless/init",_s=()=>"/api/v1/passwordless/authenticate",Ss=()=>"/api/v1/passwordless/link",As=()=>"/api/v1/passwordless_sms/init",ks=()=>"/api/v1/passwordless_sms/authenticate",Rs=()=>"/api/v1/passwordless_sms/link",Is=()=>"/api/v1/oauth/init",Ws=()=>"/api/v1/oauth/authenticate",Ns=()=>"/api/v1/oauth/link",Ms=()=>"/api/v1/siwe/unlink",Ls=()=>"/api/v1/passwordless/unlink",Os=()=>"/api/v1/passwordless_sms/unlink",Ds=()=>"/api/v1/oauth/unlink",Us=()=>"/api/v1/analytics_events",Fs=()=>"/api/v1/plugins/moonpay_on_ramp/sign",Bs=()=>"/api/v1/custom_jwt_account/authenticate",Hs=()=>"/api/v1/mfa/passwordless_sms/init",Gs=()=>"/api/v1/mfa/passwordless_sms/authenticate";var $o=class{constructor(t){this.meta={token:t}}async authenticate(){if(!this.api)throw new g("Auth flow has no API instance");try{let t=Bs(),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 Q(t)}}async link(){throw new Error("Unimplemented")}};var bo=class{constructor(t,o){this.meta={email:t,captchaToken:o}}async authenticate(){if(!this.api)throw new g("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new g("Email and email code must be set prior to calling authenticate.");try{let t=_s(),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 Q(t)}}async link(){if(!this.api)throw new g("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new g("Email and email code must be set prior to calling authenticate.");try{let t=Ss();return await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode})}catch(t){throw Q(t)}}async sendCodeEmail(t,o){if(!this.api)throw new g("Auth flow has no API instance");if(t&&(this.meta.email=t),o&&(this.meta.captchaToken=o),!this.meta.email)throw new g("Email must be set when initialzing authentication.");try{let r=Ps();return await this.api.post(r,{email:this.meta.email,token:this.meta.captchaToken})}catch(r){throw Q(r)}}};var Kt=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 g("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new g("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling authenticate.");if(this.meta.authorizationCode==="undefined")throw new g("User denied confirmation during OAuth flow");try{let t=Ws(),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=Q(t);throw o.privyErrorCode?new g(o.message||"Invalid code during OAuth flow.",void 0,o.privyErrorCode):o.message==="User denied confirmation during OAuth flow"?new g("Invalid code during oauth flow.",void 0,"oauth_user_denied"):new g("Invalid code during OAuth flow.",void 0,"unknown_auth_error")}}async link(){if(!this.api)throw new g("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new g("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling link.");if(this.meta.authorizationCode==="undefined")throw new g("User denied confirmation during OAuth flow");try{let t=Ns();return await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode})}catch(t){throw Q(t)}}async getAuthorizationUrl(){if(!this.api)throw new g("Auth flow has no API instance");if(!this.meta.provider)throw new g("Provider must be set when initialzing OAuth authentication.");try{let t=Is();return await this.api.post(t,{provider:this.meta.provider,redirect_to:window.location.href},{baseURL:this.api?.fallbackApiUrl})}catch(t){throw Q(t)}}};var qe=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 Eo=class{constructor(t){this.createSiweMessage=(t,o,r,n,i,a,c)=>`${r} wants you to sign in with your Ethereum account:
1
+ var Bu=(e,t,o)=>{if(!t.has(e))throw TypeError("Cannot "+o)};var Es=(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)};var xs=(e,t,o)=>(Bu(e,t,"access private method"),o);import{getAddress as Mi}from"@ethersproject/address";import{StaticJsonRpcProvider as zv,Web3Provider as fs}from"@ethersproject/providers";import{useEffect as At,useMemo as $v,useRef as hs,useState as te}from"react";import{FetchError as Hu}from"ofetch";var ot=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}]`:""}`}},Vo=class extends ot{constructor(o,r,n,i,a){super(n,i,a);this.type=o;this.status=r}},v=class extends ot{constructor(o,r,n){super(o,r,n);this.type="client_error"}},ln=class extends v{constructor(){super("Request timed out",void 0,"client_request_timeout")}};var B=class extends ot{constructor(o,r,n){super(o,r,n);this.type="connector_error"}},Q=e=>{if(e instanceof ot)return e;if(!(e instanceof Hu))return Fe(e);if(!e.response)return new Vo("api_error",null,e.message,e);let{type:t,message:o,error:r,code:n}=e.data;return new Vo(t||"ApiError",e.response.status,o||r,e,n)},Fe=e=>e instanceof ot?e:e instanceof Error?new v(e.message,e):new v(`Internal error: ${e}`);var Sr=class extends v{constructor(){super("Method called before `ready`. Ensure you wait until `ready` is true before calling.")}},Ue=class extends v{constructor(t="Embedded wallet error",o){super(t,o,"unknown_embedded_wallet_error")}},cn=class extends v{constructor(t="User must be authenticated"){super(t,void 0,"must_be_authenticated")}};var dn=()=>"/api/v1/sessions",Ts=()=>"/api/v1/sessions/logout",Ps=()=>"/api/v1/sessions/fork",pn=()=>"/api/v1/sessions/fork/recover",_s=()=>"/api/v1/siwe/init",Ss=()=>"/api/v1/siwe/authenticate",As=()=>"/api/v1/siwe/link",ks=()=>"/api/v1/passwordless/init",Rs=()=>"/api/v1/passwordless/authenticate",Is=()=>"/api/v1/passwordless/link",Ws=()=>"/api/v1/passwordless_sms/init",Ns=()=>"/api/v1/passwordless_sms/authenticate",Ms=()=>"/api/v1/passwordless_sms/link",Ls=()=>"/api/v1/oauth/init",Os=()=>"/api/v1/oauth/authenticate",Ds=()=>"/api/v1/oauth/link",Us=()=>"/api/v1/siwe/unlink",Fs=()=>"/api/v1/passwordless/unlink",Bs=()=>"/api/v1/passwordless_sms/unlink",Hs=()=>"/api/v1/oauth/unlink",Gs=()=>"/api/v1/analytics_events",zs=()=>"/api/v1/plugins/moonpay_on_ramp/sign",$s=()=>"/api/v1/custom_jwt_account/authenticate",Vs=()=>"/api/v1/mfa/passwordless_sms/init",qs=()=>"/api/v1/mfa/passwordless_sms/authenticate";var qo=class{constructor(t){this.meta={token:t}}async authenticate(){if(!this.api)throw new v("Auth flow has no API instance");try{let t=$s(),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 Q(t)}}async link(){throw new Error("Unimplemented")}};var Eo=class{constructor(t,o){this.meta={email:t,captchaToken:o}}async authenticate(){if(!this.api)throw new v("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new v("Email and email code must be set prior to calling authenticate.");try{let t=Rs(),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 Q(t)}}async link(){if(!this.api)throw new v("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new v("Email and email code must be set prior to calling authenticate.");try{let t=Is();return await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode})}catch(t){throw Q(t)}}async sendCodeEmail(t,o){if(!this.api)throw new v("Auth flow has no API instance");if(t&&(this.meta.email=t),o&&(this.meta.captchaToken=o),!this.meta.email)throw new v("Email must be set when initialzing authentication.");try{let r=ks();return await this.api.post(r,{email:this.meta.email,token:this.meta.captchaToken})}catch(r){throw Q(r)}}};var Yt=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 v("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new v("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling authenticate.");if(this.meta.authorizationCode==="undefined")throw new v("User denied confirmation during OAuth flow");try{let t=Os(),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=Q(t);throw o.privyErrorCode?new v(o.message||"Invalid code during OAuth flow.",void 0,o.privyErrorCode):o.message==="User denied confirmation during OAuth flow"?new v("Invalid code during oauth flow.",void 0,"oauth_user_denied"):new v("Invalid code during OAuth flow.",void 0,"unknown_auth_error")}}async link(){if(!this.api)throw new v("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new v("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling link.");if(this.meta.authorizationCode==="undefined")throw new v("User denied confirmation during OAuth flow");try{let t=Ds();return await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode})}catch(t){throw Q(t)}}async getAuthorizationUrl(){if(!this.api)throw new v("Auth flow has no API instance");if(!this.meta.provider)throw new v("Provider must be set when initialzing OAuth authentication.");try{let t=Ls();return await this.api.post(t,{provider:this.meta.provider,redirect_to:window.location.href},{baseURL:this.api?.fallbackApiUrl})}catch(t){throw Q(t)}}};var Ke=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 xo=class{constructor(t){this.createSiweMessage=(t,o,r,n,i,a,c)=>`${r} wants you to sign in with your Ethereum account:
2
2
  ${o}
3
3
 
4
4
  ${c}
@@ -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 qe(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 g("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign(),r=await this.api.post(xs(),{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 Q(t)}}async link(){if(!this.api)throw new g("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign();return await this.api.post(Ts(),{message:t,signature:o,chainId:this.wallet.chainId,walletClientType:this.wallet.walletClientType,connectorType:this.wallet.connectorType})}catch(t){throw Q(t)}}async sign(){if(!this.api)throw new g("Auth flow has no API instance");if(await this.buildSiweMessage(),!this.preparedMessage)throw new g("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 g("Auth flow has no API instance");let t=this.wallet.address;return(await this.api.post(Es(),{address:t})).nonce}async buildSiweMessage(){if(!this.api)throw new g("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.",c=new Date().toISOString();return this.createSiweMessage(t,o,n,i,c,r,a)}};var xo=class{constructor(t,o){this.meta={phoneNumber:t,captchaToken:o}}async authenticate(){if(!this.api)throw new g("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new g("phone number and sms code must be set prior to calling authenticate.");try{let t=ks(),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 Q(t)}}async link(){if(!this.api)throw new g("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new g("phone number and sms code must be set prior to calling authenticate.");try{let t=Rs();return await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode})}catch(t){throw Q(t)}}async sendSmsCode(t,o){if(!this.api)throw new g("Auth flow has no API instance");if(t&&(this.meta.phoneNumber=t),o&&(this.meta.captchaToken=o),!this.meta.phoneNumber)throw new g("phone nNumber must be set when initialzing authentication.");try{let r=As();return await this.api.post(r,{phoneNumber:this.meta.phoneNumber,token:this.meta.captchaToken})}catch(r){throw Q(r)}}};import{v4 as Tm}from"uuid";function Ue(e){return new Date(e*1e3)}function Uu(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:Ue(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:Ue(o.verified_at)};t.push(i);break;case"phone":let a={number:o.phoneNumber,type:o.type,verifiedAt:Ue(o.verified_at)};t.push(a);break;case"google_oauth":let c={subject:o.subject,email:o.email,name:o.name,type:o.type,verifiedAt:Ue(o.verified_at)};t.push(c);break;case"twitter_oauth":let s={subject:o.subject,username:o.username,name:o.name,type:o.type,verifiedAt:Ue(o.verified_at)};t.push(s);break;case"discord_oauth":let l={subject:o.subject,username:o.username,email:o.email,type:o.type,verifiedAt:Ue(o.verified_at)};t.push(l);break;case"github_oauth":let y={subject:o.subject,username:o.username,name:o.name,email:o.email,type:o.type,verifiedAt:Ue(o.verified_at)};t.push(y);break;case"tiktok_oauth":let m={subject:o.subject,username:o.username,type:o.type,verifiedAt:Ue(o.verified_at)};t.push(m);break;case"linkedin_oauth":let v={subject:o.subject,name:o.name,email:o.email,type:o.type,verifiedAt:Ue(o.verified_at)};t.push(v);break;case"apple_oauth":let h={subject:o.subject,email:o.email,type:o.type,verifiedAt:Ue(o.verified_at)};t.push(h);break;case"custom_auth":t.push({type:o.type,customUserId:o.custom_user_id,verifiedAt:Ue(o.verified_at)});break;default:console.warn(`Unrecognized account type: ${r}. Please consider upgrading the Privy SDK.`)}}return t}function pt(e,t){return e.sort((o,r)=>r.verifiedAt.getTime()-o.verifiedAt.getTime()),e.find(o=>o.type===t)}var oe=e=>e?.linkedAccounts.find(t=>t.type==="wallet"&&t.walletClientType==="privy")||null,Fu=e=>e.linkedAccounts.filter(t=>t.type==="wallet"),Yt=(e,t)=>t==="all-users"&&!oe(e)||t==="users-without-wallets"&&!Fu(e)?.length;function ot(e){if(!e)return null;let t=Uu(e.linked_accounts),o=pt(t,"wallet"),r=pt(t,"email"),n=pt(t,"phone"),i=pt(t,"google_oauth"),a=pt(t,"twitter_oauth"),c=pt(t,"discord_oauth"),s=pt(t,"github_oauth"),l=pt(t,"tiktok_oauth"),y=pt(t,"linkedin_oauth"),m=pt(t,"apple_oauth"),v=e.mfa_methods.map(({type:w,verified_at:_})=>({type:w,verifiedAt:Ue(_)}));return{id:e.id,createdAt:Ue(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:c&&{subject:c.subject,username:c.username,email:c.email},github:s&&{subject:s.subject,username:s.username,name:s.name,email:s.email},tiktok:l&&{subject:l.subject,username:l.username},linkedin:y&&{subject:y.subject,name:y.name},apple:m&&{subject:m.subject,email:m.email},mfaMethods:v.map(w=>w.type)}}import{getAddress as Sl}from"@ethersproject/address";import wm from"eventemitter3";var zs="1.45.2-beta-20231026190443";var cn="4df5e2316331463a9130964bd6078dfa",$s="fe9c30fc-3bc5-4064-91e2-6ab5887f8f4d",Vs="34357d3c125c2bcf2ce2bc3309d98715",qs="0x4AAAAAAAJFhr_rDU7HKpyw",dn="https://auth.privy.io",js=2e4,Fe=1400,Ks=2500,Mi=zs;var qo="privy:token",Li="privy-token",pn="privy:refresh_token",Oi="privy-refresh-token",Ys="privy-session",Pr="privy:session_transfer_token",Hu="privy:wallet",_r="privy:caid",un=e=>`${Hu}:${e}`,Di="privy:connectors",Ui="privy:connections";var Sr=12e4,ut=1,Fi="0x1",jo=3e4,Js="https://api.moonpay.com/v1",Qs="https://api.moonpay.com/v1",Zs="pk_live_hirbpu0cVcLHrjktC9l7fbc9ctjv0SL",Xs="pk_test_fqWjXZMSFwloh7orvJsRfjiUHXJqFzI";var Bi=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)}},Hi=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 Gu(){return typeof window<"u"&&window.localStorage?new Hi:new Bi}var $=Gu();import{isPossiblePhoneNumber as zu}from"libphonenumber-js/min";var mn=()=>{let e=window;if(!e.ethereum)return!1;if(Ar(window.ethereum,!0))return!0;if(e.ethereum.providers){for(let t of e.ethereum.providers)if(Ar(t,!0))return!0}return!1},kr=()=>{let e=window;if(!e.ethereum)return!1;if(Ar(window.ethereum,!1))return!0;if(e.ethereum.providers){for(let t of e.ethereum.providers)if(Ar(t,!1))return!0}return!!window.ethereum.isZerion},Ar=(e,t)=>{if(!e.isMetaMask)return!1;if(e.isMetaMask&&!t)return!0;if(e.isBraveWallet&&!e._events&&!e._state||e.isApexWallet||e.isAvalanche||e.isBitKeep||e.isBlockWallet||e.isKuCoinWallet||e.isMathWallet||e.isOkxWallet||e.isOKExWallet||e.isOneInchIOSWallet||e.isOneInchAndroidWallet||e.isOpera||e.isPhantom||e.isPortal||e.isRabby||e.isRainbow||e.isTokenPocket||e.isTokenary||e.isZerion)return!1;if(e.providers){for(let o of e.providers)if(!Ar(o))return!1}return!0},je=()=>!!("phantom"in window&&window?.phantom?.ethereum?.isPhantom),fn=()=>{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.isCoinbaseWallet)return!0}return!1};var el=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,}))$/),tl=e=>zu(String(e),"US"),ol=(e,t)=>{let o=e.slice(0),r=[];for(;o.length;)r.push(o.splice(0,t));return r},Jt=(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}`},Gi=e=>new Promise(t=>setTimeout(t,e)),rl=(e,t={})=>{let o=t.delayMs||150,r=t.maxAttempts||270;return new Promise(async(n,i)=>{let a=!1,c=0;for(;!a&&c<r;){if(t.abortSignal?.aborted)return;e().then(()=>{a=!0,n()},(...s)=>{a=!0,i(...s)}),c+=1,await Gi(o)}a||i(new Error("Exceeded max attempts before resolving function"))})},hn=(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 zi=e=>e.replace(/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g,""),To=e=>typeof e=="string"?e:"0x"+e.toString(16);async function nl(e=3e3){let t=!1,o=window;return new Promise(r=>{o.ethereum?n():(window.addEventListener("ethereum#initialized",n,{once:!0}),setTimeout(()=>{n()},e));function n(){if(t)return;t=!0,window.removeEventListener("ethereum#initialized",n);let i=[];mn()&&i.push("metamask"),je()&&i.push("phantom"),o.ethereum&&o.ethereum.isBraveWallet&&i.push("brave"),r(i)}})}function Ko(e){return`eip155:${String(Number(e))}`}var rt=(e,t,o)=>{let r=Number(e),n=t.find(a=>a.id===r);if(!n)throw new B(`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]+"/"+cn:n.rpcUrls.blast?.http[0]?i=n.rpcUrls.blast.http[0]+"/"+$s:i=n.rpcUrls.default?.http[0],!i)throw new B(`No RPC url found for ${e}`);return i},il=(e,t)=>{let o=Number(e),r=t.find(n=>n.id===o);if(!r)throw new B(`Unsupported chainId ${e}`,4901);return r.blockExplorers?.default.url};import Xu from"@coinbase/wallet-sdk";import{jsx as al,jsxs as $u}from"react/jsx-runtime";var mt=({style:e,...t})=>$u("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:[al("rect",{width:"1024",height:"1024",fill:"#0052FF",rx:100,ry:100}),al("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 yt}from"@ethersproject/address";import{Web3Provider as ul}from"@ethersproject/providers";import{default as Qu}from"eventemitter3";import{StaticJsonRpcProvider as ll}from"@ethersproject/providers";import Ju from"eventemitter3";var Vu=["eth_sign","eth_populateTransactionRequest","eth_signTransaction","personal_sign","eth_signTypedData_v4"],sl=e=>Vu.includes(e);import{ErrorCode as qu}from"@ethersproject/logger";var Yo=class extends B{constructor(){super("Wallet timeout");this.type="wallet_error"}},Jo=class extends B{constructor(){super("User rejected connection");this.type="wallet_error"}},ft=e=>{if(e instanceof B)return e;if(e?.code&&e?.reason){let t=new Ce(e);return e.code===qu.ACTION_REJECTED&&(t.details=xe.E4001_USER_REJECTED_REQUEST),t}return e?.code?new Ce(e):new B("Unknown connector error",e)},nt=class extends tt{constructor(o,r,n){super(o);this.type="provider_error";this.code=r,this.data=n}},Ce=class extends nt{constructor(o){let r=o;super(r.message,r.code,r.data);let n=Object.values(xe).find(i=>i.eipCode===r.code);this.details=n||xe.UNKNOWN_ERROR,r.code===-32002&&(r.message?.includes("already pending for origin")?r.message?.includes("wallet_requestPermissions")?this.details=xe.E32002_CONNECTION_ALREADY_PENDING:this.details=xe.E32002_REQUEST_ALREADY_PENDING:r.message?.includes("Already processing")&&r.message.includes("eth_requestAccounts")&&(this.details=xe.E32002_WALLET_LOCKED))}},ju={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}},Ku={E32002_CONNECTION_ALREADY_PENDING:{eipCode:-32002,message:"Connection request already pending",detail:"Don\u2019t see your wallet modal? Check your other browser windows.",retryable:!1},E32002_REQUEST_ALREADY_PENDING:{eipCode:-32002,message:"Resource request already pending",detail:"Don\u2019t see your wallet modal? Check your other browser windows.",retryable:!1},E32002_WALLET_LOCKED:{eipCode:-32002,message:"Wallet might be locked",detail:"Don\u2019t see your wallet modal? Check your other browser windows.",retryable:!1},E4001_USER_REJECTED_REQUEST:{eipCode:4001,message:"Signature rejected",detail:"Please try signing again.",retryable:!0}},Yu={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}},xe={UNKNOWN_ERROR:{eipCode:0,message:"Unknown error",detail:"Unknown error",retryable:!0},...Yu,...Ku},It={...ju,...xe};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 Yo,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||Sr,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 B(`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 ft(o)})}},Qt=class extends Error{constructor(o,r,n){super(o);this.code=r,this.data=n}},yn=class extends Ju{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 ll(rt(a,this.chains,n)),this.rpcTimeoutDuration=Qo(n,"privy")}async handleSendTransaction(o){if(!o.params||!Array.isArray(o.params))throw new Qt(`Invalid params for ${o.method}`,4200);let r=o.params[0];if(!await Wt()||!this.address)throw new Qt("Disconnected",4900);return(await dl(r)).hash}handleSwitchEthereumChain(o){if(!o.params||!Array.isArray(o.params))throw new Qt(`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 Qt(`Invalid params for ${o.method}`,4200);this.chainId=Number(r),this.provider=new ll(rt(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 cl(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:To(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 To(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(sl(o.method)){let r=await Wt();if(await pl(),!r||!this.address)throw new Qt("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 Qt("Disconnected",4900)}}else return this.provider.send(o.method,o.params)}async connect(){let o=await Wt();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}}},ht=class extends re{constructor(o){super(o,o.rpcTimeoutDuration)}},Zt=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 Zu=(e,t)=>{switch(t){case"coinbase_wallet":return e.message.includes("addEthereumChain");default:return e.code===4902||e.message?.includes("4902")}},Be=class extends Qu{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=Ko(o),this.walletClientType==="privy"&&$.put(un(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=Qo(i,o),this.connected=!1,this.initialized=!1}buildConnectedWallet(o,r){let n=async()=>!!this.wallets.find(i=>yt(i.address)===yt(o));return{address:yt(o),chainId:r,switchChain:async i=>{if(!n)throw new B("Wallet is not currently connected.");let a=this.wallets.find(m=>yt(m.address)===yt(o))?.chainId;if(!a)throw new B("Unable to determine current chainId.");let c,s;if(typeof i=="number"?(c=`0x${i.toString(16)}`,s=i):(c=i,s=Number(i)),a===Ko(c))return;let l=this.chains.find(m=>m.id===s);if(!l)throw new B(`Unsupported chainId: ${i}`);let y=async()=>{await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[{chainId:c}]})};try{return await y()}catch(m){if(Zu(m,this.walletClientType))return await this.proxyProvider.request({method:"wallet_addEthereumChain",params:[{chainId:c,chainName:l.name,nativeCurrency:l.nativeCurrency,rpcUrls:[l.rpcUrls.public?.http[0]??""],blockExplorerUrls:[l.blockExplorers?.default.url??""]}]}),y();throw this.walletClientType==="rainbow"&&m.message?.includes("wallet_switchEthereumChain")?new B(`Rainbow does not support the chainId ${r}`):m}},connectedAt:Date.now(),walletClientType:this.walletClientType,connectorType:this.connectorType,isConnected:n,getEthereumProvider:async()=>{if(!await n())throw new B("Wallet is not currently connected.");return this.proxyProvider},getEthersProvider:async()=>{if(!await n())throw new B("Wallet is not currently connected.");return new ul(new ht(this.proxyProvider))},getWeb3jsProvider:async()=>{if(!await n())throw new B("Wallet is not currently connected.");return new Zt(this.proxyProvider)},sign:async i=>{if(!await n())throw new B("Wallet is not currently connected.");return await this.sign(i)},disconnect:()=>{this.disconnect()}}}async syncAccounts(o){let r=o;if(r===void 0){let l=await this.proxyProvider.request({method:"eth_accounts"});Array.isArray(l)&&(r=l)}if(!r||!Array.isArray(r)||r.length<=0||!r[0])return;let n=r[0],i=yt(n),a=[],c;if(this.walletClientType==="privy"){let l=$.get(un(i));this.chains.find(y=>y.id===Number(l))||($.del(un(i)),l=null),c=l||`0x${this.defaultChain.id.toString(16)}`;try{await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[{chainId:c}]})}catch{console.warn(`Unable to switch embedded wallet to chain ID ${c} on initialization`)}}else try{let l=await this.proxyProvider.request({method:"eth_chainId"});if(typeof l=="string")c=l;else if(typeof l=="number")c=`0x${l.toString(16)}`;else throw new Error("Invalid chainId returned from provider")}catch(l){console.warn(`Failed to get chainId from provider, defaulting to ${Fi}`,l),c=Fi}let s=Ko(c);a.find(l=>yt(l.address)===i)||a.push(this.buildConnectedWallet(yt(n),s)),gn(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=>yt(n)===yt(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 ul(new ht(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 em=e=>{let t=`https://mainnet.infura.io/v3/${cn}`,o=1;return e.makeWeb3Provider(t,o)},vn,wn=class extends Be{constructor(o,r,n){super("coinbase_wallet",o,r,n);this.connectorType="coinbase_wallet";this.proxyProvider=new re(void 0,this.rpcTimeoutDuration),this.subscribeListeners(),vn||(vn=new Xu({appName:"Privy",darkMode:!1,headlessMode:!1,enableMobileWalletLink:!0})),this.proxyProvider.setWalletProvider(em(vn)),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(){vn.disconnect()}get walletBranding(){return{name:"Coinbase Wallet",icon:mt}}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new B("Unable to retrieve accounts");this.connected=!0,await this.syncAccounts([o[0]])}catch(o){throw ft(o)}}};import{jsx as ml}from"react/jsx-runtime";var Zo=({...e})=>ml("svg",{width:"15",height:"15",viewBox:"0 0 15 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e,children:ml("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 Cn=class extends Be{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:[To(o?.chainId||"0x1")]}),this.getConnectedWallet()):null}get walletBranding(){return{name:"Privy Wallet",icon:Zo}}disconnect(){this.connected=!1}async promptConnection(){}};import{getAddress as PC}from"@ethersproject/address";import{Web3Provider as SC}from"@ethersproject/providers";import{isMobile as om}from"react-device-detect";import{jsx as He,jsxs as tm}from"react/jsx-runtime";var be=({style:e,...t})=>tm("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:[He("style",{children:".s1{stroke-linecap:round;stroke-linejoin:round}.s2{fill:#e4761b;stroke:#e4761b}.s3{fill:#f6851b;stroke:#f6851b}"}),He("path",{fill:"#e2761b",stroke:"#e2761b",className:"s1",d:"m274.1 35.5-99.5 73.9L193 65.8z"}),He("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"}),He("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"}),He("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"}),He("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"}),He("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"}),He("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"}),He("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"}),He("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"}),He("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"}),He("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"}),He("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 bn=class extends Be{constructor(o,r,n){super("metamask",o,r,n);this.connectorType="injected";this.proxyProvider=new re(void 0,this.rpcTimeoutDuration),this.subscribeListeners();let i=window,a=i.ethereum,c=i.ethereum.providers||[];for(let s of c)if(s.isMetaMask){a=s;break}this.proxyProvider.setWalletProvider(a),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:"MetaMask",icon:be}}disconnect(){console.warn("Metamask does not support programmatic disconnect.")}async promptConnection(){try{!om&&mn()&&await this.proxyProvider.request({method:"wallet_requestPermissions",params:[{eth_accounts:{}}]});let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new B("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw ft(o)}}};import{jsx as fl,jsxs as rm}from"react/jsx-runtime";var Ke=({style:e,...t})=>rm("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:[fl("rect",{width:"108",height:"108",rx:"23",fill:"#AB9FF2"}),fl("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 En=class extends Be{constructor(o,r,n){super("phantom",o,r,n);this.connectorType="injected";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:Ke}}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 B("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw ft(o)}}};import{EthereumProvider as fm,OPTIONAL_EVENTS as hm,OPTIONAL_METHODS as ym}from"@walletconnect/ethereum-provider";import qi from"@walletconnect/qrcode-modal";import{isAndroid as gm,isMobile as vm}from"react-device-detect";import{createContext as im,useContext as am,useEffect as $i,useRef as sm,useState as yl}from"react";import{jsx as nm}from"react/jsx-runtime";function hl(e){return nm("link",{rel:"prefetch",href:e.src})}var E=()=>{throw new Error("You need to wrap your application with the <PrivyProvider> initialized with your app id.")};import{jsx as lm,jsxs as cm}from"react/jsx-runtime";var it="LANDING",gl=im({ready:!1,app:null,currentScreen:it,lastScreen:it,navigate:E,navigateBack:E,resetNavigation:E,setModalData:E,outerClickRef:null}),vl=e=>{let t=e.appConfig,o=e.authenticated,r=e.visible,[n,i]=yl(e.initialScreen||it),[a,c]=yl(e.initialScreen||it);$i(()=>{o||i(it)},[o]),$i(()=>{r||(c(it),i(it))},[r]),$i(()=>{e.initialScreen&&n===it&&(i(e.initialScreen),c(e.initialScreen))},[e.initialScreen]);let s=e.initialScreen&&n===it?e.initialScreen:n,l=sm(null),y={ready:!!t?.id,app:t,data:e.data,setModalData:e.setModalData,currentScreen:s,lastScreen:a,navigate:m=>{c(n),i(m)},navigateBack:()=>{i(a)},resetNavigation:()=>{e.setInitialScreen(null),c(it),i(it)},outerClickRef:l};return cm(gl.Provider,{value:y,children:[(typeof t?.appearance?.logo=="string"||t?.appearance?.logo?.type==="img")&&lm(hl,{src:typeof t.appearance.logo=="string"?t.appearance.logo:t.appearance.logo.props.src}),e.children]})},b=()=>am(gl);import{jsx as Xo,jsxs as dm}from"react/jsx-runtime";var er=({style:e,...t})=>{let{app:o}=b();return dm("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:[Xo("rect",{width:"28",height:"28",rx:"3",fill:o?.appearance.palette.colorScheme==="dark"?"#3396ff":"#141414"}),Xo("g",{clipPath:"url(#clip0_1765_9946)",children:Xo("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"})}),Xo("defs",{children:Xo("clipPath",{id:"clip0_1765_9946",children:Xo("rect",{width:"20",height:"12.2531",fill:"white",transform:"translate(4 8)"})})})]})};import{isAndroid as Cl,isDesktop as pm,isMobileOnly as um}from"react-device-detect";var xn=e=>{let t;try{t=new URL(e).hostname}catch{return}for(let[o,r]of Object.entries(bl))if(t.includes(r.hostname))return{walletClientType:o,entry:r}};var bl={metamask:{id:"c57ca95b47569778a828d19178114f4db188b89b763c899ba0be274e97267d96",displayName:"MetaMask",image_id:"5195e9db-94d8-4579-6f11-ef553be95100",hostname:"metamask.io",mobile:{native:"metamask:"}},trust:{id:"4622a2b2d6af1c9844944291e5e7351a6aa24cd7b23099efac1b2fd875da31a0",displayName:"Trust",image_id:"0528ee7e-16d1-4089-21e3-bbfb41933100",hostname:"trustwallet.com",mobile:{universal:"https://link.trustwallet.com"}},safe:{id:"225affb176778569276e484e1b92637ad061b01e13a048b35a9d280c3b58970f",displayName:"Safe",image_id:"3913df81-63c2-4413-d60b-8ff83cbed500",hostname:"safe.global",mobile:{universal:"https://app.safe.global/"}},rainbow:{id:"1ae92b26df02f0abca6304df07debccd18262fdf5fe82daa81593582dac9a369",displayName:"Rainbow",image_id:"7a33d7f1-3d12-4b5c-f3ee-5cd83cb1b500",hostname:"rainbow.me",mobile:{universal:"https://rnbwapp.com"}},uniswap:{id:"c03dfee351b6fcc421b4494ea33b9d4b92a984f87aa76d1663bb28705e95034a",displayName:"Uniswap",image_id:"bff9cf1f-df19-42ce-f62a-87f04df13c00",hostname:"uniswap.org",mobile:{universal:"https://uniswap.org/app"}},zerion:{id:"ecc4036f814562b41a5268adc86270fba1365471402006302e70169465b7ac18",displayName:"Zerion",image_id:"f216b371-96cf-409a-9d88-296392b85800",hostname:"zerion.io",mobile:{universal:"https://wallet.zerion.io"}},argent:{id:"bc949c5d968ae81310268bf9193f9c9fb7bb4e1283e1284af8f2bd4992535fd6",displayName:"Argent",image_id:"215158d2-614b-49c9-410f-77aa661c3900",hostname:"www.argent.xyz",mobile:{universal:"https://www.argent.xyz/app"}},spot:{id:"74f8092562bd79675e276d8b2062a83601a4106d30202f2d509195e30e19673d",displayName:"Spot",image_id:"1bf33a89-b049-4a1c-d1f6-4dd7419ee400",hostname:"www.spot-wallet.com",mobile:{universal:"https://spot.so"}},omni:{id:"afbd95522f4041c71dd4f1a065f971fd32372865b416f95a0b1db759ae33f2a7",displayName:"Omni",image_id:"2cd67b4c-282b-4809-e7c0-a88cd5116f00",hostname:"omni.app",mobile:{universal:"https://links.omni.app"}},cryptocom:{id:"f2436c67184f158d1beda5df53298ee84abfc367581e4505134b5bcf5f46697d",displayName:"Crypto.com",image_id:"7c5ff577-a68d-49c5-02cd-3d83637b0b00",hostname:"crypto.com",mobile:{universal:"https://wallet.crypto.com"}},blockchain:{id:"84b43e8ddfcd18e5fcb5d21e7277733f9cccef76f7d92c836d0e481db0c70c04",displayName:"Blockchain",image_id:"6f913b80-86c0-46f9-61ca-cc90a1805900",hostname:"www.blockchain.com",mobile:{universal:"https://www.blockchain.com"}},safepal:{id:"0b415a746fb9ee99cce155c2ceca0c6f6061b1dbca2d722b3ba16381d0562150",displayName:"SafePal",image_id:"252753e7-b783-4e03-7f77-d39864530900",hostname:"safepal.com",mobile:{universal:"https://link.safepal.io"}},bitkeep:{id:"38f5d18bd8522c244bdd70cb4a68e0e718865155811c043f052fb9f1c51de662",displayName:"BitKeep",image_id:"3f7075d0-4ab7-4db5-404d-3e4c05e6fe00",hostname:"bitkeep.com",mobile:{universal:"https://bkapp.vip"}},zengo:{id:"9414d5a85c8f4eabc1b5b15ebe0cd399e1a2a9d35643ab0ad22a6e4a32f596f0",displayName:"ZenGo",image_id:"cfc07342-23ea-4f3f-f071-ec9d2cd86b00",hostname:"zengo.com",mobile:{universal:"https://get.zengo.com/"}},"1inch":{id:"c286eebc742a537cd1d6818363e9dc53b21759a1e8e5d9b263d0c03ec7703576",displayName:"1inch",image_id:"52b1da3c-9e72-40ae-5dac-6142addd9c00",hostname:"wallet.1inch.io",mobile:{universal:"https://wallet.1inch.io/wc/"}},binance:{id:"8a0ee50d1f22f6651afcae7eb4253e52a3310b90af5daef78a8c4929a9bb99d4",displayName:"Binance",image_id:"ebac7b39-688c-41e3-7912-a4fefba74600",hostname:"www.binance.com",mobile:{universal:"https://app.binance.com/cedefi"}},exodus:{id:"e9ff15be73584489ca4a66f64d32c4537711797e30b6660dbcb71ea72a42b1f4",displayName:"Exodus",image_id:"4c16cad4-cac9-4643-6726-c696efaf5200",hostname:"exodus.com",mobile:{universal:"https://exodus.com/m"}},mew_wallet:{id:"f5b4eeb6015d66be3f5940a895cbaa49ef3439e518cd771270e6b553b48f31d2",displayName:"MEW wallet",image_id:"e2024511-2c9b-46d7-3111-52df3d241700",hostname:"mewwallet.com",mobile:{universal:"https://mewwallet.com"}},alphawallet:{id:"138f51c8d00ac7b9ac9d8dc75344d096a7dfe370a568aa167eabc0a21830ed98",displayName:"AlphaWallet",image_id:"5b1cddfb-056e-4e78-029a-54de5d70c500",hostname:"alphawallet.com",mobile:{universal:"https://aw.app"}},keyring_pro:{id:"47bb07617af518642f3413a201ec5859faa63acb1dd175ca95085d35d38afb83",displayName:"KEYRING PRO",image_id:"dda0f0fb-34e8-4a57-dcea-b008e7d1ff00",hostname:"keyring.app",mobile:{universal:"https://keyring.app/"}},mathwallet:{id:"7674bb4e353bf52886768a3ddc2a4562ce2f4191c80831291218ebd90f5f5e26",displayName:"MathWallet",image_id:"26a8f588-3231-4411-60ce-5bb6b805a700",hostname:"mathwallet.org",mobile:{universal:"https://www.mathwallet.org"}},unstoppable:{id:"8308656f4548bb81b3508afe355cfbb7f0cb6253d1cc7f998080601f838ecee3",displayName:"Unstoppable",image_id:"4725dda0-4471-4d0f-7adf-6bbe8b929c00",hostname:"unstoppabledomains.com",mobile:{universal:"https://unstoppabledomains.com/mobile"}},obvious:{id:"031f0187049b7f96c6f039d1c9c8138ff7a17fd75d38b34350c7182232cc29aa",displayName:"Obvious",image_id:"61abe2ca-b06d-4a8b-de3e-8326f523e900",hostname:"obvious.technology",mobile:{universal:"https://wallet.obvious.technology"}},ambire:{id:"2c81da3add65899baeac53758a07e652eea46dbb5195b8074772c62a77bbf568",displayName:"Ambire",image_id:"c39b3a16-1a38-4588-f089-cb7aeb584700",hostname:"www.ambire.com",mobile:{universal:"https://mobile.ambire.com"}},internet_money_wallet:{id:"dd43441a6368ec9046540c46c5fdc58f79926d17ce61a176444568ca7c970dcd",displayName:"Internet Money Wallet",image_id:"204b2240-5ce4-4996-6ec4-f06a22726900",hostname:"internetmoney.io",mobile:{universal:"https://internetmoney.io"}},coin98:{id:"2a3c89040ac3b723a1972a33a125b1db11e258a6975d3a61252cd64e6ea5ea01",displayName:"Coin98",image_id:"fc460647-ea95-447a-99f0-1bff8fa4be00",hostname:"coin98.com",mobile:{universal:"https://coin98.services"}},abc_wallet:{id:"b956da9052132e3dabdcd78feb596d5194c99b7345d8c4bd7a47cabdcb69a25f",displayName:"ABC Wallet",image_id:"f9854c79-14ba-4987-42e1-4a82abbf5700",hostname:"myabcwallet.io",mobile:{universal:"https://abcwalletconnect.page.link"}},arculus_wallet:{id:"0e4915107da5b3408b38e248f7a710f4529d54cd30e9d12ff0eb886d45c18e92",displayName:"Arculus Wallet",image_id:"f78dab27-7165-4a3d-fdb1-fcff06c0a700",hostname:"www.getarculus.com",mobile:{universal:"https://gw.arculus.co/app"}},haha:{id:"719bd888109f5e8dd23419b20e749900ce4d2fc6858cf588395f19c82fd036b3",displayName:"HaHa",image_id:"79285c9f-2630-451e-0680-c71b42fb7400",hostname:"www.haha.me",mobile:{universal:"https://haha.me"}},cling_wallet:{id:"942d0e22a7e6b520b0a03abcafc4dbe156a1fc151876e3c4a842f914277278ef",displayName:"Cling Wallet",image_id:"2d8006c3-852b-458a-d6b0-916c5ba76800",hostname:"clingon.io",mobile:{universal:"https://cling.carrieverse.com/apple-app-site-association"}},broearn:{id:"8ff6eccefefa7506339201bc33346f92a43118d6ff7d6e71d499d8187a1c56a2",displayName:"Broearn",image_id:"339b9e9d-e2a7-46eb-4ed3-272321257a00",hostname:"www.broearn.com",mobile:{universal:"https://www.broearn.com/link/wallet/"}},copiosa:{id:"07f99a5d9849bb049d74830012b286f8b238e72b0337933ef22b84947409db80",displayName:"Copiosa",image_id:"cae1be94-9f53-4eba-b915-f6e381d5a500",hostname:"copiosa.io",mobile:{universal:"https://copiosa.io/action/"}},burrito_wallet:{id:"8821748c25de9dbc4f72a691b25a6ddad9d7df12fa23333fd9c8b5fdc14cc819",displayName:"Burrito Wallet",image_id:"7eec7187-3f48-4fda-53bb-b0ad55749a00",hostname:"burritowallet.com",mobile:{universal:"https://burritowallet.com/wc?uri="}},enjin_wallet:{id:"bdc9433ffdaee55d31737d83b931caa1f17e30666f5b8e03eea794bac960eb4a",displayName:"Enjin Wallet",image_id:"add9626b-a5fa-4c12-178c-e5584e6dcd00",hostname:"enjin.io",mobile:{universal:"https://deeplink.wallet.enjin.io/"}},plasma_wallet:{id:"cbe13eb482c76f1fa401ff4c84d9acd0b8bc9af311ca0620a0b192fb28359b4e",displayName:"Plasma Wallet",image_id:"c268e78d-ffb0-4c8b-5cad-04c3add48500",hostname:"plasma-wallet.com",mobile:{universal:"https://plasma-wallet.com"}},avacus:{id:"94f785c0c8fb8c4f38cd9cd704416430bcaa2137f27e1468782d624bcd155a43",displayName:"Avacus",image_id:"a7106965-91cc-4a73-4688-c5c72ae0ed00",hostname:"avacus.cc",mobile:{universal:"https://avacus.app.link"}},bee:{id:"2cca8c1b0bea04ba37dee4017991d348cdb7b826804ab2bd31073254f345b715",displayName:"Bee",image_id:"f90bc33f-f085-40cf-7538-fae5ae84f900",hostname:"www.beewallet.app",mobile:{universal:"https://beewallet.app/wc"}},pitaka:{id:"14e5d957c6eb62d3ee8fc6239703ac2d537d7e3552154836ca0beef775f630bc",displayName:"Pitaka",image_id:"691c0716-5213-4b99-e837-079268313800",hostname:"pitaka.io",mobile:{universal:"https://app.pitaka.io"}},pltwallet:{id:"576c90ceaea34f29ff0104837cf2b2e23d201be43be1433feeb18d375430e1fd",displayName:"PLTwallet",image_id:"a5d9dd15-8cef-42de-8bed-09e01a8b0200",hostname:"pltwallet.io",mobile:{universal:"https://pltwallet.io/"}},minerva:{id:"49bb9d698dbdf2c3d4627d66f99dd9fe90bba1eec84b143f56c64a51473c60bd",displayName:"Minerva",image_id:"b57b2163-1bd8-4f6b-3311-470767e6d200",hostname:"minerva.digital",mobile:{universal:"https://minerva.digital"}},kryptogo:{id:"19418ecfd44963883e4d6abca1adeb2036f3b5ffb9bee0ec61f267a9641f878b",displayName:"KryptoGO",image_id:"3ccbd966-97e8-45a0-1ceb-6141a8978e00",hostname:"kryptogo.com",mobile:{universal:"https://kryptogo.page.link"}},prema:{id:"5b8e33346dfb2a532748c247876db8d596734da8977905a27b947ba1e2cf465b",displayName:"PREMA",image_id:"6487869b-1165-4f30-aa3a-115665be8300",hostname:"premanft.com",mobile:{universal:"https://premanft.com"}},slingshot:{id:"d23de318f0f56038c5edb730a083216ff0cce00c1514e619ab32231cc9ec484b",displayName:"Slingshot",image_id:"10c75467-6612-48ad-b97b-63985e922200",hostname:"slingshot.finance",mobile:{universal:"https://app.slingshot.finance"}},kriptonio:{id:"50df7da345f84e5a79aaf617df5167335a4b6751626df2e8a38f07029b3dde7b",displayName:"Kriptonio",image_id:"363fae03-882a-4d81-a721-6e6f6e9ac500",hostname:"kriptonio.com",mobile:{universal:"https://app.kriptonio.com/mobile"}},timeless:{id:"9751385960bca290c13b443155288f892f62ee920337eda8c5a8874135daaea8",displayName:"Timeless",image_id:"32e89601-0490-42fc-0cc4-8627d62a2000",hostname:"timelesswallet.xyz",mobile:{universal:"https://timelesswallet.xyz"}},secux:{id:"6464873279d46030c0b6b005b33da6be5ed57a752be3ef1f857dc10eaf8028aa",displayName:"SecuX",image_id:"98183be0-3125-45ee-a6b6-fbd47ebefd00",hostname:"secuxtech.com",mobile:{universal:"https://wsweb.secuxtech.com"}},bitizen:{id:"41f20106359ff63cf732adf1f7dc1a157176c9b02fd266b50da6dcc1e9b86071",displayName:"Bitizen",image_id:"75dd1471-77e9-4811-ce57-ec8fc980ec00",hostname:"bitizen.org",mobile:{universal:"https://bitizen.org/wallet"}},blocto:{id:"14e7176536cb3706e221daaa3cfd7b88b7da8c7dfb64d1d241044164802c6bdd",displayName:"Blocto",image_id:"374258d3-c749-4f37-7815-77e61f798c00",hostname:"blocto.io",mobile:{universal:"https://blocto.app"}},safemoon:{id:"a0e04f1086aac204d4ebdd5f985c12ed226cd0006323fd8143715f9324da58d1",displayName:"SafeMoon",image_id:"ea0140c7-787c-43a4-838f-d5ab6a342000",hostname:"safemoon.com",mobile:{universal:"https://safemoon.com/wc"}}},El=(e,t="md")=>`https://registry.walletconnect.com/v2/logo/${t}/${e}`;function Vi(e){return{name:e.displayName||"",universalLink:e.mobile.universal||"",deepLink:e.mobile.native||""}}function mm(e){let t="mobile";return Object.values(e).filter(o=>!!o[t].universal||!!o[t].native).map(o=>Vi(o))}function xl(){return mm(bl)}function Tl(e,t){let o=encodeURIComponent(e);return t.universalLink?`${t.universalLink}/wc?uri=${o}`:t.deepLink?`${t.deepLink}${t.deepLink.endsWith(":")?"//":"/"}wc?uri=${e}`:""}function Pl(e,t){return Cl?e:Tl(e,Vi(t))}var _l="WALLETCONNECT_DEEPLINK_CHOICE";function wl(e){let t=e.href.split("?")[0];$.put(_l,{...e,href:t})}var Rr=(e,t)=>{if(!e||pm){$.del(_l);return}if(Cl){wl({name:"Unknown",href:t||"wc:"});return}else if(um){let o=Tl(t||"wc:",Vi(e));wl({name:e?.displayName||"",href:o})}};var Ir=class extends Be{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),this.createProvider().then(c=>{if(this.provider=c,this.proxyProvider.setWalletProvider(c),this.subscribeListeners(),c.session){if(this.walletProvider.session?.peer.metadata.url){let s=xn(this.walletProvider.session?.peer.metadata.url);this.walletEntry=s?.entry,this.walletClientType=s?.walletClientType||"unknown",Rr(this.walletEntry)}this.connected=!0,this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}else this.emit("initialized"),this.initialized=!0})}async connect(o){return o.showPrompt&&await this.promptConnection(),this.getConnectedWallet()}async isConnected(){return this.walletProvider.connected}get walletBranding(){return this.walletEntry?{name:this.walletEntry.displayName,icon:this.walletClientType==="metamask"?be:El(this.walletEntry.image_id)}:{name:zi(this.walletProvider.session?.peer.metadata.name||"")||"WalletConnect",icon:this.walletProvider.session?.peer.metadata.icons?.[0]||er}}resetConnection(){this.walletProvider&&this.walletProvider.connected&&(this.walletProvider.signer.session=void 0,this.walletEntry=void 0,Rr(void 0),this.onDisconnect())}async promptConnection(){if(this.provider)return new Promise((o,r)=>{let n=()=>{r(new Jo)};this.onQrModalClosed=n,(async()=>{let a="",c=await Promise.race([this.walletProvider.enable(),this.proxyProvider.walletTimeout()]);if(c.length>0&&(a=c[0]),!a||a==="")throw new B("Unable to retrieve address");if(this.walletProvider.session?.peer.metadata.url){let s=xn(this.walletProvider.session?.peer.metadata.url);this.walletEntry=s?.entry,this.walletClientType=s?.walletClientType||"unknown",this.proxyProvider.rpcTimeoutDuration=Qo(this.rpcConfig,this.walletClientType)}this.connected=!0,await this.syncAccounts(c),o()})().catch(a=>{if(a){r(ft(a));return}r(new B("Unknown error during connection"))}).finally(()=>qi.close())})}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=rt(n.id,this.chains,this.rpcConfig);i&&(o[n.id]=i)}let r=await fm.init({projectId:this.walletConnectCloudProjectId,chains:[this.defaultChain.id],optionalChains:this.chains.map(n=>n.id),optionalEvents:hm,optionalMethods:ym,rpcMap:o,showQrModal:!1});return r.on("display_uri",n=>{if(gm)window.open(n,"_self");else if(vm&&this.walletEntry){Rr(this.walletEntry,n);let a=Pl(n,this.walletEntry);window.open(a,"_self","noopener,noreferrer")}else qi.open(n,()=>{this.onQrModalClosed&&this.onQrModalClosed()},{mobileLinks:xl().map(i=>i.name)})}),r.on("connect",()=>{if(qi.close(),r.session?.peer.metadata.url){let n=xn(r.session?.peer.metadata.url);this.walletEntry=n?.entry,this.walletClientType=n?.walletClientType||"unknown",Rr(this.walletEntry)}}),r}async enableProvider(){return this.walletProvider.connected?Promise.resolve(this.walletProvider.accounts):await this.walletProvider.enable()}};var ji=e=>{let t=localStorage.getItem("-walletlink:https://www.walletlink.org:Addresses");return t?!!e?.linkedAccounts.filter(r=>r.type=="wallet"&&r.address===Sl(t)).length:!1},Qo=(e,t)=>e.rpcTimeouts?e.rpcTimeouts[t]||Sr:Sr,Wr=class extends wm{constructor(o,r,n,i){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.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||($.get(Di)&&($.getKeys().forEach(o=>{o.startsWith("walletconnect")&&$.del(o)}),$.del(Di)),nl().then(o=>o.forEach(r=>{switch(r){case"metamask":this.createWalletConnector("injected","metamask");break;case"phantom":this.createWalletConnector("injected","phantom");break;case"unknown":default:break}})),(fn()||$.getKeys().find(o=>o.startsWith("-walletlink")))&&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")}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 yn(o,r,this.rpcConfig,this.chains,n.id),c=new Cn(a,this.chains,n,this.rpcConfig);this.addWalletConnector(c)}}removeEmbeddedWalletConnector(){let o=this.findWalletConnector("embedded","privy");if(o){let r=this.walletConnectors.indexOf(o);this.walletConnectors.splice(r,1),this.saveConnectionHistory(),this.emit("walletsUpdated")}}async createWalletConnector(o,r){let n=this.findWalletConnector(o,r);if(n)return n instanceof Ir&&n.resetConnection(),n;let a=(()=>{switch(o){case"injected":switch(r){case"phantom":return je()?new En(this.chains,this.defaultChain,this.rpcConfig):null;case"metamask":default:return kr()?new bn(this.chains,this.defaultChain,this.rpcConfig):null}case"coinbase_wallet":return new wn(this.chains,this.defaultChain,this.rpcConfig);case"wallet_connect_v2":return new Ir(this.walletConnectCloudProjectId,this.rpcConfig,this.chains,this.defaultChain)}})();return a&&this.addWalletConnector(a),a||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=$.get(Ui);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}));$.put(Ui,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=Sl(o),this.emit("walletsUpdated")}};function gn(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 Cm}from"ofetch";var bm=[sn(),ln()],Em=e=>{let t=new AbortController;return setTimeout(()=>t.abort(),e),t.signal},Tn=class{constructor(t,o,r){this.appId=t,this.clientAnalyticsId=o.clientAnalyticsId,this.sdkVersion=Mi,this.client=o,this.defaults=r,this.fallbackApiUrl=o.fallbackApiUrl,this.baseFetch=Cm.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 c=!bm.includes(n.toString());if(!a.has("authorization")&&c){let s=await this.client.getAccessToken();s!==null&&a.set("authorization",`Bearer ${s}`)}i.headers=a,i.signal||(i.signal=Em(this.defaults.timeout))},onRequestError:({error:n})=>{if(n instanceof DOMException&&n.name==="AbortError")throw new nn}})}async get(t,o){try{return await this.baseFetch(t,o)}catch(r){throw Q(r)}}async post(t,o,r){try{return await this.baseFetch(t,{method:"POST",...o?{body:o}:{},...r})}catch(n){throw Q(n)}}async delete(t,o){try{return await this.baseFetch(t,{method:"DELETE",...o})}catch(r){throw Q(r)}}};import Nr from"js-cookie";function Al(e){return e instanceof bo?"email":e instanceof xo?"sms":e instanceof Eo?"siwe":e instanceof $o?"custom_auth":e instanceof Kt?e.meta.provider:null}import*as kl from"jose";var gt=class{static parse(t){try{return new gt(t)}catch{return null}}constructor(t){this.value=t,this._decoded=kl.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 xm=30,Pn=class{constructor(){this.authenticateOnce=new qe(async t=>this._authenticate(t)),this.linkOnce=new qe(async t=>this._link(t)),this.refreshOnce=new qe(this._refresh.bind(this)),this.destroyOnce=new qe(this._destroy.bind(this)),this.forkSessionOnce=new qe(this._forkSession.bind(this))}get token(){try{let t=$.get(qo);return typeof t=="string"?new gt(t).value:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get refreshToken(){try{let t=$.get(pn);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get forkedToken(){try{let t=$.get(Pr);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get mightHaveServerCookies(){try{let t=Nr.get(Ys);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=gt.parse(this.token);return t!==null&&!t.isExpired(xm)}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=Al(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:ot(n),isNewUser:i}}catch(o){throw console.warn("Error authenticating session"),De(o)}}async _link(t){try{let o=await t.link();return ot(o)}catch(o){throw console.warn("Error linking account"),De(o)}}async _refresh(){if(!this.api)throw new g("Session has no API instance");if(!this.client)throw new g("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(sn(),a,{headers:i}),r&&this.clearForkedToken()}else if(r)n=await this.api.post(ln(),{refresh_token:r}),this.clearForkedToken();else return null;return this.storeToken(n.token),this.storeRefreshToken(n.refresh_token),ot(n.user)}catch(n){if(n instanceof zo&&n.privyErrorCode==="missing_or_invalid_token")return console.warn("Unable to refresh tokens - token is missing or no longer valid"),this.destroyLocalState(),null;throw De(n)}}async _destroy(){try{await this.api?.post(Cs(),{refresh_token:this.refreshToken})}catch{console.warn("Error destroying session")}this.destroyLocalState()}async _forkSession(){if(!this.api)throw new g("Session has no API instance");let t=this.refreshToken;try{let o=await this.api.post(bs(),{refresh_token:t});return this.storeToken(o.token),this.storeRefreshToken(o.refresh_token),o.new_session_refresh_token}catch(o){throw De(o)}}destroyLocalState(){this.storeToken(null),this.storeRefreshToken(null),this.clearForkedToken()}storeToken(t){if(typeof t=="string"){if($.put(qo,t),!this.client?.useServerCookies){let o=gt.parse(t)?.expiration;Nr.set(Li,t,{sameSite:"Strict",secure:!0,expires:o?new Date(o*1e3):void 0})}}else $.del(qo),Nr.remove(Li)}storeRefreshToken(t){typeof t=="string"?($.put(pn,t),this.client?.useServerCookies||Nr.set(Oi,t,{sameSite:"Strict",secure:!0,expires:30})):($.del(pn),Nr.remove(Oi))}clearForkedToken(){$.del(Pr)}};var Ki,_n,Rl,Mr=class{constructor(t){vs(this,_n);this.apiUrl=t.apiUrl||dn,this.fallbackApiUrl=this.apiUrl,this.useServerCookies=!1,this.timeout=t.timeout||js,this.appId=t.appId,this.clientAnalyticsId=ws(this,_n,Rl).call(this),Ki||(Ki=new Pn),this.session=Ki,this.api=this.generateApi(),this.session.client=this}initializeConnectorManager(t,o,r,n){this.connectors||(this.connectors=new Wr(t,o,r,n))}generateApi(){let t=new Tn(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 g("No auth flow in progress.");return this.session.authenticate(this.authFlow)}link(){if(!this.authFlow)throw new g("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(Ls(),{address:t});return ot(o)}catch(o){throw De(o)}}async unlinkPhone(t){try{let o=await this.api.post(Os(),{phoneNumber:t});return ot(o)}catch(o){throw De(o)}}async unlinkWallet(t){try{let o=await this.api.post(Ms(),{address:t});return ot(o)}catch(o){throw De(o)}}async unlinkOAuth(t,o){try{let r=await this.api.post(Ds(),{provider:t,subject:o});return ot(r)}catch(r){throw De(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(Us(),{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(Fs(),t)}catch(o){throw De(o)}}async getAuthenticatedUser(){return this.session.hasRefreshCredentials()||this.session.hasRecoveryCredentials()?this.session.refresh():null}async getAccessToken(t){return this.session.hasActiveToken()?gt.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,twitterOAuthOnMobileEnabled:t.twitter_oauth_on_mobile_enabled,createdAt:new Date(t.created_at*1e3),updatedAt:new Date(t.updated_at*1e3)}}catch(t){throw De(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()}};_n=new WeakSet,Rl=function(){if(typeof window>"u")return null;try{let o=$.get(_r);if(typeof o=="string"&&o.length>0)return o}catch{}let t=Tm();try{return $.put(_r,t),t}catch{return t}};import"wicg-inert";import{disableBodyScroll as iv,clearAllBodyScrollLocks as av}from"body-scroll-lock";import{useRef as sv,useCallback as lv}from"react";import{useEffect as Jp}from"react";import cv from"react-dom";import ss from"styled-components";import{createContext as Pm,useContext as _m}from"react";var Yi=Pm({isNewUserThisSession:!1,isLinking:!1,linkingHint:null,walletConnectionStatus:null,rpcConfig:{rpcUrls:{}},chains:[],clientAnalyticsId:null,nativeTokenSymbolForChainId:E,captchaData:{enabled:!1,ready:!1,execute:E,remove:E,token:void 0,error:void 0},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}),A=()=>_m(Yi);import{createContext as Sm,useContext as Am}from"react";var Te=Sm({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,initEnrollment:E,init:E,submitEnrollment:E,submit:E,sendTransaction:E,exportWallet:E,setWalletPassword:E}),V=()=>Am(Te);import ra from"styled-components";import eo,{css as Xi}from"styled-components";import Qi from"styled-components";import{Fragment as Rm,jsx as Ji,jsxs as Im}from"react/jsx-runtime";var Sn=({success:e,fail:t})=>Im(Rm,{children:[Ji(Po,{className:e?"success":t?"fail":""}),Ji(Zi,{className:e?"success":t?"fail":""})]}),Po=Qi.span`
12
+ - https://privy.io`;this.getNonceOnce=new Ke(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 v("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign(),r=await this.api.post(Ss(),{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 Q(t)}}async link(){if(!this.api)throw new v("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign();return await this.api.post(As(),{message:t,signature:o,chainId:this.wallet.chainId,walletClientType:this.wallet.walletClientType,connectorType:this.wallet.connectorType})}catch(t){throw Q(t)}}async sign(){if(!this.api)throw new v("Auth flow has no API instance");if(await this.buildSiweMessage(),!this.preparedMessage)throw new v("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 v("Auth flow has no API instance");let t=this.wallet.address;return(await this.api.post(_s(),{address:t})).nonce}async buildSiweMessage(){if(!this.api)throw new v("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.",c=new Date().toISOString();return this.createSiweMessage(t,o,n,i,c,r,a)}};var To=class{constructor(t,o){this.meta={phoneNumber:t,captchaToken:o}}async authenticate(){if(!this.api)throw new v("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new v("phone number and sms code must be set prior to calling authenticate.");try{let t=Ns(),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 Q(t)}}async link(){if(!this.api)throw new v("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new v("phone number and sms code must be set prior to calling authenticate.");try{let t=Ms();return await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode})}catch(t){throw Q(t)}}async sendSmsCode(t,o){if(!this.api)throw new v("Auth flow has no API instance");if(t&&(this.meta.phoneNumber=t),o&&(this.meta.captchaToken=o),!this.meta.phoneNumber)throw new v("phone nNumber must be set when initialzing authentication.");try{let r=Ws();return await this.api.post(r,{phoneNumber:this.meta.phoneNumber,token:this.meta.captchaToken})}catch(r){throw Q(r)}}};import{v4 as Am}from"uuid";function Be(e){return new Date(e*1e3)}function Gu(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:Be(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:Be(o.verified_at)};t.push(i);break;case"phone":let a={number:o.phoneNumber,type:o.type,verifiedAt:Be(o.verified_at)};t.push(a);break;case"google_oauth":let c={subject:o.subject,email:o.email,name:o.name,type:o.type,verifiedAt:Be(o.verified_at)};t.push(c);break;case"twitter_oauth":let l={subject:o.subject,username:o.username,name:o.name,type:o.type,verifiedAt:Be(o.verified_at)};t.push(l);break;case"discord_oauth":let s={subject:o.subject,username:o.username,email:o.email,type:o.type,verifiedAt:Be(o.verified_at)};t.push(s);break;case"github_oauth":let y={subject:o.subject,username:o.username,name:o.name,email:o.email,type:o.type,verifiedAt:Be(o.verified_at)};t.push(y);break;case"tiktok_oauth":let h={subject:o.subject,username:o.username,type:o.type,verifiedAt:Be(o.verified_at)};t.push(h);break;case"linkedin_oauth":let g={subject:o.subject,name:o.name,email:o.email,type:o.type,verifiedAt:Be(o.verified_at)};t.push(g);break;case"apple_oauth":let m={subject:o.subject,email:o.email,type:o.type,verifiedAt:Be(o.verified_at)};t.push(m);break;case"custom_auth":t.push({type:o.type,customUserId:o.custom_user_id,verifiedAt:Be(o.verified_at)});break;default:console.warn(`Unrecognized account type: ${r}. Please consider upgrading the Privy SDK.`)}}return t}function pt(e,t){return e.sort((o,r)=>r.verifiedAt.getTime()-o.verifiedAt.getTime()),e.find(o=>o.type===t)}var oe=e=>e?.linkedAccounts.find(t=>t.type==="wallet"&&t.walletClientType==="privy")||null,zu=e=>e.linkedAccounts.filter(t=>t.type==="wallet"),Jt=(e,t)=>t==="all-users"&&!oe(e)||t==="users-without-wallets"&&!zu(e)?.length;function rt(e){if(!e)return null;let t=Gu(e.linked_accounts),o=pt(t,"wallet"),r=pt(t,"email"),n=pt(t,"phone"),i=pt(t,"google_oauth"),a=pt(t,"twitter_oauth"),c=pt(t,"discord_oauth"),l=pt(t,"github_oauth"),s=pt(t,"tiktok_oauth"),y=pt(t,"linkedin_oauth"),h=pt(t,"apple_oauth"),g=e.mfa_methods.map(({type:w,verified_at:_})=>({type:w,verifiedAt:Be(_)}));return{id:e.id,createdAt:Be(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:c&&{subject:c.subject,username:c.username,email:c.email},github:l&&{subject:l.subject,username:l.username,name:l.name,email:l.email},tiktok:s&&{subject:s.subject,username:s.username},linkedin:y&&{subject:y.subject,name:y.name},apple:h&&{subject:h.subject,email:h.email},mfaMethods:g.map(w=>w.type)}}import{getAddress as Il}from"@ethersproject/address";import xm from"eventemitter3";var js="1.45.2";var un="4df5e2316331463a9130964bd6078dfa",Ks="fe9c30fc-3bc5-4064-91e2-6ab5887f8f4d",Ys="34357d3c125c2bcf2ce2bc3309d98715",Js="0x4AAAAAAAJFhr_rDU7HKpyw",mn="https://auth.privy.io",Qs=2e4,He=1400,Zs=2500,Fi=js;var Ko="privy:token",Bi="privy-token",fn="privy:refresh_token",Hi="privy-refresh-token",Xs="privy-session",Ar="privy:session_transfer_token",Vu="privy:wallet",kr="privy:caid",hn=e=>`${Vu}:${e}`,Gi="privy:connectors",zi="privy:connections";var Rr=12e4,ut=1,$i="0x1",Yo=3e4,el="https://api.moonpay.com/v1",tl="https://api.moonpay.com/v1",ol="pk_live_hirbpu0cVcLHrjktC9l7fbc9ctjv0SL",rl="pk_test_fqWjXZMSFwloh7orvJsRfjiUHXJqFzI";var Vi=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)}},qi=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 qu(){return typeof window<"u"&&window.localStorage?new qi:new Vi}var $=qu();import{isPossiblePhoneNumber as ju}from"libphonenumber-js/min";var yn=()=>{let e=window;if(!e.ethereum)return!1;if(Ir(window.ethereum,!0))return!0;if(e.ethereum.providers){for(let t of e.ethereum.providers)if(Ir(t,!0))return!0}return!1},Wr=()=>{let e=window;if(!e.ethereum)return!1;if(Ir(window.ethereum,!1))return!0;if(e.ethereum.providers){for(let t of e.ethereum.providers)if(Ir(t,!1))return!0}return!!window.ethereum.isZerion},Ir=(e,t)=>{if(!e.isMetaMask)return!1;if(e.isMetaMask&&!t)return!0;if(e.isBraveWallet&&!e._events&&!e._state||e.isApexWallet||e.isAvalanche||e.isBitKeep||e.isBlockWallet||e.isKuCoinWallet||e.isMathWallet||e.isOkxWallet||e.isOKExWallet||e.isOneInchIOSWallet||e.isOneInchAndroidWallet||e.isOpera||e.isPhantom||e.isPortal||e.isRabby||e.isRainbow||e.isTokenPocket||e.isTokenary||e.isZerion)return!1;if(e.providers){for(let o of e.providers)if(!Ir(o))return!1}return!0},Ye=()=>!!("phantom"in window&&window?.phantom?.ethereum?.isPhantom),gn=()=>{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.isCoinbaseWallet)return!0}return!1};var nl=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,}))$/),il=e=>ju(String(e),"US"),al=(e,t)=>{let o=e.slice(0),r=[];for(;o.length;)r.push(o.splice(0,t));return r},Qt=(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}`},ji=e=>new Promise(t=>setTimeout(t,e)),sl=(e,t={})=>{let o=t.delayMs||150,r=t.maxAttempts||270;return new Promise(async(n,i)=>{let a=!1,c=0;for(;!a&&c<r;){if(t.abortSignal?.aborted)return;e().then(()=>{a=!0,n()},(...l)=>{a=!0,i(...l)}),c+=1,await ji(o)}a||i(new Error("Exceeded max attempts before resolving function"))})},vn=(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 Ki=e=>e.replace(/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g,""),Po=e=>typeof e=="string"?e:"0x"+e.toString(16);async function ll(e=3e3){let t=!1,o=window;return new Promise(r=>{o.ethereum?n():(window.addEventListener("ethereum#initialized",n,{once:!0}),setTimeout(()=>{n()},e));function n(){if(t)return;t=!0,window.removeEventListener("ethereum#initialized",n);let i=[];yn()&&i.push("metamask"),Ye()&&i.push("phantom"),o.ethereum&&o.ethereum.isBraveWallet&&i.push("brave"),r(i)}})}function Jo(e){return`eip155:${String(Number(e))}`}var nt=(e,t,o)=>{let r=Number(e),n=t.find(a=>a.id===r);if(!n)throw new B(`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]+"/"+un:n.rpcUrls.blast?.http[0]?i=n.rpcUrls.blast.http[0]+"/"+Ks:i=n.rpcUrls.default?.http[0],!i)throw new B(`No RPC url found for ${e}`);return i},cl=(e,t)=>{let o=Number(e),r=t.find(n=>n.id===o);if(!r)throw new B(`Unsupported chainId ${e}`,4901);return r.blockExplorers?.default.url};import rm from"@coinbase/wallet-sdk";import{jsx as dl,jsxs as Ku}from"react/jsx-runtime";var mt=({style:e,...t})=>Ku("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:[dl("rect",{width:"1024",height:"1024",fill:"#0052FF",rx:100,ry:100}),dl("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 yt}from"@ethersproject/address";import{Web3Provider as yl}from"@ethersproject/providers";import{default as tm}from"eventemitter3";import{StaticJsonRpcProvider as ul}from"@ethersproject/providers";import em from"eventemitter3";var Yu=["eth_sign","eth_populateTransactionRequest","eth_signTransaction","personal_sign","eth_signTypedData_v4"],pl=e=>Yu.includes(e);import{ErrorCode as Ju}from"@ethersproject/logger";var Qo=class extends B{constructor(){super("Wallet timeout");this.type="wallet_error"}},Zo=class extends B{constructor(){super("User rejected connection");this.type="wallet_error"}},ft=e=>{if(e instanceof B)return e;if(e?.code&&e?.reason){let t=new be(e);return e.code===Ju.ACTION_REJECTED&&(t.details=Pe.E4001_USER_REJECTED_REQUEST),t}return e?.code?new be(e):new B("Unknown connector error",e)},it=class extends ot{constructor(o,r,n){super(o);this.type="provider_error";this.code=r,this.data=n}},be=class extends it{constructor(o){let r=o;super(r.message,r.code,r.data);let n=Object.values(Pe).find(i=>i.eipCode===r.code);this.details=n||Pe.UNKNOWN_ERROR,r.code===-32002&&(r.message?.includes("already pending for origin")?r.message?.includes("wallet_requestPermissions")?this.details=Pe.E32002_CONNECTION_ALREADY_PENDING:this.details=Pe.E32002_REQUEST_ALREADY_PENDING:r.message?.includes("Already processing")&&r.message.includes("eth_requestAccounts")&&(this.details=Pe.E32002_WALLET_LOCKED))}},Qu={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}},Zu={E32002_CONNECTION_ALREADY_PENDING:{eipCode:-32002,message:"Connection request already pending",detail:"Don\u2019t see your wallet modal? Check your other browser windows.",retryable:!1},E32002_REQUEST_ALREADY_PENDING:{eipCode:-32002,message:"Resource request already pending",detail:"Don\u2019t see your wallet modal? Check your other browser windows.",retryable:!1},E32002_WALLET_LOCKED:{eipCode:-32002,message:"Wallet might be locked",detail:"Don\u2019t see your wallet modal? Check your other browser windows.",retryable:!1},E4001_USER_REJECTED_REQUEST:{eipCode:4001,message:"Signature rejected",detail:"Please try signing again.",retryable:!0}},Xu={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}},Pe={UNKNOWN_ERROR:{eipCode:0,message:"Unknown error",detail:"Unknown error",retryable:!0},...Xu,...Zu},It={...Qu,...Pe};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 Qo,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||Rr,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 B(`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 ft(o)})}},Zt=class extends Error{constructor(o,r,n){super(o);this.code=r,this.data=n}},wn=class extends em{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 ul(nt(a,this.chains,n)),this.rpcTimeoutDuration=Xo(n,"privy")}async handleSendTransaction(o){if(!o.params||!Array.isArray(o.params))throw new Zt(`Invalid params for ${o.method}`,4200);let r=o.params[0];if(!await Wt()||!this.address)throw new Zt("Disconnected",4900);return(await fl(r)).hash}handleSwitchEthereumChain(o){if(!o.params||!Array.isArray(o.params))throw new Zt(`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 Zt(`Invalid params for ${o.method}`,4200);this.chainId=Number(r),this.provider=new ul(nt(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 ml(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:Po(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 Po(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(pl(o.method)){let r=await Wt();if(await hl(),!r||!this.address)throw new Zt("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 Zt("Disconnected",4900)}}else return this.provider.send(o.method,o.params)}async connect(){let o=await Wt();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}}},ht=class extends re{constructor(o){super(o,o.rpcTimeoutDuration)}},Xt=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 om=(e,t)=>{switch(t){case"coinbase_wallet":return e.message.includes("addEthereumChain");default:return e.code===4902||e.message?.includes("4902")}},Ge=class extends tm{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=Jo(o),this.walletClientType==="privy"&&$.put(hn(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=Xo(i,o),this.connected=!1,this.initialized=!1}buildConnectedWallet(o,r){let n=async()=>!!this.wallets.find(i=>yt(i.address)===yt(o));return{address:yt(o),chainId:r,switchChain:async i=>{if(!n)throw new B("Wallet is not currently connected.");let a=this.wallets.find(h=>yt(h.address)===yt(o))?.chainId;if(!a)throw new B("Unable to determine current chainId.");let c,l;if(typeof i=="number"?(c=`0x${i.toString(16)}`,l=i):(c=i,l=Number(i)),a===Jo(c))return;let s=this.chains.find(h=>h.id===l);if(!s)throw new B(`Unsupported chainId: ${i}`);let y=async()=>{await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[{chainId:c}]})};try{return await y()}catch(h){if(om(h,this.walletClientType))return await this.proxyProvider.request({method:"wallet_addEthereumChain",params:[{chainId:c,chainName:s.name,nativeCurrency:s.nativeCurrency,rpcUrls:[s.rpcUrls.public?.http[0]??""],blockExplorerUrls:[s.blockExplorers?.default.url??""]}]}),y();throw this.walletClientType==="rainbow"&&h.message?.includes("wallet_switchEthereumChain")?new B(`Rainbow does not support the chainId ${r}`):h}},connectedAt:Date.now(),walletClientType:this.walletClientType,connectorType:this.connectorType,isConnected:n,getEthereumProvider:async()=>{if(!await n())throw new B("Wallet is not currently connected.");return this.proxyProvider},getEthersProvider:async()=>{if(!await n())throw new B("Wallet is not currently connected.");return new yl(new ht(this.proxyProvider))},getWeb3jsProvider:async()=>{if(!await n())throw new B("Wallet is not currently connected.");return new Xt(this.proxyProvider)},sign:async i=>{if(!await n())throw new B("Wallet is not currently connected.");return await this.sign(i)},disconnect:()=>{this.disconnect()}}}async syncAccounts(o){let r=o;if(r===void 0){let s=await this.proxyProvider.request({method:"eth_accounts"});Array.isArray(s)&&(r=s)}if(!r||!Array.isArray(r)||r.length<=0||!r[0])return;let n=r[0],i=yt(n),a=[],c;if(this.walletClientType==="privy"){let s=$.get(hn(i));this.chains.find(y=>y.id===Number(s))||($.del(hn(i)),s=null),c=s||`0x${this.defaultChain.id.toString(16)}`;try{await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[{chainId:c}]})}catch{console.warn(`Unable to switch embedded wallet to chain ID ${c} on initialization`)}}else try{let s=await this.proxyProvider.request({method:"eth_chainId"});if(typeof s=="string")c=s;else if(typeof s=="number")c=`0x${s.toString(16)}`;else throw new Error("Invalid chainId returned from provider")}catch(s){console.warn(`Failed to get chainId from provider, defaulting to ${$i}`,s),c=$i}let l=Jo(c);a.find(s=>yt(s.address)===i)||a.push(this.buildConnectedWallet(yt(n),l)),Cn(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=>yt(n)===yt(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 yl(new ht(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 nm=e=>{let t=`https://mainnet.infura.io/v3/${un}`,o=1;return e.makeWeb3Provider(t,o)},bn,En=class extends Ge{constructor(o,r,n){super("coinbase_wallet",o,r,n);this.connectorType="coinbase_wallet";this.proxyProvider=new re(void 0,this.rpcTimeoutDuration),this.subscribeListeners(),bn||(bn=new rm({appName:"Privy",darkMode:!1,headlessMode:!1,enableMobileWalletLink:!0})),this.proxyProvider.setWalletProvider(nm(bn)),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(){bn.disconnect()}get walletBranding(){return{name:"Coinbase Wallet",icon:mt}}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new B("Unable to retrieve accounts");this.connected=!0,await this.syncAccounts([o[0]])}catch(o){throw ft(o)}}};import{jsx as gl}from"react/jsx-runtime";var er=({...e})=>gl("svg",{width:"15",height:"15",viewBox:"0 0 15 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e,children:gl("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 xn=class extends Ge{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:[Po(o?.chainId||"0x1")]}),this.getConnectedWallet()):null}get walletBranding(){return{name:"Privy Wallet",icon:er}}disconnect(){this.connected=!1}async promptConnection(){}};import{getAddress as RC}from"@ethersproject/address";import{Web3Provider as WC}from"@ethersproject/providers";import{isMobile as am}from"react-device-detect";import{jsx as ze,jsxs as im}from"react/jsx-runtime";var Ee=({style:e,...t})=>im("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:[ze("style",{children:".s1{stroke-linecap:round;stroke-linejoin:round}.s2{fill:#e4761b;stroke:#e4761b}.s3{fill:#f6851b;stroke:#f6851b}"}),ze("path",{fill:"#e2761b",stroke:"#e2761b",className:"s1",d:"m274.1 35.5-99.5 73.9L193 65.8z"}),ze("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"}),ze("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"}),ze("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"}),ze("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"}),ze("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"}),ze("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"}),ze("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"}),ze("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"}),ze("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"}),ze("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"}),ze("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 Tn=class extends Ge{constructor(o,r,n){super("metamask",o,r,n);this.connectorType="injected";this.proxyProvider=new re(void 0,this.rpcTimeoutDuration),this.subscribeListeners();let i=window,a=i.ethereum,c=i.ethereum.providers||[];for(let l of c)if(l.isMetaMask){a=l;break}this.proxyProvider.setWalletProvider(a),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:"MetaMask",icon:Ee}}disconnect(){console.warn("Metamask does not support programmatic disconnect.")}async promptConnection(){try{!am&&yn()&&await this.proxyProvider.request({method:"wallet_requestPermissions",params:[{eth_accounts:{}}]});let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new B("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw ft(o)}}};import{jsx as vl,jsxs as sm}from"react/jsx-runtime";var Je=({style:e,...t})=>sm("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:[vl("rect",{width:"108",height:"108",rx:"23",fill:"#AB9FF2"}),vl("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 Pn=class extends Ge{constructor(o,r,n){super("phantom",o,r,n);this.connectorType="injected";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:Je}}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 B("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw ft(o)}}};import{EthereumProvider as vm,OPTIONAL_EVENTS as wm,OPTIONAL_METHODS as Cm}from"@walletconnect/ethereum-provider";import Qi from"@walletconnect/qrcode-modal";import{isAndroid as bm,isMobile as Em}from"react-device-detect";import{createContext as cm,useContext as dm,useEffect as Yi,useRef as pm,useState as Cl}from"react";import{jsx as lm}from"react/jsx-runtime";function wl(e){return lm("link",{rel:"prefetch",href:e.src})}var E=()=>{throw new Error("You need to wrap your application with the <PrivyProvider> initialized with your app id.")};import{jsx as um,jsxs as mm}from"react/jsx-runtime";var at="LANDING",bl=cm({ready:!1,app:null,currentScreen:at,lastScreen:at,navigate:E,navigateBack:E,resetNavigation:E,setModalData:E,outerClickRef:null}),El=e=>{let t=e.appConfig,o=e.authenticated,r=e.visible,[n,i]=Cl(e.initialScreen||at),[a,c]=Cl(e.initialScreen||at);Yi(()=>{o||i(at)},[o]),Yi(()=>{r||(c(at),i(at))},[r]),Yi(()=>{e.initialScreen&&n===at&&(i(e.initialScreen),c(e.initialScreen))},[e.initialScreen]);let l=e.initialScreen&&n===at?e.initialScreen:n,s=pm(null),y={ready:!!t?.id,app:t,data:e.data,setModalData:e.setModalData,currentScreen:l,lastScreen:a,navigate:h=>{c(n),i(h)},navigateBack:()=>{i(a)},resetNavigation:()=>{e.setInitialScreen(null),c(at),i(at)},outerClickRef:s};return mm(bl.Provider,{value:y,children:[(typeof t?.appearance?.logo=="string"||t?.appearance?.logo?.type==="img")&&um(wl,{src:typeof t.appearance.logo=="string"?t.appearance.logo:t.appearance.logo.props.src}),e.children]})},C=()=>dm(bl);import{jsx as tr,jsxs as fm}from"react/jsx-runtime";var or=({style:e,...t})=>{let{app:o}=C();return fm("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:[tr("rect",{width:"28",height:"28",rx:"3",fill:o?.appearance.palette.colorScheme==="dark"?"#3396ff":"#141414"}),tr("g",{clipPath:"url(#clip0_1765_9946)",children:tr("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"})}),tr("defs",{children:tr("clipPath",{id:"clip0_1765_9946",children:tr("rect",{width:"20",height:"12.2531",fill:"white",transform:"translate(4 8)"})})})]})};import{isAndroid as Tl,isDesktop as hm,isMobileOnly as ym}from"react-device-detect";var _n=e=>{let t;try{t=new URL(e).hostname}catch{return}for(let[o,r]of Object.entries(Pl))if(t.includes(r.hostname))return{walletClientType:o,entry:r}};var Pl={metamask:{id:"c57ca95b47569778a828d19178114f4db188b89b763c899ba0be274e97267d96",displayName:"MetaMask",image_id:"5195e9db-94d8-4579-6f11-ef553be95100",hostname:"metamask.io",mobile:{native:"metamask:"}},trust:{id:"4622a2b2d6af1c9844944291e5e7351a6aa24cd7b23099efac1b2fd875da31a0",displayName:"Trust",image_id:"0528ee7e-16d1-4089-21e3-bbfb41933100",hostname:"trustwallet.com",mobile:{universal:"https://link.trustwallet.com"}},safe:{id:"225affb176778569276e484e1b92637ad061b01e13a048b35a9d280c3b58970f",displayName:"Safe",image_id:"3913df81-63c2-4413-d60b-8ff83cbed500",hostname:"safe.global",mobile:{universal:"https://app.safe.global/"}},rainbow:{id:"1ae92b26df02f0abca6304df07debccd18262fdf5fe82daa81593582dac9a369",displayName:"Rainbow",image_id:"7a33d7f1-3d12-4b5c-f3ee-5cd83cb1b500",hostname:"rainbow.me",mobile:{universal:"https://rnbwapp.com"}},uniswap:{id:"c03dfee351b6fcc421b4494ea33b9d4b92a984f87aa76d1663bb28705e95034a",displayName:"Uniswap",image_id:"bff9cf1f-df19-42ce-f62a-87f04df13c00",hostname:"uniswap.org",mobile:{universal:"https://uniswap.org/app"}},zerion:{id:"ecc4036f814562b41a5268adc86270fba1365471402006302e70169465b7ac18",displayName:"Zerion",image_id:"f216b371-96cf-409a-9d88-296392b85800",hostname:"zerion.io",mobile:{universal:"https://wallet.zerion.io"}},argent:{id:"bc949c5d968ae81310268bf9193f9c9fb7bb4e1283e1284af8f2bd4992535fd6",displayName:"Argent",image_id:"215158d2-614b-49c9-410f-77aa661c3900",hostname:"www.argent.xyz",mobile:{universal:"https://www.argent.xyz/app"}},spot:{id:"74f8092562bd79675e276d8b2062a83601a4106d30202f2d509195e30e19673d",displayName:"Spot",image_id:"1bf33a89-b049-4a1c-d1f6-4dd7419ee400",hostname:"www.spot-wallet.com",mobile:{universal:"https://spot.so"}},omni:{id:"afbd95522f4041c71dd4f1a065f971fd32372865b416f95a0b1db759ae33f2a7",displayName:"Omni",image_id:"2cd67b4c-282b-4809-e7c0-a88cd5116f00",hostname:"omni.app",mobile:{universal:"https://links.omni.app"}},cryptocom:{id:"f2436c67184f158d1beda5df53298ee84abfc367581e4505134b5bcf5f46697d",displayName:"Crypto.com",image_id:"7c5ff577-a68d-49c5-02cd-3d83637b0b00",hostname:"crypto.com",mobile:{universal:"https://wallet.crypto.com"}},blockchain:{id:"84b43e8ddfcd18e5fcb5d21e7277733f9cccef76f7d92c836d0e481db0c70c04",displayName:"Blockchain",image_id:"6f913b80-86c0-46f9-61ca-cc90a1805900",hostname:"www.blockchain.com",mobile:{universal:"https://www.blockchain.com"}},safepal:{id:"0b415a746fb9ee99cce155c2ceca0c6f6061b1dbca2d722b3ba16381d0562150",displayName:"SafePal",image_id:"252753e7-b783-4e03-7f77-d39864530900",hostname:"safepal.com",mobile:{universal:"https://link.safepal.io"}},bitkeep:{id:"38f5d18bd8522c244bdd70cb4a68e0e718865155811c043f052fb9f1c51de662",displayName:"BitKeep",image_id:"3f7075d0-4ab7-4db5-404d-3e4c05e6fe00",hostname:"bitkeep.com",mobile:{universal:"https://bkapp.vip"}},zengo:{id:"9414d5a85c8f4eabc1b5b15ebe0cd399e1a2a9d35643ab0ad22a6e4a32f596f0",displayName:"ZenGo",image_id:"cfc07342-23ea-4f3f-f071-ec9d2cd86b00",hostname:"zengo.com",mobile:{universal:"https://get.zengo.com/"}},"1inch":{id:"c286eebc742a537cd1d6818363e9dc53b21759a1e8e5d9b263d0c03ec7703576",displayName:"1inch",image_id:"52b1da3c-9e72-40ae-5dac-6142addd9c00",hostname:"wallet.1inch.io",mobile:{universal:"https://wallet.1inch.io/wc/"}},binance:{id:"8a0ee50d1f22f6651afcae7eb4253e52a3310b90af5daef78a8c4929a9bb99d4",displayName:"Binance",image_id:"ebac7b39-688c-41e3-7912-a4fefba74600",hostname:"www.binance.com",mobile:{universal:"https://app.binance.com/cedefi"}},exodus:{id:"e9ff15be73584489ca4a66f64d32c4537711797e30b6660dbcb71ea72a42b1f4",displayName:"Exodus",image_id:"4c16cad4-cac9-4643-6726-c696efaf5200",hostname:"exodus.com",mobile:{universal:"https://exodus.com/m"}},mew_wallet:{id:"f5b4eeb6015d66be3f5940a895cbaa49ef3439e518cd771270e6b553b48f31d2",displayName:"MEW wallet",image_id:"e2024511-2c9b-46d7-3111-52df3d241700",hostname:"mewwallet.com",mobile:{universal:"https://mewwallet.com"}},alphawallet:{id:"138f51c8d00ac7b9ac9d8dc75344d096a7dfe370a568aa167eabc0a21830ed98",displayName:"AlphaWallet",image_id:"5b1cddfb-056e-4e78-029a-54de5d70c500",hostname:"alphawallet.com",mobile:{universal:"https://aw.app"}},keyring_pro:{id:"47bb07617af518642f3413a201ec5859faa63acb1dd175ca95085d35d38afb83",displayName:"KEYRING PRO",image_id:"dda0f0fb-34e8-4a57-dcea-b008e7d1ff00",hostname:"keyring.app",mobile:{universal:"https://keyring.app/"}},mathwallet:{id:"7674bb4e353bf52886768a3ddc2a4562ce2f4191c80831291218ebd90f5f5e26",displayName:"MathWallet",image_id:"26a8f588-3231-4411-60ce-5bb6b805a700",hostname:"mathwallet.org",mobile:{universal:"https://www.mathwallet.org"}},unstoppable:{id:"8308656f4548bb81b3508afe355cfbb7f0cb6253d1cc7f998080601f838ecee3",displayName:"Unstoppable",image_id:"4725dda0-4471-4d0f-7adf-6bbe8b929c00",hostname:"unstoppabledomains.com",mobile:{universal:"https://unstoppabledomains.com/mobile"}},obvious:{id:"031f0187049b7f96c6f039d1c9c8138ff7a17fd75d38b34350c7182232cc29aa",displayName:"Obvious",image_id:"61abe2ca-b06d-4a8b-de3e-8326f523e900",hostname:"obvious.technology",mobile:{universal:"https://wallet.obvious.technology"}},ambire:{id:"2c81da3add65899baeac53758a07e652eea46dbb5195b8074772c62a77bbf568",displayName:"Ambire",image_id:"c39b3a16-1a38-4588-f089-cb7aeb584700",hostname:"www.ambire.com",mobile:{universal:"https://mobile.ambire.com"}},internet_money_wallet:{id:"dd43441a6368ec9046540c46c5fdc58f79926d17ce61a176444568ca7c970dcd",displayName:"Internet Money Wallet",image_id:"204b2240-5ce4-4996-6ec4-f06a22726900",hostname:"internetmoney.io",mobile:{universal:"https://internetmoney.io"}},coin98:{id:"2a3c89040ac3b723a1972a33a125b1db11e258a6975d3a61252cd64e6ea5ea01",displayName:"Coin98",image_id:"fc460647-ea95-447a-99f0-1bff8fa4be00",hostname:"coin98.com",mobile:{universal:"https://coin98.services"}},abc_wallet:{id:"b956da9052132e3dabdcd78feb596d5194c99b7345d8c4bd7a47cabdcb69a25f",displayName:"ABC Wallet",image_id:"f9854c79-14ba-4987-42e1-4a82abbf5700",hostname:"myabcwallet.io",mobile:{universal:"https://abcwalletconnect.page.link"}},arculus_wallet:{id:"0e4915107da5b3408b38e248f7a710f4529d54cd30e9d12ff0eb886d45c18e92",displayName:"Arculus Wallet",image_id:"f78dab27-7165-4a3d-fdb1-fcff06c0a700",hostname:"www.getarculus.com",mobile:{universal:"https://gw.arculus.co/app"}},haha:{id:"719bd888109f5e8dd23419b20e749900ce4d2fc6858cf588395f19c82fd036b3",displayName:"HaHa",image_id:"79285c9f-2630-451e-0680-c71b42fb7400",hostname:"www.haha.me",mobile:{universal:"https://haha.me"}},cling_wallet:{id:"942d0e22a7e6b520b0a03abcafc4dbe156a1fc151876e3c4a842f914277278ef",displayName:"Cling Wallet",image_id:"2d8006c3-852b-458a-d6b0-916c5ba76800",hostname:"clingon.io",mobile:{universal:"https://cling.carrieverse.com/apple-app-site-association"}},broearn:{id:"8ff6eccefefa7506339201bc33346f92a43118d6ff7d6e71d499d8187a1c56a2",displayName:"Broearn",image_id:"339b9e9d-e2a7-46eb-4ed3-272321257a00",hostname:"www.broearn.com",mobile:{universal:"https://www.broearn.com/link/wallet/"}},copiosa:{id:"07f99a5d9849bb049d74830012b286f8b238e72b0337933ef22b84947409db80",displayName:"Copiosa",image_id:"cae1be94-9f53-4eba-b915-f6e381d5a500",hostname:"copiosa.io",mobile:{universal:"https://copiosa.io/action/"}},burrito_wallet:{id:"8821748c25de9dbc4f72a691b25a6ddad9d7df12fa23333fd9c8b5fdc14cc819",displayName:"Burrito Wallet",image_id:"7eec7187-3f48-4fda-53bb-b0ad55749a00",hostname:"burritowallet.com",mobile:{universal:"https://burritowallet.com/wc?uri="}},enjin_wallet:{id:"bdc9433ffdaee55d31737d83b931caa1f17e30666f5b8e03eea794bac960eb4a",displayName:"Enjin Wallet",image_id:"add9626b-a5fa-4c12-178c-e5584e6dcd00",hostname:"enjin.io",mobile:{universal:"https://deeplink.wallet.enjin.io/"}},plasma_wallet:{id:"cbe13eb482c76f1fa401ff4c84d9acd0b8bc9af311ca0620a0b192fb28359b4e",displayName:"Plasma Wallet",image_id:"c268e78d-ffb0-4c8b-5cad-04c3add48500",hostname:"plasma-wallet.com",mobile:{universal:"https://plasma-wallet.com"}},avacus:{id:"94f785c0c8fb8c4f38cd9cd704416430bcaa2137f27e1468782d624bcd155a43",displayName:"Avacus",image_id:"a7106965-91cc-4a73-4688-c5c72ae0ed00",hostname:"avacus.cc",mobile:{universal:"https://avacus.app.link"}},bee:{id:"2cca8c1b0bea04ba37dee4017991d348cdb7b826804ab2bd31073254f345b715",displayName:"Bee",image_id:"f90bc33f-f085-40cf-7538-fae5ae84f900",hostname:"www.beewallet.app",mobile:{universal:"https://beewallet.app/wc"}},pitaka:{id:"14e5d957c6eb62d3ee8fc6239703ac2d537d7e3552154836ca0beef775f630bc",displayName:"Pitaka",image_id:"691c0716-5213-4b99-e837-079268313800",hostname:"pitaka.io",mobile:{universal:"https://app.pitaka.io"}},pltwallet:{id:"576c90ceaea34f29ff0104837cf2b2e23d201be43be1433feeb18d375430e1fd",displayName:"PLTwallet",image_id:"a5d9dd15-8cef-42de-8bed-09e01a8b0200",hostname:"pltwallet.io",mobile:{universal:"https://pltwallet.io/"}},minerva:{id:"49bb9d698dbdf2c3d4627d66f99dd9fe90bba1eec84b143f56c64a51473c60bd",displayName:"Minerva",image_id:"b57b2163-1bd8-4f6b-3311-470767e6d200",hostname:"minerva.digital",mobile:{universal:"https://minerva.digital"}},kryptogo:{id:"19418ecfd44963883e4d6abca1adeb2036f3b5ffb9bee0ec61f267a9641f878b",displayName:"KryptoGO",image_id:"3ccbd966-97e8-45a0-1ceb-6141a8978e00",hostname:"kryptogo.com",mobile:{universal:"https://kryptogo.page.link"}},prema:{id:"5b8e33346dfb2a532748c247876db8d596734da8977905a27b947ba1e2cf465b",displayName:"PREMA",image_id:"6487869b-1165-4f30-aa3a-115665be8300",hostname:"premanft.com",mobile:{universal:"https://premanft.com"}},slingshot:{id:"d23de318f0f56038c5edb730a083216ff0cce00c1514e619ab32231cc9ec484b",displayName:"Slingshot",image_id:"10c75467-6612-48ad-b97b-63985e922200",hostname:"slingshot.finance",mobile:{universal:"https://app.slingshot.finance"}},kriptonio:{id:"50df7da345f84e5a79aaf617df5167335a4b6751626df2e8a38f07029b3dde7b",displayName:"Kriptonio",image_id:"363fae03-882a-4d81-a721-6e6f6e9ac500",hostname:"kriptonio.com",mobile:{universal:"https://app.kriptonio.com/mobile"}},timeless:{id:"9751385960bca290c13b443155288f892f62ee920337eda8c5a8874135daaea8",displayName:"Timeless",image_id:"32e89601-0490-42fc-0cc4-8627d62a2000",hostname:"timelesswallet.xyz",mobile:{universal:"https://timelesswallet.xyz"}},secux:{id:"6464873279d46030c0b6b005b33da6be5ed57a752be3ef1f857dc10eaf8028aa",displayName:"SecuX",image_id:"98183be0-3125-45ee-a6b6-fbd47ebefd00",hostname:"secuxtech.com",mobile:{universal:"https://wsweb.secuxtech.com"}},bitizen:{id:"41f20106359ff63cf732adf1f7dc1a157176c9b02fd266b50da6dcc1e9b86071",displayName:"Bitizen",image_id:"75dd1471-77e9-4811-ce57-ec8fc980ec00",hostname:"bitizen.org",mobile:{universal:"https://bitizen.org/wallet"}},blocto:{id:"14e7176536cb3706e221daaa3cfd7b88b7da8c7dfb64d1d241044164802c6bdd",displayName:"Blocto",image_id:"374258d3-c749-4f37-7815-77e61f798c00",hostname:"blocto.io",mobile:{universal:"https://blocto.app"}},safemoon:{id:"a0e04f1086aac204d4ebdd5f985c12ed226cd0006323fd8143715f9324da58d1",displayName:"SafeMoon",image_id:"ea0140c7-787c-43a4-838f-d5ab6a342000",hostname:"safemoon.com",mobile:{universal:"https://safemoon.com/wc"}}},_l=(e,t="md")=>`https://registry.walletconnect.com/v2/logo/${t}/${e}`;function Ji(e){return{name:e.displayName||"",universalLink:e.mobile.universal||"",deepLink:e.mobile.native||""}}function gm(e){let t="mobile";return Object.values(e).filter(o=>!!o[t].universal||!!o[t].native).map(o=>Ji(o))}function Sl(){return gm(Pl)}function Al(e,t){let o=encodeURIComponent(e);return t.universalLink?`${t.universalLink}/wc?uri=${o}`:t.deepLink?`${t.deepLink}${t.deepLink.endsWith(":")?"//":"/"}wc?uri=${e}`:""}function kl(e,t){return Tl?e:Al(e,Ji(t))}var Rl="WALLETCONNECT_DEEPLINK_CHOICE";function xl(e){let t=e.href.split("?")[0];$.put(Rl,{...e,href:t})}var Nr=(e,t)=>{if(!e||hm){$.del(Rl);return}if(Tl){xl({name:"Unknown",href:t||"wc:"});return}else if(ym){let o=Al(t||"wc:",Ji(e));xl({name:e?.displayName||"",href:o})}};var Mr=class extends Ge{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),this.createProvider().then(c=>{if(this.provider=c,this.proxyProvider.setWalletProvider(c),this.subscribeListeners(),c.session){if(this.walletProvider.session?.peer.metadata.url){let l=_n(this.walletProvider.session?.peer.metadata.url);this.walletEntry=l?.entry,this.walletClientType=l?.walletClientType||"unknown",Nr(this.walletEntry)}this.connected=!0,this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}else this.emit("initialized"),this.initialized=!0})}async connect(o){return o.showPrompt&&await this.promptConnection(),this.getConnectedWallet()}async isConnected(){return this.walletProvider.connected}get walletBranding(){return this.walletEntry?{name:this.walletEntry.displayName,icon:this.walletClientType==="metamask"?Ee:_l(this.walletEntry.image_id)}:{name:Ki(this.walletProvider.session?.peer.metadata.name||"")||"WalletConnect",icon:this.walletProvider.session?.peer.metadata.icons?.[0]||or}}resetConnection(){this.walletProvider&&this.walletProvider.connected&&(this.walletProvider.signer.session=void 0,this.walletEntry=void 0,Nr(void 0),this.onDisconnect())}async promptConnection(){if(this.provider)return new Promise((o,r)=>{let n=()=>{r(new Zo)};this.onQrModalClosed=n,(async()=>{let a="",c=await Promise.race([this.walletProvider.enable(),this.proxyProvider.walletTimeout()]);if(c.length>0&&(a=c[0]),!a||a==="")throw new B("Unable to retrieve address");if(this.walletProvider.session?.peer.metadata.url){let l=_n(this.walletProvider.session?.peer.metadata.url);this.walletEntry=l?.entry,this.walletClientType=l?.walletClientType||"unknown",this.proxyProvider.rpcTimeoutDuration=Xo(this.rpcConfig,this.walletClientType)}this.connected=!0,await this.syncAccounts(c),o()})().catch(a=>{if(a){r(ft(a));return}r(new B("Unknown error during connection"))}).finally(()=>Qi.close())})}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=nt(n.id,this.chains,this.rpcConfig);i&&(o[n.id]=i)}let r=await vm.init({projectId:this.walletConnectCloudProjectId,chains:[this.defaultChain.id],optionalChains:this.chains.map(n=>n.id),optionalEvents:wm,optionalMethods:Cm,rpcMap:o,showQrModal:!1});return r.on("display_uri",n=>{if(bm)window.open(n,"_self");else if(Em&&this.walletEntry){Nr(this.walletEntry,n);let a=kl(n,this.walletEntry);window.open(a,"_self","noopener,noreferrer")}else Qi.open(n,()=>{this.onQrModalClosed&&this.onQrModalClosed()},{mobileLinks:Sl().map(i=>i.name)})}),r.on("connect",()=>{if(Qi.close(),r.session?.peer.metadata.url){let n=_n(r.session?.peer.metadata.url);this.walletEntry=n?.entry,this.walletClientType=n?.walletClientType||"unknown",Nr(this.walletEntry)}}),r}async enableProvider(){return this.walletProvider.connected?Promise.resolve(this.walletProvider.accounts):await this.walletProvider.enable()}};var Zi=e=>{let t=localStorage.getItem("-walletlink:https://www.walletlink.org:Addresses");return t?!!e?.linkedAccounts.filter(r=>r.type=="wallet"&&r.address===Il(t)).length:!1},Xo=(e,t)=>e.rpcTimeouts?e.rpcTimeouts[t]||Rr:Rr,Lr=class extends xm{constructor(o,r,n,i){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.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||($.get(Gi)&&($.getKeys().forEach(o=>{o.startsWith("walletconnect")&&$.del(o)}),$.del(Gi)),ll().then(o=>o.forEach(r=>{switch(r){case"metamask":this.createWalletConnector("injected","metamask");break;case"phantom":this.createWalletConnector("injected","phantom");break;case"unknown":default:break}})),(gn()||$.getKeys().find(o=>o.startsWith("-walletlink")))&&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")}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 wn(o,r,this.rpcConfig,this.chains,n.id),c=new xn(a,this.chains,n,this.rpcConfig);this.addWalletConnector(c)}}removeEmbeddedWalletConnector(){let o=this.findWalletConnector("embedded","privy");if(o){let r=this.walletConnectors.indexOf(o);this.walletConnectors.splice(r,1),this.saveConnectionHistory(),this.emit("walletsUpdated")}}async createWalletConnector(o,r){let n=this.findWalletConnector(o,r);if(n)return n instanceof Mr&&n.resetConnection(),n;let a=(()=>{switch(o){case"injected":switch(r){case"phantom":return Ye()?new Pn(this.chains,this.defaultChain,this.rpcConfig):null;case"metamask":default:return Wr()?new Tn(this.chains,this.defaultChain,this.rpcConfig):null}case"coinbase_wallet":return new En(this.chains,this.defaultChain,this.rpcConfig);case"wallet_connect_v2":return new Mr(this.walletConnectCloudProjectId,this.rpcConfig,this.chains,this.defaultChain)}})();return a&&this.addWalletConnector(a),a||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=$.get(zi);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}));$.put(zi,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=Il(o),this.emit("walletsUpdated")}};function Cn(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 Tm}from"ofetch";var Pm=[dn(),pn()],_m=e=>{let t=new AbortController;return setTimeout(()=>t.abort(),e),t.signal},Sn=class{constructor(t,o,r){this.appId=t,this.clientAnalyticsId=o.clientAnalyticsId,this.sdkVersion=Fi,this.client=o,this.defaults=r,this.fallbackApiUrl=o.fallbackApiUrl,this.baseFetch=Tm.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 c=!Pm.includes(n.toString());if(!a.has("authorization")&&c){let l=await this.client.getAccessToken();l!==null&&a.set("authorization",`Bearer ${l}`)}i.headers=a,i.signal||(i.signal=_m(this.defaults.timeout))},onRequestError:({error:n})=>{if(n instanceof DOMException&&n.name==="AbortError")throw new ln}})}async get(t,o){try{return await this.baseFetch(t,o)}catch(r){throw Q(r)}}async post(t,o,r){try{return await this.baseFetch(t,{method:"POST",...o?{body:o}:{},...r})}catch(n){throw Q(n)}}async delete(t,o){try{return await this.baseFetch(t,{method:"DELETE",...o})}catch(r){throw Q(r)}}};import Or from"js-cookie";function Wl(e){return e instanceof Eo?"email":e instanceof To?"sms":e instanceof xo?"siwe":e instanceof qo?"custom_auth":e instanceof Yt?e.meta.provider:null}import*as Nl from"jose";var gt=class{static parse(t){try{return new gt(t)}catch{return null}}constructor(t){this.value=t,this._decoded=Nl.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 Sm=30,An=class{constructor(){this.authenticateOnce=new Ke(async t=>this._authenticate(t)),this.linkOnce=new Ke(async t=>this._link(t)),this.refreshOnce=new Ke(this._refresh.bind(this)),this.destroyOnce=new Ke(this._destroy.bind(this)),this.forkSessionOnce=new Ke(this._forkSession.bind(this))}get token(){try{let t=$.get(Ko);return typeof t=="string"?new gt(t).value:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get refreshToken(){try{let t=$.get(fn);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get forkedToken(){try{let t=$.get(Ar);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get mightHaveServerCookies(){try{let t=Or.get(Xs);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=gt.parse(this.token);return t!==null&&!t.isExpired(Sm)}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=Wl(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:rt(n),isNewUser:i}}catch(o){throw console.warn("Error authenticating session"),Fe(o)}}async _link(t){try{let o=await t.link();return rt(o)}catch(o){throw console.warn("Error linking account"),Fe(o)}}async _refresh(){if(!this.api)throw new v("Session has no API instance");if(!this.client)throw new v("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(dn(),a,{headers:i}),r&&this.clearForkedToken()}else if(r)n=await this.api.post(pn(),{refresh_token:r}),this.clearForkedToken();else return null;return this.storeToken(n.token),this.storeRefreshToken(n.refresh_token),rt(n.user)}catch(n){if(n instanceof Vo&&n.privyErrorCode==="missing_or_invalid_token")return console.warn("Unable to refresh tokens - token is missing or no longer valid"),this.destroyLocalState(),null;throw Fe(n)}}async _destroy(){try{await this.api?.post(Ts(),{refresh_token:this.refreshToken})}catch{console.warn("Error destroying session")}this.destroyLocalState()}async _forkSession(){if(!this.api)throw new v("Session has no API instance");let t=this.refreshToken;try{let o=await this.api.post(Ps(),{refresh_token:t});return this.storeToken(o.token),this.storeRefreshToken(o.refresh_token),o.new_session_refresh_token}catch(o){throw Fe(o)}}destroyLocalState(){this.storeToken(null),this.storeRefreshToken(null),this.clearForkedToken()}storeToken(t){if(typeof t=="string"){if($.put(Ko,t),!this.client?.useServerCookies){let o=gt.parse(t)?.expiration;Or.set(Bi,t,{sameSite:"Strict",secure:!0,expires:o?new Date(o*1e3):void 0})}}else $.del(Ko),Or.remove(Bi)}storeRefreshToken(t){typeof t=="string"?($.put(fn,t),this.client?.useServerCookies||Or.set(Hi,t,{sameSite:"Strict",secure:!0,expires:30})):($.del(fn),Or.remove(Hi))}clearForkedToken(){$.del(Ar)}};var Xi,kn,Ml,Dr=class{constructor(t){Es(this,kn);this.apiUrl=t.apiUrl||mn,this.fallbackApiUrl=this.apiUrl,this.useServerCookies=!1,this.timeout=t.timeout||Qs,this.appId=t.appId,this.clientAnalyticsId=xs(this,kn,Ml).call(this),Xi||(Xi=new An),this.session=Xi,this.api=this.generateApi(),this.session.client=this}initializeConnectorManager(t,o,r,n){this.connectors||(this.connectors=new Lr(t,o,r,n))}generateApi(){let t=new Sn(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 v("No auth flow in progress.");return this.session.authenticate(this.authFlow)}link(){if(!this.authFlow)throw new v("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(Fs(),{address:t});return rt(o)}catch(o){throw Fe(o)}}async unlinkPhone(t){try{let o=await this.api.post(Bs(),{phoneNumber:t});return rt(o)}catch(o){throw Fe(o)}}async unlinkWallet(t){try{let o=await this.api.post(Us(),{address:t});return rt(o)}catch(o){throw Fe(o)}}async unlinkOAuth(t,o){try{let r=await this.api.post(Hs(),{provider:t,subject:o});return rt(r)}catch(r){throw Fe(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(Gs(),{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(zs(),t)}catch(o){throw Fe(o)}}async getAuthenticatedUser(){return this.session.hasRefreshCredentials()||this.session.hasRecoveryCredentials()?this.session.refresh():null}async getAccessToken(t){return this.session.hasActiveToken()?gt.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,twitterOAuthOnMobileEnabled:t.twitter_oauth_on_mobile_enabled,createdAt:new Date(t.created_at*1e3),updatedAt:new Date(t.updated_at*1e3)}}catch(t){throw Fe(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()}};kn=new WeakSet,Ml=function(){if(typeof window>"u")return null;try{let o=$.get(kr);if(typeof o=="string"&&o.length>0)return o}catch{}let t=Am();try{return $.put(kr,t),t}catch{return t}};import"wicg-inert";import{disableBodyScroll as dv,clearAllBodyScrollLocks as pv}from"body-scroll-lock";import{useRef as uv,useCallback as mv}from"react";import{useEffect as eu}from"react";import fv from"react-dom";import ps from"styled-components";import{createContext as km,useContext as Rm}from"react";var ea=km({isNewUserThisSession:!1,isLinking:!1,linkingHint:null,walletConnectionStatus:null,rpcConfig:{rpcUrls:{}},chains:[],clientAnalyticsId:null,nativeTokenSymbolForChainId:E,captchaData:{enabled:!1,ready:!1,execute:E,remove:E,token:void 0,error:void 0},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}),A=()=>Rm(ea);import{createContext as Im,useContext as Wm}from"react";var _e=Im({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,initEnrollment:E,init:E,submitEnrollment:E,submit:E,sendTransaction:E,exportWallet:E,setWalletPassword:E}),V=()=>Wm(_e);import la from"styled-components";import to,{css as na}from"styled-components";import oa from"styled-components";import{Fragment as Mm,jsx as ta,jsxs as Lm}from"react/jsx-runtime";var Rn=({success:e,fail:t})=>Lm(Mm,{children:[ta(_o,{className:e?"success":t?"fail":""}),ta(ra,{className:e?"success":t?"fail":""})]}),_o=oa.span`
13
13
  && {
14
14
  width: 82px;
15
15
  height: 82px;
@@ -42,13 +42,13 @@ Resources:
42
42
  border-color: var(--privy-color-error);
43
43
  border-bottom-color: var(--privy-color-error);
44
44
  }
45
- `,Zi=Qi(Po)`
45
+ `,ra=oa(_o)`
46
46
  && {
47
47
  border-bottom-color: ${e=>e.color??"var(--privy-color-accent)"};
48
48
  animation: none;
49
49
  opacity: 0.5;
50
50
  }
51
- `,Xt=e=>Ji(km,{color:e.color||"var(--privy-color-foreground-3)"}),km=Qi(Po)`
51
+ `,eo=e=>ta(Nm,{color:e.color||"var(--privy-color-foreground-3)"}),Nm=oa(_o)`
52
52
  && {
53
53
  height: 0.9rem;
54
54
  width: 0.9rem;
@@ -57,7 +57,7 @@ Resources:
57
57
  /* Override default Loader to match button transitions */
58
58
  transition: border-color 200ms ease;
59
59
  }
60
- `;import{jsx as vt,jsxs as An}from"react/jsx-runtime";var kn=eo.button`
60
+ `;import{jsx as vt,jsxs as In}from"react/jsx-runtime";var Wn=to.button`
61
61
  display: flex;
62
62
  flex-direction: row;
63
63
  align-items: center;
@@ -79,20 +79,20 @@ Resources:
79
79
  color: var(--privy-color-foreground-3);
80
80
  cursor: not-allowed;
81
81
  }
82
- `,q=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>vt(Il,{disabled:t||o,...n,children:t?An("span",{children:[vt(Xt,{}),r?vt("span",{children:r}):null]}):e}),_b=eo(q)`
83
- ${e=>e.hideAnimations&&Xi`
82
+ `,q=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>vt(Ll,{disabled:t||o,...n,children:t?In("span",{children:[vt(eo,{}),r?vt("span",{children:r}):null]}):e}),Ib=to(q)`
83
+ ${e=>e.hideAnimations&&na`
84
84
  && {
85
85
  transition: none;
86
86
  }
87
87
  `}
88
- `,Rn=({children:e,loading:t,disabled:o,annotation:r,loadingText:n="Loading...",...i})=>An(Il,{as:"a",disabled:t||o,...i,children:[!!r&&vt("div",{style:{position:"absolute",top:"-1.5rem"},children:vt(Wm,{children:r})}),t?An("span",{children:[vt(Xt,{}),n?vt("span",{children:n}):null]}):e]}),Wm=eo.span`
88
+ `,Nn=({children:e,loading:t,disabled:o,annotation:r,loadingText:n="Loading...",...i})=>In(Ll,{as:"a",disabled:t||o,...i,children:[!!r&&vt("div",{style:{position:"absolute",top:"-1.5rem"},children:vt(Om,{children:r})}),t?In("span",{children:[vt(eo,{}),n?vt("span",{children:n}):null]}):e]}),Om=to.span`
89
89
  color: var(--privy-color-foreground-3);
90
90
  text-align: center;
91
91
  font-size: 0.625rem;
92
92
  font-style: normal;
93
93
  font-weight: 400;
94
94
  line-height: 140%; /* 0.875rem */
95
- `,Il=eo(kn)`
95
+ `,Ll=to(Wn)`
96
96
  position: relative;
97
97
 
98
98
  && {
@@ -118,7 +118,7 @@ Resources:
118
118
  }
119
119
 
120
120
  /* If an anchor tag, :disabled isn't a thing, so manually set state */
121
- ${e=>e.disabled?Xi`
121
+ ${e=>e.disabled?na`
122
122
  &&&,
123
123
  &&&:hover,
124
124
  &&&:active {
@@ -137,7 +137,7 @@ Resources:
137
137
  opacity: 1;
138
138
  animation: fadein 200ms ease;
139
139
  }
140
- `,In=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>vt(Nm,{disabled:t||o,...n,children:t?An("span",{children:[vt(Xt,{}),r?vt("span",{children:r}):null]}):e}),Nm=eo(kn)`
140
+ `,Mn=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>vt(Dm,{disabled:t||o,...n,children:t?In("span",{children:[vt(eo,{}),r?vt("span",{children:r}):null]}):e}),Dm=to(Wn)`
141
141
  && {
142
142
  border-width: 1px;
143
143
  border-color: ${e=>e.warn?"var(--privy-color-error)":"var(--privy-color-foreground-4)"};
@@ -166,7 +166,7 @@ Resources:
166
166
  opacity: 1;
167
167
  animation: fadein 200ms ease;
168
168
  }
169
- `,ye=eo.button`
169
+ `,ye=to.button`
170
170
  && {
171
171
  padding: 12px 16px;
172
172
  font-weight: 500;
@@ -179,7 +179,7 @@ Resources:
179
179
  transition: opacity 200ms ease, background-color 200ms ease, color 200ms ease;
180
180
  user-select: none;
181
181
 
182
- ${e=>e.invisible&&Xi`
182
+ ${e=>e.invisible&&na`
183
183
  pointer-events: none;
184
184
  `}
185
185
 
@@ -197,10 +197,10 @@ Resources:
197
197
  cursor: not-allowed;
198
198
  }
199
199
  }
200
- `,Wn=eo.div`
200
+ `,Ln=to.div`
201
201
  /* Set to match height of SoftCtaButton to avoid reflow if conditionally rendered */
202
202
  height: 44px;
203
- `,Nn=eo.button`
203
+ `,On=to.button`
204
204
  display: flex;
205
205
  flex-direction: row;
206
206
  align-items: center;
@@ -238,7 +238,7 @@ Resources:
238
238
  color: var(--privy-color-foreground-3);
239
239
  cursor: not-allowed;
240
240
  }
241
- `;import Mm from"styled-components";var Wl=Mm.span`
241
+ `;import Um from"styled-components";var Ol=Um.span`
242
242
  && {
243
243
  width: 82px;
244
244
  height: 82px;
@@ -254,7 +254,7 @@ Resources:
254
254
  border-color: var(--privy-color-accent);
255
255
  border-bottom-color: var(--privy-color-accent);
256
256
  }
257
- `;import Ye from"styled-components";var pe=Ye.div`
257
+ `;import Qe from"styled-components";var pe=Qe.div`
258
258
  display: flex;
259
259
  flex-direction: column;
260
260
  align-items: flex-start;
@@ -262,35 +262,35 @@ Resources:
262
262
  margin-top: auto;
263
263
  gap: 16px;
264
264
  flex-grow: 100;
265
- `,ea=Ye.div`
265
+ `,ia=Qe.div`
266
266
  display: flex;
267
267
  flex-direction: column;
268
268
  align-items: center;
269
269
  justify-content: center;
270
270
  flex-grow: 1;
271
271
  width: 100%;
272
- `,Nl=Ye.div`
272
+ `,Dl=Qe.div`
273
273
  display: flex;
274
274
  flex-direction: column;
275
275
  align-items: center;
276
276
  width: 100%;
277
- `,at=Ye(ea)`
277
+ `,st=Qe(ia)`
278
278
  gap: 16px;
279
- `,ta=Ye.div`
279
+ `,aa=Qe.div`
280
280
  display: flex;
281
281
  flex-direction: column;
282
282
  width: 100%;
283
- `,to=Ye.div`
283
+ `,oo=Qe.div`
284
284
  display: flex;
285
285
  flex-direction: column;
286
286
  gap: 8px;
287
287
  min-height: 76px;
288
- `,Wb=Ye.div`
288
+ `,Db=Qe.div`
289
289
  display: flex;
290
290
  flex-direction: column;
291
291
  justify-content: space-between;
292
292
  height: 100%;
293
- `,Ml=Ye.div`
293
+ `,Ul=Qe.div`
294
294
  display: flex;
295
295
  flex-direction: column;
296
296
  justify-content: flex-start;
@@ -313,13 +313,13 @@ Resources:
313
313
  color: var(--privy-color-foreground-3);
314
314
  font-size: 14px;
315
315
  }
316
- `,P=Ye.div`
316
+ `,S=Qe.div`
317
317
  height: 16px;
318
- `,W=Ye.div`
318
+ `,W=Qe.div`
319
319
  height: 12px;
320
- `,Ll=Ye.div`
320
+ `,Fl=Qe.div`
321
321
  position: relative;
322
- `,Ol=Ye.div`
322
+ `,Bl=Qe.div`
323
323
  background-color: var(--privy-color-accent);
324
324
  display: flex;
325
325
  justify-content: center;
@@ -327,7 +327,7 @@ Resources:
327
327
  border-radius: 50%;
328
328
  border-color: white;
329
329
  border-width: 2px !important;
330
- `;import Dl from"styled-components";import{Fragment as Om,jsx as tr,jsxs as Ul}from"react/jsx-runtime";var Lm=Dl.div`
330
+ `;import Hl from"styled-components";import{Fragment as Bm,jsx as rr,jsxs as Gl}from"react/jsx-runtime";var Fm=Hl.div`
331
331
  margin-top: 16px;
332
332
  font-size: 12px;
333
333
  text-align: center;
@@ -336,7 +336,7 @@ Resources:
336
336
  && > a {
337
337
  color: var(--privy-color-accent);
338
338
  }
339
- `;function Mn(e){let{legal:{privacyPolicyUrl:t,termsAndConditionsUrl:o}}=e.app,r=!!t,n=!!o,i=r&&n;return!r&&!n?null:Ul(Lm,{children:["By logging in I agree to the"," ",n&&tr("a",{href:o,target:"_blank",children:i?"Terms":"Terms of Service"}),i&&" & ",r&&tr("a",{href:t,target:"_blank",children:"Privacy Policy"})]})}var O=({protectedByPrivy:e})=>tr(ee,{children:e?Ul(Om,{children:[tr(Zo,{className:"hide-on-mobile"}),tr("span",{className:"hide-on-mobile",children:tr("a",{href:"https://www.privy.io/",target:"_blank",children:"Protected by Privy"})})]}):null}),ee=Dl.div`
339
+ `;function Dn(e){let{legal:{privacyPolicyUrl:t,termsAndConditionsUrl:o}}=e.app,r=!!t,n=!!o,i=r&&n;return!r&&!n?null:Gl(Fm,{children:["By logging in I agree to the"," ",n&&rr("a",{href:o,target:"_blank",children:i?"Terms":"Terms of Service"}),i&&" & ",r&&rr("a",{href:t,target:"_blank",children:"Privacy Policy"})]})}var D=({protectedByPrivy:e})=>rr(ee,{children:e?Gl(Bm,{children:[rr(er,{className:"hide-on-mobile"}),rr("span",{className:"hide-on-mobile",children:rr("a",{href:"https://www.privy.io/",target:"_blank",children:"Protected by Privy"})})]}):null}),ee=Hl.div`
340
340
  display: flex;
341
341
  align-items: center;
342
342
  justify-content: center;
@@ -365,7 +365,7 @@ Resources:
365
365
  @media all and (display-mode: standalone) {
366
366
  padding-bottom: 30px;
367
367
  }
368
- `;import{ArrowLeftIcon as Dm,XMarkIcon as Um}from"@heroicons/react/24/outline";import Bl from"styled-components";import{jsx as st,jsxs as zm}from"react/jsx-runtime";var Fl=()=>st("div",{}),Fm=({backFn:e})=>st("div",{children:st(Dm,{height:"16px",width:"16px",strokeWidth:2,onClick:e})}),Bm=e=>st("div",{children:st("div",{children:st(Um,{height:"16px",width:"16px",strokeWidth:2,onClick:e.onClose})})});var x=({backFn:e,onClose:t,title:o,closeable:r=!0})=>{let{closePrivyModal:n}=A(),{app:i}=b();return zm(Hm,{children:[e?st(Fm,{backFn:e}):st(Fl,{}),o&&st(Gm,{children:o}),i?.render.inDialog&&r?st(Bm,{onClose:t||(()=>n())}):st(Fl,{})]})},Hm=Bl.div`
368
+ `;import{ArrowLeftIcon as Hm,XMarkIcon as Gm}from"@heroicons/react/24/outline";import $l from"styled-components";import{jsx as lt,jsxs as jm}from"react/jsx-runtime";var zl=()=>lt("div",{}),zm=({backFn:e})=>lt("div",{children:lt(Hm,{height:"16px",width:"16px",strokeWidth:2,onClick:e})}),$m=e=>lt("div",{children:lt("div",{children:lt(Gm,{height:"16px",width:"16px",strokeWidth:2,onClick:e.onClose})})});var T=({backFn:e,onClose:t,title:o,closeable:r=!0})=>{let{closePrivyModal:n}=A(),{app:i}=C();return jm(Vm,{children:[e?lt(zm,{backFn:e}):lt(zl,{}),o&&lt(qm,{children:o}),i?.render.inDialog&&r?lt($m,{onClose:t||(()=>n())}):lt(zl,{})]})},Vm=$l.div`
369
369
  padding-top: 16px;
370
370
  display: flex;
371
371
  align-items: center;
@@ -422,14 +422,14 @@ Resources:
422
422
  height: 30px;
423
423
  margin-bottom: 10px;
424
424
  }
425
- `,Gm=Bl.div`
425
+ `,qm=$l.div`
426
426
  overflow: hidden;
427
427
  white-space: nowrap;
428
428
  max-width: 100%;
429
429
  text-overflow: ellipsis;
430
430
  text-align: center;
431
431
  color: var(--privy-color-foreground-2);
432
- `;import{jsx as Hl}from"react/jsx-runtime";var Gl=({style:e,...t})=>Hl("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:Hl("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 oa,jsx as Je,jsxs as Ln}from"react/jsx-runtime";var zl=()=>{let{navigate:e,app:t}=b(),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 Ln(oa,{children:[Je(x,{}),Je(P,{}),Ln($m,{children:[Je(qm,{children:Ln("div",{children:[Je(Wl,{}),Je(Gl,{style:{width:"38px",height:"38px",strokeWidth:"1",stroke:"var(--privy-color-accent)",fill:"var(--privy-color-accent)"}})]})}),Ln(Vm,{children:[typeof o=="string"?Je("h3",{children:o}):Je(oa,{children:o}),typeof r=="string"?Je("p",{children:r}):Je(oa,{children:r})]}),t?.allowlistConfig.errorCtaLink?Je(ye,{as:"a",href:t.allowlistConfig.errorCtaLink,children:n}):Je(ye,{onClick:()=>{e("LANDING")},children:n})]}),Je(ee,{})]})},$m=ra.div`
432
+ `;import{jsx as Vl}from"react/jsx-runtime";var ql=({style:e,...t})=>Vl("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:Vl("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 sa,jsx as Ze,jsxs as Un}from"react/jsx-runtime";var jl=()=>{let{navigate:e,app:t}=C(),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 Un(sa,{children:[Ze(T,{}),Ze(S,{}),Un(Km,{children:[Ze(Jm,{children:Un("div",{children:[Ze(Ol,{}),Ze(ql,{style:{width:"38px",height:"38px",strokeWidth:"1",stroke:"var(--privy-color-accent)",fill:"var(--privy-color-accent)"}})]})}),Un(Ym,{children:[typeof o=="string"?Ze("h3",{children:o}):Ze(sa,{children:o}),typeof r=="string"?Ze("p",{children:r}):Ze(sa,{children:r})]}),t?.allowlistConfig.errorCtaLink?Ze(ye,{as:"a",href:t.allowlistConfig.errorCtaLink,children:n}):Ze(ye,{onClick:()=>{e("LANDING")},children:n})]}),Ze(ee,{})]})},Km=la.div`
433
433
  display: flex;
434
434
  flex-direction: column;
435
435
  align-items: center;
@@ -437,11 +437,11 @@ Resources:
437
437
  margin-left: 27px;
438
438
  margin-right: 27px;
439
439
  gap: 24px;
440
- `,Vm=ra.div`
440
+ `,Ym=la.div`
441
441
  display: flex;
442
442
  flex-direction: column;
443
443
  gap: 8px;
444
- `,qm=ra.div`
444
+ `,Jm=la.div`
445
445
  display: flex;
446
446
  flex-direction: column;
447
447
  justify-content: center;
@@ -464,9 +464,9 @@ Resources:
464
464
  left: -19px;
465
465
  top: -19px;
466
466
  }
467
- `;import{EnvelopeIcon as Ym,PhoneIcon as Jm}from"@heroicons/react/24/outline";import{useEffect as ql,useState as On}from"react";import{isMobile as Qm}from"react-device-detect";import Or from"styled-components";import na from"styled-components";import{Fragment as Km,jsx as Lr,jsxs as Vl}from"react/jsx-runtime";var wt=({title:e,description:t,children:o,...r})=>Lr($l,{...r,children:Vl(Km,{children:[Lr("h3",{children:e}),typeof t=="string"?Lr("p",{children:t}):t,o]})}),oo=na(wt)`
467
+ `;import{EnvelopeIcon as Xm,PhoneIcon as ef}from"@heroicons/react/24/outline";import{useEffect as Jl,useState as Fn}from"react";import{isMobile as tf}from"react-device-detect";import Fr from"styled-components";import ca from"styled-components";import{Fragment as Zm,jsx as Ur,jsxs as Yl}from"react/jsx-runtime";var wt=({title:e,description:t,children:o,...r})=>Ur(Kl,{...r,children:Yl(Zm,{children:[Ur("h3",{children:e}),typeof t=="string"?Ur("p",{children:t}):t,o]})}),ro=ca(wt)`
468
468
  margin-bottom: 24px;
469
- `,le=({title:e,description:t,icon:o,children:r,...n})=>Vl(jm,{...n,children:[o||null,Lr("h3",{children:e}),typeof t=="string"?Lr("p",{children:t}):t,r]}),$l=na.div`
469
+ `,le=({title:e,description:t,icon:o,children:r,...n})=>Yl(Qm,{...n,children:[o||null,Ur("h3",{children:e}),typeof t=="string"?Ur("p",{children:t}):t,r]}),Kl=ca.div`
470
470
  display: flex;
471
471
  flex-direction: column;
472
472
  justify-content: flex-start;
@@ -486,7 +486,7 @@ Resources:
486
486
  color: var(--privy-color-foreground-2);
487
487
  font-size: 14px;
488
488
  }
489
- `,jm=na($l)`
489
+ `,Qm=ca(Kl)`
490
490
  align-items: center;
491
491
  text-align: center;
492
492
  gap: 16px;
@@ -494,7 +494,7 @@ Resources:
494
494
  h3 {
495
495
  margin-bottom: 24px;
496
496
  }
497
- `;import{Fragment as ia,jsx as ue,jsxs as ro}from"react/jsx-runtime";var aa=6,jl=new Array(aa).fill(""),Zm=1400;var Yl=()=>{let{app:e,navigate:t,setModalData:o}=b(),{closePrivyModal:r,resendEmailCode:n,resendSmsCode:i,getAuthMeta:a,loginWithCode:c,updateWallets:s}=A(),{authenticated:l,user:y}=V(),[m,v]=On(jl),[h,w]=On(!1),[_,S]=On(null),[T,C]=On(null),D=a()?.email?0:1,I=e?.render.inDialog?Fe:0,k=e?.render.inDialog?I-500:0;ql(()=>{if(l&&h&&y)if(Yt(y,e?.embeddedWallets?.createOnLogin)){let H=setTimeout(()=>{o({createWallet:{onSuccess:()=>{},onFailure:Z=>console.error(Z),callAuthOnSuccessOnClose:!0}}),t("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},k);return()=>clearTimeout(H)}else{s();let H=setTimeout(r,I);return()=>clearTimeout(H)}},[l,h,y]),ql(()=>{if(_&&T===0){let K=setTimeout(()=>{v(jl),S(null),document.querySelector("input[name=code-0]")?.focus()},Zm);return()=>clearTimeout(K)}},[_]);let N=K=>{let H=K.currentTarget.value.replace(" ","");if(H==="")return;if(isNaN(Number(H))){S("Code should be numeric"),C(1);return}S(null),C(null);let Z=Number(K.currentTarget.name?.charAt(5)),L=[...H||[""]].slice(0,aa-Z),We=[...m.slice(0,Z),...L,...m.slice(Z+L.length)];v(We);let X=L.length,j=Math.min(Math.max(Z+X,0),aa-1);isNaN(Number(K.currentTarget.value))||document.querySelector(`input[name=code-${j}]`)?.focus(),We.every(J=>J&&!isNaN(+J))&&(document.querySelector(`input[name=code-${j}]`)?.blur(),c(We.join("")).then(()=>w(!0)).catch(fe=>{fe?.status===422?S("Invalid or expired verification code"):S("Issue verifying code"),C(0)})),K.preventDefault()},U=K=>{T===1&&(S(null),C(null));let H=[...m.slice(0,K),"",...m.slice(K+1)];v(H),K>0&&document.querySelector(`input[name=code-${K-1}]`)?.focus()},ae=D==0?ue(Ym,{color:"var(--privy-color-accent)",strokeWidth:2,height:"48px",width:"48px"}):ue(Jm,{color:"var(--privy-color-accent)",strokeWidth:2,height:"40px",width:"40px"}),F=D==0?ro("p",{children:["Please check ",ue(Kl,{children:a()?.email})," for an email from privy.io and enter your code below."]}):ro("p",{children:["Please check ",ue(Kl,{children:a()?.phoneNumber})," for a message from ",e?.name||"Privy"," and enter your code below."]});return ro(ia,{children:[ue(x,{},"header"),ue(P,{}),ro(Xm,{children:[ue(le,{title:"Enter confirmation code",description:F,icon:ae}),ro(Nl,{children:[ro(ef,{children:[ue(tf,{fail:!!_,success:h,children:ue("span",{children:_||(h?"Success!":"")})}),ue("div",{children:m.map((K,H)=>ue("input",{name:`code-${H}`,type:"text",value:m[H],onChange:N,onKeyUp:Z=>{Z.key==="Backspace"&&U(H)},inputMode:"numeric",autoFocus:H===0,pattern:"[0-9]",className:`${h?"success":""} ${_?"fail":""}`,autoComplete:Qm?"one-time-code":"off"},H))})]}),ue(of,{children:D==0?ro(ia,{children:[ue("span",{children:"Didn't get an email?"}),ue("button",{onClick:n,children:"Resend Code"})]}):ro(ia,{children:[ue("span",{children:"Didn't get a message?"}),ue("button",{onClick:i,children:"Resend Code"})]})})]})]}),ue(W,{}),ue(O,{protectedByPrivy:!0})]})},Xm=Or.div`
497
+ `;import{Fragment as da,jsx as ue,jsxs as no}from"react/jsx-runtime";var pa=6,Ql=new Array(pa).fill(""),of=1400;var Xl=()=>{let{app:e,navigate:t,setModalData:o}=C(),{closePrivyModal:r,resendEmailCode:n,resendSmsCode:i,getAuthMeta:a,loginWithCode:c,updateWallets:l}=A(),{authenticated:s,user:y}=V(),[h,g]=Fn(Ql),[m,w]=Fn(!1),[_,P]=Fn(null),[x,b]=Fn(null),U=a()?.email?0:1,k=e?.render.inDialog?He:0,L=e?.render.inDialog?k-500:0;Jl(()=>{if(s&&m&&y)if(Jt(y,e?.embeddedWallets?.createOnLogin)){let H=setTimeout(()=>{o({createWallet:{onSuccess:()=>{},onFailure:Z=>console.error(Z),callAuthOnSuccessOnClose:!0}}),t("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},L);return()=>clearTimeout(H)}else{l();let H=setTimeout(r,k);return()=>clearTimeout(H)}},[s,m,y]),Jl(()=>{if(_&&x===0){let K=setTimeout(()=>{g(Ql),P(null),document.querySelector("input[name=code-0]")?.focus()},of);return()=>clearTimeout(K)}},[_]);let N=K=>{let H=K.currentTarget.value.replace(" ","");if(H==="")return;if(isNaN(Number(H))){P("Code should be numeric"),b(1);return}P(null),b(null);let Z=Number(K.currentTarget.name?.charAt(5)),O=[...H||[""]].slice(0,pa-Z),Me=[...h.slice(0,Z),...O,...h.slice(Z+O.length)];g(Me);let X=O.length,j=Math.min(Math.max(Z+X,0),pa-1);isNaN(Number(K.currentTarget.value))||document.querySelector(`input[name=code-${j}]`)?.focus(),Me.every(J=>J&&!isNaN(+J))&&(document.querySelector(`input[name=code-${j}]`)?.blur(),c(Me.join("")).then(()=>w(!0)).catch(fe=>{fe?.status===422?P("Invalid or expired verification code"):P("Issue verifying code"),b(0)})),K.preventDefault()},I=K=>{x===1&&(P(null),b(null));let H=[...h.slice(0,K),"",...h.slice(K+1)];g(H),K>0&&document.querySelector(`input[name=code-${K-1}]`)?.focus()},ne=U==0?ue(Xm,{color:"var(--privy-color-accent)",strokeWidth:2,height:"48px",width:"48px"}):ue(ef,{color:"var(--privy-color-accent)",strokeWidth:2,height:"40px",width:"40px"}),F=U==0?no("p",{children:["Please check ",ue(Zl,{children:a()?.email})," for an email from privy.io and enter your code below."]}):no("p",{children:["Please check ",ue(Zl,{children:a()?.phoneNumber})," for a message from ",e?.name||"Privy"," and enter your code below."]});return no(da,{children:[ue(T,{},"header"),ue(S,{}),no(rf,{children:[ue(le,{title:"Enter confirmation code",description:F,icon:ne}),no(Dl,{children:[no(nf,{children:[ue(af,{fail:!!_,success:m,children:ue("span",{children:_||(m?"Success!":"")})}),ue("div",{children:h.map((K,H)=>ue("input",{name:`code-${H}`,type:"text",value:h[H],onChange:N,onKeyUp:Z=>{Z.key==="Backspace"&&I(H)},inputMode:"numeric",autoFocus:H===0,pattern:"[0-9]",className:`${m?"success":""} ${_?"fail":""}`,autoComplete:tf?"one-time-code":"off"},H))})]}),ue(sf,{children:U==0?no(da,{children:[ue("span",{children:"Didn't get an email?"}),ue("button",{onClick:n,children:"Resend Code"})]}):no(da,{children:[ue("span",{children:"Didn't get a message?"}),ue("button",{onClick:i,children:"Resend Code"})]})})]})]}),ue(W,{}),ue(D,{protectedByPrivy:!0})]})},rf=Fr.div`
498
498
  display: flex;
499
499
  flex-direction: column;
500
500
  align-items: flex-start;
@@ -502,7 +502,7 @@ Resources:
502
502
  margin: auto;
503
503
  gap: 16px;
504
504
  flex-grow: 1;
505
- `,ef=Or.div`
505
+ `,nf=Fr.div`
506
506
  display: flex;
507
507
  flex-direction: column;
508
508
  width: 100%;
@@ -558,7 +558,7 @@ Resources:
558
558
  transform: translate(1px, 0px);
559
559
  }
560
560
  }
561
- `,tf=Or.div`
561
+ `,af=Fr.div`
562
562
  line-height: 20px;
563
563
  height: 20px;
564
564
  font-size: 13px;
@@ -566,7 +566,7 @@ Resources:
566
566
  display: flex;
567
567
  justify-content: flex-end;
568
568
  width: 100%;
569
- `,of=Or.div`
569
+ `,sf=Fr.div`
570
570
  font-size: 13px;
571
571
  color: var(--privy-color-foreground-3);
572
572
  display: flex;
@@ -580,20 +580,20 @@ Resources:
580
580
  > button {
581
581
  text-decoration: underline;
582
582
  }
583
- `,Kl=Or.span`
583
+ `,Zl=Fr.span`
584
584
  font-weight: 500;
585
585
  word-break: break-all;
586
- `;import{isMobile as sa}from"react-device-detect";import Ql from"styled-components";import rf from"styled-components";var Jl=rf.span`
586
+ `;import{isMobile as ua}from"react-device-detect";import tc from"styled-components";import lf from"styled-components";var ec=lf.span`
587
587
  @media (max-width: 440px) {
588
588
  display: none;
589
589
  }
590
- `;import{jsx as Qe,jsxs as or}from"react/jsx-runtime";var no=({connectOnly:e})=>{let{navigate:t}=b(),{initLoginWithWallet:o,connectWallet:r}=A();return or(nf,{children:[or(Dn,{onClick:()=>{kr()?e?(r("injected","metamask"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("injected","metamask"),t("AWAITING_CONNECTION")):sa?e?(r("wallet_connect_v2","metamask"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("wallet_connect_v2","metamask"),t("AWAITING_CONNECTION")):t("INSTALL_METAMASK_SCREEN")},children:[Qe(be,{}),Qe("span",{children:"MetaMask"}),Qe("span",{children:kr()?"Connect":"Install"})]}),or(Dn,{onClick:()=>{e?(r("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECTION"))},children:[Qe(mt,{}),or("span",{children:["Coinbase",Qe(Jl,{children:" Wallet"})]}),Qe("span",{children:"Connect"})]}),(sa||je())&&or(Dn,{id:"privy-phantom-button",onClick:()=>{je()?e?(r("injected","phantom"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("injected","phantom"),t("AWAITING_CONNECTION")):t(sa?"PHANTOM_INTERSTITIAL_SCREEN":"INSTALL_PHANTOM_SCREEN")},children:[Qe(Ke,{}),Qe("span",{children:"Phantom"}),Qe("span",{children:je()?"Connect":"Install"})]}),or(Dn,{onClick:()=>{e?(r("wallet_connect_v2","unknown"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("wallet_connect_v2","unknown"),t("AWAITING_CONNECTION"))},children:[Qe(er,{}),Qe("span",{children:"WalletConnect"}),Qe("span",{children:"Connect"})]})]})},nf=Ql.div`
590
+ `;import{jsx as Xe,jsxs as nr}from"react/jsx-runtime";var io=({connectOnly:e})=>{let{navigate:t}=C(),{initLoginWithWallet:o,connectWallet:r}=A();return nr(cf,{children:[nr(Bn,{onClick:()=>{Wr()?e?(r("injected","metamask"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("injected","metamask"),t("AWAITING_CONNECTION")):ua?e?(r("wallet_connect_v2","metamask"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("wallet_connect_v2","metamask"),t("AWAITING_CONNECTION")):t("INSTALL_METAMASK_SCREEN")},children:[Xe(Ee,{}),Xe("span",{children:"MetaMask"}),Xe("span",{children:Wr()?"Connect":"Install"})]}),nr(Bn,{onClick:()=>{e?(r("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECTION"))},children:[Xe(mt,{}),nr("span",{children:["Coinbase",Xe(ec,{children:" Wallet"})]}),Xe("span",{children:"Connect"})]}),(ua||Ye())&&nr(Bn,{id:"privy-phantom-button",onClick:()=>{Ye()?e?(r("injected","phantom"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("injected","phantom"),t("AWAITING_CONNECTION")):t(ua?"PHANTOM_INTERSTITIAL_SCREEN":"INSTALL_PHANTOM_SCREEN")},children:[Xe(Je,{}),Xe("span",{children:"Phantom"}),Xe("span",{children:Ye()?"Connect":"Install"})]}),nr(Bn,{onClick:()=>{e?(r("wallet_connect_v2","unknown"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("wallet_connect_v2","unknown"),t("AWAITING_CONNECTION"))},children:[Xe(or,{}),Xe("span",{children:"WalletConnect"}),Xe("span",{children:"Connect"})]})]})},cf=tc.div`
591
591
  display: flex;
592
592
  flex-direction: column;
593
593
  align-items: flex-start;
594
594
  gap: 8px;
595
595
  width: 100%;
596
- `,Dn=Ql.button`
596
+ `,Bn=tc.button`
597
597
  display: flex;
598
598
  flex-direction: row;
599
599
  align-items: center;
@@ -646,7 +646,7 @@ Resources:
646
646
  display: none;
647
647
  }
648
648
  }
649
- `;import af from"styled-components";import{jsx as Zl,jsxs as lf}from"react/jsx-runtime";var io=()=>{let{navigate:e}=b();return lf(sf,{children:[Zl("span",{children:"Don\u2019t have a wallet? "}),Zl("button",{onClick:()=>{e("WALLET_EDUCATION")},children:"Create one now."})]})},sf=af.div`
649
+ `;import df from"styled-components";import{jsx as oc,jsxs as uf}from"react/jsx-runtime";var ao=()=>{let{navigate:e}=C();return uf(pf,{children:[oc("span",{children:"Don\u2019t have a wallet? "}),oc("button",{onClick:()=>{e("WALLET_EDUCATION")},children:"Create one now."})]})},pf=df.div`
650
650
  font-size: 13px;
651
651
  color: var(--privy-color-foreground-3);
652
652
 
@@ -657,13 +657,13 @@ Resources:
657
657
  @media (max-width: 440px) {
658
658
  margin-top: 4px;
659
659
  }
660
- `;import{Fragment as cf,jsx as _o,jsxs as Xl}from"react/jsx-runtime";var ec=()=>{let{app:e}=b(),t=`Connect a wallet to ${e?.name}`;return Xl(cf,{children:[_o(x,{},"header"),_o(P,{}),_o(oo,{title:"Connect your wallet",description:t}),Xl(pe,{children:[_o(no,{connectOnly:!0}),_o(io,{})]}),_o(W,{}),_o(O,{protectedByPrivy:!0})]})};import la from"styled-components";import df from"react";import{jsx as tc}from"react/jsx-runtime";var Un=()=>{let{app:e}=b(),t=e?.appearance?.logo,o=`${e?.name} logo`,r={maxHeight:"50px"},n="100%",i="auto";return t?typeof t=="string"?tc("div",{children:tc("img",{height:n,width:i,src:t,alt:o,style:r})}):t.type==="svg"||t.type==="img"?df.cloneElement(t,{height:n,width:i,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{Fragment as ff,jsx as Nt,jsxs as oc}from"react/jsx-runtime";var rc=()=>{let{app:e}=b();return oc(ff,{children:[Nt(x,{},"header"),e?.appearance.logo?Nt(mf,{children:Nt(Un,{})}):null,oc(uf,{children:[Nt(pf,{children:Nt("h4",{children:"Connect Wallet"})}),Nt(no,{connectOnly:!0}),Nt(io,{})]}),e&&Nt(Mn,{app:e}),Nt(O,{protectedByPrivy:!0})]})},pf=la.div`
660
+ `;import{Fragment as mf,jsx as So,jsxs as rc}from"react/jsx-runtime";var nc=()=>{let{app:e}=C(),t=`Connect a wallet to ${e?.name}`;return rc(mf,{children:[So(T,{},"header"),So(S,{}),So(ro,{title:"Connect your wallet",description:t}),rc(pe,{children:[So(io,{connectOnly:!0}),So(ao,{})]}),So(W,{}),So(D,{protectedByPrivy:!0})]})};import ma from"styled-components";import ff from"react";import{jsx as ic}from"react/jsx-runtime";var Hn=()=>{let{app:e}=C(),t=e?.appearance?.logo,o=`${e?.name} logo`,r={maxHeight:"50px"},n="100%",i="auto";return t?typeof t=="string"?ic("div",{children:ic("img",{height:n,width:i,src:t,alt:o,style:r})}):t.type==="svg"||t.type==="img"?ff.cloneElement(t,{height:n,width:i,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{Fragment as vf,jsx as Nt,jsxs as ac}from"react/jsx-runtime";var sc=()=>{let{app:e}=C();return ac(vf,{children:[Nt(T,{},"header"),e?.appearance.logo?Nt(gf,{children:Nt(Hn,{})}):null,ac(yf,{children:[Nt(hf,{children:Nt("h4",{children:"Connect Wallet"})}),Nt(io,{connectOnly:!0}),Nt(ao,{})]}),e&&Nt(Dn,{app:e}),Nt(D,{protectedByPrivy:!0})]})},hf=ma.div`
661
661
  font-weight: 600;
662
662
  color: 'var(--privy-color-foreground)';
663
663
  display: flex;
664
664
  justify-content: center;
665
665
  align-items: center;
666
- `,uf=la.div`
666
+ `,yf=ma.div`
667
667
  display: flex;
668
668
  flex-direction: column;
669
669
  align-items: flex-start;
@@ -684,7 +684,7 @@ Resources:
684
684
  border-radius: '0';
685
685
  }
686
686
  cursor: 'inherit';
687
- `,mf=la.div`
687
+ `,gf=ma.div`
688
688
  display: flex;
689
689
  flex-direction: column;
690
690
  align-items: center;
@@ -693,7 +693,7 @@ Resources:
693
693
  @media (max-width: 440px) {
694
694
  padding: 10px 10px 20px;
695
695
  }
696
- `;import{useEffect as sc,useState as lc}from"react";import gf from"styled-components";import{useEffect as ca,useState as Dr}from"react";import{isMobile as da}from"react-device-detect";import nc from"styled-components";import{Fragment as ac,jsx as ge,jsxs as Bn}from"react/jsx-runtime";var Fn=2,Ur={metamask:{name:"MetaMask",component:be},phantom:{name:"Phantom",component:Ke},coinbase_wallet:{name:"Coinbase Wallet",component:mt},wallet_connect:{name:"WalletConnect",component:er},embedded:{name:"Privy Wallet",component:Zo}},pa=e=>e?.privyErrorCode==="linked_to_another_user"?It.ERROR_USER_EXISTS:e instanceof Ce&&!e.details.default?e.details:e instanceof Yo?It.ERROR_TIMED_OUT:e instanceof Jo?It.ERROR_USER_REJECTED_CONNECTION:It.ERROR_WALLET_CONNECTION,ic=()=>{let[e,t]=Dr(!1),[o,r]=Dr(!1),[n,i]=Dr(void 0),{app:a,navigate:c,navigateBack:s,lastScreen:l,currentScreen:y,setModalData:m}=b(),{getAuthFlow:v,walletConnectionStatus:h,closePrivyModal:w,loginWithWallet:_,updateWallets:S}=A(),{walletConnectors:T}=V(),[C,D]=Dr(0),{user:I}=V(),[k]=Dr(I?.linkedAccounts.length||0),N=da&&h?.connector?.connectorType==="wallet_connect_v2"||da&&h?.connector?.connectorType==="coinbase_wallet"||da&&h?.connector?.connectorType==="injected"&&h?.connector?.walletClientType==="phantom",U=h?.status==="connected",ae=h?.status==="switching_to_supported_chain";ca(()=>{let G=v();if(G&&N&&U&&!G.preparedMessage){G.buildSiweMessage();return}!G||N||!U||(async()=>{r(!0),i(void 0);try{h?.connector?.connectorType==="wallet_connect_v2"&&h?.connector?.walletClientType==="metamask"&&await Gi(2500),await K()}catch(kt){console.warn("Auto-prompted signature failed",kt)}finally{r(!1)}})()},[C,U]),ca(()=>{if(I&&e){let G;if(Yt(I,a?.embeddedWallets?.createOnLogin)){let kt=a?.render.inDialog?Fe:0,br=a?.render.inDialog?kt-500:0;G=setTimeout(()=>{m({createWallet:{onSuccess:()=>{},onFailure:Rt=>console.error(Rt),callAuthOnSuccessOnClose:!0}}),c("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},br)}else S(),G=setTimeout(w,Fe);return()=>clearTimeout(G)}},[I,e]);let F=G=>{if(G?.privyErrorCode==="allowlist_rejected"){c("ALLOWLIST_REJECTION_SCREEN");return}i(pa(G))};async function K(){try{if(await _(),!a?.render.inDialog)return w();t(!0)}catch(G){F(G)}finally{r(!1)}}ca(()=>{h?.connectError&&F(h?.connectError)},[h]);let H=h?.connector?.connectorType||"metamask",Z=h?.connector?.walletClientType||"metamask",L=h?.connector?.walletBranding.name||Ur[Z]?.name||"MetaMask",We=h?.connector?.walletBranding.icon||Ur[Z]?.component||(G=>ge(be,{...G})),X;e?X=`Successfully connected with ${L}`:n?X=n.message:ae?X="Switching networks":U?X=o&&N?"Signing":"Sign to verify":X=`Waiting for ${L}`;let j="Don\u2019t see your wallet modal? Check your other browser windows.";if(e){let G=I?.linkedAccounts.length||0;k===G?j="Wallet was already linked.":j="You\u2019re good to go!"}else C>=Fn&&n?j="Unable to connect wallet":n?j=n.detail:ae?j="Switch your wallet to the requested network.":U&&N?j="Sign the message in your wallet to verify it belongs to you.":Z==="metamask"?j="For the best experience, connect only one wallet at a time.":H==="wallet_connect"?j="Open your mobile wallet app to continue":H==="coinbase_wallet"&&(fn()||(ji(I)?j="Continue with the Coinbase app. Not the right wallet? Reset your connection below.":j="Open the Coinbase app on your phone to continue."));let J=T?.walletConnectors?.find(G=>G.walletClientType==="coinbase_wallet"),fe=Z==="coinbase_wallet"&&(ji(I)||n===It.ERROR_USER_EXISTS);return Bn(ac,{children:[ge(x,{backFn:y===l?void 0:s}),ge(P,{}),Bn(hf,{children:[ge(ua,{walletLogo:We,success:e,fail:!!n}),Bn(to,{children:[ge("h3",{children:X}),ge("p",{children:j})]}),ge(Wn,{children:fe?ge(ye,{onClick:()=>J&&J?.disconnect(),invisible:e,disabled:e,children:"Use a different wallet"}):n==It.ERROR_USER_EXISTS&&y!==l?ge(ye,{onClick:s,children:"Use a different wallet"}):U&&!e&&N?ge(ye,{onClick:()=>{r(!0),K()},disabled:o,children:o?"Signing":"Sign with your wallet"}):!e&&n?.retryable&&C<Fn?ge(ye,{onClick:()=>{D(C+1),i(void 0),U?(r(!0),K()):h?.connectRetry()},invisible:e||!n?.retryable||C>=Fn,disabled:!e&&(!n?.retryable||C>=Fn),children:"Retry"}):null})]}),ge(ee,{})]})},hf=nc.div`
696
+ `;import{useEffect as pc,useState as uc}from"react";import bf from"styled-components";import{useEffect as fa,useState as Br}from"react";import{isMobile as ha}from"react-device-detect";import lc from"styled-components";import{Fragment as dc,jsx as ge,jsxs as zn}from"react/jsx-runtime";var Gn=2,Hr={metamask:{name:"MetaMask",component:Ee},phantom:{name:"Phantom",component:Je},coinbase_wallet:{name:"Coinbase Wallet",component:mt},wallet_connect:{name:"WalletConnect",component:or},embedded:{name:"Privy Wallet",component:er}},ya=e=>e?.privyErrorCode==="linked_to_another_user"?It.ERROR_USER_EXISTS:e instanceof be&&!e.details.default?e.details:e instanceof Qo?It.ERROR_TIMED_OUT:e instanceof Zo?It.ERROR_USER_REJECTED_CONNECTION:It.ERROR_WALLET_CONNECTION,cc=()=>{let[e,t]=Br(!1),[o,r]=Br(!1),[n,i]=Br(void 0),{app:a,navigate:c,navigateBack:l,lastScreen:s,currentScreen:y,setModalData:h}=C(),{getAuthFlow:g,walletConnectionStatus:m,closePrivyModal:w,loginWithWallet:_,updateWallets:P}=A(),{walletConnectors:x}=V(),[b,U]=Br(0),{user:k}=V(),[L]=Br(k?.linkedAccounts.length||0),N=ha&&m?.connector?.connectorType==="wallet_connect_v2"||ha&&m?.connector?.connectorType==="coinbase_wallet"||ha&&m?.connector?.connectorType==="injected"&&m?.connector?.walletClientType==="phantom",I=m?.status==="connected",ne=m?.status==="switching_to_supported_chain";fa(()=>{let G=g();if(G&&N&&I&&!G.preparedMessage){G.buildSiweMessage();return}!G||N||!I||(async()=>{r(!0),i(void 0);try{m?.connector?.connectorType==="wallet_connect_v2"&&m?.connector?.walletClientType==="metamask"&&await ji(2500),await K()}catch(kt){console.warn("Auto-prompted signature failed",kt)}finally{r(!1)}})()},[b,I]),fa(()=>{if(k&&e){let G;if(Jt(k,a?.embeddedWallets?.createOnLogin)){let kt=a?.render.inDialog?He:0,Tr=a?.render.inDialog?kt-500:0;G=setTimeout(()=>{h({createWallet:{onSuccess:()=>{},onFailure:Rt=>console.error(Rt),callAuthOnSuccessOnClose:!0}}),c("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},Tr)}else P(),G=setTimeout(w,He);return()=>clearTimeout(G)}},[k,e]);let F=G=>{if(G?.privyErrorCode==="allowlist_rejected"){c("ALLOWLIST_REJECTION_SCREEN");return}i(ya(G))};async function K(){try{if(await _(),!a?.render.inDialog)return w();t(!0)}catch(G){F(G)}finally{r(!1)}}fa(()=>{m?.connectError&&F(m?.connectError)},[m]);let H=m?.connector?.connectorType||"metamask",Z=m?.connector?.walletClientType||"metamask",O=m?.connector?.walletBranding.name||Hr[Z]?.name||"MetaMask",Me=m?.connector?.walletBranding.icon||Hr[Z]?.component||(G=>ge(Ee,{...G})),X;e?X=`Successfully connected with ${O}`:n?X=n.message:ne?X="Switching networks":I?X=o&&N?"Signing":"Sign to verify":X=`Waiting for ${O}`;let j="Don\u2019t see your wallet modal? Check your other browser windows.";if(e){let G=k?.linkedAccounts.length||0;L===G?j="Wallet was already linked.":j="You\u2019re good to go!"}else b>=Gn&&n?j="Unable to connect wallet":n?j=n.detail:ne?j="Switch your wallet to the requested network.":I&&N?j="Sign the message in your wallet to verify it belongs to you.":Z==="metamask"?j="For the best experience, connect only one wallet at a time.":H==="wallet_connect"?j="Open your mobile wallet app to continue":H==="coinbase_wallet"&&(gn()||(Zi(k)?j="Continue with the Coinbase app. Not the right wallet? Reset your connection below.":j="Open the Coinbase app on your phone to continue."));let J=x?.walletConnectors?.find(G=>G.walletClientType==="coinbase_wallet"),fe=Z==="coinbase_wallet"&&(Zi(k)||n===It.ERROR_USER_EXISTS);return zn(dc,{children:[ge(T,{backFn:y===s?void 0:l}),ge(S,{}),zn(wf,{children:[ge(ga,{walletLogo:Me,success:e,fail:!!n}),zn(oo,{children:[ge("h3",{children:X}),ge("p",{children:j})]}),ge(Ln,{children:fe?ge(ye,{onClick:()=>J&&J?.disconnect(),invisible:e,disabled:e,children:"Use a different wallet"}):n==It.ERROR_USER_EXISTS&&y!==s?ge(ye,{onClick:l,children:"Use a different wallet"}):I&&!e&&N?ge(ye,{onClick:()=>{r(!0),K()},disabled:o,children:o?"Signing":"Sign with your wallet"}):!e&&n?.retryable&&b<Gn?ge(ye,{onClick:()=>{U(b+1),i(void 0),I?(r(!0),K()):m?.connectRetry()},invisible:e||!n?.retryable||b>=Gn,disabled:!e&&(!n?.retryable||b>=Gn),children:"Retry"}):null})]}),ge(ee,{})]})},wf=lc.div`
697
697
  display: flex;
698
698
  flex-direction: column;
699
699
  align-items: center;
@@ -701,7 +701,7 @@ Resources:
701
701
  margin-left: 27px;
702
702
  margin-right: 27px;
703
703
  gap: 24px;
704
- `,yf=nc.div`
704
+ `,Cf=lc.div`
705
705
  display: flex;
706
706
  flex-direction: column;
707
707
  justify-content: center;
@@ -724,7 +724,7 @@ Resources:
724
724
  left: -19px;
725
725
  top: -19px;
726
726
  }
727
- `,ua=e=>{let t=e.walletLogo;return ge(ac,{children:ge(yf,{children:Bn("div",{children:[ge(Sn,{success:e.success,fail:e.fail}),typeof t=="string"?ge("span",{style:{background:`url('${t}')`,height:"38px",width:"38px",borderRadius:"6px",margin:"auto",backgroundSize:"cover"}}):ge(t,{style:{width:"38px",height:"38px"}})]})})})};import{Fragment as wf,jsx as Ct,jsxs as ma}from"react/jsx-runtime";var Hn=2,cc=()=>{let{navigateBack:e,lastScreen:t,currentScreen:o}=b(),{walletConnectionStatus:r,closePrivyModal:n}=A(),[i,a]=lc(void 0),[c,s]=lc(0),l=r?.status==="connected",y=r?.status==="switching_to_supported_chain";sc(()=>{if(l){let C=setTimeout(n,Fe);return()=>clearTimeout(C)}},[l]);let m=C=>{a(pa(C))};sc(()=>{r?.connectError&&m(r?.connectError)},[r]);let v=r?.connector?.connectorType||"metamask",h=r?.connector?.walletClientType||"metamask",w=r?.connector?.walletBranding.name||Ur[h]?.name||"MetaMask",_=r?.connector?.walletBranding.icon||Ur[h]?.component||(C=>Ct(be,{...C})),S;l?S=`Successfully connected with ${w}`:i?S=i.message:y?S="Switching networks":S=`Waiting for ${w}`;let T="Don\u2019t see your wallet modal? Check your other browser windows.";return l?T="You\u2019re good to go!":c>=Hn&&i?T="Unable to connect wallet":i?T=i.detail:y?T="Switch your wallet to the requested network.":h==="metamask"?T="For the best experience, connect only one wallet at a time.":v==="wallet_connect_v2"?T="Open your mobile wallet app to continue":v==="coinbase_wallet"&&(T="Open the Coinbase app on your phone to continue."),ma(wf,{children:[Ct(x,{backFn:o===t?void 0:e}),Ct(P,{}),ma(vf,{children:[Ct(ua,{walletLogo:_,success:l,fail:!!i}),ma(to,{children:[Ct("h3",{children:S}),Ct("p",{children:T})]}),Ct(Wn,{children:i==It.ERROR_USER_EXISTS?Ct(ye,{onClick:e,children:"Use a different wallet"}):!l&&i?.retryable&&c<Hn?Ct(ye,{onClick:()=>{s(c+1),a(void 0),r?.connectRetry()},invisible:l||!i?.retryable||c>=Hn,disabled:!l&&(!i?.retryable||c>=Hn),children:"Retry"}):null})]}),Ct(ee,{})]})},vf=gf.div`
727
+ `,ga=e=>{let t=e.walletLogo;return ge(dc,{children:ge(Cf,{children:zn("div",{children:[ge(Rn,{success:e.success,fail:e.fail}),typeof t=="string"?ge("span",{style:{background:`url('${t}')`,height:"38px",width:"38px",borderRadius:"6px",margin:"auto",backgroundSize:"cover"}}):ge(t,{style:{width:"38px",height:"38px"}})]})})})};import{Fragment as xf,jsx as Ct,jsxs as va}from"react/jsx-runtime";var $n=2,mc=()=>{let{navigateBack:e,lastScreen:t,currentScreen:o}=C(),{walletConnectionStatus:r,closePrivyModal:n}=A(),[i,a]=uc(void 0),[c,l]=uc(0),s=r?.status==="connected",y=r?.status==="switching_to_supported_chain";pc(()=>{if(s){let b=setTimeout(n,He);return()=>clearTimeout(b)}},[s]);let h=b=>{a(ya(b))};pc(()=>{r?.connectError&&h(r?.connectError)},[r]);let g=r?.connector?.connectorType||"metamask",m=r?.connector?.walletClientType||"metamask",w=r?.connector?.walletBranding.name||Hr[m]?.name||"MetaMask",_=r?.connector?.walletBranding.icon||Hr[m]?.component||(b=>Ct(Ee,{...b})),P;s?P=`Successfully connected with ${w}`:i?P=i.message:y?P="Switching networks":P=`Waiting for ${w}`;let x="Don\u2019t see your wallet modal? Check your other browser windows.";return s?x="You\u2019re good to go!":c>=$n&&i?x="Unable to connect wallet":i?x=i.detail:y?x="Switch your wallet to the requested network.":m==="metamask"?x="For the best experience, connect only one wallet at a time.":g==="wallet_connect_v2"?x="Open your mobile wallet app to continue":g==="coinbase_wallet"&&(x="Open the Coinbase app on your phone to continue."),va(xf,{children:[Ct(T,{backFn:o===t?void 0:e}),Ct(S,{}),va(Ef,{children:[Ct(ga,{walletLogo:_,success:s,fail:!!i}),va(oo,{children:[Ct("h3",{children:P}),Ct("p",{children:x})]}),Ct(Ln,{children:i==It.ERROR_USER_EXISTS?Ct(ye,{onClick:e,children:"Use a different wallet"}):!s&&i?.retryable&&c<$n?Ct(ye,{onClick:()=>{l(c+1),a(void 0),r?.connectRetry()},invisible:s||!i?.retryable||c>=$n,disabled:!s&&(!i?.retryable||c>=$n),children:"Retry"}):null})]}),Ct(ee,{})]})},Ef=bf.div`
728
728
  display: flex;
729
729
  flex-direction: column;
730
730
  align-items: center;
@@ -732,7 +732,7 @@ Resources:
732
732
  margin-left: 27px;
733
733
  margin-right: 27px;
734
734
  gap: 24px;
735
- `;import{XCircleIcon as Pf}from"@heroicons/react/24/solid";import{useEffect as _f,useMemo as Sf,useState as Af}from"react";import kf from"styled-components";import Gn from"styled-components";import{jsx as fa,jsxs as Tf}from"react/jsx-runtime";var rr=({children:e})=>fa(Cf,{children:Tf(bf,{children:[e,fa(Ef,{}),fa(xf,{})]})}),Cf=Gn.div`
735
+ `;import{XCircleIcon as kf}from"@heroicons/react/24/solid";import{useEffect as Rf,useMemo as If,useState as Wf}from"react";import Nf from"styled-components";import Vn from"styled-components";import{jsx as wa,jsxs as Af}from"react/jsx-runtime";var ir=({children:e})=>wa(Tf,{children:Af(Pf,{children:[e,wa(_f,{}),wa(Sf,{})]})}),Tf=Vn.div`
736
736
  height: 100%;
737
737
  display: flex;
738
738
  justify-content: center;
@@ -744,14 +744,14 @@ Resources:
744
744
  @media all and (display-mode: standalone) {
745
745
  margin-bottom: 30px;
746
746
  }
747
- `,bf=Gn.div`
747
+ `,Pf=Vn.div`
748
748
  position: relative;
749
749
  height: 140px;
750
750
  width: 140px;
751
751
 
752
752
  opacity: 1;
753
753
  animation: fadein 200ms ease;
754
- `,Ef=Gn.div`
754
+ `,_f=Vn.div`
755
755
  position: absolute;
756
756
  top: 0;
757
757
  right: 0;
@@ -764,7 +764,7 @@ Resources:
764
764
  border: 4px solid var(--privy-color-accent-light);
765
765
  border-radius: 50%;
766
766
  }
767
- `,xf=Gn.div`
767
+ `,Sf=Vn.div`
768
768
  position: absolute;
769
769
  top: 0;
770
770
  right: 0;
@@ -788,22 +788,22 @@ Resources:
788
788
  transform: rotate(360deg);
789
789
  }
790
790
  }
791
- `;var dc=["error","invalid_request_arguments","wallet_not_on_device","invalid_recovery_pin","insufficient_funds","mfa_timeout"];var bt=class extends Error{constructor(o,r){super(r);this.type=o}};function ha(e){let t=e.type;return typeof t=="string"&&dc.includes(t)}function nr(e){return ha(e)&&e.type==="wallet_not_on_device"}function pc(e){return ha(e)&&(e.type==="invalid_recovery_pin"||e.type==="invalid_request_arguments")}function uc(e){return!!(ha(e)&&e.type==="insufficient_funds"||e.code==="INSUFFICIENT_FUNDS")}function mc(e){return e.code==="UNPREDICTABLE_GAS_LIMIT"}import{Fragment as hc,jsx as ao,jsxs as ya}from"react/jsx-runtime";var fc=1,yc=()=>{let{authenticated:e,user:t,getAccessToken:o}=V(),{closePrivyModal:r,createAnalyticsEvent:n,walletProxy:i}=A(),{navigate:a,data:c,setModalData:s,outerClickRef:l}=b(),y=Sf(()=>Date.now(),[]),[m,v]=Af(!1),{onCompleteNavigateTo:h,onFailure:w}=c?.connectWallet,_=T=>{m||(v(!0),w(typeof T=="string"?new Error(T):T))};_f(()=>{let T=oe(t),C;return!e||!T?_("User must be authenticated and have a Privy wallet before it can be connected"):i?((async()=>{let I=await o();if(!I)return _("User must be authenticated and have a Privy wallet before it can be connected");try{await i.connect({accessToken:I,address:T.address});let k=(Date.now()-y)/1e3;h==="EMBEDDED_WALLET_KEY_EXPORT_SCREEN"&&k<fc?C=setTimeout(()=>{a(h)},(fc-k)*1e3):a(h)}catch(k){if(nr(k)&&T.recoveryMethod==="privy"){let N=await o();if(!N)return _("User must be authenticated and have a Privy wallet before it can be recovered");try{n("embedded_wallet_pinless_recovery_started",{walletAddress:T.address}),(await i?.recover({address:T.address,accessToken:N}))?.address||_(new Error("Unable to recover wallet")),h?a(h):r({shouldCallAuthOnSuccess:!1}),n("embedded_wallet_recovery_completed",{walletAddress:T.address}),a(h)}catch{_("An error has occurred, please try again.")}}else nr(k)?(s({...c,recoverWallet:{privyWallet:T,onCompleteNavigateTo:h,onFailure:w}}),a("EMBEDDED_WALLET_RECOVERY_SCREEN")):_(k)}})(),()=>clearTimeout(C)):void 0},[e,t,i]);let S=()=>{r({shouldCallAuthOnSuccess:!1}),_("User exited before wallet could be connected")};return l&&(l.current=S),ya(hc,{children:[ao(x,{onClose:S}),ao(P,{}),ao(Rf,{children:m?ya(hc,{children:[ya(at,{children:[ao(Pf,{fill:"var(--privy-color-error)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),ao(le,{title:"Something went wrong",description:"We\u2019re on it. Please try again later."})]}),ao(q,{onClick:()=>r({shouldCallAuthOnSuccess:!1}),children:"Close"})]}):ao(rr,{})}),ao(W,{})]})},Rf=kf.div`
791
+ `;var fc=["error","invalid_request_arguments","wallet_not_on_device","invalid_recovery_pin","insufficient_funds","mfa_timeout"];var bt=class extends Error{constructor(o,r){super(r);this.type=o}};function Ca(e){let t=e.type;return typeof t=="string"&&fc.includes(t)}function ar(e){return Ca(e)&&e.type==="wallet_not_on_device"}function hc(e){return Ca(e)&&(e.type==="invalid_recovery_pin"||e.type==="invalid_request_arguments")}function yc(e){return!!(Ca(e)&&e.type==="insufficient_funds"||e.code==="INSUFFICIENT_FUNDS")}function gc(e){return e.code==="UNPREDICTABLE_GAS_LIMIT"}import{Fragment as wc,jsx as so,jsxs as ba}from"react/jsx-runtime";var vc=1,Cc=()=>{let{authenticated:e,user:t,getAccessToken:o}=V(),{closePrivyModal:r,createAnalyticsEvent:n,walletProxy:i}=A(),{navigate:a,data:c,setModalData:l,outerClickRef:s}=C(),y=If(()=>Date.now(),[]),[h,g]=Wf(!1),{onCompleteNavigateTo:m,onFailure:w}=c?.connectWallet,_=x=>{h||(g(!0),w(typeof x=="string"?new Error(x):x))};Rf(()=>{let x=oe(t),b;return!e||!x?_("User must be authenticated and have a Privy wallet before it can be connected"):i?((async()=>{let k=await o();if(!k)return _("User must be authenticated and have a Privy wallet before it can be connected");try{await i.connect({accessToken:k,address:x.address});let L=(Date.now()-y)/1e3;m==="EMBEDDED_WALLET_KEY_EXPORT_SCREEN"&&L<vc?b=setTimeout(()=>{a(m)},(vc-L)*1e3):a(m)}catch(L){if(ar(L)&&x.recoveryMethod==="privy"){let N=await o();if(!N)return _("User must be authenticated and have a Privy wallet before it can be recovered");try{n("embedded_wallet_pinless_recovery_started",{walletAddress:x.address}),(await i?.recover({address:x.address,accessToken:N}))?.address||_(new Error("Unable to recover wallet")),m?a(m):r({shouldCallAuthOnSuccess:!1}),n("embedded_wallet_recovery_completed",{walletAddress:x.address}),a(m)}catch{_("An error has occurred, please try again.")}}else ar(L)?(l({...c,recoverWallet:{privyWallet:x,onCompleteNavigateTo:m,onFailure:w}}),a("EMBEDDED_WALLET_RECOVERY_SCREEN")):_(L)}})(),()=>clearTimeout(b)):void 0},[e,t,i]);let P=()=>{r({shouldCallAuthOnSuccess:!1}),_("User exited before wallet could be connected")};return s&&(s.current=P),ba(wc,{children:[so(T,{onClose:P}),so(S,{}),so(Mf,{children:h?ba(wc,{children:[ba(st,{children:[so(kf,{fill:"var(--privy-color-error)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),so(le,{title:"Something went wrong",description:"We\u2019re on it. Please try again later."})]}),so(q,{onClick:()=>r({shouldCallAuthOnSuccess:!1}),children:"Close"})]}):so(ir,{})}),so(W,{})]})},Mf=Nf.div`
792
792
  display: flex;
793
793
  height: 100%;
794
794
  flex-direction: column;
795
795
  flex-grow: 1;
796
- `;import{CheckCircleIcon as If}from"@heroicons/react/24/solid";import{useEffect as Wf}from"react";import{Fragment as Nf,jsx as ir,jsxs as gc}from"react/jsx-runtime";var vc=()=>{let{user:e}=V(),{closePrivyModal:t,isNewUserThisSession:o,updateWallets:r}=A(),{app:n,data:i,outerClickRef:a}=b(),{onSuccess:c,onFailure:s,callAuthOnSuccessOnClose:l}=i.createWallet,y=()=>{let m=oe(e);m?(r(),c(m),t({shouldCallAuthOnSuccess:l})):s(new Error("Failed to create wallet"))};return Wf(()=>{let m=setTimeout(y,Ks);return()=>clearTimeout(m)},[]),a&&(a.current=y),gc(Nf,{children:[ir(x,{onClose:y}),ir(P,{}),gc(at,{children:[ir(If,{fill:"var(--privy-color-accent)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),ir(le,{title:o?`Welcome${n?.name?` to ${n?.name}`:""}`:"All set!",description:o?"You\u2019ve successfully created an account.":"Your account is secured."})]}),ir(W,{}),ir(O,{protectedByPrivy:!0})]})};import{useEffect as Ec,useRef as Lf,useState as ga}from"react";import Mt from"styled-components";import{jsx as ke,jsxs as Mf}from"react/jsx-runtime";var wc=({style:e,...t})=>Mf("svg",{width:"320",height:"144",viewBox:"0 0 320 144",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{width:320,height:144,...e},...t,children:[ke("rect",{x:"214.681",y:"51.6852",width:"40",height:"40",rx:"20",fill:"var(--privy-color-background-2)"}),ke("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M229.848 64.9512C228.001 65.1452 226.643 66.726 226.643 68.5829V75.414C226.643 77.2883 228.026 78.8767 229.891 79.0615C231.417 79.2127 233.21 79.3518 234.643 79.3518C236.862 79.3518 239.95 79.0176 241.563 78.8225C242.183 78.7474 242.643 78.2196 242.643 77.5948V69.7756C242.643 69.1508 242.183 68.6229 241.563 68.5479C239.955 68.3534 236.883 68.0207 234.665 68.0185L234.643 68.0185L234.622 68.0185C233.219 68.0199 231.475 68.1534 229.975 68.3005C229.636 68.3007 229.346 68.0433 229.312 67.6989C229.277 67.3325 229.544 67.0063 229.911 66.9703C231.423 66.8219 233.203 66.6852 234.643 66.6852C236.246 66.6852 238.275 66.855 239.887 67.0221C240.412 67.0765 240.896 67.1309 241.309 67.1796V66.4289C241.309 65.8099 240.858 65.2851 240.244 65.2046C238.746 65.0083 235.977 64.6852 233.976 64.6852C232.734 64.6852 231.195 64.8098 229.848 64.9512ZM240.309 74.6852C240.862 74.6852 241.309 74.2375 241.309 73.6852C241.309 73.1329 240.862 72.6852 240.309 72.6852C239.757 72.6852 239.309 73.1329 239.309 73.6852C239.309 74.2375 239.757 74.6852 240.309 74.6852Z",fill:"var(--privy-color-accent)"}),ke("path",{d:"M92.6426 74.2969H89.5743M76.6426 74.2969H85.5085M77.5837 78.2687L87.1555 61.6852M84.7273 65.9017L82.2897 61.6852M91.8614 78.2687L86.6849 69.2993",stroke:"var(--privy-color-accent)","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"}),ke("rect",{x:"65.6426",y:"52.6852",width:"38",height:"38",rx:"19",stroke:"var(--privy-color-background-2","stroke-width":"2"}),ke("path",{d:"M103.162 71.6852H213.662",stroke:"var(--privy-color-background-2","stroke-width":"2","stroke-dasharray":"4 4"}),ke("path",{d:"M270.544 116.469C272.146 116.469 273.445 115.175 273.445 113.577C273.445 111.98 272.146 110.685 270.544 110.685C268.942 110.685 267.643 111.98 267.643 113.577C267.643 115.175 268.942 116.469 270.544 116.469Z",fill:"var(--privy-color-accent-light"}),ke("path",{d:"M157.878 48.3615C160.282 48.3615 162.231 46.4193 162.231 44.0234C162.231 41.6274 160.282 39.6852 157.878 39.6852C155.475 39.6852 153.526 41.6274 153.526 44.0234C153.526 46.4193 155.475 48.3615 157.878 48.3615Z",fill:"var(--privy-color-accent-dark)"}),ke("path",{d:"M35.0825 96.1749C36.8852 96.1749 38.3466 94.7182 38.3466 92.9212C38.3466 91.1243 36.8852 89.6676 35.0825 89.6676C33.2797 89.6676 31.8184 91.1243 31.8184 92.9212C31.8184 94.7182 33.2797 96.1749 35.0825 96.1749Z",fill:"var(--privy-color-accent-dark)"}),ke("path",{d:"M164.407 103.673C166.41 103.673 168.034 102.055 168.034 100.058C168.034 98.0616 166.41 96.443 164.407 96.443C162.404 96.443 160.78 98.0616 160.78 100.058C160.78 102.055 162.404 103.673 164.407 103.673Z",fill:"var(--privy-color-accent-light"}),ke("path",{d:"M292.664 33.277C294.267 33.277 295.566 31.9822 295.566 30.3849C295.566 28.7876 294.267 27.4928 292.664 27.4928C291.062 27.4928 289.763 28.7876 289.763 30.3849C289.763 31.9822 291.062 33.277 292.664 33.277Z",fill:"var(--privy-color-accent-light"}),ke("path",{d:"M104 12.6997C105.302 12.6997 106.357 11.6476 106.357 10.3498C106.357 9.05206 105.302 8 104 8C102.698 8 101.643 9.05206 101.643 10.3498C101.643 11.6476 102.698 12.6997 104 12.6997Z",fill:"var(--privy-color-accent-light"}),ke("path",{d:"M7.99998 68.6997C9.30194 68.6997 10.3574 67.6476 10.3574 66.3498C10.3574 65.0521 9.30194 64 7.99998 64C6.69802 64 5.64258 65.0521 5.64258 66.3498C5.64258 67.6476 6.69802 68.6997 7.99998 68.6997Z",fill:"var(--privy-color-accent-light"}),ke("path",{d:"M312 60.6997C313.302 60.6997 314.357 59.6476 314.357 58.3498C314.357 57.0521 313.302 56 312 56C310.698 56 309.643 57.0521 309.643 58.3498C309.643 59.6476 310.698 60.6997 312 60.6997Z",fill:"var(--privy-color-accent-light"}),ke("path",{d:"M35.544 42.4694C37.1464 42.4694 38.4454 41.1746 38.4454 39.5773C38.4454 37.98 37.1464 36.6852 35.544 36.6852C33.9416 36.6852 32.6426 37.98 32.6426 39.5773C32.6426 41.1746 33.9416 42.4694 35.544 42.4694Z",fill:"var(--privy-color-accent-light"})]});import{Fragment as Vf,jsx as ne,jsxs as Et}from"react/jsx-runtime";var xc=()=>{let[e,t]=ga(null),{authenticated:o,user:r,getAccessToken:n}=V(),{closePrivyModal:i,createAnalyticsEvent:a,clientAnalyticsId:c}=A(),{data:s,outerClickRef:l}=b(),y=oe(r)?.address,{onFailure:m,onSuccess:v,origin:h,appId:w}=s.keyExport,_=T=>{i({shouldCallAuthOnSuccess:!1}),m(typeof T=="string"?new Error(T):T)},S=()=>{i({shouldCallAuthOnSuccess:!1}),v(),a("embedded_wallet_key_export_completed",{walletAddress:y})};return Ec(()=>{let T=oe(r);if(!o||!T)return _("User must be authenticated before exporting their wallet");n().then(t,_)},[o,r]),l&&(l.current=S),Et(Vf,{children:[ne(x,{onClose:S}),ne(P,{}),Et(Uf,{children:[ne(wc,{}),Et(Ff,{children:[ne("h3",{children:"Transfer"}),Et(zf,{children:[ne(Df,{style:{marginRight:6}}),Jt(y)]})]}),ne("p",{children:"You can take your account with you to another site using an external wallet!"}),Et(Bf,{children:[Et(Cc,{children:[ne(bc,{children:"1"}),Et("span",{children:[ne("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(Cc,{children:[ne(bc,{children:"2"}),ne("span",{children:"Copy this key into your other wallet"})]})]}),ne("div",{style:{width:"100%"},children:e&&ne(Of,{origin:h,appId:w,accessToken:e,clientAnalyticsId:c,address:y,dimensions:{height:"44px"}})}),Et($f,{children:[ne("h4",{children:"WARNING"}),ne("p",{children:"Never share your private key with anyone! It controls your account."})]})]}),ne(W,{}),ne(O,{protectedByPrivy:!0})]})};function Of(e){let[t,o]=ga(e.dimensions.width),[r,n]=ga(void 0),i=Lf(null);return Ec(()=>{if(i.current&&t===void 0){let{width:c}=i.current.getBoundingClientRect();o(c)}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")})},[]),ne("div",{ref:i,children:t&&Et(Hf,{children:[ne("iframe",{style:{position:"absolute",zIndex:1},width:t,height:e.dimensions.height,allow:"clipboard-write self *",src:hn(e.origin,`/apps/${e.appId}/embedded-wallets/export`,{token:e.accessToken,address:e.address,width:`${t}px`,caid:e.clientAnalyticsId,...r})}),ne(Gf,{children:"Loading..."})]})})}function Df(e){return ne("svg",{width:"16",height:"17",viewBox:"0 0 16 17",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:e.style,children:ne("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 Uf=Mt.div`
796
+ `;import{CheckCircleIcon as Lf}from"@heroicons/react/24/solid";import{useEffect as Of}from"react";import{Fragment as Df,jsx as sr,jsxs as bc}from"react/jsx-runtime";var Ec=()=>{let{user:e}=V(),{closePrivyModal:t,isNewUserThisSession:o,updateWallets:r}=A(),{app:n,data:i,outerClickRef:a}=C(),{onSuccess:c,onFailure:l,callAuthOnSuccessOnClose:s}=i.createWallet,y=()=>{let h=oe(e);h?(r(),c(h),t({shouldCallAuthOnSuccess:s})):l(new Error("Failed to create wallet"))};return Of(()=>{let h=setTimeout(y,Zs);return()=>clearTimeout(h)},[]),a&&(a.current=y),bc(Df,{children:[sr(T,{onClose:y}),sr(S,{}),bc(st,{children:[sr(Lf,{fill:"var(--privy-color-accent)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),sr(le,{title:o?`Welcome${n?.name?` to ${n?.name}`:""}`:"All set!",description:o?"You\u2019ve successfully created an account.":"Your account is secured."})]}),sr(W,{}),sr(D,{protectedByPrivy:!0})]})};import{useEffect as _c,useRef as Ff,useState as Ea}from"react";import Mt from"styled-components";import{jsx as Ie,jsxs as Uf}from"react/jsx-runtime";var xc=({style:e,...t})=>Uf("svg",{width:"320",height:"144",viewBox:"0 0 320 144",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{width:320,height:144,...e},...t,children:[Ie("rect",{x:"214.681",y:"51.6852",width:"40",height:"40",rx:"20",fill:"var(--privy-color-background-2)"}),Ie("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M229.848 64.9512C228.001 65.1452 226.643 66.726 226.643 68.5829V75.414C226.643 77.2883 228.026 78.8767 229.891 79.0615C231.417 79.2127 233.21 79.3518 234.643 79.3518C236.862 79.3518 239.95 79.0176 241.563 78.8225C242.183 78.7474 242.643 78.2196 242.643 77.5948V69.7756C242.643 69.1508 242.183 68.6229 241.563 68.5479C239.955 68.3534 236.883 68.0207 234.665 68.0185L234.643 68.0185L234.622 68.0185C233.219 68.0199 231.475 68.1534 229.975 68.3005C229.636 68.3007 229.346 68.0433 229.312 67.6989C229.277 67.3325 229.544 67.0063 229.911 66.9703C231.423 66.8219 233.203 66.6852 234.643 66.6852C236.246 66.6852 238.275 66.855 239.887 67.0221C240.412 67.0765 240.896 67.1309 241.309 67.1796V66.4289C241.309 65.8099 240.858 65.2851 240.244 65.2046C238.746 65.0083 235.977 64.6852 233.976 64.6852C232.734 64.6852 231.195 64.8098 229.848 64.9512ZM240.309 74.6852C240.862 74.6852 241.309 74.2375 241.309 73.6852C241.309 73.1329 240.862 72.6852 240.309 72.6852C239.757 72.6852 239.309 73.1329 239.309 73.6852C239.309 74.2375 239.757 74.6852 240.309 74.6852Z",fill:"var(--privy-color-accent)"}),Ie("path",{d:"M92.6426 74.2969H89.5743M76.6426 74.2969H85.5085M77.5837 78.2687L87.1555 61.6852M84.7273 65.9017L82.2897 61.6852M91.8614 78.2687L86.6849 69.2993",stroke:"var(--privy-color-accent)","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"}),Ie("rect",{x:"65.6426",y:"52.6852",width:"38",height:"38",rx:"19",stroke:"var(--privy-color-background-2","stroke-width":"2"}),Ie("path",{d:"M103.162 71.6852H213.662",stroke:"var(--privy-color-background-2","stroke-width":"2","stroke-dasharray":"4 4"}),Ie("path",{d:"M270.544 116.469C272.146 116.469 273.445 115.175 273.445 113.577C273.445 111.98 272.146 110.685 270.544 110.685C268.942 110.685 267.643 111.98 267.643 113.577C267.643 115.175 268.942 116.469 270.544 116.469Z",fill:"var(--privy-color-accent-light"}),Ie("path",{d:"M157.878 48.3615C160.282 48.3615 162.231 46.4193 162.231 44.0234C162.231 41.6274 160.282 39.6852 157.878 39.6852C155.475 39.6852 153.526 41.6274 153.526 44.0234C153.526 46.4193 155.475 48.3615 157.878 48.3615Z",fill:"var(--privy-color-accent-dark)"}),Ie("path",{d:"M35.0825 96.1749C36.8852 96.1749 38.3466 94.7182 38.3466 92.9212C38.3466 91.1243 36.8852 89.6676 35.0825 89.6676C33.2797 89.6676 31.8184 91.1243 31.8184 92.9212C31.8184 94.7182 33.2797 96.1749 35.0825 96.1749Z",fill:"var(--privy-color-accent-dark)"}),Ie("path",{d:"M164.407 103.673C166.41 103.673 168.034 102.055 168.034 100.058C168.034 98.0616 166.41 96.443 164.407 96.443C162.404 96.443 160.78 98.0616 160.78 100.058C160.78 102.055 162.404 103.673 164.407 103.673Z",fill:"var(--privy-color-accent-light"}),Ie("path",{d:"M292.664 33.277C294.267 33.277 295.566 31.9822 295.566 30.3849C295.566 28.7876 294.267 27.4928 292.664 27.4928C291.062 27.4928 289.763 28.7876 289.763 30.3849C289.763 31.9822 291.062 33.277 292.664 33.277Z",fill:"var(--privy-color-accent-light"}),Ie("path",{d:"M104 12.6997C105.302 12.6997 106.357 11.6476 106.357 10.3498C106.357 9.05206 105.302 8 104 8C102.698 8 101.643 9.05206 101.643 10.3498C101.643 11.6476 102.698 12.6997 104 12.6997Z",fill:"var(--privy-color-accent-light"}),Ie("path",{d:"M7.99998 68.6997C9.30194 68.6997 10.3574 67.6476 10.3574 66.3498C10.3574 65.0521 9.30194 64 7.99998 64C6.69802 64 5.64258 65.0521 5.64258 66.3498C5.64258 67.6476 6.69802 68.6997 7.99998 68.6997Z",fill:"var(--privy-color-accent-light"}),Ie("path",{d:"M312 60.6997C313.302 60.6997 314.357 59.6476 314.357 58.3498C314.357 57.0521 313.302 56 312 56C310.698 56 309.643 57.0521 309.643 58.3498C309.643 59.6476 310.698 60.6997 312 60.6997Z",fill:"var(--privy-color-accent-light"}),Ie("path",{d:"M35.544 42.4694C37.1464 42.4694 38.4454 41.1746 38.4454 39.5773C38.4454 37.98 37.1464 36.6852 35.544 36.6852C33.9416 36.6852 32.6426 37.98 32.6426 39.5773C32.6426 41.1746 33.9416 42.4694 35.544 42.4694Z",fill:"var(--privy-color-accent-light"})]});import{Fragment as Yf,jsx as ie,jsxs as Et}from"react/jsx-runtime";var Sc=()=>{let[e,t]=Ea(null),{authenticated:o,user:r,getAccessToken:n}=V(),{closePrivyModal:i,createAnalyticsEvent:a,clientAnalyticsId:c}=A(),{data:l,outerClickRef:s}=C(),y=oe(r)?.address,{onFailure:h,onSuccess:g,origin:m,appId:w}=l.keyExport,_=x=>{i({shouldCallAuthOnSuccess:!1}),h(typeof x=="string"?new Error(x):x)},P=()=>{i({shouldCallAuthOnSuccess:!1}),g(),a("embedded_wallet_key_export_completed",{walletAddress:y})};return _c(()=>{let x=oe(r);if(!o||!x)return _("User must be authenticated before exporting their wallet");n().then(t,_)},[o,r]),s&&(s.current=P),Et(Yf,{children:[ie(T,{onClose:P}),ie(S,{}),Et(Gf,{children:[ie(xc,{}),Et(zf,{children:[ie("h3",{children:"Transfer"}),Et(jf,{children:[ie(Hf,{style:{marginRight:6}}),Qt(y)]})]}),ie("p",{children:"You can take your account with you to another site using an external wallet!"}),Et($f,{children:[Et(Tc,{children:[ie(Pc,{children:"1"}),Et("span",{children:[ie("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(Tc,{children:[ie(Pc,{children:"2"}),ie("span",{children:"Copy this key into your other wallet"})]})]}),ie("div",{style:{width:"100%"},children:e&&ie(Bf,{origin:m,appId:w,accessToken:e,clientAnalyticsId:c,address:y,dimensions:{height:"44px"}})}),Et(Kf,{children:[ie("h4",{children:"WARNING"}),ie("p",{children:"Never share your private key with anyone! It controls your account."})]})]}),ie(W,{}),ie(D,{protectedByPrivy:!0})]})};function Bf(e){let[t,o]=Ea(e.dimensions.width),[r,n]=Ea(void 0),i=Ff(null);return _c(()=>{if(i.current&&t===void 0){let{width:c}=i.current.getBoundingClientRect();o(c)}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")})},[]),ie("div",{ref:i,children:t&&Et(Vf,{children:[ie("iframe",{style:{position:"absolute",zIndex:1},width:t,height:e.dimensions.height,allow:"clipboard-write self *",src:vn(e.origin,`/apps/${e.appId}/embedded-wallets/export`,{token:e.accessToken,address:e.address,width:`${t}px`,caid:e.clientAnalyticsId,...r})}),ie(qf,{children:"Loading..."})]})})}function Hf(e){return ie("svg",{width:"16",height:"17",viewBox:"0 0 16 17",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:e.style,children:ie("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 Gf=Mt.div`
797
797
  display: flex;
798
798
  height: 100%;
799
799
  flex-direction: column;
800
800
  text-align: left;
801
- `,Ff=Mt.div`
801
+ `,zf=Mt.div`
802
802
  display: flex;
803
803
  align-items: center;
804
804
  justify-content: space-between;
805
805
  margin-bottom: 8px;
806
- `,Bf=Mt.div`
806
+ `,$f=Mt.div`
807
807
  display: flex;
808
808
  flex-direction: column;
809
809
  gap: 24px;
@@ -811,7 +811,7 @@ Resources:
811
811
  margin-top: 16px;
812
812
  margin-left: 11px;
813
813
  border-left: 1px solid var(--privy-color-foreground-4) !important;
814
- `,Cc=Mt.div`
814
+ `,Tc=Mt.div`
815
815
  display: flex;
816
816
  align-items: top;
817
817
  gap: 8px;
@@ -822,7 +822,7 @@ Resources:
822
822
  text-decoration: underline;
823
823
  }
824
824
  }
825
- `,bc=Mt.div`
825
+ `,Pc=Mt.div`
826
826
  display: flex;
827
827
  align-items: center;
828
828
  justify-content: center;
@@ -836,10 +836,10 @@ Resources:
836
836
  border-radius: 100%;
837
837
  background: var(--privy-color-background);
838
838
  color: var(--privy-color-accent);
839
- `,Hf=Mt.div`
839
+ `,Vf=Mt.div`
840
840
  position: relative;
841
841
  height: 44px;
842
- `,Gf=Mt.div`
842
+ `,qf=Mt.div`
843
843
  position: absolute;
844
844
  display: flex;
845
845
  align-items: center;
@@ -851,7 +851,7 @@ Resources:
851
851
  border-radius: var(--privy-border-radius-md);
852
852
  background-color: var(--privy-color-background-2);
853
853
  color: var(--privy-color-foreground-3);
854
- `,zf=Mt.div`
854
+ `,jf=Mt.div`
855
855
  display: flex;
856
856
  align-items: center;
857
857
  padding-top: 1px;
@@ -863,7 +863,7 @@ Resources:
863
863
  border-radius: var(--privy-border-radius-md);
864
864
  font-size: 12px;
865
865
  font-weight: 500;
866
- `,$f=Mt.div`
866
+ `,Kf=Mt.div`
867
867
  border: 2px solid var(--privy-color-background-2) !important;
868
868
  border-radius: var(--privy-border-radius-md);
869
869
  padding: 16px;
@@ -873,7 +873,7 @@ Resources:
873
873
  && > h4 {
874
874
  color: var(--privy-color-error);
875
875
  }
876
- `;import{XCircleIcon as Uh}from"@heroicons/react/24/outline";import{useEffect as Yc,useRef as Fh,useState as $r}from"react";import{useCallback as Kc,useEffect as Dh}from"react";import{ExclamationTriangleIcon as Kf}from"@heroicons/react/24/outline";import{useEffect as Yf,useState as kc}from"react";import{ArrowPathIcon as qf}from"@heroicons/react/24/outline";import Ge,{css as va}from"styled-components";var jf=va`
876
+ `;import{XCircleIcon as zh}from"@heroicons/react/24/outline";import{useEffect as Xc,useRef as $h,useState as jr}from"react";import{useCallback as Zc,useEffect as Gh}from"react";import{ExclamationTriangleIcon as eh}from"@heroicons/react/24/outline";import{useEffect as th,useState as Pa}from"react";import{ArrowPathIcon as Jf,EyeIcon as Qf,EyeSlashIcon as Zf}from"@heroicons/react/24/outline";import xe,{css as xa}from"styled-components";var Xf=xa`
877
877
  font-size: 14px;
878
878
  font-style: normal;
879
879
  font-weight: 400;
@@ -881,8 +881,8 @@ Resources:
881
881
  letter-spacing: -0.008px;
882
882
  text-align: left;
883
883
  transition: color 0.1s ease-in;
884
- `,zn=Ge.span`
885
- ${jf}
884
+ `,qn=xe.span`
885
+ ${Xf}
886
886
  transition: color 0.1s ease-in;
887
887
  color: ${({error:e})=>e?"var(--privy-color-error)":"var(--privy-color-foreground-3)"};
888
888
  text-transform: ${({error:e})=>e?"":"capitalize"};
@@ -890,18 +890,18 @@ Resources:
890
890
  &[aria-hidden='true'] {
891
891
  visibility: hidden;
892
892
  }
893
- `,so=Ge.div`
893
+ `,lo=xe.div`
894
894
  display: flex;
895
895
  flex-direction: column;
896
896
  justify-content: center;
897
897
  flex-grow: 1;
898
- `,lo=Ge(q)`
899
- ${e=>e.hideAnimations&&va`
898
+ `,co=xe(q)`
899
+ ${e=>e.hideAnimations&&xa`
900
900
  && {
901
901
  transition: none;
902
902
  }
903
903
  `}
904
- `,Tc=va`
904
+ `,Ac=xa`
905
905
  && {
906
906
  width: 100%;
907
907
  border-width: 1px;
@@ -916,22 +916,23 @@ Resources:
916
916
  font-weight: 300;
917
917
  line-height: 22px; /* 137.5% */
918
918
  }
919
- `,So=Ge.input`
920
- ${Tc}
919
+ `,Ao=xe.input`
920
+ ${Ac}
921
921
 
922
922
  &::placeholder {
923
923
  color: var(--privy-color-foreground-3);
924
924
  font-style: italic;
925
+ font-size: 14px;
925
926
  }
926
- `,Pc=Ge.div`
927
- ${Tc}
928
- `,ar=Ge.div`
927
+ `,kc=xe.div`
928
+ ${Ac}
929
+ `,po=xe.div`
929
930
  position: relative;
930
931
  width: 100%;
931
932
  display: flex;
932
933
  align-items: center;
933
934
  justify-content: ${({centered:e})=>e?"center":"space-between"};
934
- `,co=Ge.div`
935
+ `,uo=xe.div`
935
936
  display: flex;
936
937
  flex-direction: column;
937
938
  align-items: center;
@@ -953,12 +954,12 @@ Resources:
953
954
  font-weight: 400;
954
955
  line-height: 20px;
955
956
  }
956
- `,Fr=Ge.div`
957
+ `,Gr=xe.div`
957
958
  display: flex;
958
959
  flex-direction: column;
959
960
  gap: 10px;
960
961
  padding-bottom: 1rem;
961
- `,Br=Ge.div`
962
+ `,zr=xe.div`
962
963
  display: flex;
963
964
  text-align: left;
964
965
  align-items: center;
@@ -978,13 +979,13 @@ Resources:
978
979
  > :first-child {
979
980
  min-width: 24px;
980
981
  }
981
- `,_c=Ge.div`
982
+ `,Rc=xe.div`
982
983
  height: var(--privy-height-modal-full);
983
984
 
984
985
  @media (max-width: 440px) {
985
986
  height: var(--privy-height-modal-compact);
986
987
  }
987
- `,wa=Ge(kn)`
988
+ `,Ta=xe(Wn)`
988
989
  display: flex;
989
990
  flex: 1;
990
991
  gap: 4px;
@@ -996,18 +997,42 @@ Resources:
996
997
  border-color: var(--privy-color-foreground-3);
997
998
  border-width: 1px;
998
999
  }
999
- `,Sc=Ge(qf)`
1000
+ `,lr=xe.div`
1000
1001
  position: absolute;
1001
- right: 12px;
1002
- height: 24px;
1003
- width: 24px;
1002
+ right: 0.5rem;
1003
+
1004
+ display: flex;
1005
+ flex-direction: row;
1006
+ justify-content: space-around;
1007
+ align-items: center;
1008
+ `,Ic=xe(Jf)`
1009
+ height: 1.25rem;
1010
+ width: 1.25rem;
1004
1011
  stroke: var(--privy-color-accent);
1005
1012
  cursor: pointer;
1006
1013
 
1007
1014
  :active {
1008
1015
  stroke: var(--privy-color-accent-light);
1009
1016
  }
1010
- `,Ac=Ge.progress`
1017
+ `,cr=xe(Zf)`
1018
+ height: 1.25rem;
1019
+ width: 1.25rem;
1020
+ stroke: var(--privy-color-accent);
1021
+ cursor: pointer;
1022
+
1023
+ :active {
1024
+ stroke: var(--privy-color-accent-light);
1025
+ }
1026
+ `,dr=xe(Qf)`
1027
+ height: 1.25rem;
1028
+ width: 1.25rem;
1029
+ stroke: var(--privy-color-accent);
1030
+ cursor: pointer;
1031
+
1032
+ :active {
1033
+ stroke: var(--privy-color-accent-light);
1034
+ }
1035
+ `,Wc=xe.progress`
1011
1036
  height: 4px;
1012
1037
  width: 100%;
1013
1038
  margin: 8px 0;
@@ -1023,14 +1048,14 @@ Resources:
1023
1048
  transition: all 0.1s ease-out;
1024
1049
  background: ${({label:e})=>e==="Strong"&&"#78dca6"||e==="Medium"&&"var(--privy-color-warn)"||"var(--privy-color-error)"};
1025
1050
  }
1026
- `;import{Fragment as Jf,jsx as lt,jsxs as Ca}from"react/jsx-runtime";var Rc=({buttonHideAnimations:e,buttonLoading:t,password:o,onSubmit:r,onBack:n})=>{let[i,a]=kc(!1),[c,s]=kc(""),l=o===c;return Yf(()=>{c&&!i&&a(!0)},[c]),Ca(Jf,{children:[lt(x,{title:"Confirm Password",closeable:!1,backFn:n}),lt(P,{}),Ca(so,{children:[Ca(co,{children:[lt(Kf,{height:48,width:48,stroke:"var(--privy-color-background)",fill:"var(--privy-color-accent)"}),lt("h3",{style:{color:"var(--privy-color-foreground)"},children:"Confirm your password"}),lt("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Please re-enter your password below to continue."})]}),lt(ar,{children:lt(So,{value:c,onChange:y=>s(y.target.value),onBlur:()=>a(!0),placeholder:"confirm your password",type:"password"})}),lt(zn,{"aria-hidden":!i||l,error:!0,children:"Passwords do not match"})]}),lt(lo,{onClick:r,loading:t,disabled:!l,hideAnimations:e,children:"Continue"}),lt(W,{}),lt(O,{protectedByPrivy:!0})]})};import{ExclamationTriangleIcon as eh}from"@heroicons/react/24/outline";import{useState as th}from"react";import oh from"styled-components";import $n from"styled-components";import{jsx as Hr,jsxs as Xf}from"react/jsx-runtime";var Ic=({className:e,checked:t,color:o="var(--privy-color-accent)",...r})=>Hr("label",{children:Xf(Qf,{className:e,children:[Hr(Nc,{checked:t,...r}),Hr(Zf,{color:o,checked:t,children:Hr(Wc,{viewBox:"0 0 24 24",children:Hr("polyline",{points:"20 6 9 17 4 12"})})})]})}),Qf=$n.div`
1051
+ `;import{Fragment as oh,jsx as $e,jsxs as jn}from"react/jsx-runtime";var Nc=({buttonHideAnimations:e,buttonLoading:t,password:o,onSubmit:r,onBack:n})=>{let[i,a]=Pa(!0),[c,l]=Pa(!1),[s,y]=Pa(""),h=o===s;return th(()=>{s&&!c&&l(!0)},[s]),jn(oh,{children:[$e(T,{title:"Confirm Password",closeable:!1,backFn:n}),$e(S,{}),jn(lo,{children:[jn(uo,{children:[$e(eh,{height:48,width:48,stroke:"var(--privy-color-background)",fill:"var(--privy-color-accent)"}),$e("h3",{style:{color:"var(--privy-color-foreground)"},children:"Confirm your password"}),$e("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Please re-enter your password below to continue."})]}),jn(po,{children:[$e(Ao,{value:s,onChange:g=>y(g.target.value),onBlur:()=>l(!0),placeholder:"confirm your password",type:i?"password":"text"}),$e(lr,{style:{right:"0.75rem"},children:i?$e(cr,{onClick:()=>a(!1)}):$e(dr,{onClick:()=>a(!0)})})]}),$e(qn,{"aria-hidden":!c||h,error:!0,children:"Passwords do not match"})]}),$e(co,{onClick:r,loading:t,disabled:!h,hideAnimations:e,children:"Continue"}),$e(W,{}),$e(D,{protectedByPrivy:!0})]})};import{ExclamationTriangleIcon as ah}from"@heroicons/react/24/outline";import{useState as sh}from"react";import lh from"styled-components";import Kn from"styled-components";import{jsx as $r,jsxs as ih}from"react/jsx-runtime";var Mc=({className:e,checked:t,color:o="var(--privy-color-accent)",...r})=>$r("label",{children:ih(rh,{className:e,children:[$r(Oc,{checked:t,...r}),$r(nh,{color:o,checked:t,children:$r(Lc,{viewBox:"0 0 24 24",children:$r("polyline",{points:"20 6 9 17 4 12"})})})]})}),rh=Kn.div`
1027
1052
  display: inline-block;
1028
1053
  vertical-align: middle;
1029
- `,Wc=$n.svg`
1054
+ `,Lc=Kn.svg`
1030
1055
  fill: none;
1031
1056
  stroke: white;
1032
1057
  stroke-width: 3px;
1033
- `,Nc=$n.input.attrs({type:"checkbox"})`
1058
+ `,Oc=Kn.input.attrs({type:"checkbox"})`
1034
1059
  border: 0;
1035
1060
  clip: rect(0 0 0 0);
1036
1061
  clippath: inset(50%);
@@ -1041,7 +1066,7 @@ Resources:
1041
1066
  position: absolute;
1042
1067
  white-space: nowrap;
1043
1068
  width: 1px;
1044
- `,Zf=$n.div`
1069
+ `,nh=Kn.div`
1045
1070
  display: inline-block;
1046
1071
  width: 18px;
1047
1072
  height: 18px;
@@ -1056,28 +1081,28 @@ Resources:
1056
1081
  border-width: 1px;
1057
1082
  }
1058
1083
 
1059
- ${Nc}:focus + & {
1084
+ ${Oc}:focus + & {
1060
1085
  box-shadow: 0 0 0 1px ${e=>e.color};
1061
1086
  }
1062
1087
 
1063
- ${Wc} {
1088
+ ${Lc} {
1064
1089
  visibility: ${e=>e.checked?"visible":"hidden"};
1065
1090
  }
1066
- `;import{Fragment as nh,jsx as ct,jsxs as Gr}from"react/jsx-runtime";var Mc=({buttonHideAnimations:e,buttonLoading:t,onSubmit:o,onBack:r,config:n})=>{let[i,a]=th(!1);return Gr(nh,{children:[ct(x,{title:"Confirm Password",closeable:!1,backFn:r}),ct(P,{}),Gr(so,{children:[Gr(co,{children:[ct(eh,{height:48,width:48,stroke:"var(--privy-color-background)",fill:"var(--privy-color-error)"}),ct("h3",{style:{color:"var(--privy-color-foreground)"},children:"Confirm you have saved"}),ct("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Losing access to your password means you will lose access to your account."})]}),ct(Fr,{children:Gr(Br,{style:{color:"var(--privy-color-error)"},children:[ct(Ic,{color:"var(--privy-color-error)",checked:i,onChange:()=>a(c=>!c)}),"I understand losing my password means losing my account."]})})]}),Gr(rh,{children:[n.initiatedBy==="user"&&ct(In,{onClick:n.onCancel,disabled:t,children:"Cancel"}),ct(lo,{onClick:o,loading:t,hideAnimations:e,disabled:!i,children:"Set Password"})]}),ct(W,{}),ct(O,{protectedByPrivy:!0})]})},rh=oh.div`
1091
+ `;import{Fragment as dh,jsx as ct,jsxs as Vr}from"react/jsx-runtime";var Dc=({buttonHideAnimations:e,buttonLoading:t,onSubmit:o,onBack:r,config:n})=>{let[i,a]=sh(!1);return Vr(dh,{children:[ct(T,{title:"Confirm Password",closeable:!1,backFn:r}),ct(S,{}),Vr(lo,{children:[Vr(uo,{children:[ct(ah,{height:48,width:48,stroke:"var(--privy-color-background)",fill:"var(--privy-color-error)"}),ct("h3",{style:{color:"var(--privy-color-foreground)"},children:"Confirm you have saved"}),ct("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Losing access to your password means you will lose access to your account."})]}),ct(Gr,{children:Vr(zr,{style:{color:"var(--privy-color-error)"},children:[ct(Mc,{color:"var(--privy-color-error)",checked:i,onChange:()=>a(c=>!c)}),"I understand losing my password means losing my account."]})})]}),Vr(ch,{children:[n.initiatedBy==="user"&&ct(Mn,{onClick:n.onCancel,disabled:t,children:"Cancel"}),ct(co,{onClick:o,loading:t,hideAnimations:e,disabled:!i,children:"Set Password"})]}),ct(W,{}),ct(D,{protectedByPrivy:!0})]})},ch=lh.div`
1067
1092
  display: flex;
1068
1093
  gap: 10px;
1069
- `;import{KeyIcon as Ch}from"@heroicons/react/24/outline";import{CheckCircleIcon as Hc}from"@heroicons/react/24/solid";import{useState as bh,useMemo as ba,useEffect as Eh}from"react";import Gc from"styled-components";import ih from"fast-password-entropy";import*as Lc from"secure-password-utilities";import{DEFAULT_WORDLIST as ah}from"secure-password-utilities/wordlists";var sh=95,lh=8,ch=3,dh=.3,ph=/[a-z]/,uh=/[A-Z]/,mh=/[0-9]/,fh="a-zA-Z0-9",Oc="!@#$%^&*()\\-_+.",Dc=`${fh}${Oc}`,hh=new RegExp(`[${Oc}]`),yh=new RegExp(`[${Dc}]`),Uc=new RegExp(`^[${Dc}]{6,}$`),Fc=(e="")=>{let t=e.split("").filter(o=>!yh.test(o)).map(o=>o.replace(" ","SPACE"));return[...new Set(t)]},Vn=()=>Lc.generatePassphrase(4,ah);function gh(e){return e>.9?"Strong":e>.5?"Medium":"Weak"}function vh(e){if(e.length<lh)return 0;let t=0;ph.test(e)&&(t+=1),uh.test(e)&&(t+=1),mh.test(e)&&(t+=1),hh.test(e)&&(t+=1);let o=t/ch;return Math.max(0,Math.min(1,o))}function wh(e=""){let t=vh(e),o=ih(e)/sh;return(t*dh+o)/2}function Bc(e=""){let t=wh(e);return{value:t,label:gh(t)}}import{Fragment as Ph,jsx as Pe,jsxs as po}from"react/jsx-runtime";var zc=({buttonHideAnimations:e,buttonLoading:t,password:o="",config:r,onSubmit:n,onClose:i,onPasswordChange:a,onPasswordGenerate:c})=>{let[s,l]=bh(!1);Eh(()=>{o&&!s&&l(!0)},[o]);let y=ba(()=>s?(o?.length||0)<6?"Password must be at least 6 characters":Uc.test(o||"")?null:`Invalid characters used ( ${Fc(o).join(" ")} )`:null,[o,s]),m=ba(()=>y?{value:0,label:"Weak"}:Bc(o),[o,y]),v=ba(()=>!!(!o?.length||y),[y,o]);return po(Ph,{children:[Pe(x,{onClose:i,title:"Secure your account",closeable:r.initiatedBy==="user"}),Pe(P,{}),po(so,{children:[po(co,{children:[Pe(Ch,{height:48,width:48,stroke:"var(--privy-color-accent)"}),Pe("h3",{style:{color:"var(--privy-color-foreground)"},children:"Set your password"}),Pe("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Select a strong, memorable password to secure your account."})]}),po(ar,{children:[Pe(So,{value:o,onChange:h=>a(h.target.value),placeholder:"enter or generate a strong password"}),Pe(Sc,{onClick:c})]}),Pe(Ac,{value:m.value===0?.01:m.value,label:m.label}),Pe(zn,{error:!!y,children:y||`Password Strength: ${s?m.label:"--"}`}),po(Th,{children:[Pe(xh,{children:po(Fr,{children:[po(Br,{children:[Pe(Hc,{width:24,height:24,fill:"var(--privy-color-accent)"}),"This password is used to secure your account."]}),po(Br,{children:[Pe(Hc,{width:24,height:24,fill:"var(--privy-color-accent)"}),"You will only be asked to enter it when signing on to a new device."]})]})}),Pe(lo,{onClick:n,loading:t,disabled:v,hideAnimations:e,children:"Continue"})]})]}),Pe(W,{}),Pe(O,{protectedByPrivy:!0})]})},xh=Gc(Fr)`
1094
+ `;import{KeyIcon as _h}from"@heroicons/react/24/outline";import{CheckCircleIcon as $c}from"@heroicons/react/24/solid";import{useState as Vc,useMemo as _a,useEffect as Sh}from"react";import qc from"styled-components";import ph from"fast-password-entropy";import*as Uc from"secure-password-utilities";import{DEFAULT_WORDLIST as uh}from"secure-password-utilities/wordlists";var mh=95,fh=8,hh=3,yh=.3,gh=/[a-z]/,vh=/[A-Z]/,wh=/[0-9]/,Ch="a-zA-Z0-9",Fc="!@#$%^&*()\\-_+.",Bc=`${Ch}${Fc}`,bh=new RegExp(`[${Fc}]`),Eh=new RegExp(`[${Bc}]`),Hc=new RegExp(`^[${Bc}]{6,}$`),Gc=(e="")=>{let t=e.split("").filter(o=>!Eh.test(o)).map(o=>o.replace(" ","SPACE"));return[...new Set(t)]},Yn=()=>Uc.generatePassphrase(4,uh);function xh(e){return e>.9?"Strong":e>.5?"Medium":"Weak"}function Th(e){if(e.length<fh)return 0;let t=0;gh.test(e)&&(t+=1),vh.test(e)&&(t+=1),wh.test(e)&&(t+=1),bh.test(e)&&(t+=1);let o=t/hh;return Math.max(0,Math.min(1,o))}function Ph(e=""){let t=Th(e),o=ph(e)/mh;return(t*yh+o)/2}function zc(e=""){let t=Ph(e);return{value:t,label:xh(t)}}import{Fragment as Rh,jsx as ve,jsxs as Lt}from"react/jsx-runtime";var jc=({buttonHideAnimations:e,buttonLoading:t,password:o="",config:r,onSubmit:n,onClose:i,onPasswordChange:a,onPasswordGenerate:c})=>{let[l,s]=Vc(!1),[y,h]=Vc(!1);Sh(()=>{o&&!y&&h(!0)},[o]);let g=_a(()=>y?(o?.length||0)<6?"Password must be at least 6 characters":Hc.test(o||"")?null:`Invalid characters used ( ${Gc(o).join(" ")} )`:null,[o,y]),m=_a(()=>g?{value:0,label:"Weak"}:zc(o),[o,g]),w=_a(()=>!!(!o?.length||g),[g,o]);return Lt(Rh,{children:[ve(T,{onClose:i,title:"Secure your account",closeable:r.initiatedBy==="user"}),ve(S,{}),Lt(lo,{children:[Lt(uo,{children:[ve(_h,{height:48,width:48,stroke:"var(--privy-color-accent)"}),ve("h3",{style:{color:"var(--privy-color-foreground)"},children:"Set your password"}),ve("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Select a strong, memorable password to secure your account."})]}),Lt(po,{children:[ve(Ao,{value:o,onChange:_=>a(_.target.value),placeholder:"enter or generate a strong password",type:l?"password":"text"}),Lt(lr,{style:{width:"3.5rem"},children:[l?ve(cr,{onClick:()=>s(!1)}):ve(dr,{onClick:()=>s(!0)}),ve(Ic,{onClick:c})]})]}),ve(Wc,{value:m.value===0?.01:m.value,label:m.label}),ve(qn,{error:!!g,children:g||`Password Strength: ${y?m.label:"--"}`}),Lt(kh,{children:[ve(Ah,{children:Lt(Gr,{children:[Lt(zr,{children:[ve($c,{width:24,height:24,fill:"var(--privy-color-accent)"}),"This password is used to secure your account."]}),Lt(zr,{children:[ve($c,{width:24,height:24,fill:"var(--privy-color-accent)"}),"You will only be asked to enter it when signing on to a new device."]})]})}),ve(co,{onClick:n,loading:t,disabled:w,hideAnimations:e,children:"Continue"})]})]}),ve(W,{}),ve(D,{protectedByPrivy:!0})]})},Ah=qc(Gr)`
1070
1095
  flex: 1;
1071
1096
  padding-top: 1rem;
1072
- `,Th=Gc.div`
1097
+ `,kh=qc.div`
1073
1098
  display: flex;
1074
1099
  flex-direction: column;
1075
1100
  height: 100%;
1076
- `;import{ArrowDownTrayIcon as _h,ClipboardDocumentCheckIcon as Sh,DocumentDuplicateIcon as Ah,ExclamationTriangleIcon as kh}from"@heroicons/react/24/outline";import{useState as Rh,useCallback as $c}from"react";import{Fragment as Ea,jsx as Re,jsxs as Ao}from"react/jsx-runtime";var Vc=({buttonHideAnimations:e,buttonLoading:t,appName:o,password:r,onSubmit:n,onBack:i})=>{let[a,c]=Rh(!1),s=$c(()=>{c(!0),r&&navigator.clipboard.writeText(r)},[r]),l=$c(()=>{let y=document.createElement("a"),m=o.toLowerCase().replace(/[^a-z\s]/g,"").replace(/\s/g,"-"),v=new Blob([Ih(o,r)],{type:"text/plain"}),h=URL.createObjectURL(v);y.href=h,y.target="_blank",y.download=`${m}-privy-wallet-recovery.txt`,document.body.appendChild(y),y.click(),setTimeout(()=>{y.remove(),URL.revokeObjectURL(h)},5e3)},[r]);return Ao(Ea,{children:[Re(x,{backFn:i,title:"Save Password",closeable:!1}),Re(P,{}),Ao(so,{children:[Ao(co,{children:[Re(kh,{height:48,width:48,stroke:"var(--privy-color-background)",fill:"var(--privy-color-accent)"}),Re("h3",{style:{color:"var(--privy-color-foreground)"},children:"Save your password"}),Re("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."})]}),Re(ar,{centered:!0,children:Re(Pc,{children:r})}),Ao("div",{style:{display:"flex",margin:"12px 0",gap:"12px"},children:[Re(wa,{onClick:s,children:a?Ao(Ea,{children:[Re(Sh,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Copied"]}):Ao(Ea,{children:[Re(Ah,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Copy"]})}),Ao(wa,{onClick:l,children:[Re(_h,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Download"]})]})]}),Re(lo,{onClick:n,loading:t,hideAnimations:e,children:"Continue"}),Re(W,{}),Re(O,{protectedByPrivy:!0})]})},Ih=(e,t)=>`Your wallet recovery password for ${e} is
1101
+ `;import{ArrowDownTrayIcon as Ih,ClipboardDocumentCheckIcon as Wh,DocumentDuplicateIcon as Nh,ExclamationTriangleIcon as Mh}from"@heroicons/react/24/outline";import{useState as Lh,useCallback as Kc}from"react";import{Fragment as Sa,jsx as We,jsxs as ko}from"react/jsx-runtime";var Yc=({buttonHideAnimations:e,buttonLoading:t,appName:o,password:r,onSubmit:n,onBack:i})=>{let[a,c]=Lh(!1),l=Kc(()=>{c(!0),r&&navigator.clipboard.writeText(r)},[r]),s=Kc(()=>{let y=document.createElement("a"),h=o.toLowerCase().replace(/[^a-z\s]/g,"").replace(/\s/g,"-"),g=new Blob([Oh(o,r)],{type:"text/plain"}),m=URL.createObjectURL(g);y.href=m,y.target="_blank",y.download=`${h}-privy-wallet-recovery.txt`,document.body.appendChild(y),y.click(),setTimeout(()=>{y.remove(),URL.revokeObjectURL(m)},5e3)},[r]);return ko(Sa,{children:[We(T,{backFn:i,title:"Save Password",closeable:!1}),We(S,{}),ko(lo,{children:[ko(uo,{children:[We(Mh,{height:48,width:48,stroke:"var(--privy-color-background)",fill:"var(--privy-color-accent)"}),We("h3",{style:{color:"var(--privy-color-foreground)"},children:"Save your password"}),We("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."})]}),We(po,{centered:!0,children:We(kc,{children:r})}),ko("div",{style:{display:"flex",margin:"12px 0",gap:"12px"},children:[We(Ta,{onClick:l,children:a?ko(Sa,{children:[We(Wh,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Copied"]}):ko(Sa,{children:[We(Nh,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Copy"]})}),ko(Ta,{onClick:s,children:[We(Ih,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Download"]})]})]}),We(co,{onClick:n,loading:t,hideAnimations:e,children:"Continue"}),We(W,{}),We(D,{protectedByPrivy:!0})]})},Oh=(e,t)=>`Your wallet recovery password for ${e} is
1077
1102
 
1078
1103
  ${t}
1079
1104
 
1080
- You will need this password to access your ${e} wallet on a new device. Please keep it somewhere safe.`;import{CheckCircleIcon as Wh,XCircleIcon as Nh}from"@heroicons/react/24/outline";import{Fragment as Mh,jsx as Lt,jsxs as xa}from"react/jsx-runtime";var qc=({error:e,onClose:t})=>xa(Mh,{children:[Lt(x,{closeable:!1}),Lt(P,{}),e?xa(at,{children:[Lt(Nh,{stroke:"var(--privy-color-error)",width:"64px",height:"64px"}),Lt(le,{title:"Something went wrong",description:e})]}):xa(at,{children:[Lt(Wh,{stroke:"var(--privy-color-success)",width:"64px",height:"64px"}),Lt(le,{title:"Success"})]}),Lt(q,{onClick:t,children:"Close"}),Lt(W,{}),Lt(O,{protectedByPrivy:!0})]});import{useReducer as Lh}from"react";var Oh=(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}},jc=()=>{let[e,t]=Lh(Oh,"creating");return{send:t,state:e}};import{jsx as zr}from"react/jsx-runtime";var qn=({onSubmit:e,...t})=>{let{send:o,state:r}=jc(),n=Kc(async()=>{r==="finalizing"&&await e(),o("next")},[r,o,e]);Dh(()=>{let a;return r==="done"&&t.config.initiatedBy==="automatic"&&(a=setTimeout(()=>t.onClose?.(),Fe)),()=>{a&&clearTimeout(a)}},[r,t.config.initiatedBy,t.onClose]);let i=Kc(()=>{o("back")},[o]);return r==="creating"?zr(zc,{...t,onSubmit:n}):r==="saving"?zr(Vc,{...t,onSubmit:n,onBack:i}):r==="confirming"?zr(Rc,{...t,onSubmit:n,onBack:i}):r==="finalizing"?zr(Mc,{...t,onSubmit:n,onBack:i}):r==="done"?zr(qc,{...t,onSubmit:n}):null};import{Fragment as Hh,jsx as Ot,jsxs as Jc}from"react/jsx-runtime";var Bh=250,Qc=()=>{let{app:e,navigate:t,data:o,outerClickRef:r}=b(),[n,i]=$r(""),[a,c]=$r(!1),[s,l]=$r(),[y,m]=$r(null),[v,h]=$r(null),w=Fh(!1),{authenticated:_,getAccessToken:S}=V(),{refreshUser:T,closePrivyModal:C,createAnalyticsEvent:D,isNewUserThisSession:I,initializeWalletProxy:k}=A(),{onSuccess:N,onFailure:U,callAuthOnSuccessOnClose:ae}=o.createWallet,F=e?.embeddedWallets.requireUserPasswordOnCreate===!0,K=!!(!n||w.current)&&!F,H=new qe(async()=>L());Yc(()=>{y||k(3e4).then(X=>m(X))},[y]),Yc(()=>{if(!_){t("LANDING"),U(new Error("User must be authenticated before creating a Privy wallet"));return}!F&&!a&&!w.current&&(c(!0),H.execute().finally(()=>c(!1)))},[F,_]);let Z=()=>{F&&v&&v?.recoveryMethod!=="user-passcode"?U(new Oe("User created a wallet but failed to set a password for it")):v?N(v):U(new Oe("User wallet creation failed")),C({shouldCallAuthOnSuccess:ae})};r&&(r.current=()=>({closeModal:!1}));let L=async function(){let X=await S();if(X)try{if(D("embedded_wallet_creation_started"),!await(await k(jo))?.create({accessToken:X,recoveryPassword:s}))throw D("embedded_wallet_creation_failed",{error:"walletProxy did not send a response."}),new Error("Unable to create wallet");let fe=await T(),G=oe(fe);if(!G)throw D("embedded_wallet_creation_failed",{error:"Updated user is missing embedded wallet."}),new Error("Unable to create wallet");h(G),D("embedded_wallet_creation_completed",{walletAddress:G.address}),i(""),w.current=!0,F?t("EMBEDDED_WALLET_CREATED_SCREEN"):I?t("EMBEDDED_WALLET_CREATED_SCREEN"):G&&(N(G),C({shouldCallAuthOnSuccess:ae}))}catch(j){if(w.current)return;i("An error has occurred, please try again."),console.warn(j)}else i("An error has occured, please login again."),D("embedded_wallet_creation_failed",{error:"Missing access token for user."})},We=async()=>F?(c(!0),H.execute().then(()=>new Promise(X=>setTimeout(X,Bh))).finally(()=>c(!1))):C({shouldCallAuthOnSuccess:ae});return!F&&n?Jc(Hh,{children:[Ot(x,{closeable:!1}),Ot(P,{}),Jc(at,{children:[Ot(Uh,{fill:"var(--privy-color-error)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),Ot(le,{title:"Something went wrong",description:n})]}),Ot(q,{onClick:Z,children:"Close"}),Ot(W,{})]}):K?Ot(_c,{children:Ot(rr,{})}):Ot(qn,{config:{initiatedBy:"automatic"},appName:e?.name||"privy",loading:K||!y,buttonLoading:a,buttonHideAnimations:!v&&a,error:n,password:s||"",onClose:Z,onPasswordChange:l,onPasswordGenerate:()=>l(Vn()),onSubmit:We})};import{useEffect as Gh,useState as jn}from"react";import{jsx as zh}from"react/jsx-runtime";var Zc=()=>{let[e,t]=jn(null),[o,r]=jn(!1),[n,i]=jn(null),[a,c]=jn(""),{authenticated:s,getAccessToken:l,user:y}=V(),{walletProxy:m,refreshUser:v,closePrivyModal:h,createAnalyticsEvent:w}=A(),{app:_,navigate:S,data:T,outerClickRef:C}=b(),{onSuccess:D,onFailure:I}=T.createWallet,k=oe(y),N=e?.recoveryMethod==="user-passcode";Gh(()=>{s||(S("LANDING"),I(new an("User must be authenticated before setting a password on a Privy wallet")))},[s]);let U=()=>{if(n){I(n),h({shouldCallAuthOnSuccess:!1});return}if(!N){I(new Oe("Exited before password was added to wallet")),h({shouldCallAuthOnSuccess:!1});return}D(e),h({shouldCallAuthOnSuccess:!1})};C&&(C.current=()=>(U(),{closeModal:!N}));let ae=async()=>{let K=await l();if(K&&k?.address&&a&&m)try{if(w("embedded_wallet_set_password_started",{walletAddress:k.address}),!(await m.setRecoveryPassword({accessToken:K,address:k.address,recoveryPassword:a})).address){i(new Oe("Error setting password on privy wallet")),w("embedded_wallet_set_password_failed",{walletAddress:k.address,reason:"error setting password"});return}let Z=await v(),L=oe(Z);if(!L){i(new Oe("Error setting password on privy wallet")),w("embedded_wallet_set_password_failed",{walletAddress:k.address,reason:"wallet disconnected"});return}t(L),w("embedded_wallet_set_password_completed",{walletAddress:k.address})}catch(H){console.warn(H),i(H instanceof Error?H:new Error("Error setting password on privy wallet")),w("embedded_wallet_set_password_failed",{walletAddress:k.address,reason:H})}},F=async()=>{N?(D(e),h({shouldCallAuthOnSuccess:!1})):(r(!0),i(null),await ae(),r(!1))};return zh(qn,{appName:_?.name||"privy",config:{initiatedBy:"user",onCancel:U},error:n?"An error has occurred, please try again.":void 0,buttonLoading:o,buttonHideAnimations:!1,password:a,onPasswordGenerate:()=>c(Vn()),onPasswordChange:c,onSubmit:F,onClose:U})};import{UserCircleIcon as $h}from"@heroicons/react/24/outline";import{LockClosedIcon as Vh}from"@heroicons/react/24/solid";import{useEffect as qh}from"react";import{Fragment as jh,jsx as Dt,jsxs as Kn}from"react/jsx-runtime";var Xc=()=>{let{user:e}=V(),{closePrivyModal:t,createAnalyticsEvent:o}=A(),{data:r,setModalData:n,navigate:i,outerClickRef:a}=b(),{onSuccess:c,onFailure:s}=r.setWalletPassword,l=()=>{s(new Oe("Exited before password was added to wallet")),t({shouldCallAuthOnSuccess:!1})};return qh(()=>{a&&(a.current=l)},[]),Kn(jh,{children:[Dt(x,{onClose:l}),Dt(P,{}),Kn(at,{children:[Kn(Ll,{children:[Dt($h,{stroke:"var(--privy-color-accent)",width:"64px",height:"64px"}),Dt(Ol,{style:{width:24,height:24,position:"absolute",bottom:0,right:0},children:Dt(Vh,{width:"12px",height:"12px",fill:"white"})})]}),Kn(le,{title:"Secure Your Account",children:["Please set a password to secure your account.",Dt("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."})]})]}),Dt(q,{onClick:()=>{let m=oe(e);o("embedded_wallet_set_password_started",{walletAddress:m?.address}),n({createWallet:{onFailure:s,onSuccess:c,callAuthOnSuccessOnClose:!1,addPasswordToExistingWallet:!0}}),i("EMBEDDED_WALLET_PASSWORD_UPDATE_SCREEN")},children:"Add password"}),Dt(W,{}),Dt(O,{protectedByPrivy:!0})]})};import{ShieldCheckIcon as Kh}from"@heroicons/react/24/outline";import{useEffect as Yh,useState as Ta}from"react";import Yn,{css as Jh}from"styled-components";import{Fragment as ty,jsx as Ze,jsxs as sr}from"react/jsx-runtime";var ed=()=>{let{authenticated:e,getAccessToken:t}=V(),{walletProxy:o,closePrivyModal:r,createAnalyticsEvent:n}=A(),{navigate:i,data:a,outerClickRef:c}=b(),[s,l]=Ta(void 0),[y,m]=Ta(""),[v,h]=Ta(!1),{privyWallet:w,onCompleteNavigateTo:_,onSuccess:S,onFailure:T}=a.recoverWallet,C=(k="User exited before their wallet could be recovered")=>{r({shouldCallAuthOnSuccess:!1}),T(typeof k=="string"?new Oe(k):k)};c&&(c.current=()=>C()),Yh(()=>{if(!e||!w)return C("User must be authenticated and have a Privy wallet before it can be recovered")},[e]);let D=k=>{k&&l(k)};return sr(ty,{children:[Ze(x,{onClose:C}),Ze(P,{}),sr(Zh,{children:[sr(Qh,{children:[Ze(Kh,{height:48,width:48,stroke:"var(--privy-color-accent)"}),Ze("h3",{style:{color:"var(--privy-color-foreground)"},children:"Load your account"}),Ze("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Please provision your account on this new device. To continue, enter your recovery password."})]}),sr("div",{children:[Ze(So,{type:"password",onChange:k=>D(k.target.value),disabled:v}),!!y&&Ze(Xh,{children:y})]}),sr("div",{children:[sr(Ml,{children:[Ze("h4",{children:"Why is this necessary?"}),Ze("p",{children:"You previously set a password for this wallet. This helps ensure only you can access it"})]}),Ze(ey,{loading:v||!o,disabled:!s,onClick:async()=>{h(!0);let k=await t();if(k&&w&&s!==null)try{n("embedded_wallet_recovery_started",{walletAddress:w.address}),await o?.recover({address:w.address,accessToken:k,recoveryPin:s}),m(""),_?i(_):r({shouldCallAuthOnSuccess:!1}),S?.(w),n("embedded_wallet_recovery_completed",{walletAddress:w.address})}catch(N){pc(N)?m("Invalid recovery password, please try again."):m("An error has occurred, please try again.")}finally{h(!1)}else return C("User must be authenticated and have a Privy wallet before it can be recovered")},warn:!1,hideAnimations:!w&&v,children:"Recover your account"})]})]}),Ze(W,{}),Ze(O,{protectedByPrivy:!0})]})},Qh=Yn.div`
1105
+ You will need this password to access your ${e} wallet on a new device. Please keep it somewhere safe.`;import{CheckCircleIcon as Dh,XCircleIcon as Uh}from"@heroicons/react/24/outline";import{Fragment as Fh,jsx as Ot,jsxs as Aa}from"react/jsx-runtime";var Jc=({error:e,onClose:t})=>Aa(Fh,{children:[Ot(T,{closeable:!1}),Ot(S,{}),e?Aa(st,{children:[Ot(Uh,{stroke:"var(--privy-color-error)",width:"64px",height:"64px"}),Ot(le,{title:"Something went wrong",description:e})]}):Aa(st,{children:[Ot(Dh,{stroke:"var(--privy-color-success)",width:"64px",height:"64px"}),Ot(le,{title:"Success"})]}),Ot(q,{onClick:t,children:"Close"}),Ot(W,{}),Ot(D,{protectedByPrivy:!0})]});import{useReducer as Bh}from"react";var Hh=(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}},Qc=()=>{let[e,t]=Bh(Hh,"creating");return{send:t,state:e}};import{jsx as qr}from"react/jsx-runtime";var Jn=({onSubmit:e,...t})=>{let{send:o,state:r}=Qc(),n=Zc(async()=>{r==="finalizing"&&await e(),o("next")},[r,o,e]);Gh(()=>{let a;return r==="done"&&t.config.initiatedBy==="automatic"&&(a=setTimeout(()=>t.onClose?.(),He)),()=>{a&&clearTimeout(a)}},[r,t.config.initiatedBy,t.onClose]);let i=Zc(()=>{o("back")},[o]);return r==="creating"?qr(jc,{...t,onSubmit:n}):r==="saving"?qr(Yc,{...t,onSubmit:n,onBack:i}):r==="confirming"?qr(Nc,{...t,onSubmit:n,onBack:i}):r==="finalizing"?qr(Dc,{...t,onSubmit:n,onBack:i}):r==="done"?qr(Jc,{...t,onSubmit:n}):null};import{Fragment as qh,jsx as Dt,jsxs as ed}from"react/jsx-runtime";var Vh=250,td=()=>{let{app:e,navigate:t,data:o,outerClickRef:r}=C(),[n,i]=jr(""),[a,c]=jr(!1),[l,s]=jr(),[y,h]=jr(null),[g,m]=jr(null),w=$h(!1),{authenticated:_,getAccessToken:P}=V(),{refreshUser:x,closePrivyModal:b,createAnalyticsEvent:U,isNewUserThisSession:k,initializeWalletProxy:L}=A(),{onSuccess:N,onFailure:I,callAuthOnSuccessOnClose:ne}=o.createWallet,F=e?.embeddedWallets.requireUserPasswordOnCreate===!0,K=!!(!n||w.current)&&!F,H=new Ke(async()=>O());Xc(()=>{y||L(3e4).then(X=>h(X))},[y]),Xc(()=>{if(!_){t("LANDING"),I(new Error("User must be authenticated before creating a Privy wallet"));return}!F&&!a&&!w.current&&(c(!0),H.execute().finally(()=>c(!1)))},[F,_]);let Z=()=>{F&&g&&g?.recoveryMethod!=="user-passcode"?I(new Ue("User created a wallet but failed to set a password for it")):g?N(g):I(new Ue("User wallet creation failed")),b({shouldCallAuthOnSuccess:ne})};r&&(r.current=()=>({closeModal:!1}));let O=async function(){let X=await P();if(X)try{if(U("embedded_wallet_creation_started"),!await(await L(Yo))?.create({accessToken:X,recoveryPassword:l}))throw U("embedded_wallet_creation_failed",{error:"walletProxy did not send a response."}),new Error("Unable to create wallet");let fe=await x(),G=oe(fe);if(!G)throw U("embedded_wallet_creation_failed",{error:"Updated user is missing embedded wallet."}),new Error("Unable to create wallet");m(G),U("embedded_wallet_creation_completed",{walletAddress:G.address}),i(""),w.current=!0,F?t("EMBEDDED_WALLET_CREATED_SCREEN"):k?t("EMBEDDED_WALLET_CREATED_SCREEN"):G&&(N(G),b({shouldCallAuthOnSuccess:ne}))}catch(j){if(w.current)return;i("An error has occurred, please try again."),console.warn(j)}else i("An error has occured, please login again."),U("embedded_wallet_creation_failed",{error:"Missing access token for user."})},Me=async()=>F?(c(!0),H.execute().then(()=>new Promise(X=>setTimeout(X,Vh))).finally(()=>c(!1))):b({shouldCallAuthOnSuccess:ne});return!F&&n?ed(qh,{children:[Dt(T,{closeable:!1}),Dt(S,{}),ed(st,{children:[Dt(zh,{fill:"var(--privy-color-error)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),Dt(le,{title:"Something went wrong",description:n})]}),Dt(q,{onClick:Z,children:"Close"}),Dt(W,{})]}):K?Dt(Rc,{children:Dt(ir,{})}):Dt(Jn,{config:{initiatedBy:"automatic"},appName:e?.name||"privy",loading:K||!y,buttonLoading:a,buttonHideAnimations:!g&&a,error:n,password:l||"",onClose:Z,onPasswordChange:s,onPasswordGenerate:()=>s(Yn()),onSubmit:Me})};import{useEffect as jh,useState as Qn}from"react";import{jsx as Kh}from"react/jsx-runtime";var od=()=>{let[e,t]=Qn(null),[o,r]=Qn(!1),[n,i]=Qn(null),[a,c]=Qn(""),{authenticated:l,getAccessToken:s,user:y}=V(),{walletProxy:h,refreshUser:g,closePrivyModal:m,createAnalyticsEvent:w}=A(),{app:_,navigate:P,data:x,outerClickRef:b}=C(),{onSuccess:U,onFailure:k}=x.createWallet,L=oe(y),N=e?.recoveryMethod==="user-passcode";jh(()=>{l||(P("LANDING"),k(new cn("User must be authenticated before setting a password on a Privy wallet")))},[l]);let I=()=>{if(n){k(n),m({shouldCallAuthOnSuccess:!1});return}if(!N){k(new Ue("Exited before password was added to wallet")),m({shouldCallAuthOnSuccess:!1});return}U(e),m({shouldCallAuthOnSuccess:!1})};b&&(b.current=()=>(I(),{closeModal:!N}));let ne=async()=>{let K=await s();if(K&&L?.address&&a&&h)try{if(w("embedded_wallet_set_password_started",{walletAddress:L.address}),!(await h.setRecoveryPassword({accessToken:K,address:L.address,recoveryPassword:a})).address){i(new Ue("Error setting password on privy wallet")),w("embedded_wallet_set_password_failed",{walletAddress:L.address,reason:"error setting password"});return}let Z=await g(),O=oe(Z);if(!O){i(new Ue("Error setting password on privy wallet")),w("embedded_wallet_set_password_failed",{walletAddress:L.address,reason:"wallet disconnected"});return}t(O),w("embedded_wallet_set_password_completed",{walletAddress:L.address})}catch(H){console.warn(H),i(H instanceof Error?H:new Error("Error setting password on privy wallet")),w("embedded_wallet_set_password_failed",{walletAddress:L.address,reason:H})}},F=async()=>{N?(U(e),m({shouldCallAuthOnSuccess:!1})):(r(!0),i(null),await ne(),r(!1))};return Kh(Jn,{appName:_?.name||"privy",config:{initiatedBy:"user",onCancel:I},error:n?"An error has occurred, please try again.":void 0,buttonLoading:o,buttonHideAnimations:!1,password:a,onPasswordGenerate:()=>c(Yn()),onPasswordChange:c,onSubmit:F,onClose:I})};import{UserCircleIcon as Yh}from"@heroicons/react/24/outline";import{LockClosedIcon as Jh}from"@heroicons/react/24/solid";import{useEffect as Qh}from"react";import{Fragment as Zh,jsx as Ut,jsxs as Zn}from"react/jsx-runtime";var rd=()=>{let{user:e}=V(),{closePrivyModal:t,createAnalyticsEvent:o}=A(),{data:r,setModalData:n,navigate:i,outerClickRef:a}=C(),{onSuccess:c,onFailure:l}=r.setWalletPassword,s=()=>{l(new Ue("Exited before password was added to wallet")),t({shouldCallAuthOnSuccess:!1})};return Qh(()=>{a&&(a.current=s)},[]),Zn(Zh,{children:[Ut(T,{onClose:s}),Ut(S,{}),Zn(st,{children:[Zn(Fl,{children:[Ut(Yh,{stroke:"var(--privy-color-accent)",width:"64px",height:"64px"}),Ut(Bl,{style:{width:24,height:24,position:"absolute",bottom:0,right:0},children:Ut(Jh,{width:"12px",height:"12px",fill:"white"})})]}),Zn(le,{title:"Secure Your Account",children:["Please set a password to secure your account.",Ut("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."})]})]}),Ut(q,{onClick:()=>{let h=oe(e);o("embedded_wallet_set_password_started",{walletAddress:h?.address}),n({createWallet:{onFailure:l,onSuccess:c,callAuthOnSuccessOnClose:!1,addPasswordToExistingWallet:!0}}),i("EMBEDDED_WALLET_PASSWORD_UPDATE_SCREEN")},children:"Add password"}),Ut(W,{}),Ut(D,{protectedByPrivy:!0})]})};import{ShieldCheckIcon as Xh}from"@heroicons/react/24/outline";import{useEffect as ey,useState as Xn}from"react";import ei,{css as ty}from"styled-components";import{Fragment as ay,jsx as Se,jsxs as Ro}from"react/jsx-runtime";var nd=()=>{let[e,t]=Xn(!0),{authenticated:o,getAccessToken:r}=V(),{walletProxy:n,closePrivyModal:i,createAnalyticsEvent:a}=A(),{navigate:c,data:l,outerClickRef:s}=C(),[y,h]=Xn(void 0),[g,m]=Xn(""),[w,_]=Xn(!1),{privyWallet:P,onCompleteNavigateTo:x,onSuccess:b,onFailure:U}=l.recoverWallet,k=(I="User exited before their wallet could be recovered")=>{i({shouldCallAuthOnSuccess:!1}),U(typeof I=="string"?new Ue(I):I)};s&&(s.current=()=>k()),ey(()=>{if(!o||!P)return k("User must be authenticated and have a Privy wallet before it can be recovered")},[o]);let L=I=>{I&&h(I)};return Ro(ay,{children:[Se(T,{onClose:k}),Se(S,{}),Ro(ry,{children:[Ro(oy,{children:[Se(Xh,{height:48,width:48,stroke:"var(--privy-color-accent)"}),Se("h3",{style:{color:"var(--privy-color-foreground)"},children:"Load your account"}),Se("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Please provision your account on this new device. To continue, enter your recovery password."})]}),Ro("div",{children:[Ro(po,{children:[Se(Ao,{type:e?"password":"text",onChange:I=>L(I.target.value),disabled:w}),Se(lr,{style:{right:"0.75rem"},children:e?Se(cr,{onClick:()=>t(!1)}):Se(dr,{onClick:()=>t(!0)})})]}),!!g&&Se(ny,{children:g})]}),Ro("div",{children:[Ro(Ul,{children:[Se("h4",{children:"Why is this necessary?"}),Se("p",{children:"You previously set a password for this wallet. This helps ensure only you can access it"})]}),Se(iy,{loading:w||!n,disabled:!y,onClick:async()=>{_(!0);let I=await r();if(I&&P&&y!==null)try{a("embedded_wallet_recovery_started",{walletAddress:P.address}),await n?.recover({address:P.address,accessToken:I,recoveryPin:y}),m(""),x?c(x):i({shouldCallAuthOnSuccess:!1}),b?.(P),a("embedded_wallet_recovery_completed",{walletAddress:P.address})}catch(ne){hc(ne)?m("Invalid recovery password, please try again."):m("An error has occurred, please try again.")}finally{_(!1)}else return k("User must be authenticated and have a Privy wallet before it can be recovered")},warn:!1,hideAnimations:!P&&w,children:"Recover your account"})]})]}),Se(W,{}),Se(D,{protectedByPrivy:!0})]})},oy=ei.div`
1081
1106
  display: flex;
1082
1107
  flex-direction: column;
1083
1108
  align-items: center;
@@ -1099,33 +1124,33 @@ You will need this password to access your ${e} wallet on a new device. Please k
1099
1124
  font-weight: 400;
1100
1125
  line-height: 20px;
1101
1126
  }
1102
- `,Zh=Yn.div`
1127
+ `,ry=ei.div`
1103
1128
  display: flex;
1104
1129
  height: 100%;
1105
1130
  flex-direction: column;
1106
1131
  justify-content: space-between;
1107
- `,Xh=Yn.div`
1132
+ `,ny=ei.div`
1108
1133
  line-height: 20px;
1109
1134
  height: 20px;
1110
1135
  font-size: 13px;
1111
1136
  color: var(--privy-color-error);
1112
1137
  text-align: left;
1113
1138
  margin-top: 0.5rem;
1114
- `,ey=Yn(q)`
1115
- ${e=>e.hideAnimations&&Jh`
1139
+ `,iy=ei(q)`
1140
+ ${e=>e.hideAnimations&&ty`
1116
1141
  && {
1117
1142
  // Remove animations because the recoverWallet task on the iframe partially
1118
1143
  // blocks the renderer, so the animation stutters and doesn't look good
1119
1144
  transition: none;
1120
1145
  }
1121
1146
  `}
1122
- `;import{EyeSlashIcon as ry,LinkIcon as ny,ClockIcon as iy}from"@heroicons/react/24/outline";import Ut from"styled-components";import{jsx as Pa,jsxs as oy}from"react/jsx-runtime";var Jn=({size:e=61,...t})=>Pa("svg",{width:e,height:e,viewBox:"0 0 61 61",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:oy("g",{id:"moonpay_symbol_wht 2",children:[Pa("rect",{x:"1.3374",y:"1",width:"59",height:"59",rx:"11.5",fill:"#7715F5"}),Pa("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 td,jsx as _e,jsxs as ko}from"react/jsx-runtime";var _a=({title:e,desc:t,icon:o})=>ko(dy,{children:[_e(uy,{children:o}),ko(py,{children:[_e(ly,{children:e}),_e(cy,{children:t})]})]}),od=({app:e,signedUrl:t,onContinue:o})=>ko(td,{children:[ko(ay,{children:[_e(Jn,{size:"3.75rem"}),ko(sy,{children:[e?.name," uses ",_e("span",{style:{fontWeight:"bold"},children:"Moonpay"})," to fund your account"]}),ko(my,{children:[_e(_a,{icon:_e(ny,{width:"1rem"}),title:"Purchase assets to fund your account",desc:ko(td,{children:["Connect a payment method (",_e("strong",{children:"debit card recommended"}),") to purchase digital assets."]})}),_e(_a,{icon:_e(iy,{width:"1rem"}),title:"Compliance takes time",desc:"Funding a new account may take a few hours. You'll be good to go thereafter."}),_e(_a,{icon:_e(ry,{width:"1rem"}),title:"Your data belongs to you",desc:"MoonPay does not sell your data and will only use it with your permission."})]}),_e(fy,{className:"mobile-only"})]}),_e(pe,{children:_e(Rn,{href:t,target:"_blank",rel:"noopener noreferrer",annotation:"By clicking continue, you will be taken to MoonPay in a new tab",onClick:o,children:"Continue to Moonpay"})})]}),ay=Ut.div`
1147
+ `;import{EyeSlashIcon as ly,LinkIcon as cy,ClockIcon as dy}from"@heroicons/react/24/outline";import Ft from"styled-components";import{jsx as ka,jsxs as sy}from"react/jsx-runtime";var ti=({size:e=61,...t})=>ka("svg",{width:e,height:e,viewBox:"0 0 61 61",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:sy("g",{id:"moonpay_symbol_wht 2",children:[ka("rect",{x:"1.3374",y:"1",width:"59",height:"59",rx:"11.5",fill:"#7715F5"}),ka("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 id,jsx as Ae,jsxs as Io}from"react/jsx-runtime";var Ra=({title:e,desc:t,icon:o})=>Io(hy,{children:[Ae(gy,{children:o}),Io(yy,{children:[Ae(my,{children:e}),Ae(fy,{children:t})]})]}),ad=({app:e,signedUrl:t,onContinue:o})=>Io(id,{children:[Io(py,{children:[Ae(ti,{size:"3.75rem"}),Io(uy,{children:[e?.name," uses ",Ae("span",{style:{fontWeight:"bold"},children:"Moonpay"})," to fund your account"]}),Io(vy,{children:[Ae(Ra,{icon:Ae(cy,{width:"1rem"}),title:"Purchase assets to fund your account",desc:Io(id,{children:["Connect a payment method (",Ae("strong",{children:"debit card recommended"}),") to purchase digital assets."]})}),Ae(Ra,{icon:Ae(dy,{width:"1rem"}),title:"Compliance takes time",desc:"Funding a new account may take a few hours. You'll be good to go thereafter."}),Ae(Ra,{icon:Ae(ly,{width:"1rem"}),title:"Your data belongs to you",desc:"MoonPay does not sell your data and will only use it with your permission."})]}),Ae(wy,{className:"mobile-only"})]}),Ae(pe,{children:Ae(Nn,{href:t,target:"_blank",rel:"noopener noreferrer",annotation:"By clicking continue, you will be taken to MoonPay in a new tab",onClick:o,children:"Continue to Moonpay"})})]}),py=Ft.div`
1123
1148
  display: flex;
1124
1149
  flex-direction: column;
1125
1150
  align-items: center;
1126
1151
  justify-content: center;
1127
1152
  padding-top: 2rem;
1128
- `,sy=Ut.span`
1153
+ `,uy=Ft.span`
1129
1154
  color: var(--privy-color-foreground);
1130
1155
  text-align: center;
1131
1156
  font-size: 1.125rem;
@@ -1134,64 +1159,64 @@ You will need this password to access your ${e} wallet on a new device. Please k
1134
1159
  margin: 1.5rem 0;
1135
1160
  text-align: center;
1136
1161
  max-width: 19.5rem;
1137
- `,ly=Ut.span`
1162
+ `,my=Ft.span`
1138
1163
  color: var(--privy-color-foreground);
1139
1164
  font-size: 0.875rem;
1140
1165
  font-weight: 500;
1141
1166
  line-height: 1.225rem;
1142
1167
  width: 100%;
1143
- `,cy=Ut.span`
1168
+ `,fy=Ft.span`
1144
1169
  color: var(--privy-color-foreground-2);
1145
1170
  font-size: 0.875rem;
1146
1171
  font-weight: 400;
1147
1172
  line-height: 1.225rem;
1148
- `,dy=Ut.div`
1173
+ `,hy=Ft.div`
1149
1174
  display: flex;
1150
1175
  align-items: flex-start;
1151
1176
  gap: 0.5rem;
1152
1177
  align-self: stretch;
1153
- `,py=Ut.div`
1178
+ `,yy=Ft.div`
1154
1179
  display: flex;
1155
1180
  flex-direction: column;
1156
1181
  gap: 0.25rem;
1157
1182
  align-items: flex-start;
1158
1183
  text-align: left;
1159
1184
  flex: 1 0 0;
1160
- `,uy=Ut.div`
1185
+ `,gy=Ft.div`
1161
1186
  padding-top: 2px;
1162
- `,my=Ut.div`
1187
+ `,vy=Ft.div`
1163
1188
  display: flex;
1164
1189
  flex-direction: column;
1165
1190
  gap: 1.25rem;
1166
1191
  margin: 0 0.5rem;
1167
- `,fy=Ut.div`
1192
+ `,wy=Ft.div`
1168
1193
  margin: 30px 0;
1169
- `;import{ofetch as hy}from"ofetch";import{useEffect as yy,useRef as gy,useState as vy}from"react";var Qn="moonpay",rd="sdk_fiat_on_ramp_completed_with_status";async function nd(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 wy(e,t){let o=t?Qs:Js,r=t?Xs:Zs;return hy(`${o}/transactions/ext/${e}`,{query:{apiKey:r}})}function id(e,t=!1){let[o,r]=vy(null),{createAnalyticsEvent:n}=A(),i=gy(0);return yy(()=>{let a=setInterval(async()=>{if(e)try{let[c]=await wy(e,t),s=c.status==="waitingAuthorization"&&c.paymentMethod==="credit_debit_card"?"pending":c.status;r(s),["failed","completed","awaitingAuthorization"].includes(s)&&(n(rd,{status:s,provider:Qn,paymentMethod:c.paymentMethod,cardPaymentType:c.cardPaymentType,currency:c.currency?.code,baseCurrencyAmount:c.baseCurrencyAmount,quoteCurrencyAmount:c.quoteCurrencyAmount,feeAmount:c.feeAmount,extraFeeAmount:c.extraFeeAmount,networkFeeAmount:c.networkFeeAmount}),clearInterval(a))}catch(c){c.response?.status!==404&&(i.current+=1),i.current>=3&&(r("serviceFailure"),n(rd,{status:"serviceFailure",provider:Qn}),clearInterval(a))}},3e3);return()=>clearInterval(a)},[e,i]),o}import{Fragment as Cy,jsx as Zn,jsxs as by}from"react/jsx-runtime";var ad=()=>{let{app:e,data:t,navigate:o}=b(),{createAnalyticsEvent:r}=A(),{signedUrl:n}=t.fiatOnRampPrompt;return!e||!n?null:by(Cy,{children:[Zn(x,{title:"Fund account"},"header"),Zn(P,{}),Zn(od,{app:e,signedUrl:n,onContinue:()=>{r("sdk_fiat_on_ramp_started",{provider:Qn}),o("FIAT_ON_RAMP_STATUS_SCREEN")}}),Zn(O,{protectedByPrivy:!0})]})};import{ArrowsRightLeftIcon as Ey,CheckCircleIcon as xy,XCircleIcon as Ty}from"@heroicons/react/24/solid";import{useMemo as Py}from"react";import sd from"styled-components";import{Fragment as Sa,jsx as ve,jsxs as Ro}from"react/jsx-runtime";var ld=()=>{let{app:e,data:t}=b(),{closePrivyModal:o}=A(),{externalTransactionId:r}=t?.fiatOnRampStatus,n=id(r||null,e.fiatOnRamp.useSandbox);return Ro(Sa,{children:[ve(x,{title:"Fund account"},"header"),ve(P,{}),ve(Sy,{status:n,onClickCta:o}),ve(O,{protectedByPrivy:!0})]})},_y=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:Ro(Sa,{children:[Ro("p",{children:["It looks like there was an issue with your payment. Please contact"," ",ve("a",{href:"https://support.moonpay.com/hc/en-gb",target:"_blank",rel:"noreferrer noopener",style:{textDecoration:"underline"},children:"Moonpay support"})," ","for assistance."]}),ve("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:""}}},Sy=({status:e,onClickCta:t})=>{let{title:o,body:r,cta:n}=Py(()=>_y(e),[e]);return Ro(Sa,{children:[Ro(Wy,{style:{height:"100%",gap:0},children:[ve(Ry,{status:e}),Ro(to,{children:[ve("h3",{children:o}),ve(Iy,{children:r})]})]}),n&&ve(pe,{children:ve(q,{onClick:t,children:n})})]})},Ay=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)",ky=e=>{switch(e){case"serviceFailure":case"failed":return Ty;case"completed":return xy;case"waitingAuthorization":return()=>ve(Ey,{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}},Ry=({status:e})=>{if(!e||e==="pending"){let r="var(--privy-color-foreground-4)";return Ro("div",{style:{position:"relative"},children:[ve(Po,{color:r,style:{position:"absolute"}}),ve(Zi,{color:r}),ve(Jn,{size:"3rem",style:{position:"absolute",top:"1rem",left:"1rem"}})]})}let t=ky(e),o=Ay(e);return ve("div",{style:{borderColor:o,display:"flex",justifyContent:"center",alignItems:"center",borderRadius:"100%",borderWidth:2,padding:"0.5rem",marginBottom:"0.5rem"},children:t&&ve(t,{width:"4rem",height:"4rem",color:o})})},Iy=sd.p`
1194
+ `;import{ofetch as Cy}from"ofetch";import{useEffect as by,useRef as Ey,useState as xy}from"react";var oi="moonpay",sd="sdk_fiat_on_ramp_completed_with_status";async function ld(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 Ty(e,t){let o=t?tl:el,r=t?rl:ol;return Cy(`${o}/transactions/ext/${e}`,{query:{apiKey:r}})}function cd(e,t=!1){let[o,r]=xy(null),{createAnalyticsEvent:n}=A(),i=Ey(0);return by(()=>{let a=setInterval(async()=>{if(e)try{let[c]=await Ty(e,t),l=c.status==="waitingAuthorization"&&c.paymentMethod==="credit_debit_card"?"pending":c.status;r(l),["failed","completed","awaitingAuthorization"].includes(l)&&(n(sd,{status:l,provider:oi,paymentMethod:c.paymentMethod,cardPaymentType:c.cardPaymentType,currency:c.currency?.code,baseCurrencyAmount:c.baseCurrencyAmount,quoteCurrencyAmount:c.quoteCurrencyAmount,feeAmount:c.feeAmount,extraFeeAmount:c.extraFeeAmount,networkFeeAmount:c.networkFeeAmount}),clearInterval(a))}catch(c){c.response?.status!==404&&(i.current+=1),i.current>=3&&(r("serviceFailure"),n(sd,{status:"serviceFailure",provider:oi}),clearInterval(a))}},3e3);return()=>clearInterval(a)},[e,i]),o}import{Fragment as Py,jsx as ri,jsxs as _y}from"react/jsx-runtime";var dd=()=>{let{app:e,data:t,navigate:o}=C(),{createAnalyticsEvent:r}=A(),{signedUrl:n}=t.fiatOnRampPrompt;return!e||!n?null:_y(Py,{children:[ri(T,{title:"Fund account"},"header"),ri(S,{}),ri(ad,{app:e,signedUrl:n,onContinue:()=>{r("sdk_fiat_on_ramp_started",{provider:oi}),o("FIAT_ON_RAMP_STATUS_SCREEN")}}),ri(D,{protectedByPrivy:!0})]})};import{ArrowsRightLeftIcon as Sy,CheckCircleIcon as Ay,XCircleIcon as ky}from"@heroicons/react/24/solid";import{useMemo as Ry}from"react";import pd from"styled-components";import{Fragment as Ia,jsx as we,jsxs as Wo}from"react/jsx-runtime";var ud=()=>{let{app:e,data:t}=C(),{closePrivyModal:o}=A(),{externalTransactionId:r}=t?.fiatOnRampStatus,n=cd(r||null,e.fiatOnRamp.useSandbox);return Wo(Ia,{children:[we(T,{title:"Fund account"},"header"),we(S,{}),we(Wy,{status:n,onClickCta:o}),we(D,{protectedByPrivy:!0})]})},Iy=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:Wo(Ia,{children:[Wo("p",{children:["It looks like there was an issue with your payment. Please contact"," ",we("a",{href:"https://support.moonpay.com/hc/en-gb",target:"_blank",rel:"noreferrer noopener",style:{textDecoration:"underline"},children:"Moonpay support"})," ","for assistance."]}),we("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:""}}},Wy=({status:e,onClickCta:t})=>{let{title:o,body:r,cta:n}=Ry(()=>Iy(e),[e]);return Wo(Ia,{children:[Wo(Dy,{style:{height:"100%",gap:0},children:[we(Ly,{status:e}),Wo(oo,{children:[we("h3",{children:o}),we(Oy,{children:r})]})]}),n&&we(pe,{children:we(q,{onClick:t,children:n})})]})},Ny=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)",My=e=>{switch(e){case"serviceFailure":case"failed":return ky;case"completed":return Ay;case"waitingAuthorization":return()=>we(Sy,{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}},Ly=({status:e})=>{if(!e||e==="pending"){let r="var(--privy-color-foreground-4)";return Wo("div",{style:{position:"relative"},children:[we(_o,{color:r,style:{position:"absolute"}}),we(ra,{color:r}),we(ti,{size:"3rem",style:{position:"absolute",top:"1rem",left:"1rem"}})]})}let t=My(e),o=Ny(e);return we("div",{style:{borderColor:o,display:"flex",justifyContent:"center",alignItems:"center",borderRadius:"100%",borderWidth:2,padding:"0.5rem",marginBottom:"0.5rem"},children:t&&we(t,{width:"4rem",height:"4rem",color:o})})},Oy=pd.p`
1170
1195
  font-size: 1rem;
1171
1196
  color: var(--privy-color-foreground-3);
1172
1197
  margin-bottom: 1rem;
1173
1198
  display: flex;
1174
1199
  flex-direction: column;
1175
1200
  gap: 1rem;
1176
- `,Wy=sd.div`
1201
+ `,Dy=pd.div`
1177
1202
  display: flex;
1178
1203
  flex-direction: column;
1179
1204
  align-items: center;
1180
1205
  justify-content: center;
1181
1206
  margin-left: 1.75rem;
1182
1207
  margin-right: 1.75rem;
1183
- `;import{useState as jy}from"react";import*as Ft from"react-device-detect";import Tt from"styled-components";import Aa from"styled-components";import{jsx as cd}from"react/jsx-runtime";var dd=({style:e,...t})=>cd("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:cd("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 My,jsxs as Ly}from"react/jsx-runtime";var Xn=Aa.div`
1208
+ `;import{useState as Zy}from"react";import*as Bt from"react-device-detect";import Tt from"styled-components";import Wa from"styled-components";import{jsx as md}from"react/jsx-runtime";var fd=({style:e,...t})=>md("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:md("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 Fy,jsxs as By}from"react/jsx-runtime";var ni=Wa.div`
1184
1209
  display: flex;
1185
1210
  flex-direction: column;
1186
1211
  justify-content: flex-start;
1187
1212
  gap: 4px;
1188
- `,Io=Aa.div`
1213
+ `,No=Wa.div`
1189
1214
  &&& {
1190
1215
  margin-left: 7px; /* TODO: This is a total hack */
1191
1216
  border-left: 2px solid var(--privy-color-foreground-4);
1192
1217
  height: 12px;
1193
1218
  }
1194
- `,xt=({children:e})=>Ly(Ny,{children:[My(dd,{style:{width:"16px",height:"16px"}}),e]}),Ny=Aa.div`
1219
+ `,xt=({children:e})=>By(Uy,{children:[Fy(fd,{style:{width:"16px",height:"16px"}}),e]}),Uy=Wa.div`
1195
1220
  display: flex;
1196
1221
  justify-content: flex-start;
1197
1222
  justify-items: center;
@@ -1209,7 +1234,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1209
1234
  margin-bottom: auto;
1210
1235
  }
1211
1236
  }
1212
- `;import Oy from"qrcode";import Dy from"styled-components";import{Fragment as lr,jsx as Se,jsxs as md}from"react/jsx-runtime";var ze=7,ka=(e,t,o,r,n)=>{for(let i=t;i<t+r;i++)for(let a=o;a<o+n;a++){let c=e?.[a];c&&c[i]&&(c[i]=0)}return e},Uy=e=>{let t=Oy.create(e,{errorCorrectionLevel:"high"}).modules,o=ol(Array.from(t.data),t.size);return o=ka(o,0,0,ze,ze),o=ka(o,o.length-ze,0,ze,ze),o=ka(o,0,o.length-ze,ze,ze),o},Fy=({x:e,y:t,cellSize:o,bgColor:r,fgColor:n})=>Se(lr,{children:[0,1,2].map(i=>Se("circle",{r:o*(ze-i*2)/2,cx:e+o*ze/2,cy:t+o*ze/2,fill:i%2!==0?r:n},`finder-${e}-${t}-${i}`))}),By=({cellSize:e,matrixSize:t,bgColor:o,fgColor:r})=>{let n=[[0,0],[(t-ze)*e,0],[0,(t-ze)*e]];return Se(lr,{children:n.map(([i,a])=>Se(Fy,{x:i,y:a,cellSize:e,bgColor:o,fgColor:r}))})},Hy=({matrix:e,cellSize:t,color:o})=>Se(lr,{children:e.map((r,n)=>r.map((i,a)=>i?Se("circle",{r:t/2.5,cx:n*t+t/2,cy:a*t+t/2,fill:o},`circle-${n}-${a}`):Se(lr,{})))}),pd=(e,t)=>e-e%t,Gy=({outputSize:e,cellSize:t,element:o,size:r,padding:n,bgColor:i})=>{if(!o)return Se(lr,{});let a=r||40,c=n||4,s=o,l=e/2-a/2-c;return md(lr,{children:[Se("rect",{x:pd(l,t),y:pd(l,t),width:a+c*2+(l%t?t+.5:.5),height:a+c*2+(l%t?t+.5:.5),fill:i}),Se(s,{x:e/2-a/2,y:e/2-a/2,height:a,width:a})]})},zy=e=>{let t=e.outputSize,o=Uy(e.url),r=t/o.length;return md("svg",{height:e.outputSize,width:e.outputSize,viewBox:`0 0 ${e.outputSize} ${e.outputSize}`,style:{height:"100%",width:"100%"},children:[Se(Hy,{matrix:o,cellSize:r,color:e.fgColor}),Se(By,{cellSize:r,matrixSize:o.length,fgColor:e.fgColor,bgColor:e.bgColor}),Se(Gy,{outputSize:e.outputSize,cellSize:r,element:e.logo?.element,bgColor:e.bgColor})]})},$y=Dy.div`
1237
+ `;import Hy from"qrcode";import Gy from"styled-components";import{Fragment as pr,jsx as ke,jsxs as gd}from"react/jsx-runtime";var Ve=7,Na=(e,t,o,r,n)=>{for(let i=t;i<t+r;i++)for(let a=o;a<o+n;a++){let c=e?.[a];c&&c[i]&&(c[i]=0)}return e},zy=e=>{let t=Hy.create(e,{errorCorrectionLevel:"high"}).modules,o=al(Array.from(t.data),t.size);return o=Na(o,0,0,Ve,Ve),o=Na(o,o.length-Ve,0,Ve,Ve),o=Na(o,0,o.length-Ve,Ve,Ve),o},$y=({x:e,y:t,cellSize:o,bgColor:r,fgColor:n})=>ke(pr,{children:[0,1,2].map(i=>ke("circle",{r:o*(Ve-i*2)/2,cx:e+o*Ve/2,cy:t+o*Ve/2,fill:i%2!==0?r:n},`finder-${e}-${t}-${i}`))}),Vy=({cellSize:e,matrixSize:t,bgColor:o,fgColor:r})=>{let n=[[0,0],[(t-Ve)*e,0],[0,(t-Ve)*e]];return ke(pr,{children:n.map(([i,a])=>ke($y,{x:i,y:a,cellSize:e,bgColor:o,fgColor:r}))})},qy=({matrix:e,cellSize:t,color:o})=>ke(pr,{children:e.map((r,n)=>r.map((i,a)=>i?ke("circle",{r:t/2.5,cx:n*t+t/2,cy:a*t+t/2,fill:o},`circle-${n}-${a}`):ke(pr,{})))}),hd=(e,t)=>e-e%t,jy=({outputSize:e,cellSize:t,element:o,size:r,padding:n,bgColor:i})=>{if(!o)return ke(pr,{});let a=r||40,c=n||4,l=o,s=e/2-a/2-c;return gd(pr,{children:[ke("rect",{x:hd(s,t),y:hd(s,t),width:a+c*2+(s%t?t+.5:.5),height:a+c*2+(s%t?t+.5:.5),fill:i}),ke(l,{x:e/2-a/2,y:e/2-a/2,height:a,width:a})]})},Ky=e=>{let t=e.outputSize,o=zy(e.url),r=t/o.length;return gd("svg",{height:e.outputSize,width:e.outputSize,viewBox:`0 0 ${e.outputSize} ${e.outputSize}`,style:{height:"100%",width:"100%"},children:[ke(qy,{matrix:o,cellSize:r,color:e.fgColor}),ke(Vy,{cellSize:r,matrixSize:o.length,fgColor:e.fgColor,bgColor:e.bgColor}),ke(jy,{outputSize:e.outputSize,cellSize:r,element:e.logo?.element,bgColor:e.bgColor})]})},Yy=Gy.div`
1213
1238
  display: flex;
1214
1239
  justify-content: center;
1215
1240
  align-items: center;
@@ -1224,7 +1249,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1224
1249
  border-color: ${e=>e.fgColor};
1225
1250
  border-radius: var(--privy-border-radius-md);
1226
1251
  }
1227
- `,ud=e=>{let t=e.bgColor||"#FFFFFF",o=e.fgColor||"#000000",r=e.size||160;return Se($y,{size:r,bgColor:t,fgColor:o,children:Se(zy,{url:e.url,logo:{element:e.squareLogoElement},outputSize:r,bgColor:t,fgColor:o})})};import{jsx as Vy}from"react/jsx-runtime";var fd=({size:e})=>Vy(ud,{url:"https://coinbase-wallet.onelink.me/q5Sx/fdb9b250",squareLogoElement:mt,size:e,fgColor:"#1F1F1F"});import{jsx as hd}from"react/jsx-runtime";var yd=e=>hd("svg",{width:"160",height:"160",viewBox:"0 0 160 160",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e,children:hd("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M68.853 62.127c-5.174.517-8.978 4.95-8.978 10.149v15.336c0 5.248 3.873 9.7 9.098 10.196 3.623.344 7.71.64 11.027.64 5.445 0 12.964-.799 17.098-1.294a3.445 3.445 0 0 0 3.027-3.436v-19.05c0-1.75-1.29-3.228-3.027-3.436-3.657-.438-9.961-1.113-15.136-1.264a66.647 66.647 0 0 0-1.965-.03c-.72 0-1.478.013-2.262.04-3.046.1-6.453.373-9.467.669a1.677 1.677 0 0 1-.174-3.347c3.804-.373 8.282-.717 11.903-.717 4.034 0 9.137.427 13.193.847 1.322.137 2.54.274 3.58.397v-1.582c0-1.734-1.264-3.203-2.983-3.426-3.83-.497-10.563-1.267-15.464-1.267-2.848 0-6.314.26-9.47.575Zm25.399 24.581a2.516 2.516 0 1 0 0-5.031 2.516 2.516 0 0 0 0 5.031Z",fill:"var(--privy-color-accent)"})});import{jsx as we,jsxs as qy}from"react/jsx-runtime";var gd=({style:e,...t})=>qy("svg",{width:"286",height:"183",viewBox:"0 0 286 183",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"1.25rem",width:"1.25rem",...e},...t,children:[we("rect",{x:"198.5",y:"133",width:"50",height:"50",rx:"25",fill:"#E1E7EF"}),we(be,{x:"206",y:"140",width:"36",height:"36"}),we("rect",{x:"192",y:"30",width:"50",height:"50",rx:"25",fill:"#0C5BFF"}),we("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M205 55C205 61.6274 210.373 67 217 67C223.627 67 229 61.6274 229 55C229 48.3726 223.627 43 217 43C210.373 43 205 48.3726 205 55ZM213.933 51.1333C213.491 51.1333 213.133 51.4915 213.133 51.9333V58.0667C213.133 58.5085 213.491 58.8667 213.933 58.8667H220.067C220.508 58.8667 220.867 58.5085 220.867 58.0667V51.9333C220.867 51.4915 220.508 51.1333 220.067 51.1333H213.933Z",fill:"white"}),we("rect",{x:"39.5",y:"18",width:"50",height:"50",rx:"50",fill:"#AB9FF2"}),we(Ke,{x:"44.5",y:"23",width:"40",height:"40"}),we("rect",{x:"46.5",y:"124",width:"50",height:"50",rx:"25",fill:"#141414"}),we("g",{clipPath:"url(#clip0_428_81)",children:we("path",{d:"M62.1497 143.578C67.3134 138.585 75.6867 138.585 80.8505 143.578L81.4722 144.179C81.5335 144.238 81.5822 144.308 81.6155 144.386C81.6488 144.463 81.666 144.547 81.666 144.631C81.666 144.715 81.6488 144.799 81.6155 144.876C81.5822 144.954 81.5335 145.024 81.4722 145.083L79.3462 147.139C79.2835 147.199 79.1996 147.232 79.1123 147.232C79.025 147.232 78.9411 147.199 78.8784 147.139L78.0232 146.311C74.421 142.829 68.58 142.829 64.977 146.311L64.0611 147.197C63.9984 147.257 63.9145 147.29 63.8272 147.29C63.7399 147.29 63.656 147.257 63.5933 147.197L61.4672 145.141C61.4059 145.083 61.3572 145.012 61.3239 144.935C61.2906 144.857 61.2735 144.774 61.2735 144.689C61.2735 144.605 61.2906 144.521 61.3239 144.444C61.3572 144.366 61.4059 144.296 61.4672 144.237L62.1497 143.578ZM85.248 147.829L87.1397 149.659C87.201 149.718 87.2497 149.788 87.283 149.865C87.3163 149.943 87.3334 150.027 87.3334 150.111C87.3334 150.195 87.3163 150.279 87.283 150.356C87.2497 150.434 87.201 150.504 87.1397 150.563L78.6081 158.812C78.4828 158.933 78.315 159 78.1403 159C77.9656 159 77.7978 158.933 77.6725 158.812L71.6177 152.957C71.5864 152.927 71.5443 152.91 71.5005 152.91C71.4567 152.91 71.4147 152.927 71.3833 152.957L65.3285 158.812C65.2032 158.933 65.0354 159 64.8607 159C64.686 159 64.5182 158.933 64.3929 158.812L55.8605 150.563C55.7992 150.504 55.7505 150.434 55.7172 150.356C55.6839 150.279 55.6667 150.195 55.6667 150.111C55.6667 150.027 55.6839 149.943 55.7172 149.865C55.7505 149.788 55.7992 149.718 55.8605 149.659L57.7531 147.829C57.8783 147.709 58.0459 147.642 58.2204 147.642C58.3949 147.642 58.5625 147.709 58.6878 147.829L64.7427 153.684C64.774 153.714 64.816 153.731 64.8598 153.731C64.9036 153.731 64.9457 153.714 64.977 153.684L71.0319 147.829C71.1572 147.709 71.325 147.641 71.4997 147.641C71.6743 147.641 71.8422 147.709 71.9675 147.829L78.0232 153.684C78.0545 153.714 78.0965 153.731 78.1403 153.731C78.1841 153.731 78.2262 153.714 78.2575 153.684L84.3124 147.829C84.4377 147.709 84.6055 147.641 84.7802 147.641C84.9549 147.641 85.1227 147.709 85.248 147.829Z",fill:"white"})}),we("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",fill:"var(--privy-color-foreground-accent)"}),we(yd,{x:"63",y:"17"}),we("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",stroke:"#E1E7EF",strokeWidth:"2"}),we("path",{fill:"var(--privy-color-accent)",d:"M269.405 111c8.865 0 16.052-7.163 16.052-16s-7.187-16-16.052-16c-8.865 0-16.051 7.163-16.051 16s7.186 16 16.051 16ZM133.971 24c6.649 0 12.039-5.373 12.039-12s-5.39-12-12.039-12-12.039 5.373-12.039 12 5.39 12 12.039 12ZM15.592 112c4.986 0 9.029-4.029 9.029-9 0-4.97-4.043-9-9.03-9-4.986 0-9.028 4.03-9.028 9 0 4.971 4.042 9 9.029 9Z"}),we("path",{fill:"var(--privy-color-accent-light)",d:"M152.029 177c5.541 0 10.032-4.477 10.032-10s-4.491-10-10.032-10-10.032 4.477-10.032 10 4.491 10 10.032 10ZM263.386 21c4.432 0 8.026-3.582 8.026-8s-3.594-8-8.026-8c-4.433 0-8.026 3.582-8.026 8s3.593 8 8.026 8ZM7.064 36c3.602 0 6.521-2.91 6.521-6.5s-2.92-6.5-6.52-6.5C3.462 23 .542 25.91.542 29.5S3.463 36 7.064 36Z"}),we("defs",{children:we("clipPath",{id:"clip0_428_81",children:we("rect",{width:"31.6667",height:"19.1667",fill:"white",transform:"translate(55.6667 139.833)"})})})]});import{Fragment as Ra,jsx as R,jsxs as ce}from"react/jsx-runtime";var Ia=()=>{let{navigate:e}=b(),t="https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn?hl=en";return Ft.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/ether-metamask/"),ce(Ma,{children:[R(wt,{title:"Create a MetaMask wallet",description:"Follow the instructions below to get started."}),R(La,{children:R(be,{style:{width:"152px",height:"152px"}})}),ce(Xn,{children:[R(xt,{children:ce("div",{children:[R("span",{children:"Install the "}),R("a",{href:t,target:"_blank",children:"MetaMask browser extension"})]})}),R(Io,{}),R(xt,{children:"Set up your first wallet"}),R(Io,{}),R(xt,{children:"Store your recovery phrase in a safe place!"})]}),R(ye,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},Wa=()=>{let{navigate:e}=b(),t="https://chrome.google.com/webstore/detail/phantom/bfnaelmomeimhlpmgjnjophhpkkoljpa?hl=en";return Ft.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/phantom-app/"),ce(Ma,{children:[R(wt,{title:"Create a Phantom wallet",description:"Follow the instructions below to get started."}),R(La,{children:R(Ke,{style:{width:"152px",height:"152px"}})}),ce(Xn,{children:[R(xt,{children:ce("div",{children:[R("span",{children:"Install the "}),R("a",{href:t,target:"_blank",children:"Phantom browser extension"})]})}),R(Io,{}),R(xt,{children:"Set up your first wallet"}),R(Io,{}),R(xt,{children:"Store your recovery phrase in a safe place!"})]}),R(ye,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},Na=()=>{let{navigate:e}=b();return ce(Ma,{children:[R(wt,{title:"Create a Coinbase wallet",description:"Follow the instructions below to get started."}),R(La,{style:{marginTop:"-24px"},children:R(fd,{size:200})}),ce(Xn,{children:[R(xt,{children:"Scan the QR code with your camera"}),R(Io,{}),R(xt,{children:"Set up your first wallet"}),R(Io,{}),R(xt,{children:"Store your seed phrase in a safe place!"})]}),R(ye,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},Cd=()=>{let[e,t]=jy("WHAT_IS_A_WALLET"),{navigateBack:o}=b();return ce(Ra,{children:[R(x,{backFn:e==="WHAT_IS_A_WALLET"?o:e==="PICK_A_NEW_WALLET"?()=>t("WHAT_IS_A_WALLET"):()=>t("PICK_A_NEW_WALLET")},"header"),R(P,{}),ce(Ky,{children:[e==="WHAT_IS_A_WALLET"&&ce(Ra,{children:[R(Xy,{children:R(gd,{style:{width:"240px",height:"auto",borderRadius:"var(--privy-border-radius-sm)",marginBottom:"32px"}})}),ce(le,{title:"Get started with a new wallet",children:[R("p",{children:"Wallets help you store, send, and receive digital assets and collectibles. They are also a new\xA0way\xA0to\xA0log\xA0in."}),R("p",{children:"Instead of creating new accounts and passwords for every app, you just connect your wallet and bring your\xA0data\xA0with\xA0you."})]}),R(Qy,{children:R(Zy,{onClick:()=>{t("PICK_A_NEW_WALLET")},children:"Create a wallet"})})]}),e==="PICK_A_NEW_WALLET"&&R(Ra,{children:ce(Yy,{children:[R(wt,{title:"Create a new wallet",description:"Select one of the wallet providers below to get started."}),ce(Jy,{children:[ce(vd,{onClick:()=>{Ft.isIOS?window.location.href="https://apps.apple.com/us/app/metamask-blockchain-wallet/id1438144202":Ft.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=io.metamask":t("CREATE_METAMASK_WALLET")},children:[R(be,{}),ce(wd,{children:[R("h4",{children:"MetaMask"}),R("p",{children:"Get a browser-based wallet"})]})]}),ce(vd,{onClick:()=>{Ft.isIOS?window.location.href="https://apps.apple.com/us/app/coinbase-wallet-nfts-crypto/id1278383455":Ft.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=org.toshi":t("CREATE_COINBASE_WALLET")},children:[R(mt,{}),ce(wd,{children:[R("h4",{children:"Coinbase Wallet"}),R("p",{children:"Get a mobile app wallet"})]})]})]})]})}),e==="CREATE_COINBASE_WALLET"&&R(Na,{}),e==="CREATE_METAMASK_WALLET"&&R(Ia,{}),e==="CREATE_PHANTOM_WALLET"&&R(Wa,{})]}),R(W,{}),ce(ee,{children:[R("span",{children:"Still not sure? "}),R("a",{target:"_blank",href:"https://ethereum.org/en/wallets/",children:"Learn more"}),"."]})]})},Ky=Tt.div`
1252
+ `,yd=e=>{let t=e.bgColor||"#FFFFFF",o=e.fgColor||"#000000",r=e.size||160;return ke(Yy,{size:r,bgColor:t,fgColor:o,children:ke(Ky,{url:e.url,logo:{element:e.squareLogoElement},outputSize:r,bgColor:t,fgColor:o})})};import{jsx as Jy}from"react/jsx-runtime";var vd=({size:e})=>Jy(yd,{url:"https://coinbase-wallet.onelink.me/q5Sx/fdb9b250",squareLogoElement:mt,size:e,fgColor:"#1F1F1F"});import{jsx as wd}from"react/jsx-runtime";var Cd=e=>wd("svg",{width:"160",height:"160",viewBox:"0 0 160 160",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e,children:wd("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M68.853 62.127c-5.174.517-8.978 4.95-8.978 10.149v15.336c0 5.248 3.873 9.7 9.098 10.196 3.623.344 7.71.64 11.027.64 5.445 0 12.964-.799 17.098-1.294a3.445 3.445 0 0 0 3.027-3.436v-19.05c0-1.75-1.29-3.228-3.027-3.436-3.657-.438-9.961-1.113-15.136-1.264a66.647 66.647 0 0 0-1.965-.03c-.72 0-1.478.013-2.262.04-3.046.1-6.453.373-9.467.669a1.677 1.677 0 0 1-.174-3.347c3.804-.373 8.282-.717 11.903-.717 4.034 0 9.137.427 13.193.847 1.322.137 2.54.274 3.58.397v-1.582c0-1.734-1.264-3.203-2.983-3.426-3.83-.497-10.563-1.267-15.464-1.267-2.848 0-6.314.26-9.47.575Zm25.399 24.581a2.516 2.516 0 1 0 0-5.031 2.516 2.516 0 0 0 0 5.031Z",fill:"var(--privy-color-accent)"})});import{jsx as Ce,jsxs as Qy}from"react/jsx-runtime";var bd=({style:e,...t})=>Qy("svg",{width:"286",height:"183",viewBox:"0 0 286 183",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"1.25rem",width:"1.25rem",...e},...t,children:[Ce("rect",{x:"198.5",y:"133",width:"50",height:"50",rx:"25",fill:"#E1E7EF"}),Ce(Ee,{x:"206",y:"140",width:"36",height:"36"}),Ce("rect",{x:"192",y:"30",width:"50",height:"50",rx:"25",fill:"#0C5BFF"}),Ce("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M205 55C205 61.6274 210.373 67 217 67C223.627 67 229 61.6274 229 55C229 48.3726 223.627 43 217 43C210.373 43 205 48.3726 205 55ZM213.933 51.1333C213.491 51.1333 213.133 51.4915 213.133 51.9333V58.0667C213.133 58.5085 213.491 58.8667 213.933 58.8667H220.067C220.508 58.8667 220.867 58.5085 220.867 58.0667V51.9333C220.867 51.4915 220.508 51.1333 220.067 51.1333H213.933Z",fill:"white"}),Ce("rect",{x:"39.5",y:"18",width:"50",height:"50",rx:"50",fill:"#AB9FF2"}),Ce(Je,{x:"44.5",y:"23",width:"40",height:"40"}),Ce("rect",{x:"46.5",y:"124",width:"50",height:"50",rx:"25",fill:"#141414"}),Ce("g",{clipPath:"url(#clip0_428_81)",children:Ce("path",{d:"M62.1497 143.578C67.3134 138.585 75.6867 138.585 80.8505 143.578L81.4722 144.179C81.5335 144.238 81.5822 144.308 81.6155 144.386C81.6488 144.463 81.666 144.547 81.666 144.631C81.666 144.715 81.6488 144.799 81.6155 144.876C81.5822 144.954 81.5335 145.024 81.4722 145.083L79.3462 147.139C79.2835 147.199 79.1996 147.232 79.1123 147.232C79.025 147.232 78.9411 147.199 78.8784 147.139L78.0232 146.311C74.421 142.829 68.58 142.829 64.977 146.311L64.0611 147.197C63.9984 147.257 63.9145 147.29 63.8272 147.29C63.7399 147.29 63.656 147.257 63.5933 147.197L61.4672 145.141C61.4059 145.083 61.3572 145.012 61.3239 144.935C61.2906 144.857 61.2735 144.774 61.2735 144.689C61.2735 144.605 61.2906 144.521 61.3239 144.444C61.3572 144.366 61.4059 144.296 61.4672 144.237L62.1497 143.578ZM85.248 147.829L87.1397 149.659C87.201 149.718 87.2497 149.788 87.283 149.865C87.3163 149.943 87.3334 150.027 87.3334 150.111C87.3334 150.195 87.3163 150.279 87.283 150.356C87.2497 150.434 87.201 150.504 87.1397 150.563L78.6081 158.812C78.4828 158.933 78.315 159 78.1403 159C77.9656 159 77.7978 158.933 77.6725 158.812L71.6177 152.957C71.5864 152.927 71.5443 152.91 71.5005 152.91C71.4567 152.91 71.4147 152.927 71.3833 152.957L65.3285 158.812C65.2032 158.933 65.0354 159 64.8607 159C64.686 159 64.5182 158.933 64.3929 158.812L55.8605 150.563C55.7992 150.504 55.7505 150.434 55.7172 150.356C55.6839 150.279 55.6667 150.195 55.6667 150.111C55.6667 150.027 55.6839 149.943 55.7172 149.865C55.7505 149.788 55.7992 149.718 55.8605 149.659L57.7531 147.829C57.8783 147.709 58.0459 147.642 58.2204 147.642C58.3949 147.642 58.5625 147.709 58.6878 147.829L64.7427 153.684C64.774 153.714 64.816 153.731 64.8598 153.731C64.9036 153.731 64.9457 153.714 64.977 153.684L71.0319 147.829C71.1572 147.709 71.325 147.641 71.4997 147.641C71.6743 147.641 71.8422 147.709 71.9675 147.829L78.0232 153.684C78.0545 153.714 78.0965 153.731 78.1403 153.731C78.1841 153.731 78.2262 153.714 78.2575 153.684L84.3124 147.829C84.4377 147.709 84.6055 147.641 84.7802 147.641C84.9549 147.641 85.1227 147.709 85.248 147.829Z",fill:"white"})}),Ce("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",fill:"var(--privy-color-foreground-accent)"}),Ce(Cd,{x:"63",y:"17"}),Ce("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",stroke:"#E1E7EF",strokeWidth:"2"}),Ce("path",{fill:"var(--privy-color-accent)",d:"M269.405 111c8.865 0 16.052-7.163 16.052-16s-7.187-16-16.052-16c-8.865 0-16.051 7.163-16.051 16s7.186 16 16.051 16ZM133.971 24c6.649 0 12.039-5.373 12.039-12s-5.39-12-12.039-12-12.039 5.373-12.039 12 5.39 12 12.039 12ZM15.592 112c4.986 0 9.029-4.029 9.029-9 0-4.97-4.043-9-9.03-9-4.986 0-9.028 4.03-9.028 9 0 4.971 4.042 9 9.029 9Z"}),Ce("path",{fill:"var(--privy-color-accent-light)",d:"M152.029 177c5.541 0 10.032-4.477 10.032-10s-4.491-10-10.032-10-10.032 4.477-10.032 10 4.491 10 10.032 10ZM263.386 21c4.432 0 8.026-3.582 8.026-8s-3.594-8-8.026-8c-4.433 0-8.026 3.582-8.026 8s3.593 8 8.026 8ZM7.064 36c3.602 0 6.521-2.91 6.521-6.5s-2.92-6.5-6.52-6.5C3.462 23 .542 25.91.542 29.5S3.463 36 7.064 36Z"}),Ce("defs",{children:Ce("clipPath",{id:"clip0_428_81",children:Ce("rect",{width:"31.6667",height:"19.1667",fill:"white",transform:"translate(55.6667 139.833)"})})})]});import{Fragment as Ma,jsx as R,jsxs as ce}from"react/jsx-runtime";var La=()=>{let{navigate:e}=C(),t="https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn?hl=en";return Bt.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/ether-metamask/"),ce(Ua,{children:[R(wt,{title:"Create a MetaMask wallet",description:"Follow the instructions below to get started."}),R(Fa,{children:R(Ee,{style:{width:"152px",height:"152px"}})}),ce(ni,{children:[R(xt,{children:ce("div",{children:[R("span",{children:"Install the "}),R("a",{href:t,target:"_blank",children:"MetaMask browser extension"})]})}),R(No,{}),R(xt,{children:"Set up your first wallet"}),R(No,{}),R(xt,{children:"Store your recovery phrase in a safe place!"})]}),R(ye,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},Oa=()=>{let{navigate:e}=C(),t="https://chrome.google.com/webstore/detail/phantom/bfnaelmomeimhlpmgjnjophhpkkoljpa?hl=en";return Bt.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/phantom-app/"),ce(Ua,{children:[R(wt,{title:"Create a Phantom wallet",description:"Follow the instructions below to get started."}),R(Fa,{children:R(Je,{style:{width:"152px",height:"152px"}})}),ce(ni,{children:[R(xt,{children:ce("div",{children:[R("span",{children:"Install the "}),R("a",{href:t,target:"_blank",children:"Phantom browser extension"})]})}),R(No,{}),R(xt,{children:"Set up your first wallet"}),R(No,{}),R(xt,{children:"Store your recovery phrase in a safe place!"})]}),R(ye,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},Da=()=>{let{navigate:e}=C();return ce(Ua,{children:[R(wt,{title:"Create a Coinbase wallet",description:"Follow the instructions below to get started."}),R(Fa,{style:{marginTop:"-24px"},children:R(vd,{size:200})}),ce(ni,{children:[R(xt,{children:"Scan the QR code with your camera"}),R(No,{}),R(xt,{children:"Set up your first wallet"}),R(No,{}),R(xt,{children:"Store your seed phrase in a safe place!"})]}),R(ye,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},Td=()=>{let[e,t]=Zy("WHAT_IS_A_WALLET"),{navigateBack:o}=C();return ce(Ma,{children:[R(T,{backFn:e==="WHAT_IS_A_WALLET"?o:e==="PICK_A_NEW_WALLET"?()=>t("WHAT_IS_A_WALLET"):()=>t("PICK_A_NEW_WALLET")},"header"),R(S,{}),ce(Xy,{children:[e==="WHAT_IS_A_WALLET"&&ce(Ma,{children:[R(ng,{children:R(bd,{style:{width:"240px",height:"auto",borderRadius:"var(--privy-border-radius-sm)",marginBottom:"32px"}})}),ce(le,{title:"Get started with a new wallet",children:[R("p",{children:"Wallets help you store, send, and receive digital assets and collectibles. They are also a new\xA0way\xA0to\xA0log\xA0in."}),R("p",{children:"Instead of creating new accounts and passwords for every app, you just connect your wallet and bring your\xA0data\xA0with\xA0you."})]}),R(og,{children:R(rg,{onClick:()=>{t("PICK_A_NEW_WALLET")},children:"Create a wallet"})})]}),e==="PICK_A_NEW_WALLET"&&R(Ma,{children:ce(eg,{children:[R(wt,{title:"Create a new wallet",description:"Select one of the wallet providers below to get started."}),ce(tg,{children:[ce(Ed,{onClick:()=>{Bt.isIOS?window.location.href="https://apps.apple.com/us/app/metamask-blockchain-wallet/id1438144202":Bt.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=io.metamask":t("CREATE_METAMASK_WALLET")},children:[R(Ee,{}),ce(xd,{children:[R("h4",{children:"MetaMask"}),R("p",{children:"Get a browser-based wallet"})]})]}),ce(Ed,{onClick:()=>{Bt.isIOS?window.location.href="https://apps.apple.com/us/app/coinbase-wallet-nfts-crypto/id1278383455":Bt.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=org.toshi":t("CREATE_COINBASE_WALLET")},children:[R(mt,{}),ce(xd,{children:[R("h4",{children:"Coinbase Wallet"}),R("p",{children:"Get a mobile app wallet"})]})]})]})]})}),e==="CREATE_COINBASE_WALLET"&&R(Da,{}),e==="CREATE_METAMASK_WALLET"&&R(La,{}),e==="CREATE_PHANTOM_WALLET"&&R(Oa,{})]}),R(W,{}),ce(ee,{children:[R("span",{children:"Still not sure? "}),R("a",{target:"_blank",href:"https://ethereum.org/en/wallets/",children:"Learn more"}),"."]})]})},Xy=Tt.div`
1228
1253
  display: flex;
1229
1254
  flex-direction: column;
1230
1255
  height: 100%;
@@ -1235,19 +1260,19 @@ You will need this password to access your ${e} wallet on a new device. Please k
1235
1260
  display: none;
1236
1261
  }
1237
1262
  }
1238
- `,Yy=Tt.div`
1263
+ `,eg=Tt.div`
1239
1264
  display: flex;
1240
1265
  flex-direction: column;
1241
1266
  align-items: flex-start;
1242
1267
  justify-content: flex-start;
1243
1268
  text-align: left;
1244
1269
  gap: 20px;
1245
- `,Jy=Tt.div`
1270
+ `,tg=Tt.div`
1246
1271
  display: flex;
1247
1272
  flex-direction: column;
1248
1273
  width: 100%;
1249
1274
  gap: 8px;
1250
- `,vd=Tt.button`
1275
+ `,Ed=Tt.button`
1251
1276
  display: flex;
1252
1277
  flex-direction: row;
1253
1278
  align-items: center;
@@ -1280,24 +1305,24 @@ You will need this password to access your ${e} wallet on a new device. Please k
1280
1305
  :hover {
1281
1306
  border: 1px solid var(--privy-color-accent-light);
1282
1307
  }
1283
- `,wd=Tt.div`
1308
+ `,xd=Tt.div`
1284
1309
  text-align: left;
1285
1310
 
1286
1311
  p {
1287
1312
  font-style: italic;
1288
1313
  font-size: 12px;
1289
1314
  }
1290
- `,Qy=Tt.div`
1315
+ `,og=Tt.div`
1291
1316
  margin-top: auto;
1292
1317
  display: flex;
1293
1318
  align-items: flex-end;
1294
1319
  flex-grow: 1;
1295
1320
  width: 100%;
1296
- `,Zy=Tt(q)`
1321
+ `,rg=Tt(q)`
1297
1322
  && {
1298
1323
  margin-top: 14px;
1299
1324
  }
1300
- `,Ma=Tt.div`
1325
+ `,Ua=Tt.div`
1301
1326
  display: flex;
1302
1327
  flex-direction: column;
1303
1328
  align-items: center;
@@ -1309,17 +1334,17 @@ You will need this password to access your ${e} wallet on a new device. Please k
1309
1334
  > :first-child > svg {
1310
1335
  margin-top: 20px;
1311
1336
  }
1312
- `,La=Tt.div`
1337
+ `,Fa=Tt.div`
1313
1338
  display: flex;
1314
1339
  flex-direction: column;
1315
1340
  align-items: center;
1316
1341
  justify-content: center;
1317
1342
  width: 100%;
1318
- `,Xy=Tt.div`
1343
+ `,ng=Tt.div`
1319
1344
  display: flex;
1320
1345
  justify-content: center;
1321
1346
  flex-grow: 1;
1322
- `;import{Fragment as eg,jsx as cr,jsxs as bd}from"react/jsx-runtime";var Ed=()=>{let{navigateBack:e}=b();return bd(eg,{children:[cr(x,{backFn:e},"header"),cr(P,{}),cr(Na,{}),cr(W,{}),bd(ee,{children:[cr("span",{children:"Still not sure? "}),cr("a",{target:"_blank",href:"https://ethereum.org/en/wallets/",children:"Learn more"})]})]})};import{Fragment as tg,jsx as dr,jsxs as xd}from"react/jsx-runtime";var Td=()=>{let{navigateBack:e}=b();return xd(tg,{children:[dr(x,{backFn:e},"header"),dr(P,{}),dr(Ia,{}),dr(W,{}),xd(ee,{children:[dr("span",{children:"Still not sure? "}),dr("a",{target:"_blank",href:"https://ethereum.org/en/wallets/",children:"Learn more"})]})]})};import{Fragment as og,jsx as pr,jsxs as Pd}from"react/jsx-runtime";var _d=()=>{let{navigateBack:e}=b();return Pd(og,{children:[pr(x,{backFn:e},"header"),pr(P,{}),pr(Wa,{}),pr(W,{}),Pd(ee,{children:[pr("span",{children:"Still not sure? "}),pr("a",{target:"_blank",href:"https://ethereum.org/en/wallets/",children:"Learn more"})]})]})};import{useState as Cg}from"react";import{isMobile as Wd}from"react-device-detect";import ur from"styled-components";import{EnvelopeIcon as rg}from"@heroicons/react/24/outline";import{useEffect as Oa,useState as Da}from"react";import Fa from"styled-components";import{Fragment as sg,jsx as Wo,jsxs as Ua}from"react/jsx-runtime";var ei=e=>{let[t,o]=Da(""),[r,n]=Da(!1),[i,a]=Da(null),{isLinking:c,initLoginWithEmail:s,captchaData:l}=A(),{app:y,navigate:m}=b(),v=y?.loginMethods.wallet??!1;Oa(()=>{document.querySelector("#email-input")?.focus()},[]);let h=el(t),w=()=>{n(!0),s(t,l.token).then(()=>{l.enabled&&l.remove(),m("AWAITING_PASSWORDLESS_CODE")}).catch(C=>{C?.status===422?a(C.message):C?.privyErrorCode==="allowlist_rejected"?m("ALLOWLIST_REJECTION_SCREEN"):(console.error(C),a("Issue submitting email")),n(!1)})},_="Get started without a wallet.";i?_=i:c?_="\u200B":v||(_="Get started quickly with email");let S=l.enabled&&!l.token&&!l.error,T=l.error!==void 0;return Oa(()=>{l.error&&a("Issue verifying you are a human")},[l.error]),Oa(()=>{l.ready&&l.execute()},[l.ready]),Ua(sg,{children:[Ua(ng,{stacked:e.stacked,children:[Ua(ig,{standalone:e.stacked,children:[Wo(rg,{}),Wo("input",{id:"email-input",type:"email",placeholder:"your@email.com",onChange:C=>o(C.target.value),onKeyUp:C=>{C.key==="Enter"&&w()},value:t,autoComplete:"email"})]}),e.stacked?null:Wo(Nn,{disabled:r||!h||S||T,onClick:w,children:r||S?Wo(Xt,{}):"Submit"})]}),l.enabled&&Wo("div",{id:"cf-turnstile"}),Wo(ag,{fail:!!i,children:_}),e.stacked?Wo(q,{loading:r||S,loadingText:null,disabled:r||!h||S||T,onClick:w,children:"Submit"}):null]})},ng=Fa.div`
1347
+ `;import{Fragment as ig,jsx as ur,jsxs as Pd}from"react/jsx-runtime";var _d=()=>{let{navigateBack:e}=C();return Pd(ig,{children:[ur(T,{backFn:e},"header"),ur(S,{}),ur(Da,{}),ur(W,{}),Pd(ee,{children:[ur("span",{children:"Still not sure? "}),ur("a",{target:"_blank",href:"https://ethereum.org/en/wallets/",children:"Learn more"})]})]})};import{Fragment as ag,jsx as mr,jsxs as Sd}from"react/jsx-runtime";var Ad=()=>{let{navigateBack:e}=C();return Sd(ag,{children:[mr(T,{backFn:e},"header"),mr(S,{}),mr(La,{}),mr(W,{}),Sd(ee,{children:[mr("span",{children:"Still not sure? "}),mr("a",{target:"_blank",href:"https://ethereum.org/en/wallets/",children:"Learn more"})]})]})};import{Fragment as sg,jsx as fr,jsxs as kd}from"react/jsx-runtime";var Rd=()=>{let{navigateBack:e}=C();return kd(sg,{children:[fr(T,{backFn:e},"header"),fr(S,{}),fr(Oa,{}),fr(W,{}),kd(ee,{children:[fr("span",{children:"Still not sure? "}),fr("a",{target:"_blank",href:"https://ethereum.org/en/wallets/",children:"Learn more"})]})]})};import{useState as Pg}from"react";import{isMobile as Od}from"react-device-detect";import hr from"styled-components";import{EnvelopeIcon as lg}from"@heroicons/react/24/outline";import{useEffect as Ba,useState as Ha}from"react";import za from"styled-components";import{Fragment as ug,jsx as Mo,jsxs as Ga}from"react/jsx-runtime";var ii=e=>{let[t,o]=Ha(""),[r,n]=Ha(!1),[i,a]=Ha(null),{isLinking:c,initLoginWithEmail:l,captchaData:s}=A(),{app:y,navigate:h}=C(),g=y?.loginMethods.wallet??!1;Ba(()=>{document.querySelector("#email-input")?.focus()},[]);let m=nl(t),w=()=>{n(!0),l(t,s.token).then(()=>{s.enabled&&s.remove(),h("AWAITING_PASSWORDLESS_CODE")}).catch(b=>{b?.status===422?a(b.message):b?.privyErrorCode==="allowlist_rejected"?h("ALLOWLIST_REJECTION_SCREEN"):(console.error(b),a("Issue submitting email")),n(!1)})},_="Get started without a wallet.";i?_=i:c?_="\u200B":g||(_="Get started quickly with email");let P=s.enabled&&!s.token&&!s.error,x=s.error!==void 0;return Ba(()=>{s.error&&a("Issue verifying you are a human")},[s.error]),Ba(()=>{s.ready&&s.execute()},[s.ready]),Ga(ug,{children:[Ga(cg,{stacked:e.stacked,children:[Ga(dg,{standalone:e.stacked,children:[Mo(lg,{}),Mo("input",{id:"email-input",type:"email",placeholder:"your@email.com",onChange:b=>o(b.target.value),onKeyUp:b=>{b.key==="Enter"&&w()},value:t,autoComplete:"email"})]}),e.stacked?null:Mo(On,{disabled:r||!m||P||x,onClick:w,children:r||P?Mo(eo,{}):"Submit"})]}),s.enabled&&Mo("div",{id:"cf-turnstile"}),Mo(pg,{fail:!!i,children:_}),e.stacked?Mo(q,{loading:r||P,loadingText:null,disabled:r||!m||P||x,onClick:w,children:"Submit"}):null]})},cg=za.div`
1323
1348
  width: 100%;
1324
1349
  height: ${e=>e.stacked?"100%":"auto"};
1325
1350
 
@@ -1331,7 +1356,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1331
1356
  @media (max-width: 440px) {
1332
1357
  margin-top: 20px;
1333
1358
  }
1334
- `,ig=Fa.label`
1359
+ `,dg=za.label`
1335
1360
  display: flex;
1336
1361
  flex-direction: row;
1337
1362
  align-items: center;
@@ -1368,7 +1393,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1368
1393
  line-height: 24px;
1369
1394
  }
1370
1395
  }
1371
- `,ag=Fa.div`
1396
+ `,pg=za.div`
1372
1397
  line-height: 20px;
1373
1398
  height: 20px;
1374
1399
  font-size: 13px;
@@ -1381,7 +1406,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1381
1406
  > a {
1382
1407
  text-decoration: underline;
1383
1408
  }
1384
- `;import{PhoneIcon as lg}from"@heroicons/react/24/outline";import{useEffect as Ba,useState as Ha}from"react";import za from"styled-components";import{Fragment as ug,jsx as No,jsxs as Ga}from"react/jsx-runtime";var ti=e=>{let[t,o]=Ha(""),[r,n]=Ha(!1),[i,a]=Ha(null),{isLinking:c,initLoginWithSms:s,captchaData:l}=A(),{app:y,navigate:m}=b(),v=y?.loginMethods.wallet??!1;Ba(()=>{document.querySelector("#phone-number-input")?.focus()},[]);let h=tl(t),w=()=>{n(!0),s(t,l.token).then(()=>{l.enabled&&l.remove(),m("AWAITING_PASSWORDLESS_CODE")}).catch(C=>{C?.status===422?a(C.message):C?.privyErrorCode==="allowlist_rejected"?m("ALLOWLIST_REJECTION_SCREEN"):(console.error(C),a("Issue submitting phone number")),n(!1)})},_="Get started without a wallet.";i?_=i:c?_="\u200B":v||(_="Get started quickly with your phone");let S=l.enabled&&!l.token&&!l.error,T=l.error!==void 0;return Ba(()=>{l.error&&a("Issue verifying you are a human")},[l.error]),Ba(()=>{l.ready&&l.execute()},[l.ready]),Ga(ug,{children:[Ga(cg,{stacked:e.stacked,children:[Ga(dg,{standalone:e.stacked,children:[No(lg,{}),No("input",{id:"phone-number-input",type:"tel",placeholder:"555 555 5555",onChange:C=>{o(C.target.value)},onKeyUp:C=>{C.key==="Enter"&&w()},value:t,autoComplete:"tel"})]}),e.stacked?null:No(Nn,{disabled:r||!h||S||T,onClick:w,children:r||S?No(Xt,{}):"Submit"})]}),l.enabled&&No("div",{id:"cf-turnstile"}),No(pg,{fail:!!i,children:_}),e.stacked?No(q,{loading:r||S,loadingText:null,disabled:r||!h||S||T,onClick:w,children:"Submit"}):null]})},cg=za.div`
1409
+ `;import{PhoneIcon as mg}from"@heroicons/react/24/outline";import{useEffect as $a,useState as Va}from"react";import ja from"styled-components";import{Fragment as gg,jsx as Lo,jsxs as qa}from"react/jsx-runtime";var ai=e=>{let[t,o]=Va(""),[r,n]=Va(!1),[i,a]=Va(null),{isLinking:c,initLoginWithSms:l,captchaData:s}=A(),{app:y,navigate:h}=C(),g=y?.loginMethods.wallet??!1;$a(()=>{document.querySelector("#phone-number-input")?.focus()},[]);let m=il(t),w=()=>{n(!0),l(t,s.token).then(()=>{s.enabled&&s.remove(),h("AWAITING_PASSWORDLESS_CODE")}).catch(b=>{b?.status===422?a(b.message):b?.privyErrorCode==="allowlist_rejected"?h("ALLOWLIST_REJECTION_SCREEN"):(console.error(b),a("Issue submitting phone number")),n(!1)})},_="Get started without a wallet.";i?_=i:c?_="\u200B":g||(_="Get started quickly with your phone");let P=s.enabled&&!s.token&&!s.error,x=s.error!==void 0;return $a(()=>{s.error&&a("Issue verifying you are a human")},[s.error]),$a(()=>{s.ready&&s.execute()},[s.ready]),qa(gg,{children:[qa(fg,{stacked:e.stacked,children:[qa(hg,{standalone:e.stacked,children:[Lo(mg,{}),Lo("input",{id:"phone-number-input",type:"tel",placeholder:"555 555 5555",onChange:b=>{o(b.target.value)},onKeyUp:b=>{b.key==="Enter"&&w()},value:t,autoComplete:"tel"})]}),e.stacked?null:Lo(On,{disabled:r||!m||P||x,onClick:w,children:r||P?Lo(eo,{}):"Submit"})]}),s.enabled&&Lo("div",{id:"cf-turnstile"}),Lo(yg,{fail:!!i,children:_}),e.stacked?Lo(q,{loading:r||P,loadingText:null,disabled:r||!m||P||x,onClick:w,children:"Submit"}):null]})},fg=ja.div`
1385
1410
  display: flex;
1386
1411
  border: 1px solid var(--privy-color-foreground-4);
1387
1412
  width: 100%;
@@ -1395,7 +1420,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1395
1420
  @media (max-width: 440px) {
1396
1421
  margin-top: 20px;
1397
1422
  }
1398
- `,dg=za.label`
1423
+ `,hg=ja.label`
1399
1424
  display: flex;
1400
1425
  flex-direction: row;
1401
1426
  align-items: center;
@@ -1432,7 +1457,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1432
1457
  line-height: 24px;
1433
1458
  }
1434
1459
  }
1435
- `,pg=za.div`
1460
+ `,yg=ja.div`
1436
1461
  line-height: 20px;
1437
1462
  height: 20px;
1438
1463
  font-size: 13px;
@@ -1445,12 +1470,12 @@ You will need this password to access your ${e} wallet on a new device. Please k
1445
1470
  > a {
1446
1471
  text-decoration: underline;
1447
1472
  }
1448
- `;import{useState as gg}from"react";import Rd from"styled-components";import{jsx as Sd,jsxs as mg}from"react/jsx-runtime";var oi=({style:e,...t})=>mg("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:[Sd("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"}),Sd("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 Vr,jsxs as fg}from"react/jsx-runtime";var ri=({style:e,...t})=>fg("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:[Vr("g",{clipPath:"url(#clip0)",children:Vr("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"})}),Vr("defs",{children:Vr("clipPath",{id:"clip0",children:Vr("rect",{width:"71",height:"55",fill:"white"})})})]});import{jsx as Ad}from"react/jsx-runtime";var ni=({style:e,...t})=>Ad("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:Ad("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 ii,jsxs as hg}from"react/jsx-runtime";var ai=({style:e,...t})=>hg("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:[ii("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"}),ii("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"}),ii("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"}),ii("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 si}from"react/jsx-runtime";function li({style:e,...t}){return si("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:si("g",{fill:"#0077b5",strokeWidth:"1",strokeLinecap:"butt",strokeLinejoin:"miter",strokeMiterlimit:"10",style:{mixBlendMode:"normal"},children:si("g",{transform:"scale(5.12,5.12)",children:si("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 $a,jsxs as yg}from"react/jsx-runtime";function ci(e){return yg("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:[$a("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"}),$a("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"}),$a("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 kd}from"react/jsx-runtime";var di=({style:e,...t})=>kd("svg",{width:"24",height:"20",viewBox:"0 0 24 20",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"26px",width:"26px",...e},...t,children:kd("path",{d:"M7.54311 19.7551C16.5973 19.7551 21.5516 12.2467 21.5516 5.74656C21.5516 5.53533 21.5516 5.32409 21.542 5.11286C22.5021 4.42156 23.3375 3.54783 24 2.55888C23.1166 2.95254 22.1661 3.21178 21.1675 3.3366C22.1853 2.73171 22.963 1.76196 23.3375 0.609788C22.3869 1.17627 21.3308 1.57953 20.2074 1.80037C19.3049 0.840223 18.0279 0.244934 16.6165 0.244934C13.8993 0.244934 11.6909 2.45326 11.6909 5.17047C11.6909 5.55453 11.7389 5.92898 11.8157 6.29384C7.72554 6.09221 4.09619 4.12391 1.66703 1.14747C1.24457 1.87718 1.00453 2.72211 1.00453 3.62464C1.00453 5.3337 1.87826 6.84112 3.19366 7.72445C2.38714 7.69565 1.62862 7.47481 0.966125 7.10996C0.966125 7.12916 0.966125 7.14837 0.966125 7.17717C0.966125 9.55833 2.66558 11.5554 4.91232 12.0067C4.49945 12.1219 4.06739 12.1795 3.61612 12.1795C3.29927 12.1795 2.99203 12.1507 2.69438 12.0931C3.31848 14.0518 5.14275 15.4728 7.29347 15.5112C5.60362 16.8362 3.4817 17.6235 1.17736 17.6235C0.783698 17.6235 0.390039 17.6043 0.00598145 17.5563C2.17591 18.9389 4.76829 19.7551 7.54311 19.7551Z",fill:"#1da1f2"})});import{jsx as Ie,jsxs as wg}from"react/jsx-runtime";var Id=({showGoogle:e,showTwitter:t,showDiscord:o,showGithub:r,showTiktok:n,showLinkedIn:i,showApple:a})=>{let[c,s]=gg(!1),{initLoginWithOAuth:l}=A(),{app:y}=b(),m=y?.appearance.palette.colorScheme;return wg(vg,{children:[e&&Ie(Mo,{onClick:()=>{s(!0),l("google")},disabled:c,children:Ie(ai,{})}),t&&Ie(Mo,{onClick:()=>{s(!0),l("twitter")},disabled:c,children:Ie(di,{})}),o&&Ie(Mo,{onClick:()=>{s(!0),l("discord")},disabled:c,children:Ie(ri,{})}),r&&Ie(Mo,{onClick:()=>{s(!0),l("github")},disabled:c,children:Ie(ni,{style:{color:m==="light"?"#000":"#fff"}})}),n&&Ie(Mo,{onClick:()=>{s(!0),l("tiktok")},disabled:c,children:Ie(ci,{style:{color:m==="light"?"#000":"#fff"}})}),i&&Ie(Mo,{onClick:()=>{s(!0),l("linkedin")},disabled:c,children:Ie(li,{})}),a&&Ie(Mo,{onClick:()=>{s(!0),l("apple")},disabled:c,children:Ie(oi,{style:{color:m==="light"?"#000":"#fff"}})})]})},vg=Rd.div`
1473
+ `;import{useState as Eg}from"react";import Md from"styled-components";import{jsx as Id,jsxs as vg}from"react/jsx-runtime";var si=({style:e,...t})=>vg("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:[Id("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"}),Id("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 Kr,jsxs as wg}from"react/jsx-runtime";var li=({style:e,...t})=>wg("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:[Kr("g",{clipPath:"url(#clip0)",children:Kr("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"})}),Kr("defs",{children:Kr("clipPath",{id:"clip0",children:Kr("rect",{width:"71",height:"55",fill:"white"})})})]});import{jsx as Wd}from"react/jsx-runtime";var ci=({style:e,...t})=>Wd("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:Wd("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 di,jsxs as Cg}from"react/jsx-runtime";var pi=({style:e,...t})=>Cg("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:[di("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"}),di("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"}),di("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"}),di("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 ui}from"react/jsx-runtime";function mi({style:e,...t}){return ui("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:ui("g",{fill:"#0077b5",strokeWidth:"1",strokeLinecap:"butt",strokeLinejoin:"miter",strokeMiterlimit:"10",style:{mixBlendMode:"normal"},children:ui("g",{transform:"scale(5.12,5.12)",children:ui("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 Ka,jsxs as bg}from"react/jsx-runtime";function fi(e){return bg("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:[Ka("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"}),Ka("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"}),Ka("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 Nd}from"react/jsx-runtime";var hi=({style:e,...t})=>Nd("svg",{width:"24",height:"20",viewBox:"0 0 24 20",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"26px",width:"26px",...e},...t,children:Nd("path",{d:"M7.54311 19.7551C16.5973 19.7551 21.5516 12.2467 21.5516 5.74656C21.5516 5.53533 21.5516 5.32409 21.542 5.11286C22.5021 4.42156 23.3375 3.54783 24 2.55888C23.1166 2.95254 22.1661 3.21178 21.1675 3.3366C22.1853 2.73171 22.963 1.76196 23.3375 0.609788C22.3869 1.17627 21.3308 1.57953 20.2074 1.80037C19.3049 0.840223 18.0279 0.244934 16.6165 0.244934C13.8993 0.244934 11.6909 2.45326 11.6909 5.17047C11.6909 5.55453 11.7389 5.92898 11.8157 6.29384C7.72554 6.09221 4.09619 4.12391 1.66703 1.14747C1.24457 1.87718 1.00453 2.72211 1.00453 3.62464C1.00453 5.3337 1.87826 6.84112 3.19366 7.72445C2.38714 7.69565 1.62862 7.47481 0.966125 7.10996C0.966125 7.12916 0.966125 7.14837 0.966125 7.17717C0.966125 9.55833 2.66558 11.5554 4.91232 12.0067C4.49945 12.1219 4.06739 12.1795 3.61612 12.1795C3.29927 12.1795 2.99203 12.1507 2.69438 12.0931C3.31848 14.0518 5.14275 15.4728 7.29347 15.5112C5.60362 16.8362 3.4817 17.6235 1.17736 17.6235C0.783698 17.6235 0.390039 17.6043 0.00598145 17.5563C2.17591 18.9389 4.76829 19.7551 7.54311 19.7551Z",fill:"#1da1f2"})});import{jsx as Ne,jsxs as Tg}from"react/jsx-runtime";var Ld=({showGoogle:e,showTwitter:t,showDiscord:o,showGithub:r,showTiktok:n,showLinkedIn:i,showApple:a})=>{let[c,l]=Eg(!1),{initLoginWithOAuth:s}=A(),{app:y}=C(),h=y?.appearance.palette.colorScheme;return Tg(xg,{children:[e&&Ne(Oo,{onClick:()=>{l(!0),s("google")},disabled:c,children:Ne(pi,{})}),t&&Ne(Oo,{onClick:()=>{l(!0),s("twitter")},disabled:c,children:Ne(hi,{})}),o&&Ne(Oo,{onClick:()=>{l(!0),s("discord")},disabled:c,children:Ne(li,{})}),r&&Ne(Oo,{onClick:()=>{l(!0),s("github")},disabled:c,children:Ne(ci,{style:{color:h==="light"?"#000":"#fff"}})}),n&&Ne(Oo,{onClick:()=>{l(!0),s("tiktok")},disabled:c,children:Ne(fi,{style:{color:h==="light"?"#000":"#fff"}})}),i&&Ne(Oo,{onClick:()=>{l(!0),s("linkedin")},disabled:c,children:Ne(mi,{})}),a&&Ne(Oo,{onClick:()=>{l(!0),s("apple")},disabled:c,children:Ne(si,{style:{color:h==="light"?"#000":"#fff"}})})]})},xg=Md.div`
1449
1474
  display: flex;
1450
1475
  justify-content: space-between;
1451
1476
  width: 100%;
1452
1477
  gap: 4px;
1453
- `,Mo=Rd.button`
1478
+ `,Oo=Md.button`
1454
1479
  && {
1455
1480
  border-radius: var(--privy-border-radius-sm);
1456
1481
  cursor: pointer;
@@ -1472,13 +1497,13 @@ You will need this password to access your ${e} wallet on a new device. Please k
1472
1497
  background-color: var(--privy-color-background-2);
1473
1498
  }
1474
1499
  }
1475
- `;import{Fragment as Va,jsx as ie,jsxs as Lo}from"react/jsx-runtime";var Md=()=>{let{app:e,outerClickRef:t}=b(),{captchaData:o,closePrivyModal:r}=A(),n=e?.loginMethods.email??!1,i=e?.loginMethods.sms??!1,a=e?.loginMethods.wallet??!1,c=e?.loginMethods.google??!1,s=e?.loginMethods.twitter??!1,l=e?.loginMethods.discord??!1,y=e?.loginMethods.github??!1,m=e?.loginMethods.tiktok??!1,v=e?.loginMethods.linkedin??!1,h=e?.loginMethods.apple??!1,w=!e?.appearance.showWalletLoginFirst,_=a&&e?.appearance.showWalletLoginFirst?0:1,[S,T]=Cg(_),C=S==0,D=S==1,I=a,k=n||i,N=I!==k,U=()=>{o.enabled&&o.remove(),r()};return t&&(t.current=U),Lo(Va,{children:[ie(x,{onClose:U},"header"),e?.appearance.logo?ie(Pg,{hasOnlyOneSection:N,hasTerms:!!(e?.legal.privacyPolicyUrl||e?.legal.termsAndConditionsUrl),children:ie(Un,{})}):null,Lo(_g,{reverse:w,children:[I&&ie(bg,{active:C||N,connectOnly:!1,tabIndex:w?1:0,onClick:()=>{o.enabled&&o.remove(),T(0)},isOnlySection:!k}),k&&ie(Eg,{active:D||N,onClick:()=>T(1),email:n,sms:i,google:c,twitter:s,twitterOAuthOnMobileEnabled:e?.loginConfig.twitterOAuthOnMobileEnabled??!1,discord:l,github:y,tiktok:m,linkedin:v,apple:h,tabIndex:w?0:1,isOnlySection:!I})]}),e&&ie(Mn,{app:e}),ie(O,{protectedByPrivy:!0})]})};function bg(e){return Lo(Od,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,tabIndex:e.tabIndex,children:[ie(Ld,{active:e.active,children:ie("h4",{children:"Connect Wallet"})}),e.active&&Lo(Va,{children:[ie(no,{connectOnly:e.connectOnly}),ie(io,{})]})]})}function Eg(e){let t=!Wd||e.twitterOAuthOnMobileEnabled&&Wd,o=e.google||e.discord||e.github||e.tiktok||e.linkedin||e.twitter&&t||e.apple,r=e.email?"Email":"Phone";return Lo(Od,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,tabIndex:e.tabIndex,children:[e.isOnlySection?null:ie(Ld,{active:e.active,children:ie("h4",{children:o?`${r} & Social`:r})}),e.active&&e.email&&ie(ei,{}),e.active&&e.sms&&!e.email&&ie(ti,{}),e.active&&o&&ie(xg,{google:e.google,twitter:e.twitter&&t,discord:e.discord,github:e.github,tiktok:e.tiktok,linkedin:e.linkedin,apple:e.apple})]})}function xg(e){return Lo(Va,{children:[Lo(Tg,{children:[ie(Nd,{}),ie("p",{children:" Or "}),ie(Nd,{})]}),ie(Id,{showGoogle:e.google,showDiscord:e.discord,showGithub:e.github,showLinkedIn:e.linkedin,showTwitter:e.twitter,showTiktok:e.tiktok,showApple:e.apple})]})}var Ld=ur.div`
1500
+ `;import{Fragment as Ya,jsx as ae,jsxs as Do}from"react/jsx-runtime";var Ud=()=>{let{app:e,outerClickRef:t}=C(),{captchaData:o,closePrivyModal:r}=A(),n=e?.loginMethods.email??!1,i=e?.loginMethods.sms??!1,a=e?.loginMethods.wallet??!1,c=e?.loginMethods.google??!1,l=e?.loginMethods.twitter??!1,s=e?.loginMethods.discord??!1,y=e?.loginMethods.github??!1,h=e?.loginMethods.tiktok??!1,g=e?.loginMethods.linkedin??!1,m=e?.loginMethods.apple??!1,w=!e?.appearance.showWalletLoginFirst,_=a&&e?.appearance.showWalletLoginFirst?0:1,[P,x]=Pg(_),b=P==0,U=P==1,k=a,L=n||i,N=k!==L,I=()=>{o.enabled&&o.remove(),r()};return t&&(t.current=I),Do(Ya,{children:[ae(T,{onClose:I},"header"),e?.appearance.logo?ae(Rg,{hasOnlyOneSection:N,hasTerms:!!(e?.legal.privacyPolicyUrl||e?.legal.termsAndConditionsUrl),children:ae(Hn,{})}):null,Do(Ig,{reverse:w,children:[k&&ae(_g,{active:b||N,connectOnly:!1,tabIndex:w?1:0,onClick:()=>{o.enabled&&o.remove(),x(0)},isOnlySection:!L}),L&&ae(Sg,{active:U||N,onClick:()=>x(1),email:n,sms:i,google:c,twitter:l,twitterOAuthOnMobileEnabled:e?.loginConfig.twitterOAuthOnMobileEnabled??!1,discord:s,github:y,tiktok:h,linkedin:g,apple:m,tabIndex:w?0:1,isOnlySection:!k})]}),e&&ae(Dn,{app:e}),ae(D,{protectedByPrivy:!0})]})};function _g(e){return Do(Bd,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,tabIndex:e.tabIndex,children:[ae(Fd,{active:e.active,children:ae("h4",{children:"Connect Wallet"})}),e.active&&Do(Ya,{children:[ae(io,{connectOnly:e.connectOnly}),ae(ao,{})]})]})}function Sg(e){let t=!Od||e.twitterOAuthOnMobileEnabled&&Od,o=e.google||e.discord||e.github||e.tiktok||e.linkedin||e.twitter&&t||e.apple,r=e.email?"Email":"Phone";return Do(Bd,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,tabIndex:e.tabIndex,children:[e.isOnlySection?null:ae(Fd,{active:e.active,children:ae("h4",{children:o?`${r} & Social`:r})}),e.active&&e.email&&ae(ii,{}),e.active&&e.sms&&!e.email&&ae(ai,{}),e.active&&o&&ae(Ag,{google:e.google,twitter:e.twitter&&t,discord:e.discord,github:e.github,tiktok:e.tiktok,linkedin:e.linkedin,apple:e.apple})]})}function Ag(e){return Do(Ya,{children:[Do(kg,{children:[ae(Dd,{}),ae("p",{children:" Or "}),ae(Dd,{})]}),ae(Ld,{showGoogle:e.google,showDiscord:e.discord,showGithub:e.github,showLinkedIn:e.linkedin,showTwitter:e.twitter,showTiktok:e.tiktok,showApple:e.apple})]})}var Fd=hr.div`
1476
1501
  font-weight: ${e=>e.active?600:500};
1477
1502
  color: ${e=>e.active?"var(--privy-color-foreground)":"var(--privy-color-foreground-2)"};
1478
1503
  display: flex;
1479
1504
  justify-content: center;
1480
1505
  align-items: center;
1481
- `,Od=ur.div.attrs({role:"button"})`
1506
+ `,Bd=hr.div.attrs({role:"button"})`
1482
1507
  display: flex;
1483
1508
  flex-direction: column;
1484
1509
  align-items: flex-start;
@@ -1504,7 +1529,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1504
1529
  }
1505
1530
 
1506
1531
  cursor: ${e=>e.active?"inherit":"pointer"};
1507
- `,Tg=ur.div`
1532
+ `,kg=hr.div`
1508
1533
  display: flex;
1509
1534
  justify-content: center;
1510
1535
  align-items: center;
@@ -1513,13 +1538,13 @@ You will need this password to access your ${e} wallet on a new device. Please k
1513
1538
  && > p {
1514
1539
  color: var(--privy-color-foreground-3);
1515
1540
  }
1516
- `,Nd=ur.hr`
1541
+ `,Dd=hr.hr`
1517
1542
  width: 50%;
1518
1543
  && {
1519
1544
  border-top: 1px solid var(--privy-color-foreground-4);
1520
1545
  margin: 0px 8px;
1521
1546
  }
1522
- `,Pg=ur.div`
1547
+ `,Rg=hr.div`
1523
1548
  display: flex;
1524
1549
  flex-direction: column;
1525
1550
  align-items: center;
@@ -1530,9 +1555,9 @@ You will need this password to access your ${e} wallet on a new device. Please k
1530
1555
  @media (max-width: 440px) {
1531
1556
  padding: 10px 10px 20px;
1532
1557
  }
1533
- `,_g=ur(pe)`
1558
+ `,Ig=hr(pe)`
1534
1559
  flex-direction: ${e=>e.reverse?"column-reverse":"column"};
1535
- `;import{EnvelopeIcon as Sg}from"@heroicons/react/24/outline";import{Fragment as Ag,jsx as uo,jsxs as kg}from"react/jsx-runtime";var Dd=()=>{let{app:e}=b();return kg(Ag,{children:[uo(x,{},"header"),uo(P,{}),uo(le,{title:"Connect your email",description:`Add your email to your ${e?.name} account`,icon:uo(Sg,{color:"var(--privy-color-accent)",strokeWidth:2,height:"48px",width:"48px"})}),uo(pe,{children:uo(ei,{stacked:!0})}),uo(W,{}),uo(O,{protectedByPrivy:!0})]})};import{PhoneIcon as Rg}from"@heroicons/react/24/outline";import{Fragment as Ig,jsx as mo,jsxs as Wg}from"react/jsx-runtime";var Ud=()=>{let{app:e}=b();return Wg(Ig,{children:[mo(x,{},"header"),mo(P,{}),mo(le,{title:"Connect your phone",description:`Add your number to your ${e?.name} account`,icon:mo(Rg,{color:"var(--privy-color-accent)",strokeWidth:2,height:"40px",width:"40px"})}),mo(pe,{children:mo(ti,{stacked:!0})}),mo(W,{}),mo(O,{protectedByPrivy:!0})]})};import{Fragment as Ng,jsx as Oo,jsxs as Fd}from"react/jsx-runtime";var Bd=()=>{let{linkingHint:e}=A(),{app:t}=b(),o=e?`Select the wallet with ${Jt(e)} and follow the instructions to reconnect your wallet${t?.name?` to ${t.name}.`:"."}`:`Link a wallet to your ${t?.name} account`;return Fd(Ng,{children:[Oo(x,{},"header"),Oo(P,{}),Oo(oo,{title:`${e?"Reconnect":"Connect"} your wallet`,description:o}),Fd(pe,{children:[Oo(no,{connectOnly:!1}),Oo(io,{})]}),Oo(W,{}),Oo(O,{protectedByPrivy:!0})]})};import{jsx as Hd,jsxs as Mg}from"react/jsx-runtime";var Gd=({style:e,...t})=>Mg("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:[Hd("circle",{cx:"82",cy:"82",r:"80",stroke:"#EC6351","stroke-width":"4","stroke-linecap":"round"}),Hd("path",{"fill-rule":"evenodd","clip-rule":"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 Lg,jsx as fo,jsxs as zd}from"react/jsx-runtime";var $d=()=>{let{closePrivyModal:e}=A(),{navigate:t}=b();return zd(Lg,{children:[fo(x,{},"header"),fo(P,{}),fo(Gd,{style:{width:"160px",height:"160px",margin:"0 auto 20px"}}),fo(oo,{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"}}),zd(pe,{children:[fo(q,{onClick:()=>t("LANDING"),children:"Try again"}),fo(In,{onClick:()=>e(),children:"Cancel"})]}),fo(W,{}),fo(O,{protectedByPrivy:!0})]})};import{useEffect as Vd,useState as qd}from"react";import Kd from"styled-components";function qa(e){return e.charAt(0).toUpperCase()+e.slice(1)}import{Fragment as Ug,jsx as Bt,jsxs as ui}from"react/jsx-runtime";var jd={google:{name:"Google",component:ai},discord:{name:"Discord",component:ri},github:{name:"Github",component:ni},linkedin:{name:"LinkedIn",component:li},twitter:{name:"Twitter",component:di},tiktok:{name:"Tiktok",component:ci},apple:{name:"Apple",component:oi}},pi=()=>{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)},Yd=()=>{let{user:e,authenticated:t}=V(),{app:o,setModalData:r,navigate:n,resetNavigation:i,data:a}=b(),{getAuthMeta:c,initLoginWithOAuth:s,loginWithOAuth:l,updateWallets:y,closePrivyModal:m}=A(),[v,h]=qd(!1),[w,_]=qd(void 0),S=c()?.provider||"google",T=jd[S].name,C=jd[S].component,D=o?.render.inDialog?Fe:0;Vd(()=>{l().then(()=>{pi(),h(!0)}).catch(N=>{let U={retryable:!1,message:"Authentication failed"};if(N?.privyErrorCode==="allowlist_rejected"){_(void 0),i(),n("ALLOWLIST_REJECTION_SCREEN"),pi();return}else N?.privyErrorCode==="linked_to_another_user"?U.detail="This account has already been linked to another user.":N?.privyErrorCode==="invalid_credentials"?(U.retryable=!0,U.detail="Something went wrong. Try again."):N.privyErrorCode==="oauth_user_denied"&&(U.detail=`Retry and check ${qa(S)} to finish connecting your account.`,U.retryable=!0);pi(),_(U)}).finally(()=>{a?.finishOauthFlow?.onComplete?.()})},[]),Vd(()=>{if(t&&v&&e)if(Yt(e,o?.embeddedWallets?.createOnLogin)){let U=setTimeout(()=>{r({createWallet:{onSuccess:()=>{},onFailure:ae=>console.error(ae),callAuthOnSuccessOnClose:!0}}),n("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},D);return()=>clearTimeout(U)}else{let U=setTimeout(m,D);return y(),()=>clearTimeout(U)}},[t,v,e]);let I=v?`Successfully connected with ${T}`:w?w.message:`Verifying connection to ${T}`,k="";return v?k="You\u2019re good to go!":w?k=w.detail:k="Just a few moments more",ui(Ug,{children:[Bt(x,{}),Bt(P,{}),ui(Og,{children:[Bt(Dg,{children:ui("div",{children:[Bt(Sn,{success:v,fail:!!w}),Bt(C,{style:{width:"38px",height:"38px"}})]})}),ui(to,{children:[Bt("h3",{children:I}),Bt("p",{children:k})]}),w&&w?.retryable?Bt(ye,{onClick:()=>{pi(),s(S),_(void 0)},disabled:!v&&!w?.retryable,children:"Retry"}):null]}),Bt(ee,{})]})},Og=Kd.div`
1560
+ `;import{EnvelopeIcon as Wg}from"@heroicons/react/24/outline";import{Fragment as Ng,jsx as mo,jsxs as Mg}from"react/jsx-runtime";var Hd=()=>{let{app:e}=C();return Mg(Ng,{children:[mo(T,{},"header"),mo(S,{}),mo(le,{title:"Connect your email",description:`Add your email to your ${e?.name} account`,icon:mo(Wg,{color:"var(--privy-color-accent)",strokeWidth:2,height:"48px",width:"48px"})}),mo(pe,{children:mo(ii,{stacked:!0})}),mo(W,{}),mo(D,{protectedByPrivy:!0})]})};import{PhoneIcon as Lg}from"@heroicons/react/24/outline";import{Fragment as Og,jsx as fo,jsxs as Dg}from"react/jsx-runtime";var Gd=()=>{let{app:e}=C();return Dg(Og,{children:[fo(T,{},"header"),fo(S,{}),fo(le,{title:"Connect your phone",description:`Add your number to your ${e?.name} account`,icon:fo(Lg,{color:"var(--privy-color-accent)",strokeWidth:2,height:"40px",width:"40px"})}),fo(pe,{children:fo(ai,{stacked:!0})}),fo(W,{}),fo(D,{protectedByPrivy:!0})]})};import{Fragment as Ug,jsx as Uo,jsxs as zd}from"react/jsx-runtime";var $d=()=>{let{linkingHint:e}=A(),{app:t}=C(),o=e?`Select the wallet with ${Qt(e)} and follow the instructions to reconnect your wallet${t?.name?` to ${t.name}.`:"."}`:`Link a wallet to your ${t?.name} account`;return zd(Ug,{children:[Uo(T,{},"header"),Uo(S,{}),Uo(ro,{title:`${e?"Reconnect":"Connect"} your wallet`,description:o}),zd(pe,{children:[Uo(io,{connectOnly:!1}),Uo(ao,{})]}),Uo(W,{}),Uo(D,{protectedByPrivy:!0})]})};import{jsx as Vd,jsxs as Fg}from"react/jsx-runtime";var qd=({style:e,...t})=>Fg("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:[Vd("circle",{cx:"82",cy:"82",r:"80",stroke:"#EC6351","stroke-width":"4","stroke-linecap":"round"}),Vd("path",{"fill-rule":"evenodd","clip-rule":"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 Bg,jsx as ho,jsxs as jd}from"react/jsx-runtime";var Kd=()=>{let{closePrivyModal:e}=A(),{navigate:t}=C();return jd(Bg,{children:[ho(T,{},"header"),ho(S,{}),ho(qd,{style:{width:"160px",height:"160px",margin:"0 auto 20px"}}),ho(ro,{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"}}),jd(pe,{children:[ho(q,{onClick:()=>t("LANDING"),children:"Try again"}),ho(Mn,{onClick:()=>e(),children:"Cancel"})]}),ho(W,{}),ho(D,{protectedByPrivy:!0})]})};import{useEffect as Yd,useState as Jd}from"react";import Zd from"styled-components";function Ja(e){return e.charAt(0).toUpperCase()+e.slice(1)}import{Fragment as zg,jsx as Ht,jsxs as gi}from"react/jsx-runtime";var Qd={google:{name:"Google",component:pi},discord:{name:"Discord",component:li},github:{name:"Github",component:ci},linkedin:{name:"LinkedIn",component:mi},twitter:{name:"Twitter",component:hi},tiktok:{name:"Tiktok",component:fi},apple:{name:"Apple",component:si}},yi=()=>{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)},Xd=()=>{let{user:e,authenticated:t}=V(),{app:o,setModalData:r,navigate:n,resetNavigation:i,data:a}=C(),{getAuthMeta:c,initLoginWithOAuth:l,loginWithOAuth:s,updateWallets:y,closePrivyModal:h}=A(),[g,m]=Jd(!1),[w,_]=Jd(void 0),P=c()?.provider||"google",x=Qd[P].name,b=Qd[P].component,U=o?.render.inDialog?He:0;Yd(()=>{s().then(()=>{yi(),m(!0)}).catch(N=>{let I={retryable:!1,message:"Authentication failed"};if(N?.privyErrorCode==="allowlist_rejected"){_(void 0),i(),n("ALLOWLIST_REJECTION_SCREEN"),yi();return}else N?.privyErrorCode==="linked_to_another_user"?I.detail="This account has already been linked to another user.":N?.privyErrorCode==="invalid_credentials"?(I.retryable=!0,I.detail="Something went wrong. Try again."):N.privyErrorCode==="oauth_user_denied"&&(I.detail=`Retry and check ${Ja(P)} to finish connecting your account.`,I.retryable=!0);yi(),_(I)}).finally(()=>{a?.finishOauthFlow?.onComplete?.()})},[]),Yd(()=>{if(t&&g&&e)if(Jt(e,o?.embeddedWallets?.createOnLogin)){let I=setTimeout(()=>{r({createWallet:{onSuccess:()=>{},onFailure:ne=>console.error(ne),callAuthOnSuccessOnClose:!0}}),n("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},U);return()=>clearTimeout(I)}else{let I=setTimeout(h,U);return y(),()=>clearTimeout(I)}},[t,g,e]);let k=g?`Successfully connected with ${x}`:w?w.message:`Verifying connection to ${x}`,L="";return g?L="You\u2019re good to go!":w?L=w.detail:L="Just a few moments more",gi(zg,{children:[Ht(T,{}),Ht(S,{}),gi(Hg,{children:[Ht(Gg,{children:gi("div",{children:[Ht(Rn,{success:g,fail:!!w}),Ht(b,{style:{width:"38px",height:"38px"}})]})}),gi(oo,{children:[Ht("h3",{children:k}),Ht("p",{children:L})]}),w&&w?.retryable?Ht(ye,{onClick:()=>{yi(),l(P),_(void 0)},disabled:!g&&!w?.retryable,children:"Retry"}):null]}),Ht(ee,{})]})},Hg=Zd.div`
1536
1561
  display: flex;
1537
1562
  flex-direction: column;
1538
1563
  align-items: center;
@@ -1540,7 +1565,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1540
1565
  margin-left: 27px;
1541
1566
  margin-right: 27px;
1542
1567
  gap: 24px;
1543
- `,Dg=Kd.div`
1568
+ `,Gg=Zd.div`
1544
1569
  display: flex;
1545
1570
  flex-direction: column;
1546
1571
  justify-content: center;
@@ -1563,9 +1588,9 @@ You will need this password to access your ${e} wallet on a new device. Please k
1563
1588
  left: -19px;
1564
1589
  top: -19px;
1565
1590
  }
1566
- `;import{useEffect as Bg,useState as Qd}from"react";import Hg from"styled-components";import{isMobile as Fg}from"react-device-detect";var Jd=(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(!je()&&Fg)return`${t?"phantom://":"https://phantom.app/ul/"}browse/${r}?ref=${r}`};import{Fragment as zg,jsx as Ht,jsxs as Zd}from"react/jsx-runtime";var Xd=()=>{let{forkSession:e,ready:t,authenticated:o}=V(),[r,n]=Qd(""),[i,a]=Qd(!1);Bg(()=>{t&&o&&e().then(n)},[t,o]);let c=Jd(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."),Zd(zg,{children:[Ht(x,{},"header"),Ht(P,{}),Ht(oo,{title:s.title,description:s.description}),Zd(pe,{children:[Ht(Gg,{children:Ht(Ke,{style:{width:"72px",height:"72px"}})}),Ht(Rn,{href:c,onClick:()=>{setTimeout(()=>a(!0),1e3)},loading:t&&!c,children:i?"Go to App Store":"Continue"}),s.footnote?Ht("p",{children:s.footnote}):null]}),Ht(W,{}),Ht(O,{protectedByPrivy:!0})]})},Gg=Hg(ea)`
1591
+ `;import{useEffect as Vg,useState as tp}from"react";import qg from"styled-components";import{isMobile as $g}from"react-device-detect";var ep=(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(!Ye()&&$g)return`${t?"phantom://":"https://phantom.app/ul/"}browse/${r}?ref=${r}`};import{Fragment as Kg,jsx as Gt,jsxs as op}from"react/jsx-runtime";var rp=()=>{let{forkSession:e,ready:t,authenticated:o}=V(),[r,n]=tp(""),[i,a]=tp(!1);Vg(()=>{t&&o&&e().then(n)},[t,o]);let c=ep(r,!i),l={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&&(l.description="For the best experience, we'll automatically log you into the Phantom Mobile Wallet in-app browser.",l.footnote="Once you're done, you can always return here and refresh to view your updated account."),i&&(l.title="Still here?",l.description="You may need to install the Phantom mobile app.",l.footnote="Once you're done, you can return here or connect via Phantom's in-app browser."),op(Kg,{children:[Gt(T,{},"header"),Gt(S,{}),Gt(ro,{title:l.title,description:l.description}),op(pe,{children:[Gt(jg,{children:Gt(Je,{style:{width:"72px",height:"72px"}})}),Gt(Nn,{href:c,onClick:()=>{setTimeout(()=>a(!0),1e3)},loading:t&&!c,children:i?"Go to App Store":"Continue"}),l.footnote?Gt("p",{children:l.footnote}):null]}),Gt(W,{}),Gt(D,{protectedByPrivy:!0})]})},jg=qg(ia)`
1567
1592
  margin: 16px auto;
1568
- `;import{StaticJsonRpcProvider as F1}from"@ethersproject/providers";import{useMemo as Up,useEffect as Fp,useState as vo}from"react";import vr from"styled-components";import bp from"styled-components";import tp from"styled-components";import{jsx as ep,jsxs as qg}from"react/jsx-runtime";var mi=({label:e,children:t,valueStyles:o})=>qg($g,{children:[ep("div",{children:e}),ep(Vg,{style:{...o},children:t})]}),$g=tp.div`
1593
+ `;import{StaticJsonRpcProvider as $1}from"@ethersproject/providers";import{useMemo as Gp,useEffect as zp,useState as wo}from"react";import br from"styled-components";import Pp from"styled-components";import ip from"styled-components";import{jsx as np,jsxs as Qg}from"react/jsx-runtime";var vi=({label:e,children:t,valueStyles:o})=>Qg(Yg,{children:[np("div",{children:e}),np(Jg,{style:{...o},children:t})]}),Yg=ip.div`
1569
1594
  display: flex;
1570
1595
  align-items: center;
1571
1596
  justify-content: space-between;
@@ -1580,7 +1605,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1580
1605
  color: var(--privy-color-foreground-2);
1581
1606
  text-align: right;
1582
1607
  }
1583
- `,Vg=tp.div`
1608
+ `,Jg=ip.div`
1584
1609
  font-size: 14px;
1585
1610
  line-height: 100%;
1586
1611
  display: flex;
@@ -1589,28 +1614,28 @@ You will need this password to access your ${e} wallet on a new device. Please k
1589
1614
  border-radius: var(--privy-border-radius-full);
1590
1615
  background-color: var(--privy-color-background-2);
1591
1616
  padding: 4px 8px;
1592
- `;import hi from"styled-components";import{BigNumber as op}from"@ethersproject/bignumber";import{formatEther as rp}from"@ethersproject/units";var qr=(e,t)=>{let o=(t*parseFloat(rp(e))).toFixed(2);return o!=="0.00"?`$${o}`:"<$0.01"},Pt=(e,t,o=6,r=!1)=>{let i=parseFloat(rp(e)).toFixed(o).replace(/0+$/,"").replace(/\.$/,"");return r?`${i} ${t}`:`${i==="0"?"<0.001":i} ${t}`},ja=e=>e.map(ho).reduce((t,o)=>t.add(o),op.from(0)).toHexString(),np=(e,t)=>{let{chains:o}=A(),r=`https://etherscan.io/address/${t}`,n=`${il(e,o)}/address/${t}`;if(!n)return r;try{new URL(n)}catch{return r}return n},ho=e=>op.from(e);import{Fragment as Jg,jsx as fi,jsxs as ip}from"react/jsx-runtime";var ap=({weiQuantities:e,tokenPrice:t,tokenSymbol:o})=>{let r=ja(e),n=t?qr(r,t):void 0,i=Pt(r,o);return fi(sp,{children:n||i})},Ka=({weiQuantities:e,tokenPrice:t,tokenSymbol:o})=>{let r=ja(e),n=t?qr(r,t):void 0,i=Pt(r,o);return fi(sp,{children:n?ip(Jg,{children:[fi(jg,{children:"USD"}),n==="<$0.01"?ip(Yg,{children:[fi(Kg,{children:"<"}),"$0.01"]}):n]}):i})},sp=hi.span`
1617
+ `;import Ci from"styled-components";import{BigNumber as ap}from"@ethersproject/bignumber";import{formatEther as sp}from"@ethersproject/units";var Yr=(e,t)=>{let o=(t*parseFloat(sp(e))).toFixed(2);return o!=="0.00"?`$${o}`:"<$0.01"},Pt=(e,t,o=6,r=!1)=>{let i=parseFloat(sp(e)).toFixed(o).replace(/0+$/,"").replace(/\.$/,"");return r?`${i} ${t}`:`${i==="0"?"<0.001":i} ${t}`},Qa=e=>e.map(yo).reduce((t,o)=>t.add(o),ap.from(0)).toHexString(),lp=(e,t)=>{let{chains:o}=A(),r=`https://etherscan.io/address/${t}`,n=`${cl(e,o)}/address/${t}`;if(!n)return r;try{new URL(n)}catch{return r}return n},yo=e=>ap.from(e);import{Fragment as t1,jsx as wi,jsxs as cp}from"react/jsx-runtime";var dp=({weiQuantities:e,tokenPrice:t,tokenSymbol:o})=>{let r=Qa(e),n=t?Yr(r,t):void 0,i=Pt(r,o);return wi(pp,{children:n||i})},Za=({weiQuantities:e,tokenPrice:t,tokenSymbol:o})=>{let r=Qa(e),n=t?Yr(r,t):void 0,i=Pt(r,o);return wi(pp,{children:n?cp(t1,{children:[wi(Zg,{children:"USD"}),n==="<$0.01"?cp(e1,{children:[wi(Xg,{children:"<"}),"$0.01"]}):n]}):i})},pp=Ci.span`
1593
1618
  font-size: 14px;
1594
1619
  line-height: 140%;
1595
1620
  display: flex;
1596
1621
  gap: 4px;
1597
1622
  align-items: center;
1598
- `,jg=hi.span`
1623
+ `,Zg=Ci.span`
1599
1624
  font-size: 12px;
1600
1625
  line-height: 12px;
1601
1626
  color: var(--privy-color-foreground-3);
1602
- `,Kg=hi.span`
1627
+ `,Xg=Ci.span`
1603
1628
  font-size: 10px;
1604
- `,Yg=hi.span`
1629
+ `,e1=Ci.span`
1605
1630
  display: flex;
1606
1631
  align-items: center;
1607
- `;import Ya from"styled-components";import{jsx as yo,jsxs as yi}from"react/jsx-runtime";var lp=({gas:e,tokenPrice:t,tokenSymbol:o})=>yi(ta,{style:{paddingBottom:"12px"},children:[yi(dp,{children:[yo(up,{children:"Est. Fees"}),yo("div",{children:yo(Ka,{weiQuantities:[e],tokenPrice:t,tokenSymbol:o})})]}),t&&yo(pp,{children:`${Pt(e,o)}`})]}),cp=({transactionData:e,gas:t,tokenPrice:o,tokenSymbol:r})=>{let n=ho(e.value||0).add(ho(t)).toHexString();return yi(ta,{children:[yi(dp,{children:[yo(up,{children:"Total (including fees)"}),yo("div",{children:yo(Ka,{weiQuantities:[e.value||0,t],tokenPrice:o,tokenSymbol:r})})]}),o&&yo(pp,{children:Pt(n,r)})]})},dp=Ya.div`
1632
+ `;import Xa from"styled-components";import{jsx as go,jsxs as bi}from"react/jsx-runtime";var up=({gas:e,tokenPrice:t,tokenSymbol:o})=>bi(aa,{style:{paddingBottom:"12px"},children:[bi(fp,{children:[go(yp,{children:"Est. Fees"}),go("div",{children:go(Za,{weiQuantities:[e],tokenPrice:t,tokenSymbol:o})})]}),t&&go(hp,{children:`${Pt(e,o)}`})]}),mp=({transactionData:e,gas:t,tokenPrice:o,tokenSymbol:r})=>{let n=yo(e.value||0).add(yo(t)).toHexString();return bi(aa,{children:[bi(fp,{children:[go(yp,{children:"Total (including fees)"}),go("div",{children:go(Za,{weiQuantities:[e.value||0,t],tokenPrice:o,tokenSymbol:r})})]}),o&&go(hp,{children:Pt(n,r)})]})},fp=Xa.div`
1608
1633
  display: flex;
1609
1634
  flex-direction: row;
1610
1635
  justify-content: space-between;
1611
1636
  align-items: center;
1612
1637
  padding-top: 4px;
1613
- `,pp=Ya.div`
1638
+ `,hp=Xa.div`
1614
1639
  display: flex;
1615
1640
  flex-direction: row;
1616
1641
  height: 12px;
@@ -1619,23 +1644,23 @@ You will need this password to access your ${e} wallet on a new device. Please k
1619
1644
  line-height: 12px;
1620
1645
  color: var(--privy-color-foreground-3);
1621
1646
  font-weight: 400;
1622
- `,up=Ya.div`
1647
+ `,yp=Xa.div`
1623
1648
  font-size: 14px;
1624
1649
  line-height: 22.4px;
1625
1650
  font-weight: 400;
1626
- `;import{ChevronDownIcon as Qg}from"@heroicons/react/24/outline";import{useContext as Do,useState as Zg}from"react";import go from"styled-components";import{createContext as mp,useContext as hP}from"react";var mr=mp(void 0);var jr=mp(void 0);import{Fragment as a1,jsx as dt,jsxs as fp}from"react/jsx-runtime";var hp=({defaultValue:e,children:t})=>{let[o,r]=Zg(e||null),n=i=>{r(o===i?null:i)};return dt(mr.Provider,{value:{activePanel:o,togglePanel:n},children:dt(Xg,{children:t})})},yp=({value:e,children:t})=>{let{activePanel:o,togglePanel:r}=Do(mr),n=o===e;return dt(jr.Provider,{value:{onToggle:()=>r(e),value:e},children:dt(r1,{isActive:n,"data-open":n,children:t})})},gp=({children:e})=>{let{activePanel:t}=Do(mr),{onToggle:o,value:r}=Do(jr),n=t===r;return fp(a1,{children:[fp(e1,{onClick:o,"data-open":n,children:[dt(o1,{children:e}),dt(i1,{isactive:n,children:dt(Qg,{height:"16px",width:"16px",strokeWidth:"2"})})]}),dt(t1,{})]})},vp=({children:e})=>{let{activePanel:t}=Do(mr),{value:o}=Do(jr);return dt(n1,{"data-open":t===o,children:dt(Cp,{children:e})})},wp=({children:e})=>{let{activePanel:t}=Do(mr),{value:o}=Do(jr);return dt(Cp,{children:typeof e=="function"?e({isActive:t===o}):e})},Xg=go.div`
1651
+ `;import{ChevronDownIcon as o1}from"@heroicons/react/24/outline";import{useContext as Fo,useState as r1}from"react";import vo from"styled-components";import{createContext as gp,useContext as bP}from"react";var yr=gp(void 0);var Jr=gp(void 0);import{Fragment as p1,jsx as dt,jsxs as vp}from"react/jsx-runtime";var wp=({defaultValue:e,children:t})=>{let[o,r]=r1(e||null),n=i=>{r(o===i?null:i)};return dt(yr.Provider,{value:{activePanel:o,togglePanel:n},children:dt(n1,{children:t})})},Cp=({value:e,children:t})=>{let{activePanel:o,togglePanel:r}=Fo(yr),n=o===e;return dt(Jr.Provider,{value:{onToggle:()=>r(e),value:e},children:dt(l1,{isActive:n,"data-open":n,children:t})})},bp=({children:e})=>{let{activePanel:t}=Fo(yr),{onToggle:o,value:r}=Fo(Jr),n=t===r;return vp(p1,{children:[vp(i1,{onClick:o,"data-open":n,children:[dt(s1,{children:e}),dt(d1,{isactive:n,children:dt(o1,{height:"16px",width:"16px",strokeWidth:"2"})})]}),dt(a1,{})]})},Ep=({children:e})=>{let{activePanel:t}=Fo(yr),{value:o}=Fo(Jr);return dt(c1,{"data-open":t===o,children:dt(Tp,{children:e})})},xp=({children:e})=>{let{activePanel:t}=Fo(yr),{value:o}=Fo(Jr);return dt(Tp,{children:typeof e=="function"?e({isActive:t===o}):e})},n1=vo.div`
1627
1652
  display: flex;
1628
1653
  flex-direction: column;
1629
1654
  width: 100%;
1630
1655
  gap: 8px;
1631
- `,e1=go.div`
1656
+ `,i1=vo.div`
1632
1657
  display: flex;
1633
1658
  justify-content: space-between;
1634
1659
  align-items: center;
1635
1660
  width: 100%;
1636
1661
  cursor: pointer;
1637
1662
  padding-bottom: 8px;
1638
- `,t1=go.div`
1663
+ `,a1=vo.div`
1639
1664
  width: 100%;
1640
1665
 
1641
1666
  && {
@@ -1643,13 +1668,13 @@ You will need this password to access your ${e} wallet on a new device. Please k
1643
1668
  border-color: var(--privy-color-foreground-4);
1644
1669
  }
1645
1670
  padding-bottom: 12px;
1646
- `,o1=go.div`
1671
+ `,s1=vo.div`
1647
1672
  font-size: 14px;
1648
1673
  font-weight: 500;
1649
1674
  line-height: 19.6px;
1650
1675
  width: 100%;
1651
1676
  padding-right: 8px;
1652
- `,r1=go.div`
1677
+ `,l1=vo.div`
1653
1678
  display: flex;
1654
1679
  flex-direction: column;
1655
1680
  width: 100%;
@@ -1661,7 +1686,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1661
1686
  border-color: var(--privy-color-foreground-4);
1662
1687
  border-radius: var(--privy-border-radius-md);
1663
1688
  }
1664
- `,n1=go.div`
1689
+ `,c1=vo.div`
1665
1690
  position: relative;
1666
1691
  overflow: hidden;
1667
1692
  transition: max-height 0.35s ease-in-out;
@@ -1673,36 +1698,36 @@ You will need this password to access your ${e} wallet on a new device. Please k
1673
1698
  &[data-open='false'] {
1674
1699
  max-height: 0;
1675
1700
  }
1676
- `,Cp=go.div`
1701
+ `,Tp=vo.div`
1677
1702
  display: flex;
1678
1703
  flex-direction: column;
1679
1704
  gap: 12px;
1680
1705
  flex: 1 1 auto;
1681
1706
  min-height: 1px;
1682
- `,i1=go.div`
1707
+ `,d1=vo.div`
1683
1708
  transform: ${e=>e.isactive?"rotate(180deg)":"rotate(0deg)"};
1684
- `;import s1 from"styled-components";import{jsx as c1}from"react/jsx-runtime";var Ja=({walletAddress:e,chainId:t=ut})=>c1(l1,{href:np(t,e),target:"_blank",children:Jt(e)}),l1=s1.a`
1709
+ `;import u1 from"styled-components";import{jsx as f1}from"react/jsx-runtime";var es=({walletAddress:e,chainId:t=ut})=>f1(m1,{href:lp(t,e),target:"_blank",children:Qt(e)}),m1=u1.a`
1685
1710
  &:hover {
1686
1711
  text-decoration: underline;
1687
1712
  }
1688
- `;import{jsx as $e,jsxs as Qa}from"react/jsx-runtime";var gi=({from:e,to:t,txn:o,transactionInfo:r,tokenPrice:n,gas:i,tokenSymbol:a})=>{let c=o?.value||0;return $e(hp,{children:Qa(yp,{value:"details",children:[$e(gp,{children:Qa(d1,{children:[$e("div",{children:r?.title||r?.actionDescription||"Details"}),$e(p1,{children:$e(ap,{weiQuantities:[c],tokenPrice:n,tokenSymbol:a})})]})}),Qa(vp,{children:[$e(mi,{label:"From",children:$e(Ja,{walletAddress:e,chainId:o.chainId||ut})}),$e(mi,{label:"To",children:$e(Ja,{walletAddress:t,chainId:o.chainId||ut})}),r&&r.action&&$e(mi,{label:"Action",children:r.action}),i&&$e(lp,{transactionData:o,gas:i,tokenPrice:n,tokenSymbol:a})]}),$e(wp,{children:({isActive:s})=>$e(cp,{transactionData:o,displayFee:s,gas:i||"0x0",tokenPrice:n,tokenSymbol:a})})]})})},d1=bp.div`
1713
+ `;import{jsx as qe,jsxs as ts}from"react/jsx-runtime";var Ei=({from:e,to:t,txn:o,transactionInfo:r,tokenPrice:n,gas:i,tokenSymbol:a})=>{let c=o?.value||0;return qe(wp,{children:ts(Cp,{value:"details",children:[qe(bp,{children:ts(h1,{children:[qe("div",{children:r?.title||r?.actionDescription||"Details"}),qe(y1,{children:qe(dp,{weiQuantities:[c],tokenPrice:n,tokenSymbol:a})})]})}),ts(Ep,{children:[qe(vi,{label:"From",children:qe(es,{walletAddress:e,chainId:o.chainId||ut})}),qe(vi,{label:"To",children:qe(es,{walletAddress:t,chainId:o.chainId||ut})}),r&&r.action&&qe(vi,{label:"Action",children:r.action}),i&&qe(up,{transactionData:o,gas:i,tokenPrice:n,tokenSymbol:a})]}),qe(xp,{children:({isActive:l})=>qe(mp,{transactionData:o,displayFee:l,gas:i||"0x0",tokenPrice:n,tokenSymbol:a})})]})})},h1=Pp.div`
1689
1714
  display: flex;
1690
1715
  flex-direction: row;
1691
1716
  justify-content: space-between;
1692
- `,p1=bp.div`
1717
+ `,y1=Pp.div`
1693
1718
  flex-shrink: 0;
1694
1719
  padding-left: 8px;
1695
- `;import Yr from"styled-components";import{jsx as Kr,jsxs as g1}from"react/jsx-runtime";var Za=({description:e,contractInfo:t})=>g1(u1,{children:[t.imgUrl&&Kr(m1,{size:t.imgSize||"sm",src:t.imgUrl,alt:t.imgAltText||`${t.name} image`}),t.url&&Kr(f1,{children:Kr("a",{href:t.url,target:"_blank",rel:"noopener noreferrer",children:t.url.replace(/^(https?:\/\/)(www\.)?/,"")})}),t.name&&Kr(h1,{children:t.name}),Kr(y1,{children:e||t.actionText})]}),u1=Yr.div`
1720
+ `;import Zr from"styled-components";import{jsx as Qr,jsxs as E1}from"react/jsx-runtime";var os=({description:e,contractInfo:t})=>E1(g1,{children:[t.imgUrl&&Qr(v1,{size:t.imgSize||"sm",src:t.imgUrl,alt:t.imgAltText||`${t.name} image`}),t.url&&Qr(w1,{children:Qr("a",{href:t.url,target:"_blank",rel:"noopener noreferrer",children:t.url.replace(/^(https?:\/\/)(www\.)?/,"")})}),t.name&&Qr(C1,{children:t.name}),Qr(b1,{children:e||t.actionText})]}),g1=Zr.div`
1696
1721
  display: flex;
1697
1722
  flex-direction: column;
1698
1723
  align-items: center;
1699
1724
  margin-bottom: 8px;
1700
- `,m1=Yr.img`
1725
+ `,v1=Zr.img`
1701
1726
  height: ${e=>e.size==="sm"?"65px":"140px"};
1702
1727
  width: ${e=>e.size==="sm"?"65px":"140px"};
1703
1728
  border-radius: 16px;
1704
1729
  margin-bottom: 12px;
1705
- `,f1=Yr.div`
1730
+ `,w1=Zr.div`
1706
1731
  font-size: 12px;
1707
1732
  line-height: 12px;
1708
1733
  padding: 7px;
@@ -1715,7 +1740,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1715
1740
  text-decoration: underline;
1716
1741
  }
1717
1742
  }
1718
- `,h1=Yr.div`
1743
+ `,C1=Zr.div`
1719
1744
  font-size: 18px;
1720
1745
  line-height: 18px;
1721
1746
  font-weight: 500;
@@ -1723,7 +1748,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1723
1748
  white-space: nowrap;
1724
1749
  max-width: 275px;
1725
1750
  text-overflow: ellipsis;
1726
- `,y1=Yr.div`
1751
+ `,b1=Zr.div`
1727
1752
  font-size: 16px;
1728
1753
  line-height: 140%;
1729
1754
  font-weight: 400;
@@ -1731,7 +1756,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1731
1756
  overflow: hidden;
1732
1757
  max-width: 275px;
1733
1758
  text-overflow: ellipsis;
1734
- `;import{WalletIcon as T1}from"@heroicons/react/24/outline";import{useState as es,useEffect as P1}from"react";import os from"styled-components";import{VoidSigner as C1}from"@ethersproject/abstract-signer";import{EtherscanProvider as QP}from"@ethersproject/providers";import{parseUnits as Ep}from"@ethersproject/units";import{ofetch as v1}from"ofetch";var Jr={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 Qr={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 xp=[Jr.id,Qr.id],Xa=e=>({maxPriorityFee:Ep(e.maxPriorityFee.toFixed(9),"gwei").toHexString(),maxFee:Ep(e.maxFee.toFixed(9),"gwei").toHexString()}),w1=e=>({safeLow:Xa(e.safeLow),standard:Xa(e.standard),fast:Xa(e.fast)}),Tp=async e=>{let t="";switch(e){case Jr.id:t="https://gasstation.polygon.technology/v2";break;case Qr.id:t="https://gasstation-testnet.polygon.technology/v2";break;default:throw Error(`chainId ${e} does not support polygon gas stations`)}return w1(await v1(t))};function fr(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 b1(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=fr(e.nonce)),e.gasLimit!==void 0&&(t.gasLimit=fr(e.gasLimit)),e.gasPrice!==void 0&&(t.gasPrice=fr(e.gasPrice)),e.value!==void 0&&(t.value=fr(e.value)),e.maxFeePerGas!==void 0&&(t.maxFeePerGas=fr(e.maxFeePerGas)),e.maxPriorityFeePerGas!==void 0&&(t.maxPriorityFeePerGas=fr(e.maxPriorityFeePerGas)),t}async function vi(e,t,o){t.chainId=Number(t.chainId),_p(t);let r=new C1(e,o);if(delete t.gas,xp.includes(t.chainId)&&(!t.maxPriorityFeePerGas||!t.maxFeePerGas))try{let{standard:i}=await Tp(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}.`)}let n=await r.populateTransaction(t);return b1(n)}async function wi(e,t,o,r,n){r=Object.assign({chainId:ut},r),_p(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 Ci(e,t,o){let r=await o.getBalance(e),n=t.value||0,i=r.sub(ho(n)),a=!i.isNegative()&&!i.isZero();return{balance:r,hasSufficientFunds:a}}async function Pp(e,t){return delete e.from,await t.estimateGas(e)}function _p(e){let t=["gasLimit","gasPrice","value","maxPriorityFeePerGas","maxFeePerGas"];for(let o of t){let r=e[o];if(!(typeof r>"u")&&!E1(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 E1(e){let t=typeof e=="number",o=typeof e=="bigint",r=typeof e=="string"&&x1(e);return t||o||r}function x1(e){return/^-?0x[a-f0-9]+$/i.test(e)}function bi(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{jsx as Sp,jsxs as ts}from"react/jsx-runtime";var Ap=({wallet:e,txn:t,provider:o})=>{let[r,n]=es(),[i,a]=es(!1),[c,s]=es(!1),{nativeTokenSymbolForChainId:l}=A(),y=l(t.chainId)||"ETH";return P1(()=>{(async v=>{try{let{balance:h,hasSufficientFunds:w}=await Ci(v,t,o);s(!0),a(w===!1),n(h.toHexString())}catch(h){console.warn(`Failed to fetch wallet balance with error: ${h}`)}})(e.address)},[e,t]),ts(_1,{children:[ts(S1,{children:[Sp(T1,{strokeWidth:"2",width:"16px",height:"16px"}),Sp("div",{children:Jt(e?.address)})]}),ts(A1,{displayBalanceColor:c,hasFunds:!i,children:[r?Pt(r,y,6,!0):0," ","available"]})]})},_1=os.div`
1759
+ `;import{WalletIcon as k1}from"@heroicons/react/24/outline";import{useState as ns,useEffect as R1}from"react";import as from"styled-components";import{VoidSigner as P1}from"@ethersproject/abstract-signer";import{EtherscanProvider as r_}from"@ethersproject/providers";import{parseUnits as _p}from"@ethersproject/units";import{ofetch as x1}from"ofetch";var Xr={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 en={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 Sp=[Xr.id,en.id],rs=e=>({maxPriorityFee:_p(e.maxPriorityFee.toFixed(9),"gwei").toHexString(),maxFee:_p(e.maxFee.toFixed(9),"gwei").toHexString()}),T1=e=>({safeLow:rs(e.safeLow),standard:rs(e.standard),fast:rs(e.fast)}),Ap=async e=>{let t="";switch(e){case Xr.id:t="https://gasstation.polygon.technology/v2";break;case en.id:t="https://gasstation-testnet.polygon.technology/v2";break;default:throw Error(`chainId ${e} does not support polygon gas stations`)}return T1(await x1(t))};function gr(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 _1(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=gr(e.nonce)),e.gasLimit!==void 0&&(t.gasLimit=gr(e.gasLimit)),e.gasPrice!==void 0&&(t.gasPrice=gr(e.gasPrice)),e.value!==void 0&&(t.value=gr(e.value)),e.maxFeePerGas!==void 0&&(t.maxFeePerGas=gr(e.maxFeePerGas)),e.maxPriorityFeePerGas!==void 0&&(t.maxPriorityFeePerGas=gr(e.maxPriorityFeePerGas)),t}async function xi(e,t,o){t.chainId=Number(t.chainId),Rp(t);let r=new P1(e,o);if(delete t.gas,Sp.includes(t.chainId)&&(!t.maxPriorityFeePerGas||!t.maxFeePerGas))try{let{standard:i}=await Ap(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}.`)}let n=await r.populateTransaction(t);return _1(n)}async function Ti(e,t,o,r,n){r=Object.assign({chainId:ut},r),Rp(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 Pi(e,t,o){let r=await o.getBalance(e),n=t.value||0,i=r.sub(yo(n)),a=!i.isNegative()&&!i.isZero();return{balance:r,hasSufficientFunds:a}}async function kp(e,t){return delete e.from,await t.estimateGas(e)}function Rp(e){let t=["gasLimit","gasPrice","value","maxPriorityFeePerGas","maxFeePerGas"];for(let o of t){let r=e[o];if(!(typeof r>"u")&&!S1(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 S1(e){let t=typeof e=="number",o=typeof e=="bigint",r=typeof e=="string"&&A1(e);return t||o||r}function A1(e){return/^-?0x[a-f0-9]+$/i.test(e)}function _i(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{jsx as Ip,jsxs as is}from"react/jsx-runtime";var Wp=({wallet:e,txn:t,provider:o})=>{let[r,n]=ns(),[i,a]=ns(!1),[c,l]=ns(!1),{nativeTokenSymbolForChainId:s}=A(),y=s(t.chainId)||"ETH";return R1(()=>{(async g=>{try{let{balance:m,hasSufficientFunds:w}=await Pi(g,t,o);l(!0),a(w===!1),n(m.toHexString())}catch(m){console.warn(`Failed to fetch wallet balance with error: ${m}`)}})(e.address)},[e,t]),is(I1,{children:[is(W1,{children:[Ip(k1,{strokeWidth:"2",width:"16px",height:"16px"}),Ip("div",{children:Qt(e?.address)})]}),is(N1,{displayBalanceColor:c,hasFunds:!i,children:[r?Pt(r,y,6,!0):0," ","available"]})]})},I1=as.div`
1735
1760
  display: flex;
1736
1761
  flex-direction: row;
1737
1762
  justify-content: space-between;
@@ -1744,12 +1769,12 @@ You will need this password to access your ${e} wallet on a new device. Please k
1744
1769
  border: 1px solid var(--privy-color-foreground-4);
1745
1770
  border-radius: var(--privy-border-radius-md);
1746
1771
  }
1747
- `,S1=os.div`
1772
+ `,W1=as.div`
1748
1773
  display: flex;
1749
1774
  flex-direction: row;
1750
1775
  align-items: center;
1751
1776
  gap: 8px;
1752
- `,A1=os.div`
1777
+ `,N1=as.div`
1753
1778
  display: flex;
1754
1779
  align-items: center;
1755
1780
  justify-content: center;
@@ -1759,77 +1784,77 @@ You will need this password to access your ${e} wallet on a new device. Please k
1759
1784
  background-color: var(--privy-color-background-2);
1760
1785
  padding: 5px 8px;
1761
1786
  color: ${e=>e.displayBalanceColor?e.hasFunds?"var(--privy-color-success-dark)":"var(--privy-color-error)":"inherit"};
1762
- `;import Ei from"styled-components";import{Fragment as Rp,jsx as Zr,jsxs as Ip}from"react/jsx-runtime";var Wp=({description:e,txn:t,tokenSymbol:o,tokenPrice:r})=>{let n=t.value||0,i=r?qr(n,r):void 0,a=Pt(n,o);return Ip(k1,{children:[i?Ip(Rp,{children:[Zr(kp,{children:i}),Zr(R1,{children:a})]}):Zr(Rp,{children:Zr(kp,{children:a})}),Zr(I1,{children:e})]})},k1=Ei.div`
1787
+ `;import Si from"styled-components";import{Fragment as Mp,jsx as tn,jsxs as Lp}from"react/jsx-runtime";var Op=({description:e,txn:t,tokenSymbol:o,tokenPrice:r})=>{let n=t.value||0,i=r?Yr(n,r):void 0,a=Pt(n,o);return Lp(M1,{children:[i?Lp(Mp,{children:[tn(Np,{children:i}),tn(L1,{children:a})]}):tn(Mp,{children:tn(Np,{children:a})}),tn(O1,{children:e})]})},M1=Si.div`
1763
1788
  display: flex;
1764
1789
  flex-direction: column;
1765
1790
  align-items: center;
1766
1791
  margin-bottom: 20px;
1767
- `,kp=Ei.h2`
1792
+ `,Np=Si.h2`
1768
1793
  && {
1769
1794
  font-size: 48px;
1770
1795
  line-height: 48px;
1771
1796
  margin: 8px auto;
1772
1797
  }
1773
- `,R1=Ei.p`
1798
+ `,L1=Si.p`
1774
1799
  margin-bottom: 12px;
1775
1800
  && {
1776
1801
  font-size: 17px;
1777
1802
  line-height: 17px;
1778
1803
  color: var(--privy-color-foreground-3);
1779
1804
  }
1780
- `,I1=Ei.div`
1805
+ `,O1=Si.div`
1781
1806
  font-size: 16px;
1782
1807
  line-height: 22.4px;
1783
1808
  font-weight: 400;
1784
1809
  overflow: hidden;
1785
1810
  max-width: 275px;
1786
1811
  text-overflow: ellipsis;
1787
- `;function Np(e){return e.to&&e.data?"CONTRACT_CALL":e.to&&e.value?"SEND":"UNKNOWN"}import{StaticJsonRpcProvider as W1}from"@ethersproject/providers";import{useState as hr,useEffect as Mp,useMemo as N1}from"react";var Lp=e=>{let{getUsdTokenPrice:t,chains:o,rpcConfig:r}=A(),[n,i]=hr(!0),[a,c]=hr(!0),[s,l]=hr(void 0),[y,m]=hr(void 0),[v,h]=hr(void 0),[w,_]=hr(null),S=N1(()=>new W1(rt(e.chainId||ut,o,r)),[e.chainId,o,r]);return Mp(()=>{let T=e.chainId||ut,C=o.find(I=>I.id===Number(T));if(!C)throw new B(`Unsupported chain: ${T}`);(async()=>{try{i(!0);let I=await t(C);I?h(I):m(new Error(`Unable to fetch token price on chain id ${C.id}`))}catch(I){m(I)}finally{i(!1)}})()},[e.chainId]),Mp(()=>{(async()=>{try{c(!0);let C=await Pp(e,S);_(C.toBigInt())}catch(C){l(C)}finally{c(!1)}})()},[e]),{tokenPrice:v,estimatedGas:w,isTokenPriceLoading:n,isGasPriceLoading:a,tokenPriceError:y,gasError:s}};import{createContext as M1,useContext as L1}from"react";var rs=M1({wallets:[]});function ns(){return L1(rs)}import Op from"styled-components";import{Fragment as U1,jsx as yr,jsxs as is}from"react/jsx-runtime";var Dp=({txn:e,receipt:t,transactionInfo:o,onClose:r,tokenPrice:n,tokenSymbol:i})=>is(U1,{children:[yr(x,{onClose:r}),is(O1,{children:[is("div",{children:[yr(wt,{title:"Transaction complete!",description:"You're all set."}),yr(gi,{tokenPrice:n,from:t.from,to:t.to,gas:t.gasUsed,txn:e,transactionInfo:o,tokenSymbol:i})]}),yr("div",{children:yr(D1,{loading:!1,onClick:r,children:"All Done"})})]}),yr(ee,{})]}),O1=Op.div`
1812
+ `;function Dp(e){return e.to&&e.data?"CONTRACT_CALL":e.to&&e.value?"SEND":"UNKNOWN"}import{StaticJsonRpcProvider as D1}from"@ethersproject/providers";import{useState as vr,useEffect as Up,useMemo as U1}from"react";var Fp=e=>{let{getUsdTokenPrice:t,chains:o,rpcConfig:r}=A(),[n,i]=vr(!0),[a,c]=vr(!0),[l,s]=vr(void 0),[y,h]=vr(void 0),[g,m]=vr(void 0),[w,_]=vr(null),P=U1(()=>new D1(nt(e.chainId||ut,o,r)),[e.chainId,o,r]);return Up(()=>{let x=e.chainId||ut,b=o.find(k=>k.id===Number(x));if(!b)throw new B(`Unsupported chain: ${x}`);(async()=>{try{i(!0);let k=await t(b);k?m(k):h(new Error(`Unable to fetch token price on chain id ${b.id}`))}catch(k){h(k)}finally{i(!1)}})()},[e.chainId]),Up(()=>{(async()=>{try{c(!0);let b=await kp(e,P);_(b.toBigInt())}catch(b){s(b)}finally{c(!1)}})()},[e]),{tokenPrice:g,estimatedGas:w,isTokenPriceLoading:n,isGasPriceLoading:a,tokenPriceError:y,gasError:l}};import{createContext as F1,useContext as B1}from"react";var ss=F1({wallets:[]});function ls(){return B1(ss)}import Bp from"styled-components";import{Fragment as z1,jsx as wr,jsxs as cs}from"react/jsx-runtime";var Hp=({txn:e,receipt:t,transactionInfo:o,onClose:r,tokenPrice:n,tokenSymbol:i})=>cs(z1,{children:[wr(T,{onClose:r}),cs(H1,{children:[cs("div",{children:[wr(wt,{title:"Transaction complete!",description:"You're all set."}),wr(Ei,{tokenPrice:n,from:t.from,to:t.to,gas:t.gasUsed,txn:e,transactionInfo:o,tokenSymbol:i})]}),wr("div",{children:wr(G1,{loading:!1,onClick:r,children:"All Done"})})]}),wr(ee,{})]}),H1=Bp.div`
1788
1813
  display: flex;
1789
1814
  height: 100%;
1790
1815
  flex-direction: column;
1791
1816
  justify-content: space-between;
1792
1817
  flex-grow: 1;
1793
- `,D1=Op(q)`
1818
+ `,G1=Bp(q)`
1794
1819
  margin-top: 24px;
1795
1820
  transition: color 350ms ease, background-color 350ms ease;
1796
- `;import{Fragment as as,jsx as me,jsxs as gr}from"react/jsx-runtime";var B1=({txn:e,txnFamily:t,uiOptions:o,tokenSymbol:r,tokenPrice:n})=>{if(t==="CONTRACT_CALL"){if(o.transactionInfo?.contractInfo)return me(Za,{contractInfo:o.transactionInfo.contractInfo,description:o.description});if(o.senderInfo)return me(Za,{contractInfo:o.senderInfo,description:o.description||o.senderInfo.actionText})}return me(as,{children:me(Wp,{description:o.description||o.transactionInfo?.description||"",txn:e,tokenSymbol:r,tokenPrice:n})})},Hp=()=>{let{authenticated:e,getAccessToken:t}=V(),{wallets:o}=ns(),{walletProxy:r,closePrivyModal:n,getFiatOnRampConfig:i,rpcConfig:a,chains:c,nativeTokenSymbolForChainId:s}=A(),{app:l,navigate:y,data:m,outerClickRef:v,setModalData:h}=b(),{transactionRequest:w,onSuccess:_,onFailure:S,uiOptions:T,fundWalletConfig:C}=m.sendTransaction,[D,I]=vo(null),[k,N]=vo(null),[U,ae]=vo(""),[F,K]=vo(),[H,Z]=vo(!1),[L,We]=vo(!0),[X,j]=vo(!1),[J,fe]=vo(w),{tokenPrice:G,estimatedGas:kt,isTokenPriceLoading:br}=Lp(J),Rt=s(w.chainId)||"ETH";Fp(()=>{e||(y("LANDING"),S(new Error("User must be authenticated before transacting with a Privy wallet")))},[e]);let Ne=Up(()=>o.find(et=>et.walletClientType==="privy"),[o]),Ri=async()=>{if(!Ne)return console.warn("No privy wallet found, cannot fund wallet.");let{signedUrl:et,externalTransactionId:de}=await i(Ne.address,{config:C?.config||{}});h({fiatOnRampPrompt:{signedUrl:et},fiatOnRampStatus:{externalTransactionId:de}}),y("FIAT_ON_RAMP_PROMPT_SCREEN")},Ho=Up(()=>new F1(rt(J.chainId,c,a)),[J.chainId,a]);Fp(()=>{async function et(){return!await t()||!r||!Ne?J:vi(Ne.address,J,Ho)}et().then(de=>{We(!1),fe(de)},async de=>{We(!0);let Me=!1;if(uc(de))Me=!0;else if(mc(de))try{let{hasSufficientFunds:z}=await Ci(Ne.address,J,Ho);Me=z===!1}catch(z){console.warn(`Cannot accurately determine if wallet has sufficient funds with error: ${z}`)}let Vt="";Me?(Vt="Wallet has insufficient funds for this transaction",l?.fiatOnRamp.enabled&&Z(!0)):(Vt="There was an error preparing your transaction",console.error(de)),ae(Vt),K(new Ce(new nt(Vt,xe.E32603_DEFAULT_INTERNAL_ERROR.eipCode)))})},[r]);let Go=Np(J),Ii=Go==="SEND"?`Send ${Rt}`:"Review transaction",zt={modalTitle:T.header||T.modalTitle||Ii,buttonText:T.buttonText||"Submit"},$t=()=>{X||(k?_(k):S(F||new Ce(new nt("The user rejected the request",xe.E4001_USER_REJECTED_REQUEST.eipCode))),n({shouldCallAuthOnSuccess:!1}))};return v&&(v.current=$t),G===void 0&&br?gr(as,{children:[me(x,{title:zt.modalTitle,onClose:$t}),me(P,{}),me(Bp,{children:me(rr,{})}),me(W,{})]}):D!==null?me(Dp,{txn:J,onClose:$t,receipt:D,transactionInfo:T.transactionInfo,tokenPrice:G,tokenSymbol:Rt}):gr(as,{children:[me(x,{title:zt.modalTitle,onClose:$t}),gr(Bp,{children:[gr($1,{children:[me(B1,{txn:J,txnFamily:Go,uiOptions:T,tokenSymbol:Rt,tokenPrice:G}),Ne?me(gi,{from:Ne.address,to:J.to,txn:J,transactionInfo:T.transactionInfo,gas:kt?ho(kt).toHexString():void 0,tokenPrice:G,tokenSymbol:Rt}):null]}),gr(V1,{children:[me(H1,{children:U}),Ne?me(Ap,{txn:J,wallet:Ne,provider:Ho}):null,gr(G1,{children:[H&&me(q,{onClick:Ri,children:"Add Funds"}),me(z1,{disabled:L||X,loading:!r||X,loadingText:X?"Submitting (may take a few minutes)...":"Loading...",onClick:async()=>{j(!0);let et=await t();if(et&&!X&&Ne)try{let de=await wi(et,Ne.address,r,J,Ho);N(de);let Me=await de.wait();I(bi(Me)),ae("")}catch(de){let Me="";de.reason==="processing response error"?(console.warn({transaction:J,error:de}),Me="An error has occurred, please contact support."):Me=de.reason||"An error has occurred, please try again.",ae(Me),K(new Ce(new nt(Me,xe.E32603_DEFAULT_INTERNAL_ERROR.eipCode)))}finally{j(!1)}},children:zt.buttonText})]})]})]}),me(ee,{})]})},Bp=vr.div`
1821
+ `;import{Fragment as ds,jsx as me,jsxs as Cr}from"react/jsx-runtime";var V1=({txn:e,txnFamily:t,uiOptions:o,tokenSymbol:r,tokenPrice:n})=>{if(t==="CONTRACT_CALL"){if(o.transactionInfo?.contractInfo)return me(os,{contractInfo:o.transactionInfo.contractInfo,description:o.description});if(o.senderInfo)return me(os,{contractInfo:o.senderInfo,description:o.description||o.senderInfo.actionText})}return me(ds,{children:me(Op,{description:o.description||o.transactionInfo?.description||"",txn:e,tokenSymbol:r,tokenPrice:n})})},Vp=()=>{let{authenticated:e,getAccessToken:t}=V(),{wallets:o}=ls(),{walletProxy:r,closePrivyModal:n,getFiatOnRampConfig:i,rpcConfig:a,chains:c,nativeTokenSymbolForChainId:l}=A(),{app:s,navigate:y,data:h,outerClickRef:g,setModalData:m}=C(),{transactionRequest:w,onSuccess:_,onFailure:P,uiOptions:x,fundWalletConfig:b}=h.sendTransaction,[U,k]=wo(null),[L,N]=wo(null),[I,ne]=wo(""),[F,K]=wo(),[H,Z]=wo(!1),[O,Me]=wo(!0),[X,j]=wo(!1),[J,fe]=wo(w),{tokenPrice:G,estimatedGas:kt,isTokenPriceLoading:Tr}=Fp(J),Rt=l(w.chainId)||"ETH";zp(()=>{e||(y("LANDING"),P(new Error("User must be authenticated before transacting with a Privy wallet")))},[e]);let Le=Gp(()=>o.find(tt=>tt.walletClientType==="privy"),[o]),Li=async()=>{if(!Le)return console.warn("No privy wallet found, cannot fund wallet.");let{signedUrl:tt,externalTransactionId:de}=await i(Le.address,{config:b?.config||{}});m({fiatOnRampPrompt:{signedUrl:tt},fiatOnRampStatus:{externalTransactionId:de}}),y("FIAT_ON_RAMP_PROMPT_SCREEN")},zo=Gp(()=>new $1(nt(J.chainId,c,a)),[J.chainId,a]);zp(()=>{async function tt(){return!await t()||!r||!Le?J:xi(Le.address,J,zo)}tt().then(de=>{Me(!1),fe(de)},async de=>{Me(!0);let Oe=!1;if(yc(de))Oe=!0;else if(gc(de))try{let{hasSufficientFunds:z}=await Pi(Le.address,J,zo);Oe=z===!1}catch(z){console.warn(`Cannot accurately determine if wallet has sufficient funds with error: ${z}`)}let qt="";Oe?(qt="Wallet has insufficient funds for this transaction",s?.fiatOnRamp.enabled&&Z(!0)):(qt="There was an error preparing your transaction",console.error(de)),ne(qt),K(new be(new it(qt,Pe.E32603_DEFAULT_INTERNAL_ERROR.eipCode)))})},[r]);let $o=Dp(J),Oi=$o==="SEND"?`Send ${Rt}`:"Review transaction",$t={modalTitle:x.header||x.modalTitle||Oi,buttonText:x.buttonText||"Submit"},Vt=()=>{X||(L?_(L):P(F||new be(new it("The user rejected the request",Pe.E4001_USER_REJECTED_REQUEST.eipCode))),n({shouldCallAuthOnSuccess:!1}))};return g&&(g.current=Vt),G===void 0&&Tr?Cr(ds,{children:[me(T,{title:$t.modalTitle,onClose:Vt}),me(S,{}),me($p,{children:me(ir,{})}),me(W,{})]}):U!==null?me(Hp,{txn:J,onClose:Vt,receipt:U,transactionInfo:x.transactionInfo,tokenPrice:G,tokenSymbol:Rt}):Cr(ds,{children:[me(T,{title:$t.modalTitle,onClose:Vt}),Cr($p,{children:[Cr(Y1,{children:[me(V1,{txn:J,txnFamily:$o,uiOptions:x,tokenSymbol:Rt,tokenPrice:G}),Le?me(Ei,{from:Le.address,to:J.to,txn:J,transactionInfo:x.transactionInfo,gas:kt?yo(kt).toHexString():void 0,tokenPrice:G,tokenSymbol:Rt}):null]}),Cr(J1,{children:[me(q1,{children:I}),Le?me(Wp,{txn:J,wallet:Le,provider:zo}):null,Cr(j1,{children:[H&&me(q,{onClick:Li,children:"Add Funds"}),me(K1,{disabled:O||X,loading:!r||X,loadingText:X?"Submitting (may take a few minutes)...":"Loading...",onClick:async()=>{j(!0);let tt=await t();if(tt&&!X&&Le)try{let de=await Ti(tt,Le.address,r,J,zo);N(de);let Oe=await de.wait();k(_i(Oe)),ne("")}catch(de){let Oe="";de.reason==="processing response error"?(console.warn({transaction:J,error:de}),Oe="An error has occurred, please contact support."):Oe=de.reason||"An error has occurred, please try again.",ne(Oe),K(new be(new it(Oe,Pe.E32603_DEFAULT_INTERNAL_ERROR.eipCode)))}finally{j(!1)}},children:$t.buttonText})]})]})]}),me(ee,{})]})},$p=br.div`
1797
1822
  display: flex;
1798
1823
  height: 100%;
1799
1824
  flex-direction: column;
1800
1825
  justify-content: space-between;
1801
1826
  flex-grow: 1;
1802
- `,H1=vr.div`
1827
+ `,q1=br.div`
1803
1828
  line-height: 15px;
1804
1829
  font-size: 13px;
1805
1830
  color: var(--privy-color-error);
1806
1831
  width: 100%;
1807
1832
  margin-top: 1px;
1808
- `,G1=vr.div`
1833
+ `,j1=br.div`
1809
1834
  display: flex;
1810
1835
  direction: row;
1811
1836
  justify-content: space-between;
1812
1837
  align-items: center;
1813
1838
  gap: 8px;
1814
- `,z1=vr(q)`
1839
+ `,K1=br(q)`
1815
1840
  transition: color 350ms ease, background-color 350ms ease;
1816
- `,$1=vr.div`
1841
+ `,Y1=br.div`
1817
1842
  height: 100%;
1818
1843
  display: flex;
1819
1844
  flex-direction: column;
1820
1845
  justify-content: space-evenly;
1821
1846
  flex-grow: 1;
1822
- `,V1=vr.div`
1847
+ `,J1=br.div`
1823
1848
  display: flex;
1824
1849
  flex-direction: column;
1825
1850
  gap: 8px;
1826
- `;import{isHexString as q1}from"@ethersproject/bytes";import{toUtf8String as j1}from"@ethersproject/strings";import{useEffect as $p,useState as xi}from"react";import Xr,{css as K1}from"styled-components";import{jsx as Gp}from"react/jsx-runtime";var zp=({style:e,color:t,...o})=>Gp("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:Gp("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M4.5 12.75l6 6 9-13.5"})});import{Fragment as tv,jsx as _t,jsxs as Ti}from"react/jsx-runtime";var Y1=e=>{if(!q1(e))return e;try{return j1(e)}catch{return e}},Vp=()=>{let{authenticated:e}=V(),{initializeWalletProxy:t,closePrivyModal:o}=A(),{navigate:r,data:n,outerClickRef:i}=b(),[a,c]=xi(!0),[s,l]=xi(""),[y,m]=xi(),[v,h]=xi(null),w=v!==null;$p(()=>{e||r("LANDING")},[e]),$p(()=>{t(jo).then(N=>{c(!1),N||(l("An error has occurred, please try again."),m(new Ce(new nt(s,xe.E32603_DEFAULT_INTERNAL_ERROR.eipCode))))})},[]);let{message:_,confirmAndSignMessage:S,onSuccess:T,onFailure:C,uiOptions:D}=n.signMessage,I={title:D.title||"Sign message",description:D.description||"Signing this message will not cost you any fees.",buttonText:D.buttonText||"Sign and continue"},k=N=>{N?T(N):C(y||new Ce(new nt("The user rejected the request.",xe.E4001_USER_REJECTED_REQUEST.eipCode))),o({shouldCallAuthOnSuccess:!1}),h(null),l(""),m(void 0)};return i&&(i.current=()=>k(v)),Ti(tv,{children:[_t(x,{onClose:()=>k(v)}),_t(P,{}),Ti(J1,{children:[Ti("div",{children:[_t(wt,{title:I.title,description:I.description}),_t(Q1,{children:Y1(_)}),_t(Z1,{fail:!0,children:s})]}),_t(ev,{success:w,loading:a,disabled:w,onClick:async()=>{try{let N=await S();h(N),l(""),setTimeout(()=>{k(N)},Fe)}catch{l("An error has occurred, please try again."),m(new Ce(new nt(s,xe.E32603_DEFAULT_INTERNAL_ERROR.eipCode)))}},children:w?Ti(X1,{children:[_t(zp,{style:{height:"0.9rem",width:"0.9rem"},strokeWidth:2})," ",_t("span",{children:"Success"})]}):I.buttonText})]}),_t(W,{}),_t(O,{protectedByPrivy:!0})]})},J1=Xr.div`
1851
+ `;import{isHexString as Q1}from"@ethersproject/bytes";import{toUtf8String as Z1}from"@ethersproject/strings";import{useEffect as Kp,useState as Ai}from"react";import on,{css as X1}from"styled-components";import{jsx as qp}from"react/jsx-runtime";var jp=({style:e,color:t,...o})=>qp("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:qp("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M4.5 12.75l6 6 9-13.5"})});import{Fragment as av,jsx as _t,jsxs as ki}from"react/jsx-runtime";var ev=e=>{if(!Q1(e))return e;try{return Z1(e)}catch{return e}},Yp=()=>{let{authenticated:e}=V(),{initializeWalletProxy:t,closePrivyModal:o}=A(),{navigate:r,data:n,outerClickRef:i}=C(),[a,c]=Ai(!0),[l,s]=Ai(""),[y,h]=Ai(),[g,m]=Ai(null),w=g!==null;Kp(()=>{e||r("LANDING")},[e]),Kp(()=>{t(Yo).then(N=>{c(!1),N||(s("An error has occurred, please try again."),h(new be(new it(l,Pe.E32603_DEFAULT_INTERNAL_ERROR.eipCode))))})},[]);let{message:_,confirmAndSignMessage:P,onSuccess:x,onFailure:b,uiOptions:U}=n.signMessage,k={title:U.title||"Sign message",description:U.description||"Signing this message will not cost you any fees.",buttonText:U.buttonText||"Sign and continue"},L=N=>{N?x(N):b(y||new be(new it("The user rejected the request.",Pe.E4001_USER_REJECTED_REQUEST.eipCode))),o({shouldCallAuthOnSuccess:!1}),m(null),s(""),h(void 0)};return i&&(i.current=()=>L(g)),ki(av,{children:[_t(T,{onClose:()=>L(g)}),_t(S,{}),ki(tv,{children:[ki("div",{children:[_t(wt,{title:k.title,description:k.description}),_t(ov,{children:ev(_)}),_t(rv,{fail:!0,children:l})]}),_t(iv,{success:w,loading:a,disabled:w,onClick:async()=>{try{let N=await P();m(N),s(""),setTimeout(()=>{L(N)},He)}catch{s("An error has occurred, please try again."),h(new be(new it(l,Pe.E32603_DEFAULT_INTERNAL_ERROR.eipCode)))}},children:w?ki(nv,{children:[_t(jp,{style:{height:"0.9rem",width:"0.9rem"},strokeWidth:2})," ",_t("span",{children:"Success"})]}):k.buttonText})]}),_t(W,{}),_t(D,{protectedByPrivy:!0})]})},tv=on.div`
1827
1852
  display: flex;
1828
1853
  height: 100%;
1829
1854
  flex-direction: column;
1830
1855
  justify-content: space-between;
1831
1856
  flex-grow: 1;
1832
- `,Q1=Xr.div`
1857
+ `,ov=on.div`
1833
1858
  background-color: var(--privy-color-background-2);
1834
1859
  border-radius: var(--privy-border-radius-md);
1835
1860
  padding: 12px;
@@ -1845,7 +1870,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
1845
1870
  &::-webkit-scrollbar {
1846
1871
  display: none; /* Safari and Chrome */
1847
1872
  }
1848
- `,Z1=Xr.div`
1873
+ `,rv=on.div`
1849
1874
  line-height: 20px;
1850
1875
  height: 20px;
1851
1876
  font-size: 13px;
@@ -1854,20 +1879,20 @@ You will need this password to access your ${e} wallet on a new device. Please k
1854
1879
  justify-content: flex-start;
1855
1880
  width: 100%;
1856
1881
  margin-top: 4px;
1857
- `,X1=Xr.span`
1882
+ `,nv=on.span`
1858
1883
  display: flex;
1859
1884
  align-items: center;
1860
1885
  gap: 8px;
1861
- `,ev=Xr(q)`
1886
+ `,iv=on(q)`
1862
1887
  transition: color 350ms ease, background-color 350ms ease;
1863
1888
 
1864
- ${e=>e.success&&K1`
1889
+ ${e=>e.success&&X1`
1865
1890
  &&&& {
1866
1891
  background-color: var(--privy-color-success);
1867
1892
  color: #ffffff;
1868
1893
  }
1869
1894
  `}
1870
- `;import rv,{createGlobalStyle as nv}from"styled-components";var ov=`
1895
+ `;import lv,{createGlobalStyle as cv}from"styled-components";var sv=`
1871
1896
  *,
1872
1897
  ::before,
1873
1898
  ::after {
@@ -2097,7 +2122,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
2097
2122
  [hidden] {
2098
2123
  display: none;
2099
2124
  }
2100
- `,qp=ov;var jp=nv`
2125
+ `,Jp=sv;var Qp=cv`
2101
2126
  :root {
2102
2127
  // Borders
2103
2128
  --privy-border-radius-sm: 6px;
@@ -2128,10 +2153,10 @@ You will need this password to access your ${e} wallet on a new device. Please k
2128
2153
  --privy-height-modal-full: 620px;
2129
2154
  --privy-height-modal-compact: 480px;
2130
2155
  };
2131
- `,Kp=rv.div`
2156
+ `,Zp=lv.div`
2132
2157
  // css normalize only the privy application to avoid conflicts
2133
2158
  // with consuming application
2134
- ${qp}
2159
+ ${Jp}
2135
2160
 
2136
2161
  // Privy styles
2137
2162
  color: var(--privy-color-foreground-2);
@@ -2190,7 +2215,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
2190
2215
  opacity: 1;
2191
2216
  }
2192
2217
  }
2193
- `;import{jsx as Xe,jsxs as gv}from"react/jsx-runtime";var dv={["LANDING"]:Md,["AWAITING_PASSWORDLESS_CODE"]:Yl,["WALLET_EDUCATION"]:Cd,["AWAITING_CONNECTION"]:ic,["AWAITING_CONNECT_ONLY_CONNECTION"]:cc,["PHANTOM_INTERSTITIAL_SCREEN"]:Xd,["LOGIN_FAILED_SCREEN"]:$d,["AWAITING_OAUTH_SCREEN"]:Yd,["ALLOWLIST_REJECTION_SCREEN"]:zl,["INSTALL_METAMASK_SCREEN"]:Td,["INSTALL_PHANTOM_SCREEN"]:_d,["INSTALL_COINBASE_WALLET_SCREEN"]:Ed,["LINK_EMAIL_SCREEN"]:Dd,["LINK_PHONE_SCREEN"]:Ud,["LINK_WALLET_SCREEN"]:Bd,["CONNECT_ONLY_LANDING_SCREEN"]:rc,["CONNECT_ONLY_AUTHENTICATED_SCREEN"]:ec,["EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN"]:Qc,["EMBEDDED_WALLET_CREATED_SCREEN"]:vc,["EMBEDDED_WALLET_CONNECTING_SCREEN"]:yc,["EMBEDDED_WALLET_RECOVERY_SCREEN"]:ed,["EMBEDDED_WALLET_KEY_EXPORT_SCREEN"]:xc,["EMBEDDED_WALLET_SIGN_REQUEST_SCREEN"]:Vp,["EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN"]:Hp,["FIAT_ON_RAMP_PROMPT_SCREEN"]:ad,["FIAT_ON_RAMP_STATUS_SCREEN"]:ld,["EMBEDDED_WALLET_PASSWORD_UPDATE_SPLASH_SCREEN"]:Xc,["EMBEDDED_WALLET_PASSWORD_UPDATE_SCREEN"]:Zc},pv={["AWAITING_CONNECTION"]:"compact",["AWAITING_CONNECT_ONLY_CONNECTION"]:"compact",["CONNECT_ONLY_LANDING_SCREEN"]:"compact",["CONNECT_ONLY_AUTHENTICATED_SCREEN"]:"compact",["AWAITING_OAUTH_SCREEN"]:"compact",["ALLOWLIST_REJECTION_SCREEN"]:"compact",["WALLET_EDUCATION"]:"full",["EMBEDDED_WALLET_SIGN_REQUEST_SCREEN"]:"full",["EMBEDDED_WALLET_RECOVERY_SCREEN"]:"compact"},uv=(e,t,o)=>{if(e==="LANDING"&&t)return"compact";let r=pv[e];return r||(o?"medium":"full")},mv=()=>{let{ready:e}=V(),{isLinking:t}=A(),{ready:o,currentScreen:r,app:n}=b(),i=!!n?.loginMethods.wallet,a=!!(n?.loginMethods.email||n?.loginMethods.sms),s=uv(r,i!==a,t);if((!e||!o)&&r!=="AWAITING_OAUTH_SCREEN")return gv(Yp,{"data-height":s,children:[Xe(x,{}),Xe(P,{}),Xe(yv,{children:Xe(Po,{})}),Xe(W,{}),Xe(ee,{})]});let l=dv[r];return l?Xe(Yp,{"data-height":s,children:Xe(l,{})}):null},Qp=()=>{let{closePrivyModal:e}=A(),{app:t,outerClickRef:o}=b(),r=()=>{if(o?.current){let{closeModal:c}=o.current()||{closeModal:!0};c&&(e(),o.current=null)}else return e()},n=lv(c=>{c.key==="Escape"&&t?.render.inDialog&&r()},[t?.render.inDialog]);Jp(()=>(document.addEventListener("keydown",n,!1),()=>{document.removeEventListener("keydown",n,!1)}),[n]);let i=Xe(Kp,{onClick:c=>c.stopPropagation(),children:Xe(mv,{})}),a=t?.render.inDialog?Xe(hv,{id:"privy-dialog",onClick:()=>r(),children:i}):i;return cv.createPortal(a,t?.render.inParentNodeId&&document.getElementById(t.render.inParentNodeId)||document.body)},fv=({children:e,...t})=>{let o=sv(null);return Jp(()=>{document?.activeElement?.blur();let r=document?.getElementById("root")||document?.getElementById("__next");if(r)return r.setAttribute("inert","true"),iv(o?.current),()=>{let n=document?.getElementById("root")||document?.getElementById("__next");n&&(n.removeAttribute("inert"),av())}},[t.open,t.onClose]),Xe("dialog",{open:!0,role:"dialog",...t,ref:o,children:e})},hv=ss(fv)`
2218
+ `;import{jsx as et,jsxs as Ev}from"react/jsx-runtime";var hv={["LANDING"]:Ud,["AWAITING_PASSWORDLESS_CODE"]:Xl,["WALLET_EDUCATION"]:Td,["AWAITING_CONNECTION"]:cc,["AWAITING_CONNECT_ONLY_CONNECTION"]:mc,["PHANTOM_INTERSTITIAL_SCREEN"]:rp,["LOGIN_FAILED_SCREEN"]:Kd,["AWAITING_OAUTH_SCREEN"]:Xd,["ALLOWLIST_REJECTION_SCREEN"]:jl,["INSTALL_METAMASK_SCREEN"]:Ad,["INSTALL_PHANTOM_SCREEN"]:Rd,["INSTALL_COINBASE_WALLET_SCREEN"]:_d,["LINK_EMAIL_SCREEN"]:Hd,["LINK_PHONE_SCREEN"]:Gd,["LINK_WALLET_SCREEN"]:$d,["CONNECT_ONLY_LANDING_SCREEN"]:sc,["CONNECT_ONLY_AUTHENTICATED_SCREEN"]:nc,["EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN"]:td,["EMBEDDED_WALLET_CREATED_SCREEN"]:Ec,["EMBEDDED_WALLET_CONNECTING_SCREEN"]:Cc,["EMBEDDED_WALLET_RECOVERY_SCREEN"]:nd,["EMBEDDED_WALLET_KEY_EXPORT_SCREEN"]:Sc,["EMBEDDED_WALLET_SIGN_REQUEST_SCREEN"]:Yp,["EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN"]:Vp,["FIAT_ON_RAMP_PROMPT_SCREEN"]:dd,["FIAT_ON_RAMP_STATUS_SCREEN"]:ud,["EMBEDDED_WALLET_PASSWORD_UPDATE_SPLASH_SCREEN"]:rd,["EMBEDDED_WALLET_PASSWORD_UPDATE_SCREEN"]:od},yv={["AWAITING_CONNECTION"]:"compact",["AWAITING_CONNECT_ONLY_CONNECTION"]:"compact",["CONNECT_ONLY_LANDING_SCREEN"]:"compact",["CONNECT_ONLY_AUTHENTICATED_SCREEN"]:"compact",["AWAITING_OAUTH_SCREEN"]:"compact",["ALLOWLIST_REJECTION_SCREEN"]:"compact",["WALLET_EDUCATION"]:"full",["EMBEDDED_WALLET_SIGN_REQUEST_SCREEN"]:"full",["EMBEDDED_WALLET_RECOVERY_SCREEN"]:"compact"},gv=(e,t,o)=>{if(e==="LANDING"&&t)return"compact";let r=yv[e];return r||(o?"medium":"full")},vv=()=>{let{ready:e}=V(),{isLinking:t}=A(),{ready:o,currentScreen:r,app:n}=C(),i=!!n?.loginMethods.wallet,a=!!(n?.loginMethods.email||n?.loginMethods.sms),l=gv(r,i!==a,t);if((!e||!o)&&r!=="AWAITING_OAUTH_SCREEN")return Ev(Xp,{"data-height":l,children:[et(T,{}),et(S,{}),et(bv,{children:et(_o,{})}),et(W,{}),et(ee,{})]});let s=hv[r];return s?et(Xp,{"data-height":l,children:et(s,{})}):null},tu=()=>{let{closePrivyModal:e}=A(),{app:t,outerClickRef:o}=C(),r=()=>{if(o?.current){let{closeModal:c}=o.current()||{closeModal:!0};c&&(e(),o.current=null)}else return e()},n=mv(c=>{c.key==="Escape"&&t?.render.inDialog&&r()},[t?.render.inDialog]);eu(()=>(document.addEventListener("keydown",n,!1),()=>{document.removeEventListener("keydown",n,!1)}),[n]);let i=et(Zp,{onClick:c=>c.stopPropagation(),children:et(vv,{})}),a=t?.render.inDialog?et(Cv,{id:"privy-dialog",onClick:()=>r(),children:i}):i;return fv.createPortal(a,t?.render.inParentNodeId&&document.getElementById(t.render.inParentNodeId)||document.body)},wv=({children:e,...t})=>{let o=uv(null);return eu(()=>{document?.activeElement?.blur();let r=document?.getElementById("root")||document?.getElementById("__next");if(r)return r.setAttribute("inert","true"),dv(o?.current),()=>{let n=document?.getElementById("root")||document?.getElementById("__next");n&&(n.removeAttribute("inert"),pv())}},[t.open,t.onClose]),et("dialog",{open:!0,role:"dialog",...t,ref:o,children:e})},Cv=ps(wv)`
2194
2219
  position: fixed;
2195
2220
  top: 0;
2196
2221
  left: 0;
@@ -2205,7 +2230,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
2205
2230
  z-index: 999999;
2206
2231
  -webkit-backdrop-filter: blur(3px);
2207
2232
  backdrop-filter: blur(3px);
2208
- `,Yp=ss.div`
2233
+ `,Xp=ps.div`
2209
2234
  display: flex;
2210
2235
  flex-direction: column;
2211
2236
  text-align: center;
@@ -2242,10 +2267,10 @@ You will need this password to access your ${e} wallet on a new device. Please k
2242
2267
  min-height: 0;
2243
2268
  }
2244
2269
  }
2245
- `,yv=ss.div`
2270
+ `,bv=ps.div`
2246
2271
  display: flex;
2247
2272
  flex-direction: column;
2248
2273
  align-items: center;
2249
2274
  justify-content: center;
2250
2275
  height: 100%;
2251
- `;import{useEffect as vv}from"react";import{Fragment as Cv,jsx as bv}from"react/jsx-runtime";var wv=({onLoad:e})=>{let t=window;return vv(()=>{if(document.getElementById("cf-script")!==null||t.turnstile)return;t.onloadTurnstileCallback=e;let o=document.createElement("script");o.setAttribute("src","https://challenges.cloudflare.com/turnstile/v0/api.js?onload=onloadTurnstileCallback&render=explicit"),o.setAttribute("id","cf-script"),o.setAttribute("async","true"),document.body.appendChild(o)},[]),bv(Cv,{})},Zp=wv;var Xp={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 eu={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 tu={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 ou={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 ru={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 nu={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 iu={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 au={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 su={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 lu={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 cu={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 du={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 pu={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 Pi={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 uu={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 mu={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 fu={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 _i=[Xp,eu,cu,fu,Pi,uu,mu,Jr,Qr,iu,au,su,lu,ru,nu,du,pu,tu,ou],fA=new Set(_i.map(e=>e.id));import Uo from"tinycolor2";var hu="#FFFFFF",Ev="#000000",xv=hu,Tv="#1E1E1D";function Pv(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 wo(e,t){let o=Math.max(0,Math.min(1,e.toHsl().l+t));return Uo({...e.toHsl(),l:o})}function yu({backgroundTheme:e,accentHex:t,successHex:o="#51BA81",warnHex:r="#FFB74D",errorHex:n="#EC6351",whiteHex:i=hu,blackHex:a=Ev}){let c;switch(e){case"light":c=xv;break;case"dark":c=Tv;break;default:c=e;break}let s=Uo(c),l=Uo(t),y=Uo(o),m=Uo(r),v=Uo(n),h=Pv(s.getLuminance()),w=wo(s,h==="light"?-.04:.11),_=wo(s,h==="light"?-.88:.87),S=wo(s,h==="light"?-.77:.75),T=wo(s,h==="light"?-.43:.45).desaturate(h==="light"?60:20),C=wo(s,h==="light"?-.08:.25).desaturate(h==="light"?60:20),D=wo(l,.15),I=wo(l,-.06),k=Uo(l.getLuminance()>.5?a:i),N=wo(y,-.16);return{colorScheme:h,background:s.toHslString(),background2:w.toHslString(),foreground:_.toHslString(),foreground2:S.toHslString(),foreground3:T.toHslString(),foreground4:C.toHslString(),accent:l.toHslString(),accentLight:D.toHslString(),accentDark:I.toHslString(),foregroundAccent:k.toHslString(),success:y.toHslString(),successDark:N.toHslString(),error:v.toHslString(),warn:m.toHslString()}}var Gt={appearance:{theme:"light",accentColor:"#676FFF"},walletConnectCloudProjectId:Vs,rpcConfig:{rpcUrls:{},rpcTimeouts:{}},captchaEnabled:!1,_render:{inDialog:!0,inParentNodeId:null},fiatOnRamp:{useSandbox:!1}};function Si(e,t){let o=["google","twitter","discord","tiktok","linkedin","github","apple"],r=t?.loginMethods?.filter(I=>o.includes(I)),n=r?.slice(0,5),i,a,c,s,l,y,m,v,h,w;if(t?.loginMethods?(i=t.loginMethods.includes("email"),a=t.loginMethods.includes("sms"),c=t.loginMethods.includes("wallet"),s=n?.includes("google"),l=n?.includes("twitter"),y=n?.includes("discord"),m=n?.includes("tiktok"),h=n?.includes("github"),v=n?.includes("linkedin"),w=n?.includes("apple")):(i=e.emailAuth,a=e.smsAuth,c=e.walletAuth,s=e.googleOAuth,l=e.twitterOAuth,y=e.discordOAuth,h=e.githubOAuth,m=e.tiktokOAuth,v=e.linkedinOAuth,w=e.appleOAuth),i&&a&&(console.warn("Enabling both email and SMS passwordless is not currently supported. Disabling SMS."),a=!1),!i&&!a&&[s,l,y,h,m,v,w].some(I=>I))throw new Error("To enable social logins you must also enable either SMS or Email login");if(![i,a,c,s,l,y,h,m,v,w].some(I=>I))throw new Error("You must enable at least one login method");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{chains:_,defaultChain:S}=_v(t?.additionalChains,t?.supportedChains,t?.defaultChain),T=!!t?.defaultChain||!!t?.supportedChains;r&&r.length>5&&console.warn("Max number of social logins allowed is 5. Any more have been removed.");let C=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:yu({backgroundTheme:t?.appearance?.theme??Gt.appearance.theme,accentHex:t?.appearance?.accentColor??e.accentColor??Gt.appearance.accentColor}),showWalletLoginFirst:t?.appearance?.showWalletLoginFirst??e.showWalletLoginFirst},loginMethods:{wallet:c,email:i,sms:a,google:s,twitter:l,discord:y,github:h,tiktok:m,linkedin:v,apple:w},legal:{termsAndConditionsUrl:t?.legal?.termsAndConditionsUrl??e.termsAndConditionsUrl,privacyPolicyUrl:t?.legal?.privacyPolicyUrl??e.privacyPolicyUrl},walletConnectCloudProjectId:t?.walletConnectCloudProjectId??e.walletConnectCloudProjectId??Gt.walletConnectCloudProjectId,rpcConfig:{rpcUrls:t?.rpcConfig?.rpcUrls??Gt.rpcConfig.rpcUrls,rpcTimeouts:t?.rpcConfig?.rpcTimeouts??Gt.rpcConfig.rpcTimeouts},chains:_,defaultChain:S,shouldSwitchChainOnConnect:T,captchaEnabled:e.captchaEnabled??Gt.captchaEnabled,embeddedWallets:{...e.embeddedWalletConfig,...C?{createOnLogin:"all-users",requireUserPasswordOnCreate:!1,noPromptOnSignature:!0}:{},waitForTransactionConfirmation:!0,...t?.embeddedWallets},customAuth:C?{enabled:!0,...t.customAuth}:void 0,fiatOnRamp:{enabled:e.fiatOnRampEnabled,useSandbox:t?.fiatOnRamp?.useSandbox??Gt.fiatOnRamp.useSandbox},loginConfig:{twitterOAuthOnMobileEnabled:e.twitterOAuthOnMobileEnabled??!1},render:{inDialog:t?._render?.inDialog??Gt._render.inDialog,inParentNodeId:t?._render?.inParentNodeId??Gt._render.inParentNodeId}}}function gu(e,t){if(!e)return{legacyCreateEmbeddedWalletFlag:t};let{appearance:o,additionalChains:r,supportedChains:n,...i}=e;return{...i,...r?{additionalChains:r.map(c=>c.id)}:void 0,...n?{supportedChains:n.map(c=>c.id)}:void 0,...o?{...o,...o.logo&&typeof o.logo?{logo:"component"}:void 0}:void 0,legacyCreateEmbeddedWalletFlag:t}}function _v(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}else r=_i.concat(e??[]);let n=t?r[0]:Pi,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 Rv,useEffect as Iv}from"react";import{createContext as Sv,useContext as Av,useEffect as kv}from"react";var vu={login:{onComplete:[],onError:[]},logout:{onSuccess:[]},connectWallet:{onSuccess:[],onError:[]},createWallet:{onSuccess:[],onError:[]},configureMfa:{onMfaRequired:[],onError:[]}},ls=Sv(void 0),wu=()=>Av(ls);function St(e,t){if(!t)return;let r=wu().current[e];return kv(()=>{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 Y(e,t,o,...r){for(let n of e.current[t][o])n(...r)}function Cu(){let e=wu();return(t,o,...r)=>Y(e,t,o,...r)}var Ai=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;default:throw new Error(`invalid wallet event type ${t}`)}}};import{jsx as Dv}from"react/jsx-runtime";var Wv=function(e){return()=>`id-${e++}`}(0);function Nv(e){return typeof e.event=="string"&&/^privy:.+/.test(e.event)}function wr(e){return e.error!==void 0}var Bo=new Ai,cs=new Map,Mv=(e,t)=>typeof t=="bigint"?t.toString():t,Lv=(e,t)=>`${e}${JSON.stringify(t,Mv)}`;function Fo(e,t,o){let r=o.contentWindow;if(!r)throw new Error("iframe not initialized");let n=Lv(e,t);if(e==="privy:wallet:create"){let a=cs.get(n);if(a)return a}let i=new Promise((a,c)=>{let s=Wv();Bo.enqueue(s,{resolve:a,reject:c}),r.postMessage({id:s,event:e,data:t},"*")}).finally(()=>{cs.delete(n)});return cs.set(n,i),i}function Ov(e){switch(e.event){case"privy:iframe:ready":let t=Bo.dequeue(e.event,e.id);return wr(e)?t.reject(new bt(e.error.type,e.error.message)):t.resolve(e.data);case"privy:wallet:create":let o=Bo.dequeue(e.event,e.id);return wr(e)?o.reject(new bt(e.error.type,e.error.message)):o.resolve(e.data);case"privy:wallet:connect":let r=Bo.dequeue(e.event,e.id);return wr(e)?r.reject(new bt(e.error.type,e.error.message)):r.resolve(e.data);case"privy:wallet:recover":let n=Bo.dequeue(e.event,e.id);return wr(e)?n.reject(new bt(e.error.type,e.error.message)):n.resolve(e.data);case"privy:wallet:rpc":let i=Bo.dequeue(e.event,e.id);return wr(e)?i.reject(new bt(e.error.type,e.error.message)):i.resolve(e.data);case"privy:wallet:set-recovery-password":let a=Bo.dequeue(e.event,e.id);return wr(e)?a.reject(new bt(e.error.type,e.error.message)):a.resolve(e.data);default:console.warn("Unsupported wallet proxy method:",e)}}function bu(e){let t=Rv(null),o=Cu();return Iv(()=>{let r=t.current;if(!r)return;function n(l){l&&l.origin===e.origin&&Nv(l.data)&&Ov(l.data)}let i={create(l){return Fo("privy:wallet:create",l,r)},connect(l){return Fo("privy:wallet:connect",l,r)},recover(l){return Fo("privy:wallet:recover",l,r)},async rpc(l){if(e.mfaMethods&&e.mfaMethods.length>0){o("configureMfa","onMfaRequired",e.mfaMethods);let y=await new Promise((m,v)=>{e.mfaPromise.current={resolve:m,reject:v},setTimeout(()=>{v(new bt("mfa_timeout","Timed out waiting for MFA code"))},3e5)});return Fo("privy:wallet:rpc",{...l,...y},r)}return Fo("privy:wallet:rpc",l,r)},setRecoveryPassword(l){return Fo("privy:wallet:set-recovery-password",l,r)}};window.addEventListener("message",n);let a=()=>e.onLoad(i),c=(...l)=>{console.warn("Privy iframe failed to load: ",...l),e.onLoadFailed()},s=new AbortController;return rl(()=>Fo("privy:iframe:ready",{},r),{abortSignal:s.signal}).then(a,c),()=>{window.removeEventListener("message",n),s.abort()}},[t.current,e.mfaMethods]),Dv("iframe",{ref:t,width:"0",height:"0",style:{display:"none",height:"0px",width:"0px"},src:hn(e.origin,`/apps/${e.appId}/embedded-wallets`,{caid:e.clientAnalyticsId})})}var Cr=class{constructor(t,o){this.meta={action:t,phoneNumber:o}}async init(){if(!this.meta.action)throw new g("action required");if(!this.api)throw new g("Auth flow has no API instance");if(this.meta.action==="enroll"&&!this.meta.phoneNumber)throw new g("phone number must be set when initialzing authentication.");try{let t=Hs();await this.api.post(t,{action:this.meta.action,phoneNumber:this.meta.phoneNumber})}catch(t){throw Q(t)}}async authenticate(){if(!this.meta.action)throw new g("action required");if(!this.api)throw new g("Mfa flow has no API instance");if(!this.meta.smsCode)throw new g("sms code must be set prior to calling authenticate.");if(this.meta.action==="enroll"&&!this.meta.phoneNumber)throw new g("phone number must be set prior to calling authenticate.");try{let t=Gs(),o=await this.api.post(t,{action:this.meta.action,phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode});return ot(o)}catch(t){throw Q(t)}}};import{jsx as Co,jsxs as Eu}from"react/jsx-runtime";function Bv(e){return typeof e=="string"&&e.length===25}var en;function Wt(){if(!en){let e=$.get(qo);return Promise.resolve(e||null)}return en.getAccessToken()}var xu,cl=(e,t)=>xu(e,t),Tu,dl=(e,t)=>Tu(e,t),Pu,pl=()=>Pu(),Hv=()=>{let t=new URLSearchParams(window.location.search).get("privy_token");if(!t)return;$.put(Pr,t);let o=new URL(window.location.href);o.searchParams.delete("privy_token"),window.history.pushState({},"",o)},Gv=({config:e,...t})=>{if(!Bv(t.appId))throw new g("Cannot initialize the Privy provider with an invalid Privy app ID");en||(en=new Mr({appId:t.appId,apiUrl:t.apiUrl||dn}));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."),Co(zv,{...t,config:o,client:en})},zv=e=>{let t=e.client,[o,r]=te(!1),[n,i]=te(!1),[a,c]=te(!1),[s,l]=te(null),[y,m]=te(!1),[v,h]=te([]),w=ps(v),[_,S]=te(!1),[T,C]=te(null),[D,I]=te(!1),[k,N]=te({status:"disconnected",connectError:null,connector:null,connectRetry:E}),[U,ae]=te(null),[F,K]=te(null),[H,Z]=te({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}),[L,We]=te(()=>{let d=gu(e.config,e.createPrivyWalletOnLogin);return t.createAnalyticsEvent("sdk_initialize",d),Si(H,e.config)}),[X,j]=te(!0),[J,fe]=te({}),[G,kt]=te(null),[br,Rt]=te(null),[Ne,Ri]=te(!1),[Ho,Go]=te(),[Ii,zt]=te(),[$t,et]=te(),[de,Me]=te(!1),Vt=ps(null),z=ps(vu),Ae=d=>{d&&C(d),r(!0),t.createAnalyticsEvent("modal_open",{initialScreen:d})},tn=d=>{L.embeddedWallets.createOnLogin!=="off"&&j(!0),Ae(d)};At(()=>{if(!F||!s){t.connectors?.removeEmbeddedWalletConnector();return}let d=s?.linkedAccounts.filter(p=>p.type==="wallet"&&p.walletClient==="privy");if(d&&d.length>0){let p=d[0].address;t.connectors?.addEmbeddedWalletConnector(F,p,L.defaultChain)}},[F,s]),At(()=>{F&&br?.(F)},[F]),At(()=>{(async()=>{if(!L.customAuth?.enabled)return;j(!0);let{getCustomAccessToken:p,isLoading:u}=L.customAuth;if(!(!n||u))try{let f=await p();if(!f){await Er.logout();return}if(a)return;t.startAuthFlow(new $o(f));let{user:M,isNewUser:he}=await t.authenticate();M||await Er.logout(),l(M||null),S(he||!1),c(!0),Me(!0)}catch(f){console.warn(f),a&&await Er.logout()}})()},[L.customAuth?.enabled,L.customAuth?.getCustomAccessToken,L.customAuth?.isLoading,n,a]),At(()=>{de&&F&&s&&Yt(s,e.config?.embeddedWallets?.createOnLogin)&&(Me(!1),hs(s,jo).catch(console.error))},[de&&F&&s]),At(()=>{async function d(){let p=await t.getServerConfig();Z(p);let u=Si(p,e.config);We(u),p.customApiUrl&&t.updateApiUrl(p.customApiUrl),t.initializeConnectorManager(u.walletConnectCloudProjectId,u.rpcConfig,u.chains,u.defaultChain),t.connectors?.initialize();let f=_u();Hv();let M=await t.getAuthenticatedUser();e.config?.customAuth?.enabled||(c(!!M),M&&Y(z,"login","onComplete",M,!1,!0),l(M)),f||(i(!0),G?.()),f&&M&&m(!0),Su()}n||d()},[t,G,n]),At(()=>{let d=Si(H,e.config);We(d)},[e.config]);let _u=()=>{let d=new URLSearchParams(window.location.search),p=d.get("privy_oauth_code"),u=d.get("privy_oauth_state"),f=d.get("privy_oauth_provider");return p&&u&&f?(t.startAuthFlow(new Kt(f,p,u)),tn("AWAITING_OAUTH_SCREEN"),fe({finishOauthFlow:{onComplete:()=>{i(!0),G?.()}}}),!0):!1},Wi=async(d,p,u)=>{let f=await t.connectors?.createWalletConnector(d,p)||null;us(f,u)};async function us(d,p){if(!d)return N({status:"disconnected",connectError:new B("Unable to connect to wallet."),connector:null,connectRetry:E}),p?.(null);N({connector:d,status:"connecting",connectError:null,connectRetry:()=>us(d,p)});try{let u=await d.connect({showPrompt:!0});if(L.shouldSwitchChainOnConnect&&!L.chains.find(f=>f.id===Number(u?.chainId))){N(f=>({...f,connector:d,status:"switching_to_supported_chain",connectError:null,connectRetry:E}));try{await u?.switchChain(L.defaultChain.id),u&&(u.chainId=Ko(To(L.defaultChain.id)))}catch{console.warn(`Unable to switch to default chain: ${L.defaultChain.id}`)}}return N(f=>({...f,status:"connected",connectError:null,connectRetry:E})),u&&!D&&Y(z,"connectWallet","onSuccess",u),p?.(u)}catch(u){return u instanceof tt?(console.warn(u.cause?u.cause:u.message),D||Y(z,"connectWallet","onError",u.privyErrorCode||"generic_connect_wallet_error")):(console.warn(u),D||Y(z,"connectWallet","onError","unknown_connect_wallet_error")),N(f=>({...f,status:"disconnected",connectError:u})),p?.(null)}}let Ni=d=>{d!==null&&t.startAuthFlow(new Eo(d))},Su=()=>{let d=new URLSearchParams(window.location.search),p=d.get("privy_connector"),u=d.get("privy_wallet_client");if(!p||!u)return;if(u==="phantom"&&!je()&&tn("LOGIN_FAILED_SCREEN"),!t.connectors)throw new g("Connector not initialized");Ae("AWAITING_CONNECTION");let f=new URL(window.location.href);f.searchParams.delete("privy_connector"),f.searchParams.delete("privy_wallet_client"),window.history.pushState({},"",f),Wi(p,u,Ni)};At(()=>{n&&a&&s===null&&t.getAuthenticatedUser().then(l)},[n,a,s,t]);let ms=()=>{m(!0),Ae("LINK_WALLET_SCREEN")},Au=d=>{if(!a||!s)return!1;for(let p of s.linkedAccounts)if(p.type==="wallet"&&p.address===d.address)return!0;return!1},ku=async d=>{if(!t.connectors)throw new g("Connector not initialized");let p=t.connectors.findWalletConnector(d.connectorType,d.walletClientType)||null;N(u=>({...u,connector:p,status:"connected",connectError:null,connectRetry:E})),Ni(d),tn("AWAITING_CONNECTION")},Ru=async(d,p)=>{if(!t.connectors)throw new g("Connector not initialized");await Wi(d,p,Ni)},fs=async(d,p)=>{if(!L.fiatOnRamp.enabled)throw new g("Fiat on-ramp is not enabled");if(!p||!p.provider||p.provider==="moonpay"){let{signedUrl:u,externalTransactionId:f}=await nd(t,d,p?.config??{},L.appearance.palette,L.fiatOnRamp.useSandbox);return{signedUrl:u,externalTransactionId:f}}else throw new g("Unsupported fund provider. Currently supported option is `moonpay`.")},on=()=>{h(d=>{let p=t.connectors?.wallets.map(u=>({...u,linked:Au(u),loginOrLink:async()=>{if(!await u.isConnected())throw new g("Wallet is not connected");if(u.connectorType==="embedded"&&u.walletClientType==="privy")throw new g("Cannot link or login with embedded wallet");ku(u)},fund:async f=>{let{signedUrl:M,externalTransactionId:he}=await fs(u.address,f);fe({fiatOnRampPrompt:{signedUrl:M},fiatOnRampStatus:{externalTransactionId:he}}),Ae("FIAT_ON_RAMP_PROMPT_SCREEN")},unlink:async()=>{if(!a)throw new g("User is not authenticated.");if(u.connectorType==="embedded"&&u.walletClientType==="privy")throw new g("Cannot unlink an embedded wallet");let f=await t.unlinkWallet(u.address);l(f)}}))||[];return gn(d,p)?d:p})};At(()=>{on()},[s?.linkedAccounts,a,n]),At(()=>{if(n){if(!t.connectors)throw new g("Connector not initialized");on(),t.connectors.on("walletsUpdated",on)}},[n]);let Iu=()=>{Ae(a?"CONNECT_ONLY_AUTHENTICATED_SCREEN":"CONNECT_ONLY_LANDING_SCREEN")};At(()=>{if(!v[0])return;let d=v[0],p=w.current.find(f=>f.address===d.address),u=s?.linkedAccounts.find(f=>f.type==="wallet"&&f.address===d.address);if(!p&&u){let f=Object.assign({},s);f.wallet=u&&{address:u.address,chainType:u.chainType,chainId:u.chainId,walletClient:u.walletClient,walletClientType:u.walletClientType,connectorType:u.connectorType},l(f)}w.current=v},[v]);let hs=async(d,p)=>{if(oe(d))throw Y(z,"createWallet","onError","embedded_wallet_already_exists"),new Error("Only one Privy wallet per user is currently allowed");let[f,M]=await Promise.all([Le.initializeWalletProxy(p),Wt()]);if(!f&&e.config?.customAuth?.enabled)throw Y(z,"createWallet","onError","unknown_embedded_wallet_error"),new Error("Failed to connect to wallet proxy");if(!f||!M||e.config?.embeddedWallets?.requireUserPasswordOnCreate)return new Promise((he,Ee)=>{j(!0),fe({createWallet:{onSuccess:Ve=>{Y(z,"createWallet","onSuccess",Ve),he(Ve)},onFailure:Ve=>{Y(z,"createWallet","onError","unknown_embedded_wallet_error"),Ee(Ve)},callAuthOnSuccessOnClose:!1}}),Ae("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")});{await f.create({accessToken:M});let he=await Le.refreshUser(),Ee=oe(he);if(!Ee)throw Y(z,"createWallet","onError","unknown_embedded_wallet_error"),new Error("Failed to create wallet");return Y(z,"createWallet","onSuccess",Ee),Ee}},Wu=d=>{if(!L.chains.map(p=>p.id).includes(d))throw new B(`Chain ID ${d} is not supported. It must be added to the config.supportedChains property of the PrivyProvider.`,"unsupported_chain_id")},ys=(d,p,u)=>new Promise(async(f,M)=>{if(!a||!s){M(new Error("User must be authenticated before signing with a Privy wallet"));return}let he=oe(s);if(!he){M(new Error("Must have a Privy wallet before signing"));return}j(!0);let Ee=t.connectors?.findWalletConnector("embedded","privy")?.proxyProvider,qt=d.chainId?Number(d.chainId):Ee.chainId;Wu(qt);let Ve=Object.assign({},d,{chainId:qt}),xr=async()=>{let jt=await Wt();if(!jt||!F){M(new Error("Must have valid access token and Privy wallet to send transaction"));return}try{if(!await Le.recoverEmbeddedWallet()){M(new Error("Unable to connect to wallet"));return}let gs=new Uv(rt(Ve.chainId,L.chains,L.rpcConfig)),Mu=await vi(he.address,Ve,gs),Lu=await wi(jt,he.address,F,Mu,gs);f(Lu)}catch(rn){M(rn)}};if(L.embeddedWallets.noPromptOnSignature)p&&console.warn("uiOptions defined with `noPromptOnSignature` set to true in app config"),xr();else{let jt={transactionRequest:Ve,onSuccess:f,onFailure:M,uiOptions:p||{},fundWalletConfig:u},rn={onCompleteNavigateTo:"EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN",onFailure:M};fe({connectWallet:rn,sendTransaction:jt}),Ae("EMBEDDED_WALLET_CONNECTING_SCREEN")}}),Er={ready:n,authenticated:a,user:s,walletConnectors:t.connectors||null,connectWallet:Iu,linkWallet:ms,linkEmail:()=>{if(s?.email)throw new g("User already has an email linked to their account.");m(!0),Ae("LINK_EMAIL_SCREEN")},linkPhone:()=>{if(s?.phone)throw new g("User already has a phone number linked to their account.");m(!0),Ae("LINK_PHONE_SCREEN")},linkGoogle:async()=>{if(s?.google)throw new g("User already has a Google account linked to their account.");await Le.initLoginWithOAuth("google")},linkTwitter:async()=>{if(s?.twitter)throw new g("User already has a Twitter account linked to their account.");await Le.initLoginWithOAuth("twitter")},linkDiscord:async()=>{if(s?.discord)throw new g("User already has a Discord account linked to their account.");await Le.initLoginWithOAuth("discord")},linkGithub:async()=>{if(s?.github)throw new g("User already has a Github account linked to their account.");await Le.initLoginWithOAuth("github")},linkTiktok:async()=>{if(s?.tiktok)throw new g("User already has a Tiktok account linked to their account.");await Le.initLoginWithOAuth("tiktok")},linkLinkedIn:async()=>{if(s?.linkedin)throw new g("User already has a LinkedIn account linked to their account.");await Le.initLoginWithOAuth("linkedin")},linkApple:async()=>{await Le.initLoginWithOAuth("apple")},login:async()=>{if(n||(await new Promise(d=>{kt(()=>d)}),kt(null)),a){console.warn("Attempted to log in, but user is already logged in. Use a `link` helper instead.");return}I(!0),tn()},logout:async()=>{await t.logout(),l(null),c(!1),C(null),Y(z,"logout","onSuccess"),m(!1),r(!1),$.del(_r)},getAccessToken:()=>t.getAccessToken(),getEthereumProvider:()=>{if(!s||!s.wallet)return new re;let d=v.find(u=>s.wallet&&u.address===s.wallet.address),p=t.connectors?.walletConnectors.find(u=>u.wallets.find(f=>f.address===d?.address));return!d||!p?new re:p.proxyProvider},getEthersProvider:()=>{if(!s||!s.wallet)return new ds(new ht(new re));let d=v.find(u=>s.wallet&&u.address===s.wallet.address),p=t.connectors?.walletConnectors.find(u=>u.wallets.find(f=>f.address===d?.address));return!d||!p?new ds(new ht(new re)):new ds(new ht(p.proxyProvider))},getWeb3jsProvider:()=>{if(!s||!s.wallet)return new Zt(new re);let d=v.find(u=>s.wallet&&u.address===s.wallet.address),p=t.connectors?.walletConnectors.find(u=>u.wallets.find(f=>f.address===d?.address));return!d||!p?new Zt(new re):new Zt(p.proxyProvider)},unlinkWallet:async d=>{let p=await t.unlinkWallet(d);return l(p),p},unlinkEmail:async d=>{let p=await t.unlinkEmail(d);return l(p),p},unlinkPhone:async d=>{let p=await t.unlinkPhone(d);return l(p),p},unlinkGoogle:async d=>{let p=await t.unlinkOAuth("google",d);return l(p),p},unlinkTwitter:async d=>{let p=await t.unlinkOAuth("twitter",d);return l(p),p},unlinkDiscord:async d=>{let p=await t.unlinkOAuth("discord",d);return l(p),p},unlinkGithub:async d=>{let p=await t.unlinkOAuth("github",d);return l(p),p},unlinkTiktok:async d=>{let p=await t.unlinkOAuth("tiktok",d);return l(p),p},unlinkLinkedIn:async d=>{let p=await t.unlinkOAuth("linkedin",d);return l(p),p},unlinkApple:async d=>{let p=await t.unlinkOAuth("apple",d);return l(p),p},setActiveWallet:async d=>{let p=v.find(f=>ki(f.address)===ki(d)),u=s?.linkedAccounts.find(f=>f.type==="wallet"&&ki(f.address)===ki(d));if(!p||!await p.isConnected())ae(d),ms();else if(!p.linked)p.loginOrLink();else{let f=Object.assign({},s);f.wallet=u&&{address:u.address,chainType:u.chainType,chainId:u.chainId,walletClient:u.walletClient,walletClientType:u.walletClientType,connectorType:u.connectorType},l(f)}},forkSession:()=>t.forkSession(),createWallet:async()=>{if(!a||!s)throw Y(z,"createWallet","onError","must_be_authenticated"),new Error("User must be authenticated before creating a Privy wallet");return hs(s,15e3)},setWalletPassword:()=>new Promise((d,p)=>{if(!a||!s){p(new Error("User must be authenticated before adding password to Privy wallet"));return}let u=oe(s);if(!u||!F){p(new Error("Must have a Privy wallet to add a password"));return}if(u.recoveryMethod==="user-passcode"){p(new Error("Cannot set password. Embedded wallet already has a password."));return}j(!0);let f={onSuccess:d,onFailure:p,callAuthOnSuccessOnClose:!1},M={onCompleteNavigateTo:"EMBEDDED_WALLET_PASSWORD_UPDATE_SPLASH_SCREEN",onFailure:p};fe({setWalletPassword:f,connectWallet:M}),Ae("EMBEDDED_WALLET_CONNECTING_SCREEN")}),signMessage:(d,p)=>new Promise(async(u,f)=>{if(!a||!s){f(new Error("User must be authenticated before signing with a Privy wallet"));return}let M=oe(s);if(!M){f(new Error("Must have a Privy wallet before signing"));return}if(typeof d!="string"||d.length<1){f(new Error("Message must be a non-empty string"));return}j(!0);let he=async()=>{if(!a)return f(new Error("User must be authenticated before signing with a Privy wallet")),null;let Ee=await Wt();if(F&&Ee)try{if(!await Le.recoverEmbeddedWallet())return f(new Error("Unable to connect to wallet")),null;t.createAnalyticsEvent("embedded_wallet_sign_message_started",{walletAddress:M.address});let{response:Ve}=await F.rpc({accessToken:Ee,address:M.address,request:{method:"personal_sign",params:[d,M.address]}}),xr=Ve.data;return t.createAnalyticsEvent("embedded_wallet_sign_message_completed",{walletAddress:M.address}),xr}catch(qt){return f(qt),null}else return null};if(L.embeddedWallets.noPromptOnSignature){p&&console.warn("uiOptions defined with `noPromptOnSignature` set to true in app config");let Ee=await he();Ee?u(Ee):f(new Ce("Unable to sign message"))}else{let Ve={message:d,confirmAndSignMessage:he,onSuccess:jt=>{u(jt)},onFailure:jt=>{f(jt)},uiOptions:p||{}},xr={onCompleteNavigateTo:"EMBEDDED_WALLET_SIGN_REQUEST_SCREEN",onFailure:f};fe({signMessage:Ve,connectWallet:xr}),Ae("EMBEDDED_WALLET_CONNECTING_SCREEN")}}),sendTransaction:async(d,p,u)=>{let M=await(await ys(d,p,u)).wait();return bi(M)},exportWallet:()=>new Promise((d,p)=>{if(!a||!s){p(new Error("User must be authenticated before exporting their Privy wallet"));return}if(!oe(s)){p(new Error("Must have a Privy wallet before exporting"));return}j(!0);let f={onCompleteNavigateTo:"EMBEDDED_WALLET_KEY_EXPORT_SCREEN",onFailure:p},M={appId:e.appId,origin:t.apiUrl,onSuccess:d,onFailure:p};fe({keyExport:M,connectWallet:f}),Ae("EMBEDDED_WALLET_CONNECTING_SCREEN")}),async init(d){let p;switch(d){case"sms":p=new Cr("verify");break;default:throw Y(z,"configureMfa","onError","unknown_mfa_error"),new Error(`Unsupported MFA method: ${d}`)}t.startMfaFlow(p);try{await p.init()}catch(u){throw Y(z,"configureMfa","onError",u.privyErrorCode||"unknown_mfa_error"),u}},async submit(d,p){switch(d){case"sms":Vt.current?.resolve({mfaMethod:d,mfaCode:p});break;default:throw Vt.current?.reject(new g("Unsupported MFA method")),Y(z,"configureMfa","onError","unknown_mfa_error"),new g(`Unsupported MFA method: ${d}`)}},async initEnrollment(d,p){let u;switch(d){case"sms":if(!p?.phoneNumber)throw Y(z,"configureMfa","onError","missing_mfa_credentials"),new Error("Missing MFA credentials");u=new Cr("enroll",p.phoneNumber);break;default:throw Y(z,"configureMfa","onError","unknown_mfa_error"),new Error(`Unsupported MFA method: ${d}`)}t.startMfaFlow(u);try{await u.init()}catch(f){throw Y(z,"configureMfa","onError",f.privyErrorCode||"unknown_mfa_error"),f}},async submitEnrollment(d,p){let u;switch(d){case"sms":u=new Cr("enroll"),u.meta={action:"enroll",smsCode:p.mfaCode,phoneNumber:p.phoneNumber};break;default:throw Y(z,"configureMfa","onError","unknown_mfa_error"),new Error(`Unsupported MFA method: ${d}`)}t.startMfaFlow(u);try{await u.authenticate();let f=await t.getAuthenticatedUser();l(f)}catch(f){throw Y(z,"configureMfa","onError",f.privyErrorCode||"unknown_mfa_error"),f}}};xu=Er.signMessage,Tu=async(...d)=>{let p=await ys(...d);return L.embeddedWallets.waitForTransactionConfirmation&&await p.wait(),p};let Le=(()=>({isNewUserThisSession:_,isLinking:y,linkingHint:U,walletConnectionStatus:k,rpcConfig:L.rpcConfig,chains:L.chains,clientAnalyticsId:t.clientAnalyticsId,nativeTokenSymbolForChainId:d=>L.chains.find(p=>p.id===Number(d))?.nativeCurrency.symbol,captchaData:{ready:Ne,enabled:L.captchaEnabled,execute:()=>{let d=window.turnstile;if(!d)return;let p=d.render("#cf-turnstile",{sitekey:qs,action:L.id,callback:Go,"error-callback":zt,"expired-callback":()=>{try{d.reset($t),zt(void 0),Go(void 0)}catch{zt("expired_and_failed_reset")}},"unsupported-callback":()=>{console.warn("Browser does not support Turnstile.")}});p||console.warn("Failed to render challenge."),et(p)},remove:()=>{let d=window.turnstile;!d?.remove||!$t||(d.remove($t),et(void 0),zt(void 0),Go(void 0))},token:Ho,error:Ii},initializeWalletProxy:async d=>{if(F)return F;let p=new Promise(M=>{Rt(()=>he=>M(he))}),u=new Promise(M=>setTimeout(()=>M(null),d)),f=await Promise.race([p,u]);return Rt(null),f},getAuthFlow:()=>t.authFlow,getAuthMeta:()=>t.authFlow?.meta,closePrivyModal:(d={shouldCallAuthOnSuccess:!0})=>{let p=n&&a&&s;d.shouldCallAuthOnSuccess&&p?(Y(z,"login","onComplete",s,_,!1),e.onSuccess?.(s,_)):D&&Y(z,"login","onError","exited_auth_flow"),t.authFlow=void 0,ae(null),C(null),I(!1),m(!1),S(!1),r(!1),t.createAnalyticsEvent("modal_closed")},connectWallet:Wi,initLoginWithWallet:Ru,loginWithWallet:async()=>{if(!n)throw new Tr;if(!(t.authFlow instanceof Eo))throw new g("Must initialize SIWE flow first.");let d,p;if(a)d=await t.link();else try{({user:d,isNewUser:p}=await t.authenticate())}catch(u){throw Y(z,"login","onError",u.privyErrorCode||"generic_connect_wallet_error"),u}l(d||s||null),S(p||!1),c(!0)},initLoginWithOAuth:async d=>{t.startAuthFlow(new Kt(d));let p=await t.authFlow.getAuthorizationUrl();p&&p.url&&window.location.assign(p.url)},loginWithOAuth:async()=>{if(!(t.authFlow instanceof Kt))throw new g("Must initialize OAuth flow before calling loginWithOAuth");let d,p;if(a)d=await t.link();else try{({user:d,isNewUser:p}=await t.authenticate())}catch(u){throw Y(z,"login","onError",u.privyErrorCode||"unknown_auth_error"),u}l(d),S(p||!1),c(!0)},initLoginWithEmail:async(d,p)=>{let u=new bo(d,p);t.startAuthFlow(u);try{await u.sendCodeEmail()}catch(f){throw Y(z,"login","onError",f.privyErrorCode||"unknown_auth_error"),f}},initLoginWithSms:async(d,p)=>{let u=new xo(d,p);t.startAuthFlow(u);try{await u.sendSmsCode()}catch(f){throw Y(z,"login","onError",f.privyErrorCode||"unknown_auth_error"),f}},resendEmailCode:async()=>{await t.authFlow?.sendCodeEmail()},resendSmsCode:async()=>{await t.authFlow?.sendSmsCode()},loginWithCode:async d=>{if(!n)throw new Tr;if(t.authFlow instanceof bo)t.authFlow.meta.emailCode=d.trim();else if(t.authFlow instanceof xo)t.authFlow.meta.smsCode=d.trim();else throw new g("Must initialize a passwordless code flow first");let p,u;a?p=await t.link():{user:p,isNewUser:u}=await t.authenticate(),l(p||s||null),S(u||!1),c(!0)},refreshUser:async()=>{let d=await t.getAuthenticatedUser();return l(d),d},walletProxy:F,createAnalyticsEvent:(d,p,u)=>t.createAnalyticsEvent(d,p,u),getUsdTokenPrice:d=>t.getUsdTokenPrice(d),recoverEmbeddedWallet:async()=>new Promise(async(d,p)=>{let u=s?.linkedAccounts.find(M=>M.type==="wallet"&&M.walletClientType==="privy"),f=await Wt();if(!f||!F||!u){p(new Error("Must have valid access token and Privy wallet to recover wallet"));return}j(!0);try{await F.connect({accessToken:f,address:u.address}),d(!0)}catch(M){nr(M)&&u.recoveryMethod==="privy"?(t.createAnalyticsEvent("embedded_wallet_pinless_recovery_started",{walletAddress:u.address}),(await F.recover({address:u.address,accessToken:f})).address||p(new Error("Unable to recover wallet")),t.createAnalyticsEvent("embedded_wallet_recovery_completed",{walletAddress:u.address}),d(!0)):nr(M)?(fe({recoverWallet:{privyWallet:u,onFailure:p,onSuccess:()=>d(!0)}}),Ae("EMBEDDED_WALLET_RECOVERY_SCREEN")):p(M)}}),getFiatOnRampConfig:fs,updateWallets:()=>on()}))();Pu=Le.recoverEmbeddedWallet;let Nu=Fv(()=>({wallets:v}),[v]);return Co(Te.Provider,{value:Er,children:Co(ls.Provider,{value:z,children:Eu(rs.Provider,{value:Nu,children:[e.children,Eu(Yi.Provider,{value:Le,children:[Co(jp,{theme:{...L.appearance.palette||{}}}),Co(vl,{appConfig:L,data:J,setModalData:fe,setInitialScreen:C,initialScreen:T,visible:o,authenticated:a,children:o?Co(Qp,{}):null}),X&&H.id?Co(bu,{appId:e.appId,clientAnalyticsId:t.clientAnalyticsId,origin:t.apiUrl,mfaMethods:s?.mfaMethods,mfaPromise:Vt,onLoad:K,onLoadFailed:()=>null}):null]}),L.captchaEnabled&&Co(Zp,{onLoad:()=>Ri(!0)})]})})})};import{useContext as $v}from"react";function Vv(e){let{init:t,submit:o}=$v(Te);return St("configureMfa",e),{init:t,submit:o}}import{useContext as qv}from"react";function jv(){let{initEnrollment:e,submitEnrollment:t}=qv(Te);return{initEnrollment:e,submitEnrollment:t}}import{useContext as Kv}from"react";function Yv(e){let{login:t}=Kv(Te);return St("login",e),{login:t}}import{useContext as Jv}from"react";function Qv(e){let{logout:t}=Jv(Te);return St("logout",e),{logout:t}}import{useContext as Zv}from"react";function Xv(e){let{connectWallet:t}=Zv(Te);return St("connectWallet",e),{connectWallet:t}}import{useContext as ew}from"react";function tw(e){let{createWallet:t}=ew(Te);return St("createWallet",e),{createWallet:t}}export{ht as AsExternalProvider,Wr as ConnectorManager,Mr as PrivyClient,Gv as PrivyProvider,re as PrivyProxyProvider,_i as SUPPORTED_CHAINS,Mi as VERSION,Be as WalletConnector,Wt as getAccessToken,Xv as useConnectWallet,tw as useCreateWallet,Yv as useLogin,Qv as useLogout,Vv as useMfa,jv as useMfaEnrollment,V as usePrivy,ns as useWallets};
2276
+ `;import{useEffect as xv}from"react";import{Fragment as Pv,jsx as _v}from"react/jsx-runtime";var Tv=({onLoad:e})=>{let t=window;return xv(()=>{if(document.getElementById("cf-script")!==null||t.turnstile)return;t.onloadTurnstileCallback=e;let o=document.createElement("script");o.setAttribute("src","https://challenges.cloudflare.com/turnstile/v0/api.js?onload=onloadTurnstileCallback&render=explicit"),o.setAttribute("id","cf-script"),o.setAttribute("async","true"),document.body.appendChild(o)},[]),_v(Pv,{})},ou=Tv;var ru={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 nu={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 iu={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 au={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 su={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 lu={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 cu={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 du={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 pu={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 uu={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 mu={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 fu={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 hu={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 Ri={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 yu={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 gu={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 vu={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 Ii=[ru,nu,mu,vu,Ri,yu,gu,Xr,en,cu,du,pu,uu,su,lu,fu,hu,iu,au],CA=new Set(Ii.map(e=>e.id));import Bo from"tinycolor2";var wu="#FFFFFF",Sv="#000000",Av=wu,kv="#1E1E1D";function Rv(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 Co(e,t){let o=Math.max(0,Math.min(1,e.toHsl().l+t));return Bo({...e.toHsl(),l:o})}function Cu({backgroundTheme:e,accentHex:t,successHex:o="#51BA81",warnHex:r="#FFB74D",errorHex:n="#EC6351",whiteHex:i=wu,blackHex:a=Sv}){let c;switch(e){case"light":c=Av;break;case"dark":c=kv;break;default:c=e;break}let l=Bo(c),s=Bo(t),y=Bo(o),h=Bo(r),g=Bo(n),m=Rv(l.getLuminance()),w=Co(l,m==="light"?-.04:.11),_=Co(l,m==="light"?-.88:.87),P=Co(l,m==="light"?-.77:.75),x=Co(l,m==="light"?-.43:.45).desaturate(m==="light"?60:20),b=Co(l,m==="light"?-.08:.25).desaturate(m==="light"?60:20),U=Co(s,.15),k=Co(s,-.06),L=Bo(s.getLuminance()>.5?a:i),N=Co(y,-.16);return{colorScheme:m,background:l.toHslString(),background2:w.toHslString(),foreground:_.toHslString(),foreground2:P.toHslString(),foreground3:x.toHslString(),foreground4:b.toHslString(),accent:s.toHslString(),accentLight:U.toHslString(),accentDark:k.toHslString(),foregroundAccent:L.toHslString(),success:y.toHslString(),successDark:N.toHslString(),error:g.toHslString(),warn:h.toHslString()}}var zt={appearance:{theme:"light",accentColor:"#676FFF"},walletConnectCloudProjectId:Ys,rpcConfig:{rpcUrls:{},rpcTimeouts:{}},captchaEnabled:!1,_render:{inDialog:!0,inParentNodeId:null},fiatOnRamp:{useSandbox:!1}};function Wi(e,t){let o=["google","twitter","discord","tiktok","linkedin","github","apple"],r=t?.loginMethods?.filter(k=>o.includes(k)),n=r?.slice(0,5),i,a,c,l,s,y,h,g,m,w;if(t?.loginMethods?(i=t.loginMethods.includes("email"),a=t.loginMethods.includes("sms"),c=t.loginMethods.includes("wallet"),l=n?.includes("google"),s=n?.includes("twitter"),y=n?.includes("discord"),h=n?.includes("tiktok"),m=n?.includes("github"),g=n?.includes("linkedin"),w=n?.includes("apple")):(i=e.emailAuth,a=e.smsAuth,c=e.walletAuth,l=e.googleOAuth,s=e.twitterOAuth,y=e.discordOAuth,m=e.githubOAuth,h=e.tiktokOAuth,g=e.linkedinOAuth,w=e.appleOAuth),i&&a&&(console.warn("Enabling both email and SMS passwordless is not currently supported. Disabling SMS."),a=!1),!i&&!a&&[l,s,y,m,h,g,w].some(k=>k))throw new Error("To enable social logins you must also enable either SMS or Email login");if(![i,a,c,l,s,y,m,h,g,w].some(k=>k))throw new Error("You must enable at least one login method");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{chains:_,defaultChain:P}=Iv(t?.additionalChains,t?.supportedChains,t?.defaultChain),x=!!t?.defaultChain||!!t?.supportedChains;r&&r.length>5&&console.warn("Max number of social logins allowed is 5. Any more have been removed.");let b=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:Cu({backgroundTheme:t?.appearance?.theme??zt.appearance.theme,accentHex:t?.appearance?.accentColor??e.accentColor??zt.appearance.accentColor}),showWalletLoginFirst:t?.appearance?.showWalletLoginFirst??e.showWalletLoginFirst},loginMethods:{wallet:c,email:i,sms:a,google:l,twitter:s,discord:y,github:m,tiktok:h,linkedin:g,apple:w},legal:{termsAndConditionsUrl:t?.legal?.termsAndConditionsUrl??e.termsAndConditionsUrl,privacyPolicyUrl:t?.legal?.privacyPolicyUrl??e.privacyPolicyUrl},walletConnectCloudProjectId:t?.walletConnectCloudProjectId??e.walletConnectCloudProjectId??zt.walletConnectCloudProjectId,rpcConfig:{rpcUrls:t?.rpcConfig?.rpcUrls??zt.rpcConfig.rpcUrls,rpcTimeouts:t?.rpcConfig?.rpcTimeouts??zt.rpcConfig.rpcTimeouts},chains:_,defaultChain:P,shouldSwitchChainOnConnect:x,captchaEnabled:e.captchaEnabled??zt.captchaEnabled,embeddedWallets:{...e.embeddedWalletConfig,...b?{createOnLogin:"all-users",requireUserPasswordOnCreate:!1,noPromptOnSignature:!0}:{},waitForTransactionConfirmation:!0,...t?.embeddedWallets},customAuth:b?{enabled:!0,...t.customAuth}:void 0,fiatOnRamp:{enabled:e.fiatOnRampEnabled,useSandbox:t?.fiatOnRamp?.useSandbox??zt.fiatOnRamp.useSandbox},loginConfig:{twitterOAuthOnMobileEnabled:e.twitterOAuthOnMobileEnabled??!1},render:{inDialog:t?._render?.inDialog??zt._render.inDialog,inParentNodeId:t?._render?.inParentNodeId??zt._render.inParentNodeId}}}function bu(e,t){if(!e)return{legacyCreateEmbeddedWalletFlag:t};let{appearance:o,additionalChains:r,supportedChains:n,...i}=e;return{...i,...r?{additionalChains:r.map(c=>c.id)}:void 0,...n?{supportedChains:n.map(c=>c.id)}:void 0,...o?{...o,...o.logo&&typeof o.logo?{logo:"component"}:void 0}:void 0,legacyCreateEmbeddedWalletFlag:t}}function Iv(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}else r=Ii.concat(e??[]);let n=t?r[0]:Ri,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 Lv,useEffect as Ov}from"react";import{createContext as Wv,useContext as Nv,useEffect as Mv}from"react";var Eu={login:{onComplete:[],onError:[]},logout:{onSuccess:[]},connectWallet:{onSuccess:[],onError:[]},createWallet:{onSuccess:[],onError:[]},configureMfa:{onMfaRequired:[],onError:[]}},us=Wv(void 0),xu=()=>Nv(us);function St(e,t){if(!t)return;let r=xu().current[e];return Mv(()=>{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 Y(e,t,o,...r){for(let n of e.current[t][o])n(...r)}function Tu(){let e=xu();return(t,o,...r)=>Y(e,t,o,...r)}var Ni=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;default:throw new Error(`invalid wallet event type ${t}`)}}};import{jsx as Gv}from"react/jsx-runtime";var Dv=function(e){return()=>`id-${e++}`}(0);function Uv(e){return typeof e.event=="string"&&/^privy:.+/.test(e.event)}function Er(e){return e.error!==void 0}var Go=new Ni,ms=new Map,Fv=(e,t)=>typeof t=="bigint"?t.toString():t,Bv=(e,t)=>`${e}${JSON.stringify(t,Fv)}`;function Ho(e,t,o){let r=o.contentWindow;if(!r)throw new Error("iframe not initialized");let n=Bv(e,t);if(e==="privy:wallet:create"){let a=ms.get(n);if(a)return a}let i=new Promise((a,c)=>{let l=Dv();Go.enqueue(l,{resolve:a,reject:c}),r.postMessage({id:l,event:e,data:t},"*")}).finally(()=>{ms.delete(n)});return ms.set(n,i),i}function Hv(e){switch(e.event){case"privy:iframe:ready":let t=Go.dequeue(e.event,e.id);return Er(e)?t.reject(new bt(e.error.type,e.error.message)):t.resolve(e.data);case"privy:wallet:create":let o=Go.dequeue(e.event,e.id);return Er(e)?o.reject(new bt(e.error.type,e.error.message)):o.resolve(e.data);case"privy:wallet:connect":let r=Go.dequeue(e.event,e.id);return Er(e)?r.reject(new bt(e.error.type,e.error.message)):r.resolve(e.data);case"privy:wallet:recover":let n=Go.dequeue(e.event,e.id);return Er(e)?n.reject(new bt(e.error.type,e.error.message)):n.resolve(e.data);case"privy:wallet:rpc":let i=Go.dequeue(e.event,e.id);return Er(e)?i.reject(new bt(e.error.type,e.error.message)):i.resolve(e.data);case"privy:wallet:set-recovery-password":let a=Go.dequeue(e.event,e.id);return Er(e)?a.reject(new bt(e.error.type,e.error.message)):a.resolve(e.data);default:console.warn("Unsupported wallet proxy method:",e)}}function Pu(e){let t=Lv(null),o=Tu();return Ov(()=>{let r=t.current;if(!r)return;function n(s){s&&s.origin===e.origin&&Uv(s.data)&&Hv(s.data)}let i={create(s){return Ho("privy:wallet:create",s,r)},connect(s){return Ho("privy:wallet:connect",s,r)},recover(s){return Ho("privy:wallet:recover",s,r)},async rpc(s){if(e.mfaMethods&&e.mfaMethods.length>0){o("configureMfa","onMfaRequired",e.mfaMethods);let y=await new Promise((h,g)=>{e.mfaPromise.current={resolve:h,reject:g},setTimeout(()=>{g(new bt("mfa_timeout","Timed out waiting for MFA code"))},3e5)});return Ho("privy:wallet:rpc",{...s,...y},r)}return Ho("privy:wallet:rpc",s,r)},setRecoveryPassword(s){return Ho("privy:wallet:set-recovery-password",s,r)}};window.addEventListener("message",n);let a=()=>e.onLoad(i),c=(...s)=>{console.warn("Privy iframe failed to load: ",...s),e.onLoadFailed()},l=new AbortController;return sl(()=>Ho("privy:iframe:ready",{},r),{abortSignal:l.signal}).then(a,c),()=>{window.removeEventListener("message",n),l.abort()}},[t.current,e.mfaMethods]),Gv("iframe",{ref:t,width:"0",height:"0",style:{display:"none",height:"0px",width:"0px"},src:vn(e.origin,`/apps/${e.appId}/embedded-wallets`,{caid:e.clientAnalyticsId})})}var xr=class{constructor(t,o){this.meta={action:t,phoneNumber:o}}async init(){if(!this.meta.action)throw new v("action required");if(!this.api)throw new v("Auth flow has no API instance");if(this.meta.action==="enroll"&&!this.meta.phoneNumber)throw new v("phone number must be set when initialzing authentication.");try{let t=Vs();await this.api.post(t,{action:this.meta.action,phoneNumber:this.meta.phoneNumber})}catch(t){throw Q(t)}}async authenticate(){if(!this.meta.action)throw new v("action required");if(!this.api)throw new v("Mfa flow has no API instance");if(!this.meta.smsCode)throw new v("sms code must be set prior to calling authenticate.");if(this.meta.action==="enroll"&&!this.meta.phoneNumber)throw new v("phone number must be set prior to calling authenticate.");try{let t=qs(),o=await this.api.post(t,{action:this.meta.action,phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode});return rt(o)}catch(t){throw Q(t)}}};import{jsx as bo,jsxs as _u}from"react/jsx-runtime";function Vv(e){return typeof e=="string"&&e.length===25}var rn;function Wt(){if(!rn){let e=$.get(Ko);return Promise.resolve(e||null)}return rn.getAccessToken()}var Su,ml=(e,t)=>Su(e,t),Au,fl=(e,t)=>Au(e,t),ku,hl=()=>ku(),qv=()=>{let t=new URLSearchParams(window.location.search).get("privy_token");if(!t)return;$.put(Ar,t);let o=new URL(window.location.href);o.searchParams.delete("privy_token"),window.history.pushState({},"",o)},jv=({config:e,...t})=>{if(!Vv(t.appId))throw new v("Cannot initialize the Privy provider with an invalid Privy app ID");rn||(rn=new Dr({appId:t.appId,apiUrl:t.apiUrl||mn}));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."),bo(Kv,{...t,config:o,client:rn})},Kv=e=>{let t=e.client,[o,r]=te(!1),[n,i]=te(!1),[a,c]=te(!1),[l,s]=te(null),[y,h]=te(!1),[g,m]=te([]),w=hs(g),[_,P]=te(!1),[x,b]=te(null),[U,k]=te(!1),[L,N]=te({status:"disconnected",connectError:null,connector:null,connectRetry:E}),[I,ne]=te(null),[F,K]=te(null),[H,Z]=te({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}),[O,Me]=te(()=>{let d=bu(e.config,e.createPrivyWalletOnLogin);return t.createAnalyticsEvent("sdk_initialize",d),Wi(H,e.config)}),[X,j]=te(!0),[J,fe]=te({}),[G,kt]=te(null),[Tr,Rt]=te(null),[Le,Li]=te(!1),[zo,$o]=te(),[Oi,$t]=te(),[Vt,tt]=te(),[de,Oe]=te(!1),qt=hs(null),z=hs(Eu),Re=d=>{d&&b(d),r(!0),t.createAnalyticsEvent("modal_open",{initialScreen:d})},nn=d=>{O.embeddedWallets.createOnLogin!=="off"&&j(!0),Re(d)};At(()=>{if(!F||!l){t.connectors?.removeEmbeddedWalletConnector();return}let d=l?.linkedAccounts.filter(p=>p.type==="wallet"&&p.walletClient==="privy");if(d&&d.length>0){let p=d[0].address;t.connectors?.addEmbeddedWalletConnector(F,p,O.defaultChain)}},[F,l]),At(()=>{F&&Tr?.(F)},[F]),At(()=>{(async()=>{if(!O.customAuth?.enabled)return;j(!0);let{getCustomAccessToken:p,isLoading:u}=O.customAuth;if(!(!n||u))try{let f=await p();if(!f){await Pr.logout();return}if(a)return;t.startAuthFlow(new qo(f));let{user:M,isNewUser:he}=await t.authenticate();M||await Pr.logout(),s(M||null),P(he||!1),c(!0),Oe(!0)}catch(f){console.warn(f),a&&await Pr.logout()}})()},[O.customAuth?.enabled,O.customAuth?.getCustomAccessToken,O.customAuth?.isLoading,n,a]),At(()=>{de&&F&&l&&Jt(l,e.config?.embeddedWallets?.createOnLogin)&&(Oe(!1),ws(l,Yo).catch(console.error))},[de&&F&&l]),At(()=>{async function d(){let p=await t.getServerConfig();Z(p);let u=Wi(p,e.config);Me(u),p.customApiUrl&&t.updateApiUrl(p.customApiUrl),t.initializeConnectorManager(u.walletConnectCloudProjectId,u.rpcConfig,u.chains,u.defaultChain),t.connectors?.initialize();let f=Ru();qv();let M=await t.getAuthenticatedUser();e.config?.customAuth?.enabled||(c(!!M),M&&Y(z,"login","onComplete",M,!1,!0),s(M)),f||(i(!0),G?.()),f&&M&&h(!0),Iu()}n||d()},[t,G,n]),At(()=>{let d=Wi(H,e.config);Me(d)},[e.config]);let Ru=()=>{let d=new URLSearchParams(window.location.search),p=d.get("privy_oauth_code"),u=d.get("privy_oauth_state"),f=d.get("privy_oauth_provider");return p&&u&&f?(t.startAuthFlow(new Yt(f,p,u)),nn("AWAITING_OAUTH_SCREEN"),fe({finishOauthFlow:{onComplete:()=>{i(!0),G?.()}}}),!0):!1},Di=async(d,p,u)=>{let f=await t.connectors?.createWalletConnector(d,p)||null;ys(f,u)};async function ys(d,p){if(!d)return N({status:"disconnected",connectError:new B("Unable to connect to wallet."),connector:null,connectRetry:E}),p?.(null);N({connector:d,status:"connecting",connectError:null,connectRetry:()=>ys(d,p)});try{let u=await d.connect({showPrompt:!0});if(O.shouldSwitchChainOnConnect&&!O.chains.find(f=>f.id===Number(u?.chainId))){N(f=>({...f,connector:d,status:"switching_to_supported_chain",connectError:null,connectRetry:E}));try{await u?.switchChain(O.defaultChain.id),u&&(u.chainId=Jo(Po(O.defaultChain.id)))}catch{console.warn(`Unable to switch to default chain: ${O.defaultChain.id}`)}}return N(f=>({...f,status:"connected",connectError:null,connectRetry:E})),u&&!U&&Y(z,"connectWallet","onSuccess",u),p?.(u)}catch(u){return u instanceof ot?(console.warn(u.cause?u.cause:u.message),U||Y(z,"connectWallet","onError",u.privyErrorCode||"generic_connect_wallet_error")):(console.warn(u),U||Y(z,"connectWallet","onError","unknown_connect_wallet_error")),N(f=>({...f,status:"disconnected",connectError:u})),p?.(null)}}let Ui=d=>{d!==null&&t.startAuthFlow(new xo(d))},Iu=()=>{let d=new URLSearchParams(window.location.search),p=d.get("privy_connector"),u=d.get("privy_wallet_client");if(!p||!u)return;if(u==="phantom"&&!Ye()&&nn("LOGIN_FAILED_SCREEN"),!t.connectors)throw new v("Connector not initialized");Re("AWAITING_CONNECTION");let f=new URL(window.location.href);f.searchParams.delete("privy_connector"),f.searchParams.delete("privy_wallet_client"),window.history.pushState({},"",f),Di(p,u,Ui)};At(()=>{n&&a&&l===null&&t.getAuthenticatedUser().then(s)},[n,a,l,t]);let gs=()=>{h(!0),Re("LINK_WALLET_SCREEN")},Wu=d=>{if(!a||!l)return!1;for(let p of l.linkedAccounts)if(p.type==="wallet"&&p.address===d.address)return!0;return!1},Nu=async d=>{if(!t.connectors)throw new v("Connector not initialized");let p=t.connectors.findWalletConnector(d.connectorType,d.walletClientType)||null;N(u=>({...u,connector:p,status:"connected",connectError:null,connectRetry:E})),Ui(d),nn("AWAITING_CONNECTION")},Mu=async(d,p)=>{if(!t.connectors)throw new v("Connector not initialized");await Di(d,p,Ui)},vs=async(d,p)=>{if(!O.fiatOnRamp.enabled)throw new v("Fiat on-ramp is not enabled");if(!p||!p.provider||p.provider==="moonpay"){let{signedUrl:u,externalTransactionId:f}=await ld(t,d,p?.config??{},O.appearance.palette,O.fiatOnRamp.useSandbox);return{signedUrl:u,externalTransactionId:f}}else throw new v("Unsupported fund provider. Currently supported option is `moonpay`.")},an=()=>{m(d=>{let p=t.connectors?.wallets.map(u=>({...u,linked:Wu(u),loginOrLink:async()=>{if(!await u.isConnected())throw new v("Wallet is not connected");if(u.connectorType==="embedded"&&u.walletClientType==="privy")throw new v("Cannot link or login with embedded wallet");Nu(u)},fund:async f=>{let{signedUrl:M,externalTransactionId:he}=await vs(u.address,f);fe({fiatOnRampPrompt:{signedUrl:M},fiatOnRampStatus:{externalTransactionId:he}}),Re("FIAT_ON_RAMP_PROMPT_SCREEN")},unlink:async()=>{if(!a)throw new v("User is not authenticated.");if(u.connectorType==="embedded"&&u.walletClientType==="privy")throw new v("Cannot unlink an embedded wallet");let f=await t.unlinkWallet(u.address);s(f)}}))||[];return Cn(d,p)?d:p})};At(()=>{an()},[l?.linkedAccounts,a,n]),At(()=>{if(n){if(!t.connectors)throw new v("Connector not initialized");an(),t.connectors.on("walletsUpdated",an)}},[n]);let Lu=()=>{Re(a?"CONNECT_ONLY_AUTHENTICATED_SCREEN":"CONNECT_ONLY_LANDING_SCREEN")};At(()=>{if(!g[0])return;let d=g[0],p=w.current.find(f=>f.address===d.address),u=l?.linkedAccounts.find(f=>f.type==="wallet"&&f.address===d.address);if(!p&&u){let f=Object.assign({},l);f.wallet=u&&{address:u.address,chainType:u.chainType,chainId:u.chainId,walletClient:u.walletClient,walletClientType:u.walletClientType,connectorType:u.connectorType},s(f)}w.current=g},[g]);let ws=async(d,p)=>{if(oe(d))throw Y(z,"createWallet","onError","embedded_wallet_already_exists"),new Error("Only one Privy wallet per user is currently allowed");let[f,M]=await Promise.all([De.initializeWalletProxy(p),Wt()]);if(!f&&e.config?.customAuth?.enabled)throw Y(z,"createWallet","onError","unknown_embedded_wallet_error"),new Error("Failed to connect to wallet proxy");if(!f||!M||e.config?.embeddedWallets?.requireUserPasswordOnCreate)return new Promise((he,Te)=>{j(!0),fe({createWallet:{onSuccess:je=>{Y(z,"createWallet","onSuccess",je),he(je)},onFailure:je=>{Y(z,"createWallet","onError","unknown_embedded_wallet_error"),Te(je)},callAuthOnSuccessOnClose:!1}}),Re("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")});{await f.create({accessToken:M});let he=await De.refreshUser(),Te=oe(he);if(!Te)throw Y(z,"createWallet","onError","unknown_embedded_wallet_error"),new Error("Failed to create wallet");return Y(z,"createWallet","onSuccess",Te),Te}},Ou=d=>{if(!O.chains.map(p=>p.id).includes(d))throw new B(`Chain ID ${d} is not supported. It must be added to the config.supportedChains property of the PrivyProvider.`,"unsupported_chain_id")},Cs=(d,p,u)=>new Promise(async(f,M)=>{if(!a||!l){M(new Error("User must be authenticated before signing with a Privy wallet"));return}let he=oe(l);if(!he){M(new Error("Must have a Privy wallet before signing"));return}j(!0);let Te=t.connectors?.findWalletConnector("embedded","privy")?.proxyProvider,jt=d.chainId?Number(d.chainId):Te.chainId;Ou(jt);let je=Object.assign({},d,{chainId:jt}),_r=async()=>{let Kt=await Wt();if(!Kt||!F){M(new Error("Must have valid access token and Privy wallet to send transaction"));return}try{if(!await De.recoverEmbeddedWallet()){M(new Error("Unable to connect to wallet"));return}let bs=new zv(nt(je.chainId,O.chains,O.rpcConfig)),Uu=await xi(he.address,je,bs),Fu=await Ti(Kt,he.address,F,Uu,bs);f(Fu)}catch(sn){M(sn)}};if(O.embeddedWallets.noPromptOnSignature)p&&console.warn("uiOptions defined with `noPromptOnSignature` set to true in app config"),_r();else{let Kt={transactionRequest:je,onSuccess:f,onFailure:M,uiOptions:p||{},fundWalletConfig:u},sn={onCompleteNavigateTo:"EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN",onFailure:M};fe({connectWallet:sn,sendTransaction:Kt}),Re("EMBEDDED_WALLET_CONNECTING_SCREEN")}}),Pr={ready:n,authenticated:a,user:l,walletConnectors:t.connectors||null,connectWallet:Lu,linkWallet:gs,linkEmail:()=>{if(l?.email)throw new v("User already has an email linked to their account.");h(!0),Re("LINK_EMAIL_SCREEN")},linkPhone:()=>{if(l?.phone)throw new v("User already has a phone number linked to their account.");h(!0),Re("LINK_PHONE_SCREEN")},linkGoogle:async()=>{if(l?.google)throw new v("User already has a Google account linked to their account.");await De.initLoginWithOAuth("google")},linkTwitter:async()=>{if(l?.twitter)throw new v("User already has a Twitter account linked to their account.");await De.initLoginWithOAuth("twitter")},linkDiscord:async()=>{if(l?.discord)throw new v("User already has a Discord account linked to their account.");await De.initLoginWithOAuth("discord")},linkGithub:async()=>{if(l?.github)throw new v("User already has a Github account linked to their account.");await De.initLoginWithOAuth("github")},linkTiktok:async()=>{if(l?.tiktok)throw new v("User already has a Tiktok account linked to their account.");await De.initLoginWithOAuth("tiktok")},linkLinkedIn:async()=>{if(l?.linkedin)throw new v("User already has a LinkedIn account linked to their account.");await De.initLoginWithOAuth("linkedin")},linkApple:async()=>{await De.initLoginWithOAuth("apple")},login:async()=>{if(n||(await new Promise(d=>{kt(()=>d)}),kt(null)),a){console.warn("Attempted to log in, but user is already logged in. Use a `link` helper instead.");return}k(!0),nn()},logout:async()=>{await t.logout(),s(null),c(!1),b(null),Y(z,"logout","onSuccess"),h(!1),r(!1),$.del(kr)},getAccessToken:()=>t.getAccessToken(),getEthereumProvider:()=>{if(!l||!l.wallet)return new re;let d=g.find(u=>l.wallet&&u.address===l.wallet.address),p=t.connectors?.walletConnectors.find(u=>u.wallets.find(f=>f.address===d?.address));return!d||!p?new re:p.proxyProvider},getEthersProvider:()=>{if(!l||!l.wallet)return new fs(new ht(new re));let d=g.find(u=>l.wallet&&u.address===l.wallet.address),p=t.connectors?.walletConnectors.find(u=>u.wallets.find(f=>f.address===d?.address));return!d||!p?new fs(new ht(new re)):new fs(new ht(p.proxyProvider))},getWeb3jsProvider:()=>{if(!l||!l.wallet)return new Xt(new re);let d=g.find(u=>l.wallet&&u.address===l.wallet.address),p=t.connectors?.walletConnectors.find(u=>u.wallets.find(f=>f.address===d?.address));return!d||!p?new Xt(new re):new Xt(p.proxyProvider)},unlinkWallet:async d=>{let p=await t.unlinkWallet(d);return s(p),p},unlinkEmail:async d=>{let p=await t.unlinkEmail(d);return s(p),p},unlinkPhone:async d=>{let p=await t.unlinkPhone(d);return s(p),p},unlinkGoogle:async d=>{let p=await t.unlinkOAuth("google",d);return s(p),p},unlinkTwitter:async d=>{let p=await t.unlinkOAuth("twitter",d);return s(p),p},unlinkDiscord:async d=>{let p=await t.unlinkOAuth("discord",d);return s(p),p},unlinkGithub:async d=>{let p=await t.unlinkOAuth("github",d);return s(p),p},unlinkTiktok:async d=>{let p=await t.unlinkOAuth("tiktok",d);return s(p),p},unlinkLinkedIn:async d=>{let p=await t.unlinkOAuth("linkedin",d);return s(p),p},unlinkApple:async d=>{let p=await t.unlinkOAuth("apple",d);return s(p),p},setActiveWallet:async d=>{let p=g.find(f=>Mi(f.address)===Mi(d)),u=l?.linkedAccounts.find(f=>f.type==="wallet"&&Mi(f.address)===Mi(d));if(!p||!await p.isConnected())ne(d),gs();else if(!p.linked)p.loginOrLink();else{let f=Object.assign({},l);f.wallet=u&&{address:u.address,chainType:u.chainType,chainId:u.chainId,walletClient:u.walletClient,walletClientType:u.walletClientType,connectorType:u.connectorType},s(f)}},forkSession:()=>t.forkSession(),createWallet:async()=>{if(!a||!l)throw Y(z,"createWallet","onError","must_be_authenticated"),new Error("User must be authenticated before creating a Privy wallet");return ws(l,15e3)},setWalletPassword:()=>new Promise((d,p)=>{if(!a||!l){p(new Error("User must be authenticated before adding password to Privy wallet"));return}let u=oe(l);if(!u||!F){p(new Error("Must have a Privy wallet to add a password"));return}if(u.recoveryMethod==="user-passcode"){p(new Error("Cannot set password. Embedded wallet already has a password."));return}j(!0);let f={onSuccess:d,onFailure:p,callAuthOnSuccessOnClose:!1},M={onCompleteNavigateTo:"EMBEDDED_WALLET_PASSWORD_UPDATE_SPLASH_SCREEN",onFailure:p};fe({setWalletPassword:f,connectWallet:M}),Re("EMBEDDED_WALLET_CONNECTING_SCREEN")}),signMessage:(d,p)=>new Promise(async(u,f)=>{if(!a||!l){f(new Error("User must be authenticated before signing with a Privy wallet"));return}let M=oe(l);if(!M){f(new Error("Must have a Privy wallet before signing"));return}if(typeof d!="string"||d.length<1){f(new Error("Message must be a non-empty string"));return}j(!0);let he=async()=>{if(!a)return f(new Error("User must be authenticated before signing with a Privy wallet")),null;let Te=await Wt();if(F&&Te)try{if(!await De.recoverEmbeddedWallet())return f(new Error("Unable to connect to wallet")),null;t.createAnalyticsEvent("embedded_wallet_sign_message_started",{walletAddress:M.address});let{response:je}=await F.rpc({accessToken:Te,address:M.address,request:{method:"personal_sign",params:[d,M.address]}}),_r=je.data;return t.createAnalyticsEvent("embedded_wallet_sign_message_completed",{walletAddress:M.address}),_r}catch(jt){return f(jt),null}else return null};if(O.embeddedWallets.noPromptOnSignature){p&&console.warn("uiOptions defined with `noPromptOnSignature` set to true in app config");let Te=await he();Te?u(Te):f(new be("Unable to sign message"))}else{let je={message:d,confirmAndSignMessage:he,onSuccess:Kt=>{u(Kt)},onFailure:Kt=>{f(Kt)},uiOptions:p||{}},_r={onCompleteNavigateTo:"EMBEDDED_WALLET_SIGN_REQUEST_SCREEN",onFailure:f};fe({signMessage:je,connectWallet:_r}),Re("EMBEDDED_WALLET_CONNECTING_SCREEN")}}),sendTransaction:async(d,p,u)=>{let M=await(await Cs(d,p,u)).wait();return _i(M)},exportWallet:()=>new Promise((d,p)=>{if(!a||!l){p(new Error("User must be authenticated before exporting their Privy wallet"));return}if(!oe(l)){p(new Error("Must have a Privy wallet before exporting"));return}j(!0);let f={onCompleteNavigateTo:"EMBEDDED_WALLET_KEY_EXPORT_SCREEN",onFailure:p},M={appId:e.appId,origin:t.apiUrl,onSuccess:d,onFailure:p};fe({keyExport:M,connectWallet:f}),Re("EMBEDDED_WALLET_CONNECTING_SCREEN")}),async init(d){let p;switch(d){case"sms":p=new xr("verify");break;default:throw Y(z,"configureMfa","onError","unknown_mfa_error"),new Error(`Unsupported MFA method: ${d}`)}t.startMfaFlow(p);try{await p.init()}catch(u){throw Y(z,"configureMfa","onError",u.privyErrorCode||"unknown_mfa_error"),u}},async submit(d,p){switch(d){case"sms":qt.current?.resolve({mfaMethod:d,mfaCode:p});break;default:throw qt.current?.reject(new v("Unsupported MFA method")),Y(z,"configureMfa","onError","unknown_mfa_error"),new v(`Unsupported MFA method: ${d}`)}},async initEnrollment(d,p){let u;switch(d){case"sms":if(!p?.phoneNumber)throw Y(z,"configureMfa","onError","missing_mfa_credentials"),new Error("Missing MFA credentials");u=new xr("enroll",p.phoneNumber);break;default:throw Y(z,"configureMfa","onError","unknown_mfa_error"),new Error(`Unsupported MFA method: ${d}`)}t.startMfaFlow(u);try{await u.init()}catch(f){throw Y(z,"configureMfa","onError",f.privyErrorCode||"unknown_mfa_error"),f}},async submitEnrollment(d,p){let u;switch(d){case"sms":u=new xr("enroll"),u.meta={action:"enroll",smsCode:p.mfaCode,phoneNumber:p.phoneNumber};break;default:throw Y(z,"configureMfa","onError","unknown_mfa_error"),new Error(`Unsupported MFA method: ${d}`)}t.startMfaFlow(u);try{await u.authenticate();let f=await t.getAuthenticatedUser();s(f)}catch(f){throw Y(z,"configureMfa","onError",f.privyErrorCode||"unknown_mfa_error"),f}}};Su=Pr.signMessage,Au=async(...d)=>{let p=await Cs(...d);return O.embeddedWallets.waitForTransactionConfirmation&&await p.wait(),p};let De=(()=>({isNewUserThisSession:_,isLinking:y,linkingHint:I,walletConnectionStatus:L,rpcConfig:O.rpcConfig,chains:O.chains,clientAnalyticsId:t.clientAnalyticsId,nativeTokenSymbolForChainId:d=>O.chains.find(p=>p.id===Number(d))?.nativeCurrency.symbol,captchaData:{ready:Le,enabled:O.captchaEnabled,execute:()=>{let d=window.turnstile;if(!d)return;let p=d.render("#cf-turnstile",{sitekey:Js,action:O.id,callback:$o,"error-callback":$t,"expired-callback":()=>{try{d.reset(Vt),$t(void 0),$o(void 0)}catch{$t("expired_and_failed_reset")}},"unsupported-callback":()=>{console.warn("Browser does not support Turnstile.")}});p||console.warn("Failed to render challenge."),tt(p)},remove:()=>{let d=window.turnstile;!d?.remove||!Vt||(d.remove(Vt),tt(void 0),$t(void 0),$o(void 0))},token:zo,error:Oi},initializeWalletProxy:async d=>{if(F)return F;let p=new Promise(M=>{Rt(()=>he=>M(he))}),u=new Promise(M=>setTimeout(()=>M(null),d)),f=await Promise.race([p,u]);return Rt(null),f},getAuthFlow:()=>t.authFlow,getAuthMeta:()=>t.authFlow?.meta,closePrivyModal:(d={shouldCallAuthOnSuccess:!0})=>{let p=n&&a&&l;d.shouldCallAuthOnSuccess&&p?(Y(z,"login","onComplete",l,_,!1),e.onSuccess?.(l,_)):U&&Y(z,"login","onError","exited_auth_flow"),t.authFlow=void 0,ne(null),b(null),k(!1),h(!1),P(!1),r(!1),t.createAnalyticsEvent("modal_closed")},connectWallet:Di,initLoginWithWallet:Mu,loginWithWallet:async()=>{if(!n)throw new Sr;if(!(t.authFlow instanceof xo))throw new v("Must initialize SIWE flow first.");let d,p;if(a)d=await t.link();else try{({user:d,isNewUser:p}=await t.authenticate())}catch(u){throw Y(z,"login","onError",u.privyErrorCode||"generic_connect_wallet_error"),u}s(d||l||null),P(p||!1),c(!0)},initLoginWithOAuth:async d=>{t.startAuthFlow(new Yt(d));let p=await t.authFlow.getAuthorizationUrl();p&&p.url&&window.location.assign(p.url)},loginWithOAuth:async()=>{if(!(t.authFlow instanceof Yt))throw new v("Must initialize OAuth flow before calling loginWithOAuth");let d,p;if(a)d=await t.link();else try{({user:d,isNewUser:p}=await t.authenticate())}catch(u){throw Y(z,"login","onError",u.privyErrorCode||"unknown_auth_error"),u}s(d),P(p||!1),c(!0)},initLoginWithEmail:async(d,p)=>{let u=new Eo(d,p);t.startAuthFlow(u);try{await u.sendCodeEmail()}catch(f){throw Y(z,"login","onError",f.privyErrorCode||"unknown_auth_error"),f}},initLoginWithSms:async(d,p)=>{let u=new To(d,p);t.startAuthFlow(u);try{await u.sendSmsCode()}catch(f){throw Y(z,"login","onError",f.privyErrorCode||"unknown_auth_error"),f}},resendEmailCode:async()=>{await t.authFlow?.sendCodeEmail()},resendSmsCode:async()=>{await t.authFlow?.sendSmsCode()},loginWithCode:async d=>{if(!n)throw new Sr;if(t.authFlow instanceof Eo)t.authFlow.meta.emailCode=d.trim();else if(t.authFlow instanceof To)t.authFlow.meta.smsCode=d.trim();else throw new v("Must initialize a passwordless code flow first");let p,u;a?p=await t.link():{user:p,isNewUser:u}=await t.authenticate(),s(p||l||null),P(u||!1),c(!0)},refreshUser:async()=>{let d=await t.getAuthenticatedUser();return s(d),d},walletProxy:F,createAnalyticsEvent:(d,p,u)=>t.createAnalyticsEvent(d,p,u),getUsdTokenPrice:d=>t.getUsdTokenPrice(d),recoverEmbeddedWallet:async()=>new Promise(async(d,p)=>{let u=l?.linkedAccounts.find(M=>M.type==="wallet"&&M.walletClientType==="privy"),f=await Wt();if(!f||!F||!u){p(new Error("Must have valid access token and Privy wallet to recover wallet"));return}j(!0);try{await F.connect({accessToken:f,address:u.address}),d(!0)}catch(M){ar(M)&&u.recoveryMethod==="privy"?(t.createAnalyticsEvent("embedded_wallet_pinless_recovery_started",{walletAddress:u.address}),(await F.recover({address:u.address,accessToken:f})).address||p(new Error("Unable to recover wallet")),t.createAnalyticsEvent("embedded_wallet_recovery_completed",{walletAddress:u.address}),d(!0)):ar(M)?(fe({recoverWallet:{privyWallet:u,onFailure:p,onSuccess:()=>d(!0)}}),Re("EMBEDDED_WALLET_RECOVERY_SCREEN")):p(M)}}),getFiatOnRampConfig:vs,updateWallets:()=>an()}))();ku=De.recoverEmbeddedWallet;let Du=$v(()=>({wallets:g}),[g]);return bo(_e.Provider,{value:Pr,children:bo(us.Provider,{value:z,children:_u(ss.Provider,{value:Du,children:[e.children,_u(ea.Provider,{value:De,children:[bo(Qp,{theme:{...O.appearance.palette||{}}}),bo(El,{appConfig:O,data:J,setModalData:fe,setInitialScreen:b,initialScreen:x,visible:o,authenticated:a,children:o?bo(tu,{}):null}),X&&H.id?bo(Pu,{appId:e.appId,clientAnalyticsId:t.clientAnalyticsId,origin:t.apiUrl,mfaMethods:l?.mfaMethods,mfaPromise:qt,onLoad:K,onLoadFailed:()=>null}):null]}),O.captchaEnabled&&bo(ou,{onLoad:()=>Li(!0)})]})})})};import{useContext as Yv}from"react";function Jv(e){let{init:t,submit:o}=Yv(_e);return St("configureMfa",e),{init:t,submit:o}}import{useContext as Qv}from"react";function Zv(){let{initEnrollment:e,submitEnrollment:t}=Qv(_e);return{initEnrollment:e,submitEnrollment:t}}import{useContext as Xv}from"react";function ew(e){let{login:t}=Xv(_e);return St("login",e),{login:t}}import{useContext as tw}from"react";function ow(e){let{logout:t}=tw(_e);return St("logout",e),{logout:t}}import{useContext as rw}from"react";function nw(e){let{connectWallet:t}=rw(_e);return St("connectWallet",e),{connectWallet:t}}import{useContext as iw}from"react";function aw(e){let{createWallet:t}=iw(_e);return St("createWallet",e),{createWallet:t}}export{ht as AsExternalProvider,Lr as ConnectorManager,Dr as PrivyClient,jv as PrivyProvider,re as PrivyProxyProvider,Ii as SUPPORTED_CHAINS,Fi as VERSION,Ge as WalletConnector,Wt as getAccessToken,nw as useConnectWallet,aw as useCreateWallet,ew as useLogin,ow as useLogout,Jv as useMfa,Zv as useMfaEnrollment,V as usePrivy,ls as useWallets};