@privy-io/react-auth 1.40.1-beta-20230921172309 → 1.40.1

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 +179 -175
  2. package/dist/index.js +129 -125
  3. package/package.json +1 -1
package/dist/esm/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import{getAddress as Xn}from"@ethersproject/address";import{StaticJsonRpcProvider as N1,Web3Provider as Na}from"@ethersproject/providers";import{useEffect as bt,useMemo as L1,useRef as bp,useState as Q}from"react";import{FetchError as Mp}from"ofetch";var Ye=class extends Error{constructor(o,r,n){super(o);r instanceof Error&&(this.cause=r),this.privyErrorCode=n}toString(){return`${this.type}${this.privyErrorCode?`-${this.privyErrorCode}`:""}: ${this.message}${this.cause?` [cause: ${this.cause}]`:""}`}},Ro=class extends Ye{constructor(o,r,n,i,a){super(n,i,a);this.type=o;this.status=r}},v=class extends Ye{constructor(o,r,n){super(o,r,n);this.type="client_error"}},Or=class extends v{constructor(){super("Request timed out",void 0,"client_request_timeout")}};var U=class extends Ye{constructor(o,r,n){super(o,r,n);this.type="connector_error"}},te=e=>{if(e instanceof Ye)return e;if(!(e instanceof Mp))return We(e);if(!e.response)return new Ro("api_error",null,e.message,e);let{type:t,message:o,error:r,code:n}=e.data;return new Ro(t||"ApiError",e.response.status,o||r,e,n)},We=e=>e instanceof Ye?e:e instanceof Error?new v(e.message,e):new v(`Internal error: ${e}`);var ar=class extends v{constructor(){super("Method called before `ready`. Ensure you wait until `ready` is true before calling.")}},Fe=class extends v{constructor(t="Embedded wallet error",o){super(t,o,"unknown_embedded_wallet_error")}},Dr=class extends v{constructor(t="User must be authenticated"){super(t,void 0,"must_be_authenticated")}},ko=class extends v{constructor(){super("User attempted to exit password dialog before confirming password",void 0,"embedded_wallet_password_unconfirmed")}};var Ur=()=>"/api/v1/sessions",Ba=()=>"/api/v1/sessions/logout",Ha=()=>"/api/v1/sessions/fork",Fr=()=>"/api/v1/sessions/fork/recover",Ga=()=>"/api/v1/siwe/init",za=()=>"/api/v1/siwe/authenticate",$a=()=>"/api/v1/siwe/link",Va=()=>"/api/v1/passwordless/init",qa=()=>"/api/v1/passwordless/authenticate",Ka=()=>"/api/v1/passwordless/link",ja=()=>"/api/v1/passwordless_sms/init",Ya=()=>"/api/v1/passwordless_sms/authenticate",Ja=()=>"/api/v1/passwordless_sms/link",Qa=()=>"/api/v1/oauth/init",Za=()=>"/api/v1/oauth/authenticate",Xa=()=>"/api/v1/oauth/link",es=()=>"/api/v1/siwe/unlink",ts=()=>"/api/v1/passwordless/unlink",os=()=>"/api/v1/passwordless_sms/unlink",rs=()=>"/api/v1/oauth/unlink",ns=()=>"/api/v1/analytics_events",is=()=>"/api/v1/plugins/moonpay_on_ramp/sign",as=()=>"/api/v1/custom_jwt_account/authenticate";var Wo=class{constructor(t){this.meta={token:t}}async authenticate(){if(!this.api)throw new v("Auth flow has no API instance");try{let t=as(),o=await this.api.post(t,{token:this.meta.token});return{user:o.user,token:o.token,refresh_token:o.refresh_token,is_new_user:o.is_new_user}}catch(t){throw te(t)}}async link(){throw new Error("Unimplemented")}};var lo=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=qa(),o=await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode});return{user:o.user,token:o.token,refresh_token:o.refresh_token,is_new_user:o.is_new_user}}catch(t){throw te(t)}}async link(){if(!this.api)throw new 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=Ka();return await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode})}catch(t){throw te(t)}}async sendCodeEmail(t,o){if(!this.api)throw new 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=Va();return await this.api.post(r,{email:this.meta.email,token:this.meta.captchaToken})}catch(r){throw te(r)}}};var Ot=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=Za(),o=await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode});return{user:o.user,token:o.token,refresh_token:o.refresh_token,is_new_user:o.is_new_user}}catch(t){let o=te(t);throw o.privyErrorCode?new 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=Xa();return await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode})}catch(t){throw te(t)}}async getAuthorizationUrl(){if(!this.api)throw new 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=Qa();return await this.api.post(t,{provider:this.meta.provider,redirect_to:window.location.href},{baseURL:this.api?.fallbackApiUrl})}catch(t){throw te(t)}}};var Be=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 co=class{constructor(t){this.createSiweMessage=(t,o,r,n,i,a,l)=>`${r} wants you to sign in with your Ethereum account:
1
+ import{getAddress as ei}from"@ethersproject/address";import{StaticJsonRpcProvider as L1,Web3Provider as Na}from"@ethersproject/providers";import{useEffect as bt,useMemo as M1,useRef as Ep,useState as Q}from"react";import{FetchError as Op}from"ofetch";var Ye=class extends Error{constructor(o,r,n){super(o);r instanceof Error&&(this.cause=r),this.privyErrorCode=n}toString(){return`${this.type}${this.privyErrorCode?`-${this.privyErrorCode}`:""}: ${this.message}${this.cause?` [cause: ${this.cause}]`:""}`}},Ro=class extends Ye{constructor(o,r,n,i,a){super(n,i,a);this.type=o;this.status=r}},v=class extends Ye{constructor(o,r,n){super(o,r,n);this.type="client_error"}},Mr=class extends v{constructor(){super("Request timed out",void 0,"client_request_timeout")}};var U=class extends Ye{constructor(o,r,n){super(o,r,n);this.type="connector_error"}},te=e=>{if(e instanceof Ye)return e;if(!(e instanceof Op))return We(e);if(!e.response)return new Ro("api_error",null,e.message,e);let{type:t,message:o,error:r,code:n}=e.data;return new Ro(t||"ApiError",e.response.status,o||r,e,n)},We=e=>e instanceof Ye?e:e instanceof Error?new v(e.message,e):new v(`Internal error: ${e}`);var ir=class extends v{constructor(){super("Method called before `ready`. Ensure you wait until `ready` is true before calling.")}},Fe=class extends v{constructor(t="Embedded wallet error",o){super(t,o,"unknown_embedded_wallet_error")}},Or=class extends v{constructor(t="User must be authenticated"){super(t,void 0,"must_be_authenticated")}},ko=class extends v{constructor(){super("User attempted to exit password dialog before confirming password",void 0,"embedded_wallet_password_unconfirmed")}};var Dr=()=>"/api/v1/sessions",Ba=()=>"/api/v1/sessions/logout",Ha=()=>"/api/v1/sessions/fork",Ur=()=>"/api/v1/sessions/fork/recover",Ga=()=>"/api/v1/siwe/init",za=()=>"/api/v1/siwe/authenticate",$a=()=>"/api/v1/siwe/link",Va=()=>"/api/v1/passwordless/init",qa=()=>"/api/v1/passwordless/authenticate",Ka=()=>"/api/v1/passwordless/link",ja=()=>"/api/v1/passwordless_sms/init",Ya=()=>"/api/v1/passwordless_sms/authenticate",Ja=()=>"/api/v1/passwordless_sms/link",Qa=()=>"/api/v1/oauth/init",Za=()=>"/api/v1/oauth/authenticate",Xa=()=>"/api/v1/oauth/link",es=()=>"/api/v1/siwe/unlink",ts=()=>"/api/v1/passwordless/unlink",os=()=>"/api/v1/passwordless_sms/unlink",rs=()=>"/api/v1/oauth/unlink",ns=()=>"/api/v1/analytics_events",is=()=>"/api/v1/plugins/moonpay_on_ramp/sign",as=()=>"/api/v1/custom_jwt_account/authenticate";var Wo=class{constructor(t){this.meta={token:t}}async authenticate(){if(!this.api)throw new v("Auth flow has no API instance");try{let t=as(),o=await this.api.post(t,{token:this.meta.token});return{user:o.user,token:o.token,refresh_token:o.refresh_token,is_new_user:o.is_new_user}}catch(t){throw te(t)}}async link(){throw new Error("Unimplemented")}};var lo=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=qa(),o=await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode});return{user:o.user,token:o.token,refresh_token:o.refresh_token,is_new_user:o.is_new_user}}catch(t){throw te(t)}}async link(){if(!this.api)throw new 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=Ka();return await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode})}catch(t){throw te(t)}}async sendCodeEmail(t,o){if(!this.api)throw new 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=Va();return await this.api.post(r,{email:this.meta.email,token:this.meta.captchaToken})}catch(r){throw te(r)}}};var Ot=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=Za(),o=await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode});return{user:o.user,token:o.token,refresh_token:o.refresh_token,is_new_user:o.is_new_user}}catch(t){let o=te(t);throw o.privyErrorCode?new 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=Xa();return await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode})}catch(t){throw te(t)}}async getAuthorizationUrl(){if(!this.api)throw new 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=Qa();return await this.api.post(t,{provider:this.meta.provider,redirect_to:window.location.href},{baseURL:this.api?.fallbackApiUrl})}catch(t){throw te(t)}}};var Be=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 co=class{constructor(t){this.createSiweMessage=(t,o,r,n,i,a,l)=>`${r} wants you to sign in with your Ethereum account:
2
2
  ${o}
3
3
 
4
4
  ${l}
@@ -9,7 +9,7 @@ Chain ID: ${t}
9
9
  Nonce: ${a}
10
10
  Issued At: ${i}
11
11
  Resources:
12
- - https://privy.io`;this.getNonceOnce=new Be(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(za(),{message:t,signature:o,chainId:this.wallet.chainId,walletClientType:this.wallet.walletClientType,connectorType:this.wallet.connectorType});return{user:r.user,token:r.token,refresh_token:r.refresh_token,is_new_user:r.is_new_user}}catch(t){throw te(t)}}async link(){if(!this.api)throw new v("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign();return await this.api.post($a(),{message:t,signature:o,chainId:this.wallet.chainId,walletClientType:this.wallet.walletClientType,connectorType:this.wallet.connectorType})}catch(t){throw te(t)}}async sign(){if(!this.api)throw new 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(Ga(),{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.",l=new Date().toISOString();return this.createSiweMessage(t,o,n,i,l,r,a)}};var po=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=Ya(),o=await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode});return{user:o.user,token:o.token,refresh_token:o.refresh_token,is_new_user:o.is_new_user}}catch(t){throw te(t)}}async link(){if(!this.api)throw new 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=Ja();return await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode})}catch(t){throw te(t)}}async sendSmsCode(t,o){if(!this.api)throw new 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=ja();return await this.api.post(r,{phoneNumber:this.meta.phoneNumber,token:this.meta.captchaToken})}catch(r){throw te(r)}}};import{v4 as xu}from"uuid";function it(e){return new Date(e*1e3)}function Op(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:it(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:it(o.verified_at)};t.push(i);break;case"phone":let a={number:o.phoneNumber,type:o.type,verifiedAt:it(o.verified_at)};t.push(a);break;case"google_oauth":let l={subject:o.subject,email:o.email,name:o.name,type:o.type,verifiedAt:it(o.verified_at)};t.push(l);break;case"twitter_oauth":let s={subject:o.subject,username:o.username,name:o.name,type:o.type,verifiedAt:it(o.verified_at)};t.push(s);break;case"discord_oauth":let c={subject:o.subject,username:o.username,email:o.email,type:o.type,verifiedAt:it(o.verified_at)};t.push(c);break;case"github_oauth":let T={subject:o.subject,username:o.username,name:o.name,email:o.email,type:o.type,verifiedAt:it(o.verified_at)};t.push(T);break;case"apple_oauth":let g={subject:o.subject,email:o.email,type:o.type,verifiedAt:it(o.verified_at)};t.push(g);break;case"custom_auth":t.push({type:o.type,customUserId:o.custom_user_id,verifiedAt:it(o.verified_at)});break;default:console.warn(`Unrecognized account type: ${r}. Please consider upgrading the Privy SDK.`)}}return t}function Dt(e,t){return e.sort((o,r)=>r.verifiedAt.getTime()-o.verifiedAt.getTime()),e.find(o=>o.type===t)}var Y=e=>e?.linkedAccounts.find(t=>t.type==="wallet"&&t.walletClient==="privy"),Dp=e=>e.linkedAccounts.filter(t=>t.type==="wallet"),Ut=(e,t)=>t==="all-users"&&!Y(e)||t==="users-without-wallets"&&!Dp(e)?.length;function xt(e){if(!e)return null;let t=Op(e.linked_accounts),o=Dt(t,"wallet"),r=Dt(t,"email"),n=Dt(t,"phone"),i=Dt(t,"google_oauth"),a=Dt(t,"twitter_oauth"),l=Dt(t,"discord_oauth"),s=Dt(t,"github_oauth"),c=Dt(t,"apple_oauth");return{id:e.id,createdAt:it(e.created_at),linkedAccounts:t,email:r&&{address:r?.address},phone:n&&{number:n?.number},wallet:o&&{address:o.address,chainType:o.chainType,chainId:o.chainId,walletClient:o.walletClient,walletClientType:o.walletClientType,connectorType:o.connectorType,recoveryMethod:o.recoveryMethod},google:i&&{subject:i.subject,email:i.email,name:i.name},twitter:a&&{subject:a.subject,username:a.username,name:a.name},discord:l&&{subject:l.subject,username:l.username,email:l.email},github:s&&{subject:s.subject,username:s.username,name:s.name,email:s.email},apple:c&&{subject:c.subject,email:c.email}}}import{getAddress as $s}from"@ethersproject/address";import vu from"eventemitter3";var ss="1.40.1-beta-20230921172309";var Br="4df5e2316331463a9130964bd6078dfa",ls="fe9c30fc-3bc5-4064-91e2-6ab5887f8f4d",cs="34357d3c125c2bcf2ce2bc3309d98715",ds="0x4AAAAAAAJFhr_rDU7HKpyw",Hr="https://auth.privy.io",ps=2e4,Je=1400,us=2500,ri=ss;var No="privy:token",ni="privy-token",Gr="privy:refresh_token",ii="privy-refresh-token",ms="privy-session",sr="privy:session_transfer_token",Fp="privy:wallet",ai=e=>`${Fp}:${e}`,si="privy:connectors",li="privy:connections";var at=1,zr="0x1",hs="https://api.moonpay.com/v1",fs="https://api.moonpay.com/v1",ys="pk_live_hirbpu0cVcLHrjktC9l7fbc9ctjv0SL",gs="pk_test_fqWjXZMSFwloh7orvJsRfjiUHXJqFzI";var ci=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)}},di=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 Bp(){return typeof window<"u"&&window.localStorage?new di:new ci}var j=Bp();import{isPossiblePhoneNumber as Hp}from"libphonenumber-js/min";var Vr=()=>{let e=window;if(!e.ethereum)return!1;if($r(window.ethereum,!0))return!0;if(e.ethereum.providers){for(let t of e.ethereum.providers)if($r(t,!0))return!0}return!1},lr=()=>{let e=window;if(!e.ethereum)return!1;if($r(window.ethereum,!1))return!0;if(e.ethereum.providers){for(let t of e.ethereum.providers)if($r(t,!1))return!0}return!!window.ethereum.isZerion},$r=(e,t)=>e.isMetaMask?e.isMetaMask&&!t?!0:!(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):!1,He=()=>!!("phantom"in window&&window?.phantom?.ethereum?.isPhantom),qr=()=>{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 vs=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,}))$/),ws=e=>Hp(String(e),"US"),Cs=(e,t)=>{let o=e.slice(0),r=[];for(;o.length;)r.push(o.splice(0,t));return r},Ft=(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}`},pi=e=>new Promise(t=>setTimeout(t,e)),bs=(e,t={})=>{let o=t.delayMs||150,r=t.maxAttempts||270;return new Promise(async(n,i)=>{let a=!1,l=0;for(;!a&&l<r;){if(t.abortSignal?.aborted)return;e().then(()=>{a=!0,n()},(...s)=>{a=!0,i(...s)}),l+=1,await pi(o)}a||i(new Error("Exceeded max attempts before resolving function"))})},Kr=(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 ui=e=>e.replace(/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g,""),cr=e=>typeof e=="string"?e:"0x"+e.toString(16);async function Es(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=[];Vr()&&i.push("metamask"),He()&&i.push("phantom"),o.ethereum&&o.ethereum.isBraveWallet&&i.push("brave"),r(i)}})}function jr(e){return`eip155:${String(Number(e))}`}var Qe=(e,t,o)=>{let r=Number(e),n=t.find(a=>a.id===r);if(!n)throw new U(`Unsupported chainId ${e}`,4901);let i;if(o.rpcUrls[r]?i=o.rpcUrls[r]:n.rpcUrls.infura?.http[0]?i=n.rpcUrls.infura.http[0]+"/"+Br:n.rpcUrls.blast?.http[0]?i=n.rpcUrls.blast.http[0]+"/"+ls:i=n.rpcUrls.default?.http[0],!i)throw new U(`No RPC url found for ${e}`);return i};import Zp from"@coinbase/wallet-sdk";import{jsx as xs,jsxs as Gp}from"react/jsx-runtime";var st=({style:e,...t})=>Gp("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:[xs("rect",{width:"1024",height:"1024",fill:"#0052FF",rx:100,ry:100}),xs("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 pt}from"@ethersproject/address";import{Web3Provider as Rs}from"@ethersproject/providers";import{default as Jp}from"eventemitter3";import{StaticJsonRpcProvider as Ps}from"@ethersproject/providers";import jp from"eventemitter3";var zp=["eth_sign","eth_populateTransactionRequest","eth_signTransaction","personal_sign","eth_signTypedData_v4"],Ts=e=>zp.includes(e);import{ErrorCode as $p}from"@ethersproject/logger";var Lo=class extends U{constructor(){super("Wallet timeout");this.type="wallet_error"}},Mo=class extends U{constructor(){super("User rejected connection");this.type="wallet_error"}},ct=e=>{if(e instanceof U)return e;if(e?.code&&e?.reason){let t=new Ie(e);return e.code===$p.ACTION_REJECTED&&(t.details=_e.E4001_USER_REJECTED_REQUEST),t}return e?.code?new Ie(e):new U("Unknown connector error",e)},lt=class extends Ye{constructor(o,r,n){super(o);this.type="provider_error";this.code=r,this.data=n}},Ie=class extends lt{constructor(o){let r=o;super(r.message,r.code,r.data);let n=Object.values(_e).find(i=>i.eipCode===r.code);this.details=n||_e.UNKNOWN_ERROR,r.code===-32002&&(r.message?.includes("already pending for origin")?r.message?.includes("wallet_requestPermissions")?this.details=_e.E32002_CONNECTION_ALREADY_PENDING:this.details=_e.E32002_REQUEST_ALREADY_PENDING:r.message?.includes("Already processing")&&r.message.includes("eth_requestAccounts")&&(this.details=_e.E32002_WALLET_LOCKED))}},Vp={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}},qp={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}},Kp={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}},_e={UNKNOWN_ERROR:{eipCode:0,message:"Unknown error",detail:"Unknown error",retryable:!0},...Kp,...qp},Tt={...Vp,..._e};var Yp=12e4,mi=(e=new Lo,t=Yp)=>new Promise((o,r)=>setTimeout(()=>{r(e)},t)),Z=class{constructor(t){this.removeListener=(t,o)=>{if(this.walletProvider)try{return this.walletProvider.removeListener(t,o)}catch{console.warn("Unable to remove wallet provider listener")}};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._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 U(`A wallet request of type ${t.method} was made before setting a wallet provider.`);return Promise.race([this.walletProvider.request(t),mi()]).catch(o=>{throw ct(o)})}},Bt=class extends Error{constructor(o,r,n){super(o);this.code=r,this.data=n}},Yr=class extends jp{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 Ps(Qe(a,this.chains,n))}async handleSendTransaction(o){if(!o.params||!Array.isArray(o.params))throw new Bt(`Invalid params for ${o.method}`,4200);let r=o.params[0];if(!await Pt()||!this.address)throw new Bt("Disconnected",4900);return(await Ss(r)).transactionHash}handleSwitchEthereumChain(o){if(!o.params||!Array.isArray(o.params))throw new Bt(`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 Bt(`Invalid params for ${o.method}`,4200);this.chainId=Number(r),this.provider=new Ps(Qe(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 _s(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:cr(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 cr(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(Ts(o.method)){let r=await Pt();if(await As(),!r||!this.address)throw new Bt("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 Bt("Disconnected",4900)}}else return this.provider.send(o.method,o.params)}async connect(){let o=await Pt();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}}},dt=class extends Z{constructor(o){super(o)}},Ht=class extends Z{constructor(t){super(t)}sendAsync(t,o){throw new Error("sendAsync is no longer supported by EIP-1193. Use the request method instead.")}};var Qp=(e,t)=>{switch(t){case"coinbase_wallet":return e.message.includes("addEthereumChain");default:return e.code===4902||e.message?.includes("4902")}},Ne=class extends Jp{constructor(o,r){super();this.onAccountsChanged=o=>{o.length===0?this.onDisconnect():this.syncAccounts(o)};this.onChainChanged=o=>{this.wallets.forEach(r=>{r.chainId=jr(o),this.walletClientType==="privy"&&j.put(ai(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.connected=!1,this.initialized=!1}buildConnectedWallet(o,r){let n=async()=>!!this.wallets.find(i=>pt(i.address)===pt(o));return{address:pt(o),chainId:r,switchChain:async i=>{if(!n)throw new U("Wallet is not currently connected.");let a=this.wallets.find(g=>pt(g.address)===pt(o))?.chainId;if(!a)throw new U("Unable to determine current chainId.");let l,s;if(typeof i=="number"?(l=`0x${i.toString(16)}`,s=i):(l=i,s=Number(i)),a===jr(l))return;let c=this.chains.find(g=>g.id===s);if(!c)throw new U(`Unsupported chainId: ${i}`);let T=async()=>{await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[{chainId:l}]})};try{return await T()}catch(g){if(Qp(g,this.walletClientType))return await this.proxyProvider.request({method:"wallet_addEthereumChain",params:[{chainId:l,chainName:c.name,nativeCurrency:c.nativeCurrency,rpcUrls:[c.rpcUrls.public?.http[0]??""],blockExplorerUrls:[c.blockExplorers?.default.url??""]}]}),T();throw this.walletClientType==="rainbow"&&g.message?.includes("wallet_switchEthereumChain")?new U(`Rainbow does not support the chainId ${r}`):g}},connectedAt:Date.now(),walletClientType:this.walletClientType,connectorType:this.connectorType,isConnected:n,getEthereumProvider:async()=>{if(!await n())throw new U("Wallet is not currently connected.");return this.proxyProvider},getEthersProvider:async()=>{if(!await n())throw new U("Wallet is not currently connected.");return new Rs(new dt(this.proxyProvider))},getWeb3jsProvider:async()=>{if(!await n())throw new U("Wallet is not currently connected.");return new Ht(this.proxyProvider)},sign:async i=>{if(!await n())throw new U("Wallet is not currently connected.");return await this.sign(i)},disconnect:()=>{this.disconnect()}}}async syncAccounts(o){let r=o;if(r===void 0){let c=await this.proxyProvider.request({method:"eth_accounts"});Array.isArray(c)&&(r=c)}if(!r||!Array.isArray(r)||r.length<=0||!r[0])return;let n=r[0],i=pt(n),a=[],l;if(this.walletClientType==="privy"){l=j.get(ai(i))||zr;try{await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[{chainId:l}]})}catch{console.warn(`Unable to switch embedded wallet to chain ID ${l} on initialization`)}}else try{let c=await this.proxyProvider.request({method:"eth_chainId"});if(typeof c!="string")throw new Error("Invalid chainId returned from provider");l=c}catch(c){console.warn(`Failed to get chainId from provider, defaulting to ${zr}`,c),l=zr}let s=jr(l);a.find(c=>pt(c.address)===i)||a.push(this.buildConnectedWallet(pt(n),s)),Jr(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=>pt(n)===pt(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 Rs(new dt(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 Xp=e=>{let t=`https://mainnet.infura.io/v3/${Br}`,o=1;return e.makeWeb3Provider(t,o)},Qr,Zr=class extends Ne{constructor(o){super("coinbase_wallet",o);this.connectorType="coinbase_wallet";this.proxyProvider=new Z,this.subscribeListeners(),Qr||(Qr=new Zp({appName:"Privy",darkMode:!1,headlessMode:!1,enableMobileWalletLink:!0})),this.proxyProvider.setWalletProvider(Xp(Qr)),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(){Qr.disconnect()}get walletBranding(){return{name:"Coinbase Wallet",icon:st}}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new U("Unable to retrieve accounts");this.connected=!0,await this.syncAccounts([o[0]])}catch(o){throw ct(o)}}};import{jsx as ks}from"react/jsx-runtime";var Oo=({...e})=>ks("svg",{width:"15",height:"15",viewBox:"0 0 15 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e,children:ks("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 Xr=class extends Ne{constructor(o,r){super("privy",r);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:[cr(o?.chainId||"0x1")]}),this.getConnectedWallet()):null}get walletBranding(){return{name:"Privy Wallet",icon:Oo}}disconnect(){this.connected=!1}async promptConnection(){}};import{getAddress as mw}from"@ethersproject/address";import{Web3Provider as fw}from"@ethersproject/providers";import{isMobile as tu}from"react-device-detect";import{jsx as Le,jsxs as eu}from"react/jsx-runtime";var be=({style:e,...t})=>eu("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:[Le("style",{children:".s1{stroke-linecap:round;stroke-linejoin:round}.s2{fill:#e4761b;stroke:#e4761b}.s3{fill:#f6851b;stroke:#f6851b}"}),Le("path",{fill:"#e2761b",stroke:"#e2761b",className:"s1",d:"m274.1 35.5-99.5 73.9L193 65.8z"}),Le("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"}),Le("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"}),Le("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"}),Le("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"}),Le("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"}),Le("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"}),Le("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"}),Le("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"}),Le("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"}),Le("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"}),Le("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 en=class extends Ne{constructor(o){super("metamask",o);this.connectorType="injected";this.proxyProvider=new Z,this.subscribeListeners();let r=window,n=r.ethereum,i=r.ethereum.providers||[];for(let a of i)if(a.isMetaMask){n=a;break}this.proxyProvider.setWalletProvider(n),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{!tu&&Vr()&&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 U("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw ct(o)}}};import{jsx as Ws,jsxs as ou}from"react/jsx-runtime";var Ge=({style:e,...t})=>ou("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:[Ws("rect",{width:"108",height:"108",rx:"23",fill:"#AB9FF2"}),Ws("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 tn=class extends Ne{constructor(o){super("phantom",o);this.connectorType="injected";this.proxyProvider=new Z,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:Ge}}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 U("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw ct(o)}}};import{EthereumProvider as mu,OPTIONAL_EVENTS as hu,OPTIONAL_METHODS as fu}from"@walletconnect/ethereum-provider";import yi from"@walletconnect/qrcode-modal";import{isAndroid as yu,isMobile as gu}from"react-device-detect";import{createContext as nu,useContext as iu,useEffect as hi,useRef as au,useState as Ns}from"react";import{jsx as ru}from"react/jsx-runtime";function Is(e){return ru("link",{rel:"prefetch",href:e.src})}var b=()=>{throw new Error("You need to wrap your application with the <PrivyProvider> initialized with your app id.")};import{jsx as su,jsxs as lu}from"react/jsx-runtime";var Ze="LANDING",Ls=nu({ready:!1,app:null,currentScreen:Ze,lastScreen:Ze,navigate:b,navigateBack:b,resetNavigation:b,setModalData:b,outerClickRef:null}),Ms=e=>{let t=e.appConfig,o=e.authenticated,r=e.visible,[n,i]=Ns(e.initialScreen||Ze),[a,l]=Ns(e.initialScreen||Ze);hi(()=>{o||i(Ze)},[o]),hi(()=>{r||(l(Ze),i(Ze))},[r]),hi(()=>{e.initialScreen&&n===Ze&&(i(e.initialScreen),l(e.initialScreen))},[e.initialScreen]);let s=e.initialScreen&&n===Ze?e.initialScreen:n,c=au(null),T={ready:!!t?.id,app:t,data:e.data,setModalData:e.setModalData,currentScreen:s,lastScreen:a,navigate:g=>{l(n),i(g)},navigateBack:()=>{i(a)},resetNavigation:()=>{e.setInitialScreen(null),l(Ze),i(Ze)},outerClickRef:c};return lu(Ls.Provider,{value:T,children:[(typeof t?.appearance?.logo=="string"||t?.appearance?.logo?.type==="img")&&su(Is,{src:typeof t.appearance.logo=="string"?t.appearance.logo:t.appearance.logo.props.src}),e.children]})},y=()=>iu(Ls);import{jsx as Do,jsxs as cu}from"react/jsx-runtime";var Uo=({style:e,...t})=>{let{app:o}=y();return cu("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:[Do("rect",{width:"28",height:"28",rx:"3",fill:o?.appearance.palette.colorScheme==="dark"?"#3396ff":"#141414"}),Do("g",{clipPath:"url(#clip0_1765_9946)",children:Do("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"})}),Do("defs",{children:Do("clipPath",{id:"clip0_1765_9946",children:Do("rect",{width:"20",height:"12.2531",fill:"white",transform:"translate(4 8)"})})})]})};import{isAndroid as Ds,isDesktop as du,isMobileOnly as pu}from"react-device-detect";var on=e=>{let t;try{t=new URL(e).hostname}catch{return}for(let[o,r]of Object.entries(Us))if(r.hostname===t)return{walletClientType:o,entry:r}};var Us={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:"a1cb2777-f8f9-49b0-53fd-443d20ee0b00",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"}}},Fs=(e,t="md")=>`https://registry.walletconnect.com/v2/logo/${t}/${e}`;function fi(e){return{name:e.displayName||"",universalLink:e.mobile.universal||"",deepLink:e.mobile.native||""}}function uu(e){let t="mobile";return Object.values(e).filter(o=>!!o[t].universal||!!o[t].native).map(o=>fi(o))}function Bs(){return uu(Us)}function Hs(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 Gs(e,t){return Ds?e:Hs(e,fi(t))}var zs="WALLETCONNECT_DEEPLINK_CHOICE";function Os(e){let t=e.href.split("?")[0];j.put(zs,{...e,href:t})}var dr=(e,t)=>{if(!e||du){j.del(zs);return}if(Ds){Os({name:"Unknown",href:t||"wc:"});return}else if(pu){let o=Hs(t||"wc:",fi(e));Os({name:e?.displayName||"",href:o})}};var pr=class extends Ne{constructor(o,r,n,i){super(i||"unknown",n);this.connectorType="wallet_connect_v2";this.walletConnectCloudProjectId=o,this.rpcConfig=r,this.proxyProvider=new Z,this.createProvider().then(a=>{if(this.provider=a,this.proxyProvider.setWalletProvider(a),this.subscribeListeners(),a.session){if(this.walletProvider.session?.peer.metadata.url){let l=on(this.walletProvider.session?.peer.metadata.url);this.walletEntry=l?.entry,this.walletClientType=l?.walletClientType||"unknown",dr(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:Fs(this.walletEntry.image_id)}:{name:ui(this.walletProvider.session?.peer.metadata.name||"")||"WalletConnect",icon:this.walletProvider.session?.peer.metadata.icons?.[0]||Uo}}resetConnection(){this.walletProvider&&this.walletProvider.connected&&(this.walletProvider.signer.session=void 0,this.walletEntry=void 0,dr(void 0),this.onDisconnect())}async promptConnection(){if(this.provider)return new Promise((o,r)=>{let n=()=>{r(new Mo)};this.onQrModalClosed=n,(async()=>{let a="",l=await Promise.race([this.walletProvider.enable(),mi()]);if(l.length>0&&(a=l[0]),!a||a==="")throw new U("Unable to retrieve address");if(this.walletProvider.session?.peer.metadata.url){let s=on(this.walletProvider.session?.peer.metadata.url);this.walletEntry=s?.entry,this.walletClientType=s?.walletClientType||"unknown"}this.connected=!0,await this.syncAccounts(l),o()})().catch(a=>{if(a){r(ct(a));return}r(new U("Unknown error during connection"))}).finally(()=>yi.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=Qe(n.id,this.chains,this.rpcConfig);i&&(o[n.id]=i)}let r=await mu.init({projectId:this.walletConnectCloudProjectId,chains:[1],optionalChains:this.chains.map(n=>n.id),optionalEvents:hu,optionalMethods:fu,rpcMap:o,showQrModal:!1});return r.on("display_uri",n=>{if(yu)window.open(n,"_self");else if(gu&&this.walletEntry){dr(this.walletEntry,n);let a=Gs(n,this.walletEntry);window.open(a,"_self","noopener,noreferrer")}else yi.open(n,()=>{this.onQrModalClosed&&this.onQrModalClosed()},{mobileLinks:Bs().map(i=>i.name)})}),r.on("connect",()=>{if(yi.close(),r.session?.peer.metadata.url){let n=on(r.session?.peer.metadata.url);this.walletEntry=n?.entry,this.walletClientType=n?.walletClientType||"unknown",dr(this.walletEntry)}}),r}async enableProvider(){return this.walletProvider.connected?Promise.resolve(this.walletProvider.accounts):await this.walletProvider.enable()}};var gi=e=>{let t=localStorage.getItem("-walletlink:https://www.walletlink.org:Addresses");return t?!!e?.linkedAccounts.filter(r=>r.type=="wallet"&&r.address===$s(t)).length:!1},ur=class extends vu{constructor(o,r,n){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 Z:r.proxyProvider};this.walletConnectCloudProjectId=o,this.rpcConfig=r,this.chains=n,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||(j.get(si)&&(j.getKeys().forEach(o=>{o.startsWith("walletconnect")&&j.del(o)}),j.del(si)),Es().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}})),(qr()||j.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){if(!this.findWalletConnector("embedded","privy")){let i=new Yr(o,r,this.rpcConfig,this.chains),a=new Xr(i,this.chains);this.addWalletConnector(a)}}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 pr&&n.resetConnection(),n;let a=(()=>{switch(o){case"injected":switch(r){case"phantom":return He()?new tn(this.chains):null;case"metamask":default:return lr()?new en(this.chains):null}case"coinbase_wallet":return new Zr(this.chains);case"wallet_connect_v2":return new pr(this.walletConnectCloudProjectId,this.rpcConfig,this.chains)}})();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=j.get(li);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}));j.put(li,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=$s(o),this.emit("walletsUpdated")}};function Jr(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 wu}from"ofetch";var Cu=[Ur(),Fr()],bu=e=>{let t=new AbortController;return setTimeout(()=>t.abort(),e),t.signal},rn=class{constructor(t,o,r){this.appId=t,this.sdkVersion=ri,this.client=o,this.defaults=r,this.fallbackApiUrl=o.fallbackApiUrl,this.baseFetch=wu.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-client",`react-auth:${this.sdkVersion}`);let l=!Cu.includes(n.toString());if(!a.has("authorization")&&l){let s=await this.client.getAccessToken();s!==null&&a.set("authorization",`Bearer ${s}`)}i.headers=a,i.signal||(i.signal=bu(this.defaults.timeout))},onRequestError:({error:n})=>{if(n instanceof DOMException&&n.name==="AbortError")throw new Or}})}async get(t,o){try{return await this.baseFetch(t,o)}catch(r){throw te(r)}}async post(t,o,r){try{return await this.baseFetch(t,{method:"POST",...o?{body:o}:{},...r})}catch(n){throw te(n)}}async delete(t,o){try{return await this.baseFetch(t,{method:"DELETE",...o})}catch(r){throw te(r)}}};import mr from"js-cookie";function Vs(e){return e instanceof lo?"email":e instanceof po?"sms":e instanceof co?"siwe":e instanceof Wo?"custom_auth":e instanceof Ot?e.meta.provider:null}import*as qs from"jose";var ut=class{static parse(t){try{return new ut(t)}catch{return null}}constructor(t){this.value=t,this._decoded=qs.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 Eu=30,nn=class{constructor(){this.authenticateOnce=new Be(async t=>this._authenticate(t)),this.linkOnce=new Be(async t=>this._link(t)),this.refreshOnce=new Be(this._refresh.bind(this)),this.destroyOnce=new Be(this._destroy.bind(this)),this.forkSessionOnce=new Be(this._forkSession.bind(this))}get token(){try{let t=j.get(No);return typeof t=="string"?new ut(t).value:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get refreshToken(){try{let t=j.get(Gr);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get forkedToken(){try{let t=j.get(sr);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get mightHaveServerCookies(){try{let t=mr.get(ms);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=ut.parse(this.token);return t!==null&&!t.isExpired(Eu)}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=Vs(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:xt(n),isNewUser:i}}catch(o){throw console.warn("Error authenticating session"),We(o)}}async _link(t){try{let o=await t.link();return xt(o)}catch(o){throw console.warn("Error linking account"),We(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(Ur(),a,{headers:i}),r&&this.clearForkedToken()}else if(r)n=await this.api.post(Fr(),{refresh_token:r}),this.clearForkedToken();else return null;return this.storeToken(n.token),this.storeRefreshToken(n.refresh_token),xt(n.user)}catch(n){if(n instanceof Ro&&n.privyErrorCode==="missing_or_invalid_token")return console.warn("Unable to refresh tokens - token is missing or no longer valid"),this.destroyLocalState(),null;throw We(n)}}async _destroy(){try{await this.api?.post(Ba(),{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(Ha(),{refresh_token:t});return this.storeToken(o.token),this.storeRefreshToken(o.refresh_token),o.new_session_refresh_token}catch(o){throw We(o)}}destroyLocalState(){this.storeToken(null),this.storeRefreshToken(null),this.clearForkedToken()}storeToken(t){if(typeof t=="string"){if(j.put(No,t),!this.client?.useServerCookies){let o=ut.parse(t)?.expiration;mr.set(ni,t,{sameSite:"Strict",secure:!0,expires:o?new Date(o*1e3):void 0})}}else j.del(No),mr.remove(ni)}storeRefreshToken(t){typeof t=="string"?(j.put(Gr,t),this.client?.useServerCookies||mr.set(ii,t,{sameSite:"Strict",secure:!0,expires:30})):(j.del(Gr),mr.remove(ii))}clearForkedToken(){j.del(sr)}};var vi,hr=class{constructor(t){this.apiUrl=t.apiUrl||Hr,this.fallbackApiUrl=this.apiUrl,this.useServerCookies=!1,this.timeout=t.timeout||ps,this.appId=t.appId,this.clientAnalyticsId=typeof window>"u"?null:xu(),vi||(vi=new nn),this.session=vi,this.api=this.generateApi(),this.session.client=this}initializeConnectorManager(t,o,r){this.connectors||(this.connectors=new ur(t,o,r))}generateApi(){let t=new rn(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}async unlinkEmail(t){try{let o=await this.api.post(ts(),{address:t});return xt(o)}catch(o){throw We(o)}}async unlinkPhone(t){try{let o=await this.api.post(os(),{phoneNumber:t});return xt(o)}catch(o){throw We(o)}}async unlinkWallet(t){try{let o=await this.api.post(es(),{address:t});return xt(o)}catch(o){throw We(o)}}async unlinkOAuth(t,o){try{let r=await this.api.post(rs(),{provider:t,subject:o});return xt(r)}catch(r){throw We(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(ns(),{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(is(),t)}catch(o){throw We(o)}}async getAuthenticatedUser(){return this.session.hasRefreshCredentials()||this.session.hasRecoveryCredentials()?this.session.refresh():null}async getAccessToken(t){return this.session.hasActiveToken()?ut.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,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 We(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()}};import"wicg-inert";import{disableBodyScroll as Xg,clearAllBodyScrollLocks as e1}from"body-scroll-lock";import{useRef as t1,useCallback as o1}from"react";import{useEffect as Yd}from"react";import r1 from"react-dom";import ka from"styled-components";import{createContext as Tu,useContext as Pu}from"react";var wi=Tu({isNewUserThisSession:!1,isLinking:!1,linkingHint:null,walletConnectionStatus:null,rpcConfig:{rpcUrls:{}},chains:[],nativeTokenSymbolForChainId:b,captchaData:{enabled:!1,ready:!1,execute:b,remove:b,token:void 0,error:void 0},initializeWalletProxy:b,getAuthMeta:b,getAuthFlow:b,closePrivyModal:b,connectWallet:b,initLoginWithWallet:b,loginWithWallet:b,loginWithCode:b,initLoginWithEmail:b,initLoginWithSms:b,resendEmailCode:b,resendSmsCode:b,initLoginWithOAuth:b,loginWithOAuth:b,refreshUser:b,walletProxy:null,createAnalyticsEvent:b,getUsdTokenPrice:b,recoverEmbeddedWallet:b,getFiatOnRampConfig:b,updateWallets:b}),P=()=>Pu(wi);import{createContext as _u,useContext as Su}from"react";var Xe=_u({ready:!1,authenticated:!1,user:null,walletConnectors:null,connectWallet:b,login:b,linkEmail:b,linkPhone:b,linkWallet:b,linkGoogle:b,linkTwitter:b,linkDiscord:b,linkGithub:b,linkApple:b,logout:b,getAccessToken:b,getEthereumProvider:b,getEthersProvider:b,getWeb3jsProvider:b,unlinkEmail:b,unlinkPhone:b,unlinkWallet:b,unlinkGoogle:b,unlinkTwitter:b,unlinkDiscord:b,unlinkGithub:b,unlinkApple:b,setActiveWallet:b,forkSession:b,createWallet:b,signMessage:b,sendTransaction:b,exportWallet:b,setWalletPassword:b}),$=()=>Su(Xe);import Si from"styled-components";import zt,{css as xi}from"styled-components";import bi from"styled-components";import{Fragment as Ru,jsx as Ci,jsxs as ku}from"react/jsx-runtime";var an=({success:e,fail:t})=>ku(Ru,{children:[Ci(uo,{className:e?"success":t?"fail":""}),Ci(Ei,{className:e?"success":t?"fail":""})]}),uo=bi.span`
12
+ - https://privy.io`;this.getNonceOnce=new Be(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(za(),{message:t,signature:o,chainId:this.wallet.chainId,walletClientType:this.wallet.walletClientType,connectorType:this.wallet.connectorType});return{user:r.user,token:r.token,refresh_token:r.refresh_token,is_new_user:r.is_new_user}}catch(t){throw te(t)}}async link(){if(!this.api)throw new v("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign();return await this.api.post($a(),{message:t,signature:o,chainId:this.wallet.chainId,walletClientType:this.wallet.walletClientType,connectorType:this.wallet.connectorType})}catch(t){throw te(t)}}async sign(){if(!this.api)throw new 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(Ga(),{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.",l=new Date().toISOString();return this.createSiweMessage(t,o,n,i,l,r,a)}};var po=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=Ya(),o=await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode});return{user:o.user,token:o.token,refresh_token:o.refresh_token,is_new_user:o.is_new_user}}catch(t){throw te(t)}}async link(){if(!this.api)throw new 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=Ja();return await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode})}catch(t){throw te(t)}}async sendSmsCode(t,o){if(!this.api)throw new 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=ja();return await this.api.post(r,{phoneNumber:this.meta.phoneNumber,token:this.meta.captchaToken})}catch(r){throw te(r)}}};import{v4 as Tu}from"uuid";function it(e){return new Date(e*1e3)}function Dp(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:it(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:it(o.verified_at)};t.push(i);break;case"phone":let a={number:o.phoneNumber,type:o.type,verifiedAt:it(o.verified_at)};t.push(a);break;case"google_oauth":let l={subject:o.subject,email:o.email,name:o.name,type:o.type,verifiedAt:it(o.verified_at)};t.push(l);break;case"twitter_oauth":let s={subject:o.subject,username:o.username,name:o.name,type:o.type,verifiedAt:it(o.verified_at)};t.push(s);break;case"discord_oauth":let c={subject:o.subject,username:o.username,email:o.email,type:o.type,verifiedAt:it(o.verified_at)};t.push(c);break;case"github_oauth":let P={subject:o.subject,username:o.username,name:o.name,email:o.email,type:o.type,verifiedAt:it(o.verified_at)};t.push(P);break;case"apple_oauth":let y={subject:o.subject,email:o.email,type:o.type,verifiedAt:it(o.verified_at)};t.push(y);break;case"custom_auth":t.push({type:o.type,customUserId:o.custom_user_id,verifiedAt:it(o.verified_at)});break;default:console.warn(`Unrecognized account type: ${r}. Please consider upgrading the Privy SDK.`)}}return t}function Dt(e,t){return e.sort((o,r)=>r.verifiedAt.getTime()-o.verifiedAt.getTime()),e.find(o=>o.type===t)}var Y=e=>e?.linkedAccounts.find(t=>t.type==="wallet"&&t.walletClient==="privy"),Up=e=>e.linkedAccounts.filter(t=>t.type==="wallet"),Ut=(e,t)=>t==="all-users"&&!Y(e)||t==="users-without-wallets"&&!Up(e)?.length;function xt(e){if(!e)return null;let t=Dp(e.linked_accounts),o=Dt(t,"wallet"),r=Dt(t,"email"),n=Dt(t,"phone"),i=Dt(t,"google_oauth"),a=Dt(t,"twitter_oauth"),l=Dt(t,"discord_oauth"),s=Dt(t,"github_oauth"),c=Dt(t,"apple_oauth");return{id:e.id,createdAt:it(e.created_at),linkedAccounts:t,email:r&&{address:r?.address},phone:n&&{number:n?.number},wallet:o&&{address:o.address,chainType:o.chainType,chainId:o.chainId,walletClient:o.walletClient,walletClientType:o.walletClientType,connectorType:o.connectorType,recoveryMethod:o.recoveryMethod},google:i&&{subject:i.subject,email:i.email,name:i.name},twitter:a&&{subject:a.subject,username:a.username,name:a.name},discord:l&&{subject:l.subject,username:l.username,email:l.email},github:s&&{subject:s.subject,username:s.username,name:s.name,email:s.email},apple:c&&{subject:c.subject,email:c.email}}}import{getAddress as $s}from"@ethersproject/address";import wu from"eventemitter3";var ss="1.40.1";var Fr="4df5e2316331463a9130964bd6078dfa",ls="fe9c30fc-3bc5-4064-91e2-6ab5887f8f4d",cs="34357d3c125c2bcf2ce2bc3309d98715",ds="0x4AAAAAAAJFhr_rDU7HKpyw",Br="https://auth.privy.io",ps=2e4,Je=1400,us=2500,ni=ss;var No="privy:token",ii="privy-token",Hr="privy:refresh_token",ai="privy-refresh-token",ms="privy-session",ar="privy:session_transfer_token",Bp="privy:wallet",si=e=>`${Bp}:${e}`,li="privy:connectors",ci="privy:connections";var at=1,Gr="0x1",hs="https://api.moonpay.com/v1",fs="https://api.moonpay.com/v1",ys="pk_live_hirbpu0cVcLHrjktC9l7fbc9ctjv0SL",gs="pk_test_fqWjXZMSFwloh7orvJsRfjiUHXJqFzI";var di=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)}},pi=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 Hp(){return typeof window<"u"&&window.localStorage?new pi:new di}var j=Hp();import{isPossiblePhoneNumber as Gp}from"libphonenumber-js/min";var $r=()=>{let e=window;if(!e.ethereum)return!1;if(zr(window.ethereum,!0))return!0;if(e.ethereum.providers){for(let t of e.ethereum.providers)if(zr(t,!0))return!0}return!1},sr=()=>{let e=window;if(!e.ethereum)return!1;if(zr(window.ethereum,!1))return!0;if(e.ethereum.providers){for(let t of e.ethereum.providers)if(zr(t,!1))return!0}return!!window.ethereum.isZerion},zr=(e,t)=>e.isMetaMask?e.isMetaMask&&!t?!0:!(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):!1,He=()=>!!("phantom"in window&&window?.phantom?.ethereum?.isPhantom),Vr=()=>{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 vs=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,}))$/),ws=e=>Gp(String(e),"US"),Cs=(e,t)=>{let o=e.slice(0),r=[];for(;o.length;)r.push(o.splice(0,t));return r},Ft=(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}`},ui=e=>new Promise(t=>setTimeout(t,e)),bs=(e,t={})=>{let o=t.delayMs||150,r=t.maxAttempts||270;return new Promise(async(n,i)=>{let a=!1,l=0;for(;!a&&l<r;){if(t.abortSignal?.aborted)return;e().then(()=>{a=!0,n()},(...s)=>{a=!0,i(...s)}),l+=1,await ui(o)}a||i(new Error("Exceeded max attempts before resolving function"))})},qr=(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 mi=e=>e.replace(/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g,""),lr=e=>typeof e=="string"?e:"0x"+e.toString(16);async function Es(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=[];$r()&&i.push("metamask"),He()&&i.push("phantom"),o.ethereum&&o.ethereum.isBraveWallet&&i.push("brave"),r(i)}})}function Kr(e){return`eip155:${String(Number(e))}`}var Qe=(e,t,o)=>{let r=Number(e),n=t.find(a=>a.id===r);if(!n)throw new U(`Unsupported chainId ${e}`,4901);let i;if(o.rpcUrls[r]?i=o.rpcUrls[r]:n.rpcUrls.infura?.http[0]?i=n.rpcUrls.infura.http[0]+"/"+Fr:n.rpcUrls.blast?.http[0]?i=n.rpcUrls.blast.http[0]+"/"+ls:i=n.rpcUrls.default?.http[0],!i)throw new U(`No RPC url found for ${e}`);return i};import Xp from"@coinbase/wallet-sdk";import{jsx as xs,jsxs as zp}from"react/jsx-runtime";var st=({style:e,...t})=>zp("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:[xs("rect",{width:"1024",height:"1024",fill:"#0052FF",rx:100,ry:100}),xs("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 pt}from"@ethersproject/address";import{Web3Provider as Rs}from"@ethersproject/providers";import{default as Qp}from"eventemitter3";import{StaticJsonRpcProvider as Ps}from"@ethersproject/providers";import Yp from"eventemitter3";var $p=["eth_sign","eth_populateTransactionRequest","eth_signTransaction","personal_sign","eth_signTypedData_v4"],Ts=e=>$p.includes(e);import{ErrorCode as Vp}from"@ethersproject/logger";var Lo=class extends U{constructor(){super("Wallet timeout");this.type="wallet_error"}},Mo=class extends U{constructor(){super("User rejected connection");this.type="wallet_error"}},ct=e=>{if(e instanceof U)return e;if(e?.code&&e?.reason){let t=new Ie(e);return e.code===Vp.ACTION_REJECTED&&(t.details=_e.E4001_USER_REJECTED_REQUEST),t}return e?.code?new Ie(e):new U("Unknown connector error",e)},lt=class extends Ye{constructor(o,r,n){super(o);this.type="provider_error";this.code=r,this.data=n}},Ie=class extends lt{constructor(o){let r=o;super(r.message,r.code,r.data);let n=Object.values(_e).find(i=>i.eipCode===r.code);this.details=n||_e.UNKNOWN_ERROR,r.code===-32002&&(r.message?.includes("already pending for origin")?r.message?.includes("wallet_requestPermissions")?this.details=_e.E32002_CONNECTION_ALREADY_PENDING:this.details=_e.E32002_REQUEST_ALREADY_PENDING:r.message?.includes("Already processing")&&r.message.includes("eth_requestAccounts")&&(this.details=_e.E32002_WALLET_LOCKED))}},qp={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}},Kp={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}},jp={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}},_e={UNKNOWN_ERROR:{eipCode:0,message:"Unknown error",detail:"Unknown error",retryable:!0},...jp,...Kp},Tt={...qp,..._e};var Jp=12e4,hi=(e=new Lo,t=Jp)=>new Promise((o,r)=>setTimeout(()=>{r(e)},t)),Z=class{constructor(t){this.removeListener=(t,o)=>{if(this.walletProvider)try{return this.walletProvider.removeListener(t,o)}catch{console.warn("Unable to remove wallet provider listener")}};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._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 U(`A wallet request of type ${t.method} was made before setting a wallet provider.`);return Promise.race([this.walletProvider.request(t),hi()]).catch(o=>{throw ct(o)})}},Bt=class extends Error{constructor(o,r,n){super(o);this.code=r,this.data=n}},jr=class extends Yp{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 Ps(Qe(a,this.chains,n))}async handleSendTransaction(o){if(!o.params||!Array.isArray(o.params))throw new Bt(`Invalid params for ${o.method}`,4200);let r=o.params[0];if(!await Pt()||!this.address)throw new Bt("Disconnected",4900);return(await Ss(r)).transactionHash}handleSwitchEthereumChain(o){if(!o.params||!Array.isArray(o.params))throw new Bt(`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 Bt(`Invalid params for ${o.method}`,4200);this.chainId=Number(r),this.provider=new Ps(Qe(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 _s(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:lr(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 lr(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(Ts(o.method)){let r=await Pt();if(await As(),!r||!this.address)throw new Bt("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 Bt("Disconnected",4900)}}else return this.provider.send(o.method,o.params)}async connect(){let o=await Pt();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}}},dt=class extends Z{constructor(o){super(o)}},Ht=class extends Z{constructor(t){super(t)}sendAsync(t,o){throw new Error("sendAsync is no longer supported by EIP-1193. Use the request method instead.")}};var Zp=(e,t)=>{switch(t){case"coinbase_wallet":return e.message.includes("addEthereumChain");default:return e.code===4902||e.message?.includes("4902")}},Ne=class extends Qp{constructor(o,r){super();this.onAccountsChanged=o=>{o.length===0?this.onDisconnect():this.syncAccounts(o)};this.onChainChanged=o=>{this.wallets.forEach(r=>{r.chainId=Kr(o),this.walletClientType==="privy"&&j.put(si(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.connected=!1,this.initialized=!1}buildConnectedWallet(o,r){let n=async()=>!!this.wallets.find(i=>pt(i.address)===pt(o));return{address:pt(o),chainId:r,switchChain:async i=>{if(!n)throw new U("Wallet is not currently connected.");let a=this.wallets.find(y=>pt(y.address)===pt(o))?.chainId;if(!a)throw new U("Unable to determine current chainId.");let l,s;if(typeof i=="number"?(l=`0x${i.toString(16)}`,s=i):(l=i,s=Number(i)),a===Kr(l))return;let c=this.chains.find(y=>y.id===s);if(!c)throw new U(`Unsupported chainId: ${i}`);let P=async()=>{await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[{chainId:l}]})};try{return await P()}catch(y){if(Zp(y,this.walletClientType))return await this.proxyProvider.request({method:"wallet_addEthereumChain",params:[{chainId:l,chainName:c.name,nativeCurrency:c.nativeCurrency,rpcUrls:[c.rpcUrls.public?.http[0]??""],blockExplorerUrls:[c.blockExplorers?.default.url??""]}]}),P();throw this.walletClientType==="rainbow"&&y.message?.includes("wallet_switchEthereumChain")?new U(`Rainbow does not support the chainId ${r}`):y}},connectedAt:Date.now(),walletClientType:this.walletClientType,connectorType:this.connectorType,isConnected:n,getEthereumProvider:async()=>{if(!await n())throw new U("Wallet is not currently connected.");return this.proxyProvider},getEthersProvider:async()=>{if(!await n())throw new U("Wallet is not currently connected.");return new Rs(new dt(this.proxyProvider))},getWeb3jsProvider:async()=>{if(!await n())throw new U("Wallet is not currently connected.");return new Ht(this.proxyProvider)},sign:async i=>{if(!await n())throw new U("Wallet is not currently connected.");return await this.sign(i)},disconnect:()=>{this.disconnect()}}}async syncAccounts(o){let r=o;if(r===void 0){let c=await this.proxyProvider.request({method:"eth_accounts"});Array.isArray(c)&&(r=c)}if(!r||!Array.isArray(r)||r.length<=0||!r[0])return;let n=r[0],i=pt(n),a=[],l;if(this.walletClientType==="privy"){l=j.get(si(i))||Gr;try{await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[{chainId:l}]})}catch{console.warn(`Unable to switch embedded wallet to chain ID ${l} on initialization`)}}else try{let c=await this.proxyProvider.request({method:"eth_chainId"});if(typeof c!="string")throw new Error("Invalid chainId returned from provider");l=c}catch(c){console.warn(`Failed to get chainId from provider, defaulting to ${Gr}`,c),l=Gr}let s=Kr(l);a.find(c=>pt(c.address)===i)||a.push(this.buildConnectedWallet(pt(n),s)),Yr(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=>pt(n)===pt(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 Rs(new dt(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 eu=e=>{let t=`https://mainnet.infura.io/v3/${Fr}`,o=1;return e.makeWeb3Provider(t,o)},Jr,Qr=class extends Ne{constructor(o){super("coinbase_wallet",o);this.connectorType="coinbase_wallet";this.proxyProvider=new Z,this.subscribeListeners(),Jr||(Jr=new Xp({appName:"Privy",darkMode:!1,headlessMode:!1,enableMobileWalletLink:!0})),this.proxyProvider.setWalletProvider(eu(Jr)),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(){Jr.disconnect()}get walletBranding(){return{name:"Coinbase Wallet",icon:st}}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new U("Unable to retrieve accounts");this.connected=!0,await this.syncAccounts([o[0]])}catch(o){throw ct(o)}}};import{jsx as ks}from"react/jsx-runtime";var Oo=({...e})=>ks("svg",{width:"15",height:"15",viewBox:"0 0 15 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e,children:ks("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 Zr=class extends Ne{constructor(o,r){super("privy",r);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:[lr(o?.chainId||"0x1")]}),this.getConnectedWallet()):null}get walletBranding(){return{name:"Privy Wallet",icon:Oo}}disconnect(){this.connected=!1}async promptConnection(){}};import{getAddress as hw}from"@ethersproject/address";import{Web3Provider as yw}from"@ethersproject/providers";import{isMobile as ou}from"react-device-detect";import{jsx as Le,jsxs as tu}from"react/jsx-runtime";var be=({style:e,...t})=>tu("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:[Le("style",{children:".s1{stroke-linecap:round;stroke-linejoin:round}.s2{fill:#e4761b;stroke:#e4761b}.s3{fill:#f6851b;stroke:#f6851b}"}),Le("path",{fill:"#e2761b",stroke:"#e2761b",className:"s1",d:"m274.1 35.5-99.5 73.9L193 65.8z"}),Le("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"}),Le("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"}),Le("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"}),Le("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"}),Le("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"}),Le("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"}),Le("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"}),Le("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"}),Le("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"}),Le("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"}),Le("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 Xr=class extends Ne{constructor(o){super("metamask",o);this.connectorType="injected";this.proxyProvider=new Z,this.subscribeListeners();let r=window,n=r.ethereum,i=r.ethereum.providers||[];for(let a of i)if(a.isMetaMask){n=a;break}this.proxyProvider.setWalletProvider(n),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{!ou&&$r()&&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 U("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw ct(o)}}};import{jsx as Ws,jsxs as ru}from"react/jsx-runtime";var Ge=({style:e,...t})=>ru("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:[Ws("rect",{width:"108",height:"108",rx:"23",fill:"#AB9FF2"}),Ws("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 Ne{constructor(o){super("phantom",o);this.connectorType="injected";this.proxyProvider=new Z,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:Ge}}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 U("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw ct(o)}}};import{EthereumProvider as hu,OPTIONAL_EVENTS as fu,OPTIONAL_METHODS as yu}from"@walletconnect/ethereum-provider";import gi from"@walletconnect/qrcode-modal";import{isAndroid as gu,isMobile as vu}from"react-device-detect";import{createContext as iu,useContext as au,useEffect as fi,useRef as su,useState as Ns}from"react";import{jsx as nu}from"react/jsx-runtime";function Is(e){return nu("link",{rel:"prefetch",href:e.src})}var b=()=>{throw new Error("You need to wrap your application with the <PrivyProvider> initialized with your app id.")};import{jsx as lu,jsxs as cu}from"react/jsx-runtime";var Ze="LANDING",Ls=iu({ready:!1,app:null,currentScreen:Ze,lastScreen:Ze,navigate:b,navigateBack:b,resetNavigation:b,setModalData:b,outerClickRef:null}),Ms=e=>{let t=e.appConfig,o=e.authenticated,r=e.visible,[n,i]=Ns(e.initialScreen||Ze),[a,l]=Ns(e.initialScreen||Ze);fi(()=>{o||i(Ze)},[o]),fi(()=>{r||(l(Ze),i(Ze))},[r]),fi(()=>{e.initialScreen&&n===Ze&&(i(e.initialScreen),l(e.initialScreen))},[e.initialScreen]);let s=e.initialScreen&&n===Ze?e.initialScreen:n,c=su(null),P={ready:!!t?.id,app:t,data:e.data,setModalData:e.setModalData,currentScreen:s,lastScreen:a,navigate:y=>{l(n),i(y)},navigateBack:()=>{i(a)},resetNavigation:()=>{e.setInitialScreen(null),l(Ze),i(Ze)},outerClickRef:c};return cu(Ls.Provider,{value:P,children:[(typeof t?.appearance?.logo=="string"||t?.appearance?.logo?.type==="img")&&lu(Is,{src:typeof t.appearance.logo=="string"?t.appearance.logo:t.appearance.logo.props.src}),e.children]})},g=()=>au(Ls);import{jsx as Do,jsxs as du}from"react/jsx-runtime";var Uo=({style:e,...t})=>{let{app:o}=g();return du("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:[Do("rect",{width:"28",height:"28",rx:"3",fill:o?.appearance.palette.colorScheme==="dark"?"#3396ff":"#141414"}),Do("g",{clipPath:"url(#clip0_1765_9946)",children:Do("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"})}),Do("defs",{children:Do("clipPath",{id:"clip0_1765_9946",children:Do("rect",{width:"20",height:"12.2531",fill:"white",transform:"translate(4 8)"})})})]})};import{isAndroid as Ds,isDesktop as pu,isMobileOnly as uu}from"react-device-detect";var tn=e=>{let t;try{t=new URL(e).hostname}catch{return}for(let[o,r]of Object.entries(Us))if(r.hostname===t)return{walletClientType:o,entry:r}};var Us={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:"a1cb2777-f8f9-49b0-53fd-443d20ee0b00",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"}}},Fs=(e,t="md")=>`https://registry.walletconnect.com/v2/logo/${t}/${e}`;function yi(e){return{name:e.displayName||"",universalLink:e.mobile.universal||"",deepLink:e.mobile.native||""}}function mu(e){let t="mobile";return Object.values(e).filter(o=>!!o[t].universal||!!o[t].native).map(o=>yi(o))}function Bs(){return mu(Us)}function Hs(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 Gs(e,t){return Ds?e:Hs(e,yi(t))}var zs="WALLETCONNECT_DEEPLINK_CHOICE";function Os(e){let t=e.href.split("?")[0];j.put(zs,{...e,href:t})}var cr=(e,t)=>{if(!e||pu){j.del(zs);return}if(Ds){Os({name:"Unknown",href:t||"wc:"});return}else if(uu){let o=Hs(t||"wc:",yi(e));Os({name:e?.displayName||"",href:o})}};var dr=class extends Ne{constructor(o,r,n,i){super(i||"unknown",n);this.connectorType="wallet_connect_v2";this.walletConnectCloudProjectId=o,this.rpcConfig=r,this.proxyProvider=new Z,this.createProvider().then(a=>{if(this.provider=a,this.proxyProvider.setWalletProvider(a),this.subscribeListeners(),a.session){if(this.walletProvider.session?.peer.metadata.url){let l=tn(this.walletProvider.session?.peer.metadata.url);this.walletEntry=l?.entry,this.walletClientType=l?.walletClientType||"unknown",cr(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:Fs(this.walletEntry.image_id)}:{name:mi(this.walletProvider.session?.peer.metadata.name||"")||"WalletConnect",icon:this.walletProvider.session?.peer.metadata.icons?.[0]||Uo}}resetConnection(){this.walletProvider&&this.walletProvider.connected&&(this.walletProvider.signer.session=void 0,this.walletEntry=void 0,cr(void 0),this.onDisconnect())}async promptConnection(){if(this.provider)return new Promise((o,r)=>{let n=()=>{r(new Mo)};this.onQrModalClosed=n,(async()=>{let a="",l=await Promise.race([this.walletProvider.enable(),hi()]);if(l.length>0&&(a=l[0]),!a||a==="")throw new U("Unable to retrieve address");if(this.walletProvider.session?.peer.metadata.url){let s=tn(this.walletProvider.session?.peer.metadata.url);this.walletEntry=s?.entry,this.walletClientType=s?.walletClientType||"unknown"}this.connected=!0,await this.syncAccounts(l),o()})().catch(a=>{if(a){r(ct(a));return}r(new U("Unknown error during connection"))}).finally(()=>gi.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=Qe(n.id,this.chains,this.rpcConfig);i&&(o[n.id]=i)}let r=await hu.init({projectId:this.walletConnectCloudProjectId,chains:[1],optionalChains:this.chains.map(n=>n.id),optionalEvents:fu,optionalMethods:yu,rpcMap:o,showQrModal:!1});return r.on("display_uri",n=>{if(gu)window.open(n,"_self");else if(vu&&this.walletEntry){cr(this.walletEntry,n);let a=Gs(n,this.walletEntry);window.open(a,"_self","noopener,noreferrer")}else gi.open(n,()=>{this.onQrModalClosed&&this.onQrModalClosed()},{mobileLinks:Bs().map(i=>i.name)})}),r.on("connect",()=>{if(gi.close(),r.session?.peer.metadata.url){let n=tn(r.session?.peer.metadata.url);this.walletEntry=n?.entry,this.walletClientType=n?.walletClientType||"unknown",cr(this.walletEntry)}}),r}async enableProvider(){return this.walletProvider.connected?Promise.resolve(this.walletProvider.accounts):await this.walletProvider.enable()}};var vi=e=>{let t=localStorage.getItem("-walletlink:https://www.walletlink.org:Addresses");return t?!!e?.linkedAccounts.filter(r=>r.type=="wallet"&&r.address===$s(t)).length:!1},pr=class extends wu{constructor(o,r,n){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 Z:r.proxyProvider};this.walletConnectCloudProjectId=o,this.rpcConfig=r,this.chains=n,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||(j.get(li)&&(j.getKeys().forEach(o=>{o.startsWith("walletconnect")&&j.del(o)}),j.del(li)),Es().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}})),(Vr()||j.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){if(!this.findWalletConnector("embedded","privy")){let i=new jr(o,r,this.rpcConfig,this.chains),a=new Zr(i,this.chains);this.addWalletConnector(a)}}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 dr&&n.resetConnection(),n;let a=(()=>{switch(o){case"injected":switch(r){case"phantom":return He()?new en(this.chains):null;case"metamask":default:return sr()?new Xr(this.chains):null}case"coinbase_wallet":return new Qr(this.chains);case"wallet_connect_v2":return new dr(this.walletConnectCloudProjectId,this.rpcConfig,this.chains)}})();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=j.get(ci);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}));j.put(ci,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=$s(o),this.emit("walletsUpdated")}};function Yr(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 Cu}from"ofetch";var bu=[Dr(),Ur()],Eu=e=>{let t=new AbortController;return setTimeout(()=>t.abort(),e),t.signal},on=class{constructor(t,o,r){this.appId=t,this.sdkVersion=ni,this.client=o,this.defaults=r,this.fallbackApiUrl=o.fallbackApiUrl,this.baseFetch=Cu.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-client",`react-auth:${this.sdkVersion}`);let l=!bu.includes(n.toString());if(!a.has("authorization")&&l){let s=await this.client.getAccessToken();s!==null&&a.set("authorization",`Bearer ${s}`)}i.headers=a,i.signal||(i.signal=Eu(this.defaults.timeout))},onRequestError:({error:n})=>{if(n instanceof DOMException&&n.name==="AbortError")throw new Mr}})}async get(t,o){try{return await this.baseFetch(t,o)}catch(r){throw te(r)}}async post(t,o,r){try{return await this.baseFetch(t,{method:"POST",...o?{body:o}:{},...r})}catch(n){throw te(n)}}async delete(t,o){try{return await this.baseFetch(t,{method:"DELETE",...o})}catch(r){throw te(r)}}};import ur from"js-cookie";function Vs(e){return e instanceof lo?"email":e instanceof po?"sms":e instanceof co?"siwe":e instanceof Wo?"custom_auth":e instanceof Ot?e.meta.provider:null}import*as qs from"jose";var ut=class{static parse(t){try{return new ut(t)}catch{return null}}constructor(t){this.value=t,this._decoded=qs.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 xu=30,rn=class{constructor(){this.authenticateOnce=new Be(async t=>this._authenticate(t)),this.linkOnce=new Be(async t=>this._link(t)),this.refreshOnce=new Be(this._refresh.bind(this)),this.destroyOnce=new Be(this._destroy.bind(this)),this.forkSessionOnce=new Be(this._forkSession.bind(this))}get token(){try{let t=j.get(No);return typeof t=="string"?new ut(t).value:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get refreshToken(){try{let t=j.get(Hr);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get forkedToken(){try{let t=j.get(ar);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get mightHaveServerCookies(){try{let t=ur.get(ms);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=ut.parse(this.token);return t!==null&&!t.isExpired(xu)}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=Vs(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:xt(n),isNewUser:i}}catch(o){throw console.warn("Error authenticating session"),We(o)}}async _link(t){try{let o=await t.link();return xt(o)}catch(o){throw console.warn("Error linking account"),We(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(Dr(),a,{headers:i}),r&&this.clearForkedToken()}else if(r)n=await this.api.post(Ur(),{refresh_token:r}),this.clearForkedToken();else return null;return this.storeToken(n.token),this.storeRefreshToken(n.refresh_token),xt(n.user)}catch(n){if(n instanceof Ro&&n.privyErrorCode==="missing_or_invalid_token")return console.warn("Unable to refresh tokens - token is missing or no longer valid"),this.destroyLocalState(),null;throw We(n)}}async _destroy(){try{await this.api?.post(Ba(),{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(Ha(),{refresh_token:t});return this.storeToken(o.token),this.storeRefreshToken(o.refresh_token),o.new_session_refresh_token}catch(o){throw We(o)}}destroyLocalState(){this.storeToken(null),this.storeRefreshToken(null),this.clearForkedToken()}storeToken(t){if(typeof t=="string"){if(j.put(No,t),!this.client?.useServerCookies){let o=ut.parse(t)?.expiration;ur.set(ii,t,{sameSite:"Strict",secure:!0,expires:o?new Date(o*1e3):void 0})}}else j.del(No),ur.remove(ii)}storeRefreshToken(t){typeof t=="string"?(j.put(Hr,t),this.client?.useServerCookies||ur.set(ai,t,{sameSite:"Strict",secure:!0,expires:30})):(j.del(Hr),ur.remove(ai))}clearForkedToken(){j.del(ar)}};var wi,mr=class{constructor(t){this.apiUrl=t.apiUrl||Br,this.fallbackApiUrl=this.apiUrl,this.useServerCookies=!1,this.timeout=t.timeout||ps,this.appId=t.appId,this.clientAnalyticsId=typeof window>"u"?null:Tu(),wi||(wi=new rn),this.session=wi,this.api=this.generateApi(),this.session.client=this}initializeConnectorManager(t,o,r){this.connectors||(this.connectors=new pr(t,o,r))}generateApi(){let t=new on(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}async unlinkEmail(t){try{let o=await this.api.post(ts(),{address:t});return xt(o)}catch(o){throw We(o)}}async unlinkPhone(t){try{let o=await this.api.post(os(),{phoneNumber:t});return xt(o)}catch(o){throw We(o)}}async unlinkWallet(t){try{let o=await this.api.post(es(),{address:t});return xt(o)}catch(o){throw We(o)}}async unlinkOAuth(t,o){try{let r=await this.api.post(rs(),{provider:t,subject:o});return xt(r)}catch(r){throw We(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(ns(),{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(is(),t)}catch(o){throw We(o)}}async getAuthenticatedUser(){return this.session.hasRefreshCredentials()||this.session.hasRecoveryCredentials()?this.session.refresh():null}async getAccessToken(t){return this.session.hasActiveToken()?ut.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,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 We(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()}};import"wicg-inert";import{disableBodyScroll as e1,clearAllBodyScrollLocks as t1}from"body-scroll-lock";import{useRef as o1,useCallback as r1}from"react";import{useEffect as Jd}from"react";import n1 from"react-dom";import ka from"styled-components";import{createContext as Pu,useContext as _u}from"react";var Ci=Pu({isNewUserThisSession:!1,isLinking:!1,linkingHint:null,walletConnectionStatus:null,rpcConfig:{rpcUrls:{}},chains:[],nativeTokenSymbolForChainId:b,captchaData:{enabled:!1,ready:!1,execute:b,remove:b,token:void 0,error:void 0},initializeWalletProxy:b,getAuthMeta:b,getAuthFlow:b,closePrivyModal:b,connectWallet:b,initLoginWithWallet:b,loginWithWallet:b,loginWithCode:b,initLoginWithEmail:b,initLoginWithSms:b,resendEmailCode:b,resendSmsCode:b,initLoginWithOAuth:b,loginWithOAuth:b,refreshUser:b,walletProxy:null,createAnalyticsEvent:b,getUsdTokenPrice:b,recoverEmbeddedWallet:b,getFiatOnRampConfig:b,updateWallets:b}),_=()=>_u(Ci);import{createContext as Su,useContext as Au}from"react";var Xe=Su({ready:!1,authenticated:!1,user:null,walletConnectors:null,connectWallet:b,login:b,linkEmail:b,linkPhone:b,linkWallet:b,linkGoogle:b,linkTwitter:b,linkDiscord:b,linkGithub:b,linkApple:b,logout:b,getAccessToken:b,getEthereumProvider:b,getEthersProvider:b,getWeb3jsProvider:b,unlinkEmail:b,unlinkPhone:b,unlinkWallet:b,unlinkGoogle:b,unlinkTwitter:b,unlinkDiscord:b,unlinkGithub:b,unlinkApple:b,setActiveWallet:b,forkSession:b,createWallet:b,signMessage:b,sendTransaction:b,exportWallet:b,setWalletPassword:b}),$=()=>Au(Xe);import Ai from"styled-components";import zt,{css as Ti}from"styled-components";import Ei from"styled-components";import{Fragment as ku,jsx as bi,jsxs as Wu}from"react/jsx-runtime";var nn=({success:e,fail:t})=>Wu(ku,{children:[bi(uo,{className:e?"success":t?"fail":""}),bi(xi,{className:e?"success":t?"fail":""})]}),uo=Ei.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
- `,Ei=bi(uo)`
45
+ `,xi=Ei(uo)`
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
- `,Gt=e=>Ci(Au,{color:e.color||"var(--privy-color-foreground-3)"}),Au=bi(uo)`
51
+ `,Gt=e=>bi(Ru,{color:e.color||"var(--privy-color-foreground-3)"}),Ru=Ei(uo)`
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 mt,jsxs as sn}from"react/jsx-runtime";var ln=zt.button`
60
+ `;import{jsx as mt,jsxs as an}from"react/jsx-runtime";var sn=zt.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
- `,K=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>mt(Ks,{disabled:t||o,...n,children:t?sn("span",{children:[mt(Gt,{}),r?mt("span",{children:r}):null]}):e}),p2=zt(K)`
83
- ${e=>e.hideAnimations&&xi`
82
+ `,K=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>mt(Ks,{disabled:t||o,...n,children:t?an("span",{children:[mt(Gt,{}),r?mt("span",{children:r}):null]}):e}),u2=zt(K)`
83
+ ${e=>e.hideAnimations&&Ti`
84
84
  && {
85
85
  transition: none;
86
86
  }
87
87
  `}
88
- `,cn=({children:e,loading:t,disabled:o,annotation:r,loadingText:n="Loading...",...i})=>sn(Ks,{as:"a",disabled:t||o,...i,children:[!!r&&mt("div",{style:{position:"absolute",top:"-1.5rem"},children:mt(Wu,{children:r})}),t?sn("span",{children:[mt(Gt,{}),n?mt("span",{children:n}):null]}):e]}),Wu=zt.span`
88
+ `,ln=({children:e,loading:t,disabled:o,annotation:r,loadingText:n="Loading...",...i})=>an(Ks,{as:"a",disabled:t||o,...i,children:[!!r&&mt("div",{style:{position:"absolute",top:"-1.5rem"},children:mt(Iu,{children:r})}),t?an("span",{children:[mt(Gt,{}),n?mt("span",{children:n}):null]}):e]}),Iu=zt.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
- `,Ks=zt(ln)`
95
+ `,Ks=zt(sn)`
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?Ti`
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
- `,js=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>mt(Iu,{disabled:t||o,...n,children:t?sn("span",{children:[mt(Gt,{}),r?mt("span",{children:r}):null]}):e}),Iu=zt(ln)`
140
+ `,js=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>mt(Nu,{disabled:t||o,...n,children:t?an("span",{children:[mt(Gt,{}),r?mt("span",{children:r}):null]}):e}),Nu=zt(sn)`
141
141
  && {
142
142
  border-width: 1px;
143
143
  border-color: ${e=>e.warn?"var(--privy-color-error)":"var(--privy-color-foreground-4)"};
@@ -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&&Ti`
183
183
  pointer-events: none;
184
184
  `}
185
185
 
@@ -197,10 +197,10 @@ Resources:
197
197
  cursor: not-allowed;
198
198
  }
199
199
  }
200
- `,dn=zt.div`
200
+ `,cn=zt.div`
201
201
  /* Set to match height of SoftCtaButton to avoid reflow if conditionally rendered */
202
202
  height: 44px;
203
- `,pn=zt.button`
203
+ `,dn=zt.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 Nu from"styled-components";var Ys=Nu.span`
241
+ `;import Lu from"styled-components";var Ys=Lu.span`
242
242
  && {
243
243
  width: 82px;
244
244
  height: 82px;
@@ -262,7 +262,7 @@ Resources:
262
262
  margin-top: auto;
263
263
  gap: 16px;
264
264
  flex-grow: 100;
265
- `,Ti=ze.div`
265
+ `,Pi=ze.div`
266
266
  display: flex;
267
267
  flex-direction: column;
268
268
  align-items: center;
@@ -274,9 +274,9 @@ Resources:
274
274
  flex-direction: column;
275
275
  align-items: center;
276
276
  width: 100%;
277
- `,$t=ze(Ti)`
277
+ `,$t=ze(Pi)`
278
278
  gap: 16px;
279
- `,Pi=ze.div`
279
+ `,_i=ze.div`
280
280
  display: flex;
281
281
  flex-direction: column;
282
282
  width: 100%;
@@ -285,7 +285,7 @@ Resources:
285
285
  flex-direction: column;
286
286
  gap: 8px;
287
287
  min-height: 76px;
288
- `,g2=ze.div`
288
+ `,v2=ze.div`
289
289
  display: flex;
290
290
  flex-direction: column;
291
291
  justify-content: space-between;
@@ -315,7 +315,7 @@ Resources:
315
315
  }
316
316
  `,R=ze.div`
317
317
  height: 16px;
318
- `,N=ze.div`
318
+ `,L=ze.div`
319
319
  height: 12px;
320
320
  `,Zs=ze.div`
321
321
  position: relative;
@@ -327,7 +327,7 @@ Resources:
327
327
  border-radius: 50%;
328
328
  border-color: white;
329
329
  border-width: 2px !important;
330
- `;import el from"styled-components";import{Fragment as Mu,jsx as Fo,jsxs as tl}from"react/jsx-runtime";var Lu=el.div`
330
+ `;import el from"styled-components";import{Fragment as Ou,jsx as Fo,jsxs as tl}from"react/jsx-runtime";var Mu=el.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 un(e){let{legal:{privacyPolicyUrl:t,termsAndConditionsUrl:o}}=e.app,r=!!t,n=!!o,i=r&&n;return!r&&!n?null:tl(Lu,{children:["By logging in I agree to the"," ",n&&Fo("a",{href:o,target:"_blank",children:i?"Terms":"Terms of Service"}),i&&" & ",r&&Fo("a",{href:t,target:"_blank",children:"Privacy Policy"})]})}var F=({protectedByPrivy:e})=>Fo(J,{children:e?tl(Mu,{children:[Fo(Oo,{className:"hide-on-mobile"}),Fo("span",{className:"hide-on-mobile",children:Fo("a",{href:"https://www.privy.io/",target:"_blank",children:"Protected by Privy"})})]}):null}),J=el.div`
339
+ `;function pn(e){let{legal:{privacyPolicyUrl:t,termsAndConditionsUrl:o}}=e.app,r=!!t,n=!!o,i=r&&n;return!r&&!n?null:tl(Mu,{children:["By logging in I agree to the"," ",n&&Fo("a",{href:o,target:"_blank",children:i?"Terms":"Terms of Service"}),i&&" & ",r&&Fo("a",{href:t,target:"_blank",children:"Privacy Policy"})]})}var F=({protectedByPrivy:e})=>Fo(J,{children:e?tl(Ou,{children:[Fo(Oo,{className:"hide-on-mobile"}),Fo("span",{className:"hide-on-mobile",children:Fo("a",{href:"https://www.privy.io/",target:"_blank",children:"Protected by Privy"})})]}):null}),J=el.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 Ou,XMarkIcon as Du}from"@heroicons/react/24/outline";import rl from"styled-components";import{jsx as et,jsxs as Gu}from"react/jsx-runtime";var ol=()=>et("div",{}),Uu=({backFn:e})=>et("div",{children:et(Ou,{height:"16px",width:"16px",strokeWidth:2,onClick:e})}),Fu=e=>et("div",{children:et("div",{children:et(Du,{height:"16px",width:"16px",strokeWidth:2,onClick:e.onClose})})});var S=({backFn:e,onClose:t,title:o,closeable:r=!0})=>{let{closePrivyModal:n}=P(),{app:i}=y();return Gu(Bu,{children:[e?et(Uu,{backFn:e}):et(ol,{}),o&&et(Hu,{children:o}),i?.render.inDialog&&r?et(Fu,{onClose:t||(()=>n())}):et(ol,{})]})},Bu=rl.div`
368
+ `;import{ArrowLeftIcon as Du,XMarkIcon as Uu}from"@heroicons/react/24/outline";import rl from"styled-components";import{jsx as et,jsxs as zu}from"react/jsx-runtime";var ol=()=>et("div",{}),Fu=({backFn:e})=>et("div",{children:et(Du,{height:"16px",width:"16px",strokeWidth:2,onClick:e})}),Bu=e=>et("div",{children:et("div",{children:et(Uu,{height:"16px",width:"16px",strokeWidth:2,onClick:e.onClose})})});var S=({backFn:e,onClose:t,title:o,closeable:r=!0})=>{let{closePrivyModal:n}=_(),{app:i}=g();return zu(Hu,{children:[e?et(Fu,{backFn:e}):et(ol,{}),o&&et(Gu,{children:o}),i?.render.inDialog&&r?et(Bu,{onClose:t||(()=>n())}):et(ol,{})]})},Hu=rl.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
- `,Hu=rl.div`
425
+ `,Gu=rl.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 nl}from"react/jsx-runtime";var il=({style:e,...t})=>nl("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:nl("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 _i,jsx as $e,jsxs as mn}from"react/jsx-runtime";var al=()=>{let{navigate:e,app:t}=y(),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 mn(_i,{children:[$e(S,{}),$e(R,{}),mn(zu,{children:[$e(Vu,{children:mn("div",{children:[$e(Ys,{}),$e(il,{style:{width:"38px",height:"38px",strokeWidth:"1",stroke:"var(--privy-color-accent)",fill:"var(--privy-color-accent)"}})]})}),mn($u,{children:[typeof o=="string"?$e("h3",{children:o}):$e(_i,{children:o}),typeof r=="string"?$e("p",{children:r}):$e(_i,{children:r})]}),t?.allowlistConfig.errorCtaLink?$e(fe,{as:"a",href:t.allowlistConfig.errorCtaLink,children:n}):$e(fe,{onClick:()=>{e("LANDING")},children:n})]}),$e(J,{})]})},zu=Si.div`
432
+ `;import{jsx as nl}from"react/jsx-runtime";var il=({style:e,...t})=>nl("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:nl("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 Si,jsx as $e,jsxs as un}from"react/jsx-runtime";var al=()=>{let{navigate:e,app:t}=g(),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(Si,{children:[$e(S,{}),$e(R,{}),un($u,{children:[$e(qu,{children:un("div",{children:[$e(Ys,{}),$e(il,{style:{width:"38px",height:"38px",strokeWidth:"1",stroke:"var(--privy-color-accent)",fill:"var(--privy-color-accent)"}})]})}),un(Vu,{children:[typeof o=="string"?$e("h3",{children:o}):$e(Si,{children:o}),typeof r=="string"?$e("p",{children:r}):$e(Si,{children:r})]}),t?.allowlistConfig.errorCtaLink?$e(fe,{as:"a",href:t.allowlistConfig.errorCtaLink,children:n}):$e(fe,{onClick:()=>{e("LANDING")},children:n})]}),$e(J,{})]})},$u=Ai.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
- `,$u=Si.div`
440
+ `,Vu=Ai.div`
441
441
  display: flex;
442
442
  flex-direction: column;
443
443
  gap: 8px;
444
- `,Vu=Si.div`
444
+ `,qu=Ai.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 ju,PhoneIcon as Yu}from"@heroicons/react/24/outline";import{useEffect as cl,useState as hn}from"react";import{isMobile as Ju}from"react-device-detect";import yr from"styled-components";import Ai from"styled-components";import{Fragment as Ku,jsx as fr,jsxs as ll}from"react/jsx-runtime";var ht=({title:e,description:t,children:o,...r})=>fr(sl,{...r,children:ll(Ku,{children:[fr("h3",{children:e}),typeof t=="string"?fr("p",{children:t}):t,o]})}),qt=Ai(ht)`
467
+ `;import{EnvelopeIcon as Yu,PhoneIcon as Ju}from"@heroicons/react/24/outline";import{useEffect as cl,useState as mn}from"react";import{isMobile as Qu}from"react-device-detect";import fr from"styled-components";import Ri from"styled-components";import{Fragment as ju,jsx as hr,jsxs as ll}from"react/jsx-runtime";var ht=({title:e,description:t,children:o,...r})=>hr(sl,{...r,children:ll(ju,{children:[hr("h3",{children:e}),typeof t=="string"?hr("p",{children:t}):t,o]})}),qt=Ri(ht)`
468
468
  margin-bottom: 24px;
469
- `,Ee=({title:e,description:t,icon:o,children:r,...n})=>ll(qu,{...n,children:[o||null,fr("h3",{children:e}),typeof t=="string"?fr("p",{children:t}):t,r]}),sl=Ai.div`
469
+ `,Ee=({title:e,description:t,icon:o,children:r,...n})=>ll(Ku,{...n,children:[o||null,hr("h3",{children:e}),typeof t=="string"?hr("p",{children:t}):t,r]}),sl=Ri.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
- `,qu=Ai(sl)`
489
+ `,Ku=Ri(sl)`
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 Ri,jsx as ue,jsxs as Kt}from"react/jsx-runtime";var ki=6,dl=new Array(ki).fill(""),Qu=1400;var ul=()=>{let{app:e,navigate:t,setModalData:o}=y(),{closePrivyModal:r,resendEmailCode:n,resendSmsCode:i,getAuthMeta:a,loginWithCode:l,updateWallets:s}=P(),{authenticated:c,user:T}=$(),[g,E]=hn(dl),[m,C]=hn(!1),[x,f]=hn(null),[_,w]=hn(null),M=a()?.email?0:1,L=e?.render.inDialog?Je:0,k=e?.render.inDialog?L-500:0;cl(()=>{if(c&&m&&T)if(Ut(T,e?.embeddedWallets?.createOnLogin)){let G=setTimeout(()=>{o({createWallet:{onSuccess:()=>{},onFailure:X=>console.error(X),callAuthOnSuccessOnClose:!0}}),t("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},k);return()=>clearTimeout(G)}else{s();let G=setTimeout(r,L);return()=>clearTimeout(G)}},[c,m,T]),cl(()=>{if(x&&_===0){let q=setTimeout(()=>{E(dl),f(null),document.querySelector("input[name=code-0]")?.focus()},Qu);return()=>clearTimeout(q)}},[x]);let I=q=>{let G=q.currentTarget.value.replace(" ","");if(G==="")return;if(isNaN(Number(G))){f("Code should be numeric"),w(1);return}f(null),w(null);let X=Number(q.currentTarget.name?.charAt(5)),O=[...G||[""]].slice(0,ki-X),de=[...g.slice(0,X),...O,...g.slice(X+O.length)];E(de);let z=O.length,ee=Math.min(Math.max(X+z,0),ki-1);isNaN(Number(q.currentTarget.value))||document.querySelector(`input[name=code-${ee}]`)?.focus(),de.every(Oe=>Oe&&!isNaN(+Oe))&&(document.querySelector(`input[name=code-${ee}]`)?.blur(),l(de.join("")).then(()=>C(!0)).catch(D=>{D?.status===422?f("Invalid or expired verification code"):f("Issue verifying code"),w(0)})),q.preventDefault()},H=q=>{_===1&&(f(null),w(null));let G=[...g.slice(0,q),"",...g.slice(q+1)];E(G),q>0&&document.querySelector(`input[name=code-${q-1}]`)?.focus()},ce=M==0?ue(ju,{color:"var(--privy-color-accent)",strokeWidth:2,height:"48px",width:"48px"}):ue(Yu,{color:"var(--privy-color-accent)",strokeWidth:2,height:"40px",width:"40px"}),B=M==0?Kt("p",{children:["Please check ",ue(pl,{children:a()?.email})," for an email from privy.io and enter your code below."]}):Kt("p",{children:["Please check ",ue(pl,{children:a()?.phoneNumber})," for a message from ",e?.name||"Privy"," and enter your code below."]});return Kt(Ri,{children:[ue(S,{},"header"),ue(R,{}),Kt(Zu,{children:[ue(Ee,{title:"Enter confirmation code",description:B,icon:ce}),Kt(Js,{children:[Kt(Xu,{children:[ue(em,{fail:!!x,success:m,children:ue("span",{children:x||(m?"Success!":"")})}),ue("div",{children:g.map((q,G)=>ue("input",{name:`code-${G}`,type:"text",value:g[G],onChange:I,onKeyUp:X=>{X.key==="Backspace"&&H(G)},inputMode:"numeric",autoFocus:G===0,pattern:"[0-9]",className:`${m?"success":""} ${x?"fail":""}`,autoComplete:Ju?"one-time-code":"off"},G))})]}),ue(tm,{children:M==0?Kt(Ri,{children:[ue("span",{children:"Didn't get an email?"}),ue("button",{onClick:n,children:"Resend Code"})]}):Kt(Ri,{children:[ue("span",{children:"Didn't get a message?"}),ue("button",{onClick:i,children:"Resend Code"})]})})]})]}),ue(N,{}),ue(F,{protectedByPrivy:!0})]})},Zu=yr.div`
497
+ `;import{Fragment as ki,jsx as ue,jsxs as Kt}from"react/jsx-runtime";var Wi=6,dl=new Array(Wi).fill(""),Zu=1400;var ul=()=>{let{app:e,navigate:t,setModalData:o}=g(),{closePrivyModal:r,resendEmailCode:n,resendSmsCode:i,getAuthMeta:a,loginWithCode:l,updateWallets:s}=_(),{authenticated:c,user:P}=$(),[y,x]=mn(dl),[m,C]=mn(!1),[T,f]=mn(null),[E,w]=mn(null),M=a()?.email?0:1,k=e?.render.inDialog?Je:0,W=e?.render.inDialog?k-500:0;cl(()=>{if(c&&m&&P)if(Ut(P,e?.embeddedWallets?.createOnLogin)){let G=setTimeout(()=>{o({createWallet:{onSuccess:()=>{},onFailure:X=>console.error(X),callAuthOnSuccessOnClose:!0}}),t("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},W);return()=>clearTimeout(G)}else{s();let G=setTimeout(r,k);return()=>clearTimeout(G)}},[c,m,P]),cl(()=>{if(T&&E===0){let q=setTimeout(()=>{x(dl),f(null),document.querySelector("input[name=code-0]")?.focus()},Zu);return()=>clearTimeout(q)}},[T]);let N=q=>{let G=q.currentTarget.value.replace(" ","");if(G==="")return;if(isNaN(Number(G))){f("Code should be numeric"),w(1);return}f(null),w(null);let X=Number(q.currentTarget.name?.charAt(5)),O=[...G||[""]].slice(0,Wi-X),de=[...y.slice(0,X),...O,...y.slice(X+O.length)];x(de);let z=O.length,ee=Math.min(Math.max(X+z,0),Wi-1);isNaN(Number(q.currentTarget.value))||document.querySelector(`input[name=code-${ee}]`)?.focus(),de.every(Oe=>Oe&&!isNaN(+Oe))&&(document.querySelector(`input[name=code-${ee}]`)?.blur(),l(de.join("")).then(()=>C(!0)).catch(D=>{D?.status===422?f("Invalid or expired verification code"):f("Issue verifying code"),w(0)})),q.preventDefault()},H=q=>{E===1&&(f(null),w(null));let G=[...y.slice(0,q),"",...y.slice(q+1)];x(G),q>0&&document.querySelector(`input[name=code-${q-1}]`)?.focus()},ce=M==0?ue(Yu,{color:"var(--privy-color-accent)",strokeWidth:2,height:"48px",width:"48px"}):ue(Ju,{color:"var(--privy-color-accent)",strokeWidth:2,height:"40px",width:"40px"}),B=M==0?Kt("p",{children:["Please check ",ue(pl,{children:a()?.email})," for an email from privy.io and enter your code below."]}):Kt("p",{children:["Please check ",ue(pl,{children:a()?.phoneNumber})," for a message from ",e?.name||"Privy"," and enter your code below."]});return Kt(ki,{children:[ue(S,{},"header"),ue(R,{}),Kt(Xu,{children:[ue(Ee,{title:"Enter confirmation code",description:B,icon:ce}),Kt(Js,{children:[Kt(em,{children:[ue(tm,{fail:!!T,success:m,children:ue("span",{children:T||(m?"Success!":"")})}),ue("div",{children:y.map((q,G)=>ue("input",{name:`code-${G}`,type:"text",value:y[G],onChange:N,onKeyUp:X=>{X.key==="Backspace"&&H(G)},inputMode:"numeric",autoFocus:G===0,pattern:"[0-9]",className:`${m?"success":""} ${T?"fail":""}`,autoComplete:Qu?"one-time-code":"off"},G))})]}),ue(om,{children:M==0?Kt(ki,{children:[ue("span",{children:"Didn't get an email?"}),ue("button",{onClick:n,children:"Resend Code"})]}):Kt(ki,{children:[ue("span",{children:"Didn't get a message?"}),ue("button",{onClick:i,children:"Resend Code"})]})})]})]}),ue(L,{}),ue(F,{protectedByPrivy:!0})]})},Xu=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
- `,Xu=yr.div`
505
+ `,em=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
- `,em=yr.div`
561
+ `,tm=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
- `,tm=yr.div`
569
+ `,om=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
- `,pl=yr.span`
583
+ `,pl=fr.span`
584
584
  font-weight: 500;
585
585
  word-break: break-all;
586
- `;import{isMobile as Wi}from"react-device-detect";import hl from"styled-components";import om from"styled-components";var ml=om.span`
586
+ `;import{isMobile as Ii}from"react-device-detect";import hl from"styled-components";import rm from"styled-components";var ml=rm.span`
587
587
  @media (max-width: 440px) {
588
588
  display: none;
589
589
  }
590
- `;import{jsx as Ve,jsxs as Bo}from"react/jsx-runtime";var jt=({connectOnly:e})=>{let{navigate:t}=y(),{initLoginWithWallet:o,connectWallet:r}=P();return Bo(rm,{children:[Bo(fn,{onClick:()=>{lr()?e?(r("injected","metamask"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("injected","metamask"),t("AWAITING_CONNECTION")):Wi?e?(r("wallet_connect_v2","metamask"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("wallet_connect_v2","metamask"),t("AWAITING_CONNECTION")):t("INSTALL_METAMASK_SCREEN")},children:[Ve(be,{}),Ve("span",{children:"MetaMask"}),Ve("span",{children:lr()?"Connect":"Install"})]}),Bo(fn,{onClick:()=>{e?(r("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECTION"))},children:[Ve(st,{}),Bo("span",{children:["Coinbase",Ve(ml,{children:" Wallet"})]}),Ve("span",{children:"Connect"})]}),(Wi||He())&&Bo(fn,{id:"privy-phantom-button",onClick:()=>{He()?e?(r("injected","phantom"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("injected","phantom"),t("AWAITING_CONNECTION")):t(Wi?"PHANTOM_INTERSTITIAL_SCREEN":"INSTALL_PHANTOM_SCREEN")},children:[Ve(Ge,{}),Ve("span",{children:"Phantom"}),Ve("span",{children:He()?"Connect":"Install"})]}),Bo(fn,{onClick:()=>{e?(r("wallet_connect_v2","unknown"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("wallet_connect_v2","unknown"),t("AWAITING_CONNECTION"))},children:[Ve(Uo,{}),Ve("span",{children:"WalletConnect"}),Ve("span",{children:"Connect"})]})]})},rm=hl.div`
590
+ `;import{jsx as Ve,jsxs as Bo}from"react/jsx-runtime";var jt=({connectOnly:e})=>{let{navigate:t}=g(),{initLoginWithWallet:o,connectWallet:r}=_();return Bo(nm,{children:[Bo(hn,{onClick:()=>{sr()?e?(r("injected","metamask"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("injected","metamask"),t("AWAITING_CONNECTION")):Ii?e?(r("wallet_connect_v2","metamask"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("wallet_connect_v2","metamask"),t("AWAITING_CONNECTION")):t("INSTALL_METAMASK_SCREEN")},children:[Ve(be,{}),Ve("span",{children:"MetaMask"}),Ve("span",{children:sr()?"Connect":"Install"})]}),Bo(hn,{onClick:()=>{e?(r("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECTION"))},children:[Ve(st,{}),Bo("span",{children:["Coinbase",Ve(ml,{children:" Wallet"})]}),Ve("span",{children:"Connect"})]}),(Ii||He())&&Bo(hn,{id:"privy-phantom-button",onClick:()=>{He()?e?(r("injected","phantom"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("injected","phantom"),t("AWAITING_CONNECTION")):t(Ii?"PHANTOM_INTERSTITIAL_SCREEN":"INSTALL_PHANTOM_SCREEN")},children:[Ve(Ge,{}),Ve("span",{children:"Phantom"}),Ve("span",{children:He()?"Connect":"Install"})]}),Bo(hn,{onClick:()=>{e?(r("wallet_connect_v2","unknown"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("wallet_connect_v2","unknown"),t("AWAITING_CONNECTION"))},children:[Ve(Uo,{}),Ve("span",{children:"WalletConnect"}),Ve("span",{children:"Connect"})]})]})},nm=hl.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
- `,fn=hl.button`
596
+ `,hn=hl.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 nm from"styled-components";import{jsx as fl,jsxs as am}from"react/jsx-runtime";var Yt=()=>{let{navigate:e}=y();return am(im,{children:[fl("span",{children:"Don\u2019t have a wallet? "}),fl("button",{onClick:()=>{e("WALLET_EDUCATION")},children:"Create one now."})]})},im=nm.div`
649
+ `;import im from"styled-components";import{jsx as fl,jsxs as sm}from"react/jsx-runtime";var Yt=()=>{let{navigate:e}=g();return sm(am,{children:[fl("span",{children:"Don\u2019t have a wallet? "}),fl("button",{onClick:()=>{e("WALLET_EDUCATION")},children:"Create one now."})]})},am=im.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 sm,jsx as mo,jsxs as yl}from"react/jsx-runtime";var gl=()=>{let{app:e}=y(),t=`Connect a wallet to ${e?.name}`;return yl(sm,{children:[mo(S,{},"header"),mo(R,{}),mo(qt,{title:"Connect your wallet",description:t}),yl(pe,{children:[mo(jt,{connectOnly:!0}),mo(Yt,{})]}),mo(N,{}),mo(F,{protectedByPrivy:!0})]})};import Ii from"styled-components";import lm from"react";import{jsx as vl}from"react/jsx-runtime";var yn=()=>{let{app:e}=y(),t=e?.appearance?.logo,o=`${e?.name} logo`,r={maxHeight:"50px"},n="100%",i="auto";return t?typeof t=="string"?vl("div",{children:vl("img",{height:n,width:i,src:t,alt:o,style:r})}):t.type==="svg"||t.type==="img"?lm.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 um,jsx as _t,jsxs as wl}from"react/jsx-runtime";var Cl=()=>{let{app:e}=y();return wl(um,{children:[_t(S,{},"header"),e?.appearance.logo?_t(pm,{children:_t(yn,{})}):null,wl(dm,{children:[_t(cm,{children:_t("h4",{children:"Connect Wallet"})}),_t(jt,{connectOnly:!0}),_t(Yt,{})]}),e&&_t(un,{app:e}),_t(F,{protectedByPrivy:!0})]})},cm=Ii.div`
660
+ `;import{Fragment as lm,jsx as mo,jsxs as yl}from"react/jsx-runtime";var gl=()=>{let{app:e}=g(),t=`Connect a wallet to ${e?.name}`;return yl(lm,{children:[mo(S,{},"header"),mo(R,{}),mo(qt,{title:"Connect your wallet",description:t}),yl(pe,{children:[mo(jt,{connectOnly:!0}),mo(Yt,{})]}),mo(L,{}),mo(F,{protectedByPrivy:!0})]})};import Ni from"styled-components";import cm from"react";import{jsx as vl}from"react/jsx-runtime";var fn=()=>{let{app:e}=g(),t=e?.appearance?.logo,o=`${e?.name} logo`,r={maxHeight:"50px"},n="100%",i="auto";return t?typeof t=="string"?vl("div",{children:vl("img",{height:n,width:i,src:t,alt:o,style:r})}):t.type==="svg"||t.type==="img"?cm.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 mm,jsx as _t,jsxs as wl}from"react/jsx-runtime";var Cl=()=>{let{app:e}=g();return wl(mm,{children:[_t(S,{},"header"),e?.appearance.logo?_t(um,{children:_t(fn,{})}):null,wl(pm,{children:[_t(dm,{children:_t("h4",{children:"Connect Wallet"})}),_t(jt,{connectOnly:!0}),_t(Yt,{})]}),e&&_t(pn,{app:e}),_t(F,{protectedByPrivy:!0})]})},dm=Ni.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
- `,dm=Ii.div`
666
+ `,pm=Ni.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
- `,pm=Ii.div`
687
+ `,um=Ni.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 Tl,useState as Pl}from"react";import fm from"styled-components";import{useEffect as Ni,useState as gr}from"react";import{isMobile as Li}from"react-device-detect";import bl from"styled-components";import{Fragment as xl,jsx as ye,jsxs as vn}from"react/jsx-runtime";var gn=2,vr={metamask:{name:"MetaMask",component:be},phantom:{name:"Phantom",component:Ge},coinbase_wallet:{name:"Coinbase Wallet",component:st},wallet_connect:{name:"WalletConnect",component:Uo},embedded:{name:"Privy Wallet",component:Oo}},Mi=e=>e?.privyErrorCode==="linked_to_another_user"?Tt.ERROR_USER_EXISTS:e instanceof Ie&&!e.details.default?e.details:e instanceof Lo?Tt.ERROR_TIMED_OUT:e instanceof Mo?Tt.ERROR_USER_REJECTED_CONNECTION:Tt.ERROR_WALLET_CONNECTION,El=()=>{let[e,t]=gr(!1),[o,r]=gr(!1),[n,i]=gr(void 0),{app:a,navigate:l,navigateBack:s,lastScreen:c,currentScreen:T,setModalData:g}=y(),{getAuthFlow:E,walletConnectionStatus:m,closePrivyModal:C,loginWithWallet:x,updateWallets:f}=P(),{walletConnectors:_}=$(),[w,M]=gr(0),{user:L}=$(),[k]=gr(L?.linkedAccounts.length||0),I=Li&&m?.connector?.connectorType==="wallet_connect_v2"||Li&&m?.connector?.connectorType==="coinbase_wallet"||Li&&m?.connector?.connectorType==="injected"&&m?.connector?.walletClientType==="phantom",H=m?.status==="connected";Ni(()=>{let D=E();if(D&&I&&H&&!D.preparedMessage){D.buildSiweMessage();return}!D||I||!H||(async()=>{r(!0),i(void 0);try{m?.connector?.connectorType==="wallet_connect_v2"&&m?.connector?.walletClientType==="metamask"&&await pi(2500),await B()}catch(Et){console.warn("Auto-prompted signature failed",Et)}finally{r(!1)}})()},[w,H]),Ni(()=>{if(L&&e){let D;if(Ut(L,a?.embeddedWallets?.createOnLogin)){let Et=a?.render.inDialog?Je:0,Ce=a?.render.inDialog?Et-500:0;D=setTimeout(()=>{g({createWallet:{onSuccess:()=>{},onFailure:nr=>console.error(nr),callAuthOnSuccessOnClose:!0}}),l("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},Ce)}else f(),D=setTimeout(C,Je);return()=>clearTimeout(D)}},[L,e]);let ce=D=>{if(D?.privyErrorCode==="allowlist_rejected"){l("ALLOWLIST_REJECTION_SCREEN");return}i(Mi(D))};async function B(){try{if(await x(),!a?.render.inDialog)return C();t(!0)}catch(D){ce(D)}finally{r(!1)}}Ni(()=>{m?.connectError&&ce(m?.connectError)},[m]);let q=m?.connector?.connectorType||"metamask",G=m?.connector?.walletClientType||"metamask",X=m?.connector?.walletBranding.name||vr[G]?.name||"MetaMask",O=m?.connector?.walletBranding.icon||vr[G]?.component||(D=>ye(be,{...D})),de=e?`Successfully connected with ${X}`:n?n.message:H?o&&I?"Signing":"Sign to verify":`Waiting for ${X}`,z="Don\u2019t see your wallet modal? Check your other browser windows.";if(e){let D=L?.linkedAccounts.length||0;k===D?z="Wallet was already linked.":z="You\u2019re good to go!"}else w>=gn&&n?z="Unable to connect wallet":n?z=n.detail:H&&I?z="Sign the message in your wallet to verify it belongs to you.":G==="metamask"?z="For the best experience, connect only one wallet at a time.":q==="wallet_connect"?z="Open your mobile wallet app to continue":q==="coinbase_wallet"&&(qr()||(gi(L)?z="Continue with the Coinbase app. Not the right wallet? Reset your connection below.":z="Open the Coinbase app on your phone to continue."));let ee=_?.walletConnectors?.find(D=>D.walletClientType==="coinbase_wallet"),Oe=G==="coinbase_wallet"&&(gi(L)||n===Tt.ERROR_USER_EXISTS);return vn(xl,{children:[ye(S,{backFn:T===c?void 0:s}),ye(R,{}),vn(mm,{children:[ye(Oi,{walletLogo:O,success:e,fail:!!n}),vn(Vt,{children:[ye("h3",{children:de}),ye("p",{children:z})]}),ye(dn,{children:Oe?ye(fe,{onClick:()=>ee&&ee?.disconnect(),invisible:e,disabled:e,children:"Use a different wallet"}):n==Tt.ERROR_USER_EXISTS&&T!==c?ye(fe,{onClick:s,children:"Use a different wallet"}):H&&!e&&I?ye(fe,{onClick:()=>{r(!0),B()},disabled:o,children:o?"Signing":"Sign with your wallet"}):!e&&n?.retryable&&w<gn?ye(fe,{onClick:()=>{M(w+1),i(void 0),H?(r(!0),B()):m?.connectRetry()},invisible:e||!n?.retryable||w>=gn,disabled:!e&&(!n?.retryable||w>=gn),children:"Retry"}):null})]}),ye(J,{})]})},mm=bl.div`
696
+ `;import{useEffect as Tl,useState as Pl}from"react";import ym from"styled-components";import{useEffect as Li,useState as yr}from"react";import{isMobile as Mi}from"react-device-detect";import bl from"styled-components";import{Fragment as xl,jsx as ye,jsxs as gn}from"react/jsx-runtime";var yn=2,gr={metamask:{name:"MetaMask",component:be},phantom:{name:"Phantom",component:Ge},coinbase_wallet:{name:"Coinbase Wallet",component:st},wallet_connect:{name:"WalletConnect",component:Uo},embedded:{name:"Privy Wallet",component:Oo}},Oi=e=>e?.privyErrorCode==="linked_to_another_user"?Tt.ERROR_USER_EXISTS:e instanceof Ie&&!e.details.default?e.details:e instanceof Lo?Tt.ERROR_TIMED_OUT:e instanceof Mo?Tt.ERROR_USER_REJECTED_CONNECTION:Tt.ERROR_WALLET_CONNECTION,El=()=>{let[e,t]=yr(!1),[o,r]=yr(!1),[n,i]=yr(void 0),{app:a,navigate:l,navigateBack:s,lastScreen:c,currentScreen:P,setModalData:y}=g(),{getAuthFlow:x,walletConnectionStatus:m,closePrivyModal:C,loginWithWallet:T,updateWallets:f}=_(),{walletConnectors:E}=$(),[w,M]=yr(0),{user:k}=$(),[W]=yr(k?.linkedAccounts.length||0),N=Mi&&m?.connector?.connectorType==="wallet_connect_v2"||Mi&&m?.connector?.connectorType==="coinbase_wallet"||Mi&&m?.connector?.connectorType==="injected"&&m?.connector?.walletClientType==="phantom",H=m?.status==="connected";Li(()=>{let D=x();if(D&&N&&H&&!D.preparedMessage){D.buildSiweMessage();return}!D||N||!H||(async()=>{r(!0),i(void 0);try{m?.connector?.connectorType==="wallet_connect_v2"&&m?.connector?.walletClientType==="metamask"&&await ui(2500),await B()}catch(Et){console.warn("Auto-prompted signature failed",Et)}finally{r(!1)}})()},[w,H]),Li(()=>{if(k&&e){let D;if(Ut(k,a?.embeddedWallets?.createOnLogin)){let Et=a?.render.inDialog?Je:0,Ce=a?.render.inDialog?Et-500:0;D=setTimeout(()=>{y({createWallet:{onSuccess:()=>{},onFailure:rr=>console.error(rr),callAuthOnSuccessOnClose:!0}}),l("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},Ce)}else f(),D=setTimeout(C,Je);return()=>clearTimeout(D)}},[k,e]);let ce=D=>{if(D?.privyErrorCode==="allowlist_rejected"){l("ALLOWLIST_REJECTION_SCREEN");return}i(Oi(D))};async function B(){try{if(await T(),!a?.render.inDialog)return C();t(!0)}catch(D){ce(D)}finally{r(!1)}}Li(()=>{m?.connectError&&ce(m?.connectError)},[m]);let q=m?.connector?.connectorType||"metamask",G=m?.connector?.walletClientType||"metamask",X=m?.connector?.walletBranding.name||gr[G]?.name||"MetaMask",O=m?.connector?.walletBranding.icon||gr[G]?.component||(D=>ye(be,{...D})),de=e?`Successfully connected with ${X}`:n?n.message:H?o&&N?"Signing":"Sign to verify":`Waiting for ${X}`,z="Don\u2019t see your wallet modal? Check your other browser windows.";if(e){let D=k?.linkedAccounts.length||0;W===D?z="Wallet was already linked.":z="You\u2019re good to go!"}else w>=yn&&n?z="Unable to connect wallet":n?z=n.detail:H&&N?z="Sign the message in your wallet to verify it belongs to you.":G==="metamask"?z="For the best experience, connect only one wallet at a time.":q==="wallet_connect"?z="Open your mobile wallet app to continue":q==="coinbase_wallet"&&(Vr()||(vi(k)?z="Continue with the Coinbase app. Not the right wallet? Reset your connection below.":z="Open the Coinbase app on your phone to continue."));let ee=E?.walletConnectors?.find(D=>D.walletClientType==="coinbase_wallet"),Oe=G==="coinbase_wallet"&&(vi(k)||n===Tt.ERROR_USER_EXISTS);return gn(xl,{children:[ye(S,{backFn:P===c?void 0:s}),ye(R,{}),gn(hm,{children:[ye(Di,{walletLogo:O,success:e,fail:!!n}),gn(Vt,{children:[ye("h3",{children:de}),ye("p",{children:z})]}),ye(cn,{children:Oe?ye(fe,{onClick:()=>ee&&ee?.disconnect(),invisible:e,disabled:e,children:"Use a different wallet"}):n==Tt.ERROR_USER_EXISTS&&P!==c?ye(fe,{onClick:s,children:"Use a different wallet"}):H&&!e&&N?ye(fe,{onClick:()=>{r(!0),B()},disabled:o,children:o?"Signing":"Sign with your wallet"}):!e&&n?.retryable&&w<yn?ye(fe,{onClick:()=>{M(w+1),i(void 0),H?(r(!0),B()):m?.connectRetry()},invisible:e||!n?.retryable||w>=yn,disabled:!e&&(!n?.retryable||w>=yn),children:"Retry"}):null})]}),ye(J,{})]})},hm=bl.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
- `,hm=bl.div`
704
+ `,fm=bl.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
- `,Oi=e=>{let t=e.walletLogo;return ye(xl,{children:ye(hm,{children:vn("div",{children:[ye(an,{success:e.success,fail:e.fail}),typeof t=="string"?ye("span",{style:{background:`url('${t}')`,height:"38px",width:"38px",borderRadius:"6px",margin:"auto",backgroundSize:"cover"}}):ye(t,{style:{width:"38px",height:"38px"}})]})})})};import{Fragment as gm,jsx as ft,jsxs as Di}from"react/jsx-runtime";var wn=2,_l=()=>{let{navigateBack:e,lastScreen:t,currentScreen:o}=y(),{walletConnectionStatus:r,closePrivyModal:n}=P(),[i,a]=Pl(void 0),[l,s]=Pl(0),c=r?.status==="connected";Tl(()=>{if(c){let _=setTimeout(n,Je);return()=>clearTimeout(_)}},[c]);let T=_=>{a(Mi(_))};Tl(()=>{r?.connectError&&T(r?.connectError)},[r]);let g=r?.connector?.connectorType||"metamask",E=r?.connector?.walletClientType||"metamask",m=r?.connector?.walletBranding.name||vr[E]?.name||"MetaMask",C=r?.connector?.walletBranding.icon||vr[E]?.component||(_=>ft(be,{..._})),x=c?`Successfully connected with ${m}`:i?i.message:`Waiting for ${m}`,f="Don\u2019t see your wallet modal? Check your other browser windows.";return c?f="You\u2019re good to go!":l>=wn&&i?f="Unable to connect wallet":i?f=i.detail:E==="metamask"?f="For the best experience, connect only one wallet at a time.":g==="wallet_connect_v2"?f="Open your mobile wallet app to continue":g==="coinbase_wallet"&&(f="Open the Coinbase app on your phone to continue."),Di(gm,{children:[ft(S,{backFn:o===t?void 0:e}),ft(R,{}),Di(ym,{children:[ft(Oi,{walletLogo:C,success:c,fail:!!i}),Di(Vt,{children:[ft("h3",{children:x}),ft("p",{children:f})]}),ft(dn,{children:i==Tt.ERROR_USER_EXISTS?ft(fe,{onClick:e,children:"Use a different wallet"}):!c&&i?.retryable&&l<wn?ft(fe,{onClick:()=>{s(l+1),a(void 0),r?.connectRetry()},invisible:c||!i?.retryable||l>=wn,disabled:!c&&(!i?.retryable||l>=wn),children:"Retry"}):null})]}),ft(J,{})]})},ym=fm.div`
727
+ `,Di=e=>{let t=e.walletLogo;return ye(xl,{children:ye(fm,{children:gn("div",{children:[ye(nn,{success:e.success,fail:e.fail}),typeof t=="string"?ye("span",{style:{background:`url('${t}')`,height:"38px",width:"38px",borderRadius:"6px",margin:"auto",backgroundSize:"cover"}}):ye(t,{style:{width:"38px",height:"38px"}})]})})})};import{Fragment as vm,jsx as ft,jsxs as Ui}from"react/jsx-runtime";var vn=2,_l=()=>{let{navigateBack:e,lastScreen:t,currentScreen:o}=g(),{walletConnectionStatus:r,closePrivyModal:n}=_(),[i,a]=Pl(void 0),[l,s]=Pl(0),c=r?.status==="connected";Tl(()=>{if(c){let E=setTimeout(n,Je);return()=>clearTimeout(E)}},[c]);let P=E=>{a(Oi(E))};Tl(()=>{r?.connectError&&P(r?.connectError)},[r]);let y=r?.connector?.connectorType||"metamask",x=r?.connector?.walletClientType||"metamask",m=r?.connector?.walletBranding.name||gr[x]?.name||"MetaMask",C=r?.connector?.walletBranding.icon||gr[x]?.component||(E=>ft(be,{...E})),T=c?`Successfully connected with ${m}`:i?i.message:`Waiting for ${m}`,f="Don\u2019t see your wallet modal? Check your other browser windows.";return c?f="You\u2019re good to go!":l>=vn&&i?f="Unable to connect wallet":i?f=i.detail:x==="metamask"?f="For the best experience, connect only one wallet at a time.":y==="wallet_connect_v2"?f="Open your mobile wallet app to continue":y==="coinbase_wallet"&&(f="Open the Coinbase app on your phone to continue."),Ui(vm,{children:[ft(S,{backFn:o===t?void 0:e}),ft(R,{}),Ui(gm,{children:[ft(Di,{walletLogo:C,success:c,fail:!!i}),Ui(Vt,{children:[ft("h3",{children:T}),ft("p",{children:f})]}),ft(cn,{children:i==Tt.ERROR_USER_EXISTS?ft(fe,{onClick:e,children:"Use a different wallet"}):!c&&i?.retryable&&l<vn?ft(fe,{onClick:()=>{s(l+1),a(void 0),r?.connectRetry()},invisible:c||!i?.retryable||l>=vn,disabled:!c&&(!i?.retryable||l>=vn),children:"Retry"}):null})]}),ft(J,{})]})},gm=ym.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 xm}from"@heroicons/react/24/solid";import{useEffect as Tm,useMemo as Pm,useState as _m}from"react";import Sm from"styled-components";import Cn from"styled-components";import{jsx as Ui,jsxs as Em}from"react/jsx-runtime";var Ho=({children:e})=>Ui(vm,{children:Em(wm,{children:[e,Ui(Cm,{}),Ui(bm,{})]})}),vm=Cn.div`
735
+ `;import{XCircleIcon as Tm}from"@heroicons/react/24/solid";import{useEffect as Pm,useMemo as _m,useState as Sm}from"react";import Am from"styled-components";import wn from"styled-components";import{jsx as Fi,jsxs as xm}from"react/jsx-runtime";var Ho=({children:e})=>Fi(wm,{children:xm(Cm,{children:[e,Fi(bm,{}),Fi(Em,{})]})}),wm=wn.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
- `,wm=Cn.div`
747
+ `,Cm=wn.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
- `,Cm=Cn.div`
754
+ `,bm=wn.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
- `,bm=Cn.div`
767
+ `,Em=wn.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 Sl=["error","invalid_request_arguments","wallet_not_on_device","invalid_recovery_pin","insufficient_funds"];var St=class extends Error{constructor(o,r){super(r);this.type=o}};function Fi(e){let t=e.type;return typeof t=="string"&&Sl.includes(t)}function Go(e){return Fi(e)&&e.type==="wallet_not_on_device"}function Al(e){return Fi(e)&&(e.type==="invalid_recovery_pin"||e.type==="invalid_request_arguments")}function Rl(e){return!!(Fi(e)&&e.type==="insufficient_funds"||e.code==="INSUFFICIENT_FUNDS")}function kl(e){return e.code==="UNPREDICTABLE_GAS_LIMIT"}import{Fragment as Il,jsx as Jt,jsxs as Bi}from"react/jsx-runtime";var Wl=1,Nl=()=>{let{authenticated:e,user:t,getAccessToken:o}=$(),{closePrivyModal:r,createAnalyticsEvent:n,walletProxy:i}=P(),{navigate:a,data:l,setModalData:s,outerClickRef:c}=y(),T=Pm(()=>Date.now(),[]),[g,E]=_m(!1),{onCompleteNavigateTo:m,onFailure:C}=l?.connectWallet,x=_=>{g||(E(!0),C(typeof _=="string"?new Error(_):_))};Tm(()=>{let _=Y(t),w;return!e||!_?x("User must be authenticated and have a Privy wallet before it can be connected"):i?((async()=>{let L=await o();if(!L)return x("User must be authenticated and have a Privy wallet before it can be connected");try{await i.connect({accessToken:L,address:_.address});let k=(Date.now()-T)/1e3;m==="EMBEDDED_WALLET_KEY_EXPORT_SCREEN"&&k<Wl?w=setTimeout(()=>{a(m)},(Wl-k)*1e3):a(m)}catch(k){if(Go(k)&&_.recoveryMethod==="privy"){let I=await o();if(!I)return x("User must be authenticated and have a Privy wallet before it can be recovered");try{n("embedded_wallet_pinless_recovery_started",{walletAddress:_.address}),(await i?.recover({address:_.address,accessToken:I}))?.address||x(new Error("Unable to recover wallet")),m?a(m):r({shouldCallAuthOnSuccess:!1}),n("embedded_wallet_recovery_completed",{walletAddress:_.address}),a(m)}catch{x("An error has occurred, please try again.")}}else Go(k)?(s({...l,recoverWallet:{privyWallet:_,onCompleteNavigateTo:m,onFailure:C}}),a("EMBEDDED_WALLET_RECOVERY_SCREEN")):x(k)}})(),()=>clearTimeout(w)):void 0},[e,t,i]);let f=()=>{r({shouldCallAuthOnSuccess:!1}),x("User exited before wallet could be connected")};return c&&(c.current=f),Bi(Il,{children:[Jt(S,{onClose:f}),Jt(R,{}),Jt(Am,{children:g?Bi(Il,{children:[Bi($t,{children:[Jt(xm,{fill:"var(--privy-color-error)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),Jt(Ee,{title:"Something went wrong",description:"We\u2019re on it. Please try again later."})]}),Jt(K,{onClick:()=>r({shouldCallAuthOnSuccess:!1}),children:"Close"})]}):Jt(Ho,{})}),Jt(N,{})]})},Am=Sm.div`
791
+ `;var Sl=["error","invalid_request_arguments","wallet_not_on_device","invalid_recovery_pin","insufficient_funds"];var St=class extends Error{constructor(o,r){super(r);this.type=o}};function Bi(e){let t=e.type;return typeof t=="string"&&Sl.includes(t)}function Go(e){return Bi(e)&&e.type==="wallet_not_on_device"}function Al(e){return Bi(e)&&(e.type==="invalid_recovery_pin"||e.type==="invalid_request_arguments")}function Rl(e){return!!(Bi(e)&&e.type==="insufficient_funds"||e.code==="INSUFFICIENT_FUNDS")}function kl(e){return e.code==="UNPREDICTABLE_GAS_LIMIT"}import{Fragment as Il,jsx as Jt,jsxs as Hi}from"react/jsx-runtime";var Wl=1,Nl=()=>{let{authenticated:e,user:t,getAccessToken:o}=$(),{closePrivyModal:r,createAnalyticsEvent:n,walletProxy:i}=_(),{navigate:a,data:l,setModalData:s,outerClickRef:c}=g(),P=_m(()=>Date.now(),[]),[y,x]=Sm(!1),{onCompleteNavigateTo:m,onFailure:C}=l?.connectWallet,T=E=>{y||(x(!0),C(typeof E=="string"?new Error(E):E))};Pm(()=>{let E=Y(t),w;return!e||!E?T("User must be authenticated and have a Privy wallet before it can be connected"):i?((async()=>{let k=await o();if(!k)return T("User must be authenticated and have a Privy wallet before it can be connected");try{await i.connect({accessToken:k,address:E.address});let W=(Date.now()-P)/1e3;m==="EMBEDDED_WALLET_KEY_EXPORT_SCREEN"&&W<Wl?w=setTimeout(()=>{a(m)},(Wl-W)*1e3):a(m)}catch(W){if(Go(W)&&E.recoveryMethod==="privy"){let N=await o();if(!N)return T("User must be authenticated and have a Privy wallet before it can be recovered");try{n("embedded_wallet_pinless_recovery_started",{walletAddress:E.address}),(await i?.recover({address:E.address,accessToken:N}))?.address||T(new Error("Unable to recover wallet")),m?a(m):r({shouldCallAuthOnSuccess:!1}),n("embedded_wallet_recovery_completed",{walletAddress:E.address}),a(m)}catch{T("An error has occurred, please try again.")}}else Go(W)?(s({...l,recoverWallet:{privyWallet:E,onCompleteNavigateTo:m,onFailure:C}}),a("EMBEDDED_WALLET_RECOVERY_SCREEN")):T(W)}})(),()=>clearTimeout(w)):void 0},[e,t,i]);let f=()=>{r({shouldCallAuthOnSuccess:!1}),T("User exited before wallet could be connected")};return c&&(c.current=f),Hi(Il,{children:[Jt(S,{onClose:f}),Jt(R,{}),Jt(Rm,{children:y?Hi(Il,{children:[Hi($t,{children:[Jt(Tm,{fill:"var(--privy-color-error)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),Jt(Ee,{title:"Something went wrong",description:"We\u2019re on it. Please try again later."})]}),Jt(K,{onClick:()=>r({shouldCallAuthOnSuccess:!1}),children:"Close"})]}):Jt(Ho,{})}),Jt(L,{})]})},Rm=Am.div`
792
792
  display: flex;
793
793
  height: 100%;
794
794
  flex-direction: column;
795
795
  flex-grow: 1;
796
- `;import{CheckCircleIcon as Rm}from"@heroicons/react/24/solid";import{useEffect as km}from"react";import{Fragment as Wm,jsx as zo,jsxs as Ll}from"react/jsx-runtime";var Ml=()=>{let{user:e}=$(),{closePrivyModal:t,isNewUserThisSession:o,updateWallets:r}=P(),{app:n,data:i,outerClickRef:a}=y(),{onSuccess:l,onFailure:s,callAuthOnSuccessOnClose:c}=i.createWallet,T=()=>{let g=Y(e);g?(r(),l(g),t({shouldCallAuthOnSuccess:c})):s(new Error("Failed to create wallet"))};return km(()=>{let g=setTimeout(T,us);return()=>clearTimeout(g)},[]),a&&(a.current=T),Ll(Wm,{children:[zo(S,{onClose:T}),zo(R,{}),Ll($t,{children:[zo(Rm,{fill:"var(--privy-color-accent)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),zo(Ee,{title:o?`Welcome${n?.name?` to ${n?.name}`:""}`:"All set!",description:o?"You\u2019ve successfully created an account.":"Your account is secured."})]}),zo(N,{}),zo(F,{protectedByPrivy:!0})]})};import{useEffect as Fl,useRef as Nm,useState as Hi}from"react";import At from"styled-components";import{jsx as Se,jsxs as Im}from"react/jsx-runtime";var Ol=({style:e,...t})=>Im("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:[Se("rect",{x:"214.681",y:"51.6852",width:"40",height:"40",rx:"20",fill:"var(--privy-color-background-2)"}),Se("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)"}),Se("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"}),Se("rect",{x:"65.6426",y:"52.6852",width:"38",height:"38",rx:"19",stroke:"var(--privy-color-background-2","stroke-width":"2"}),Se("path",{d:"M103.162 71.6852H213.662",stroke:"var(--privy-color-background-2","stroke-width":"2","stroke-dasharray":"4 4"}),Se("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"}),Se("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)"}),Se("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)"}),Se("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"}),Se("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"}),Se("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"}),Se("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"}),Se("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"}),Se("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 zm,jsx as oe,jsxs as yt}from"react/jsx-runtime";var Bl=()=>{let[e,t]=Hi(null),{authenticated:o,user:r,getAccessToken:n}=$(),{closePrivyModal:i,createAnalyticsEvent:a}=P(),{data:l,outerClickRef:s}=y(),c=Y(r)?.address,{onFailure:T,onSuccess:g,origin:E,appId:m}=l.keyExport,C=f=>{i({shouldCallAuthOnSuccess:!1}),T(typeof f=="string"?new Error(f):f)},x=()=>{i({shouldCallAuthOnSuccess:!1}),g(),a("embedded_wallet_key_export_completed",{walletAddress:c})};return Fl(()=>{let f=Y(r);if(!o||!f)return C("User must be authenticated before exporting their wallet");n().then(t,C)},[o,r]),s&&(s.current=x),yt(zm,{children:[oe(S,{onClose:x}),oe(R,{}),yt(Om,{children:[oe(Ol,{}),yt(Dm,{children:[oe("h3",{children:"Transfer"}),yt(Hm,{children:[oe(Mm,{style:{marginRight:6}}),Ft(c)]})]}),oe("p",{children:"You can take your account with you to another site using an external wallet!"}),yt(Um,{children:[yt(Dl,{children:[oe(Ul,{children:"1"}),yt("span",{children:[oe("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."]})]}),yt(Dl,{children:[oe(Ul,{children:"2"}),oe("span",{children:"Copy this key into your other wallet"})]})]}),oe("div",{style:{width:"100%"},children:e&&oe(Lm,{origin:E,appId:m,accessToken:e,address:c,dimensions:{height:"44px"}})}),yt(Gm,{children:[oe("h4",{children:"WARNING"}),oe("p",{children:"Never share your private key with anyone! It controls your account."})]})]}),oe(N,{}),oe(F,{protectedByPrivy:!0})]})};function Lm(e){let[t,o]=Hi(e.dimensions.width),[r,n]=Hi(void 0),i=Nm(null);return Fl(()=>{if(i.current&&t===void 0){let{width:l}=i.current.getBoundingClientRect();o(l)}let a=getComputedStyle(document.documentElement);n({background2:a.getPropertyValue("--privy-color-background-2"),foreground3:a.getPropertyValue("--privy-color-foreground-3"),foregroundAccent:a.getPropertyValue("--privy-color-foreground-accent"),accent:a.getPropertyValue("--privy-color-accent"),accentDark:a.getPropertyValue("--privy-color-accent-dark"),success:a.getPropertyValue("--privy-color-success")})},[]),oe("div",{ref:i,children:t&&yt(Fm,{children:[oe("iframe",{style:{position:"absolute",zIndex:1},width:t,height:e.dimensions.height,allow:"clipboard-write self *",src:Kr(e.origin,`/apps/${e.appId}/embedded-wallets/export`,{token:e.accessToken,address:e.address,width:`${t}px`,...r})}),oe(Bm,{children:"Loading..."})]})})}function Mm(e){return oe("svg",{width:"16",height:"17",viewBox:"0 0 16 17",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:e.style,children:oe("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 Om=At.div`
796
+ `;import{CheckCircleIcon as km}from"@heroicons/react/24/solid";import{useEffect as Wm}from"react";import{Fragment as Im,jsx as zo,jsxs as Ll}from"react/jsx-runtime";var Ml=()=>{let{user:e}=$(),{closePrivyModal:t,isNewUserThisSession:o,updateWallets:r}=_(),{app:n,data:i,outerClickRef:a}=g(),{onSuccess:l,onFailure:s,callAuthOnSuccessOnClose:c}=i.createWallet,P=()=>{let y=Y(e);y?(r(),l(y),t({shouldCallAuthOnSuccess:c})):s(new Error("Failed to create wallet"))};return Wm(()=>{let y=setTimeout(P,us);return()=>clearTimeout(y)},[]),a&&(a.current=P),Ll(Im,{children:[zo(S,{onClose:P}),zo(R,{}),Ll($t,{children:[zo(km,{fill:"var(--privy-color-accent)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),zo(Ee,{title:o?`Welcome${n?.name?` to ${n?.name}`:""}`:"All set!",description:o?"You\u2019ve successfully created an account.":"Your account is secured."})]}),zo(L,{}),zo(F,{protectedByPrivy:!0})]})};import{useEffect as Fl,useRef as Lm,useState as Gi}from"react";import At from"styled-components";import{jsx as Se,jsxs as Nm}from"react/jsx-runtime";var Ol=({style:e,...t})=>Nm("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:[Se("rect",{x:"214.681",y:"51.6852",width:"40",height:"40",rx:"20",fill:"var(--privy-color-background-2)"}),Se("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)"}),Se("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"}),Se("rect",{x:"65.6426",y:"52.6852",width:"38",height:"38",rx:"19",stroke:"var(--privy-color-background-2","stroke-width":"2"}),Se("path",{d:"M103.162 71.6852H213.662",stroke:"var(--privy-color-background-2","stroke-width":"2","stroke-dasharray":"4 4"}),Se("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"}),Se("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)"}),Se("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)"}),Se("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"}),Se("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"}),Se("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"}),Se("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"}),Se("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"}),Se("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 $m,jsx as oe,jsxs as yt}from"react/jsx-runtime";var Bl=()=>{let[e,t]=Gi(null),{authenticated:o,user:r,getAccessToken:n}=$(),{closePrivyModal:i,createAnalyticsEvent:a}=_(),{data:l,outerClickRef:s}=g(),c=Y(r)?.address,{onFailure:P,onSuccess:y,origin:x,appId:m}=l.keyExport,C=f=>{i({shouldCallAuthOnSuccess:!1}),P(typeof f=="string"?new Error(f):f)},T=()=>{i({shouldCallAuthOnSuccess:!1}),y(),a("embedded_wallet_key_export_completed",{walletAddress:c})};return Fl(()=>{let f=Y(r);if(!o||!f)return C("User must be authenticated before exporting their wallet");n().then(t,C)},[o,r]),s&&(s.current=T),yt($m,{children:[oe(S,{onClose:T}),oe(R,{}),yt(Dm,{children:[oe(Ol,{}),yt(Um,{children:[oe("h3",{children:"Transfer"}),yt(Gm,{children:[oe(Om,{style:{marginRight:6}}),Ft(c)]})]}),oe("p",{children:"You can take your account with you to another site using an external wallet!"}),yt(Fm,{children:[yt(Dl,{children:[oe(Ul,{children:"1"}),yt("span",{children:[oe("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."]})]}),yt(Dl,{children:[oe(Ul,{children:"2"}),oe("span",{children:"Copy this key into your other wallet"})]})]}),oe("div",{style:{width:"100%"},children:e&&oe(Mm,{origin:x,appId:m,accessToken:e,address:c,dimensions:{height:"44px"}})}),yt(zm,{children:[oe("h4",{children:"WARNING"}),oe("p",{children:"Never share your private key with anyone! It controls your account."})]})]}),oe(L,{}),oe(F,{protectedByPrivy:!0})]})};function Mm(e){let[t,o]=Gi(e.dimensions.width),[r,n]=Gi(void 0),i=Lm(null);return Fl(()=>{if(i.current&&t===void 0){let{width:l}=i.current.getBoundingClientRect();o(l)}let a=getComputedStyle(document.documentElement);n({background2:a.getPropertyValue("--privy-color-background-2"),foreground3:a.getPropertyValue("--privy-color-foreground-3"),foregroundAccent:a.getPropertyValue("--privy-color-foreground-accent"),accent:a.getPropertyValue("--privy-color-accent"),accentDark:a.getPropertyValue("--privy-color-accent-dark"),success:a.getPropertyValue("--privy-color-success")})},[]),oe("div",{ref:i,children:t&&yt(Bm,{children:[oe("iframe",{style:{position:"absolute",zIndex:1},width:t,height:e.dimensions.height,allow:"clipboard-write self *",src:qr(e.origin,`/apps/${e.appId}/embedded-wallets/export`,{token:e.accessToken,address:e.address,width:`${t}px`,...r})}),oe(Hm,{children:"Loading..."})]})})}function Om(e){return oe("svg",{width:"16",height:"17",viewBox:"0 0 16 17",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:e.style,children:oe("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 Dm=At.div`
797
797
  display: flex;
798
798
  height: 100%;
799
799
  flex-direction: column;
800
800
  text-align: left;
801
- `,Dm=At.div`
801
+ `,Um=At.div`
802
802
  display: flex;
803
803
  align-items: center;
804
804
  justify-content: space-between;
805
805
  margin-bottom: 8px;
806
- `,Um=At.div`
806
+ `,Fm=At.div`
807
807
  display: flex;
808
808
  flex-direction: column;
809
809
  gap: 24px;
@@ -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
- `,Fm=At.div`
839
+ `,Bm=At.div`
840
840
  position: relative;
841
841
  height: 44px;
842
- `,Bm=At.div`
842
+ `,Hm=At.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
- `,Hm=At.div`
854
+ `,Gm=At.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
- `,Gm=At.div`
866
+ `,zm=At.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{useEffect as _h,useMemo as Sh,useRef as Ah,useState as qi}from"react";import{ArrowDownTrayIcon as lh,ArrowPathIcon as ch,DocumentDuplicateIcon as dh,ExclamationTriangleIcon as ph,KeyIcon as uh,XCircleIcon as mh}from"@heroicons/react/24/outline";import{CheckCircleIcon as Gi}from"@heroicons/react/24/solid";import{useState as hh,useMemo as zi}from"react";import Ae,{css as $i}from"styled-components";import $m from"fast-password-entropy";import*as Hl from"secure-password-utilities";import{DEFAULT_WORDLIST as Vm}from"secure-password-utilities/wordlists";var qm=95,Km=8,jm=3,Ym=.3,Jm=/[a-z]/,Qm=/[A-Z]/,Zm=/[0-9]/,Xm="a-zA-Z0-9",Gl="!@#$%^&*()\\-_+.",zl=`${Xm}${Gl}`,eh=new RegExp(`[${Gl}]`),th=new RegExp(`[${zl}]`),$l=new RegExp(`^[${zl}]{6,}$`),Vl=(e="")=>{let t=e.split("").filter(o=>!th.test(o)).map(o=>o.replace(" ","SPACE"));return[...new Set(t)]},$o=()=>Hl.generatePassphrase(4,Vm);function oh(e){return e>.9?"Strong":e>.5?"Medium":"Weak"}function rh(e){if(e.length<Km)return 0;let t=0;Jm.test(e)&&(t+=1),Qm.test(e)&&(t+=1),Zm.test(e)&&(t+=1),eh.test(e)&&(t+=1);let o=t/jm;return Math.max(0,Math.min(1,o))}function nh(e){let t=rh(e),o=$m(e)/qm;return(t*Ym+o)/2}function ql(e=""){let t=nh(e);return{value:t,label:oh(t)}}import bn from"styled-components";import{jsx as wr,jsxs as sh}from"react/jsx-runtime";var Kl=({className:e,checked:t,...o})=>wr("label",{children:sh(ih,{className:e,children:[wr(Yl,{checked:t,...o}),wr(ah,{checked:t,children:wr(jl,{viewBox:"0 0 24 24",children:wr("polyline",{points:"20 6 9 17 4 12"})})})]})}),ih=bn.div`
876
+ `;import{useEffect as Sh,useMemo as Ah,useRef as Rh,useState as qi}from"react";import{ArrowDownTrayIcon as ch,ArrowPathIcon as dh,DocumentDuplicateIcon as ph,ExclamationTriangleIcon as uh,KeyIcon as mh,XCircleIcon as hh}from"@heroicons/react/24/outline";import{CheckCircleIcon as zi}from"@heroicons/react/24/solid";import{useState as Jl,useMemo as En,useCallback as fh}from"react";import Ae,{css as $i}from"styled-components";import Vm from"fast-password-entropy";import*as Hl from"secure-password-utilities";import{DEFAULT_WORDLIST as qm}from"secure-password-utilities/wordlists";var Km=95,jm=8,Ym=3,Jm=.3,Qm=/[a-z]/,Zm=/[A-Z]/,Xm=/[0-9]/,eh="a-zA-Z0-9",Gl="!@#$%^&*()\\-_+.",zl=`${eh}${Gl}`,th=new RegExp(`[${Gl}]`),oh=new RegExp(`[${zl}]`),$l=new RegExp(`^[${zl}]{6,}$`),Vl=(e="")=>{let t=e.split("").filter(o=>!oh.test(o)).map(o=>o.replace(" ","SPACE"));return[...new Set(t)]},Cn=()=>Hl.generatePassphrase(4,qm);function rh(e){return e>.9?"Strong":e>.5?"Medium":"Weak"}function nh(e){if(e.length<jm)return 0;let t=0;Qm.test(e)&&(t+=1),Zm.test(e)&&(t+=1),Xm.test(e)&&(t+=1),th.test(e)&&(t+=1);let o=t/Ym;return Math.max(0,Math.min(1,o))}function ih(e=""){let t=nh(e),o=Vm(e)/Km;return(t*Jm+o)/2}function ql(e=""){let t=ih(e);return{value:t,label:rh(t)}}import bn from"styled-components";import{jsx as vr,jsxs as lh}from"react/jsx-runtime";var Kl=({className:e,checked:t,...o})=>vr("label",{children:lh(ah,{className:e,children:[vr(Yl,{checked:t,...o}),vr(sh,{checked:t,children:vr(jl,{viewBox:"0 0 24 24",children:vr("polyline",{points:"20 6 9 17 4 12"})})})]})}),ah=bn.div`
877
877
  display: inline-block;
878
878
  vertical-align: middle;
879
879
  `,jl=bn.svg`
@@ -891,7 +891,7 @@ Resources:
891
891
  position: absolute;
892
892
  white-space: nowrap;
893
893
  width: 1px;
894
- `,ah=bn.div`
894
+ `,sh=bn.div`
895
895
  display: inline-block;
896
896
  width: 18px;
897
897
  height: 18px;
@@ -913,7 +913,7 @@ Resources:
913
913
  ${jl} {
914
914
  visibility: ${e=>e.checked?"visible":"hidden"};
915
915
  }
916
- `;import{Fragment as ho,jsx as V,jsxs as ge}from"react/jsx-runtime";var xn=({buttonHideAnimations:e,buttonLoading:t,invalidState:o,errorMessage:r,hasSetPassword:n,loading:i,password:a,onSubmit:l,onClose:s,onPasswordChange:c,onPasswordGenerate:T})=>{let[g,E]=hh(!1),m=zi(()=>(a?.length||0)<6?"Password must be at least 6 characters":$l.test(a||"")?null:`Invalid characters used ( ${Vl(a).join(" ")} )`,[a]),C=zi(()=>m?{value:0,label:"Weak"}:ql(a),[a,m]),x=zi(()=>{let f=new Blob([a||""],{type:"text/plain"});return window.URL.createObjectURL(f)},[a]);return i?V(Ph,{children:V(Ho,{})}):ge(ho,{children:[V(S,{onClose:s,title:"Secure your account",closeable:!n}),V(R,{}),r||o?ge(ho,{children:[ge($t,{children:[V(mh,{fill:"var(--privy-color-error)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),V(Ee,{title:"Something went wrong",description:r})]}),V(K,{onClick:s,children:"Close"})]}):ge(gh,{children:[ge(Eh,{children:[n?V(ph,{height:48,width:48,stroke:"var(--privy-color-background)",fill:"var(--privy-color-accent)"}):V(uh,{height:48,width:48,stroke:"var(--privy-color-accent)"}),V("h3",{style:{color:"var(--privy-color-foreground)"},children:n?"Save your password":"Set your password"}),V("p",{style:{color:"var(--privy-color-foreground-2)"},children:n?ge(ho,{children:["Privy doesn\u2019t store your password so we can't retrieve it for you later. Secure it to keep your assets safe.",V("a",{rel:"noreferrer",target:"_blank",href:"https://docs.privy.io/guide/security",style:{cursor:"pointer",color:"var(--privy-color-accent)"},children:" Learn more."})]}):V(ho,{children:"Select a strong, memorable password to secure your account."})})]}),ge(Ch,{centered:n,children:[n?V(wh,{children:a}):V(Vi,{value:a,onChange:f=>c(f.target.value)}),!n&&V(bh,{onClick:T})]}),n?ge(ho,{children:[ge("div",{style:{display:"flex",margin:"12px 0",gap:"12px"},children:[ge(Ql,{onClick:()=>a&&navigator.clipboard.writeText(a),children:[V(dh,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Copy"]}),V(Th,{href:x,download:"privy-wallet-recovery.txt",children:ge(Ql,{children:[V(lh,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Download"]})})]}),V(Jl,{children:ge(En,{children:[V(Kl,{checked:g,onChange:f=>E(f.target.checked)}),V(ho,{children:"I understand that my password can\u2019t be recovered and I may lose my assets if I don\u2019t secure it."})]})})]}):ge(ho,{children:[V(xh,{value:C.value,label:C.label}),V(yh,{error:m,children:m||`Password Strength: ${C.label}`}),ge(Jl,{children:[ge(En,{children:[V(Gi,{width:24,height:24,fill:"var(--privy-color-accent)"}),"This password is used to secure your account."]}),ge(En,{children:[V(Gi,{width:24,height:24,fill:"var(--privy-color-accent)"}),"You will only be asked to enter it when signing on to a new device."]}),ge(En,{children:[V(Gi,{width:24,height:24,fill:"var(--privy-color-accent)"}),"If you lose this device and your password, your account will be irrecoverable."]})]})]}),V(vh,{onClick:l,loading:t,disabled:!!m||n&&!g,hideAnimations:e,children:n?"I have stored my password safely":"Set password"})]}),V(N,{}),V(F,{protectedByPrivy:!0})]})},fh=$i`
916
+ `;import{Fragment as ho,jsx as V,jsxs as ge}from"react/jsx-runtime";var Tn=({buttonHideAnimations:e,buttonLoading:t,invalidState:o,errorMessage:r,hasSetPassword:n,loading:i,password:a="",onSubmit:l,onClose:s,onPasswordChange:c,onPasswordGenerate:P})=>{let[y,x]=Jl(!1),[m,C]=Jl(!1),T=fh(k=>{m||C(!0),c(k.target.value)},[c,m]),f=En(()=>m?(a?.length||0)<6?"Password must be at least 6 characters":$l.test(a||"")?null:`Invalid characters used ( ${Vl(a).join(" ")} )`:null,[a]),E=En(()=>f?{value:0,label:"Weak"}:ql(a),[a,f]),w=En(()=>{let k=new Blob([a||""],{type:"text/plain"});return window.URL.createObjectURL(k)},[a]),M=En(()=>!!(!a?.length||f||n&&!y),[f,n,y,a]);return i?V(_h,{children:V(Ho,{})}):ge(ho,{children:[V(S,{onClose:s,title:"Secure your account",closeable:!n}),V(R,{}),r||o?ge(ho,{children:[ge($t,{children:[V(hh,{fill:"var(--privy-color-error)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),V(Ee,{title:"Something went wrong",description:r})]}),V(K,{onClick:s,children:"Close"})]}):ge(vh,{children:[ge(xh,{children:[n?V(uh,{height:48,width:48,stroke:"var(--privy-color-background)",fill:"var(--privy-color-accent)"}):V(mh,{height:48,width:48,stroke:"var(--privy-color-accent)"}),V("h3",{style:{color:"var(--privy-color-foreground)"},children:n?"Save your password":"Set your password"}),V("p",{style:{color:"var(--privy-color-foreground-2)"},children:n?ge(ho,{children:["Privy doesn\u2019t store your password so we can't retrieve it for you later. Secure it to keep your assets safe.",V("a",{rel:"noreferrer",target:"_blank",href:"https://docs.privy.io/guide/security",style:{cursor:"pointer",color:"var(--privy-color-accent)"},children:" Learn more."})]}):V(ho,{children:"Select a strong, memorable password to secure your account."})})]}),ge(bh,{centered:n,children:[n?V(Ch,{children:a}):V(Vi,{value:a,onChange:T,placeholder:"Click to generate a password..."}),!n&&V(Eh,{onClick:P})]}),n?ge(ho,{children:[ge("div",{style:{display:"flex",margin:"12px 0",gap:"12px"},children:[ge(Zl,{onClick:()=>a&&navigator.clipboard.writeText(a),children:[V(ph,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Copy"]}),V(Ph,{href:w,download:"privy-wallet-recovery.txt",children:ge(Zl,{children:[V(ch,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Download"]})})]}),V(Ql,{children:ge(xn,{children:[V(Kl,{checked:y,onChange:k=>x(k.target.checked)}),V(ho,{children:"I understand that my password can\u2019t be recovered and I may lose my assets if I don\u2019t secure it."})]})})]}):ge(ho,{children:[V(Th,{value:E.value===0?.01:E.value,label:E.label}),V(gh,{error:f,children:f||`Password Strength: ${m?E.label:"--"}`}),ge(Ql,{children:[ge(xn,{children:[V(zi,{width:24,height:24,fill:"var(--privy-color-accent)"}),"This password is used to secure your account."]}),ge(xn,{children:[V(zi,{width:24,height:24,fill:"var(--privy-color-accent)"}),"You will only be asked to enter it when signing on to a new device."]}),ge(xn,{children:[V(zi,{width:24,height:24,fill:"var(--privy-color-accent)"}),"If you lose this device and your password, your account will be irrecoverable."]})]})]}),V(wh,{onClick:l,loading:t,disabled:M,hideAnimations:e,children:n?"I have stored my password safely":"Set password"})]}),V(L,{}),V(F,{protectedByPrivy:!0})]})},yh=$i`
917
917
  font-size: 14px;
918
918
  font-style: normal;
919
919
  font-weight: 400;
@@ -921,23 +921,23 @@ Resources:
921
921
  letter-spacing: -0.008px;
922
922
  text-align: left;
923
923
  transition: color 0.1s ease-in;
924
- `,yh=Ae.span`
925
- ${fh}
924
+ `,gh=Ae.span`
925
+ ${yh}
926
926
  transition: color 0.1s ease-in;
927
927
  color: ${({error:e})=>e?"var(--privy-color-error)":"var(--privy-color-foreground-3)"};
928
928
  text-transform: ${({error:e})=>e?"":"capitalize"};
929
- `,gh=Ae.div`
929
+ `,vh=Ae.div`
930
930
  display: flex;
931
931
  height: 100%;
932
932
  flex-direction: column;
933
933
  justify-content: space-between;
934
- `,vh=Ae(K)`
934
+ `,wh=Ae(K)`
935
935
  ${e=>e.hideAnimations&&$i`
936
936
  && {
937
937
  transition: none;
938
938
  }
939
939
  `}
940
- `,Zl=$i`
940
+ `,Xl=$i`
941
941
  && {
942
942
  width: 100%;
943
943
  border-width: 1px;
@@ -951,19 +951,23 @@ Resources:
951
951
  font-style: normal;
952
952
  font-weight: 300;
953
953
  line-height: 22px; /* 137.5% */
954
- letter-spacing: 0.16px;
955
954
  }
956
955
  `,Vi=Ae.input`
957
- ${Zl}
958
- `,wh=Ae.div`
959
- ${Zl}
956
+ ${Xl}
957
+
958
+ &::placeholder {
959
+ color: var(--privy-color-foreground-3);
960
+ font-style: italic;
961
+ }
960
962
  `,Ch=Ae.div`
963
+ ${Xl}
964
+ `,bh=Ae.div`
961
965
  position: relative;
962
966
  width: 100%;
963
967
  display: flex;
964
968
  align-items: center;
965
969
  justify-content: ${({centered:e})=>e?"center":"space-between"};
966
- `,bh=Ae(ch)`
970
+ `,Eh=Ae(dh)`
967
971
  position: absolute;
968
972
  right: 12px;
969
973
  height: 24px;
@@ -974,7 +978,7 @@ Resources:
974
978
  :active {
975
979
  stroke: var(--privy-color-accent-light);
976
980
  }
977
- `,Eh=Ae.div`
981
+ `,xh=Ae.div`
978
982
  display: flex;
979
983
  flex-direction: column;
980
984
  align-items: center;
@@ -996,7 +1000,7 @@ Resources:
996
1000
  font-weight: 400;
997
1001
  line-height: 20px;
998
1002
  }
999
- `,xh=Ae.progress`
1003
+ `,Th=Ae.progress`
1000
1004
  height: 4px;
1001
1005
  width: 100%;
1002
1006
  margin: 8px 0;
@@ -1012,12 +1016,12 @@ Resources:
1012
1016
  transition: all 0.1s ease-out;
1013
1017
  background: ${({label:e})=>e==="Strong"&&"#78dca6"||e==="Medium"&&"var(--privy-color-warn)"||"var(--privy-color-error)"};
1014
1018
  }
1015
- `,Jl=Ae.div`
1019
+ `,Ql=Ae.div`
1016
1020
  display: flex;
1017
1021
  flex-direction: column;
1018
1022
  margin: 20px 0;
1019
1023
  gap: 10px;
1020
- `,En=Ae.div`
1024
+ `,xn=Ae.div`
1021
1025
  display: flex;
1022
1026
  text-align: left;
1023
1027
  align-items: center;
@@ -1037,10 +1041,10 @@ Resources:
1037
1041
  svg {
1038
1042
  min-width: 24px;
1039
1043
  }
1040
- `,Th=Ae.a`
1044
+ `,Ph=Ae.a`
1041
1045
  flex: 1;
1042
1046
  width: 100%;
1043
- `,Ql=Ae(ln)`
1047
+ `,Zl=Ae(sn)`
1044
1048
  display: flex;
1045
1049
  flex: 1;
1046
1050
  gap: 4px;
@@ -1052,9 +1056,9 @@ Resources:
1052
1056
  border-color: var(--privy-color-foreground-3);
1053
1057
  border-width: 1px;
1054
1058
  }
1055
- `,Ph=Ae.div`
1059
+ `,_h=Ae.div`
1056
1060
  height: var(--privy-height-modal-compact);
1057
- `;import{jsx as Rh}from"react/jsx-runtime";var Xl=()=>{let{app:e,navigate:t,data:o,outerClickRef:r}=y(),[n,i]=qi(""),[a,l]=qi(!1),[s,c]=qi(e?.embeddedWallets.requireUserPasswordOnCreate?$o():void 0),T=Ah(!1),{authenticated:g,getAccessToken:E,user:m}=$(),{walletProxy:C,refreshUser:x,closePrivyModal:f,createAnalyticsEvent:_,isNewUserThisSession:w}=P(),{onSuccess:M,onFailure:L,callAuthOnSuccessOnClose:k}=o.createWallet,I=e?.embeddedWallets.requireUserPasswordOnCreate===!1,H=!!(!n||T.current)&&I,ce=Sh(()=>Y(m),[m]),B=new Be(async()=>G());_h(()=>{if(!g){t("LANDING"),L(new Error("User must be authenticated before creating a Privy wallet"));return}I&&!a&&!T.current&&(l(!0),B.execute().finally(()=>l(!1)))},[I,g]);let q=()=>{if(ce){console.error(new ko);return}L(new Fe("User exited before creating a wallet")),f({shouldCallAuthOnSuccess:k})};r&&(r.current=()=>(q(),{closeModal:!ce}));let G=async function(){let O=await E();if(O)try{_("embedded_wallet_creation_started");let de=await C?.create({accessToken:O,recoveryPassword:s});if(!de){let ee=await x();if(de=Y(ee),!de)throw new Error("Unable to create wallet")}_("embedded_wallet_creation_completed",{walletAddress:de.address}),i("");let z=await x();if(T.current=!0,I)if(w)t("EMBEDDED_WALLET_CREATED_SCREEN");else{let ee=Y(z);ee&&(M(ee),f({shouldCallAuthOnSuccess:k}))}}catch(de){if(T.current)return;i("An error has occurred, please try again."),console.warn(de)}};return Rh(xn,{loading:H,invalidState:I&&!H,errorMessage:n,buttonHideAnimations:!Y&&a,buttonLoading:a||!C,hasSetPassword:!!ce,password:s,onClose:q,onPasswordChange:c,onPasswordGenerate:()=>c($o()),onSubmit:()=>I?f({shouldCallAuthOnSuccess:k}):(l(!0),ce?setTimeout(()=>{l(!1),t("EMBEDDED_WALLET_CREATED_SCREEN")},350):requestAnimationFrame(()=>B.execute().finally(()=>l(!1))))})};import{useEffect as kh,useState as Tn}from"react";import{jsx as Wh}from"react/jsx-runtime";var ec=()=>{let[e,t]=Tn(null),[o,r]=Tn(!1),[n,i]=Tn(""),[a,l]=Tn($o()),{authenticated:s,getAccessToken:c,user:T}=$(),{walletProxy:g,refreshUser:E,closePrivyModal:m,createAnalyticsEvent:C}=P(),{navigate:x,data:f,outerClickRef:_}=y(),{onSuccess:w,onFailure:M}=f.createWallet,L=Y(T),k=!!e;kh(()=>{s||(x("LANDING"),M(new Dr("User must be authenticated before setting a password on a Privy wallet")))},[s]);let I=()=>{if(k){console.error(new ko);return}M(new Fe("Exited before password was added to wallet")),m({shouldCallAuthOnSuccess:!1})};_&&(_.current=()=>(I(),{closeModal:!k}));let H=async()=>{let B=await c();if(B&&L?.address&&a&&g)try{if(C("embedded_wallet_set_password_started",{walletAddress:L.address}),!(await g.setRecoveryPassword({accessToken:B,address:L.address,recoveryPassword:a})).address){M(new Fe("Error setting password on privy wallet")),C("embedded_wallet_set_password_failed",{walletAddress:L.address,reason:"error setting password"});return}let G=await E(),X=Y(G);if(!X){M(new Fe("Error setting password on privy wallet")),C("embedded_wallet_set_password_failed",{walletAddress:L.address,reason:"wallet disconnected"});return}t(X),C("embedded_wallet_set_password_completed",{walletAddress:L.address})}catch(q){console.warn(q),i("An error has occurred, please try again."),M(q instanceof Error?q:new Error("Error setting password on privy wallet")),C("embedded_wallet_set_password_failed",{walletAddress:L.address,reason:q})}};return Wh(xn,{errorMessage:n,hasSetPassword:k,buttonLoading:o,onClose:I,buttonHideAnimations:!1,password:a,onPasswordGenerate:()=>l($o()),onPasswordChange:l,onSubmit:async()=>{k?(w(e),m({shouldCallAuthOnSuccess:!1})):(r(!0),await H(),r(!1))}})};import{UserCircleIcon as Ih}from"@heroicons/react/24/outline";import{LockClosedIcon as Nh}from"@heroicons/react/24/solid";import{useEffect as Lh}from"react";import{Fragment as Mh,jsx as Rt,jsxs as Pn}from"react/jsx-runtime";var tc=()=>{let{user:e}=$(),{closePrivyModal:t,createAnalyticsEvent:o}=P(),{data:r,setModalData:n,navigate:i,outerClickRef:a}=y(),{onSuccess:l,onFailure:s}=r.setWalletPassword,c=()=>{s(new Fe("Exited before password was added to wallet")),t({shouldCallAuthOnSuccess:!1})};return Lh(()=>{a&&(a.current=c)},[]),Pn(Mh,{children:[Rt(S,{onClose:c}),Rt(R,{}),Pn($t,{children:[Pn(Zs,{children:[Rt(Ih,{stroke:"var(--privy-color-accent)",width:"64px",height:"64px"}),Rt(Xs,{style:{width:24,height:24,position:"absolute",bottom:0,right:0},children:Rt(Nh,{width:"12px",height:"12px",fill:"white"})})]}),Pn(Ee,{title:"Secure Your Account",children:["Please set a password to secure your account.",Rt("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."})]})]}),Rt(K,{onClick:()=>{let g=Y(e);o("embedded_wallet_set_password_started",{walletAddress:g?.address}),n({createWallet:{onFailure:s,onSuccess:l,callAuthOnSuccessOnClose:!1,addPasswordToExistingWallet:!0}}),i("EMBEDDED_WALLET_PASSWORD_UPDATE_SCREEN")},children:"Add password"}),Rt(N,{}),Rt(F,{protectedByPrivy:!0})]})};import{ShieldCheckIcon as Oh}from"@heroicons/react/24/outline";import{useEffect as Dh,useState as Ki}from"react";import _n,{css as Uh}from"styled-components";import{Fragment as zh,jsx as qe,jsxs as Vo}from"react/jsx-runtime";var oc=()=>{let{authenticated:e,getAccessToken:t}=$(),{walletProxy:o,closePrivyModal:r,createAnalyticsEvent:n}=P(),{navigate:i,data:a,outerClickRef:l}=y(),[s,c]=Ki(void 0),[T,g]=Ki(""),[E,m]=Ki(!1),{privyWallet:C,onCompleteNavigateTo:x,onSuccess:f,onFailure:_}=a.recoverWallet,w=(k="User exited before their wallet could be recovered")=>{r({shouldCallAuthOnSuccess:!1}),_(typeof k=="string"?new Fe(k):k)};l&&(l.current=()=>w()),Dh(()=>{if(!e||!C)return w("User must be authenticated and have a Privy wallet before it can be recovered")},[e]);let M=k=>{k&&c(k)};return Vo(zh,{children:[qe(S,{onClose:w}),qe(R,{}),Vo(Bh,{children:[Vo(Fh,{children:[qe(Oh,{height:48,width:48,stroke:"var(--privy-color-accent)"}),qe("h3",{style:{color:"var(--privy-color-foreground)"},children:"Load your account"}),qe("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Please provision your account on this new device. To continue, enter your recovery password."})]}),Vo("div",{children:[qe(Vi,{onChange:k=>M(k.target.value),disabled:E}),!!T&&qe(Hh,{children:T})]}),Vo("div",{children:[Vo(Qs,{children:[qe("h4",{children:"Why is this necessary?"}),qe("p",{children:"You previously set a password for this wallet. This helps ensure only you can access it"})]}),qe(Gh,{loading:E||!o,disabled:!s,onClick:async()=>{m(!0);let k=await t();if(k&&C&&s!==null)try{n("embedded_wallet_recovery_started",{walletAddress:C.address}),await o?.recover({address:C.address,accessToken:k,recoveryPin:s}),g(""),x?i(x):r({shouldCallAuthOnSuccess:!1}),f?.(C),n("embedded_wallet_recovery_completed",{walletAddress:C.address})}catch(I){Al(I)?g("Invalid recovery password, please try again."):g("An error has occurred, please try again.")}finally{m(!1)}else return w("User must be authenticated and have a Privy wallet before it can be recovered")},warn:!1,hideAnimations:!C&&E,children:"Recover your account"})]})]}),qe(N,{}),qe(F,{protectedByPrivy:!0})]})},Fh=_n.div`
1061
+ `;import{jsx as kh}from"react/jsx-runtime";var ec=()=>{let{app:e,navigate:t,data:o,outerClickRef:r}=g(),[n,i]=qi(""),[a,l]=qi(!1),[s,c]=qi(),P=Rh(!1),{authenticated:y,getAccessToken:x,user:m}=$(),{walletProxy:C,refreshUser:T,closePrivyModal:f,createAnalyticsEvent:E,isNewUserThisSession:w}=_(),{onSuccess:M,onFailure:k,callAuthOnSuccessOnClose:W}=o.createWallet,N=e?.embeddedWallets.requireUserPasswordOnCreate===!1,H=!!(!n||P.current)&&N,ce=Ah(()=>Y(m),[m]),B=new Be(async()=>G());Sh(()=>{if(!y){t("LANDING"),k(new Error("User must be authenticated before creating a Privy wallet"));return}N&&!a&&!P.current&&(l(!0),B.execute().finally(()=>l(!1)))},[N,y]);let q=()=>{if(ce){console.error(new ko);return}k(new Fe("User exited before creating a wallet")),f({shouldCallAuthOnSuccess:W})};r&&(r.current=()=>(q(),{closeModal:!ce}));let G=async function(){let O=await x();if(O)try{E("embedded_wallet_creation_started");let de=await C?.create({accessToken:O,recoveryPassword:s});if(!de){let ee=await T();if(de=Y(ee),!de)throw new Error("Unable to create wallet")}E("embedded_wallet_creation_completed",{walletAddress:de.address}),i("");let z=await T();if(P.current=!0,N)if(w)t("EMBEDDED_WALLET_CREATED_SCREEN");else{let ee=Y(z);ee&&(M(ee),f({shouldCallAuthOnSuccess:W}))}}catch(de){if(P.current)return;i("An error has occurred, please try again."),console.warn(de)}};return kh(Tn,{loading:H,invalidState:N&&!H,errorMessage:n,buttonHideAnimations:!Y&&a,buttonLoading:a||!C,hasSetPassword:!!ce,password:s,onClose:q,onPasswordChange:c,onPasswordGenerate:()=>c(Cn()),onSubmit:()=>N?f({shouldCallAuthOnSuccess:W}):(l(!0),ce?setTimeout(()=>{l(!1),t("EMBEDDED_WALLET_CREATED_SCREEN")},350):requestAnimationFrame(()=>B.execute().finally(()=>l(!1))))})};import{useEffect as Wh,useState as Pn}from"react";import{jsx as Ih}from"react/jsx-runtime";var tc=()=>{let[e,t]=Pn(null),[o,r]=Pn(!1),[n,i]=Pn(""),[a,l]=Pn(),{authenticated:s,getAccessToken:c,user:P}=$(),{walletProxy:y,refreshUser:x,closePrivyModal:m,createAnalyticsEvent:C}=_(),{navigate:T,data:f,outerClickRef:E}=g(),{onSuccess:w,onFailure:M}=f.createWallet,k=Y(P),W=!!e;Wh(()=>{s||(T("LANDING"),M(new Or("User must be authenticated before setting a password on a Privy wallet")))},[s]);let N=()=>{if(W){console.error(new ko);return}M(new Fe("Exited before password was added to wallet")),m({shouldCallAuthOnSuccess:!1})};E&&(E.current=()=>(N(),{closeModal:!W}));let H=async()=>{let B=await c();if(B&&k?.address&&a&&y)try{if(C("embedded_wallet_set_password_started",{walletAddress:k.address}),!(await y.setRecoveryPassword({accessToken:B,address:k.address,recoveryPassword:a})).address){M(new Fe("Error setting password on privy wallet")),C("embedded_wallet_set_password_failed",{walletAddress:k.address,reason:"error setting password"});return}let G=await x(),X=Y(G);if(!X){M(new Fe("Error setting password on privy wallet")),C("embedded_wallet_set_password_failed",{walletAddress:k.address,reason:"wallet disconnected"});return}t(X),C("embedded_wallet_set_password_completed",{walletAddress:k.address})}catch(q){console.warn(q),i("An error has occurred, please try again."),M(q instanceof Error?q:new Error("Error setting password on privy wallet")),C("embedded_wallet_set_password_failed",{walletAddress:k.address,reason:q})}};return Ih(Tn,{errorMessage:n,hasSetPassword:W,buttonLoading:o,onClose:N,buttonHideAnimations:!1,password:a,onPasswordGenerate:()=>l(Cn()),onPasswordChange:l,onSubmit:async()=>{W?(w(e),m({shouldCallAuthOnSuccess:!1})):(r(!0),await H(),r(!1))}})};import{UserCircleIcon as Nh}from"@heroicons/react/24/outline";import{LockClosedIcon as Lh}from"@heroicons/react/24/solid";import{useEffect as Mh}from"react";import{Fragment as Oh,jsx as Rt,jsxs as _n}from"react/jsx-runtime";var oc=()=>{let{user:e}=$(),{closePrivyModal:t,createAnalyticsEvent:o}=_(),{data:r,setModalData:n,navigate:i,outerClickRef:a}=g(),{onSuccess:l,onFailure:s}=r.setWalletPassword,c=()=>{s(new Fe("Exited before password was added to wallet")),t({shouldCallAuthOnSuccess:!1})};return Mh(()=>{a&&(a.current=c)},[]),_n(Oh,{children:[Rt(S,{onClose:c}),Rt(R,{}),_n($t,{children:[_n(Zs,{children:[Rt(Nh,{stroke:"var(--privy-color-accent)",width:"64px",height:"64px"}),Rt(Xs,{style:{width:24,height:24,position:"absolute",bottom:0,right:0},children:Rt(Lh,{width:"12px",height:"12px",fill:"white"})})]}),_n(Ee,{title:"Secure Your Account",children:["Please set a password to secure your account.",Rt("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."})]})]}),Rt(K,{onClick:()=>{let y=Y(e);o("embedded_wallet_set_password_started",{walletAddress:y?.address}),n({createWallet:{onFailure:s,onSuccess:l,callAuthOnSuccessOnClose:!1,addPasswordToExistingWallet:!0}}),i("EMBEDDED_WALLET_PASSWORD_UPDATE_SCREEN")},children:"Add password"}),Rt(L,{}),Rt(F,{protectedByPrivy:!0})]})};import{ShieldCheckIcon as Dh}from"@heroicons/react/24/outline";import{useEffect as Uh,useState as Ki}from"react";import Sn,{css as Fh}from"styled-components";import{Fragment as $h,jsx as qe,jsxs as $o}from"react/jsx-runtime";var rc=()=>{let{authenticated:e,getAccessToken:t}=$(),{walletProxy:o,closePrivyModal:r,createAnalyticsEvent:n}=_(),{navigate:i,data:a,outerClickRef:l}=g(),[s,c]=Ki(void 0),[P,y]=Ki(""),[x,m]=Ki(!1),{privyWallet:C,onCompleteNavigateTo:T,onSuccess:f,onFailure:E}=a.recoverWallet,w=(W="User exited before their wallet could be recovered")=>{r({shouldCallAuthOnSuccess:!1}),E(typeof W=="string"?new Fe(W):W)};l&&(l.current=()=>w()),Uh(()=>{if(!e||!C)return w("User must be authenticated and have a Privy wallet before it can be recovered")},[e]);let M=W=>{W&&c(W)};return $o($h,{children:[qe(S,{onClose:w}),qe(R,{}),$o(Hh,{children:[$o(Bh,{children:[qe(Dh,{height:48,width:48,stroke:"var(--privy-color-accent)"}),qe("h3",{style:{color:"var(--privy-color-foreground)"},children:"Load your account"}),qe("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Please provision your account on this new device. To continue, enter your recovery password."})]}),$o("div",{children:[qe(Vi,{onChange:W=>M(W.target.value),disabled:x}),!!P&&qe(Gh,{children:P})]}),$o("div",{children:[$o(Qs,{children:[qe("h4",{children:"Why is this necessary?"}),qe("p",{children:"You previously set a password for this wallet. This helps ensure only you can access it"})]}),qe(zh,{loading:x||!o,disabled:!s,onClick:async()=>{m(!0);let W=await t();if(W&&C&&s!==null)try{n("embedded_wallet_recovery_started",{walletAddress:C.address}),await o?.recover({address:C.address,accessToken:W,recoveryPin:s}),y(""),T?i(T):r({shouldCallAuthOnSuccess:!1}),f?.(C),n("embedded_wallet_recovery_completed",{walletAddress:C.address})}catch(N){Al(N)?y("Invalid recovery password, please try again."):y("An error has occurred, please try again.")}finally{m(!1)}else return w("User must be authenticated and have a Privy wallet before it can be recovered")},warn:!1,hideAnimations:!C&&x,children:"Recover your account"})]})]}),qe(L,{}),qe(F,{protectedByPrivy:!0})]})},Bh=Sn.div`
1058
1062
  display: flex;
1059
1063
  flex-direction: column;
1060
1064
  align-items: center;
@@ -1076,33 +1080,33 @@ Resources:
1076
1080
  font-weight: 400;
1077
1081
  line-height: 20px;
1078
1082
  }
1079
- `,Bh=_n.div`
1083
+ `,Hh=Sn.div`
1080
1084
  display: flex;
1081
1085
  height: 100%;
1082
1086
  flex-direction: column;
1083
1087
  justify-content: space-between;
1084
- `,Hh=_n.div`
1088
+ `,Gh=Sn.div`
1085
1089
  line-height: 20px;
1086
1090
  height: 20px;
1087
1091
  font-size: 13px;
1088
1092
  color: var(--privy-color-error);
1089
1093
  text-align: left;
1090
1094
  margin-top: 0.5rem;
1091
- `,Gh=_n(K)`
1092
- ${e=>e.hideAnimations&&Uh`
1095
+ `,zh=Sn(K)`
1096
+ ${e=>e.hideAnimations&&Fh`
1093
1097
  && {
1094
1098
  // Remove animations because the recoverWallet task on the iframe partially
1095
1099
  // blocks the renderer, so the animation stutters and doesn't look good
1096
1100
  transition: none;
1097
1101
  }
1098
1102
  `}
1099
- `;import{EyeSlashIcon as Vh,LinkIcon as qh,ClockIcon as Kh}from"@heroicons/react/24/outline";import kt from"styled-components";import{jsx as ji,jsxs as $h}from"react/jsx-runtime";var Sn=({size:e=61,...t})=>ji("svg",{width:e,height:e,viewBox:"0 0 61 61",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:$h("g",{id:"moonpay_symbol_wht 2",children:[ji("rect",{x:"1.3374",y:"1",width:"59",height:"59",rx:"11.5",fill:"#7715F5"}),ji("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 rc,jsx as xe,jsxs as fo}from"react/jsx-runtime";var Yi=({title:e,desc:t,icon:o})=>fo(Zh,{children:[xe(ef,{children:o}),fo(Xh,{children:[xe(Jh,{children:e}),xe(Qh,{children:t})]})]}),nc=({app:e,signedUrl:t,onContinue:o})=>fo(rc,{children:[fo(jh,{children:[xe(Sn,{size:"3.75rem"}),fo(Yh,{children:[e?.name," uses ",xe("span",{style:{fontWeight:"bold"},children:"Moonpay"})," to fund your account"]}),fo(tf,{children:[xe(Yi,{icon:xe(qh,{width:"1rem"}),title:"Purchase assets to fund your account",desc:fo(rc,{children:["Connect a payment method (",xe("strong",{children:"debit card recommended"}),") to purchase digital assets."]})}),xe(Yi,{icon:xe(Kh,{width:"1rem"}),title:"Compliance takes time",desc:"Funding a new account may take a few hours. You'll be good to go thereafter."}),xe(Yi,{icon:xe(Vh,{width:"1rem"}),title:"Your data belongs to you",desc:"MoonPay does not sell your data and will only use it with your permission."})]}),xe(of,{className:"mobile-only"})]}),xe(pe,{children:xe(cn,{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"})})]}),jh=kt.div`
1103
+ `;import{EyeSlashIcon as qh,LinkIcon as Kh,ClockIcon as jh}from"@heroicons/react/24/outline";import kt from"styled-components";import{jsx as ji,jsxs as Vh}from"react/jsx-runtime";var An=({size:e=61,...t})=>ji("svg",{width:e,height:e,viewBox:"0 0 61 61",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:Vh("g",{id:"moonpay_symbol_wht 2",children:[ji("rect",{x:"1.3374",y:"1",width:"59",height:"59",rx:"11.5",fill:"#7715F5"}),ji("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 nc,jsx as xe,jsxs as fo}from"react/jsx-runtime";var Yi=({title:e,desc:t,icon:o})=>fo(Xh,{children:[xe(tf,{children:o}),fo(ef,{children:[xe(Qh,{children:e}),xe(Zh,{children:t})]})]}),ic=({app:e,signedUrl:t,onContinue:o})=>fo(nc,{children:[fo(Yh,{children:[xe(An,{size:"3.75rem"}),fo(Jh,{children:[e?.name," uses ",xe("span",{style:{fontWeight:"bold"},children:"Moonpay"})," to fund your account"]}),fo(of,{children:[xe(Yi,{icon:xe(Kh,{width:"1rem"}),title:"Purchase assets to fund your account",desc:fo(nc,{children:["Connect a payment method (",xe("strong",{children:"debit card recommended"}),") to purchase digital assets."]})}),xe(Yi,{icon:xe(jh,{width:"1rem"}),title:"Compliance takes time",desc:"Funding a new account may take a few hours. You'll be good to go thereafter."}),xe(Yi,{icon:xe(qh,{width:"1rem"}),title:"Your data belongs to you",desc:"MoonPay does not sell your data and will only use it with your permission."})]}),xe(rf,{className:"mobile-only"})]}),xe(pe,{children:xe(ln,{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"})})]}),Yh=kt.div`
1100
1104
  display: flex;
1101
1105
  flex-direction: column;
1102
1106
  align-items: center;
1103
1107
  justify-content: center;
1104
1108
  padding-top: 2rem;
1105
- `,Yh=kt.span`
1109
+ `,Jh=kt.span`
1106
1110
  color: var(--privy-color-foreground);
1107
1111
  text-align: center;
1108
1112
  font-size: 1.125rem;
@@ -1111,53 +1115,53 @@ Resources:
1111
1115
  margin: 1.5rem 0;
1112
1116
  text-align: center;
1113
1117
  max-width: 19.5rem;
1114
- `,Jh=kt.span`
1118
+ `,Qh=kt.span`
1115
1119
  color: var(--privy-color-foreground);
1116
1120
  font-size: 0.875rem;
1117
1121
  font-weight: 500;
1118
1122
  line-height: 1.225rem;
1119
1123
  width: 100%;
1120
- `,Qh=kt.span`
1124
+ `,Zh=kt.span`
1121
1125
  color: var(--privy-color-foreground-2);
1122
1126
  font-size: 0.875rem;
1123
1127
  font-weight: 400;
1124
1128
  line-height: 1.225rem;
1125
- `,Zh=kt.div`
1129
+ `,Xh=kt.div`
1126
1130
  display: flex;
1127
1131
  align-items: flex-start;
1128
1132
  gap: 0.5rem;
1129
1133
  align-self: stretch;
1130
- `,Xh=kt.div`
1134
+ `,ef=kt.div`
1131
1135
  display: flex;
1132
1136
  flex-direction: column;
1133
1137
  gap: 0.25rem;
1134
1138
  align-items: flex-start;
1135
1139
  text-align: left;
1136
1140
  flex: 1 0 0;
1137
- `,ef=kt.div`
1138
- padding-top: 2px;
1139
1141
  `,tf=kt.div`
1142
+ padding-top: 2px;
1143
+ `,of=kt.div`
1140
1144
  display: flex;
1141
1145
  flex-direction: column;
1142
1146
  gap: 1.25rem;
1143
1147
  margin: 0 0.5rem;
1144
- `,of=kt.div`
1148
+ `,rf=kt.div`
1145
1149
  margin: 30px 0;
1146
- `;import{ofetch as rf}from"ofetch";import{useEffect as nf,useRef as af,useState as sf}from"react";var An="moonpay",ic="sdk_fiat_on_ramp_completed_with_status";async function ac(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 lf(e,t){let o=t?fs:hs,r=t?gs:ys;return rf(`${o}/transactions/ext/${e}`,{query:{apiKey:r}})}function sc(e,t=!1){let[o,r]=sf(null),{createAnalyticsEvent:n}=P(),i=af(0);return nf(()=>{let a=setInterval(async()=>{if(e)try{let[l]=await lf(e,t),s=l.status==="waitingAuthorization"&&l.paymentMethod==="credit_debit_card"?"pending":l.status;r(s),["failed","completed","awaitingAuthorization"].includes(s)&&(n(ic,{status:s,provider:An,paymentMethod:l.paymentMethod,cardPaymentType:l.cardPaymentType,currency:l.currency?.code,baseCurrencyAmount:l.baseCurrencyAmount,quoteCurrencyAmount:l.quoteCurrencyAmount,feeAmount:l.feeAmount,extraFeeAmount:l.extraFeeAmount,networkFeeAmount:l.networkFeeAmount}),clearInterval(a))}catch(l){l.response?.status!==404&&(i.current+=1),i.current>=3&&(r("serviceFailure"),n(ic,{status:"serviceFailure",provider:An}),clearInterval(a))}},3e3);return()=>clearInterval(a)},[e,i]),o}import{Fragment as cf,jsx as Rn,jsxs as df}from"react/jsx-runtime";var lc=()=>{let{app:e,data:t,navigate:o}=y(),{createAnalyticsEvent:r}=P(),{signedUrl:n}=t.fiatOnRampPrompt;return!e||!n?null:df(cf,{children:[Rn(S,{title:"Fund account"},"header"),Rn(R,{}),Rn(nc,{app:e,signedUrl:n,onContinue:()=>{r("sdk_fiat_on_ramp_started",{provider:An}),o("FIAT_ON_RAMP_STATUS_SCREEN")}}),Rn(F,{protectedByPrivy:!0})]})};import{ArrowsRightLeftIcon as pf,CheckCircleIcon as uf,XCircleIcon as mf}from"@heroicons/react/24/solid";import{useMemo as hf}from"react";import cc from"styled-components";import{Fragment as Ji,jsx as ve,jsxs as yo}from"react/jsx-runtime";var dc=()=>{let{app:e,data:t}=y(),{closePrivyModal:o}=P(),{externalTransactionId:r}=t?.fiatOnRampStatus,n=sc(r||null,e.fiatOnRamp.useSandbox);return yo(Ji,{children:[ve(S,{title:"Fund account"},"header"),ve(R,{}),ve(yf,{status:n,onClickCta:o}),ve(F,{protectedByPrivy:!0})]})},ff=e=>{switch(e){case"completed":return{title:"You've funded your account!",body:"It may take a few minutes for the assets to appear.",cta:"Continue"};case"failed":return{title:"Something went wrong!",body:yo(Ji,{children:[yo("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:""}}},yf=({status:e,onClickCta:t})=>{let{title:o,body:r,cta:n}=hf(()=>ff(e),[e]);return yo(Ji,{children:[yo(bf,{style:{height:"100%",gap:0},children:[ve(wf,{status:e}),yo(Vt,{children:[ve("h3",{children:o}),ve(Cf,{children:r})]})]}),n&&ve(pe,{children:ve(K,{onClick:t,children:n})})]})},gf=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)",vf=e=>{switch(e){case"serviceFailure":case"failed":return mf;case"completed":return uf;case"waitingAuthorization":return()=>ve(pf,{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}},wf=({status:e})=>{if(!e||e==="pending"){let r="var(--privy-color-foreground-4)";return yo("div",{style:{position:"relative"},children:[ve(uo,{color:r,style:{position:"absolute"}}),ve(Ei,{color:r}),ve(Sn,{size:"3rem",style:{position:"absolute",top:"1rem",left:"1rem"}})]})}let t=vf(e),o=gf(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})})},Cf=cc.p`
1150
+ `;import{ofetch as nf}from"ofetch";import{useEffect as af,useRef as sf,useState as lf}from"react";var Rn="moonpay",ac="sdk_fiat_on_ramp_completed_with_status";async function sc(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 cf(e,t){let o=t?fs:hs,r=t?gs:ys;return nf(`${o}/transactions/ext/${e}`,{query:{apiKey:r}})}function lc(e,t=!1){let[o,r]=lf(null),{createAnalyticsEvent:n}=_(),i=sf(0);return af(()=>{let a=setInterval(async()=>{if(e)try{let[l]=await cf(e,t),s=l.status==="waitingAuthorization"&&l.paymentMethod==="credit_debit_card"?"pending":l.status;r(s),["failed","completed","awaitingAuthorization"].includes(s)&&(n(ac,{status:s,provider:Rn,paymentMethod:l.paymentMethod,cardPaymentType:l.cardPaymentType,currency:l.currency?.code,baseCurrencyAmount:l.baseCurrencyAmount,quoteCurrencyAmount:l.quoteCurrencyAmount,feeAmount:l.feeAmount,extraFeeAmount:l.extraFeeAmount,networkFeeAmount:l.networkFeeAmount}),clearInterval(a))}catch(l){l.response?.status!==404&&(i.current+=1),i.current>=3&&(r("serviceFailure"),n(ac,{status:"serviceFailure",provider:Rn}),clearInterval(a))}},3e3);return()=>clearInterval(a)},[e,i]),o}import{Fragment as df,jsx as kn,jsxs as pf}from"react/jsx-runtime";var cc=()=>{let{app:e,data:t,navigate:o}=g(),{createAnalyticsEvent:r}=_(),{signedUrl:n}=t.fiatOnRampPrompt;return!e||!n?null:pf(df,{children:[kn(S,{title:"Fund account"},"header"),kn(R,{}),kn(ic,{app:e,signedUrl:n,onContinue:()=>{r("sdk_fiat_on_ramp_started",{provider:Rn}),o("FIAT_ON_RAMP_STATUS_SCREEN")}}),kn(F,{protectedByPrivy:!0})]})};import{ArrowsRightLeftIcon as uf,CheckCircleIcon as mf,XCircleIcon as hf}from"@heroicons/react/24/solid";import{useMemo as ff}from"react";import dc from"styled-components";import{Fragment as Ji,jsx as ve,jsxs as yo}from"react/jsx-runtime";var pc=()=>{let{app:e,data:t}=g(),{closePrivyModal:o}=_(),{externalTransactionId:r}=t?.fiatOnRampStatus,n=lc(r||null,e.fiatOnRamp.useSandbox);return yo(Ji,{children:[ve(S,{title:"Fund account"},"header"),ve(R,{}),ve(gf,{status:n,onClickCta:o}),ve(F,{protectedByPrivy:!0})]})},yf=e=>{switch(e){case"completed":return{title:"You've funded your account!",body:"It may take a few minutes for the assets to appear.",cta:"Continue"};case"failed":return{title:"Something went wrong!",body:yo(Ji,{children:[yo("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:""}}},gf=({status:e,onClickCta:t})=>{let{title:o,body:r,cta:n}=ff(()=>yf(e),[e]);return yo(Ji,{children:[yo(Ef,{style:{height:"100%",gap:0},children:[ve(Cf,{status:e}),yo(Vt,{children:[ve("h3",{children:o}),ve(bf,{children:r})]})]}),n&&ve(pe,{children:ve(K,{onClick:t,children:n})})]})},vf=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)",wf=e=>{switch(e){case"serviceFailure":case"failed":return hf;case"completed":return mf;case"waitingAuthorization":return()=>ve(uf,{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}},Cf=({status:e})=>{if(!e||e==="pending"){let r="var(--privy-color-foreground-4)";return yo("div",{style:{position:"relative"},children:[ve(uo,{color:r,style:{position:"absolute"}}),ve(xi,{color:r}),ve(An,{size:"3rem",style:{position:"absolute",top:"1rem",left:"1rem"}})]})}let t=wf(e),o=vf(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})})},bf=dc.p`
1147
1151
  font-size: 1rem;
1148
1152
  color: var(--privy-color-foreground-3);
1149
1153
  margin-bottom: 1rem;
1150
1154
  display: flex;
1151
1155
  flex-direction: column;
1152
1156
  gap: 1rem;
1153
- `,bf=cc.div`
1157
+ `,Ef=dc.div`
1154
1158
  display: flex;
1155
1159
  flex-direction: column;
1156
1160
  align-items: center;
1157
1161
  justify-content: center;
1158
1162
  margin-left: 1.75rem;
1159
1163
  margin-right: 1.75rem;
1160
- `;import{useState as Of}from"react";import*as Wt from"react-device-detect";import vt from"styled-components";import Qi from"styled-components";import{jsx as pc}from"react/jsx-runtime";var uc=({style:e,...t})=>pc("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:pc("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 xf,jsxs as Tf}from"react/jsx-runtime";var kn=Qi.div`
1164
+ `;import{useState as Df}from"react";import*as Wt from"react-device-detect";import vt from"styled-components";import Qi from"styled-components";import{jsx as uc}from"react/jsx-runtime";var mc=({style:e,...t})=>uc("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:uc("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 Tf,jsxs as Pf}from"react/jsx-runtime";var Wn=Qi.div`
1161
1165
  display: flex;
1162
1166
  flex-direction: column;
1163
1167
  justify-content: flex-start;
@@ -1168,7 +1172,7 @@ Resources:
1168
1172
  border-left: 2px solid var(--privy-color-foreground-4);
1169
1173
  height: 12px;
1170
1174
  }
1171
- `,gt=({children:e})=>Tf(Ef,{children:[xf(uc,{style:{width:"16px",height:"16px"}}),e]}),Ef=Qi.div`
1175
+ `,gt=({children:e})=>Pf(xf,{children:[Tf(mc,{style:{width:"16px",height:"16px"}}),e]}),xf=Qi.div`
1172
1176
  display: flex;
1173
1177
  justify-content: flex-start;
1174
1178
  justify-items: center;
@@ -1186,7 +1190,7 @@ Resources:
1186
1190
  margin-bottom: auto;
1187
1191
  }
1188
1192
  }
1189
- `;import Pf from"qrcode";import _f from"styled-components";import{Fragment as qo,jsx as Te,jsxs as fc}from"react/jsx-runtime";var Me=7,Zi=(e,t,o,r,n)=>{for(let i=t;i<t+r;i++)for(let a=o;a<o+n;a++){let l=e?.[a];l&&l[i]&&(l[i]=0)}return e},Sf=e=>{let t=Pf.create(e,{errorCorrectionLevel:"high"}).modules,o=Cs(Array.from(t.data),t.size);return o=Zi(o,0,0,Me,Me),o=Zi(o,o.length-Me,0,Me,Me),o=Zi(o,0,o.length-Me,Me,Me),o},Af=({x:e,y:t,cellSize:o,bgColor:r,fgColor:n})=>Te(qo,{children:[0,1,2].map(i=>Te("circle",{r:o*(Me-i*2)/2,cx:e+o*Me/2,cy:t+o*Me/2,fill:i%2!==0?r:n},`finder-${e}-${t}-${i}`))}),Rf=({cellSize:e,matrixSize:t,bgColor:o,fgColor:r})=>{let n=[[0,0],[(t-Me)*e,0],[0,(t-Me)*e]];return Te(qo,{children:n.map(([i,a])=>Te(Af,{x:i,y:a,cellSize:e,bgColor:o,fgColor:r}))})},kf=({matrix:e,cellSize:t,color:o})=>Te(qo,{children:e.map((r,n)=>r.map((i,a)=>i?Te("circle",{r:t/2.5,cx:n*t+t/2,cy:a*t+t/2,fill:o},`circle-${n}-${a}`):Te(qo,{})))}),mc=(e,t)=>e-e%t,Wf=({outputSize:e,cellSize:t,element:o,size:r,padding:n,bgColor:i})=>{if(!o)return Te(qo,{});let a=r||40,l=n||4,s=o,c=e/2-a/2-l;return fc(qo,{children:[Te("rect",{x:mc(c,t),y:mc(c,t),width:a+l*2+(c%t?t+.5:.5),height:a+l*2+(c%t?t+.5:.5),fill:i}),Te(s,{x:e/2-a/2,y:e/2-a/2,height:a,width:a})]})},If=e=>{let t=e.outputSize,o=Sf(e.url),r=t/o.length;return fc("svg",{height:e.outputSize,width:e.outputSize,viewBox:`0 0 ${e.outputSize} ${e.outputSize}`,style:{height:"100%",width:"100%"},children:[Te(kf,{matrix:o,cellSize:r,color:e.fgColor}),Te(Rf,{cellSize:r,matrixSize:o.length,fgColor:e.fgColor,bgColor:e.bgColor}),Te(Wf,{outputSize:e.outputSize,cellSize:r,element:e.logo?.element,bgColor:e.bgColor})]})},Nf=_f.div`
1193
+ `;import _f from"qrcode";import Sf from"styled-components";import{Fragment as Vo,jsx as Te,jsxs as yc}from"react/jsx-runtime";var Me=7,Zi=(e,t,o,r,n)=>{for(let i=t;i<t+r;i++)for(let a=o;a<o+n;a++){let l=e?.[a];l&&l[i]&&(l[i]=0)}return e},Af=e=>{let t=_f.create(e,{errorCorrectionLevel:"high"}).modules,o=Cs(Array.from(t.data),t.size);return o=Zi(o,0,0,Me,Me),o=Zi(o,o.length-Me,0,Me,Me),o=Zi(o,0,o.length-Me,Me,Me),o},Rf=({x:e,y:t,cellSize:o,bgColor:r,fgColor:n})=>Te(Vo,{children:[0,1,2].map(i=>Te("circle",{r:o*(Me-i*2)/2,cx:e+o*Me/2,cy:t+o*Me/2,fill:i%2!==0?r:n},`finder-${e}-${t}-${i}`))}),kf=({cellSize:e,matrixSize:t,bgColor:o,fgColor:r})=>{let n=[[0,0],[(t-Me)*e,0],[0,(t-Me)*e]];return Te(Vo,{children:n.map(([i,a])=>Te(Rf,{x:i,y:a,cellSize:e,bgColor:o,fgColor:r}))})},Wf=({matrix:e,cellSize:t,color:o})=>Te(Vo,{children:e.map((r,n)=>r.map((i,a)=>i?Te("circle",{r:t/2.5,cx:n*t+t/2,cy:a*t+t/2,fill:o},`circle-${n}-${a}`):Te(Vo,{})))}),hc=(e,t)=>e-e%t,If=({outputSize:e,cellSize:t,element:o,size:r,padding:n,bgColor:i})=>{if(!o)return Te(Vo,{});let a=r||40,l=n||4,s=o,c=e/2-a/2-l;return yc(Vo,{children:[Te("rect",{x:hc(c,t),y:hc(c,t),width:a+l*2+(c%t?t+.5:.5),height:a+l*2+(c%t?t+.5:.5),fill:i}),Te(s,{x:e/2-a/2,y:e/2-a/2,height:a,width:a})]})},Nf=e=>{let t=e.outputSize,o=Af(e.url),r=t/o.length;return yc("svg",{height:e.outputSize,width:e.outputSize,viewBox:`0 0 ${e.outputSize} ${e.outputSize}`,style:{height:"100%",width:"100%"},children:[Te(Wf,{matrix:o,cellSize:r,color:e.fgColor}),Te(kf,{cellSize:r,matrixSize:o.length,fgColor:e.fgColor,bgColor:e.bgColor}),Te(If,{outputSize:e.outputSize,cellSize:r,element:e.logo?.element,bgColor:e.bgColor})]})},Lf=Sf.div`
1190
1194
  display: flex;
1191
1195
  justify-content: center;
1192
1196
  align-items: center;
@@ -1201,7 +1205,7 @@ Resources:
1201
1205
  border-color: ${e=>e.fgColor};
1202
1206
  border-radius: var(--privy-border-radius-md);
1203
1207
  }
1204
- `,hc=e=>{let t=e.bgColor||"#FFFFFF",o=e.fgColor||"#000000",r=e.size||160;return Te(Nf,{size:r,bgColor:t,fgColor:o,children:Te(If,{url:e.url,logo:{element:e.squareLogoElement},outputSize:r,bgColor:t,fgColor:o})})};import{jsx as Lf}from"react/jsx-runtime";var yc=({size:e})=>Lf(hc,{url:"https://coinbase-wallet.onelink.me/q5Sx/fdb9b250",squareLogoElement:st,size:e,fgColor:"#1F1F1F"});import{jsx as gc}from"react/jsx-runtime";var vc=e=>gc("svg",{width:"160",height:"160",viewBox:"0 0 160 160",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e,children:gc("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 Mf}from"react/jsx-runtime";var wc=({style:e,...t})=>Mf("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(Ge,{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(vc,{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 Xi,jsx as A,jsxs as se}from"react/jsx-runtime";var ea=()=>{let{navigate:e}=y(),t="https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn?hl=en";return Wt.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/ether-metamask/"),se(ra,{children:[A(ht,{title:"Create a MetaMask wallet",description:"Follow the instructions below to get started."}),A(na,{children:A(be,{style:{width:"152px",height:"152px"}})}),se(kn,{children:[A(gt,{children:se("div",{children:[A("span",{children:"Install the "}),A("a",{href:t,target:"_blank",children:"MetaMask browser extension"})]})}),A(go,{}),A(gt,{children:"Set up your first wallet"}),A(go,{}),A(gt,{children:"Store your recovery phrase in a safe place!"})]}),A(fe,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},ta=()=>{let{navigate:e}=y(),t="https://chrome.google.com/webstore/detail/phantom/bfnaelmomeimhlpmgjnjophhpkkoljpa?hl=en";return Wt.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/phantom-app/"),se(ra,{children:[A(ht,{title:"Create a Phantom wallet",description:"Follow the instructions below to get started."}),A(na,{children:A(Ge,{style:{width:"152px",height:"152px"}})}),se(kn,{children:[A(gt,{children:se("div",{children:[A("span",{children:"Install the "}),A("a",{href:t,target:"_blank",children:"Phantom browser extension"})]})}),A(go,{}),A(gt,{children:"Set up your first wallet"}),A(go,{}),A(gt,{children:"Store your recovery phrase in a safe place!"})]}),A(fe,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},oa=()=>{let{navigate:e}=y();return se(ra,{children:[A(ht,{title:"Create a Coinbase wallet",description:"Follow the instructions below to get started."}),A(na,{style:{marginTop:"-24px"},children:A(yc,{size:200})}),se(kn,{children:[A(gt,{children:"Scan the QR code with your camera"}),A(go,{}),A(gt,{children:"Set up your first wallet"}),A(go,{}),A(gt,{children:"Store your seed phrase in a safe place!"})]}),A(fe,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},Ec=()=>{let[e,t]=Of("WHAT_IS_A_WALLET"),{navigateBack:o}=y();return se(Xi,{children:[A(S,{backFn:e==="WHAT_IS_A_WALLET"?o:e==="PICK_A_NEW_WALLET"?()=>t("WHAT_IS_A_WALLET"):()=>t("PICK_A_NEW_WALLET")},"header"),A(R,{}),se(Df,{children:[e==="WHAT_IS_A_WALLET"&&se(Xi,{children:[A(Gf,{children:A(wc,{style:{width:"240px",height:"auto",borderRadius:"var(--privy-border-radius-sm)",marginBottom:"32px"}})}),se(Ee,{title:"Get started with a new wallet",children:[A("p",{children:"Wallets help you store, send, and receive digital assets and collectibles. They are also a new\xA0way\xA0to\xA0log\xA0in."}),A("p",{children:"Instead of creating new accounts and passwords for every app, you just connect your wallet and bring your\xA0data\xA0with\xA0you."})]}),A(Bf,{children:A(Hf,{onClick:()=>{t("PICK_A_NEW_WALLET")},children:"Create a wallet"})})]}),e==="PICK_A_NEW_WALLET"&&A(Xi,{children:se(Uf,{children:[A(ht,{title:"Create a new wallet",description:"Select one of the wallet providers below to get started."}),se(Ff,{children:[se(Cc,{onClick:()=>{Wt.isIOS?window.location.href="https://apps.apple.com/us/app/metamask-blockchain-wallet/id1438144202":Wt.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=io.metamask":t("CREATE_METAMASK_WALLET")},children:[A(be,{}),se(bc,{children:[A("h4",{children:"MetaMask"}),A("p",{children:"Get a browser-based wallet"})]})]}),se(Cc,{onClick:()=>{Wt.isIOS?window.location.href="https://apps.apple.com/us/app/coinbase-wallet-nfts-crypto/id1278383455":Wt.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=org.toshi":t("CREATE_COINBASE_WALLET")},children:[A(st,{}),se(bc,{children:[A("h4",{children:"Coinbase Wallet"}),A("p",{children:"Get a mobile app wallet"})]})]})]})]})}),e==="CREATE_COINBASE_WALLET"&&A(oa,{}),e==="CREATE_METAMASK_WALLET"&&A(ea,{}),e==="CREATE_PHANTOM_WALLET"&&A(ta,{})]}),A(N,{}),se(J,{children:[A("span",{children:"Still not sure? "}),A("a",{target:"_blank",href:"https://ethereum.org/en/wallets/",children:"Learn more"}),"."]})]})},Df=vt.div`
1208
+ `,fc=e=>{let t=e.bgColor||"#FFFFFF",o=e.fgColor||"#000000",r=e.size||160;return Te(Lf,{size:r,bgColor:t,fgColor:o,children:Te(Nf,{url:e.url,logo:{element:e.squareLogoElement},outputSize:r,bgColor:t,fgColor:o})})};import{jsx as Mf}from"react/jsx-runtime";var gc=({size:e})=>Mf(fc,{url:"https://coinbase-wallet.onelink.me/q5Sx/fdb9b250",squareLogoElement:st,size:e,fgColor:"#1F1F1F"});import{jsx as vc}from"react/jsx-runtime";var wc=e=>vc("svg",{width:"160",height:"160",viewBox:"0 0 160 160",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e,children:vc("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 Of}from"react/jsx-runtime";var Cc=({style:e,...t})=>Of("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(Ge,{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(wc,{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 Xi,jsx as A,jsxs as se}from"react/jsx-runtime";var ea=()=>{let{navigate:e}=g(),t="https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn?hl=en";return Wt.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/ether-metamask/"),se(ra,{children:[A(ht,{title:"Create a MetaMask wallet",description:"Follow the instructions below to get started."}),A(na,{children:A(be,{style:{width:"152px",height:"152px"}})}),se(Wn,{children:[A(gt,{children:se("div",{children:[A("span",{children:"Install the "}),A("a",{href:t,target:"_blank",children:"MetaMask browser extension"})]})}),A(go,{}),A(gt,{children:"Set up your first wallet"}),A(go,{}),A(gt,{children:"Store your recovery phrase in a safe place!"})]}),A(fe,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},ta=()=>{let{navigate:e}=g(),t="https://chrome.google.com/webstore/detail/phantom/bfnaelmomeimhlpmgjnjophhpkkoljpa?hl=en";return Wt.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/phantom-app/"),se(ra,{children:[A(ht,{title:"Create a Phantom wallet",description:"Follow the instructions below to get started."}),A(na,{children:A(Ge,{style:{width:"152px",height:"152px"}})}),se(Wn,{children:[A(gt,{children:se("div",{children:[A("span",{children:"Install the "}),A("a",{href:t,target:"_blank",children:"Phantom browser extension"})]})}),A(go,{}),A(gt,{children:"Set up your first wallet"}),A(go,{}),A(gt,{children:"Store your recovery phrase in a safe place!"})]}),A(fe,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},oa=()=>{let{navigate:e}=g();return se(ra,{children:[A(ht,{title:"Create a Coinbase wallet",description:"Follow the instructions below to get started."}),A(na,{style:{marginTop:"-24px"},children:A(gc,{size:200})}),se(Wn,{children:[A(gt,{children:"Scan the QR code with your camera"}),A(go,{}),A(gt,{children:"Set up your first wallet"}),A(go,{}),A(gt,{children:"Store your seed phrase in a safe place!"})]}),A(fe,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},xc=()=>{let[e,t]=Df("WHAT_IS_A_WALLET"),{navigateBack:o}=g();return se(Xi,{children:[A(S,{backFn:e==="WHAT_IS_A_WALLET"?o:e==="PICK_A_NEW_WALLET"?()=>t("WHAT_IS_A_WALLET"):()=>t("PICK_A_NEW_WALLET")},"header"),A(R,{}),se(Uf,{children:[e==="WHAT_IS_A_WALLET"&&se(Xi,{children:[A(zf,{children:A(Cc,{style:{width:"240px",height:"auto",borderRadius:"var(--privy-border-radius-sm)",marginBottom:"32px"}})}),se(Ee,{title:"Get started with a new wallet",children:[A("p",{children:"Wallets help you store, send, and receive digital assets and collectibles. They are also a new\xA0way\xA0to\xA0log\xA0in."}),A("p",{children:"Instead of creating new accounts and passwords for every app, you just connect your wallet and bring your\xA0data\xA0with\xA0you."})]}),A(Hf,{children:A(Gf,{onClick:()=>{t("PICK_A_NEW_WALLET")},children:"Create a wallet"})})]}),e==="PICK_A_NEW_WALLET"&&A(Xi,{children:se(Ff,{children:[A(ht,{title:"Create a new wallet",description:"Select one of the wallet providers below to get started."}),se(Bf,{children:[se(bc,{onClick:()=>{Wt.isIOS?window.location.href="https://apps.apple.com/us/app/metamask-blockchain-wallet/id1438144202":Wt.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=io.metamask":t("CREATE_METAMASK_WALLET")},children:[A(be,{}),se(Ec,{children:[A("h4",{children:"MetaMask"}),A("p",{children:"Get a browser-based wallet"})]})]}),se(bc,{onClick:()=>{Wt.isIOS?window.location.href="https://apps.apple.com/us/app/coinbase-wallet-nfts-crypto/id1278383455":Wt.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=org.toshi":t("CREATE_COINBASE_WALLET")},children:[A(st,{}),se(Ec,{children:[A("h4",{children:"Coinbase Wallet"}),A("p",{children:"Get a mobile app wallet"})]})]})]})]})}),e==="CREATE_COINBASE_WALLET"&&A(oa,{}),e==="CREATE_METAMASK_WALLET"&&A(ea,{}),e==="CREATE_PHANTOM_WALLET"&&A(ta,{})]}),A(L,{}),se(J,{children:[A("span",{children:"Still not sure? "}),A("a",{target:"_blank",href:"https://ethereum.org/en/wallets/",children:"Learn more"}),"."]})]})},Uf=vt.div`
1205
1209
  display: flex;
1206
1210
  flex-direction: column;
1207
1211
  height: 100%;
@@ -1212,19 +1216,19 @@ Resources:
1212
1216
  display: none;
1213
1217
  }
1214
1218
  }
1215
- `,Uf=vt.div`
1219
+ `,Ff=vt.div`
1216
1220
  display: flex;
1217
1221
  flex-direction: column;
1218
1222
  align-items: flex-start;
1219
1223
  justify-content: flex-start;
1220
1224
  text-align: left;
1221
1225
  gap: 20px;
1222
- `,Ff=vt.div`
1226
+ `,Bf=vt.div`
1223
1227
  display: flex;
1224
1228
  flex-direction: column;
1225
1229
  width: 100%;
1226
1230
  gap: 8px;
1227
- `,Cc=vt.button`
1231
+ `,bc=vt.button`
1228
1232
  display: flex;
1229
1233
  flex-direction: row;
1230
1234
  align-items: center;
@@ -1257,20 +1261,20 @@ Resources:
1257
1261
  :hover {
1258
1262
  border: 1px solid var(--privy-color-accent-light);
1259
1263
  }
1260
- `,bc=vt.div`
1264
+ `,Ec=vt.div`
1261
1265
  text-align: left;
1262
1266
 
1263
1267
  p {
1264
1268
  font-style: italic;
1265
1269
  font-size: 12px;
1266
1270
  }
1267
- `,Bf=vt.div`
1271
+ `,Hf=vt.div`
1268
1272
  margin-top: auto;
1269
1273
  display: flex;
1270
1274
  align-items: flex-end;
1271
1275
  flex-grow: 1;
1272
1276
  width: 100%;
1273
- `,Hf=vt(K)`
1277
+ `,Gf=vt(K)`
1274
1278
  && {
1275
1279
  margin-top: 14px;
1276
1280
  }
@@ -1292,11 +1296,11 @@ Resources:
1292
1296
  align-items: center;
1293
1297
  justify-content: center;
1294
1298
  width: 100%;
1295
- `,Gf=vt.div`
1299
+ `,zf=vt.div`
1296
1300
  display: flex;
1297
1301
  justify-content: center;
1298
1302
  flex-grow: 1;
1299
- `;import{Fragment as zf,jsx as Ko,jsxs as xc}from"react/jsx-runtime";var Tc=()=>{let{navigateBack:e}=y();return xc(zf,{children:[Ko(S,{backFn:e},"header"),Ko(R,{}),Ko(oa,{}),Ko(N,{}),xc(J,{children:[Ko("span",{children:"Still not sure? "}),Ko("a",{target:"_blank",href:"https://ethereum.org/en/wallets/",children:"Learn more"})]})]})};import{Fragment as $f,jsx as jo,jsxs as Pc}from"react/jsx-runtime";var _c=()=>{let{navigateBack:e}=y();return Pc($f,{children:[jo(S,{backFn:e},"header"),jo(R,{}),jo(ea,{}),jo(N,{}),Pc(J,{children:[jo("span",{children:"Still not sure? "}),jo("a",{target:"_blank",href:"https://ethereum.org/en/wallets/",children:"Learn more"})]})]})};import{Fragment as Vf,jsx as Yo,jsxs as Sc}from"react/jsx-runtime";var Ac=()=>{let{navigateBack:e}=y();return Sc(Vf,{children:[Yo(S,{backFn:e},"header"),Yo(R,{}),Yo(ta,{}),Yo(N,{}),Sc(J,{children:[Yo("span",{children:"Still not sure? "}),Yo("a",{target:"_blank",href:"https://ethereum.org/en/wallets/",children:"Learn more"})]})]})};import{useState as ly}from"react";import{isMobile as Lc}from"react-device-detect";import Jo from"styled-components";import{EnvelopeIcon as qf}from"@heroicons/react/24/outline";import{useEffect as ia,useState as aa}from"react";import la from"styled-components";import{Fragment as Jf,jsx as vo,jsxs as sa}from"react/jsx-runtime";var Wn=e=>{let[t,o]=aa(""),[r,n]=aa(!1),[i,a]=aa(null),{isLinking:l,initLoginWithEmail:s,captchaData:c}=P(),{app:T,navigate:g}=y(),E=T?.loginMethods.wallet??!1;ia(()=>{document.querySelector("#email-input")?.focus()},[]);let m=vs(t),C=()=>{n(!0),s(t,c.token).then(()=>{c.enabled&&c.remove(),g("AWAITING_PASSWORDLESS_CODE")}).catch(w=>{w?.status===422?a(w.message):w?.privyErrorCode==="allowlist_rejected"?g("ALLOWLIST_REJECTION_SCREEN"):(console.error(w),a("Issue submitting email")),n(!1)})},x="Get started without a wallet.";i?x=i:l?x="\u200B":E||(x="Get started quickly with email");let f=c.enabled&&!c.token&&!c.error,_=c.error!==void 0;return ia(()=>{c.error&&a("Issue verifying you are a human")},[c.error]),ia(()=>{c.ready&&c.execute()},[c.ready]),sa(Jf,{children:[sa(Kf,{stacked:e.stacked,children:[sa(jf,{standalone:e.stacked,children:[vo(qf,{}),vo("input",{id:"email-input",type:"email",placeholder:"your@email.com",onChange:w=>o(w.target.value),onKeyUp:w=>{w.key==="Enter"&&C()},value:t,autoComplete:"email"})]}),e.stacked?null:vo(pn,{disabled:r||!m||f||_,onClick:C,children:r||f?vo(Gt,{}):"Submit"})]}),c.enabled&&vo("div",{id:"cf-turnstile"}),vo(Yf,{fail:!!i,children:x}),e.stacked?vo(K,{loading:r||f,loadingText:null,disabled:r||!m||f||_,onClick:C,children:"Submit"}):null]})},Kf=la.div`
1303
+ `;import{Fragment as $f,jsx as qo,jsxs as Tc}from"react/jsx-runtime";var Pc=()=>{let{navigateBack:e}=g();return Tc($f,{children:[qo(S,{backFn:e},"header"),qo(R,{}),qo(oa,{}),qo(L,{}),Tc(J,{children:[qo("span",{children:"Still not sure? "}),qo("a",{target:"_blank",href:"https://ethereum.org/en/wallets/",children:"Learn more"})]})]})};import{Fragment as Vf,jsx as Ko,jsxs as _c}from"react/jsx-runtime";var Sc=()=>{let{navigateBack:e}=g();return _c(Vf,{children:[Ko(S,{backFn:e},"header"),Ko(R,{}),Ko(ea,{}),Ko(L,{}),_c(J,{children:[Ko("span",{children:"Still not sure? "}),Ko("a",{target:"_blank",href:"https://ethereum.org/en/wallets/",children:"Learn more"})]})]})};import{Fragment as qf,jsx as jo,jsxs as Ac}from"react/jsx-runtime";var Rc=()=>{let{navigateBack:e}=g();return Ac(qf,{children:[jo(S,{backFn:e},"header"),jo(R,{}),jo(ta,{}),jo(L,{}),Ac(J,{children:[jo("span",{children:"Still not sure? "}),jo("a",{target:"_blank",href:"https://ethereum.org/en/wallets/",children:"Learn more"})]})]})};import{useState as cy}from"react";import{isMobile as Mc}from"react-device-detect";import Yo from"styled-components";import{EnvelopeIcon as Kf}from"@heroicons/react/24/outline";import{useEffect as ia,useState as aa}from"react";import la from"styled-components";import{Fragment as Qf,jsx as vo,jsxs as sa}from"react/jsx-runtime";var In=e=>{let[t,o]=aa(""),[r,n]=aa(!1),[i,a]=aa(null),{isLinking:l,initLoginWithEmail:s,captchaData:c}=_(),{app:P,navigate:y}=g(),x=P?.loginMethods.wallet??!1;ia(()=>{document.querySelector("#email-input")?.focus()},[]);let m=vs(t),C=()=>{n(!0),s(t,c.token).then(()=>{c.enabled&&c.remove(),y("AWAITING_PASSWORDLESS_CODE")}).catch(w=>{w?.status===422?a(w.message):w?.privyErrorCode==="allowlist_rejected"?y("ALLOWLIST_REJECTION_SCREEN"):(console.error(w),a("Issue submitting email")),n(!1)})},T="Get started without a wallet.";i?T=i:l?T="\u200B":x||(T="Get started quickly with email");let f=c.enabled&&!c.token&&!c.error,E=c.error!==void 0;return ia(()=>{c.error&&a("Issue verifying you are a human")},[c.error]),ia(()=>{c.ready&&c.execute()},[c.ready]),sa(Qf,{children:[sa(jf,{stacked:e.stacked,children:[sa(Yf,{standalone:e.stacked,children:[vo(Kf,{}),vo("input",{id:"email-input",type:"email",placeholder:"your@email.com",onChange:w=>o(w.target.value),onKeyUp:w=>{w.key==="Enter"&&C()},value:t,autoComplete:"email"})]}),e.stacked?null:vo(dn,{disabled:r||!m||f||E,onClick:C,children:r||f?vo(Gt,{}):"Submit"})]}),c.enabled&&vo("div",{id:"cf-turnstile"}),vo(Jf,{fail:!!i,children:T}),e.stacked?vo(K,{loading:r||f,loadingText:null,disabled:r||!m||f||E,onClick:C,children:"Submit"}):null]})},jf=la.div`
1300
1304
  width: 100%;
1301
1305
  height: ${e=>e.stacked?"100%":"auto"};
1302
1306
 
@@ -1308,7 +1312,7 @@ Resources:
1308
1312
  @media (max-width: 440px) {
1309
1313
  margin-top: 20px;
1310
1314
  }
1311
- `,jf=la.label`
1315
+ `,Yf=la.label`
1312
1316
  display: flex;
1313
1317
  flex-direction: row;
1314
1318
  align-items: center;
@@ -1345,7 +1349,7 @@ Resources:
1345
1349
  line-height: 24px;
1346
1350
  }
1347
1351
  }
1348
- `,Yf=la.div`
1352
+ `,Jf=la.div`
1349
1353
  line-height: 20px;
1350
1354
  height: 20px;
1351
1355
  font-size: 13px;
@@ -1358,7 +1362,7 @@ Resources:
1358
1362
  > a {
1359
1363
  text-decoration: underline;
1360
1364
  }
1361
- `;import{PhoneIcon as Qf}from"@heroicons/react/24/outline";import{useEffect as ca,useState as da}from"react";import ua from"styled-components";import{Fragment as ty,jsx as wo,jsxs as pa}from"react/jsx-runtime";var In=e=>{let[t,o]=da(""),[r,n]=da(!1),[i,a]=da(null),{isLinking:l,initLoginWithSms:s,captchaData:c}=P(),{app:T,navigate:g}=y(),E=T?.loginMethods.wallet??!1;ca(()=>{document.querySelector("#phone-number-input")?.focus()},[]);let m=ws(t),C=()=>{n(!0),s(t,c.token).then(()=>{c.enabled&&c.remove(),g("AWAITING_PASSWORDLESS_CODE")}).catch(w=>{w?.status===422?a(w.message):w?.privyErrorCode==="allowlist_rejected"?g("ALLOWLIST_REJECTION_SCREEN"):(console.error(w),a("Issue submitting phone number")),n(!1)})},x="Get started without a wallet.";i?x=i:l?x="\u200B":E||(x="Get started quickly with your phone");let f=c.enabled&&!c.token&&!c.error,_=c.error!==void 0;return ca(()=>{c.error&&a("Issue verifying you are a human")},[c.error]),ca(()=>{c.ready&&c.execute()},[c.ready]),pa(ty,{children:[pa(Zf,{stacked:e.stacked,children:[pa(Xf,{standalone:e.stacked,children:[wo(Qf,{}),wo("input",{id:"phone-number-input",type:"tel",placeholder:"555 555 5555",onChange:w=>{o(w.target.value)},onKeyUp:w=>{w.key==="Enter"&&C()},value:t,autoComplete:"tel"})]}),e.stacked?null:wo(pn,{disabled:r||!m||f||_,onClick:C,children:r||f?wo(Gt,{}):"Submit"})]}),c.enabled&&wo("div",{id:"cf-turnstile"}),wo(ey,{fail:!!i,children:x}),e.stacked?wo(K,{loading:r||f,loadingText:null,disabled:r||!m||f||_,onClick:C,children:"Submit"}):null]})},Zf=ua.div`
1365
+ `;import{PhoneIcon as Zf}from"@heroicons/react/24/outline";import{useEffect as ca,useState as da}from"react";import ua from"styled-components";import{Fragment as oy,jsx as wo,jsxs as pa}from"react/jsx-runtime";var Nn=e=>{let[t,o]=da(""),[r,n]=da(!1),[i,a]=da(null),{isLinking:l,initLoginWithSms:s,captchaData:c}=_(),{app:P,navigate:y}=g(),x=P?.loginMethods.wallet??!1;ca(()=>{document.querySelector("#phone-number-input")?.focus()},[]);let m=ws(t),C=()=>{n(!0),s(t,c.token).then(()=>{c.enabled&&c.remove(),y("AWAITING_PASSWORDLESS_CODE")}).catch(w=>{w?.status===422?a(w.message):w?.privyErrorCode==="allowlist_rejected"?y("ALLOWLIST_REJECTION_SCREEN"):(console.error(w),a("Issue submitting phone number")),n(!1)})},T="Get started without a wallet.";i?T=i:l?T="\u200B":x||(T="Get started quickly with your phone");let f=c.enabled&&!c.token&&!c.error,E=c.error!==void 0;return ca(()=>{c.error&&a("Issue verifying you are a human")},[c.error]),ca(()=>{c.ready&&c.execute()},[c.ready]),pa(oy,{children:[pa(Xf,{stacked:e.stacked,children:[pa(ey,{standalone:e.stacked,children:[wo(Zf,{}),wo("input",{id:"phone-number-input",type:"tel",placeholder:"555 555 5555",onChange:w=>{o(w.target.value)},onKeyUp:w=>{w.key==="Enter"&&C()},value:t,autoComplete:"tel"})]}),e.stacked?null:wo(dn,{disabled:r||!m||f||E,onClick:C,children:r||f?wo(Gt,{}):"Submit"})]}),c.enabled&&wo("div",{id:"cf-turnstile"}),wo(ty,{fail:!!i,children:T}),e.stacked?wo(K,{loading:r||f,loadingText:null,disabled:r||!m||f||E,onClick:C,children:"Submit"}):null]})},Xf=ua.div`
1362
1366
  display: flex;
1363
1367
  border: 1px solid var(--privy-color-foreground-4);
1364
1368
  width: 100%;
@@ -1372,7 +1376,7 @@ Resources:
1372
1376
  @media (max-width: 440px) {
1373
1377
  margin-top: 20px;
1374
1378
  }
1375
- `,Xf=ua.label`
1379
+ `,ey=ua.label`
1376
1380
  display: flex;
1377
1381
  flex-direction: row;
1378
1382
  align-items: center;
@@ -1409,7 +1413,7 @@ Resources:
1409
1413
  line-height: 24px;
1410
1414
  }
1411
1415
  }
1412
- `,ey=ua.div`
1416
+ `,ty=ua.div`
1413
1417
  line-height: 20px;
1414
1418
  height: 20px;
1415
1419
  font-size: 13px;
@@ -1422,12 +1426,12 @@ Resources:
1422
1426
  > a {
1423
1427
  text-decoration: underline;
1424
1428
  }
1425
- `;import{useState as iy}from"react";import Ic from"styled-components";import{jsx as Rc,jsxs as oy}from"react/jsx-runtime";var Nn=({style:e,...t})=>oy("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:[Rc("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"}),Rc("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 Cr,jsxs as ry}from"react/jsx-runtime";var Ln=({style:e,...t})=>ry("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:[Cr("g",{clipPath:"url(#clip0)",children:Cr("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"})}),Cr("defs",{children:Cr("clipPath",{id:"clip0",children:Cr("rect",{width:"71",height:"55",fill:"white"})})})]});import{jsx as kc}from"react/jsx-runtime";var Mn=({style:e,...t})=>kc("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:kc("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 On,jsxs as ny}from"react/jsx-runtime";var Dn=({style:e,...t})=>ny("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:[On("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"}),On("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"}),On("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"}),On("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 Wc}from"react/jsx-runtime";var Un=({style:e,...t})=>Wc("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:Wc("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 wt,jsxs as sy}from"react/jsx-runtime";var Nc=({showGoogle:e,showTwitter:t,showDiscord:o,showGithub:r,showApple:n})=>{let[i,a]=iy(!1),{initLoginWithOAuth:l}=P(),{app:s}=y(),c=s?.appearance.palette.colorScheme;return sy(ay,{children:[e&&wt(br,{onClick:()=>{a(!0),l("google")},disabled:i,children:wt(Dn,{})}),t&&wt(br,{onClick:()=>{a(!0),l("twitter")},disabled:i,children:wt(Un,{})}),o&&wt(br,{onClick:()=>{a(!0),l("discord")},disabled:i,children:wt(Ln,{})}),r&&wt(br,{onClick:()=>{a(!0),l("github")},disabled:i,children:wt(Mn,{style:{color:c==="light"?"#000":"#fff"}})}),n&&wt(br,{onClick:()=>{a(!0),l("apple")},disabled:i,children:wt(Nn,{style:{color:c==="light"?"#000":"#fff"}})})]})},ay=Ic.div`
1429
+ `;import{useState as ay}from"react";import Nc from"styled-components";import{jsx as kc,jsxs as ry}from"react/jsx-runtime";var Ln=({style:e,...t})=>ry("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:[kc("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"}),kc("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 wr,jsxs as ny}from"react/jsx-runtime";var Mn=({style:e,...t})=>ny("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:[wr("g",{clipPath:"url(#clip0)",children:wr("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"})}),wr("defs",{children:wr("clipPath",{id:"clip0",children:wr("rect",{width:"71",height:"55",fill:"white"})})})]});import{jsx as Wc}from"react/jsx-runtime";var On=({style:e,...t})=>Wc("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:Wc("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 Dn,jsxs as iy}from"react/jsx-runtime";var Un=({style:e,...t})=>iy("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:[Dn("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"}),Dn("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"}),Dn("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"}),Dn("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 Ic}from"react/jsx-runtime";var Fn=({style:e,...t})=>Ic("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:Ic("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 wt,jsxs as ly}from"react/jsx-runtime";var Lc=({showGoogle:e,showTwitter:t,showDiscord:o,showGithub:r,showApple:n})=>{let[i,a]=ay(!1),{initLoginWithOAuth:l}=_(),{app:s}=g(),c=s?.appearance.palette.colorScheme;return ly(sy,{children:[e&&wt(Cr,{onClick:()=>{a(!0),l("google")},disabled:i,children:wt(Un,{})}),t&&wt(Cr,{onClick:()=>{a(!0),l("twitter")},disabled:i,children:wt(Fn,{})}),o&&wt(Cr,{onClick:()=>{a(!0),l("discord")},disabled:i,children:wt(Mn,{})}),r&&wt(Cr,{onClick:()=>{a(!0),l("github")},disabled:i,children:wt(On,{style:{color:c==="light"?"#000":"#fff"}})}),n&&wt(Cr,{onClick:()=>{a(!0),l("apple")},disabled:i,children:wt(Ln,{style:{color:c==="light"?"#000":"#fff"}})})]})},sy=Nc.div`
1426
1430
  display: flex;
1427
1431
  justify-content: space-between;
1428
1432
  width: 100%;
1429
1433
  gap: 4px;
1430
- `,br=Ic.button`
1434
+ `,Cr=Nc.button`
1431
1435
  && {
1432
1436
  border-radius: var(--privy-border-radius-sm);
1433
1437
  cursor: pointer;
@@ -1449,13 +1453,13 @@ Resources:
1449
1453
  background-color: var(--privy-color-background-2);
1450
1454
  }
1451
1455
  }
1452
- `;import{Fragment as ma,jsx as re,jsxs as Co}from"react/jsx-runtime";var Oc=()=>{let{app:e,outerClickRef:t}=y(),{captchaData:o,closePrivyModal:r}=P(),n=e?.loginMethods.email??!1,i=e?.loginMethods.sms??!1,a=e?.loginMethods.wallet??!1,l=e?.loginMethods.google??!1,s=e?.loginMethods.twitter??!1,c=e?.loginMethods.discord??!1,T=e?.loginMethods.github??!1,g=e?.loginMethods.apple??!1,E=a&&e?.appearance.showWalletLoginFirst?0:1,[m,C]=ly(E),x=m==0,f=m==1,_=a,w=n||i,M=_!==w,L=()=>{o.enabled&&o.remove(),r()};return t&&(t.current=L),Co(ma,{children:[re(S,{onClose:L},"header"),e?.appearance.logo?re(my,{hasOnlyOneSection:M,hasTerms:!!(e?.legal.privacyPolicyUrl||e?.legal.termsAndConditionsUrl),children:re(yn,{})}):null,Co(hy,{reverse:!e?.appearance.showWalletLoginFirst,children:[_&&re(cy,{active:x||M,connectOnly:!1,onClick:()=>{o.enabled&&o.remove(),C(0)},isOnlySection:!w}),w&&re(dy,{active:f||M,onClick:()=>C(1),email:n,sms:i,google:l,twitter:s,twitterOAuthOnMobileEnabled:e?.loginConfig.twitterOAuthOnMobileEnabled??!1,discord:c,github:T,apple:g,isOnlySection:!_})]}),e&&re(un,{app:e}),re(F,{protectedByPrivy:!0})]})};function cy(e){return Co(Uc,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,children:[re(Dc,{active:e.active,children:re("h4",{children:"Connect Wallet"})}),e.active&&Co(ma,{children:[re(jt,{connectOnly:e.connectOnly}),re(Yt,{})]})]})}function dy(e){let t=!Lc||e.twitterOAuthOnMobileEnabled&&Lc,o=e.google||e.discord||e.github||e.twitter&&t||e.apple,r=e.email?"Email":"Phone";return Co(Uc,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,children:[e.isOnlySection?null:re(Dc,{active:e.active,children:re("h4",{children:o?`${r} & Social`:r})}),e.active&&e.email&&re(Wn,{}),e.active&&e.sms&&!e.email&&re(In,{}),e.active&&o&&re(py,{google:e.google,twitter:e.twitter&&t,discord:e.discord,github:e.github,apple:e.apple})]})}function py(e){return Co(ma,{children:[Co(uy,{children:[re(Mc,{}),re("p",{children:" Or "}),re(Mc,{})]}),re(Nc,{showGoogle:e.google,showDiscord:e.discord,showGithub:e.github,showTwitter:e.twitter,showApple:e.apple})]})}var Dc=Jo.div`
1456
+ `;import{Fragment as ma,jsx as re,jsxs as Co}from"react/jsx-runtime";var Dc=()=>{let{app:e,outerClickRef:t}=g(),{captchaData:o,closePrivyModal:r}=_(),n=e?.loginMethods.email??!1,i=e?.loginMethods.sms??!1,a=e?.loginMethods.wallet??!1,l=e?.loginMethods.google??!1,s=e?.loginMethods.twitter??!1,c=e?.loginMethods.discord??!1,P=e?.loginMethods.github??!1,y=e?.loginMethods.apple??!1,x=a&&e?.appearance.showWalletLoginFirst?0:1,[m,C]=cy(x),T=m==0,f=m==1,E=a,w=n||i,M=E!==w,k=()=>{o.enabled&&o.remove(),r()};return t&&(t.current=k),Co(ma,{children:[re(S,{onClose:k},"header"),e?.appearance.logo?re(hy,{hasOnlyOneSection:M,hasTerms:!!(e?.legal.privacyPolicyUrl||e?.legal.termsAndConditionsUrl),children:re(fn,{})}):null,Co(fy,{reverse:!e?.appearance.showWalletLoginFirst,children:[E&&re(dy,{active:T||M,connectOnly:!1,onClick:()=>{o.enabled&&o.remove(),C(0)},isOnlySection:!w}),w&&re(py,{active:f||M,onClick:()=>C(1),email:n,sms:i,google:l,twitter:s,twitterOAuthOnMobileEnabled:e?.loginConfig.twitterOAuthOnMobileEnabled??!1,discord:c,github:P,apple:y,isOnlySection:!E})]}),e&&re(pn,{app:e}),re(F,{protectedByPrivy:!0})]})};function dy(e){return Co(Fc,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,children:[re(Uc,{active:e.active,children:re("h4",{children:"Connect Wallet"})}),e.active&&Co(ma,{children:[re(jt,{connectOnly:e.connectOnly}),re(Yt,{})]})]})}function py(e){let t=!Mc||e.twitterOAuthOnMobileEnabled&&Mc,o=e.google||e.discord||e.github||e.twitter&&t||e.apple,r=e.email?"Email":"Phone";return Co(Fc,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,children:[e.isOnlySection?null:re(Uc,{active:e.active,children:re("h4",{children:o?`${r} & Social`:r})}),e.active&&e.email&&re(In,{}),e.active&&e.sms&&!e.email&&re(Nn,{}),e.active&&o&&re(uy,{google:e.google,twitter:e.twitter&&t,discord:e.discord,github:e.github,apple:e.apple})]})}function uy(e){return Co(ma,{children:[Co(my,{children:[re(Oc,{}),re("p",{children:" Or "}),re(Oc,{})]}),re(Lc,{showGoogle:e.google,showDiscord:e.discord,showGithub:e.github,showTwitter:e.twitter,showApple:e.apple})]})}var Uc=Yo.div`
1453
1457
  font-weight: ${e=>e.active?600:500};
1454
1458
  color: ${e=>e.active?"var(--privy-color-foreground)":"var(--privy-color-foreground-2)"};
1455
1459
  display: flex;
1456
1460
  justify-content: center;
1457
1461
  align-items: center;
1458
- `,Uc=Jo.div`
1462
+ `,Fc=Yo.div`
1459
1463
  display: flex;
1460
1464
  flex-direction: column;
1461
1465
  align-items: flex-start;
@@ -1481,7 +1485,7 @@ Resources:
1481
1485
  }
1482
1486
 
1483
1487
  cursor: ${e=>e.active?"inherit":"pointer"};
1484
- `,uy=Jo.div`
1488
+ `,my=Yo.div`
1485
1489
  display: flex;
1486
1490
  justify-content: center;
1487
1491
  align-items: center;
@@ -1490,13 +1494,13 @@ Resources:
1490
1494
  && > p {
1491
1495
  color: var(--privy-color-foreground-3);
1492
1496
  }
1493
- `,Mc=Jo.hr`
1497
+ `,Oc=Yo.hr`
1494
1498
  width: 50%;
1495
1499
  && {
1496
1500
  border-top: 1px solid var(--privy-color-foreground-4);
1497
1501
  margin: 0px 8px;
1498
1502
  }
1499
- `,my=Jo.div`
1503
+ `,hy=Yo.div`
1500
1504
  display: flex;
1501
1505
  flex-direction: column;
1502
1506
  align-items: center;
@@ -1507,9 +1511,9 @@ Resources:
1507
1511
  @media (max-width: 440px) {
1508
1512
  padding: 10px 10px 20px;
1509
1513
  }
1510
- `,hy=Jo(pe)`
1514
+ `,fy=Yo(pe)`
1511
1515
  flex-direction: ${e=>e.reverse?"column-reverse":"column"};
1512
- `;import{EnvelopeIcon as fy}from"@heroicons/react/24/outline";import{Fragment as yy,jsx as Qt,jsxs as gy}from"react/jsx-runtime";var Fc=()=>{let{app:e}=y();return gy(yy,{children:[Qt(S,{},"header"),Qt(R,{}),Qt(Ee,{title:"Connect your email",description:`Add your email to your ${e?.name} account`,icon:Qt(fy,{color:"var(--privy-color-accent)",strokeWidth:2,height:"48px",width:"48px"})}),Qt(pe,{children:Qt(Wn,{stacked:!0})}),Qt(N,{}),Qt(F,{protectedByPrivy:!0})]})};import{PhoneIcon as vy}from"@heroicons/react/24/outline";import{Fragment as wy,jsx as Zt,jsxs as Cy}from"react/jsx-runtime";var Bc=()=>{let{app:e}=y();return Cy(wy,{children:[Zt(S,{},"header"),Zt(R,{}),Zt(Ee,{title:"Connect your phone",description:`Add your number to your ${e?.name} account`,icon:Zt(vy,{color:"var(--privy-color-accent)",strokeWidth:2,height:"40px",width:"40px"})}),Zt(pe,{children:Zt(In,{stacked:!0})}),Zt(N,{}),Zt(F,{protectedByPrivy:!0})]})};import{Fragment as by,jsx as bo,jsxs as Hc}from"react/jsx-runtime";var Gc=()=>{let{linkingHint:e}=P(),{app:t}=y(),o=e?`Select the wallet with ${Ft(e)} and follow the instructions to reconnect your wallet${t?.name?` to ${t.name}.`:"."}`:`Link a wallet to your ${t?.name} account`;return Hc(by,{children:[bo(S,{},"header"),bo(R,{}),bo(qt,{title:`${e?"Reconnect":"Connect"} your wallet`,description:o}),Hc(pe,{children:[bo(jt,{connectOnly:!1}),bo(Yt,{})]}),bo(N,{}),bo(F,{protectedByPrivy:!0})]})};import{jsx as zc,jsxs as Ey}from"react/jsx-runtime";var $c=({style:e,...t})=>Ey("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:[zc("circle",{cx:"82",cy:"82",r:"80",stroke:"#EC6351","stroke-width":"4","stroke-linecap":"round"}),zc("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 xy,jsx as Xt,jsxs as Vc}from"react/jsx-runtime";var qc=()=>{let{closePrivyModal:e}=P(),{navigate:t}=y();return Vc(xy,{children:[Xt(S,{},"header"),Xt(R,{}),Xt($c,{style:{width:"160px",height:"160px",margin:"0 auto 20px"}}),Xt(qt,{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"}}),Vc(pe,{children:[Xt(K,{onClick:()=>t("LANDING"),children:"Try again"}),Xt(js,{onClick:()=>e(),children:"Cancel"})]}),Xt(N,{}),Xt(F,{protectedByPrivy:!0})]})};import{useEffect as Kc,useState as jc}from"react";import Jc from"styled-components";function ha(e){return e.charAt(0).toUpperCase()+e.slice(1)}import{Fragment as _y,jsx as It,jsxs as Bn}from"react/jsx-runtime";var Yc={google:{name:"Google",component:Dn},discord:{name:"Discord",component:Ln},github:{name:"Github",component:Mn},twitter:{name:"Twitter",component:Un},apple:{name:"Apple",component:Nn}},Fn=()=>{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)},Qc=()=>{let{user:e,authenticated:t}=$(),{app:o,setModalData:r,navigate:n,resetNavigation:i,data:a}=y(),{getAuthMeta:l,initLoginWithOAuth:s,loginWithOAuth:c,updateWallets:T,closePrivyModal:g}=P(),[E,m]=jc(!1),[C,x]=jc(void 0),f=l()?.provider||"google",_=Yc[f].name,w=Yc[f].component,M=o?.render.inDialog?Je:0;Kc(()=>{c().then(()=>{Fn(),m(!0)}).catch(I=>{let H={retryable:!1,message:"Authentication failed"};if(I?.privyErrorCode==="allowlist_rejected"){x(void 0),i(),n("ALLOWLIST_REJECTION_SCREEN"),Fn();return}else I?.privyErrorCode==="linked_to_another_user"?H.detail="This account has already been linked to another user.":I?.privyErrorCode==="invalid_credentials"?(H.retryable=!0,H.detail="Something went wrong. Try again."):I.privyErrorCode==="oauth_user_denied"&&(H.detail=`Retry and check ${ha(f)} to finish connecting your account.`,H.retryable=!0);Fn(),x(H)}).finally(()=>{a?.finishOauthFlow?.onComplete?.()})},[]),Kc(()=>{if(t&&E&&e)if(Ut(e,o?.embeddedWallets?.createOnLogin)){let H=setTimeout(()=>{r({createWallet:{onSuccess:()=>{},onFailure:ce=>console.error(ce),callAuthOnSuccessOnClose:!0}}),n("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},M);return()=>clearTimeout(H)}else{let H=setTimeout(g,M);return T(),()=>clearTimeout(H)}},[t,E,e]);let L=E?`Successfully connected with ${_}`:C?C.message:`Verifying connection to ${_}`,k="";return E?k="You\u2019re good to go!":C?k=C.detail:k="Just a few moments more",Bn(_y,{children:[It(S,{}),It(R,{}),Bn(Ty,{children:[It(Py,{children:Bn("div",{children:[It(an,{success:E,fail:!!C}),It(w,{style:{width:"38px",height:"38px"}})]})}),Bn(Vt,{children:[It("h3",{children:L}),It("p",{children:k})]}),C&&C?.retryable?It(fe,{onClick:()=>{Fn(),s(f),x(void 0)},disabled:!E&&!C?.retryable,children:"Retry"}):null]}),It(J,{})]})},Ty=Jc.div`
1516
+ `;import{EnvelopeIcon as yy}from"@heroicons/react/24/outline";import{Fragment as gy,jsx as Qt,jsxs as vy}from"react/jsx-runtime";var Bc=()=>{let{app:e}=g();return vy(gy,{children:[Qt(S,{},"header"),Qt(R,{}),Qt(Ee,{title:"Connect your email",description:`Add your email to your ${e?.name} account`,icon:Qt(yy,{color:"var(--privy-color-accent)",strokeWidth:2,height:"48px",width:"48px"})}),Qt(pe,{children:Qt(In,{stacked:!0})}),Qt(L,{}),Qt(F,{protectedByPrivy:!0})]})};import{PhoneIcon as wy}from"@heroicons/react/24/outline";import{Fragment as Cy,jsx as Zt,jsxs as by}from"react/jsx-runtime";var Hc=()=>{let{app:e}=g();return by(Cy,{children:[Zt(S,{},"header"),Zt(R,{}),Zt(Ee,{title:"Connect your phone",description:`Add your number to your ${e?.name} account`,icon:Zt(wy,{color:"var(--privy-color-accent)",strokeWidth:2,height:"40px",width:"40px"})}),Zt(pe,{children:Zt(Nn,{stacked:!0})}),Zt(L,{}),Zt(F,{protectedByPrivy:!0})]})};import{Fragment as Ey,jsx as bo,jsxs as Gc}from"react/jsx-runtime";var zc=()=>{let{linkingHint:e}=_(),{app:t}=g(),o=e?`Select the wallet with ${Ft(e)} and follow the instructions to reconnect your wallet${t?.name?` to ${t.name}.`:"."}`:`Link a wallet to your ${t?.name} account`;return Gc(Ey,{children:[bo(S,{},"header"),bo(R,{}),bo(qt,{title:`${e?"Reconnect":"Connect"} your wallet`,description:o}),Gc(pe,{children:[bo(jt,{connectOnly:!1}),bo(Yt,{})]}),bo(L,{}),bo(F,{protectedByPrivy:!0})]})};import{jsx as $c,jsxs as xy}from"react/jsx-runtime";var Vc=({style:e,...t})=>xy("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:[$c("circle",{cx:"82",cy:"82",r:"80",stroke:"#EC6351","stroke-width":"4","stroke-linecap":"round"}),$c("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 Ty,jsx as Xt,jsxs as qc}from"react/jsx-runtime";var Kc=()=>{let{closePrivyModal:e}=_(),{navigate:t}=g();return qc(Ty,{children:[Xt(S,{},"header"),Xt(R,{}),Xt(Vc,{style:{width:"160px",height:"160px",margin:"0 auto 20px"}}),Xt(qt,{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"}}),qc(pe,{children:[Xt(K,{onClick:()=>t("LANDING"),children:"Try again"}),Xt(js,{onClick:()=>e(),children:"Cancel"})]}),Xt(L,{}),Xt(F,{protectedByPrivy:!0})]})};import{useEffect as jc,useState as Yc}from"react";import Qc from"styled-components";function ha(e){return e.charAt(0).toUpperCase()+e.slice(1)}import{Fragment as Sy,jsx as It,jsxs as Hn}from"react/jsx-runtime";var Jc={google:{name:"Google",component:Un},discord:{name:"Discord",component:Mn},github:{name:"Github",component:On},twitter:{name:"Twitter",component:Fn},apple:{name:"Apple",component:Ln}},Bn=()=>{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)},Zc=()=>{let{user:e,authenticated:t}=$(),{app:o,setModalData:r,navigate:n,resetNavigation:i,data:a}=g(),{getAuthMeta:l,initLoginWithOAuth:s,loginWithOAuth:c,updateWallets:P,closePrivyModal:y}=_(),[x,m]=Yc(!1),[C,T]=Yc(void 0),f=l()?.provider||"google",E=Jc[f].name,w=Jc[f].component,M=o?.render.inDialog?Je:0;jc(()=>{c().then(()=>{Bn(),m(!0)}).catch(N=>{let H={retryable:!1,message:"Authentication failed"};if(N?.privyErrorCode==="allowlist_rejected"){T(void 0),i(),n("ALLOWLIST_REJECTION_SCREEN"),Bn();return}else N?.privyErrorCode==="linked_to_another_user"?H.detail="This account has already been linked to another user.":N?.privyErrorCode==="invalid_credentials"?(H.retryable=!0,H.detail="Something went wrong. Try again."):N.privyErrorCode==="oauth_user_denied"&&(H.detail=`Retry and check ${ha(f)} to finish connecting your account.`,H.retryable=!0);Bn(),T(H)}).finally(()=>{a?.finishOauthFlow?.onComplete?.()})},[]),jc(()=>{if(t&&x&&e)if(Ut(e,o?.embeddedWallets?.createOnLogin)){let H=setTimeout(()=>{r({createWallet:{onSuccess:()=>{},onFailure:ce=>console.error(ce),callAuthOnSuccessOnClose:!0}}),n("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},M);return()=>clearTimeout(H)}else{let H=setTimeout(y,M);return P(),()=>clearTimeout(H)}},[t,x,e]);let k=x?`Successfully connected with ${E}`:C?C.message:`Verifying connection to ${E}`,W="";return x?W="You\u2019re good to go!":C?W=C.detail:W="Just a few moments more",Hn(Sy,{children:[It(S,{}),It(R,{}),Hn(Py,{children:[It(_y,{children:Hn("div",{children:[It(nn,{success:x,fail:!!C}),It(w,{style:{width:"38px",height:"38px"}})]})}),Hn(Vt,{children:[It("h3",{children:k}),It("p",{children:W})]}),C&&C?.retryable?It(fe,{onClick:()=>{Bn(),s(f),T(void 0)},disabled:!x&&!C?.retryable,children:"Retry"}):null]}),It(J,{})]})},Py=Qc.div`
1513
1517
  display: flex;
1514
1518
  flex-direction: column;
1515
1519
  align-items: center;
@@ -1517,7 +1521,7 @@ Resources:
1517
1521
  margin-left: 27px;
1518
1522
  margin-right: 27px;
1519
1523
  gap: 24px;
1520
- `,Py=Jc.div`
1524
+ `,_y=Qc.div`
1521
1525
  display: flex;
1522
1526
  flex-direction: column;
1523
1527
  justify-content: center;
@@ -1540,9 +1544,9 @@ Resources:
1540
1544
  left: -19px;
1541
1545
  top: -19px;
1542
1546
  }
1543
- `;import{useEffect as Ay,useState as Xc}from"react";import Ry from"styled-components";import{isMobile as Sy}from"react-device-detect";var Zc=(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(!He()&&Sy)return`${t?"phantom://":"https://phantom.app/ul/"}browse/${r}?ref=${r}`};import{Fragment as Wy,jsx as Nt,jsxs as ed}from"react/jsx-runtime";var td=()=>{let{forkSession:e,ready:t,authenticated:o}=$(),[r,n]=Xc(""),[i,a]=Xc(!1);Ay(()=>{t&&o&&e().then(n)},[t,o]);let l=Zc(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."),ed(Wy,{children:[Nt(S,{},"header"),Nt(R,{}),Nt(qt,{title:s.title,description:s.description}),ed(pe,{children:[Nt(ky,{children:Nt(Ge,{style:{width:"72px",height:"72px"}})}),Nt(cn,{href:l,onClick:()=>{setTimeout(()=>a(!0),1e3)},loading:t&&!l,children:i?"Go to App Store":"Continue"}),s.footnote?Nt("p",{children:s.footnote}):null]}),Nt(N,{}),Nt(F,{protectedByPrivy:!0})]})},ky=Ry(Ti)`
1547
+ `;import{useEffect as Ry,useState as ed}from"react";import ky from"styled-components";import{isMobile as Ay}from"react-device-detect";var Xc=(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(!He()&&Ay)return`${t?"phantom://":"https://phantom.app/ul/"}browse/${r}?ref=${r}`};import{Fragment as Iy,jsx as Nt,jsxs as td}from"react/jsx-runtime";var od=()=>{let{forkSession:e,ready:t,authenticated:o}=$(),[r,n]=ed(""),[i,a]=ed(!1);Ry(()=>{t&&o&&e().then(n)},[t,o]);let l=Xc(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."),td(Iy,{children:[Nt(S,{},"header"),Nt(R,{}),Nt(qt,{title:s.title,description:s.description}),td(pe,{children:[Nt(Wy,{children:Nt(Ge,{style:{width:"72px",height:"72px"}})}),Nt(ln,{href:l,onClick:()=>{setTimeout(()=>a(!0),1e3)},loading:t&&!l,children:i?"Go to App Store":"Continue"}),s.footnote?Nt("p",{children:s.footnote}):null]}),Nt(L,{}),Nt(F,{protectedByPrivy:!0})]})},Wy=ky(Pi)`
1544
1548
  margin: 16px auto;
1545
- `;import{StaticJsonRpcProvider as Ig}from"@ethersproject/providers";import{useMemo as Ud,useEffect as Fd,useState as To}from"react";import tr from"styled-components";import xd from"styled-components";import rd from"styled-components";import{jsx as od,jsxs as Ly}from"react/jsx-runtime";var Hn=({label:e,children:t,valueStyles:o})=>Ly(Iy,{children:[od("div",{children:e}),od(Ny,{style:{...o},children:t})]}),Iy=rd.div`
1549
+ `;import{StaticJsonRpcProvider as Ng}from"@ethersproject/providers";import{useMemo as Fd,useEffect as Bd,useState as To}from"react";import er from"styled-components";import Td from"styled-components";import nd from"styled-components";import{jsx as rd,jsxs as My}from"react/jsx-runtime";var Gn=({label:e,children:t,valueStyles:o})=>My(Ny,{children:[rd("div",{children:e}),rd(Ly,{style:{...o},children:t})]}),Ny=nd.div`
1546
1550
  display: flex;
1547
1551
  align-items: center;
1548
1552
  justify-content: space-between;
@@ -1557,7 +1561,7 @@ Resources:
1557
1561
  color: var(--privy-color-foreground-2);
1558
1562
  text-align: right;
1559
1563
  }
1560
- `,Ny=rd.div`
1564
+ `,Ly=nd.div`
1561
1565
  font-size: 14px;
1562
1566
  line-height: 100%;
1563
1567
  display: flex;
@@ -1566,28 +1570,28 @@ Resources:
1566
1570
  border-radius: var(--privy-border-radius-full);
1567
1571
  background-color: var(--privy-color-background-2);
1568
1572
  padding: 4px 8px;
1569
- `;import{BigNumber as sd}from"@ethersproject/bignumber";import Gn from"styled-components";import{BigNumber as My}from"@ethersproject/bignumber";import{isHexString as Oy}from"@ethersproject/bytes";import{getNetwork as Dy}from"@ethersproject/providers";import{formatEther as nd}from"@ethersproject/units";var Er=(e,t)=>(t*parseFloat(nd(e))).toFixed(2),Eo=(e,t=6)=>parseFloat(nd(e)).toFixed(t).replace(/0+$/,"").replace(/\.$/,""),id=(e,t)=>{Oy(e)&&(e=Number(e));let o=Dy(e);return`https://${o.name==="homestead"?"www":o.name}.etherscan.io/address/${t}`},Re=e=>My.from(e);import{jsx as fa,jsxs as ad}from"react/jsx-runtime";var ld=({weiQuantities:e,tokenPrice:t})=>{let o=e.map(Re).reduce((n,i)=>n.add(i),sd.from(0)),r=Er(o.toHexString(),t);return fa(cd,{children:r==="0.00"?"<$0.01":`$${r}`})},ya=({weiQuantities:e,tokenPrice:t})=>{let o=e.map(Re).reduce((n,i)=>n.add(i),sd.from(0)),r=Er(o.toHexString(),t);return ad(cd,{children:[fa(Uy,{children:"USD"}),r==="0.00"?ad(By,{children:[fa(Fy,{children:"<"}),"$0.01"]}):`$${r}`]})},cd=Gn.span`
1573
+ `;import{BigNumber as ld}from"@ethersproject/bignumber";import zn from"styled-components";import{BigNumber as Oy}from"@ethersproject/bignumber";import{isHexString as Dy}from"@ethersproject/bytes";import{getNetwork as Uy}from"@ethersproject/providers";import{formatEther as id}from"@ethersproject/units";var br=(e,t)=>(t*parseFloat(id(e))).toFixed(2),Eo=(e,t=6)=>parseFloat(id(e)).toFixed(t).replace(/0+$/,"").replace(/\.$/,""),ad=(e,t)=>{Dy(e)&&(e=Number(e));let o=Uy(e);return`https://${o.name==="homestead"?"www":o.name}.etherscan.io/address/${t}`},Re=e=>Oy.from(e);import{jsx as fa,jsxs as sd}from"react/jsx-runtime";var cd=({weiQuantities:e,tokenPrice:t})=>{let o=e.map(Re).reduce((n,i)=>n.add(i),ld.from(0)),r=br(o.toHexString(),t);return fa(dd,{children:r==="0.00"?"<$0.01":`$${r}`})},ya=({weiQuantities:e,tokenPrice:t})=>{let o=e.map(Re).reduce((n,i)=>n.add(i),ld.from(0)),r=br(o.toHexString(),t);return sd(dd,{children:[fa(Fy,{children:"USD"}),r==="0.00"?sd(Hy,{children:[fa(By,{children:"<"}),"$0.01"]}):`$${r}`]})},dd=zn.span`
1570
1574
  font-size: 14px;
1571
1575
  line-height: 140%;
1572
1576
  display: flex;
1573
1577
  gap: 4px;
1574
1578
  align-items: center;
1575
- `,Uy=Gn.span`
1579
+ `,Fy=zn.span`
1576
1580
  font-size: 12px;
1577
1581
  line-height: 12px;
1578
1582
  color: var(--privy-color-foreground-3);
1579
- `,Fy=Gn.span`
1583
+ `,By=zn.span`
1580
1584
  font-size: 10px;
1581
- `,By=Gn.span`
1585
+ `,Hy=zn.span`
1582
1586
  display: flex;
1583
1587
  align-items: center;
1584
- `;import ga from"styled-components";import{jsx as eo,jsxs as zn}from"react/jsx-runtime";var dd=({transactionData:e,gas:t,tokenPrice:o})=>{let{nativeTokenSymbolForChainId:r}=P(),n=r(e.chainId)||"ETH";return zn(Pi,{style:{paddingBottom:"12px"},children:[zn(ud,{children:[eo(hd,{children:"Est. Fees"}),eo("div",{children:eo(ya,{weiQuantities:[t],tokenPrice:o})})]}),eo(md,{children:`${Eo(Re(t).toHexString())} ${n}`})]})},pd=({transactionData:e,gas:t,tokenPrice:o})=>{let{nativeTokenSymbolForChainId:r}=P(),n=r(e.chainId)||"ETH";return zn(Pi,{children:[zn(ud,{children:[eo(hd,{children:"Total (including fees)"}),eo("div",{children:eo(ya,{weiQuantities:[e.value||0,t],tokenPrice:o})})]}),eo(md,{children:e.value?`${Eo(Re(e.value).add(Re(t)).toHexString())} ${n}`:null})]})},ud=ga.div`
1588
+ `;import ga from"styled-components";import{jsx as eo,jsxs as $n}from"react/jsx-runtime";var pd=({transactionData:e,gas:t,tokenPrice:o})=>{let{nativeTokenSymbolForChainId:r}=_(),n=r(e.chainId)||"ETH";return $n(_i,{style:{paddingBottom:"12px"},children:[$n(md,{children:[eo(fd,{children:"Est. Fees"}),eo("div",{children:eo(ya,{weiQuantities:[t],tokenPrice:o})})]}),eo(hd,{children:`${Eo(Re(t).toHexString())} ${n}`})]})},ud=({transactionData:e,gas:t,tokenPrice:o})=>{let{nativeTokenSymbolForChainId:r}=_(),n=r(e.chainId)||"ETH";return $n(_i,{children:[$n(md,{children:[eo(fd,{children:"Total (including fees)"}),eo("div",{children:eo(ya,{weiQuantities:[e.value||0,t],tokenPrice:o})})]}),eo(hd,{children:e.value?`${Eo(Re(e.value).add(Re(t)).toHexString())} ${n}`:null})]})},md=ga.div`
1585
1589
  display: flex;
1586
1590
  flex-direction: row;
1587
1591
  justify-content: space-between;
1588
1592
  align-items: center;
1589
1593
  padding-top: 4px;
1590
- `,md=ga.div`
1594
+ `,hd=ga.div`
1591
1595
  display: flex;
1592
1596
  flex-direction: row;
1593
1597
  height: 12px;
@@ -1596,23 +1600,23 @@ Resources:
1596
1600
  line-height: 12px;
1597
1601
  color: var(--privy-color-foreground-3);
1598
1602
  font-weight: 400;
1599
- `,hd=ga.div`
1603
+ `,fd=ga.div`
1600
1604
  font-size: 14px;
1601
1605
  line-height: 22.4px;
1602
1606
  font-weight: 400;
1603
- `;import{ChevronDownIcon as Hy}from"@heroicons/react/24/outline";import{useContext as xo,useState as Gy}from"react";import to from"styled-components";import{createContext as fd,useContext as G7}from"react";var Qo=fd(void 0);var xr=fd(void 0);import{Fragment as Jy,jsx as tt,jsxs as yd}from"react/jsx-runtime";var gd=({defaultValue:e,children:t})=>{let[o,r]=Gy(e||null),n=i=>{r(o===i?null:i)};return tt(Qo.Provider,{value:{activePanel:o,togglePanel:n},children:tt(zy,{children:t})})},vd=({value:e,children:t})=>{let{activePanel:o,togglePanel:r}=xo(Qo),n=o===e;return tt(xr.Provider,{value:{onToggle:()=>r(e),value:e},children:tt(Ky,{isActive:n,"data-open":n,children:t})})},wd=({children:e})=>{let{activePanel:t}=xo(Qo),{onToggle:o,value:r}=xo(xr),n=t===r;return yd(Jy,{children:[yd($y,{onClick:o,"data-open":n,children:[tt(qy,{children:e}),tt(Yy,{isactive:n,children:tt(Hy,{height:"16px",width:"16px",strokeWidth:"2"})})]}),tt(Vy,{})]})},Cd=({children:e})=>{let{activePanel:t}=xo(Qo),{value:o}=xo(xr);return tt(jy,{"data-open":t===o,children:tt(Ed,{children:e})})},bd=({children:e})=>{let{activePanel:t}=xo(Qo),{value:o}=xo(xr);return tt(Ed,{children:typeof e=="function"?e({isActive:t===o}):e})},zy=to.div`
1607
+ `;import{ChevronDownIcon as Gy}from"@heroicons/react/24/outline";import{useContext as xo,useState as zy}from"react";import to from"styled-components";import{createContext as yd,useContext as z7}from"react";var Jo=yd(void 0);var Er=yd(void 0);import{Fragment as Qy,jsx as tt,jsxs as gd}from"react/jsx-runtime";var vd=({defaultValue:e,children:t})=>{let[o,r]=zy(e||null),n=i=>{r(o===i?null:i)};return tt(Jo.Provider,{value:{activePanel:o,togglePanel:n},children:tt($y,{children:t})})},wd=({value:e,children:t})=>{let{activePanel:o,togglePanel:r}=xo(Jo),n=o===e;return tt(Er.Provider,{value:{onToggle:()=>r(e),value:e},children:tt(jy,{isActive:n,"data-open":n,children:t})})},Cd=({children:e})=>{let{activePanel:t}=xo(Jo),{onToggle:o,value:r}=xo(Er),n=t===r;return gd(Qy,{children:[gd(Vy,{onClick:o,"data-open":n,children:[tt(Ky,{children:e}),tt(Jy,{isactive:n,children:tt(Gy,{height:"16px",width:"16px",strokeWidth:"2"})})]}),tt(qy,{})]})},bd=({children:e})=>{let{activePanel:t}=xo(Jo),{value:o}=xo(Er);return tt(Yy,{"data-open":t===o,children:tt(xd,{children:e})})},Ed=({children:e})=>{let{activePanel:t}=xo(Jo),{value:o}=xo(Er);return tt(xd,{children:typeof e=="function"?e({isActive:t===o}):e})},$y=to.div`
1604
1608
  display: flex;
1605
1609
  flex-direction: column;
1606
1610
  width: 100%;
1607
1611
  gap: 8px;
1608
- `,$y=to.div`
1612
+ `,Vy=to.div`
1609
1613
  display: flex;
1610
1614
  justify-content: space-between;
1611
1615
  align-items: center;
1612
1616
  width: 100%;
1613
1617
  cursor: pointer;
1614
1618
  padding-bottom: 8px;
1615
- `,Vy=to.div`
1619
+ `,qy=to.div`
1616
1620
  width: 100%;
1617
1621
 
1618
1622
  && {
@@ -1620,13 +1624,13 @@ Resources:
1620
1624
  border-color: var(--privy-color-foreground-4);
1621
1625
  }
1622
1626
  padding-bottom: 12px;
1623
- `,qy=to.div`
1627
+ `,Ky=to.div`
1624
1628
  font-size: 14px;
1625
1629
  font-weight: 500;
1626
1630
  line-height: 19.6px;
1627
1631
  width: 100%;
1628
1632
  padding-right: 8px;
1629
- `,Ky=to.div`
1633
+ `,jy=to.div`
1630
1634
  display: flex;
1631
1635
  flex-direction: column;
1632
1636
  width: 100%;
@@ -1638,7 +1642,7 @@ Resources:
1638
1642
  border-color: var(--privy-color-foreground-4);
1639
1643
  border-radius: var(--privy-border-radius-md);
1640
1644
  }
1641
- `,jy=to.div`
1645
+ `,Yy=to.div`
1642
1646
  position: relative;
1643
1647
  overflow: hidden;
1644
1648
  transition: max-height 0.35s ease-in-out;
@@ -1650,36 +1654,36 @@ Resources:
1650
1654
  &[data-open='false'] {
1651
1655
  max-height: 0;
1652
1656
  }
1653
- `,Ed=to.div`
1657
+ `,xd=to.div`
1654
1658
  display: flex;
1655
1659
  flex-direction: column;
1656
1660
  gap: 12px;
1657
1661
  flex: 1 1 auto;
1658
1662
  min-height: 1px;
1659
- `,Yy=to.div`
1663
+ `,Jy=to.div`
1660
1664
  transform: ${e=>e.isactive?"rotate(180deg)":"rotate(0deg)"};
1661
- `;import Qy from"styled-components";import{jsx as Xy}from"react/jsx-runtime";var va=({walletAddress:e,chainId:t=at})=>Xy(Zy,{href:id(t,e),target:"_blank",children:Ft(e)}),Zy=Qy.a`
1665
+ `;import Zy from"styled-components";import{jsx as eg}from"react/jsx-runtime";var va=({walletAddress:e,chainId:t=at})=>eg(Xy,{href:ad(t,e),target:"_blank",children:Ft(e)}),Xy=Zy.a`
1662
1666
  &:hover {
1663
1667
  text-decoration: underline;
1664
1668
  }
1665
- `;import{Fragment as og,jsx as ke,jsxs as wa}from"react/jsx-runtime";var $n=({from:e,to:t,txn:o,transactionInfo:r,tokenPrice:n,gas:i})=>{let a=o?.value||0;return ke(gd,{children:wa(vd,{value:"details",children:[ke(wd,{children:wa(eg,{children:[ke("div",{children:r?.title||r?.actionDescription||"Details"}),n?ke(tg,{children:ke(ld,{weiQuantities:[a],tokenPrice:n})}):null]})}),wa(Cd,{children:[ke(Hn,{label:"From",children:ke(va,{walletAddress:e,chainId:o.chainId||at})}),ke(Hn,{label:"To",children:ke(va,{walletAddress:t,chainId:o.chainId||at})}),r&&r.action&&ke(Hn,{label:"Action",children:r.action}),i&&n?ke(dd,{transactionData:o,gas:i,tokenPrice:n}):null]}),ke(bd,{children:({isActive:l})=>ke(og,{children:n&&ke(pd,{transactionData:o,displayFee:l,gas:i||"0x0",tokenPrice:n})})})]})})},eg=xd.div`
1669
+ `;import{Fragment as rg,jsx as ke,jsxs as wa}from"react/jsx-runtime";var Vn=({from:e,to:t,txn:o,transactionInfo:r,tokenPrice:n,gas:i})=>{let a=o?.value||0;return ke(vd,{children:wa(wd,{value:"details",children:[ke(Cd,{children:wa(tg,{children:[ke("div",{children:r?.title||r?.actionDescription||"Details"}),n?ke(og,{children:ke(cd,{weiQuantities:[a],tokenPrice:n})}):null]})}),wa(bd,{children:[ke(Gn,{label:"From",children:ke(va,{walletAddress:e,chainId:o.chainId||at})}),ke(Gn,{label:"To",children:ke(va,{walletAddress:t,chainId:o.chainId||at})}),r&&r.action&&ke(Gn,{label:"Action",children:r.action}),i&&n?ke(pd,{transactionData:o,gas:i,tokenPrice:n}):null]}),ke(Ed,{children:({isActive:l})=>ke(rg,{children:n&&ke(ud,{transactionData:o,displayFee:l,gas:i||"0x0",tokenPrice:n})})})]})})},tg=Td.div`
1666
1670
  display: flex;
1667
1671
  flex-direction: row;
1668
1672
  justify-content: space-between;
1669
- `,tg=xd.div`
1673
+ `,og=Td.div`
1670
1674
  flex-shrink: 0;
1671
1675
  padding-left: 8px;
1672
- `;import Pr from"styled-components";import{jsx as Tr,jsxs as lg}from"react/jsx-runtime";var Ca=({description:e,contractInfo:t})=>lg(rg,{children:[t.imgUrl&&Tr(ng,{size:t.imgSize||"sm",src:t.imgUrl,alt:t.imgAltText||`${t.name} image`}),t.url&&Tr(ig,{children:Tr("a",{href:t.url,target:"_blank",rel:"noopener noreferrer",children:t.url.replace(/^(https?:\/\/)(www\.)?/,"")})}),t.name&&Tr(ag,{children:t.name}),Tr(sg,{children:e||t.actionText})]}),rg=Pr.div`
1676
+ `;import Tr from"styled-components";import{jsx as xr,jsxs as cg}from"react/jsx-runtime";var Ca=({description:e,contractInfo:t})=>cg(ng,{children:[t.imgUrl&&xr(ig,{size:t.imgSize||"sm",src:t.imgUrl,alt:t.imgAltText||`${t.name} image`}),t.url&&xr(ag,{children:xr("a",{href:t.url,target:"_blank",rel:"noopener noreferrer",children:t.url.replace(/^(https?:\/\/)(www\.)?/,"")})}),t.name&&xr(sg,{children:t.name}),xr(lg,{children:e||t.actionText})]}),ng=Tr.div`
1673
1677
  display: flex;
1674
1678
  flex-direction: column;
1675
1679
  align-items: center;
1676
1680
  margin-bottom: 8px;
1677
- `,ng=Pr.img`
1681
+ `,ig=Tr.img`
1678
1682
  height: ${e=>e.size==="sm"?"65px":"140px"};
1679
1683
  width: ${e=>e.size==="sm"?"65px":"140px"};
1680
1684
  border-radius: 16px;
1681
1685
  margin-bottom: 12px;
1682
- `,ig=Pr.div`
1686
+ `,ag=Tr.div`
1683
1687
  font-size: 12px;
1684
1688
  line-height: 12px;
1685
1689
  padding: 7px;
@@ -1692,7 +1696,7 @@ Resources:
1692
1696
  text-decoration: underline;
1693
1697
  }
1694
1698
  }
1695
- `,ag=Pr.div`
1699
+ `,sg=Tr.div`
1696
1700
  font-size: 18px;
1697
1701
  line-height: 18px;
1698
1702
  font-weight: 500;
@@ -1700,7 +1704,7 @@ Resources:
1700
1704
  white-space: nowrap;
1701
1705
  max-width: 275px;
1702
1706
  text-overflow: ellipsis;
1703
- `,sg=Pr.div`
1707
+ `,lg=Tr.div`
1704
1708
  font-size: 16px;
1705
1709
  line-height: 140%;
1706
1710
  font-weight: 400;
@@ -1709,7 +1713,7 @@ Resources:
1709
1713
  white-space: nowrap;
1710
1714
  max-width: 275px;
1711
1715
  text-overflow: ellipsis;
1712
- `;import{WalletIcon as yg}from"@heroicons/react/24/outline";import{useState as Ea,useEffect as gg}from"react";import Ta from"styled-components";import{VoidSigner as pg}from"@ethersproject/abstract-signer";import{EtherscanProvider as T8}from"@ethersproject/providers";import{parseUnits as Td}from"@ethersproject/units";import{ofetch as cg}from"ofetch";var _r={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 Sr={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 Pd=[_r.id,Sr.id],ba=e=>({maxPriorityFee:Td(e.maxPriorityFee.toString(),"gwei").toHexString(),maxFee:Td(e.maxFee.toString(),"gwei").toHexString()}),dg=e=>({safeLow:ba(e.safeLow),standard:ba(e.standard),fast:ba(e.fast)}),_d=async e=>{let t="";switch(e){case _r.id:t="https://gasstation.polygon.technology/v2";break;case Sr.id:t="https://gasstation-testnet.polygon.technology/v2";break;default:throw Error(`chainId ${e} does not support polygon gas stations`)}return dg(await cg(t))};function Zo(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 ug(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=Zo(e.nonce)),e.gasLimit!==void 0&&(t.gasLimit=Zo(e.gasLimit)),e.gasPrice!==void 0&&(t.gasPrice=Zo(e.gasPrice)),e.value!==void 0&&(t.value=Zo(e.value)),e.maxFeePerGas!==void 0&&(t.maxFeePerGas=Zo(e.maxFeePerGas)),e.maxPriorityFeePerGas!==void 0&&(t.maxPriorityFeePerGas=Zo(e.maxPriorityFeePerGas)),t}async function Vn(e,t,o){t.chainId=Number(t.chainId),Ad(t);let r=new pg(e,o);if(delete t.gas,Pd.includes(t.chainId)&&(!t.maxPriorityFeePerGas||!t.maxFeePerGas))try{let{standard:i}=await _d(t.chainId);t.maxPriorityFeePerGas||(t.maxPriorityFeePerGas=i.maxPriorityFee),t.maxFeePerGas||(t.maxFeePerGas=i.maxFee)}catch{throw new Error("Unable to get current gas prices from Polygon gas station.")}let n=await r.populateTransaction(t);return ug(n)}async function qn(e,t,o,r,n){r=Object.assign({chainId:at},r),Ad(r);let a=(await o.rpc({address:t,accessToken:e,request:{method:"eth_signTransaction",params:[r]}})).response.data,s=await(await n.sendTransaction(a)).wait();return fg(s)}async function Kn(e,t,o){let r=await o.getBalance(e),n=t.value||0,i=r.sub(Re(n)),a=!i.isNegative()&&!i.isZero();return{balance:r,hasSufficientFunds:a}}async function Sd(e,t){return delete e.from,await t.estimateGas(e)}function Ad(e){let t=["gasLimit","gasPrice","value","maxPriorityFeePerGas","maxFeePerGas"];for(let o of t){let r=e[o];if(!(typeof r>"u")&&!mg(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 mg(e){let t=typeof e=="number",o=typeof e=="bigint",r=typeof e=="string"&&hg(e);return t||o||r}function hg(e){return/^-?0x[a-f0-9]+$/i.test(e)}function fg(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 Rd,jsxs as xa}from"react/jsx-runtime";var kd=({wallet:e,txn:t,provider:o})=>{let[r,n]=Ea(),[i,a]=Ea(!1),[l,s]=Ea(!1),{nativeTokenSymbolForChainId:c}=P(),T=c(t.chainId)||"ETH";return gg(()=>{(async E=>{try{let{balance:m,hasSufficientFunds:C}=await Kn(E,t,o);s(!0),a(C===!1),n(m.toHexString())}catch(m){console.warn(`Failed to fetch wallet balance with error: ${m}`)}})(e.address)},[e,t]),xa(vg,{children:[xa(wg,{children:[Rd(yg,{strokeWidth:"2",width:"16px",height:"16px"}),Rd("div",{children:Ft(e?.address)})]}),xa(Cg,{displayBalanceColor:l,hasFunds:!i,children:[r?Eo(r):0," ",T," available"]})]})},vg=Ta.div`
1716
+ `;import{WalletIcon as gg}from"@heroicons/react/24/outline";import{useState as Ea,useEffect as vg}from"react";import Ta from"styled-components";import{VoidSigner as ug}from"@ethersproject/abstract-signer";import{EtherscanProvider as P8}from"@ethersproject/providers";import{parseUnits as Pd}from"@ethersproject/units";import{ofetch as dg}from"ofetch";var Pr={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 _r={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 _d=[Pr.id,_r.id],ba=e=>({maxPriorityFee:Pd(e.maxPriorityFee.toString(),"gwei").toHexString(),maxFee:Pd(e.maxFee.toString(),"gwei").toHexString()}),pg=e=>({safeLow:ba(e.safeLow),standard:ba(e.standard),fast:ba(e.fast)}),Sd=async e=>{let t="";switch(e){case Pr.id:t="https://gasstation.polygon.technology/v2";break;case _r.id:t="https://gasstation-testnet.polygon.technology/v2";break;default:throw Error(`chainId ${e} does not support polygon gas stations`)}return pg(await dg(t))};function Qo(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 mg(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=Qo(e.nonce)),e.gasLimit!==void 0&&(t.gasLimit=Qo(e.gasLimit)),e.gasPrice!==void 0&&(t.gasPrice=Qo(e.gasPrice)),e.value!==void 0&&(t.value=Qo(e.value)),e.maxFeePerGas!==void 0&&(t.maxFeePerGas=Qo(e.maxFeePerGas)),e.maxPriorityFeePerGas!==void 0&&(t.maxPriorityFeePerGas=Qo(e.maxPriorityFeePerGas)),t}async function qn(e,t,o){t.chainId=Number(t.chainId),Rd(t);let r=new ug(e,o);if(delete t.gas,_d.includes(t.chainId)&&(!t.maxPriorityFeePerGas||!t.maxFeePerGas))try{let{standard:i}=await Sd(t.chainId);t.maxPriorityFeePerGas||(t.maxPriorityFeePerGas=i.maxPriorityFee),t.maxFeePerGas||(t.maxFeePerGas=i.maxFee)}catch{throw new Error("Unable to get current gas prices from Polygon gas station.")}let n=await r.populateTransaction(t);return mg(n)}async function Kn(e,t,o,r,n){r=Object.assign({chainId:at},r),Rd(r);let a=(await o.rpc({address:t,accessToken:e,request:{method:"eth_signTransaction",params:[r]}})).response.data,s=await(await n.sendTransaction(a)).wait();return yg(s)}async function jn(e,t,o){let r=await o.getBalance(e),n=t.value||0,i=r.sub(Re(n)),a=!i.isNegative()&&!i.isZero();return{balance:r,hasSufficientFunds:a}}async function Ad(e,t){return delete e.from,await t.estimateGas(e)}function Rd(e){let t=["gasLimit","gasPrice","value","maxPriorityFeePerGas","maxFeePerGas"];for(let o of t){let r=e[o];if(!(typeof r>"u")&&!hg(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 hg(e){let t=typeof e=="number",o=typeof e=="bigint",r=typeof e=="string"&&fg(e);return t||o||r}function fg(e){return/^-?0x[a-f0-9]+$/i.test(e)}function yg(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 kd,jsxs as xa}from"react/jsx-runtime";var Wd=({wallet:e,txn:t,provider:o})=>{let[r,n]=Ea(),[i,a]=Ea(!1),[l,s]=Ea(!1),{nativeTokenSymbolForChainId:c}=_(),P=c(t.chainId)||"ETH";return vg(()=>{(async x=>{try{let{balance:m,hasSufficientFunds:C}=await jn(x,t,o);s(!0),a(C===!1),n(m.toHexString())}catch(m){console.warn(`Failed to fetch wallet balance with error: ${m}`)}})(e.address)},[e,t]),xa(wg,{children:[xa(Cg,{children:[kd(gg,{strokeWidth:"2",width:"16px",height:"16px"}),kd("div",{children:Ft(e?.address)})]}),xa(bg,{displayBalanceColor:l,hasFunds:!i,children:[r?Eo(r):0," ",P," available"]})]})},wg=Ta.div`
1713
1717
  display: flex;
1714
1718
  flex-direction: row;
1715
1719
  justify-content: space-between;
@@ -1722,12 +1726,12 @@ Resources:
1722
1726
  border: 1px solid var(--privy-color-foreground-4);
1723
1727
  border-radius: var(--privy-border-radius-md);
1724
1728
  }
1725
- `,wg=Ta.div`
1729
+ `,Cg=Ta.div`
1726
1730
  display: flex;
1727
1731
  flex-direction: row;
1728
1732
  align-items: center;
1729
1733
  gap: 8px;
1730
- `,Cg=Ta.div`
1734
+ `,bg=Ta.div`
1731
1735
  display: flex;
1732
1736
  align-items: center;
1733
1737
  justify-content: center;
@@ -1737,25 +1741,25 @@ Resources:
1737
1741
  background-color: var(--privy-color-background-2);
1738
1742
  padding: 5px 8px;
1739
1743
  color: ${e=>e.displayBalanceColor?e.hasFunds?"var(--privy-color-success-dark)":"var(--privy-color-error)":"inherit"};
1740
- `;import Yn from"styled-components";import{StaticJsonRpcProvider as bg}from"@ethersproject/providers";import{useState as Ar,useEffect as Wd,useMemo as Eg}from"react";var jn=e=>{let{getUsdTokenPrice:t,chains:o,rpcConfig:r}=P(),[n,i]=Ar(!1),[a,l]=Ar(!1),[s,c]=Ar(void 0),[T,g]=Ar(void 0),[E,m]=Ar(null),C=Eg(()=>new bg(Qe(e.chainId||at,o,r)),[e.chainId,o,r]);return Wd(()=>{let x=e.chainId||at,f=o.find(w=>w.id===Number(x));if(!f)throw new U(`Unsupported chain: ${x}`);(async()=>{try{i(!0);let w=await t(f);w?g(w):c(new Error(`Unable to fetch token price on chain id ${f.id}`))}catch(w){c(w)}finally{i(!1)}})()},[e.chainId]),Wd(()=>{(async()=>{try{l(!0);let f=await Sd(e,C);m(f.toBigInt())}catch(f){c(f)}finally{l(!1)}})()},[e]),{tokenPrice:T,estimatedGas:E,isLoading:n||a,error:s}};import{jsx as Id,jsxs as Nd}from"react/jsx-runtime";var Ld=e=>{let{tokenPrice:t}=jn(e.txn),{nativeTokenSymbolForChainId:o}=P(),r=o(e.txn.chainId)||"ETH",n="--",i=()=>{if(!t)return n;let l=e.txn.value||0,s=Er(Re(l).toHexString(),t);return s==="0.00"?"<$0.01":`$${s}`},a=Eo(Re(e.txn.value||0).toHexString());return Nd(xg,{children:[Id(Tg,{children:i()}),Nd(Pg,{children:[a," ",r]}),Id(_g,{children:e.description})]})},xg=Yn.div`
1744
+ `;import Jn from"styled-components";import{StaticJsonRpcProvider as Eg}from"@ethersproject/providers";import{useState as Sr,useEffect as Id,useMemo as xg}from"react";var Yn=e=>{let{getUsdTokenPrice:t,chains:o,rpcConfig:r}=_(),[n,i]=Sr(!1),[a,l]=Sr(!1),[s,c]=Sr(void 0),[P,y]=Sr(void 0),[x,m]=Sr(null),C=xg(()=>new Eg(Qe(e.chainId||at,o,r)),[e.chainId,o,r]);return Id(()=>{let T=e.chainId||at,f=o.find(w=>w.id===Number(T));if(!f)throw new U(`Unsupported chain: ${T}`);(async()=>{try{i(!0);let w=await t(f);w?y(w):c(new Error(`Unable to fetch token price on chain id ${f.id}`))}catch(w){c(w)}finally{i(!1)}})()},[e.chainId]),Id(()=>{(async()=>{try{l(!0);let f=await Ad(e,C);m(f.toBigInt())}catch(f){c(f)}finally{l(!1)}})()},[e]),{tokenPrice:P,estimatedGas:x,isLoading:n||a,error:s}};import{jsx as Nd,jsxs as Ld}from"react/jsx-runtime";var Md=e=>{let{tokenPrice:t}=Yn(e.txn),{nativeTokenSymbolForChainId:o}=_(),r=o(e.txn.chainId)||"ETH",n="--",i=()=>{if(!t)return n;let l=e.txn.value||0,s=br(Re(l).toHexString(),t);return s==="0.00"?"<$0.01":`$${s}`},a=Eo(Re(e.txn.value||0).toHexString());return Ld(Tg,{children:[Nd(Pg,{children:i()}),Ld(_g,{children:[a," ",r]}),Nd(Sg,{children:e.description})]})},Tg=Jn.div`
1741
1745
  display: flex;
1742
1746
  flex-direction: column;
1743
1747
  align-items: center;
1744
1748
  margin-bottom: 20px;
1745
- `,Tg=Yn.h2`
1749
+ `,Pg=Jn.h2`
1746
1750
  && {
1747
1751
  font-size: 48px;
1748
1752
  line-height: 48px;
1749
1753
  margin: 8px auto;
1750
1754
  }
1751
- `,Pg=Yn.p`
1755
+ `,_g=Jn.p`
1752
1756
  margin-bottom: 12px;
1753
1757
  && {
1754
1758
  font-size: 17px;
1755
1759
  line-height: 17px;
1756
1760
  color: var(--privy-color-foreground-3);
1757
1761
  }
1758
- `,_g=Yn.div`
1762
+ `,Sg=Jn.div`
1759
1763
  font-size: 16px;
1760
1764
  line-height: 22.4px;
1761
1765
  font-weight: 400;
@@ -1763,52 +1767,52 @@ Resources:
1763
1767
  white-space: nowrap;
1764
1768
  max-width: 275px;
1765
1769
  text-overflow: ellipsis;
1766
- `;function Md(e){return e.to&&e.data?"CONTRACT_CALL":e.to&&e.value?"SEND":"UNKNOWN"}import{createContext as Sg,useContext as Ag}from"react";var Pa=Sg({wallets:[]});function _a(){return Ag(Pa)}import Od from"styled-components";import{Fragment as Wg,jsx as Xo,jsxs as Sa}from"react/jsx-runtime";var Dd=({txn:e,receipt:t,transactionInfo:o,onClose:r,tokenPrice:n})=>Sa(Wg,{children:[Xo(S,{onClose:r}),Sa(Rg,{children:[Sa("div",{children:[Xo(ht,{title:"Transaction complete!",description:"You're all set."}),Xo($n,{tokenPrice:n,from:t.from,to:t.to,gas:t.gasUsed,txn:e,transactionInfo:o})]}),Xo("div",{children:Xo(kg,{loading:!1,onClick:r,children:"All Done"})})]}),Xo(J,{})]}),Rg=Od.div`
1770
+ `;function Od(e){return e.to&&e.data?"CONTRACT_CALL":e.to&&e.value?"SEND":"UNKNOWN"}import{createContext as Ag,useContext as Rg}from"react";var Pa=Ag({wallets:[]});function _a(){return Rg(Pa)}import Dd from"styled-components";import{Fragment as Ig,jsx as Zo,jsxs as Sa}from"react/jsx-runtime";var Ud=({txn:e,receipt:t,transactionInfo:o,onClose:r,tokenPrice:n})=>Sa(Ig,{children:[Zo(S,{onClose:r}),Sa(kg,{children:[Sa("div",{children:[Zo(ht,{title:"Transaction complete!",description:"You're all set."}),Zo(Vn,{tokenPrice:n,from:t.from,to:t.to,gas:t.gasUsed,txn:e,transactionInfo:o})]}),Zo("div",{children:Zo(Wg,{loading:!1,onClick:r,children:"All Done"})})]}),Zo(J,{})]}),kg=Dd.div`
1767
1771
  display: flex;
1768
1772
  height: 100%;
1769
1773
  flex-direction: column;
1770
1774
  justify-content: space-between;
1771
1775
  flex-grow: 1;
1772
- `,kg=Od(K)`
1776
+ `,Wg=Dd(K)`
1773
1777
  margin-top: 24px;
1774
1778
  transition: color 350ms ease, background-color 350ms ease;
1775
- `;import{Fragment as Aa,jsx as me,jsxs as er}from"react/jsx-runtime";var Ng=({txn:e,txnFamily:t,uiOptions:o})=>{if(t==="CONTRACT_CALL"){if(o.transactionInfo?.contractInfo)return me(Ca,{contractInfo:o.transactionInfo.contractInfo,description:o.description});if(o.senderInfo)return me(Ca,{contractInfo:o.senderInfo,description:o.description||o.senderInfo.actionText})}return me(Aa,{children:me(Ld,{description:o.description||o.transactionInfo?.description||"",txn:e})})},Hd=()=>{let{authenticated:e,getAccessToken:t}=$(),{wallets:o}=_a(),{walletProxy:r,closePrivyModal:n,getFiatOnRampConfig:i,rpcConfig:a,chains:l,nativeTokenSymbolForChainId:s}=P(),{app:c,navigate:T,data:g,outerClickRef:E,setModalData:m}=y(),{transactionRequest:C,onSuccess:x,onFailure:f,uiOptions:_,fundWalletConfig:w}=g.sendTransaction,[M,L]=To(null),[k,I]=To(""),[H,ce]=To(),[B,q]=To(!1),[G,X]=To(!0),[O,de]=To(!1),[z,ee]=To(C),{tokenPrice:Oe,estimatedGas:D}=jn(z),Et=s(C.chainId)||"ETH";Fd(()=>{e||(T("LANDING"),f(new Error("User must be authenticated before transacting with a Privy wallet")))},[e]);let Ce=Ud(()=>o.find(ot=>ot.walletClientType==="privy"),[o]),nr=async()=>{if(!Ce)return console.warn("No privy wallet found, cannot fund wallet.");let{signedUrl:ot,externalTransactionId:ne}=await i(Ce.address,{config:w?.config||{}});m({fiatOnRampPrompt:{signedUrl:ot},fiatOnRampStatus:{externalTransactionId:ne}}),T("FIAT_ON_RAMP_PROMPT_SCREEN")},ao=Ud(()=>new Ig(Qe(z.chainId,l,a)),[z.chainId,a]);Fd(()=>{async function ot(){return!await t()||!r||!Ce?z:Vn(Ce.address,z,ao)}ot().then(ne=>{X(!1),ee(ne)},async ne=>{X(!0);let De=!1;if(Rl(ne))De=!0;else if(kl(ne))try{let{hasSufficientFunds:So}=await Kn(Ce.address,z,ao);De=So===!1}catch(So){console.warn(`Cannot accurately determine if wallet has sufficient funds with error: ${So}`)}let so="";De?(so="Wallet has insufficient funds for this transaction",c?.fiatOnRamp.enabled&&q(!0)):(so="There was an error preparing your transaction",console.error(ne)),I(so),ce(new Ie(new lt(so,_e.E32603_DEFAULT_INTERNAL_ERROR.eipCode)))})},[r]);let Ir=Md(z),ei=Ir==="SEND"?`Send ${Et}`:"Review transaction",ir={modalTitle:_.header||_.modalTitle||ei,buttonText:_.buttonText||"Submit"},Lt=()=>{O||(M?x(M):f(H||new Ie(new lt("The user rejected the request",_e.E4001_USER_REJECTED_REQUEST.eipCode))),n({shouldCallAuthOnSuccess:!1}))};return E&&(E.current=Lt),Oe===void 0?er(Aa,{children:[me(S,{title:ir.modalTitle,onClose:Lt}),me(R,{}),me(Bd,{children:me(Ho,{})}),me(N,{})]}):M!==null?me(Dd,{txn:z,onClose:Lt,receipt:M,transactionInfo:_.transactionInfo,tokenPrice:Oe}):er(Aa,{children:[me(S,{title:ir.modalTitle,onClose:Lt}),er(Bd,{children:[er(Dg,{children:[me(Ng,{txn:z,txnFamily:Ir,uiOptions:_}),Ce?me($n,{from:Ce.address,to:z.to,txn:z,transactionInfo:_.transactionInfo,gas:D?Re(D).toHexString():void 0,tokenPrice:Oe}):null]}),er(Ug,{children:[me(Lg,{children:k}),Ce?me(kd,{txn:z,wallet:Ce,provider:ao}):null,er(Mg,{children:[B&&me(K,{onClick:nr,children:"Add Funds"}),me(Og,{disabled:G||O,loading:!r||O,loadingText:O?"Submitting (may take a few minutes)...":"Loading...",onClick:async()=>{de(!0);let ot=await t();if(ot&&!O&&Ce)try{let ne=await qn(ot,Ce.address,r,z,ao);L(ne),I("")}catch(ne){let De="";ne.reason==="processing response error"?(console.warn({transaction:z,error:ne}),De="An error has occurred, please contact support."):De=ne.reason||"An error has occurred, please try again.",I(De),ce(new Ie(new lt(De,_e.E32603_DEFAULT_INTERNAL_ERROR.eipCode)))}finally{de(!1)}},children:ir.buttonText})]})]})]}),me(J,{})]})},Bd=tr.div`
1779
+ `;import{Fragment as Aa,jsx as me,jsxs as Xo}from"react/jsx-runtime";var Lg=({txn:e,txnFamily:t,uiOptions:o})=>{if(t==="CONTRACT_CALL"){if(o.transactionInfo?.contractInfo)return me(Ca,{contractInfo:o.transactionInfo.contractInfo,description:o.description});if(o.senderInfo)return me(Ca,{contractInfo:o.senderInfo,description:o.description||o.senderInfo.actionText})}return me(Aa,{children:me(Md,{description:o.description||o.transactionInfo?.description||"",txn:e})})},Gd=()=>{let{authenticated:e,getAccessToken:t}=$(),{wallets:o}=_a(),{walletProxy:r,closePrivyModal:n,getFiatOnRampConfig:i,rpcConfig:a,chains:l,nativeTokenSymbolForChainId:s}=_(),{app:c,navigate:P,data:y,outerClickRef:x,setModalData:m}=g(),{transactionRequest:C,onSuccess:T,onFailure:f,uiOptions:E,fundWalletConfig:w}=y.sendTransaction,[M,k]=To(null),[W,N]=To(""),[H,ce]=To(),[B,q]=To(!1),[G,X]=To(!0),[O,de]=To(!1),[z,ee]=To(C),{tokenPrice:Oe,estimatedGas:D}=Yn(z),Et=s(C.chainId)||"ETH";Bd(()=>{e||(P("LANDING"),f(new Error("User must be authenticated before transacting with a Privy wallet")))},[e]);let Ce=Fd(()=>o.find(ot=>ot.walletClientType==="privy"),[o]),rr=async()=>{if(!Ce)return console.warn("No privy wallet found, cannot fund wallet.");let{signedUrl:ot,externalTransactionId:ne}=await i(Ce.address,{config:w?.config||{}});m({fiatOnRampPrompt:{signedUrl:ot},fiatOnRampStatus:{externalTransactionId:ne}}),P("FIAT_ON_RAMP_PROMPT_SCREEN")},ao=Fd(()=>new Ng(Qe(z.chainId,l,a)),[z.chainId,a]);Bd(()=>{async function ot(){return!await t()||!r||!Ce?z:qn(Ce.address,z,ao)}ot().then(ne=>{X(!1),ee(ne)},async ne=>{X(!0);let De=!1;if(Rl(ne))De=!0;else if(kl(ne))try{let{hasSufficientFunds:So}=await jn(Ce.address,z,ao);De=So===!1}catch(So){console.warn(`Cannot accurately determine if wallet has sufficient funds with error: ${So}`)}let so="";De?(so="Wallet has insufficient funds for this transaction",c?.fiatOnRamp.enabled&&q(!0)):(so="There was an error preparing your transaction",console.error(ne)),N(so),ce(new Ie(new lt(so,_e.E32603_DEFAULT_INTERNAL_ERROR.eipCode)))})},[r]);let Wr=Od(z),ti=Wr==="SEND"?`Send ${Et}`:"Review transaction",nr={modalTitle:E.header||E.modalTitle||ti,buttonText:E.buttonText||"Submit"},Lt=()=>{O||(M?T(M):f(H||new Ie(new lt("The user rejected the request",_e.E4001_USER_REJECTED_REQUEST.eipCode))),n({shouldCallAuthOnSuccess:!1}))};return x&&(x.current=Lt),Oe===void 0?Xo(Aa,{children:[me(S,{title:nr.modalTitle,onClose:Lt}),me(R,{}),me(Hd,{children:me(Ho,{})}),me(L,{})]}):M!==null?me(Ud,{txn:z,onClose:Lt,receipt:M,transactionInfo:E.transactionInfo,tokenPrice:Oe}):Xo(Aa,{children:[me(S,{title:nr.modalTitle,onClose:Lt}),Xo(Hd,{children:[Xo(Ug,{children:[me(Lg,{txn:z,txnFamily:Wr,uiOptions:E}),Ce?me(Vn,{from:Ce.address,to:z.to,txn:z,transactionInfo:E.transactionInfo,gas:D?Re(D).toHexString():void 0,tokenPrice:Oe}):null]}),Xo(Fg,{children:[me(Mg,{children:W}),Ce?me(Wd,{txn:z,wallet:Ce,provider:ao}):null,Xo(Og,{children:[B&&me(K,{onClick:rr,children:"Add Funds"}),me(Dg,{disabled:G||O,loading:!r||O,loadingText:O?"Submitting (may take a few minutes)...":"Loading...",onClick:async()=>{de(!0);let ot=await t();if(ot&&!O&&Ce)try{let ne=await Kn(ot,Ce.address,r,z,ao);k(ne),N("")}catch(ne){let De="";ne.reason==="processing response error"?(console.warn({transaction:z,error:ne}),De="An error has occurred, please contact support."):De=ne.reason||"An error has occurred, please try again.",N(De),ce(new Ie(new lt(De,_e.E32603_DEFAULT_INTERNAL_ERROR.eipCode)))}finally{de(!1)}},children:nr.buttonText})]})]})]}),me(J,{})]})},Hd=er.div`
1776
1780
  display: flex;
1777
1781
  height: 100%;
1778
1782
  flex-direction: column;
1779
1783
  justify-content: space-between;
1780
1784
  flex-grow: 1;
1781
- `,Lg=tr.div`
1785
+ `,Mg=er.div`
1782
1786
  line-height: 15px;
1783
1787
  font-size: 13px;
1784
1788
  color: var(--privy-color-error);
1785
1789
  width: 100%;
1786
1790
  margin-top: 1px;
1787
- `,Mg=tr.div`
1791
+ `,Og=er.div`
1788
1792
  display: flex;
1789
1793
  direction: row;
1790
1794
  justify-content: space-between;
1791
1795
  align-items: center;
1792
1796
  gap: 8px;
1793
- `,Og=tr(K)`
1797
+ `,Dg=er(K)`
1794
1798
  transition: color 350ms ease, background-color 350ms ease;
1795
- `,Dg=tr.div`
1799
+ `,Ug=er.div`
1796
1800
  height: 100%;
1797
1801
  display: flex;
1798
1802
  flex-direction: column;
1799
1803
  justify-content: space-evenly;
1800
1804
  flex-grow: 1;
1801
- `,Ug=tr.div`
1805
+ `,Fg=er.div`
1802
1806
  display: flex;
1803
1807
  flex-direction: column;
1804
1808
  gap: 8px;
1805
- `;import{isHexString as Fg}from"@ethersproject/bytes";import{toUtf8String as Bg}from"@ethersproject/strings";import{useEffect as Hg,useState as Ra}from"react";import Rr,{css as Gg}from"styled-components";import{jsx as Gd}from"react/jsx-runtime";var zd=({style:e,color:t,...o})=>Gd("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:Gd("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M4.5 12.75l6 6 9-13.5"})});import{Fragment as Yg,jsx as Ct,jsxs as Jn}from"react/jsx-runtime";var zg=e=>{if(!Fg(e))return e;try{return Bg(e)}catch{return e}},$d=()=>{let{authenticated:e}=$(),{walletProxy:t,closePrivyModal:o}=P(),{navigate:r,data:n,outerClickRef:i}=y(),[a,l]=Ra(!1),[s,c]=Ra(""),[T,g]=Ra();Hg(()=>{e||r("LANDING")},[e]);let{message:E,confirmAndSignMessage:m,onFailure:C,uiOptions:x}=n.signMessage,f=!t,_={title:x.title||"Sign message",description:x.description||"Signing this message will not cost you any fees.",buttonText:x.buttonText||"Sign and continue"},w=()=>{a||C(T||new Ie(new lt("The user rejected the request.",_e.E4001_USER_REJECTED_REQUEST.eipCode))),o({shouldCallAuthOnSuccess:!1})};return i&&(i.current=w),Jn(Yg,{children:[Ct(S,{onClose:w}),Ct(R,{}),Jn($g,{children:[Jn("div",{children:[Ct(ht,{title:_.title,description:_.description}),Ct(Vg,{children:zg(E)}),Ct(qg,{fail:!0,children:s})]}),Ct(jg,{success:a,loading:f,disabled:a,onClick:async()=>{try{await m(),c(""),l(!0),setTimeout(()=>{o({shouldCallAuthOnSuccess:!1})},Je)}catch{c("An error has occurred, please try again."),g(new Ie(new lt(s,_e.E32603_DEFAULT_INTERNAL_ERROR.eipCode)))}},children:a?Jn(Kg,{children:[Ct(zd,{style:{height:"0.9rem",width:"0.9rem"},strokeWidth:2})," ",Ct("span",{children:"Success"})]}):_.buttonText})]}),Ct(N,{}),Ct(F,{protectedByPrivy:!0})]})},$g=Rr.div`
1809
+ `;import{isHexString as Bg}from"@ethersproject/bytes";import{toUtf8String as Hg}from"@ethersproject/strings";import{useEffect as Gg,useState as Ra}from"react";import Ar,{css as zg}from"styled-components";import{jsx as zd}from"react/jsx-runtime";var $d=({style:e,color:t,...o})=>zd("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:zd("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M4.5 12.75l6 6 9-13.5"})});import{Fragment as Jg,jsx as Ct,jsxs as Qn}from"react/jsx-runtime";var $g=e=>{if(!Bg(e))return e;try{return Hg(e)}catch{return e}},Vd=()=>{let{authenticated:e}=$(),{walletProxy:t,closePrivyModal:o}=_(),{navigate:r,data:n,outerClickRef:i}=g(),[a,l]=Ra(!1),[s,c]=Ra(""),[P,y]=Ra();Gg(()=>{e||r("LANDING")},[e]);let{message:x,confirmAndSignMessage:m,onFailure:C,uiOptions:T}=n.signMessage,f=!t,E={title:T.title||"Sign message",description:T.description||"Signing this message will not cost you any fees.",buttonText:T.buttonText||"Sign and continue"},w=()=>{a||C(P||new Ie(new lt("The user rejected the request.",_e.E4001_USER_REJECTED_REQUEST.eipCode))),o({shouldCallAuthOnSuccess:!1})};return i&&(i.current=w),Qn(Jg,{children:[Ct(S,{onClose:w}),Ct(R,{}),Qn(Vg,{children:[Qn("div",{children:[Ct(ht,{title:E.title,description:E.description}),Ct(qg,{children:$g(x)}),Ct(Kg,{fail:!0,children:s})]}),Ct(Yg,{success:a,loading:f,disabled:a,onClick:async()=>{try{await m(),c(""),l(!0),setTimeout(()=>{o({shouldCallAuthOnSuccess:!1})},Je)}catch{c("An error has occurred, please try again."),y(new Ie(new lt(s,_e.E32603_DEFAULT_INTERNAL_ERROR.eipCode)))}},children:a?Qn(jg,{children:[Ct($d,{style:{height:"0.9rem",width:"0.9rem"},strokeWidth:2})," ",Ct("span",{children:"Success"})]}):E.buttonText})]}),Ct(L,{}),Ct(F,{protectedByPrivy:!0})]})},Vg=Ar.div`
1806
1810
  display: flex;
1807
1811
  height: 100%;
1808
1812
  flex-direction: column;
1809
1813
  justify-content: space-between;
1810
1814
  flex-grow: 1;
1811
- `,Vg=Rr.div`
1815
+ `,qg=Ar.div`
1812
1816
  background-color: var(--privy-color-background-2);
1813
1817
  border-radius: var(--privy-border-radius-md);
1814
1818
  padding: 12px;
@@ -1824,7 +1828,7 @@ Resources:
1824
1828
  &::-webkit-scrollbar {
1825
1829
  display: none; /* Safari and Chrome */
1826
1830
  }
1827
- `,qg=Rr.div`
1831
+ `,Kg=Ar.div`
1828
1832
  line-height: 20px;
1829
1833
  height: 20px;
1830
1834
  font-size: 13px;
@@ -1833,20 +1837,20 @@ Resources:
1833
1837
  justify-content: flex-start;
1834
1838
  width: 100%;
1835
1839
  margin-top: 4px;
1836
- `,Kg=Rr.span`
1840
+ `,jg=Ar.span`
1837
1841
  display: flex;
1838
1842
  align-items: center;
1839
1843
  gap: 8px;
1840
- `,jg=Rr(K)`
1844
+ `,Yg=Ar(K)`
1841
1845
  transition: color 350ms ease, background-color 350ms ease;
1842
1846
 
1843
- ${e=>e.success&&Gg`
1847
+ ${e=>e.success&&zg`
1844
1848
  &&&& {
1845
1849
  background-color: var(--privy-color-success);
1846
1850
  color: #ffffff;
1847
1851
  }
1848
1852
  `}
1849
- `;import Qg,{createGlobalStyle as Zg}from"styled-components";var Jg=`
1853
+ `;import Zg,{createGlobalStyle as Xg}from"styled-components";var Qg=`
1850
1854
  *,
1851
1855
  ::before,
1852
1856
  ::after {
@@ -2076,7 +2080,7 @@ Resources:
2076
2080
  [hidden] {
2077
2081
  display: none;
2078
2082
  }
2079
- `,Vd=Jg;var qd=Zg`
2083
+ `,qd=Qg;var Kd=Xg`
2080
2084
  :root {
2081
2085
  // Borders
2082
2086
  --privy-border-radius-sm: 6px;
@@ -2107,10 +2111,10 @@ Resources:
2107
2111
  --privy-height-modal-full: 620px;
2108
2112
  --privy-height-modal-compact: 480px;
2109
2113
  };
2110
- `,Kd=Qg.div`
2114
+ `,jd=Zg.div`
2111
2115
  // css normalize only the privy application to avoid conflicts
2112
2116
  // with consuming application
2113
- ${Vd}
2117
+ ${qd}
2114
2118
 
2115
2119
  // Privy styles
2116
2120
  color: var(--privy-color-foreground-2);
@@ -2169,7 +2173,7 @@ Resources:
2169
2173
  opacity: 1;
2170
2174
  }
2171
2175
  }
2172
- `;import{jsx as Ke,jsxs as p1}from"react/jsx-runtime";var n1={["LANDING"]:Oc,["AWAITING_PASSWORDLESS_CODE"]:ul,["WALLET_EDUCATION"]:Ec,["AWAITING_CONNECTION"]:El,["AWAITING_CONNECT_ONLY_CONNECTION"]:_l,["PHANTOM_INTERSTITIAL_SCREEN"]:td,["LOGIN_FAILED_SCREEN"]:qc,["AWAITING_OAUTH_SCREEN"]:Qc,["ALLOWLIST_REJECTION_SCREEN"]:al,["INSTALL_METAMASK_SCREEN"]:_c,["INSTALL_PHANTOM_SCREEN"]:Ac,["INSTALL_COINBASE_WALLET_SCREEN"]:Tc,["LINK_EMAIL_SCREEN"]:Fc,["LINK_PHONE_SCREEN"]:Bc,["LINK_WALLET_SCREEN"]:Gc,["CONNECT_ONLY_LANDING_SCREEN"]:Cl,["CONNECT_ONLY_AUTHENTICATED_SCREEN"]:gl,["EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN"]:Xl,["EMBEDDED_WALLET_CREATED_SCREEN"]:Ml,["EMBEDDED_WALLET_CONNECTING_SCREEN"]:Nl,["EMBEDDED_WALLET_RECOVERY_SCREEN"]:oc,["EMBEDDED_WALLET_KEY_EXPORT_SCREEN"]:Bl,["EMBEDDED_WALLET_SIGN_REQUEST_SCREEN"]:$d,["EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN"]:Hd,["FIAT_ON_RAMP_PROMPT_SCREEN"]:lc,["FIAT_ON_RAMP_STATUS_SCREEN"]:dc,["EMBEDDED_WALLET_PASSWORD_UPDATE_SPLASH_SCREEN"]:tc,["EMBEDDED_WALLET_PASSWORD_UPDATE_SCREEN"]:ec},i1={["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_PASSWORD_UPDATE_SCREEN"]:"compact",["EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN"]:"compact",["EMBEDDED_WALLET_RECOVERY_SCREEN"]:"compact"},a1=(e,t,o)=>{if(e==="LANDING"&&t)return"compact";let r=i1[e];return r||(o?"medium":"full")},s1=()=>{let{ready:e}=$(),{isLinking:t}=P(),{ready:o,currentScreen:r,app:n}=y(),i=!!n?.loginMethods.wallet,a=!!(n?.loginMethods.email||n?.loginMethods.sms),s=a1(r,i!==a,t);if((!e||!o)&&r!=="AWAITING_OAUTH_SCREEN")return p1(jd,{"data-height":s,children:[Ke(S,{}),Ke(R,{}),Ke(d1,{children:Ke(uo,{})}),Ke(N,{}),Ke(J,{})]});let c=n1[r];return c?Ke(jd,{"data-height":s,children:Ke(c,{})}):null},Jd=()=>{let{closePrivyModal:e}=P(),{app:t,outerClickRef:o}=y(),r=()=>{if(o?.current){let{closeModal:l}=o.current()||{closeModal:!0};l&&(e(),o.current=null)}else return e()},n=o1(l=>{l.key==="Escape"&&t?.render.inDialog&&r()},[t?.render.inDialog]);Yd(()=>(document.addEventListener("keydown",n,!1),()=>{document.removeEventListener("keydown",n,!1)}),[n]);let i=Ke(Kd,{onClick:l=>l.stopPropagation(),children:Ke(s1,{})}),a=t?.render.inDialog?Ke(c1,{id:"privy-dialog",onClick:()=>r(),children:i}):i;return r1.createPortal(a,t?.render.inParentNodeId&&document.getElementById(t.render.inParentNodeId)||document.body)},l1=({children:e,...t})=>{let o=t1(null);return Yd(()=>{document?.activeElement?.blur();let r=document?.getElementById("root")||document?.getElementById("__next");if(r)return r.setAttribute("inert","true"),Xg(o?.current),()=>{let n=document?.getElementById("root")||document?.getElementById("__next");n&&(n.removeAttribute("inert"),e1())}},[t.open,t.onClose]),Ke("dialog",{open:!0,role:"dialog",...t,ref:o,children:e})},c1=ka(l1)`
2176
+ `;import{jsx as Ke,jsxs as u1}from"react/jsx-runtime";var i1={["LANDING"]:Dc,["AWAITING_PASSWORDLESS_CODE"]:ul,["WALLET_EDUCATION"]:xc,["AWAITING_CONNECTION"]:El,["AWAITING_CONNECT_ONLY_CONNECTION"]:_l,["PHANTOM_INTERSTITIAL_SCREEN"]:od,["LOGIN_FAILED_SCREEN"]:Kc,["AWAITING_OAUTH_SCREEN"]:Zc,["ALLOWLIST_REJECTION_SCREEN"]:al,["INSTALL_METAMASK_SCREEN"]:Sc,["INSTALL_PHANTOM_SCREEN"]:Rc,["INSTALL_COINBASE_WALLET_SCREEN"]:Pc,["LINK_EMAIL_SCREEN"]:Bc,["LINK_PHONE_SCREEN"]:Hc,["LINK_WALLET_SCREEN"]:zc,["CONNECT_ONLY_LANDING_SCREEN"]:Cl,["CONNECT_ONLY_AUTHENTICATED_SCREEN"]:gl,["EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN"]:ec,["EMBEDDED_WALLET_CREATED_SCREEN"]:Ml,["EMBEDDED_WALLET_CONNECTING_SCREEN"]:Nl,["EMBEDDED_WALLET_RECOVERY_SCREEN"]:rc,["EMBEDDED_WALLET_KEY_EXPORT_SCREEN"]:Bl,["EMBEDDED_WALLET_SIGN_REQUEST_SCREEN"]:Vd,["EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN"]:Gd,["FIAT_ON_RAMP_PROMPT_SCREEN"]:cc,["FIAT_ON_RAMP_STATUS_SCREEN"]:pc,["EMBEDDED_WALLET_PASSWORD_UPDATE_SPLASH_SCREEN"]:oc,["EMBEDDED_WALLET_PASSWORD_UPDATE_SCREEN"]:tc},a1={["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_PASSWORD_UPDATE_SCREEN"]:"compact",["EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN"]:"compact",["EMBEDDED_WALLET_RECOVERY_SCREEN"]:"compact"},s1=(e,t,o)=>{if(e==="LANDING"&&t)return"compact";let r=a1[e];return r||(o?"medium":"full")},l1=()=>{let{ready:e}=$(),{isLinking:t}=_(),{ready:o,currentScreen:r,app:n}=g(),i=!!n?.loginMethods.wallet,a=!!(n?.loginMethods.email||n?.loginMethods.sms),s=s1(r,i!==a,t);if((!e||!o)&&r!=="AWAITING_OAUTH_SCREEN")return u1(Yd,{"data-height":s,children:[Ke(S,{}),Ke(R,{}),Ke(p1,{children:Ke(uo,{})}),Ke(L,{}),Ke(J,{})]});let c=i1[r];return c?Ke(Yd,{"data-height":s,children:Ke(c,{})}):null},Qd=()=>{let{closePrivyModal:e}=_(),{app:t,outerClickRef:o}=g(),r=()=>{if(o?.current){let{closeModal:l}=o.current()||{closeModal:!0};l&&(e(),o.current=null)}else return e()},n=r1(l=>{l.key==="Escape"&&t?.render.inDialog&&r()},[t?.render.inDialog]);Jd(()=>(document.addEventListener("keydown",n,!1),()=>{document.removeEventListener("keydown",n,!1)}),[n]);let i=Ke(jd,{onClick:l=>l.stopPropagation(),children:Ke(l1,{})}),a=t?.render.inDialog?Ke(d1,{id:"privy-dialog",onClick:()=>r(),children:i}):i;return n1.createPortal(a,t?.render.inParentNodeId&&document.getElementById(t.render.inParentNodeId)||document.body)},c1=({children:e,...t})=>{let o=o1(null);return Jd(()=>{document?.activeElement?.blur();let r=document?.getElementById("root")||document?.getElementById("__next");if(r)return r.setAttribute("inert","true"),e1(o?.current),()=>{let n=document?.getElementById("root")||document?.getElementById("__next");n&&(n.removeAttribute("inert"),t1())}},[t.open,t.onClose]),Ke("dialog",{open:!0,role:"dialog",...t,ref:o,children:e})},d1=ka(c1)`
2173
2177
  position: fixed;
2174
2178
  top: 0;
2175
2179
  left: 0;
@@ -2184,7 +2188,7 @@ Resources:
2184
2188
  z-index: 999999;
2185
2189
  -webkit-backdrop-filter: blur(3px);
2186
2190
  backdrop-filter: blur(3px);
2187
- `,jd=ka.div`
2191
+ `,Yd=ka.div`
2188
2192
  display: flex;
2189
2193
  flex-direction: column;
2190
2194
  text-align: center;
@@ -2221,10 +2225,10 @@ Resources:
2221
2225
  min-height: 0;
2222
2226
  }
2223
2227
  }
2224
- `,d1=ka.div`
2228
+ `,p1=ka.div`
2225
2229
  display: flex;
2226
2230
  flex-direction: column;
2227
2231
  align-items: center;
2228
2232
  justify-content: center;
2229
2233
  height: 100%;
2230
- `;import{useEffect as u1}from"react";import{Fragment as h1,jsx as f1}from"react/jsx-runtime";var m1=({onLoad:e})=>{let t=window;return u1(()=>{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)},[]),f1(h1,{})},Qd=m1;var Zd={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 Xd={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 ep={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 tp={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 op={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 rp={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 np={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 ip={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 ap={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 sp={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 lp={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 cp={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 dp={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 pp={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 up={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 mp={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 hp={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 kr=[Zd,Xd,lp,hp,pp,up,mp,_r,Sr,np,ip,ap,sp,op,rp,cp,dp,ep,tp],fp=new Set(kr.map(e=>e.id));import Po from"tinycolor2";var yp="#FFFFFF",y1="#000000",g1=yp,v1="#1E1E1D";function w1(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 oo(e,t){let o=Math.max(0,Math.min(1,e.toHsl().l+t));return Po({...e.toHsl(),l:o})}function gp({backgroundTheme:e,accentHex:t,successHex:o="#51BA81",warnHex:r="#FFB74D",errorHex:n="#EC6351",whiteHex:i=yp,blackHex:a=y1}){let l;switch(e){case"light":l=g1;break;case"dark":l=v1;break;default:l=e;break}let s=Po(l),c=Po(t),T=Po(o),g=Po(r),E=Po(n),m=w1(s.getLuminance()),C=oo(s,m==="light"?-.04:.11),x=oo(s,m==="light"?-.88:.87),f=oo(s,m==="light"?-.77:.75),_=oo(s,m==="light"?-.43:.45).desaturate(m==="light"?60:20),w=oo(s,m==="light"?-.08:.25).desaturate(m==="light"?60:20),M=oo(c,.15),L=oo(c,-.06),k=Po(c.getLuminance()>.5?a:i),I=oo(T,-.16);return{colorScheme:m,background:s.toHslString(),background2:C.toHslString(),foreground:x.toHslString(),foreground2:f.toHslString(),foreground3:_.toHslString(),foreground4:w.toHslString(),accent:c.toHslString(),accentLight:M.toHslString(),accentDark:L.toHslString(),foregroundAccent:k.toHslString(),success:T.toHslString(),successDark:I.toHslString(),error:E.toHslString(),warn:g.toHslString()}}var ro={appearance:{theme:"light",accentColor:"#676FFF"},walletConnectCloudProjectId:cs,rpcConfig:{rpcUrls:{}},captchaEnabled:!1,_render:{inDialog:!0,inParentNodeId:null},fiatOnRamp:{useSandbox:!1}};function Qn(e,t){let o,r,n,i,a,l,s,c;if(t?.loginMethods?(o=t.loginMethods.includes("email"),r=t.loginMethods.includes("sms"),n=t.loginMethods.includes("wallet"),i=t.loginMethods.includes("google"),a=t.loginMethods.includes("twitter"),l=t.loginMethods.includes("discord"),s=t.loginMethods.includes("github"),c=t.loginMethods.includes("apple")):(o=e.emailAuth,r=e.smsAuth,n=e.walletAuth,i=e.googleOAuth,a=e.twitterOAuth,l=e.discordOAuth,s=e.githubOAuth,c=e.appleOAuth),o&&r&&(console.warn("Enabling both email and SMS passwordless is not currently supported. Disabling SMS."),r=!1),!o&&!r&&[i,a,l,s,c].some(E=>E))throw new Error("To enable social logins you must also enable either SMS or Email login");if(![o,r,n,i,a,l,s,c].some(E=>E))throw new Error("You must enable at least one login method");let T=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:gp({backgroundTheme:t?.appearance?.theme??ro.appearance.theme,accentHex:t?.appearance?.accentColor??e.accentColor??ro.appearance.accentColor}),showWalletLoginFirst:t?.appearance?.showWalletLoginFirst??e.showWalletLoginFirst},loginMethods:{wallet:n,email:o,sms:r,google:i,twitter:a,discord:l,github:s,apple:c},legal:{termsAndConditionsUrl:t?.legal?.termsAndConditionsUrl??e.termsAndConditionsUrl,privacyPolicyUrl:t?.legal?.privacyPolicyUrl??e.privacyPolicyUrl},walletConnectCloudProjectId:t?.walletConnectCloudProjectId??e.walletConnectCloudProjectId??ro.walletConnectCloudProjectId,rpcConfig:t?.rpcConfig??ro.rpcConfig,chains:C1(t?.additionalChains),captchaEnabled:e.captchaEnabled??ro.captchaEnabled,embeddedWallets:{...e.embeddedWalletConfig,...T?{createOnLogin:"all-users",requireUserPasswordOnCreate:!1,noPromptOnSignature:!0}:{},...t?.embeddedWallets},customAuth:T?{enabled:!0,...t.customAuth}:void 0,fiatOnRamp:{enabled:e.fiatOnRampEnabled,useSandbox:t?.fiatOnRamp?.useSandbox??ro.fiatOnRamp.useSandbox},loginConfig:{twitterOAuthOnMobileEnabled:e.twitterOAuthOnMobileEnabled??!1},render:{inDialog:t?._render?.inDialog??ro._render.inDialog,inParentNodeId:t?._render?.inParentNodeId??ro._render.inParentNodeId}}}function vp(e,t){return e?.appearance?.logo&&typeof e.appearance.logo=="object"&&(e.appearance.logo="component"),{...e,legacyCreateEmbeddedWalletFlag:t}}function C1(e){return!e||e.length===0?kr.map(o=>o):kr.concat(e.filter(o=>!fp.has(o.id)))}import{useRef as b1,useEffect as E1}from"react";var Zn=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 A1}from"react/jsx-runtime";var x1=function(e){return()=>`id-${e++}`}(0);function T1(e){return typeof e.event=="string"&&/^privy:.+/.test(e.event)}function or(e){return e.error!==void 0}var _o=new Zn,Wa=new Map,P1=(e,t)=>typeof t=="bigint"?t.toString():t,_1=(e,t)=>`${e}${JSON.stringify(t,P1)}`;function rr(e,t,o){let r=o.contentWindow;if(!r)throw new Error("iframe not initialized");let n=_1(e,t);if(e==="privy:wallet:create"){let a=Wa.get(n);if(a)return a}let i=new Promise((a,l)=>{let s=x1();_o.enqueue(s,{resolve:a,reject:l}),r.postMessage({id:s,event:e,data:t},"*")}).finally(()=>{Wa.delete(n)});return Wa.set(n,i),i}function S1(e){switch(e.event){case"privy:iframe:ready":let t=_o.dequeue(e.event,e.id);return or(e)?t.reject(new St(e.error.type,e.error.message)):t.resolve(e.data);case"privy:wallet:create":let o=_o.dequeue(e.event,e.id);return or(e)?o.reject(new St(e.error.type,e.error.message)):o.resolve(e.data);case"privy:wallet:connect":let r=_o.dequeue(e.event,e.id);return or(e)?r.reject(new St(e.error.type,e.error.message)):r.resolve(e.data);case"privy:wallet:recover":let n=_o.dequeue(e.event,e.id);return or(e)?n.reject(new St(e.error.type,e.error.message)):n.resolve(e.data);case"privy:wallet:rpc":let i=_o.dequeue(e.event,e.id);return or(e)?i.reject(new St(e.error.type,e.error.message)):i.resolve(e.data);case"privy:wallet:set-recovery-password":let a=_o.dequeue(e.event,e.id);return or(e)?a.reject(new St(e.error.type,e.error.message)):a.resolve(e.data);default:console.warn("Unsupported wallet proxy method:",e)}}function wp(e){let t=b1(null);return E1(()=>{let o=t.current;if(!o)return;function r(s){s&&s.origin===e.origin&&T1(s.data)&&S1(s.data)}let n={create(s){return rr("privy:wallet:create",s,o)},connect(s){return rr("privy:wallet:connect",s,o)},recover(s){return rr("privy:wallet:recover",s,o)},rpc(s){return rr("privy:wallet:rpc",s,o)},setRecoveryPassword(s){return rr("privy:wallet:set-recovery-password",s,o)}};window.addEventListener("message",r);let i=()=>e.onLoad(n),a=(...s)=>{console.warn("Privy iframe failed to load: ",...s),e.onLoadFailed()},l=new AbortController;return bs(()=>rr("privy:iframe:ready",{},o),{abortSignal:l.signal}).then(i,a),()=>{window.removeEventListener("message",r),l.abort()}},[t.current]),A1("iframe",{ref:t,width:"0",height:"0",style:{display:"none",height:"0px",width:"0px"},src:Kr(e.origin,`/apps/${e.appId}/embedded-wallets`)})}import{createContext as R1,useContext as k1,useEffect as W1}from"react";var Cp={login:{onComplete:[],onError:[]},logout:{onSuccess:[]},connectWallet:{onSuccess:[],onError:[]},createWallet:{onSuccess:[],onError:[]}},Ia=R1(void 0),I1=()=>k1(Ia);function no(e,t){if(!t)return;let r=I1().current[e];return W1(()=>{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 le(e,t,o,...r){for(let n of e.current[t][o])n(...r)}import{jsx as io,jsxs as Ep}from"react/jsx-runtime";function M1(e){return typeof e=="string"&&e.length===25}var Wr;function Pt(){if(!Wr){let e=j.get(No);return Promise.resolve(e||null)}return Wr.getAccessToken()}var xp,_s=(e,t)=>xp(e,t),Tp,Ss=(e,t)=>Tp(e,t),Pp,As=()=>Pp(),O1=()=>{let t=new URLSearchParams(window.location.search).get("privy_token");if(!t)return;j.put(sr,t);let o=new URL(window.location.href);o.searchParams.delete("privy_token"),window.history.pushState({},"",o)},D1=({config:e,...t})=>{if(!M1(t.appId))throw new v("Cannot initialize the Privy provider with an invalid Privy app ID");Wr||(Wr=new hr({appId:t.appId,apiUrl:t.apiUrl||Hr}));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."),io(U1,{...t,config:o,client:Wr})},U1=e=>{let t=e.client,[o,r]=Q(!1),[n,i]=Q(!1),[a,l]=Q(!1),[s,c]=Q(null),[T,g]=Q(!1),[E,m]=Q([]),C=bp(E),[x,f]=Q(!1),[_,w]=Q(null),[M,L]=Q(!1),[k,I]=Q({status:"disconnected",connectError:null,connector:null,connectRetry:b}),[H,ce]=Q(null),[B,q]=Q(null),[G,X]=Q({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,appleOAuth:!1,termsAndConditionsUrl:null,privacyPolicyUrl:null,embeddedWalletConfig:{createOnLogin:"off",requireUserPasswordOnCreate:!1},fiatOnRampEnabled:!1,captchaEnabled:!1}),[O,de]=Q(()=>{let d=vp(e.config,e.createPrivyWalletOnLogin);return t.createAnalyticsEvent("sdk_initialize",d),Qn(G,e.config)}),[z,ee]=Q(!0),[Oe,D]=Q({}),[Et,Ce]=Q(null),[nr,ao]=Q(null),[Ir,ei]=Q(!1),[ir,Lt]=Q(),[ot,ne]=Q(),[De,so]=Q(),[So,La]=Q(!1),ie=bp(Cp),Pe=d=>{d&&w(d),r(!0),t.createAnalyticsEvent("modal_open",{initialScreen:d})},Nr=d=>{O.embeddedWallets.createOnLogin!=="off"&&ee(!0),Pe(d)};bt(()=>{if(!B||!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(B,p)}},[B,s]),bt(()=>{B&&nr?.(B)},[B]),bt(()=>{(async()=>{if(!O.customAuth?.enabled)return;ee(!0);let{getCustomAccessToken:p,isLoading:u}=O.customAuth;if(!(!n||u))try{let h=await p();if(!h){await Ao.logout();return}if(a)return;t.startAuthFlow(new Wo(h));let{user:W,isNewUser:he}=await t.authenticate();W||await Ao.logout(),c(W||null),f(he||!1),l(!0),La(!0)}catch(h){console.warn(h),a&&await Ao.logout()}})()},[O.customAuth?.enabled,O.customAuth?.getCustomAccessToken,O.customAuth?.isLoading,n,a]),bt(()=>{So&&B&&s&&Ut(s,e.config?.embeddedWallets?.createOnLogin)&&(La(!1),Ua(s,3e4).catch(console.error))},[So&&B&&s]),bt(()=>{async function d(){let p=await t.getServerConfig();X(p);let u=Qn(p,e.config);de(u),p.customApiUrl&&t.updateApiUrl(p.customApiUrl),t.initializeConnectorManager(u.walletConnectCloudProjectId,u.rpcConfig,u.chains),t.connectors?.initialize();let h=_p();O1();let W=await t.getAuthenticatedUser();e.config?.customAuth?.enabled||(l(!!W),W&&le(ie,"login","onComplete",W,!1,!0),c(W)),h||(i(!0),Et?.()),h&&W&&g(!0),Sp()}n||d()},[t,Et,n]),bt(()=>{let d=Qn(G,e.config);de(d)},[e.config]);let _p=()=>{let d=new URLSearchParams(window.location.search),p=d.get("privy_oauth_code"),u=d.get("privy_oauth_state"),h=d.get("privy_oauth_provider");return p&&u&&h?(t.startAuthFlow(new Ot(h,p,u)),Nr("AWAITING_OAUTH_SCREEN"),D({finishOauthFlow:{onComplete:()=>{i(!0),Et?.()}}}),!0):!1},ti=async(d,p,u)=>{let h=await t.connectors?.createWalletConnector(d,p)||null;Ma(h,u)};async function Ma(d,p){if(!d)return I({status:"disconnected",connectError:new U("Unable to connect to wallet."),connector:null,connectRetry:b}),p?.(null);I({connector:d,status:"connecting",connectError:null,connectRetry:()=>Ma(d,p)});try{let u=await d.connect({showPrompt:!0});return I(h=>({...h,status:"connected",connectError:null,connectRetry:b})),u&&!M&&le(ie,"connectWallet","onSuccess",u),p?.(u)}catch(u){return u instanceof Ye?(console.warn(u.cause?u.cause:u.message),M||le(ie,"connectWallet","onError",u.privyErrorCode||"generic_connect_wallet_error")):(console.warn(u),M||le(ie,"connectWallet","onError","unknown_connect_wallet_error")),I(h=>({...h,status:"disconnected",connectError:u})),p?.(null)}}let oi=d=>{d!==null&&t.startAuthFlow(new co(d))},Sp=()=>{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"&&!He()&&Nr("LOGIN_FAILED_SCREEN"),!t.connectors)throw new v("Connector not initialized");Pe("AWAITING_CONNECTION");let h=new URL(window.location.href);h.searchParams.delete("privy_connector"),h.searchParams.delete("privy_wallet_client"),window.history.pushState({},"",h),ti(p,u,oi)};bt(()=>{n&&a&&s===null&&t.getAuthenticatedUser().then(c)},[n,a,s,t]);let Oa=()=>{g(!0),Pe("LINK_WALLET_SCREEN")},Ap=d=>{if(!a||!s)return!1;for(let p of s.linkedAccounts)if(p.type==="wallet"&&p.address===d.address)return!0;return!1},Rp=async d=>{if(!t.connectors)throw new v("Connector not initialized");let p=t.connectors.findWalletConnector(d.connectorType,d.walletClientType)||null;I(u=>({...u,connector:p,status:"connected",connectError:null,connectRetry:b})),oi(d),Nr("AWAITING_CONNECTION")},kp=async(d,p)=>{if(!t.connectors)throw new v("Connector not initialized");await ti(d,p,oi)},Da=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:h}=await ac(t,d,p?.config??{},O.appearance.palette,O.fiatOnRamp.useSandbox);return{signedUrl:u,externalTransactionId:h}}else throw new v("Unsupported fund provider. Currently supported option is `moonpay`.")},Lr=()=>{m(d=>{let p=t.connectors?.wallets.map(u=>({...u,linked:Ap(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");Rp(u)},fund:async h=>{let{signedUrl:W,externalTransactionId:he}=await Da(u.address,h);D({fiatOnRampPrompt:{signedUrl:W},fiatOnRampStatus:{externalTransactionId:he}}),Pe("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 h=await t.unlinkWallet(u.address);c(h)}}))||[];return Jr(d,p)?d:p})};bt(()=>{Lr()},[s?.linkedAccounts,a,n]),bt(()=>{if(n){if(!t.connectors)throw new v("Connector not initialized");Lr(),t.connectors.on("walletsUpdated",Lr)}},[n]);let Wp=()=>{Pe(a?"CONNECT_ONLY_AUTHENTICATED_SCREEN":"CONNECT_ONLY_LANDING_SCREEN")};bt(()=>{if(!E[0])return;let d=E[0],p=C.current.find(h=>h.address===d.address),u=s?.linkedAccounts.find(h=>h.type==="wallet"&&h.address===d.address);if(!p&&u){let h=Object.assign({},s);h.wallet=u&&{address:u.address,chainType:u.chainType,chainId:u.chainId,walletClient:u.walletClient,walletClientType:u.walletClientType,connectorType:u.connectorType},c(h)}C.current=E},[E]);let Ua=async(d,p)=>{if(Y(d))throw le(ie,"createWallet","onError","embedded_wallet_already_exists"),new Error("Only one Privy wallet per user is currently allowed");let[h,W]=await Promise.all([je.initializeWalletProxy(p),Pt()]);if(!h&&e.config?.customAuth?.enabled)throw le(ie,"createWallet","onError","unknown_embedded_wallet_error"),new Error("Failed to connect to wallet proxy");if(!h||!W||e.config?.embeddedWallets?.requireUserPasswordOnCreate)return new Promise((he,Ue)=>{ee(!0),D({createWallet:{onSuccess:nt=>{le(ie,"createWallet","onSuccess",nt),he(nt)},onFailure:nt=>{le(ie,"createWallet","onError","unknown_embedded_wallet_error"),Ue(nt)},callAuthOnSuccessOnClose:!1}}),Pe("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")});{await h.create({accessToken:W});let he=await je.refreshUser(),Ue=Y(he);if(!Ue)throw le(ie,"createWallet","onError","unknown_embedded_wallet_error"),new Error("Failed to create wallet");return le(ie,"createWallet","onSuccess",Ue),Ue}},Ao={ready:n,authenticated:a,user:s,walletConnectors:t.connectors||null,connectWallet:Wp,linkWallet:Oa,linkEmail:()=>{if(s?.email)throw new v("User already has an email linked to their account.");g(!0),Pe("LINK_EMAIL_SCREEN")},linkPhone:()=>{if(s?.phone)throw new v("User already has a phone number linked to their account.");g(!0),Pe("LINK_PHONE_SCREEN")},linkGoogle:async()=>{if(s?.google)throw new v("User already has a Google account linked to their account.");await je.initLoginWithOAuth("google")},linkTwitter:async()=>{if(s?.twitter)throw new v("User already has a Twitter account linked to their account.");await je.initLoginWithOAuth("twitter")},linkDiscord:async()=>{if(s?.discord)throw new v("User already has a Discord account linked to their account.");await je.initLoginWithOAuth("discord")},linkGithub:async()=>{if(s?.github)throw new v("User already has a Github account linked to their account.");await je.initLoginWithOAuth("github")},linkApple:async()=>{await je.initLoginWithOAuth("apple")},login:async()=>{if(n||(await new Promise(d=>{Ce(()=>d)}),Ce(null)),a){console.warn("Attempted to log in, but user is already logged in. Use a `link` helper instead.");return}L(!0),Nr()},logout:async()=>{await t.logout(),c(null),l(!1),w(null),le(ie,"logout","onSuccess"),g(!1),r(!1)},getAccessToken:()=>t.getAccessToken(),getEthereumProvider:()=>{if(!s||!s.wallet)return new Z;let d=E.find(u=>s.wallet&&u.address===s.wallet.address),p=t.connectors?.walletConnectors.find(u=>u.wallets.find(h=>h.address===d?.address));return!d||!p?new Z:p.proxyProvider},getEthersProvider:()=>{if(!s||!s.wallet)return new Na(new dt(new Z));let d=E.find(u=>s.wallet&&u.address===s.wallet.address),p=t.connectors?.walletConnectors.find(u=>u.wallets.find(h=>h.address===d?.address));return!d||!p?new Na(new dt(new Z)):new Na(new dt(p.proxyProvider))},getWeb3jsProvider:()=>{if(!s||!s.wallet)return new Ht(new Z);let d=E.find(u=>s.wallet&&u.address===s.wallet.address),p=t.connectors?.walletConnectors.find(u=>u.wallets.find(h=>h.address===d?.address));return!d||!p?new Ht(new Z):new Ht(p.proxyProvider)},unlinkWallet:async d=>{let p=await t.unlinkWallet(d);return c(p),p},unlinkEmail:async d=>{let p=await t.unlinkEmail(d);return c(p),p},unlinkPhone:async d=>{let p=await t.unlinkPhone(d);return c(p),p},unlinkGoogle:async d=>{let p=await t.unlinkOAuth("google",d);return c(p),p},unlinkTwitter:async d=>{let p=await t.unlinkOAuth("twitter",d);return c(p),p},unlinkDiscord:async d=>{let p=await t.unlinkOAuth("discord",d);return c(p),p},unlinkGithub:async d=>{let p=await t.unlinkOAuth("github",d);return c(p),p},unlinkApple:async d=>{let p=await t.unlinkOAuth("apple",d);return c(p),p},setActiveWallet:async d=>{let p=E.find(h=>Xn(h.address)===Xn(d)),u=s?.linkedAccounts.find(h=>h.type==="wallet"&&Xn(h.address)===Xn(d));if(!p||!await p.isConnected())ce(d),Oa();else if(!p.linked)p.loginOrLink();else{let h=Object.assign({},s);h.wallet=u&&{address:u.address,chainType:u.chainType,chainId:u.chainId,walletClient:u.walletClient,walletClientType:u.walletClientType,connectorType:u.connectorType},c(h)}},forkSession:()=>t.forkSession(),createWallet:async()=>{if(!a||!s)throw le(ie,"createWallet","onError","must_be_authenticated"),new Error("User must be authenticated before creating a Privy wallet");return Ua(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=Y(s);if(!u||!B){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}ee(!0);let h={onSuccess:d,onFailure:p,callAuthOnSuccessOnClose:!1},W={onCompleteNavigateTo:"EMBEDDED_WALLET_PASSWORD_UPDATE_SPLASH_SCREEN",onFailure:p};D({setWalletPassword:h,connectWallet:W}),Pe("EMBEDDED_WALLET_CONNECTING_SCREEN")}),signMessage:(d,p)=>new Promise((u,h)=>{if(!a||!s){h(new Error("User must be authenticated before signing with a Privy wallet"));return}let W=Y(s);if(!W){h(new Error("Must have a Privy wallet before signing"));return}if(typeof d!="string"||d.length<1){h(new Error("Message must be a non-empty string"));return}ee(!0);let he=async()=>{a||h(new Error("User must be authenticated before signing with a Privy wallet"));let Ue=await Pt();if(B&&Ue)try{if(!await je.recoverEmbeddedWallet()){h(new Error("Unable to connect to wallet"));return}t.createAnalyticsEvent("embedded_wallet_sign_message_started",{walletAddress:W.address});let{response:nt}=await B.rpc({accessToken:Ue,address:W.address,request:{method:"personal_sign",params:[d,W.address]}}),Mt=nt.data;u(Mt),t.createAnalyticsEvent("embedded_wallet_sign_message_completed",{walletAddress:W.address})}catch(rt){h(rt)}};if(O.embeddedWallets.noPromptOnSignature)p&&console.warn("uiOptions defined with `noPromptOnSignature` set to true in app config"),he();else{let rt={message:d,confirmAndSignMessage:he,onFailure:Mt=>{h(Mt)},uiOptions:p||{}},nt={onCompleteNavigateTo:"EMBEDDED_WALLET_SIGN_REQUEST_SCREEN",onFailure:h};D({signMessage:rt,connectWallet:nt}),Pe("EMBEDDED_WALLET_CONNECTING_SCREEN")}}),sendTransaction:(d,p,u)=>new Promise(async(h,W)=>{if(!a||!s){W(new Error("User must be authenticated before signing with a Privy wallet"));return}let he=Y(s);if(!he){W(new Error("Must have a Privy wallet before signing"));return}ee(!0);let Ue=t.connectors?.findWalletConnector("embedded","privy")?.proxyProvider,rt=Object.assign({},d,{chainId:d.chainId||Ue.chainId}),nt=async()=>{let Mt=await Pt();if(!Mt||!B){W(new Error("Must have valid access token and Privy wallet to send transaction"));return}try{if(!await je.recoverEmbeddedWallet()){W(new Error("Unable to connect to wallet"));return}let Fa=new N1(Qe(rt.chainId,O.chains,O.rpcConfig)),Np=await Vn(he.address,rt,Fa),Lp=await qn(Mt,he.address,B,Np,Fa);h(Lp)}catch(Mr){W(Mr)}};if(O.embeddedWallets.noPromptOnSignature)p&&console.warn("uiOptions defined with `noPromptOnSignature` set to true in app config"),nt();else{let Mt={transactionRequest:rt,onSuccess:h,onFailure:W,uiOptions:p||{},fundWalletConfig:u},Mr={onCompleteNavigateTo:"EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN",onFailure:W};D({connectWallet:Mr,sendTransaction:Mt}),Pe("EMBEDDED_WALLET_CONNECTING_SCREEN")}}),exportWallet:()=>new Promise((d,p)=>{if(!a||!s){p(new Error("User must be authenticated before exporting their Privy wallet"));return}if(!Y(s)){p(new Error("Must have a Privy wallet before exporting"));return}ee(!0);let h={onCompleteNavigateTo:"EMBEDDED_WALLET_KEY_EXPORT_SCREEN",onFailure:p},W={appId:e.appId,origin:t.apiUrl,onSuccess:d,onFailure:p};D({keyExport:W,connectWallet:h}),Pe("EMBEDDED_WALLET_CONNECTING_SCREEN")})};xp=Ao.signMessage,Tp=Ao.sendTransaction;let je=(()=>({isNewUserThisSession:x,isLinking:T,linkingHint:H,walletConnectionStatus:k,rpcConfig:O.rpcConfig,chains:O.chains,nativeTokenSymbolForChainId:d=>O.chains.find(p=>p.id===Number(d))?.nativeCurrency.symbol,captchaData:{ready:Ir,enabled:O.captchaEnabled,execute:()=>{let d=window.turnstile;if(!d)return;let p=d.render("#cf-turnstile",{sitekey:ds,action:O.id,callback:Lt,"error-callback":ne,"expired-callback":()=>{try{d.reset(De),ne(void 0),Lt(void 0)}catch{ne("expired_and_failed_reset")}},"unsupported-callback":()=>{console.warn("Browser does not support Turnstile.")}});p||console.warn("Failed to render challenge."),so(p)},remove:()=>{let d=window.turnstile;!d?.remove||!De||(d.remove(De),so(void 0),ne(void 0),Lt(void 0))},token:ir,error:ot},initializeWalletProxy:async d=>{if(B)return B;let p=new Promise(W=>{ao(()=>he=>W(he))}),u=new Promise(W=>setTimeout(()=>W(null),d)),h=await Promise.race([p,u]);return ao(null),h},getAuthFlow:()=>t.authFlow,getAuthMeta:()=>t.authFlow?.meta,closePrivyModal:(d={shouldCallAuthOnSuccess:!0})=>{let p=n&&a&&s;d.shouldCallAuthOnSuccess&&p?(le(ie,"login","onComplete",s,x,!1),e.onSuccess?.(s,x)):M&&le(ie,"login","onError","exited_auth_flow"),t.authFlow=void 0,ce(null),w(null),L(!1),g(!1),f(!1),r(!1),t.createAnalyticsEvent("modal_closed")},connectWallet:ti,initLoginWithWallet:kp,loginWithWallet:async()=>{if(!n)throw new ar;if(!(t.authFlow instanceof co))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 le(ie,"login","onError",u.privyErrorCode||"generic_connect_wallet_error"),u}c(d||s||null),f(p||!1),l(!0)},initLoginWithOAuth:async d=>{t.startAuthFlow(new Ot(d));let p=await t.authFlow.getAuthorizationUrl();p&&p.url&&window.location.assign(p.url)},loginWithOAuth:async()=>{if(!(t.authFlow instanceof Ot))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 le(ie,"login","onError",u.privyErrorCode||"unknown_auth_error"),u}c(d),f(p||!1),l(!0)},initLoginWithEmail:async(d,p)=>{let u=new lo(d,p);t.startAuthFlow(u);try{await u.sendCodeEmail()}catch(h){throw le(ie,"login","onError",h.privyErrorCode||"unknown_auth_error"),h}},initLoginWithSms:async(d,p)=>{let u=new po(d,p);t.startAuthFlow(u);try{await u.sendSmsCode()}catch(h){throw le(ie,"login","onError",h.privyErrorCode||"unknown_auth_error"),h}},resendEmailCode:async()=>{await t.authFlow?.sendCodeEmail()},resendSmsCode:async()=>{await t.authFlow?.sendSmsCode()},loginWithCode:async d=>{if(!n)throw new ar;if(t.authFlow instanceof lo)t.authFlow.meta.emailCode=d.trim();else if(t.authFlow instanceof po)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(),c(p||s||null),f(u||!1),l(!0)},refreshUser:async()=>{let d=await t.getAuthenticatedUser();return c(d),d},walletProxy:B,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(W=>W.type==="wallet"&&W.walletClientType==="privy"),h=await Pt();if(!h||!B||!u){p(new Error("Must have valid access token and Privy wallet to recover wallet"));return}ee(!0);try{await B.connect({accessToken:h,address:u.address}),d(!0)}catch(W){Go(W)&&u.recoveryMethod==="privy"?(t.createAnalyticsEvent("embedded_wallet_pinless_recovery_started",{walletAddress:u.address}),(await B.recover({address:u.address,accessToken:h})).address||p(new Error("Unable to recover wallet")),t.createAnalyticsEvent("embedded_wallet_recovery_completed",{walletAddress:u.address}),d(!0)):Go(W)?(D({recoverWallet:{privyWallet:u,onFailure:p,onSuccess:()=>d(!0)}}),Pe("EMBEDDED_WALLET_RECOVERY_SCREEN")):p(W)}}),getFiatOnRampConfig:Da,updateWallets:()=>Lr()}))();Pp=je.recoverEmbeddedWallet;let Ip=L1(()=>({wallets:E}),[E]);return io(Xe.Provider,{value:Ao,children:io(Ia.Provider,{value:ie,children:Ep(Pa.Provider,{value:Ip,children:[e.children,Ep(wi.Provider,{value:je,children:[io(qd,{theme:{...O.appearance.palette||{}}}),io(Ms,{appConfig:O,data:Oe,setModalData:D,setInitialScreen:w,initialScreen:_,visible:o,authenticated:a,children:o?io(Jd,{}):null}),z&&G.id?io(wp,{appId:e.appId,origin:t.apiUrl,onLoad:q,onLoadFailed:()=>null}):null]}),O.captchaEnabled&&io(Qd,{onLoad:()=>ei(!0)})]})})})};import{useContext as F1}from"react";function B1(e){let{login:t}=F1(Xe);return no("login",e),{login:t}}import{useContext as H1}from"react";function G1(e){let{logout:t}=H1(Xe);return no("logout",e),{logout:t}}import{useContext as z1}from"react";function $1(e){let{connectWallet:t}=z1(Xe);return no("connectWallet",e),{connectWallet:t}}import{useContext as V1}from"react";function q1(e){let{createWallet:t}=V1(Xe);return no("createWallet",e),{createWallet:t}}export{dt as AsExternalProvider,ur as ConnectorManager,hr as PrivyClient,D1 as PrivyProvider,Z as PrivyProxyProvider,kr as SUPPORTED_CHAINS,ri as VERSION,Ne as WalletConnector,Pt as getAccessToken,$1 as useConnectWallet,q1 as useCreateWallet,B1 as useLogin,G1 as useLogout,$ as usePrivy,_a as useWallets};
2234
+ `;import{useEffect as m1}from"react";import{Fragment as f1,jsx as y1}from"react/jsx-runtime";var h1=({onLoad:e})=>{let t=window;return m1(()=>{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)},[]),y1(f1,{})},Zd=h1;var Xd={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 ep={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 tp={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 op={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 rp={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 np={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 ip={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 ap={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 sp={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 lp={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 cp={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 dp={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 pp={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 up={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 mp={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 hp={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 fp={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 Rr=[Xd,ep,cp,fp,up,mp,hp,Pr,_r,ip,ap,sp,lp,rp,np,dp,pp,tp,op],yp=new Set(Rr.map(e=>e.id));import Po from"tinycolor2";var gp="#FFFFFF",g1="#000000",v1=gp,w1="#1E1E1D";function C1(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 oo(e,t){let o=Math.max(0,Math.min(1,e.toHsl().l+t));return Po({...e.toHsl(),l:o})}function vp({backgroundTheme:e,accentHex:t,successHex:o="#51BA81",warnHex:r="#FFB74D",errorHex:n="#EC6351",whiteHex:i=gp,blackHex:a=g1}){let l;switch(e){case"light":l=v1;break;case"dark":l=w1;break;default:l=e;break}let s=Po(l),c=Po(t),P=Po(o),y=Po(r),x=Po(n),m=C1(s.getLuminance()),C=oo(s,m==="light"?-.04:.11),T=oo(s,m==="light"?-.88:.87),f=oo(s,m==="light"?-.77:.75),E=oo(s,m==="light"?-.43:.45).desaturate(m==="light"?60:20),w=oo(s,m==="light"?-.08:.25).desaturate(m==="light"?60:20),M=oo(c,.15),k=oo(c,-.06),W=Po(c.getLuminance()>.5?a:i),N=oo(P,-.16);return{colorScheme:m,background:s.toHslString(),background2:C.toHslString(),foreground:T.toHslString(),foreground2:f.toHslString(),foreground3:E.toHslString(),foreground4:w.toHslString(),accent:c.toHslString(),accentLight:M.toHslString(),accentDark:k.toHslString(),foregroundAccent:W.toHslString(),success:P.toHslString(),successDark:N.toHslString(),error:x.toHslString(),warn:y.toHslString()}}var ro={appearance:{theme:"light",accentColor:"#676FFF"},walletConnectCloudProjectId:cs,rpcConfig:{rpcUrls:{}},captchaEnabled:!1,_render:{inDialog:!0,inParentNodeId:null},fiatOnRamp:{useSandbox:!1}};function Zn(e,t){let o,r,n,i,a,l,s,c;if(t?.loginMethods?(o=t.loginMethods.includes("email"),r=t.loginMethods.includes("sms"),n=t.loginMethods.includes("wallet"),i=t.loginMethods.includes("google"),a=t.loginMethods.includes("twitter"),l=t.loginMethods.includes("discord"),s=t.loginMethods.includes("github"),c=t.loginMethods.includes("apple")):(o=e.emailAuth,r=e.smsAuth,n=e.walletAuth,i=e.googleOAuth,a=e.twitterOAuth,l=e.discordOAuth,s=e.githubOAuth,c=e.appleOAuth),o&&r&&(console.warn("Enabling both email and SMS passwordless is not currently supported. Disabling SMS."),r=!1),!o&&!r&&[i,a,l,s,c].some(x=>x))throw new Error("To enable social logins you must also enable either SMS or Email login");if(![o,r,n,i,a,l,s,c].some(x=>x))throw new Error("You must enable at least one login method");let P=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:vp({backgroundTheme:t?.appearance?.theme??ro.appearance.theme,accentHex:t?.appearance?.accentColor??e.accentColor??ro.appearance.accentColor}),showWalletLoginFirst:t?.appearance?.showWalletLoginFirst??e.showWalletLoginFirst},loginMethods:{wallet:n,email:o,sms:r,google:i,twitter:a,discord:l,github:s,apple:c},legal:{termsAndConditionsUrl:t?.legal?.termsAndConditionsUrl??e.termsAndConditionsUrl,privacyPolicyUrl:t?.legal?.privacyPolicyUrl??e.privacyPolicyUrl},walletConnectCloudProjectId:t?.walletConnectCloudProjectId??e.walletConnectCloudProjectId??ro.walletConnectCloudProjectId,rpcConfig:t?.rpcConfig??ro.rpcConfig,chains:b1(t?.additionalChains),captchaEnabled:e.captchaEnabled??ro.captchaEnabled,embeddedWallets:{...e.embeddedWalletConfig,...P?{createOnLogin:"all-users",requireUserPasswordOnCreate:!1,noPromptOnSignature:!0}:{},...t?.embeddedWallets},customAuth:P?{enabled:!0,...t.customAuth}:void 0,fiatOnRamp:{enabled:e.fiatOnRampEnabled,useSandbox:t?.fiatOnRamp?.useSandbox??ro.fiatOnRamp.useSandbox},loginConfig:{twitterOAuthOnMobileEnabled:e.twitterOAuthOnMobileEnabled??!1},render:{inDialog:t?._render?.inDialog??ro._render.inDialog,inParentNodeId:t?._render?.inParentNodeId??ro._render.inParentNodeId}}}function wp(e,t){return e?.appearance?.logo&&typeof e.appearance.logo=="object"&&(e.appearance.logo="component"),{...e,legacyCreateEmbeddedWalletFlag:t}}function b1(e){return!e||e.length===0?Rr.map(o=>o):Rr.concat(e.filter(o=>!yp.has(o.id)))}import{useRef as E1,useEffect as x1}from"react";var Xn=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 R1}from"react/jsx-runtime";var T1=function(e){return()=>`id-${e++}`}(0);function P1(e){return typeof e.event=="string"&&/^privy:.+/.test(e.event)}function tr(e){return e.error!==void 0}var _o=new Xn,Wa=new Map,_1=(e,t)=>typeof t=="bigint"?t.toString():t,S1=(e,t)=>`${e}${JSON.stringify(t,_1)}`;function or(e,t,o){let r=o.contentWindow;if(!r)throw new Error("iframe not initialized");let n=S1(e,t);if(e==="privy:wallet:create"){let a=Wa.get(n);if(a)return a}let i=new Promise((a,l)=>{let s=T1();_o.enqueue(s,{resolve:a,reject:l}),r.postMessage({id:s,event:e,data:t},"*")}).finally(()=>{Wa.delete(n)});return Wa.set(n,i),i}function A1(e){switch(e.event){case"privy:iframe:ready":let t=_o.dequeue(e.event,e.id);return tr(e)?t.reject(new St(e.error.type,e.error.message)):t.resolve(e.data);case"privy:wallet:create":let o=_o.dequeue(e.event,e.id);return tr(e)?o.reject(new St(e.error.type,e.error.message)):o.resolve(e.data);case"privy:wallet:connect":let r=_o.dequeue(e.event,e.id);return tr(e)?r.reject(new St(e.error.type,e.error.message)):r.resolve(e.data);case"privy:wallet:recover":let n=_o.dequeue(e.event,e.id);return tr(e)?n.reject(new St(e.error.type,e.error.message)):n.resolve(e.data);case"privy:wallet:rpc":let i=_o.dequeue(e.event,e.id);return tr(e)?i.reject(new St(e.error.type,e.error.message)):i.resolve(e.data);case"privy:wallet:set-recovery-password":let a=_o.dequeue(e.event,e.id);return tr(e)?a.reject(new St(e.error.type,e.error.message)):a.resolve(e.data);default:console.warn("Unsupported wallet proxy method:",e)}}function Cp(e){let t=E1(null);return x1(()=>{let o=t.current;if(!o)return;function r(s){s&&s.origin===e.origin&&P1(s.data)&&A1(s.data)}let n={create(s){return or("privy:wallet:create",s,o)},connect(s){return or("privy:wallet:connect",s,o)},recover(s){return or("privy:wallet:recover",s,o)},rpc(s){return or("privy:wallet:rpc",s,o)},setRecoveryPassword(s){return or("privy:wallet:set-recovery-password",s,o)}};window.addEventListener("message",r);let i=()=>e.onLoad(n),a=(...s)=>{console.warn("Privy iframe failed to load: ",...s),e.onLoadFailed()},l=new AbortController;return bs(()=>or("privy:iframe:ready",{},o),{abortSignal:l.signal}).then(i,a),()=>{window.removeEventListener("message",r),l.abort()}},[t.current]),R1("iframe",{ref:t,width:"0",height:"0",style:{display:"none",height:"0px",width:"0px"},src:qr(e.origin,`/apps/${e.appId}/embedded-wallets`)})}import{createContext as k1,useContext as W1,useEffect as I1}from"react";var bp={login:{onComplete:[],onError:[]},logout:{onSuccess:[]},connectWallet:{onSuccess:[],onError:[]},createWallet:{onSuccess:[],onError:[]}},Ia=k1(void 0),N1=()=>W1(Ia);function no(e,t){if(!t)return;let r=N1().current[e];return I1(()=>{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 le(e,t,o,...r){for(let n of e.current[t][o])n(...r)}import{jsx as io,jsxs as xp}from"react/jsx-runtime";function O1(e){return typeof e=="string"&&e.length===25}var kr;function Pt(){if(!kr){let e=j.get(No);return Promise.resolve(e||null)}return kr.getAccessToken()}var Tp,_s=(e,t)=>Tp(e,t),Pp,Ss=(e,t)=>Pp(e,t),_p,As=()=>_p(),D1=()=>{let t=new URLSearchParams(window.location.search).get("privy_token");if(!t)return;j.put(ar,t);let o=new URL(window.location.href);o.searchParams.delete("privy_token"),window.history.pushState({},"",o)},U1=({config:e,...t})=>{if(!O1(t.appId))throw new v("Cannot initialize the Privy provider with an invalid Privy app ID");kr||(kr=new mr({appId:t.appId,apiUrl:t.apiUrl||Br}));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."),io(F1,{...t,config:o,client:kr})},F1=e=>{let t=e.client,[o,r]=Q(!1),[n,i]=Q(!1),[a,l]=Q(!1),[s,c]=Q(null),[P,y]=Q(!1),[x,m]=Q([]),C=Ep(x),[T,f]=Q(!1),[E,w]=Q(null),[M,k]=Q(!1),[W,N]=Q({status:"disconnected",connectError:null,connector:null,connectRetry:b}),[H,ce]=Q(null),[B,q]=Q(null),[G,X]=Q({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,appleOAuth:!1,termsAndConditionsUrl:null,privacyPolicyUrl:null,embeddedWalletConfig:{createOnLogin:"off",requireUserPasswordOnCreate:!1},fiatOnRampEnabled:!1,captchaEnabled:!1}),[O,de]=Q(()=>{let d=wp(e.config,e.createPrivyWalletOnLogin);return t.createAnalyticsEvent("sdk_initialize",d),Zn(G,e.config)}),[z,ee]=Q(!0),[Oe,D]=Q({}),[Et,Ce]=Q(null),[rr,ao]=Q(null),[Wr,ti]=Q(!1),[nr,Lt]=Q(),[ot,ne]=Q(),[De,so]=Q(),[So,La]=Q(!1),ie=Ep(bp),Pe=d=>{d&&w(d),r(!0),t.createAnalyticsEvent("modal_open",{initialScreen:d})},Ir=d=>{O.embeddedWallets.createOnLogin!=="off"&&ee(!0),Pe(d)};bt(()=>{if(!B||!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(B,p)}},[B,s]),bt(()=>{B&&rr?.(B)},[B]),bt(()=>{(async()=>{if(!O.customAuth?.enabled)return;ee(!0);let{getCustomAccessToken:p,isLoading:u}=O.customAuth;if(!(!n||u))try{let h=await p();if(!h){await Ao.logout();return}if(a)return;t.startAuthFlow(new Wo(h));let{user:I,isNewUser:he}=await t.authenticate();I||await Ao.logout(),c(I||null),f(he||!1),l(!0),La(!0)}catch(h){console.warn(h),a&&await Ao.logout()}})()},[O.customAuth?.enabled,O.customAuth?.getCustomAccessToken,O.customAuth?.isLoading,n,a]),bt(()=>{So&&B&&s&&Ut(s,e.config?.embeddedWallets?.createOnLogin)&&(La(!1),Ua(s,3e4).catch(console.error))},[So&&B&&s]),bt(()=>{async function d(){let p=await t.getServerConfig();X(p);let u=Zn(p,e.config);de(u),p.customApiUrl&&t.updateApiUrl(p.customApiUrl),t.initializeConnectorManager(u.walletConnectCloudProjectId,u.rpcConfig,u.chains),t.connectors?.initialize();let h=Sp();D1();let I=await t.getAuthenticatedUser();e.config?.customAuth?.enabled||(l(!!I),I&&le(ie,"login","onComplete",I,!1,!0),c(I)),h||(i(!0),Et?.()),h&&I&&y(!0),Ap()}n||d()},[t,Et,n]),bt(()=>{let d=Zn(G,e.config);de(d)},[e.config]);let Sp=()=>{let d=new URLSearchParams(window.location.search),p=d.get("privy_oauth_code"),u=d.get("privy_oauth_state"),h=d.get("privy_oauth_provider");return p&&u&&h?(t.startAuthFlow(new Ot(h,p,u)),Ir("AWAITING_OAUTH_SCREEN"),D({finishOauthFlow:{onComplete:()=>{i(!0),Et?.()}}}),!0):!1},oi=async(d,p,u)=>{let h=await t.connectors?.createWalletConnector(d,p)||null;Ma(h,u)};async function Ma(d,p){if(!d)return N({status:"disconnected",connectError:new U("Unable to connect to wallet."),connector:null,connectRetry:b}),p?.(null);N({connector:d,status:"connecting",connectError:null,connectRetry:()=>Ma(d,p)});try{let u=await d.connect({showPrompt:!0});return N(h=>({...h,status:"connected",connectError:null,connectRetry:b})),u&&!M&&le(ie,"connectWallet","onSuccess",u),p?.(u)}catch(u){return u instanceof Ye?(console.warn(u.cause?u.cause:u.message),M||le(ie,"connectWallet","onError",u.privyErrorCode||"generic_connect_wallet_error")):(console.warn(u),M||le(ie,"connectWallet","onError","unknown_connect_wallet_error")),N(h=>({...h,status:"disconnected",connectError:u})),p?.(null)}}let ri=d=>{d!==null&&t.startAuthFlow(new co(d))},Ap=()=>{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"&&!He()&&Ir("LOGIN_FAILED_SCREEN"),!t.connectors)throw new v("Connector not initialized");Pe("AWAITING_CONNECTION");let h=new URL(window.location.href);h.searchParams.delete("privy_connector"),h.searchParams.delete("privy_wallet_client"),window.history.pushState({},"",h),oi(p,u,ri)};bt(()=>{n&&a&&s===null&&t.getAuthenticatedUser().then(c)},[n,a,s,t]);let Oa=()=>{y(!0),Pe("LINK_WALLET_SCREEN")},Rp=d=>{if(!a||!s)return!1;for(let p of s.linkedAccounts)if(p.type==="wallet"&&p.address===d.address)return!0;return!1},kp=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:b})),ri(d),Ir("AWAITING_CONNECTION")},Wp=async(d,p)=>{if(!t.connectors)throw new v("Connector not initialized");await oi(d,p,ri)},Da=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:h}=await sc(t,d,p?.config??{},O.appearance.palette,O.fiatOnRamp.useSandbox);return{signedUrl:u,externalTransactionId:h}}else throw new v("Unsupported fund provider. Currently supported option is `moonpay`.")},Nr=()=>{m(d=>{let p=t.connectors?.wallets.map(u=>({...u,linked:Rp(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");kp(u)},fund:async h=>{let{signedUrl:I,externalTransactionId:he}=await Da(u.address,h);D({fiatOnRampPrompt:{signedUrl:I},fiatOnRampStatus:{externalTransactionId:he}}),Pe("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 h=await t.unlinkWallet(u.address);c(h)}}))||[];return Yr(d,p)?d:p})};bt(()=>{Nr()},[s?.linkedAccounts,a,n]),bt(()=>{if(n){if(!t.connectors)throw new v("Connector not initialized");Nr(),t.connectors.on("walletsUpdated",Nr)}},[n]);let Ip=()=>{Pe(a?"CONNECT_ONLY_AUTHENTICATED_SCREEN":"CONNECT_ONLY_LANDING_SCREEN")};bt(()=>{if(!x[0])return;let d=x[0],p=C.current.find(h=>h.address===d.address),u=s?.linkedAccounts.find(h=>h.type==="wallet"&&h.address===d.address);if(!p&&u){let h=Object.assign({},s);h.wallet=u&&{address:u.address,chainType:u.chainType,chainId:u.chainId,walletClient:u.walletClient,walletClientType:u.walletClientType,connectorType:u.connectorType},c(h)}C.current=x},[x]);let Ua=async(d,p)=>{if(Y(d))throw le(ie,"createWallet","onError","embedded_wallet_already_exists"),new Error("Only one Privy wallet per user is currently allowed");let[h,I]=await Promise.all([je.initializeWalletProxy(p),Pt()]);if(!h&&e.config?.customAuth?.enabled)throw le(ie,"createWallet","onError","unknown_embedded_wallet_error"),new Error("Failed to connect to wallet proxy");if(!h||!I||e.config?.embeddedWallets?.requireUserPasswordOnCreate)return new Promise((he,Ue)=>{ee(!0),D({createWallet:{onSuccess:nt=>{le(ie,"createWallet","onSuccess",nt),he(nt)},onFailure:nt=>{le(ie,"createWallet","onError","unknown_embedded_wallet_error"),Ue(nt)},callAuthOnSuccessOnClose:!1}}),Pe("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")});{await h.create({accessToken:I});let he=await je.refreshUser(),Ue=Y(he);if(!Ue)throw le(ie,"createWallet","onError","unknown_embedded_wallet_error"),new Error("Failed to create wallet");return le(ie,"createWallet","onSuccess",Ue),Ue}},Ao={ready:n,authenticated:a,user:s,walletConnectors:t.connectors||null,connectWallet:Ip,linkWallet:Oa,linkEmail:()=>{if(s?.email)throw new v("User already has an email linked to their account.");y(!0),Pe("LINK_EMAIL_SCREEN")},linkPhone:()=>{if(s?.phone)throw new v("User already has a phone number linked to their account.");y(!0),Pe("LINK_PHONE_SCREEN")},linkGoogle:async()=>{if(s?.google)throw new v("User already has a Google account linked to their account.");await je.initLoginWithOAuth("google")},linkTwitter:async()=>{if(s?.twitter)throw new v("User already has a Twitter account linked to their account.");await je.initLoginWithOAuth("twitter")},linkDiscord:async()=>{if(s?.discord)throw new v("User already has a Discord account linked to their account.");await je.initLoginWithOAuth("discord")},linkGithub:async()=>{if(s?.github)throw new v("User already has a Github account linked to their account.");await je.initLoginWithOAuth("github")},linkApple:async()=>{await je.initLoginWithOAuth("apple")},login:async()=>{if(n||(await new Promise(d=>{Ce(()=>d)}),Ce(null)),a){console.warn("Attempted to log in, but user is already logged in. Use a `link` helper instead.");return}k(!0),Ir()},logout:async()=>{await t.logout(),c(null),l(!1),w(null),le(ie,"logout","onSuccess"),y(!1),r(!1)},getAccessToken:()=>t.getAccessToken(),getEthereumProvider:()=>{if(!s||!s.wallet)return new Z;let d=x.find(u=>s.wallet&&u.address===s.wallet.address),p=t.connectors?.walletConnectors.find(u=>u.wallets.find(h=>h.address===d?.address));return!d||!p?new Z:p.proxyProvider},getEthersProvider:()=>{if(!s||!s.wallet)return new Na(new dt(new Z));let d=x.find(u=>s.wallet&&u.address===s.wallet.address),p=t.connectors?.walletConnectors.find(u=>u.wallets.find(h=>h.address===d?.address));return!d||!p?new Na(new dt(new Z)):new Na(new dt(p.proxyProvider))},getWeb3jsProvider:()=>{if(!s||!s.wallet)return new Ht(new Z);let d=x.find(u=>s.wallet&&u.address===s.wallet.address),p=t.connectors?.walletConnectors.find(u=>u.wallets.find(h=>h.address===d?.address));return!d||!p?new Ht(new Z):new Ht(p.proxyProvider)},unlinkWallet:async d=>{let p=await t.unlinkWallet(d);return c(p),p},unlinkEmail:async d=>{let p=await t.unlinkEmail(d);return c(p),p},unlinkPhone:async d=>{let p=await t.unlinkPhone(d);return c(p),p},unlinkGoogle:async d=>{let p=await t.unlinkOAuth("google",d);return c(p),p},unlinkTwitter:async d=>{let p=await t.unlinkOAuth("twitter",d);return c(p),p},unlinkDiscord:async d=>{let p=await t.unlinkOAuth("discord",d);return c(p),p},unlinkGithub:async d=>{let p=await t.unlinkOAuth("github",d);return c(p),p},unlinkApple:async d=>{let p=await t.unlinkOAuth("apple",d);return c(p),p},setActiveWallet:async d=>{let p=x.find(h=>ei(h.address)===ei(d)),u=s?.linkedAccounts.find(h=>h.type==="wallet"&&ei(h.address)===ei(d));if(!p||!await p.isConnected())ce(d),Oa();else if(!p.linked)p.loginOrLink();else{let h=Object.assign({},s);h.wallet=u&&{address:u.address,chainType:u.chainType,chainId:u.chainId,walletClient:u.walletClient,walletClientType:u.walletClientType,connectorType:u.connectorType},c(h)}},forkSession:()=>t.forkSession(),createWallet:async()=>{if(!a||!s)throw le(ie,"createWallet","onError","must_be_authenticated"),new Error("User must be authenticated before creating a Privy wallet");return Ua(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=Y(s);if(!u||!B){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}ee(!0);let h={onSuccess:d,onFailure:p,callAuthOnSuccessOnClose:!1},I={onCompleteNavigateTo:"EMBEDDED_WALLET_PASSWORD_UPDATE_SPLASH_SCREEN",onFailure:p};D({setWalletPassword:h,connectWallet:I}),Pe("EMBEDDED_WALLET_CONNECTING_SCREEN")}),signMessage:(d,p)=>new Promise((u,h)=>{if(!a||!s){h(new Error("User must be authenticated before signing with a Privy wallet"));return}let I=Y(s);if(!I){h(new Error("Must have a Privy wallet before signing"));return}if(typeof d!="string"||d.length<1){h(new Error("Message must be a non-empty string"));return}ee(!0);let he=async()=>{a||h(new Error("User must be authenticated before signing with a Privy wallet"));let Ue=await Pt();if(B&&Ue)try{if(!await je.recoverEmbeddedWallet()){h(new Error("Unable to connect to wallet"));return}t.createAnalyticsEvent("embedded_wallet_sign_message_started",{walletAddress:I.address});let{response:nt}=await B.rpc({accessToken:Ue,address:I.address,request:{method:"personal_sign",params:[d,I.address]}}),Mt=nt.data;u(Mt),t.createAnalyticsEvent("embedded_wallet_sign_message_completed",{walletAddress:I.address})}catch(rt){h(rt)}};if(O.embeddedWallets.noPromptOnSignature)p&&console.warn("uiOptions defined with `noPromptOnSignature` set to true in app config"),he();else{let rt={message:d,confirmAndSignMessage:he,onFailure:Mt=>{h(Mt)},uiOptions:p||{}},nt={onCompleteNavigateTo:"EMBEDDED_WALLET_SIGN_REQUEST_SCREEN",onFailure:h};D({signMessage:rt,connectWallet:nt}),Pe("EMBEDDED_WALLET_CONNECTING_SCREEN")}}),sendTransaction:(d,p,u)=>new Promise(async(h,I)=>{if(!a||!s){I(new Error("User must be authenticated before signing with a Privy wallet"));return}let he=Y(s);if(!he){I(new Error("Must have a Privy wallet before signing"));return}ee(!0);let Ue=t.connectors?.findWalletConnector("embedded","privy")?.proxyProvider,rt=Object.assign({},d,{chainId:d.chainId||Ue.chainId}),nt=async()=>{let Mt=await Pt();if(!Mt||!B){I(new Error("Must have valid access token and Privy wallet to send transaction"));return}try{if(!await je.recoverEmbeddedWallet()){I(new Error("Unable to connect to wallet"));return}let Fa=new L1(Qe(rt.chainId,O.chains,O.rpcConfig)),Lp=await qn(he.address,rt,Fa),Mp=await Kn(Mt,he.address,B,Lp,Fa);h(Mp)}catch(Lr){I(Lr)}};if(O.embeddedWallets.noPromptOnSignature)p&&console.warn("uiOptions defined with `noPromptOnSignature` set to true in app config"),nt();else{let Mt={transactionRequest:rt,onSuccess:h,onFailure:I,uiOptions:p||{},fundWalletConfig:u},Lr={onCompleteNavigateTo:"EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN",onFailure:I};D({connectWallet:Lr,sendTransaction:Mt}),Pe("EMBEDDED_WALLET_CONNECTING_SCREEN")}}),exportWallet:()=>new Promise((d,p)=>{if(!a||!s){p(new Error("User must be authenticated before exporting their Privy wallet"));return}if(!Y(s)){p(new Error("Must have a Privy wallet before exporting"));return}ee(!0);let h={onCompleteNavigateTo:"EMBEDDED_WALLET_KEY_EXPORT_SCREEN",onFailure:p},I={appId:e.appId,origin:t.apiUrl,onSuccess:d,onFailure:p};D({keyExport:I,connectWallet:h}),Pe("EMBEDDED_WALLET_CONNECTING_SCREEN")})};Tp=Ao.signMessage,Pp=Ao.sendTransaction;let je=(()=>({isNewUserThisSession:T,isLinking:P,linkingHint:H,walletConnectionStatus:W,rpcConfig:O.rpcConfig,chains:O.chains,nativeTokenSymbolForChainId:d=>O.chains.find(p=>p.id===Number(d))?.nativeCurrency.symbol,captchaData:{ready:Wr,enabled:O.captchaEnabled,execute:()=>{let d=window.turnstile;if(!d)return;let p=d.render("#cf-turnstile",{sitekey:ds,action:O.id,callback:Lt,"error-callback":ne,"expired-callback":()=>{try{d.reset(De),ne(void 0),Lt(void 0)}catch{ne("expired_and_failed_reset")}},"unsupported-callback":()=>{console.warn("Browser does not support Turnstile.")}});p||console.warn("Failed to render challenge."),so(p)},remove:()=>{let d=window.turnstile;!d?.remove||!De||(d.remove(De),so(void 0),ne(void 0),Lt(void 0))},token:nr,error:ot},initializeWalletProxy:async d=>{if(B)return B;let p=new Promise(I=>{ao(()=>he=>I(he))}),u=new Promise(I=>setTimeout(()=>I(null),d)),h=await Promise.race([p,u]);return ao(null),h},getAuthFlow:()=>t.authFlow,getAuthMeta:()=>t.authFlow?.meta,closePrivyModal:(d={shouldCallAuthOnSuccess:!0})=>{let p=n&&a&&s;d.shouldCallAuthOnSuccess&&p?(le(ie,"login","onComplete",s,T,!1),e.onSuccess?.(s,T)):M&&le(ie,"login","onError","exited_auth_flow"),t.authFlow=void 0,ce(null),w(null),k(!1),y(!1),f(!1),r(!1),t.createAnalyticsEvent("modal_closed")},connectWallet:oi,initLoginWithWallet:Wp,loginWithWallet:async()=>{if(!n)throw new ir;if(!(t.authFlow instanceof co))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 le(ie,"login","onError",u.privyErrorCode||"generic_connect_wallet_error"),u}c(d||s||null),f(p||!1),l(!0)},initLoginWithOAuth:async d=>{t.startAuthFlow(new Ot(d));let p=await t.authFlow.getAuthorizationUrl();p&&p.url&&window.location.assign(p.url)},loginWithOAuth:async()=>{if(!(t.authFlow instanceof Ot))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 le(ie,"login","onError",u.privyErrorCode||"unknown_auth_error"),u}c(d),f(p||!1),l(!0)},initLoginWithEmail:async(d,p)=>{let u=new lo(d,p);t.startAuthFlow(u);try{await u.sendCodeEmail()}catch(h){throw le(ie,"login","onError",h.privyErrorCode||"unknown_auth_error"),h}},initLoginWithSms:async(d,p)=>{let u=new po(d,p);t.startAuthFlow(u);try{await u.sendSmsCode()}catch(h){throw le(ie,"login","onError",h.privyErrorCode||"unknown_auth_error"),h}},resendEmailCode:async()=>{await t.authFlow?.sendCodeEmail()},resendSmsCode:async()=>{await t.authFlow?.sendSmsCode()},loginWithCode:async d=>{if(!n)throw new ir;if(t.authFlow instanceof lo)t.authFlow.meta.emailCode=d.trim();else if(t.authFlow instanceof po)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(),c(p||s||null),f(u||!1),l(!0)},refreshUser:async()=>{let d=await t.getAuthenticatedUser();return c(d),d},walletProxy:B,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(I=>I.type==="wallet"&&I.walletClientType==="privy"),h=await Pt();if(!h||!B||!u){p(new Error("Must have valid access token and Privy wallet to recover wallet"));return}ee(!0);try{await B.connect({accessToken:h,address:u.address}),d(!0)}catch(I){Go(I)&&u.recoveryMethod==="privy"?(t.createAnalyticsEvent("embedded_wallet_pinless_recovery_started",{walletAddress:u.address}),(await B.recover({address:u.address,accessToken:h})).address||p(new Error("Unable to recover wallet")),t.createAnalyticsEvent("embedded_wallet_recovery_completed",{walletAddress:u.address}),d(!0)):Go(I)?(D({recoverWallet:{privyWallet:u,onFailure:p,onSuccess:()=>d(!0)}}),Pe("EMBEDDED_WALLET_RECOVERY_SCREEN")):p(I)}}),getFiatOnRampConfig:Da,updateWallets:()=>Nr()}))();_p=je.recoverEmbeddedWallet;let Np=M1(()=>({wallets:x}),[x]);return io(Xe.Provider,{value:Ao,children:io(Ia.Provider,{value:ie,children:xp(Pa.Provider,{value:Np,children:[e.children,xp(Ci.Provider,{value:je,children:[io(Kd,{theme:{...O.appearance.palette||{}}}),io(Ms,{appConfig:O,data:Oe,setModalData:D,setInitialScreen:w,initialScreen:E,visible:o,authenticated:a,children:o?io(Qd,{}):null}),z&&G.id?io(Cp,{appId:e.appId,origin:t.apiUrl,onLoad:q,onLoadFailed:()=>null}):null]}),O.captchaEnabled&&io(Zd,{onLoad:()=>ti(!0)})]})})})};import{useContext as B1}from"react";function H1(e){let{login:t}=B1(Xe);return no("login",e),{login:t}}import{useContext as G1}from"react";function z1(e){let{logout:t}=G1(Xe);return no("logout",e),{logout:t}}import{useContext as $1}from"react";function V1(e){let{connectWallet:t}=$1(Xe);return no("connectWallet",e),{connectWallet:t}}import{useContext as q1}from"react";function K1(e){let{createWallet:t}=q1(Xe);return no("createWallet",e),{createWallet:t}}export{dt as AsExternalProvider,pr as ConnectorManager,mr as PrivyClient,U1 as PrivyProvider,Z as PrivyProxyProvider,Rr as SUPPORTED_CHAINS,ni as VERSION,Ne as WalletConnector,Pt as getAccessToken,V1 as useConnectWallet,K1 as useCreateWallet,H1 as useLogin,z1 as useLogout,$ as usePrivy,_a as useWallets};