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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/esm/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import{getAddress as Zn}from"@ethersproject/address";import{StaticJsonRpcProvider as N1,Web3Provider as Ia}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",Fa=()=>"/api/v1/sessions/logout",Ba=()=>"/api/v1/sessions/fork",Fr=()=>"/api/v1/sessions/fork/recover",Ha=()=>"/api/v1/siwe/init",Ga=()=>"/api/v1/siwe/authenticate",za=()=>"/api/v1/siwe/link",$a=()=>"/api/v1/passwordless/init",Va=()=>"/api/v1/passwordless/authenticate",qa=()=>"/api/v1/passwordless/link",Ka=()=>"/api/v1/passwordless_sms/init",ja=()=>"/api/v1/passwordless_sms/authenticate",Ya=()=>"/api/v1/passwordless_sms/link",Ja=()=>"/api/v1/oauth/init",Qa=()=>"/api/v1/oauth/authenticate",Za=()=>"/api/v1/oauth/link",Xa=()=>"/api/v1/siwe/unlink",es=()=>"/api/v1/passwordless/unlink",ts=()=>"/api/v1/passwordless_sms/unlink",os=()=>"/api/v1/oauth/unlink",rs=()=>"/api/v1/analytics_events",ns=()=>"/api/v1/plugins/moonpay_on_ramp/sign",is=()=>"/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=is(),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=Va(),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=qa();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=$a();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=Qa(),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=Za();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=Ja();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 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:
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(Ga(),{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(za(),{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(Ha(),{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=ja(),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=Ya();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=Ka();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 zs}from"@ethersproject/address";import vu from"eventemitter3";var as="1.40.0";var Br="4df5e2316331463a9130964bd6078dfa",ss="fe9c30fc-3bc5-4064-91e2-6ab5887f8f4d",ls="34357d3c125c2bcf2ce2bc3309d98715",cs="0x4AAAAAAAJFhr_rDU7HKpyw",Hr="https://auth.privy.io",ds=2e4,Je=1400,ps=2500,oi=as;var No="privy:token",ri="privy-token",Gr="privy:refresh_token",ni="privy-refresh-token",us="privy-session",sr="privy:session_transfer_token",Fp="privy:wallet",ii=e=>`${Fp}:${e}`,ai="privy:connectors",si="privy:connections";var at=1,zr="0x1",ms="https://api.moonpay.com/v1",hs="https://api.moonpay.com/v1",fs="pk_live_hirbpu0cVcLHrjktC9l7fbc9ctjv0SL",ys="pk_test_fqWjXZMSFwloh7orvJsRfjiUHXJqFzI";var li=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)}},ci=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 ci:new li}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 gs=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,}))$/),vs=e=>Hp(String(e),"US"),ws=(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}`},di=e=>new Promise(t=>setTimeout(t,e)),Cs=(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 di(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 pi=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 bs(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]+"/"+ss: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 Es,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:[Es("rect",{width:"1024",height:"1024",fill:"#0052FF",rx:100,ry:100}),Es("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 As}from"@ethersproject/providers";import{default as Jp}from"eventemitter3";import{StaticJsonRpcProvider as Ts}from"@ethersproject/providers";import jp from"eventemitter3";var zp=["eth_sign","eth_populateTransactionRequest","eth_signTransaction","personal_sign","eth_signTypedData_v4"],xs=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,ui=(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),ui()]).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 Ts(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 _s(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 Ts(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 Ps(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(xs(o.method)){let r=await Pt();if(await Ss(),!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(ii(r.address),o)}),this.emit("walletsUpdated")};this.onDisconnect=()=>{this.connected=!1,this.wallets=[],this.emit("walletsUpdated")};this.onConnect=()=>{this.connected=!0,this.syncAccounts()};this.wallets=[],this.walletClientType=o,this.chains=r,this.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 As(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(ii(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 As(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 Rs}from"react/jsx-runtime";var Oo=({...e})=>Rs("svg",{width:"15",height:"15",viewBox:"0 0 15 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e,children:Rs("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 Ce=({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:Ce}}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 ks,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:[ks("rect",{width:"108",height:"108",rx:"23",fill:"#AB9FF2"}),ks("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 fi from"@walletconnect/qrcode-modal";import{isAndroid as yu,isMobile as gu}from"react-device-detect";import{createContext as nu,useContext as iu,useEffect as mi,useRef as au,useState as Is}from"react";import{jsx as ru}from"react/jsx-runtime";function Ws(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",Ns=nu({ready:!1,app:null,currentScreen:Ze,lastScreen:Ze,navigate:b,navigateBack:b,resetNavigation:b,setModalData:b,outerClickRef:null}),Ls=e=>{let t=e.appConfig,o=e.authenticated,r=e.visible,[n,i]=Is(e.initialScreen||Ze),[a,l]=Is(e.initialScreen||Ze);mi(()=>{o||i(Ze)},[o]),mi(()=>{r||(l(Ze),i(Ze))},[r]),mi(()=>{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(Ns.Provider,{value:T,children:[(typeof t?.appearance?.logo=="string"||t?.appearance?.logo?.type==="img")&&su(Ws,{src:typeof t.appearance.logo=="string"?t.appearance.logo:t.appearance.logo.props.src}),e.children]})},y=()=>iu(Ns);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 Os,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(Ds))if(r.hostname===t)return{walletClientType:o,entry:r}};var Ds={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"}}},Us=(e,t="md")=>`https://registry.walletconnect.com/v2/logo/${t}/${e}`;function hi(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=>hi(o))}function Fs(){return uu(Ds)}function Bs(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 Hs(e,t){return Os?e:Bs(e,hi(t))}var Gs="WALLETCONNECT_DEEPLINK_CHOICE";function Ms(e){let t=e.href.split("?")[0];j.put(Gs,{...e,href:t})}var dr=(e,t)=>{if(!e||du){j.del(Gs);return}if(Os){Ms({name:"Unknown",href:t||"wc:"});return}else if(pu){let o=Bs(t||"wc:",hi(e));Ms({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"?Ce:Us(this.walletEntry.image_id)}:{name:pi(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(),ui()]);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(()=>fi.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=Hs(n,this.walletEntry);window.open(a,"_self","noopener,noreferrer")}else fi.open(n,()=>{this.onQrModalClosed&&this.onQrModalClosed()},{mobileLinks:Fs().map(i=>i.name)})}),r.on("connect",()=>{if(fi.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 yi=e=>{let t=localStorage.getItem("-walletlink:https://www.walletlink.org:Addresses");return t?!!e?.linkedAccounts.filter(r=>r.type=="wallet"&&r.address===zs(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(ai)&&(j.getKeys().forEach(o=>{o.startsWith("walletconnect")&&j.del(o)}),j.del(ai)),bs().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(si);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(si,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=zs(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=oi,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 $s(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 Vs from"jose";var ut=class{static parse(t){try{return new ut(t)}catch{return null}}constructor(t){this.value=t,this._decoded=Vs.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(us);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=$s(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(Fa(),{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(Ba(),{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(ri,t,{sameSite:"Strict",secure:!0,expires:o?new Date(o*1e3):void 0})}}else j.del(No),mr.remove(ri)}storeRefreshToken(t){typeof t=="string"?(j.put(Gr,t),this.client?.useServerCookies||mr.set(ni,t,{sameSite:"Strict",secure:!0,expires:30})):(j.del(Gr),mr.remove(ni))}clearForkedToken(){j.del(sr)}};var gi,hr=class{constructor(t){this.apiUrl=t.apiUrl||Hr,this.fallbackApiUrl=this.apiUrl,this.useServerCookies=!1,this.timeout=t.timeout||ds,this.appId=t.appId,this.clientAnalyticsId=typeof window>"u"?null:xu(),gi||(gi=new nn),this.session=gi,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(es(),{address:t});return xt(o)}catch(o){throw We(o)}}async unlinkPhone(t){try{let o=await this.api.post(ts(),{phoneNumber:t});return xt(o)}catch(o){throw We(o)}}async unlinkWallet(t){try{let o=await this.api.post(Xa(),{address:t});return xt(o)}catch(o){throw We(o)}}async unlinkOAuth(t,o){try{let r=await this.api.post(os(),{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(rs(),{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(ns(),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 Ra from"styled-components";import{createContext as Tu,useContext as Pu}from"react";var vi=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(vi);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 _i from"styled-components";import zt,{css as Ei}from"styled-components";import Ci from"styled-components";import{Fragment as Ru,jsx as wi,jsxs as ku}from"react/jsx-runtime";var an=({success:e,fail:t})=>ku(Ru,{children:[wi(uo,{className:e?"success":t?"fail":""}),wi(bi,{className:e?"success":t?"fail":""})]}),uo=Ci.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 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`
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
- `,bi=Ci(uo)`
45
+ `,Ei=bi(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=>wi(Au,{color:e.color||"var(--privy-color-foreground-3)"}),Au=Ci(uo)`
51
+ `,Gt=e=>Ci(Au,{color:e.color||"var(--privy-color-foreground-3)"}),Au=bi(uo)`
52
52
  && {
53
53
  height: 0.9rem;
54
54
  width: 0.9rem;
@@ -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(qs,{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&&Ei`
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`
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(qs,{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
+ `,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`
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
- `,qs=zt(ln)`
95
+ `,Ks=zt(ln)`
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?Ei`
121
+ ${e=>e.disabled?xi`
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
- `,Ks=({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(Iu,{disabled:t||o,...n,children:t?sn("span",{children:[mt(Gt,{}),r?mt("span",{children:r}):null]}):e}),Iu=zt(ln)`
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&&Ei`
182
+ ${e=>e.invisible&&xi`
183
183
  pointer-events: none;
184
184
  `}
185
185
 
@@ -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 js=Nu.span`
241
+ `;import Nu from"styled-components";var Ys=Nu.span`
242
242
  && {
243
243
  width: 82px;
244
244
  height: 82px;
@@ -262,21 +262,21 @@ Resources:
262
262
  margin-top: auto;
263
263
  gap: 16px;
264
264
  flex-grow: 100;
265
- `,xi=ze.div`
265
+ `,Ti=ze.div`
266
266
  display: flex;
267
267
  flex-direction: column;
268
268
  align-items: center;
269
269
  justify-content: center;
270
270
  flex-grow: 1;
271
271
  width: 100%;
272
- `,Ys=ze.div`
272
+ `,Js=ze.div`
273
273
  display: flex;
274
274
  flex-direction: column;
275
275
  align-items: center;
276
276
  width: 100%;
277
- `,$t=ze(xi)`
277
+ `,$t=ze(Ti)`
278
278
  gap: 16px;
279
- `,Ti=ze.div`
279
+ `,Pi=ze.div`
280
280
  display: flex;
281
281
  flex-direction: column;
282
282
  width: 100%;
@@ -290,7 +290,7 @@ Resources:
290
290
  flex-direction: column;
291
291
  justify-content: space-between;
292
292
  height: 100%;
293
- `,Js=ze.div`
293
+ `,Qs=ze.div`
294
294
  display: flex;
295
295
  flex-direction: column;
296
296
  justify-content: flex-start;
@@ -317,9 +317,9 @@ Resources:
317
317
  height: 16px;
318
318
  `,N=ze.div`
319
319
  height: 12px;
320
- `,Qs=ze.div`
321
- position: relative;
322
320
  `,Zs=ze.div`
321
+ position: relative;
322
+ `,Xs=ze.div`
323
323
  background-color: var(--privy-color-accent);
324
324
  display: flex;
325
325
  justify-content: center;
@@ -327,7 +327,7 @@ Resources:
327
327
  border-radius: 50%;
328
328
  border-color: white;
329
329
  border-width: 2px !important;
330
- `;import Xs from"styled-components";import{Fragment as Mu,jsx as Fo,jsxs as el}from"react/jsx-runtime";var Lu=Xs.div`
330
+ `;import el from"styled-components";import{Fragment as Mu,jsx as Fo,jsxs as tl}from"react/jsx-runtime";var Lu=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:el(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?el(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=Xs.div`
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`
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 ol from"styled-components";import{jsx as et,jsxs as Gu}from"react/jsx-runtime";var tl=()=>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(tl,{}),o&&et(Hu,{children:o}),i?.render.inDialog&&r?et(Fu,{onClose:t||(()=>n())}):et(tl,{})]})},Bu=ol.div`
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`
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=ol.div`
425
+ `,Hu=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 rl}from"react/jsx-runtime";var nl=({style:e,...t})=>rl("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:rl("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 Pi,jsx as $e,jsxs as mn}from"react/jsx-runtime";var il=()=>{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(Pi,{children:[$e(S,{}),$e(R,{}),mn(zu,{children:[$e(Vu,{children:mn("div",{children:[$e(js,{}),$e(nl,{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(Pi,{children:o}),typeof r=="string"?$e("p",{children:r}):$e(Pi,{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=_i.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 _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`
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=_i.div`
440
+ `,$u=Si.div`
441
441
  display: flex;
442
442
  flex-direction: column;
443
443
  gap: 8px;
444
- `,Vu=_i.div`
444
+ `,Vu=Si.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 ll,useState as hn}from"react";import{isMobile as Ju}from"react-device-detect";import yr from"styled-components";import Si from"styled-components";import{Fragment as Ku,jsx as fr,jsxs as sl}from"react/jsx-runtime";var ht=({title:e,description:t,children:o,...r})=>fr(al,{...r,children:sl(Ku,{children:[fr("h3",{children:e}),typeof t=="string"?fr("p",{children:t}):t,o]})}),qt=Si(ht)`
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)`
468
468
  margin-bottom: 24px;
469
- `,be=({title:e,description:t,icon:o,children:r,...n})=>sl(qu,{...n,children:[o||null,fr("h3",{children:e}),typeof t=="string"?fr("p",{children:t}):t,r]}),al=Si.div`
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`
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=Si(al)`
489
+ `,qu=Ai(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 Ai,jsx as ue,jsxs as Kt}from"react/jsx-runtime";var Ri=6,cl=new Array(Ri).fill(""),Qu=1400;var pl=()=>{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(cl),[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;ll(()=>{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]),ll(()=>{if(x&&_===0){let V=setTimeout(()=>{E(cl),f(null),document.querySelector("input[name=code-0]")?.focus()},Qu);return()=>clearTimeout(V)}},[x]);let I=V=>{let G=V.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(V.currentTarget.name?.charAt(5)),O=[...G||[""]].slice(0,Ri-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),Ri-1);isNaN(Number(V.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)})),V.preventDefault()},H=V=>{_===1&&(f(null),w(null));let G=[...g.slice(0,V),"",...g.slice(V+1)];E(G),V>0&&document.querySelector(`input[name=code-${V-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(dl,{children:a()?.email})," for an email from privy.io and enter your code below."]}):Kt("p",{children:["Please check ",ue(dl,{children:a()?.phoneNumber})," for a message from ",e?.name||"Privy"," and enter your code below."]});return Kt(Ai,{children:[ue(S,{},"header"),ue(R,{}),Kt(Zu,{children:[ue(be,{title:"Enter confirmation code",description:B,icon:ce}),Kt(Ys,{children:[Kt(Xu,{children:[ue(em,{fail:!!x,success:m,children:ue("span",{children:x||(m?"Success!":"")})}),ue("div",{children:g.map((V,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(Ai,{children:[ue("span",{children:"Didn't get an email?"}),ue("button",{onClick:n,children:"Resend Code"})]}):Kt(Ai,{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 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`
498
498
  display: flex;
499
499
  flex-direction: column;
500
500
  align-items: flex-start;
@@ -580,20 +580,20 @@ Resources:
580
580
  > button {
581
581
  text-decoration: underline;
582
582
  }
583
- `,dl=yr.span`
583
+ `,pl=yr.span`
584
584
  font-weight: 500;
585
585
  word-break: break-all;
586
- `;import{isMobile as ki}from"react-device-detect";import ml from"styled-components";import om from"styled-components";var ul=om.span`
586
+ `;import{isMobile as Wi}from"react-device-detect";import hl from"styled-components";import om from"styled-components";var ml=om.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")):ki?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(Ce,{}),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(ul,{children:" Wallet"})]}),Ve("span",{children:"Connect"})]}),(ki||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(ki?"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=ml.div`
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`
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=ml.button`
596
+ `,fn=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 hl,jsxs as am}from"react/jsx-runtime";var Yt=()=>{let{navigate:e}=y();return am(im,{children:[hl("span",{children:"Don\u2019t have a wallet? "}),hl("button",{onClick:()=>{e("WALLET_EDUCATION")},children:"Create one now."})]})},im=nm.div`
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`
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 fl}from"react/jsx-runtime";var yl=()=>{let{app:e}=y(),t=`Connect a wallet to ${e?.name}`;return fl(sm,{children:[mo(S,{},"header"),mo(R,{}),mo(qt,{title:"Connect your wallet",description:t}),fl(pe,{children:[mo(jt,{connectOnly:!0}),mo(Yt,{})]}),mo(N,{}),mo(F,{protectedByPrivy:!0})]})};import Wi from"styled-components";import lm from"react";import{jsx as gl}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"?gl("div",{children:gl("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 vl}from"react/jsx-runtime";var wl=()=>{let{app:e}=y();return vl(um,{children:[_t(S,{},"header"),e?.appearance.logo?_t(pm,{children:_t(yn,{})}):null,vl(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=Wi.div`
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`
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=Wi.div`
666
+ `,dm=Ii.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=Wi.div`
687
+ `,pm=Ii.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 xl,useState as Tl}from"react";import fm from"styled-components";import{useEffect as Ii,useState as gr}from"react";import{isMobile as Ni}from"react-device-detect";import Cl from"styled-components";import{Fragment as El,jsx as ye,jsxs as vn}from"react/jsx-runtime";var gn=2,vr={metamask:{name:"MetaMask",component:Ce},phantom:{name:"Phantom",component:Ge},coinbase_wallet:{name:"Coinbase Wallet",component:st},wallet_connect:{name:"WalletConnect",component:Uo},embedded:{name:"Privy Wallet",component:Oo}},Li=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,bl=()=>{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=Ni&&m?.connector?.connectorType==="wallet_connect_v2"||Ni&&m?.connector?.connectorType==="coinbase_wallet"||Ni&&m?.connector?.connectorType==="injected"&&m?.connector?.walletClientType==="phantom",H=m?.status==="connected";Ii(()=>{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 di(2500),await B()}catch(Et){console.warn("Auto-prompted signature failed",Et)}finally{r(!1)}})()},[w,H]),Ii(()=>{if(L&&e){let D;if(Ut(L,a?.embeddedWallets?.createOnLogin)){let Et=a?.render.inDialog?Je:0,we=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")},we)}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(Li(D))};async function B(){try{if(await x(),!a?.render.inDialog)return C();t(!0)}catch(D){ce(D)}finally{r(!1)}}Ii(()=>{m?.connectError&&ce(m?.connectError)},[m]);let V=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(Ce,{...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.":V==="wallet_connect"?z="Open your mobile wallet app to continue":V==="coinbase_wallet"&&(qr()||(yi(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"&&(yi(L)||n===Tt.ERROR_USER_EXISTS);return vn(El,{children:[ye(S,{backFn:T===c?void 0:s}),ye(R,{}),vn(mm,{children:[ye(Mi,{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=Cl.div`
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`
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=Cl.div`
704
+ `,hm=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
- `,Mi=e=>{let t=e.walletLogo;return ye(El,{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 Oi}from"react/jsx-runtime";var wn=2,Pl=()=>{let{navigateBack:e,lastScreen:t,currentScreen:o}=y(),{walletConnectionStatus:r,closePrivyModal:n}=P(),[i,a]=Tl(void 0),[l,s]=Tl(0),c=r?.status==="connected";xl(()=>{if(c){let _=setTimeout(n,Je);return()=>clearTimeout(_)}},[c]);let T=_=>{a(Li(_))};xl(()=>{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(Ce,{..._})),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."),Oi(gm,{children:[ft(S,{backFn:o===t?void 0:e}),ft(R,{}),Oi(ym,{children:[ft(Mi,{walletLogo:C,success:c,fail:!!i}),Oi(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
+ `,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`
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 Di,jsxs as Em}from"react/jsx-runtime";var Ho=({children:e})=>Di(vm,{children:Em(wm,{children:[e,Di(Cm,{}),Di(bm,{})]})}),vm=Cn.div`
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`
736
736
  height: 100%;
737
737
  display: flex;
738
738
  justify-content: center;
@@ -788,12 +788,12 @@ Resources:
788
788
  transform: rotate(360deg);
789
789
  }
790
790
  }
791
- `;var _l=["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 Ui(e){let t=e.type;return typeof t=="string"&&_l.includes(t)}function Go(e){return Ui(e)&&e.type==="wallet_not_on_device"}function Sl(e){return Ui(e)&&e.type==="invalid_recovery_pin"}function Al(e){return!!(Ui(e)&&e.type==="insufficient_funds"||e.code==="INSUFFICIENT_FUNDS")}function Rl(e){return e.code==="UNPREDICTABLE_GAS_LIMIT"}import{Fragment as Wl,jsx as Jt,jsxs as Fi}from"react/jsx-runtime";var kl=1,Il=()=>{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<kl?w=setTimeout(()=>{a(m)},(kl-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),Fi(Wl,{children:[Jt(S,{onClose:f}),Jt(R,{}),Jt(Am,{children:g?Fi(Wl,{children:[Fi($t,{children:[Jt(xm,{fill:"var(--privy-color-error)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),Jt(be,{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 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`
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 Nl}from"react/jsx-runtime";var Ll=()=>{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,ps);return()=>clearTimeout(g)},[]),a&&(a.current=T),Nl(Wm,{children:[zo(S,{onClose:T}),zo(R,{}),Nl($t,{children:[zo(Rm,{fill:"var(--privy-color-accent)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),zo(be,{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 Ul,useRef as Nm,useState as Bi}from"react";import At from"styled-components";import{jsx as Se,jsxs as Im}from"react/jsx-runtime";var Ml=({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 Fl=()=>{let[e,t]=Bi(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 Ul(()=>{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(Ml,{}),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(Ol,{children:[oe(Dl,{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(Ol,{children:[oe(Dl,{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]=Bi(e.dimensions.width),[r,n]=Bi(void 0),i=Nm(null);return Ul(()=>{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 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`
797
797
  display: flex;
798
798
  height: 100%;
799
799
  flex-direction: column;
@@ -811,7 +811,7 @@ Resources:
811
811
  margin-top: 16px;
812
812
  margin-left: 11px;
813
813
  border-left: 1px solid var(--privy-color-foreground-4) !important;
814
- `,Ol=At.div`
814
+ `,Dl=At.div`
815
815
  display: flex;
816
816
  align-items: top;
817
817
  gap: 8px;
@@ -822,7 +822,7 @@ Resources:
822
822
  text-decoration: underline;
823
823
  }
824
824
  }
825
- `,Dl=At.div`
825
+ `,Ul=At.div`
826
826
  display: flex;
827
827
  align-items: center;
828
828
  justify-content: center;
@@ -873,14 +873,14 @@ 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 Vi}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 Yl}from"@heroicons/react/24/solid";import{useState as hh,useMemo as Hi}from"react";import Ae,{css as zi}from"styled-components";import $m from"fast-password-entropy";import*as Bl 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",Hl="!@#$%^&*()\\-_+.",Gl=`${Xm}${Hl}`,eh=new RegExp(`[${Hl}]`),th=new RegExp(`[${Gl}]`),zl=new RegExp(`^[${Gl}]{6,}$`),$l=(e="")=>{let t=e.split("").filter(o=>!th.test(o)).map(o=>o.replace(" ","SPACE"));return[...new Set(t)]},$o=()=>Bl.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 Vl(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 ql=({className:e,checked:t,...o})=>wr("label",{children:sh(ih,{className:e,children:[wr(jl,{checked:t,...o}),wr(ah,{checked:t,children:wr(Kl,{viewBox:"0 0 24 24",children:wr("polyline",{points:"20 6 9 17 4 12"})})})]})}),ih=bn.div`
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`
877
877
  display: inline-block;
878
878
  vertical-align: middle;
879
- `,Kl=bn.svg`
879
+ `,jl=bn.svg`
880
880
  fill: none;
881
881
  stroke: white;
882
882
  stroke-width: 3px;
883
- `,jl=bn.input.attrs({type:"checkbox"})`
883
+ `,Yl=bn.input.attrs({type:"checkbox"})`
884
884
  border: 0;
885
885
  clip: rect(0 0 0 0);
886
886
  clippath: inset(50%);
@@ -906,14 +906,14 @@ Resources:
906
906
  border-width: 1px;
907
907
  }
908
908
 
909
- ${jl}:focus + & {
909
+ ${Yl}:focus + & {
910
910
  box-shadow: 0 0 0 1px var(--privy-color-accent);
911
911
  }
912
912
 
913
- ${Kl} {
913
+ ${jl} {
914
914
  visibility: ${e=>e.checked?"visible":"hidden"};
915
915
  }
916
- `;import{Fragment as ho,jsx as q,jsxs as Ee}from"react/jsx-runtime";var En=({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=Hi(()=>(a?.length||0)<6?"Password must be at least 6 characters":zl.test(a||"")?null:`Invalid characters used ( ${$l(a).join(" ")} )`,[a]),C=Hi(()=>m?{value:0,label:"Weak"}:Vl(a),[a,m]),x=Hi(()=>{let f=new Blob([a||""],{type:"text/plain"});return window.URL.createObjectURL(f)},[a]);return i?q(Ph,{children:q(Ho,{})}):Ee(ho,{children:[q(S,{onClose:s,title:"Secure your account",closeable:!n}),q(R,{}),r||o?Ee(ho,{children:[Ee($t,{children:[q(mh,{fill:"var(--privy-color-error)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),q(be,{title:"Something went wrong",description:r})]}),q(K,{onClick:s,children:"Close"})]}):Ee(gh,{children:[Ee(Eh,{children:[n?q(ph,{height:48,width:48,stroke:"var(--privy-color-background)",fill:"var(--privy-color-accent)"}):q(uh,{height:48,width:48,stroke:"var(--privy-color-accent)"}),q("h3",{style:{color:"var(--privy-color-foreground)"},children:n?"Save your password":"Set your password"}),q("p",{style:{color:"var(--privy-color-foreground-2)"},children:n?Ee(ho,{children:["Privy doesn\u2019t store your password so we can't retrieve it for you later. Secure it to keep your assets safe.",q("a",{rel:"noreferrer",target:"_blank",href:"https://docs.privy.io/guide/security",style:{cursor:"pointer",color:"var(--privy-color-accent)"},children:" Learn more."})]}):q(ho,{children:"Select a strong password to secure your account."})})]}),Ee(Ch,{centered:n,children:[n?q(wh,{children:a}):q($i,{value:a,onChange:f=>c(f.target.value)}),!n&&q(bh,{onClick:T})]}),n?Ee(ho,{children:[Ee("div",{style:{display:"flex",margin:"12px 0",gap:"12px"},children:[Ee(Ql,{onClick:()=>a&&navigator.clipboard.writeText(a),children:[q(dh,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Copy"]}),q(Th,{href:x,download:"privy-wallet-recovery.txt",children:Ee(Ql,{children:[q(lh,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Download"]})})]}),q(Jl,{children:Ee(Gi,{children:[q(ql,{checked:g,onChange:f=>E(f.target.checked)}),q(ho,{children:"I understand that my password can\u2019t be recovered and I may lose my assets if I don\u2019t secure it."})]})})]}):Ee(ho,{children:[q(xh,{value:C.value,label:C.label}),q(yh,{error:m,children:m||`Password Strength: ${C.label}`}),Ee(Jl,{children:[Ee(Gi,{children:[q(Yl,{width:24,height:24,fill:"var(--privy-color-accent)"}),"This password is used to secure your account\u2019s crypto wallet."]}),Ee(Gi,{children:[q(Yl,{width:24,height:24,fill:"var(--privy-color-accent)"}),"You will only be asked to enter it when signing on to a new device."]})]})]}),q(vh,{onClick:l,loading:t,disabled:!!m||n&&!g,hideAnimations:e,children:n?"Continue":"Set password"})]}),q(N,{}),q(F,{protectedByPrivy:!0})]})},fh=zi`
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`
917
917
  font-size: 14px;
918
918
  font-style: normal;
919
919
  font-weight: 400;
@@ -932,12 +932,12 @@ Resources:
932
932
  flex-direction: column;
933
933
  justify-content: space-between;
934
934
  `,vh=Ae(K)`
935
- ${e=>e.hideAnimations&&zi`
935
+ ${e=>e.hideAnimations&&$i`
936
936
  && {
937
937
  transition: none;
938
938
  }
939
939
  `}
940
- `,Zl=zi`
940
+ `,Zl=$i`
941
941
  && {
942
942
  width: 100%;
943
943
  border-width: 1px;
@@ -953,7 +953,7 @@ Resources:
953
953
  line-height: 22px; /* 137.5% */
954
954
  letter-spacing: 0.16px;
955
955
  }
956
- `,$i=Ae.input`
956
+ `,Vi=Ae.input`
957
957
  ${Zl}
958
958
  `,wh=Ae.div`
959
959
  ${Zl}
@@ -1017,7 +1017,7 @@ Resources:
1017
1017
  flex-direction: column;
1018
1018
  margin: 20px 0;
1019
1019
  gap: 10px;
1020
- `,Gi=Ae.div`
1020
+ `,En=Ae.div`
1021
1021
  display: flex;
1022
1022
  text-align: left;
1023
1023
  align-items: center;
@@ -1031,8 +1031,12 @@ Resources:
1031
1031
  line-height: 20px;
1032
1032
  letter-spacing: -0.008px;
1033
1033
 
1034
- padding: 0 8px;
1034
+ margin: 0 8px;
1035
1035
  color: var(--privy-color-foreground-2);
1036
+
1037
+ svg {
1038
+ min-width: 24px;
1039
+ }
1036
1040
  `,Th=Ae.a`
1037
1041
  flex: 1;
1038
1042
  width: 100%;
@@ -1050,7 +1054,7 @@ Resources:
1050
1054
  }
1051
1055
  `,Ph=Ae.div`
1052
1056
  height: var(--privy-height-modal-compact);
1053
- `;import{jsx as Rh}from"react/jsx-runtime";var Xl=()=>{let{app:e,navigate:t,data:o,outerClickRef:r}=y(),[n,i]=Vi(""),[a,l]=Vi(!1),[s,c]=Vi(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 V=()=>{if(ce){console.error(new ko);return}L(new Fe("User exited before creating a wallet")),f({shouldCallAuthOnSuccess:k})};r&&(r.current=()=>(V(),{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(En,{loading:H,invalidState:I&&!H,errorMessage:n,buttonHideAnimations:!Y&&a,buttonLoading:a||!C,hasSetPassword:!!ce,password:s,onClose:V,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 xn}from"react";import{jsx as Wh}from"react/jsx-runtime";var ec=()=>{let[e,t]=xn(null),[o,r]=xn(!1),[n,i]=xn(""),[a,l]=xn($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(V){console.warn(V),i("An error has occurred, please try again."),M(V instanceof Error?V:new Error("Error setting password on privy wallet")),C("embedded_wallet_set_password_failed",{walletAddress:L.address,reason:V})}};return Wh(En,{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 Tn}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)},[]),Tn(Mh,{children:[Rt(S,{onClose:c}),Rt(R,{}),Tn($t,{children:[Tn(Qs,{children:[Rt(Ih,{stroke:"var(--privy-color-accent)",width:"64px",height:"64px"}),Rt(Zs,{style:{width:24,height:24,position:"absolute",bottom:0,right:0},children:Rt(Nh,{width:"12px",height:"12px",fill:"white"})})]}),Tn(be,{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 qi}from"react";import Pn,{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]=qi(void 0),[T,g]=qi(""),[E,m]=qi(!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:"We haven't seen this device yet. To continue, please enter your password."})]}),Vo("div",{children:[qe($i,{onChange:k=>M(k.target.value),disabled:E}),!!T&&qe(Hh,{children:T})]}),Vo("div",{children:[Vo(Js,{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){Sl(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=Pn.div`
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`
1054
1058
  display: flex;
1055
1059
  flex-direction: column;
1056
1060
  align-items: center;
@@ -1072,19 +1076,19 @@ Resources:
1072
1076
  font-weight: 400;
1073
1077
  line-height: 20px;
1074
1078
  }
1075
- `,Bh=Pn.div`
1079
+ `,Bh=_n.div`
1076
1080
  display: flex;
1077
1081
  height: 100%;
1078
1082
  flex-direction: column;
1079
1083
  justify-content: space-between;
1080
- `,Hh=Pn.div`
1084
+ `,Hh=_n.div`
1081
1085
  line-height: 20px;
1082
1086
  height: 20px;
1083
1087
  font-size: 13px;
1084
1088
  color: var(--privy-color-error);
1085
1089
  text-align: left;
1086
1090
  margin-top: 0.5rem;
1087
- `,Gh=Pn(K)`
1091
+ `,Gh=_n(K)`
1088
1092
  ${e=>e.hideAnimations&&Uh`
1089
1093
  && {
1090
1094
  // Remove animations because the recoverWallet task on the iframe partially
@@ -1092,7 +1096,7 @@ Resources:
1092
1096
  transition: none;
1093
1097
  }
1094
1098
  `}
1095
- `;import{EyeSlashIcon as Vh,LinkIcon as qh,ClockIcon as Kh}from"@heroicons/react/24/outline";import kt from"styled-components";import{jsx as Ki,jsxs as $h}from"react/jsx-runtime";var _n=({size:e=61,...t})=>Ki("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:[Ki("rect",{x:"1.3374",y:"1",width:"59",height:"59",rx:"11.5",fill:"#7715F5"}),Ki("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 ji=({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(_n,{size:"3.75rem"}),fo(Yh,{children:[e?.name," uses ",xe("span",{style:{fontWeight:"bold"},children:"Moonpay"})," to fund your account"]}),fo(tf,{children:[xe(ji,{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(ji,{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(ji,{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`
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`
1096
1100
  display: flex;
1097
1101
  flex-direction: column;
1098
1102
  align-items: center;
@@ -1139,7 +1143,7 @@ Resources:
1139
1143
  margin: 0 0.5rem;
1140
1144
  `,of=kt.div`
1141
1145
  margin: 30px 0;
1142
- `;import{ofetch as rf}from"ofetch";import{useEffect as nf,useRef as af,useState as sf}from"react";var Sn="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?hs:ms,r=t?ys:fs;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:Sn,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:Sn}),clearInterval(a))}},3e3);return()=>clearInterval(a)},[e,i]),o}import{Fragment as cf,jsx as An,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:[An(S,{title:"Fund account"},"header"),An(R,{}),An(nc,{app:e,signedUrl:n,onContinue:()=>{r("sdk_fiat_on_ramp_started",{provider:Sn}),o("FIAT_ON_RAMP_STATUS_SCREEN")}}),An(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 Yi,jsx as ge,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(Yi,{children:[ge(S,{title:"Fund account"},"header"),ge(R,{}),ge(yf,{status:n,onClickCta:o}),ge(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(Yi,{children:[yo("p",{children:["It looks like there was an issue with your payment. Please contact"," ",ge("a",{href:"https://support.moonpay.com/hc/en-gb",target:"_blank",rel:"noreferrer noopener",style:{textDecoration:"underline"},children:"Moonpay support"})," ","for assistance."]}),ge("p",{style:{fontStyle:"italic"},children:"Note that debit cards typically work better than credit cards here."})]}),cta:"Done"};case"serviceFailure":return{title:"Something went wrong!",body:"MoonPay ran into an error when processing your transaction. Try again?",cta:"Done"};case"waitingAuthorization":return{title:"Processing payment",body:"This may take up to a few hours. You will receive an email when the purchase is complete.",cta:"Continue"};default:return{title:"In Progress",body:"Go back to MoonPay to finish funding your account.",cta:""}}},yf=({status:e,onClickCta:t})=>{let{title:o,body:r,cta:n}=hf(()=>ff(e),[e]);return yo(Yi,{children:[yo(bf,{style:{height:"100%",gap:0},children:[ge(wf,{status:e}),yo(Vt,{children:[ge("h3",{children:o}),ge(Cf,{children:r})]})]}),n&&ge(pe,{children:ge(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()=>ge(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:[ge(uo,{color:r,style:{position:"absolute"}}),ge(bi,{color:r}),ge(_n,{size:"3rem",style:{position:"absolute",top:"1rem",left:"1rem"}})]})}let t=vf(e),o=gf(e);return ge("div",{style:{borderColor:o,display:"flex",justifyContent:"center",alignItems:"center",borderRadius:"100%",borderWidth:2,padding:"0.5rem",marginBottom:"0.5rem"},children:t&&ge(t,{width:"4rem",height:"4rem",color:o})})},Cf=cc.p`
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`
1143
1147
  font-size: 1rem;
1144
1148
  color: var(--privy-color-foreground-3);
1145
1149
  margin-bottom: 1rem;
@@ -1153,18 +1157,18 @@ Resources:
1153
1157
  justify-content: center;
1154
1158
  margin-left: 1.75rem;
1155
1159
  margin-right: 1.75rem;
1156
- `;import{useState as Of}from"react";import*as Wt from"react-device-detect";import vt from"styled-components";import Ji 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 Rn=Ji.div`
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`
1157
1161
  display: flex;
1158
1162
  flex-direction: column;
1159
1163
  justify-content: flex-start;
1160
1164
  gap: 4px;
1161
- `,go=Ji.div`
1165
+ `,go=Qi.div`
1162
1166
  &&& {
1163
1167
  margin-left: 7px; /* TODO: This is a total hack */
1164
1168
  border-left: 2px solid var(--privy-color-foreground-4);
1165
1169
  height: 12px;
1166
1170
  }
1167
- `,gt=({children:e})=>Tf(Ef,{children:[xf(uc,{style:{width:"16px",height:"16px"}}),e]}),Ef=Ji.div`
1171
+ `,gt=({children:e})=>Tf(Ef,{children:[xf(uc,{style:{width:"16px",height:"16px"}}),e]}),Ef=Qi.div`
1168
1172
  display: flex;
1169
1173
  justify-content: flex-start;
1170
1174
  justify-items: center;
@@ -1182,7 +1186,7 @@ Resources:
1182
1186
  margin-bottom: auto;
1183
1187
  }
1184
1188
  }
1185
- `;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,Qi=(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=ws(Array.from(t.data),t.size);return o=Qi(o,0,0,Me,Me),o=Qi(o,o.length-Me,0,Me,Me),o=Qi(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`
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`
1186
1190
  display: flex;
1187
1191
  justify-content: center;
1188
1192
  align-items: center;
@@ -1197,7 +1201,7 @@ Resources:
1197
1201
  border-color: ${e=>e.fgColor};
1198
1202
  border-radius: var(--privy-border-radius-md);
1199
1203
  }
1200
- `,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 ve,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:[ve("rect",{x:"198.5",y:"133",width:"50",height:"50",rx:"25",fill:"#E1E7EF"}),ve(Ce,{x:"206",y:"140",width:"36",height:"36"}),ve("rect",{x:"192",y:"30",width:"50",height:"50",rx:"25",fill:"#0C5BFF"}),ve("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"}),ve("rect",{x:"39.5",y:"18",width:"50",height:"50",rx:"50",fill:"#AB9FF2"}),ve(Ge,{x:"44.5",y:"23",width:"40",height:"40"}),ve("rect",{x:"46.5",y:"124",width:"50",height:"50",rx:"25",fill:"#141414"}),ve("g",{clipPath:"url(#clip0_428_81)",children:ve("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"})}),ve("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",fill:"var(--privy-color-foreground-accent)"}),ve(vc,{x:"63",y:"17"}),ve("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",stroke:"#E1E7EF",strokeWidth:"2"}),ve("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"}),ve("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"}),ve("defs",{children:ve("clipPath",{id:"clip0_428_81",children:ve("rect",{width:"31.6667",height:"19.1667",fill:"white",transform:"translate(55.6667 139.833)"})})})]});import{Fragment as Zi,jsx as A,jsxs as se}from"react/jsx-runtime";var Xi=()=>{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(oa,{children:[A(ht,{title:"Create a MetaMask wallet",description:"Follow the instructions below to get started."}),A(ra,{children:A(Ce,{style:{width:"152px",height:"152px"}})}),se(Rn,{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"})]})},ea=()=>{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(oa,{children:[A(ht,{title:"Create a Phantom wallet",description:"Follow the instructions below to get started."}),A(ra,{children:A(Ge,{style:{width:"152px",height:"152px"}})}),se(Rn,{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"})]})},ta=()=>{let{navigate:e}=y();return se(oa,{children:[A(ht,{title:"Create a Coinbase wallet",description:"Follow the instructions below to get started."}),A(ra,{style:{marginTop:"-24px"},children:A(yc,{size:200})}),se(Rn,{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(Zi,{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(Zi,{children:[A(Gf,{children:A(wc,{style:{width:"240px",height:"auto",borderRadius:"var(--privy-border-radius-sm)",marginBottom:"32px"}})}),se(be,{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(Zi,{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(Ce,{}),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(ta,{}),e==="CREATE_METAMASK_WALLET"&&A(Xi,{}),e==="CREATE_PHANTOM_WALLET"&&A(ea,{})]}),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`
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`
1201
1205
  display: flex;
1202
1206
  flex-direction: column;
1203
1207
  height: 100%;
@@ -1270,7 +1274,7 @@ Resources:
1270
1274
  && {
1271
1275
  margin-top: 14px;
1272
1276
  }
1273
- `,oa=vt.div`
1277
+ `,ra=vt.div`
1274
1278
  display: flex;
1275
1279
  flex-direction: column;
1276
1280
  align-items: center;
@@ -1282,7 +1286,7 @@ Resources:
1282
1286
  > :first-child > svg {
1283
1287
  margin-top: 20px;
1284
1288
  }
1285
- `,ra=vt.div`
1289
+ `,na=vt.div`
1286
1290
  display: flex;
1287
1291
  flex-direction: column;
1288
1292
  align-items: center;
@@ -1292,7 +1296,7 @@ Resources:
1292
1296
  display: flex;
1293
1297
  justify-content: center;
1294
1298
  flex-grow: 1;
1295
- `;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(ta,{}),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(Xi,{}),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(ea,{}),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 na,useState as ia}from"react";import sa from"styled-components";import{Fragment as Jf,jsx as vo,jsxs as aa}from"react/jsx-runtime";var kn=e=>{let[t,o]=ia(""),[r,n]=ia(!1),[i,a]=ia(null),{isLinking:l,initLoginWithEmail:s,captchaData:c}=P(),{app:T,navigate:g}=y(),E=T?.loginMethods.wallet??!1;na(()=>{document.querySelector("#email-input")?.focus()},[]);let m=gs(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 na(()=>{c.error&&a("Issue verifying you are a human")},[c.error]),na(()=>{c.ready&&c.execute()},[c.ready]),aa(Jf,{children:[aa(Kf,{stacked:e.stacked,children:[aa(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=sa.div`
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`
1296
1300
  width: 100%;
1297
1301
  height: ${e=>e.stacked?"100%":"auto"};
1298
1302
 
@@ -1304,7 +1308,7 @@ Resources:
1304
1308
  @media (max-width: 440px) {
1305
1309
  margin-top: 20px;
1306
1310
  }
1307
- `,jf=sa.label`
1311
+ `,jf=la.label`
1308
1312
  display: flex;
1309
1313
  flex-direction: row;
1310
1314
  align-items: center;
@@ -1341,7 +1345,7 @@ Resources:
1341
1345
  line-height: 24px;
1342
1346
  }
1343
1347
  }
1344
- `,Yf=sa.div`
1348
+ `,Yf=la.div`
1345
1349
  line-height: 20px;
1346
1350
  height: 20px;
1347
1351
  font-size: 13px;
@@ -1354,7 +1358,7 @@ Resources:
1354
1358
  > a {
1355
1359
  text-decoration: underline;
1356
1360
  }
1357
- `;import{PhoneIcon as Qf}from"@heroicons/react/24/outline";import{useEffect as la,useState as ca}from"react";import pa from"styled-components";import{Fragment as ty,jsx as wo,jsxs as da}from"react/jsx-runtime";var Wn=e=>{let[t,o]=ca(""),[r,n]=ca(!1),[i,a]=ca(null),{isLinking:l,initLoginWithSms:s,captchaData:c}=P(),{app:T,navigate:g}=y(),E=T?.loginMethods.wallet??!1;la(()=>{document.querySelector("#phone-number-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 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 la(()=>{c.error&&a("Issue verifying you are a human")},[c.error]),la(()=>{c.ready&&c.execute()},[c.ready]),da(ty,{children:[da(Zf,{stacked:e.stacked,children:[da(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=pa.div`
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`
1358
1362
  display: flex;
1359
1363
  border: 1px solid var(--privy-color-foreground-4);
1360
1364
  width: 100%;
@@ -1368,7 +1372,7 @@ Resources:
1368
1372
  @media (max-width: 440px) {
1369
1373
  margin-top: 20px;
1370
1374
  }
1371
- `,Xf=pa.label`
1375
+ `,Xf=ua.label`
1372
1376
  display: flex;
1373
1377
  flex-direction: row;
1374
1378
  align-items: center;
@@ -1405,7 +1409,7 @@ Resources:
1405
1409
  line-height: 24px;
1406
1410
  }
1407
1411
  }
1408
- `,ey=pa.div`
1412
+ `,ey=ua.div`
1409
1413
  line-height: 20px;
1410
1414
  height: 20px;
1411
1415
  font-size: 13px;
@@ -1418,7 +1422,7 @@ Resources:
1418
1422
  > a {
1419
1423
  text-decoration: underline;
1420
1424
  }
1421
- `;import{useState as iy}from"react";import Ic from"styled-components";import{jsx as Rc,jsxs as oy}from"react/jsx-runtime";var In=({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 Nn=({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 Ln=({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 Mn,jsxs as ny}from"react/jsx-runtime";var On=({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:[Mn("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"}),Mn("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"}),Mn("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"}),Mn("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 Dn=({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(On,{})}),t&&wt(br,{onClick:()=>{a(!0),l("twitter")},disabled:i,children:wt(Dn,{})}),o&&wt(br,{onClick:()=>{a(!0),l("discord")},disabled:i,children:wt(Nn,{})}),r&&wt(br,{onClick:()=>{a(!0),l("github")},disabled:i,children:wt(Ln,{style:{color:c==="light"?"#000":"#fff"}})}),n&&wt(br,{onClick:()=>{a(!0),l("apple")},disabled:i,children:wt(In,{style:{color:c==="light"?"#000":"#fff"}})})]})},ay=Ic.div`
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`
1422
1426
  display: flex;
1423
1427
  justify-content: space-between;
1424
1428
  width: 100%;
@@ -1445,7 +1449,7 @@ Resources:
1445
1449
  background-color: var(--privy-color-background-2);
1446
1450
  }
1447
1451
  }
1448
- `;import{Fragment as ua,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(ua,{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(ua,{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(kn,{}),e.active&&e.sms&&!e.email&&re(Wn,{}),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(ua,{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`
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`
1449
1453
  font-weight: ${e=>e.active?600:500};
1450
1454
  color: ${e=>e.active?"var(--privy-color-foreground)":"var(--privy-color-foreground-2)"};
1451
1455
  display: flex;
@@ -1505,7 +1509,7 @@ Resources:
1505
1509
  }
1506
1510
  `,hy=Jo(pe)`
1507
1511
  flex-direction: ${e=>e.reverse?"column-reverse":"column"};
1508
- `;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(be,{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(kn,{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(be,{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(Wn,{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(Ks,{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 ma(e){return e.charAt(0).toUpperCase()+e.slice(1)}import{Fragment as _y,jsx as It,jsxs as Fn}from"react/jsx-runtime";var Yc={google:{name:"Google",component:On},discord:{name:"Discord",component:Nn},github:{name:"Github",component:Ln},twitter:{name:"Twitter",component:Dn},apple:{name:"Apple",component:In}},Un=()=>{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(()=>{Un(),m(!0)}).catch(I=>{let H={retryable:!1,message:"Authentication failed"};if(I?.privyErrorCode==="allowlist_rejected"){x(void 0),i(),n("ALLOWLIST_REJECTION_SCREEN"),Un();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 ${ma(f)} to finish connecting your account.`,H.retryable=!0);Un(),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",Fn(_y,{children:[It(S,{}),It(R,{}),Fn(Ty,{children:[It(Py,{children:Fn("div",{children:[It(an,{success:E,fail:!!C}),It(w,{style:{width:"38px",height:"38px"}})]})}),Fn(Vt,{children:[It("h3",{children:L}),It("p",{children:k})]}),C&&C?.retryable?It(fe,{onClick:()=>{Un(),s(f),x(void 0)},disabled:!E&&!C?.retryable,children:"Retry"}):null]}),It(J,{})]})},Ty=Jc.div`
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`
1509
1513
  display: flex;
1510
1514
  flex-direction: column;
1511
1515
  align-items: center;
@@ -1536,9 +1540,9 @@ Resources:
1536
1540
  left: -19px;
1537
1541
  top: -19px;
1538
1542
  }
1539
- `;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(xi)`
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)`
1540
1544
  margin: 16px auto;
1541
- `;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 Bn=({label:e,children:t,valueStyles:o})=>Ly(Iy,{children:[od("div",{children:e}),od(Ny,{style:{...o},children:t})]}),Iy=rd.div`
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`
1542
1546
  display: flex;
1543
1547
  align-items: center;
1544
1548
  justify-content: space-between;
@@ -1562,28 +1566,28 @@ Resources:
1562
1566
  border-radius: var(--privy-border-radius-full);
1563
1567
  background-color: var(--privy-color-background-2);
1564
1568
  padding: 4px 8px;
1565
- `;import{BigNumber as sd}from"@ethersproject/bignumber";import Hn 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 ha,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 ha(cd,{children:r==="0.00"?"<$0.01":`$${r}`})},fa=({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:[ha(Uy,{children:"USD"}),r==="0.00"?ad(By,{children:[ha(Fy,{children:"<"}),"$0.01"]}):`$${r}`]})},cd=Hn.span`
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`
1566
1570
  font-size: 14px;
1567
1571
  line-height: 140%;
1568
1572
  display: flex;
1569
1573
  gap: 4px;
1570
1574
  align-items: center;
1571
- `,Uy=Hn.span`
1575
+ `,Uy=Gn.span`
1572
1576
  font-size: 12px;
1573
1577
  line-height: 12px;
1574
1578
  color: var(--privy-color-foreground-3);
1575
- `,Fy=Hn.span`
1579
+ `,Fy=Gn.span`
1576
1580
  font-size: 10px;
1577
- `,By=Hn.span`
1581
+ `,By=Gn.span`
1578
1582
  display: flex;
1579
1583
  align-items: center;
1580
- `;import ya from"styled-components";import{jsx as eo,jsxs as Gn}from"react/jsx-runtime";var dd=({transactionData:e,gas:t,tokenPrice:o})=>{let{nativeTokenSymbolForChainId:r}=P(),n=r(e.chainId)||"ETH";return Gn(Ti,{style:{paddingBottom:"12px"},children:[Gn(ud,{children:[eo(hd,{children:"Est. Fees"}),eo("div",{children:eo(fa,{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 Gn(Ti,{children:[Gn(ud,{children:[eo(hd,{children:"Total (including fees)"}),eo("div",{children:eo(fa,{weiQuantities:[e.value||0,t],tokenPrice:o})})]}),eo(md,{children:e.value?`${Eo(Re(e.value).add(Re(t)).toHexString())} ${n}`:null})]})},ud=ya.div`
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`
1581
1585
  display: flex;
1582
1586
  flex-direction: row;
1583
1587
  justify-content: space-between;
1584
1588
  align-items: center;
1585
1589
  padding-top: 4px;
1586
- `,md=ya.div`
1590
+ `,md=ga.div`
1587
1591
  display: flex;
1588
1592
  flex-direction: row;
1589
1593
  height: 12px;
@@ -1592,7 +1596,7 @@ Resources:
1592
1596
  line-height: 12px;
1593
1597
  color: var(--privy-color-foreground-3);
1594
1598
  font-weight: 400;
1595
- `,hd=ya.div`
1599
+ `,hd=ga.div`
1596
1600
  font-size: 14px;
1597
1601
  line-height: 22.4px;
1598
1602
  font-weight: 400;
@@ -1654,18 +1658,18 @@ Resources:
1654
1658
  min-height: 1px;
1655
1659
  `,Yy=to.div`
1656
1660
  transform: ${e=>e.isactive?"rotate(180deg)":"rotate(0deg)"};
1657
- `;import Qy from"styled-components";import{jsx as Xy}from"react/jsx-runtime";var ga=({walletAddress:e,chainId:t=at})=>Xy(Zy,{href:id(t,e),target:"_blank",children:Ft(e)}),Zy=Qy.a`
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`
1658
1662
  &:hover {
1659
1663
  text-decoration: underline;
1660
1664
  }
1661
- `;import{Fragment as og,jsx as ke,jsxs as va}from"react/jsx-runtime";var zn=({from:e,to:t,txn:o,transactionInfo:r,tokenPrice:n,gas:i})=>{let a=o?.value||0;return ke(gd,{children:va(vd,{value:"details",children:[ke(wd,{children:va(eg,{children:[ke("div",{children:r?.title||r?.actionDescription||"Details"}),n?ke(tg,{children:ke(ld,{weiQuantities:[a],tokenPrice:n})}):null]})}),va(Cd,{children:[ke(Bn,{label:"From",children:ke(ga,{walletAddress:e,chainId:o.chainId||at})}),ke(Bn,{label:"To",children:ke(ga,{walletAddress:t,chainId:o.chainId||at})}),r&&r.action&&ke(Bn,{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`
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`
1662
1666
  display: flex;
1663
1667
  flex-direction: row;
1664
1668
  justify-content: space-between;
1665
1669
  `,tg=xd.div`
1666
1670
  flex-shrink: 0;
1667
1671
  padding-left: 8px;
1668
- `;import Pr from"styled-components";import{jsx as Tr,jsxs as lg}from"react/jsx-runtime";var wa=({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`
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`
1669
1673
  display: flex;
1670
1674
  flex-direction: column;
1671
1675
  align-items: center;
@@ -1705,7 +1709,7 @@ Resources:
1705
1709
  white-space: nowrap;
1706
1710
  max-width: 275px;
1707
1711
  text-overflow: ellipsis;
1708
- `;import{WalletIcon as yg}from"@heroicons/react/24/outline";import{useState as ba,useEffect as gg}from"react";import xa 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],Ca=e=>({maxPriorityFee:Td(e.maxPriorityFee.toString(),"gwei").toHexString(),maxFee:Td(e.maxFee.toString(),"gwei").toHexString()}),dg=e=>({safeLow:Ca(e.safeLow),standard:Ca(e.standard),fast:Ca(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 $n(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 Vn(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 qn(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 Ea}from"react/jsx-runtime";var kd=({wallet:e,txn:t,provider:o})=>{let[r,n]=ba(),[i,a]=ba(!1),[l,s]=ba(!1),{nativeTokenSymbolForChainId:c}=P(),T=c(t.chainId)||"ETH";return gg(()=>{(async E=>{try{let{balance:m,hasSufficientFunds:C}=await qn(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]),Ea(vg,{children:[Ea(wg,{children:[Rd(yg,{strokeWidth:"2",width:"16px",height:"16px"}),Rd("div",{children:Ft(e?.address)})]}),Ea(Cg,{displayBalanceColor:l,hasFunds:!i,children:[r?Eo(r):0," ",T," available"]})]})},vg=xa.div`
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`
1709
1713
  display: flex;
1710
1714
  flex-direction: row;
1711
1715
  justify-content: space-between;
@@ -1718,12 +1722,12 @@ Resources:
1718
1722
  border: 1px solid var(--privy-color-foreground-4);
1719
1723
  border-radius: var(--privy-border-radius-md);
1720
1724
  }
1721
- `,wg=xa.div`
1725
+ `,wg=Ta.div`
1722
1726
  display: flex;
1723
1727
  flex-direction: row;
1724
1728
  align-items: center;
1725
1729
  gap: 8px;
1726
- `,Cg=xa.div`
1730
+ `,Cg=Ta.div`
1727
1731
  display: flex;
1728
1732
  align-items: center;
1729
1733
  justify-content: center;
@@ -1733,25 +1737,25 @@ Resources:
1733
1737
  background-color: var(--privy-color-background-2);
1734
1738
  padding: 5px 8px;
1735
1739
  color: ${e=>e.displayBalanceColor?e.hasFunds?"var(--privy-color-success-dark)":"var(--privy-color-error)":"inherit"};
1736
- `;import jn from"styled-components";import{StaticJsonRpcProvider as bg}from"@ethersproject/providers";import{useState as Ar,useEffect as Wd,useMemo as Eg}from"react";var Kn=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}=Kn(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=jn.div`
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`
1737
1741
  display: flex;
1738
1742
  flex-direction: column;
1739
1743
  align-items: center;
1740
1744
  margin-bottom: 20px;
1741
- `,Tg=jn.h2`
1745
+ `,Tg=Yn.h2`
1742
1746
  && {
1743
1747
  font-size: 48px;
1744
1748
  line-height: 48px;
1745
1749
  margin: 8px auto;
1746
1750
  }
1747
- `,Pg=jn.p`
1751
+ `,Pg=Yn.p`
1748
1752
  margin-bottom: 12px;
1749
1753
  && {
1750
1754
  font-size: 17px;
1751
1755
  line-height: 17px;
1752
1756
  color: var(--privy-color-foreground-3);
1753
1757
  }
1754
- `,_g=jn.div`
1758
+ `,_g=Yn.div`
1755
1759
  font-size: 16px;
1756
1760
  line-height: 22.4px;
1757
1761
  font-weight: 400;
@@ -1759,7 +1763,7 @@ Resources:
1759
1763
  white-space: nowrap;
1760
1764
  max-width: 275px;
1761
1765
  text-overflow: ellipsis;
1762
- `;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 Ta=Sg({wallets:[]});function Pa(){return Ag(Ta)}import Od from"styled-components";import{Fragment as Wg,jsx as Xo,jsxs as _a}from"react/jsx-runtime";var Dd=({txn:e,receipt:t,transactionInfo:o,onClose:r,tokenPrice:n})=>_a(Wg,{children:[Xo(S,{onClose:r}),_a(Rg,{children:[_a("div",{children:[Xo(ht,{title:"Transaction complete!",description:"You're all set."}),Xo(zn,{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`
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`
1763
1767
  display: flex;
1764
1768
  height: 100%;
1765
1769
  flex-direction: column;
@@ -1768,7 +1772,7 @@ Resources:
1768
1772
  `,kg=Od(K)`
1769
1773
  margin-top: 24px;
1770
1774
  transition: color 350ms ease, background-color 350ms ease;
1771
- `;import{Fragment as Sa,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(wa,{contractInfo:o.transactionInfo.contractInfo,description:o.description});if(o.senderInfo)return me(wa,{contractInfo:o.senderInfo,description:o.description||o.senderInfo.actionText})}return me(Sa,{children:me(Ld,{description:o.description||o.transactionInfo?.description||"",txn:e})})},Hd=()=>{let{authenticated:e,getAccessToken:t}=$(),{wallets:o}=Pa(),{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,V]=To(!1),[G,X]=To(!0),[O,de]=To(!1),[z,ee]=To(C),{tokenPrice:Oe,estimatedGas:D}=Kn(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 we=Ud(()=>o.find(ot=>ot.walletClientType==="privy"),[o]),nr=async()=>{if(!we)return console.warn("No privy wallet found, cannot fund wallet.");let{signedUrl:ot,externalTransactionId:ne}=await i(we.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||!we?z:$n(we.address,z,ao)}ot().then(ne=>{X(!1),ee(ne)},async ne=>{X(!0);let De=!1;if(Al(ne))De=!0;else if(Rl(ne))try{let{hasSufficientFunds:So}=await qn(we.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&&V(!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),Xn=Ir==="SEND"?`Send ${Et}`:"Review transaction",ir={modalTitle:_.header||_.modalTitle||Xn,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(Sa,{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(Sa,{children:[me(S,{title:ir.modalTitle,onClose:Lt}),er(Bd,{children:[er(Dg,{children:[me(Ng,{txn:z,txnFamily:Ir,uiOptions:_}),we?me(zn,{from:we.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}),we?me(kd,{txn:z,wallet:we,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&&we)try{let ne=await Vn(ot,we.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`
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`
1772
1776
  display: flex;
1773
1777
  height: 100%;
1774
1778
  flex-direction: column;
@@ -1798,7 +1802,7 @@ Resources:
1798
1802
  display: flex;
1799
1803
  flex-direction: column;
1800
1804
  gap: 8px;
1801
- `;import{isHexString as Fg}from"@ethersproject/bytes";import{toUtf8String as Bg}from"@ethersproject/strings";import{useEffect as Hg,useState as Aa}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 Yn}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]=Aa(!1),[s,c]=Aa(""),[T,g]=Aa();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),Yn(Yg,{children:[Ct(S,{onClose:w}),Ct(R,{}),Yn($g,{children:[Yn("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?Yn(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`
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`
1802
1806
  display: flex;
1803
1807
  height: 100%;
1804
1808
  flex-direction: column;
@@ -2165,7 +2169,7 @@ Resources:
2165
2169
  opacity: 1;
2166
2170
  }
2167
2171
  }
2168
- `;import{jsx as Ke,jsxs as p1}from"react/jsx-runtime";var n1={["LANDING"]:Oc,["AWAITING_PASSWORDLESS_CODE"]:pl,["WALLET_EDUCATION"]:Ec,["AWAITING_CONNECTION"]:bl,["AWAITING_CONNECT_ONLY_CONNECTION"]:Pl,["PHANTOM_INTERSTITIAL_SCREEN"]:td,["LOGIN_FAILED_SCREEN"]:qc,["AWAITING_OAUTH_SCREEN"]:Qc,["ALLOWLIST_REJECTION_SCREEN"]:il,["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"]:wl,["CONNECT_ONLY_AUTHENTICATED_SCREEN"]:yl,["EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN"]:Xl,["EMBEDDED_WALLET_CREATED_SCREEN"]:Ll,["EMBEDDED_WALLET_CONNECTING_SCREEN"]:Il,["EMBEDDED_WALLET_RECOVERY_SCREEN"]:oc,["EMBEDDED_WALLET_KEY_EXPORT_SCREEN"]:Fl,["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=Ra(l1)`
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)`
2169
2173
  position: fixed;
2170
2174
  top: 0;
2171
2175
  left: 0;
@@ -2180,7 +2184,7 @@ Resources:
2180
2184
  z-index: 999999;
2181
2185
  -webkit-backdrop-filter: blur(3px);
2182
2186
  backdrop-filter: blur(3px);
2183
- `,jd=Ra.div`
2187
+ `,jd=ka.div`
2184
2188
  display: flex;
2185
2189
  flex-direction: column;
2186
2190
  text-align: center;
@@ -2217,10 +2221,10 @@ Resources:
2217
2221
  min-height: 0;
2218
2222
  }
2219
2223
  }
2220
- `,d1=Ra.div`
2224
+ `,d1=ka.div`
2221
2225
  display: flex;
2222
2226
  flex-direction: column;
2223
2227
  align-items: center;
2224
2228
  justify-content: center;
2225
2229
  height: 100%;
2226
- `;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:ls,rpcConfig:{rpcUrls:{}},captchaEnabled:!1,_render:{inDialog:!0,inParentNodeId:null},fiatOnRamp:{useSandbox:!1}};function Jn(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 Qn=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 Qn,ka=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=ka.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(()=>{ka.delete(n)});return ka.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 Cs(()=>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:[]}},Wa=R1(void 0),I1=()=>k1(Wa);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,Ps=(e,t)=>xp(e,t),Tp,_s=(e,t)=>Tp(e,t),Pp,Ss=()=>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,V]=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),Jn(G,e.config)}),[z,ee]=Q(!0),[Oe,D]=Q({}),[Et,we]=Q(null),[nr,ao]=Q(null),[Ir,Xn]=Q(!1),[ir,Lt]=Q(),[ot,ne]=Q(),[De,so]=Q(),[So,Na]=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),Na(!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)&&(Na(!1),Da(s,3e4).catch(console.error))},[So&&B&&s]),bt(()=>{async function d(){let p=await t.getServerConfig();X(p);let u=Jn(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=Jn(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},ei=async(d,p,u)=>{let h=await t.connectors?.createWalletConnector(d,p)||null;La(h,u)};async function La(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:()=>La(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 ti=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),ei(p,u,ti)};bt(()=>{n&&a&&s===null&&t.getAuthenticatedUser().then(c)},[n,a,s,t]);let Ma=()=>{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})),ti(d),Nr("AWAITING_CONNECTION")},kp=async(d,p)=>{if(!t.connectors)throw new v("Connector not initialized");await ei(d,p,ti)},Oa=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 Oa(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 Da=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:Ma,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=>{we(()=>d)}),we(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 Ia(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 Ia(new dt(new Z)):new Ia(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=>Zn(h.address)===Zn(d)),u=s?.linkedAccounts.find(h=>h.type==="wallet"&&Zn(h.address)===Zn(d));if(!p||!await p.isConnected())ce(d),Ma();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 Da(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 Ua=new N1(Qe(rt.chainId,O.chains,O.rpcConfig)),Np=await $n(he.address,rt,Ua),Lp=await Vn(Mt,he.address,B,Np,Ua);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:cs,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:ei,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:Oa,updateWallets:()=>Lr()}))();Pp=je.recoverEmbeddedWallet;let Ip=L1(()=>({wallets:E}),[E]);return io(Xe.Provider,{value:Ao,children:io(Wa.Provider,{value:ie,children:Ep(Ta.Provider,{value:Ip,children:[e.children,Ep(vi.Provider,{value:je,children:[io(qd,{theme:{...O.appearance.palette||{}}}),io(Ls,{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:V,onLoadFailed:()=>null}):null]}),O.captchaEnabled&&io(Qd,{onLoad:()=>Xn(!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,oi as VERSION,Ne as WalletConnector,Pt as getAccessToken,$1 as useConnectWallet,q1 as useCreateWallet,B1 as useLogin,G1 as useLogout,$ as usePrivy,Pa as useWallets};
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};