@privy-io/react-auth 1.26.2-beta.1 → 1.26.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- "use strict";var Ic=Object.create;var Sr=Object.defineProperty;var Nc=Object.getOwnPropertyDescriptor;var Lc=Object.getOwnPropertyNames;var Mc=Object.getPrototypeOf,Oc=Object.prototype.hasOwnProperty;var Dc=(e,t)=>{for(var o in t)Sr(e,o,{get:t[o],enumerable:!0})},ea=(e,t,o,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of Lc(t))!Oc.call(e,n)&&n!==o&&Sr(e,n,{get:()=>t[n],enumerable:!(r=Nc(t,n))||r.enumerable});return e};var E=(e,t,o)=>(o=e!=null?Ic(Mc(e)):{},ea(t||!e||!e.__esModule?Sr(o,"default",{value:e,enumerable:!0}):o,e)),Uc=e=>ea(Sr({},"__esModule",{value:!0}),e);var Qu={};Dc(Qu,{AsExternalProvider:()=>et,ConnectorManager:()=>Ao,PrivyClient:()=>So,PrivyProvider:()=>kc,PrivyProxyProvider:()=>X,VERSION:()=>Rr,WalletConnector:()=>ke,getAccessToken:()=>Po,usePrivy:()=>F,useWallets:()=>_c});module.exports=Uc(Qu);var xr=require("@ethersproject/address"),$n=require("@ethersproject/providers"),G=require("react");var T=()=>{throw new Error("You need to wrap your application with the <PrivyProvider> initialized with your app id.")};var ta=require("ofetch"),Qe=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}]`:""}`}},Co=class extends Qe{constructor(o,r,n,i,a){super(n,i,a);this.type=o;this.status=r}},A=class extends Qe{constructor(o,r,n){super(o,r,n);this.type="client_error"}};var J=class extends Qe{constructor(o,r,n){super(o,r,n);this.type="connector_error"}},se=e=>{if(e instanceof Qe)return e;if(!(e instanceof ta.FetchError))return He(e);if(!e.response)return new Co("api_error",null,e.message,e);let{type:t,message:o,error:r,code:n}=e.data;return new Co(t||"ApiError",e.response.status,o||r,e,n)},He=e=>e instanceof Qe?e:e instanceof Error?new A(e.message,e):new A(`Internal error: ${e}`);var oa=()=>"/api/v1/sessions",ra=()=>"/api/v1/sessions/logout",na=()=>"/api/v1/sessions/fork",ia=()=>"/api/v1/sessions/fork/recover",aa=()=>"/api/v1/siwe/init",sa=()=>"/api/v1/siwe/authenticate",la=()=>"/api/v1/siwe/link",ca=()=>"/api/v1/passwordless/init",da=()=>"/api/v1/passwordless/authenticate",pa=()=>"/api/v1/passwordless/link",ua=()=>"/api/v1/passwordless_sms/init",ma=()=>"/api/v1/passwordless_sms/authenticate",ha=()=>"/api/v1/passwordless_sms/link",fa=()=>"/api/v1/oauth/init",ya=()=>"/api/v1/oauth/authenticate",ga=()=>"/api/v1/oauth/link",va=()=>"/api/v1/siwe/unlink",ba=()=>"/api/v1/passwordless/unlink",wa=()=>"/api/v1/passwordless_sms/unlink",Ca=()=>"/api/v1/oauth/unlink",xa=()=>"/api/v1/analytics_events";var Xt=class{constructor(t){this.meta={email:t}}async authenticate(){if(!this.api)throw new A("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new A("Email and email code must be set prior to calling authenticate.");try{let t=da(),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 se(t)}}async link(){if(!this.api)throw new A("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new A("Email and email code must be set prior to calling authenticate.");try{let t=pa();return await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode})}catch(t){throw se(t)}}async sendCodeEmail(t){if(!this.api)throw new A("Auth flow has no API instance");if(t&&(this.meta.email=t),!this.meta.email)throw new A("Email must be set when initialzing authentication.");try{let o=ca();return await this.api.post(o,{email:this.meta.email})}catch(o){throw se(o)}}};var Mt=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 A("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new A("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling authenticate.");if(this.meta.authorizationCode==="undefined")throw new A("User denied confirmation during OAuth flow");try{let t=ya(),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){throw se(t)}}async link(){if(!this.api)throw new A("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new A("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling link.");if(this.meta.authorizationCode==="undefined")throw new A("User denied confirmation during OAuth flow");try{let t=ga();return await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode})}catch(t){throw se(t)}}async getAuthorizationUrl(){var t;if(!this.api)throw new A("Auth flow has no API instance");if(!this.meta.provider)throw new A("Provider must be set when initialzing OAuth authentication.");try{let o=fa();return await this.api.post(o,{provider:this.meta.provider,redirect_to:window.location.href},{baseURL:(t=this.api)==null?void 0:t.fallbackApiUrl})}catch(o){throw se(o)}}};var eo=class{constructor(t){this.createSiweMessage=(t,o,r,n,i,a,l)=>`${r} wants you to sign in with your Ethereum account:
1
+ "use strict";var Ic=Object.create;var Sr=Object.defineProperty;var Nc=Object.getOwnPropertyDescriptor;var Lc=Object.getOwnPropertyNames;var Mc=Object.getPrototypeOf,Oc=Object.prototype.hasOwnProperty;var Dc=(e,t)=>{for(var o in t)Sr(e,o,{get:t[o],enumerable:!0})},oa=(e,t,o,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of Lc(t))!Oc.call(e,n)&&n!==o&&Sr(e,n,{get:()=>t[n],enumerable:!(r=Nc(t,n))||r.enumerable});return e};var E=(e,t,o)=>(o=e!=null?Ic(Mc(e)):{},oa(t||!e||!e.__esModule?Sr(o,"default",{value:e,enumerable:!0}):o,e)),Uc=e=>oa(Sr({},"__esModule",{value:!0}),e);var Qu={};Dc(Qu,{AsExternalProvider:()=>et,ConnectorManager:()=>Ao,PrivyClient:()=>So,PrivyProvider:()=>kc,PrivyProxyProvider:()=>X,VERSION:()=>Rr,WalletConnector:()=>ke,getAccessToken:()=>Po,usePrivy:()=>F,useWallets:()=>_c});module.exports=Uc(Qu);var xr=require("@ethersproject/address"),qn=require("@ethersproject/providers"),G=require("react");var T=()=>{throw new Error("You need to wrap your application with the <PrivyProvider> initialized with your app id.")};var ra=require("ofetch"),Qe=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}]`:""}`}},Co=class extends Qe{constructor(o,r,n,i,a){super(n,i,a);this.type=o;this.status=r}},A=class extends Qe{constructor(o,r,n){super(o,r,n);this.type="client_error"}};var J=class extends Qe{constructor(o,r,n){super(o,r,n);this.type="connector_error"}},se=e=>{if(e instanceof Qe)return e;if(!(e instanceof ra.FetchError))return He(e);if(!e.response)return new Co("api_error",null,e.message,e);let{type:t,message:o,error:r,code:n}=e.data;return new Co(t||"ApiError",e.response.status,o||r,e,n)},He=e=>e instanceof Qe?e:e instanceof Error?new A(e.message,e):new A(`Internal error: ${e}`);var na=()=>"/api/v1/sessions",ia=()=>"/api/v1/sessions/logout",aa=()=>"/api/v1/sessions/fork",sa=()=>"/api/v1/sessions/fork/recover",la=()=>"/api/v1/siwe/init",ca=()=>"/api/v1/siwe/authenticate",da=()=>"/api/v1/siwe/link",pa=()=>"/api/v1/passwordless/init",ua=()=>"/api/v1/passwordless/authenticate",ma=()=>"/api/v1/passwordless/link",ha=()=>"/api/v1/passwordless_sms/init",fa=()=>"/api/v1/passwordless_sms/authenticate",ya=()=>"/api/v1/passwordless_sms/link",ga=()=>"/api/v1/oauth/init",va=()=>"/api/v1/oauth/authenticate",ba=()=>"/api/v1/oauth/link",wa=()=>"/api/v1/siwe/unlink",Ca=()=>"/api/v1/passwordless/unlink",xa=()=>"/api/v1/passwordless_sms/unlink",Ea=()=>"/api/v1/oauth/unlink",Ta=()=>"/api/v1/analytics_events";var eo=class{constructor(t){this.meta={email:t}}async authenticate(){if(!this.api)throw new A("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new A("Email and email code must be set prior to calling authenticate.");try{let t=ua(),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 se(t)}}async link(){if(!this.api)throw new A("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new A("Email and email code must be set prior to calling authenticate.");try{let t=ma();return await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode})}catch(t){throw se(t)}}async sendCodeEmail(t){if(!this.api)throw new A("Auth flow has no API instance");if(t&&(this.meta.email=t),!this.meta.email)throw new A("Email must be set when initialzing authentication.");try{let o=pa();return await this.api.post(o,{email:this.meta.email})}catch(o){throw se(o)}}};var Mt=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 A("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new A("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling authenticate.");if(this.meta.authorizationCode==="undefined")throw new A("User denied confirmation during OAuth flow");try{let t=va(),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){throw se(t)}}async link(){if(!this.api)throw new A("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new A("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling link.");if(this.meta.authorizationCode==="undefined")throw new A("User denied confirmation during OAuth flow");try{let t=ba();return await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode})}catch(t){throw se(t)}}async getAuthorizationUrl(){var t;if(!this.api)throw new A("Auth flow has no API instance");if(!this.meta.provider)throw new A("Provider must be set when initialzing OAuth authentication.");try{let o=ga();return await this.api.post(o,{provider:this.meta.provider,redirect_to:window.location.href},{baseURL:(t=this.api)==null?void 0:t.fallbackApiUrl})}catch(o){throw se(o)}}};var to=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.wallet=t}get meta(){return{connectorType:this.wallet.connectorType,walletClientType:this.wallet.walletClientType}}async authenticate(){if(!this.api)throw new A("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign(),r=await this.api.post(sa(),{message:t,signature:o});return{user:r.user,token:r.token,refresh_token:r.refresh_token,is_new_user:r.is_new_user}}catch(t){throw se(t)}}async link(){if(!this.api)throw new A("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign();return await this.api.post(la(),{message:t,signature:o})}catch(t){throw se(t)}}async sign(){if(!this.api)throw new A("Auth flow has no API instance");if(this.preparedMessage||await this.buildSiweMessage(),!this.preparedMessage)throw new A("Could not prepare SIWE message");let t=await this.wallet.sign(this.preparedMessage);return{message:this.preparedMessage,signature:t}}async buildSiweMessage(){if(!this.api)throw new A("Auth flow has no API instance");let t=this.wallet.address,o=this.wallet.chainId.replace("eip155:",""),r=await this.api.post(aa(),{address:t});return this.preparedMessage=this.prepareMessage(o,t,r.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 to=class{constructor(t){this.meta={phoneNumber:t}}async authenticate(){if(!this.api)throw new A("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new A("phone number and sms code must be set prior to calling authenticate.");try{let t=ma(),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 se(t)}}async link(){if(!this.api)throw new A("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new A("phone number and sms code must be set prior to calling authenticate.");try{let t=ha();return await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode})}catch(t){throw se(t)}}async sendSmsCode(t){if(!this.api)throw new A("Auth flow has no API instance");if(t&&(this.meta.phoneNumber=t),!this.meta.phoneNumber)throw new A("phone nNumber must be set when initialzing authentication.");try{let o=ua();return await this.api.post(o,{phoneNumber:this.meta.phoneNumber})}catch(o){throw se(o)}}};function Et(e){return new Date(e*1e3)}function Bc(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:Et(o.verified_at),chainType:o.chain_type,walletClient:o.wallet_client};t.push(n);break;case"email":let i={address:o.address,type:o.type,verifiedAt:Et(o.verified_at)};t.push(i);break;case"phone":let a={number:o.phoneNumber,type:o.type,verifiedAt:Et(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:Et(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:Et(o.verified_at)};t.push(s);break;case"discord_oauth":let p={subject:o.subject,username:o.username,email:o.email,type:o.type,verifiedAt:Et(o.verified_at)};t.push(p);break;case"github_oauth":let f={subject:o.subject,username:o.username,name:o.name,email:o.email,type:o.type,verifiedAt:Et(o.verified_at)};t.push(f);break;case"apple_oauth":let h={subject:o.subject,email:o.email,type:o.type,verifiedAt:Et(o.verified_at)};t.push(h);break;default:console.warn(`Unrecognized account type: ${r}. Please consider upgrading the Privy SDK.`)}}return t}function Ot(e,t){return e.sort((o,r)=>r.verifiedAt.getTime()-o.verifiedAt.getTime()),e.find(o=>o.type===t)}var ee=e=>e==null?void 0:e.linkedAccounts.find(t=>t.type==="wallet"&&t.walletClient==="privy");function Tt(e){if(!e)return null;let t=Bc(e.linked_accounts),o=Ot(t,"wallet"),r=Ot(t,"email"),n=Ot(t,"phone"),i=Ot(t,"google_oauth"),a=Ot(t,"twitter_oauth"),l=Ot(t,"discord_oauth"),s=Ot(t,"github_oauth"),p=Ot(t,"apple_oauth");return{id:e.id,createdAt:Et(e.created_at),linkedAccounts:t,email:r&&{address:r==null?void 0:r.address},phone:n&&{number:n==null?void 0:n.number},wallet:o&&{address:o.address,chainType:o.chainType,chainId:o.chainId,walletClient:o.walletClient},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:p&&{subject:p.subject,email:p.email}}}var ci=require("@ethersproject/address"),cs=E(require("eventemitter3"));var Ea="1.26.2-beta.1";var Je="4df5e2316331463a9130964bd6078dfa",kr="https://auth.privy.io",Ta=1e4,ut=1400,Rr=Ea;var xo="privy:token",Wr="privy:refresh_token",Ko="privy:session_transfer_token",Zn="privy:connectors",Qn="privy:connections",Pa="walletconnect",_a=3e4,Ve=1;var Jn=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)}},Xn=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 Gc(){return typeof window<"u"&&window.localStorage?new Xn:new Jn}var z=Gc();var Aa=require("libphonenumber-js/min");var Sa=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,}))$/),ka=e=>(0,Aa.isPossiblePhoneNumber)(String(e),"US"),Ra=(e,t)=>{let o=e.slice(0),r=[];for(;o.length;)r.push(o.splice(0,t));return r},Dt=(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}`},Hc=e=>new Promise(t=>setTimeout(t,e)),Wa=(e,t={})=>{let o=t.delayMs||40,r=t.maxAttempts||1e3;return new Promise(async(n,i)=>{let a=!1,l=0;for(;!a&&l<r;)e().then(()=>{a=!0,n()},(...s)=>{a=!0,i(...s)}),l+=1,await Hc(o);a||i(new Error("Exceeded max attempts before resolving function"))})},Ir=(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 ei=e=>e.replace(/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g,""),Yo=e=>typeof e=="string"?e:"0x"+e.toString(16);async function Ia(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=[];Nr()&&i.push("metamask"),Xe()&&i.push("phantom"),o.ethereum&&o.ethereum.isBraveWallet&&i.push("brave"),r(i)}})}function ti(e){return`eip155:${String(Number(e))}`}var Ha=E(require("@coinbase/wallet-sdk"));var Zo=require("react/jsx-runtime"),ze=({style:e,...t})=>(0,Zo.jsxs)("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:[(0,Zo.jsx)("rect",{width:"1024",height:"1024",fill:"#0052FF",rx:100,ry:100}),(0,Zo.jsx)("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"})]});var _t=require("@ethersproject/address"),ni=require("@ethersproject/providers"),Ga=E(require("eventemitter3"));var Ma=require("@ethersproject/bytes"),Oa=require("@ethersproject/providers"),Da=require("@ethersproject/strings"),Ua=E(require("eventemitter3"));var Vc=["eth_sign","eth_populateTransactionRequest","eth_signTransaction","personal_sign"],Na=e=>Vc.includes(e);var La=require("@ethersproject/logger");var Eo=class extends J{constructor(){super("Wallet timeout");this.type="wallet_error"}},ro=class extends J{constructor(){super("User rejected connection");this.type="wallet_error"}},$e=e=>{if(e instanceof J)return e;if((e==null?void 0:e.code)&&(e==null?void 0:e.reason)){let t=new To(e);return e.code===La.ErrorCode.ACTION_REJECTED&&(t.details=oo.E4001_USER_REJECTED_REQUEST),t}return e!=null&&e.code?new To(e):new J("Unknown connector error",e)},oi=class extends Qe{constructor(o,r,n){super(o);this.type="provider_error";this.code=r,this.data=n}},To=class extends oi{constructor(o){var i,a,l;let r=o;super(r.message,r.code,r.data);let n=Object.values(oo).find(s=>s.eipCode===r.code);this.details=n||oo.UNKNOWN_ERROR,r.code===-32002&&((i=r.message)!=null&&i.includes("already pending for origin")?(a=r.message)!=null&&a.includes("wallet_requestPermissions")?this.details=oo.E32002_CONNECTION_ALREADY_PENDING:this.details=oo.E32002_REQUEST_ALREADY_PENDING:(l=r.message)!=null&&l.includes("Already processing")&&r.message.includes("eth_requestAccounts")&&(this.details=oo.E32002_WALLET_LOCKED))}},zc={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}},$c={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}},qc={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}},oo={UNKNOWN_ERROR:{eipCode:0,message:"Unknown error",detail:"Unknown error",retryable:!0},...qc,...$c},Pt={...zc,...oo};var jc=12e4,ri=(e=new Eo,t=jc)=>new Promise((o,r)=>setTimeout(()=>{r(e)},t)),X=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=>{var r;(r=this.walletProvider)==null||r.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 J(`A wallet request of type ${t.method} was made before setting a wallet provider.`);return Promise.race([this.walletProvider.request(t),ri()]).catch(o=>{throw $e(o)})}},no=class extends Error{constructor(o,r,n){super(o);this.code=r,this.data=n}},Lr=class extends Ua.default{constructor(o,r,n=1){super();this.walletProxy=o,this.address=r,this.chainId=n,this.infuraProvider=new Oa.InfuraProvider(n,Je)}async handleSendTransaction(o){if(!o.params||!Array.isArray(o.params))throw new no(`Invalid params for ${o.method}`,4200);let r=o.params[0];if(!await Po()||!this.address)throw new no("Disconnected",4900);return(await Fa(r)).transactionHash}handleSwitchEthereumChain(o){if(!o.params||!Array.isArray(o.params))throw new no(`Invalid params for ${o.method}`,4200);let r=o.params[0];this.chainId=Number(r),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],n=(0,Ma.isHexString)(r)?(0,Da.toUtf8String)(r):r;return await Ba(n)}async handleEstimateGas(o){if(!o.params||!Array.isArray(o.params))throw new Error("Invalid params for eth_estimateGas");let r={...o.params[0],chainId:Yo(this.chainId)};return delete r.from,this.infuraProvider.send("eth_estimateGas",[r])}async request(o){switch(console.debug("Embedded1193Provider.request() called with args",o),o.method){case"eth_accounts":return this.address?[this.address]:[];case"eth_chainId":return Yo(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(Na(o.method)){let r=await Po();if(!r||!this.address)throw new no("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 no("Disconnected",4900)}}else return this.infuraProvider.send(o.method,o.params)}async connect(){let o=await Po();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}}},et=class extends X{constructor(o){super(o)}},Ut=class extends X{constructor(t){super(t)}sendAsync(t,o){throw new Error("sendAsync is no longer supported by EIP-1193. Use the request method instead.")}};var ke=class extends Ga.default{constructor(o){super();this.onAccountsChanged=o=>{this.syncAccounts(o)};this.onChainChanged=o=>{this.wallets.forEach(r=>{r.chainId=ti(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.connected=!1,this.initialized=!1}buildConnectedWallet(o,r){let n=async()=>!!this.wallets.find(i=>(0,_t.getAddress)(i.address)===(0,_t.getAddress)(o));return{address:(0,_t.getAddress)(o),chainId:r,connectedAt:Date.now(),walletClientType:this.walletClientType,connectorType:this.connectorType,isConnected:n,getEthereumProvider:async()=>{if(!await n())throw new J("Wallet is not currently connected.");return this.proxyProvider},getEthersProvider:async()=>{if(!await n())throw new J("Wallet is not currently connected.");return new ni.Web3Provider(new et(this.proxyProvider))},getWeb3jsProvider:async()=>{if(!await n())throw new J("Wallet is not currently connected.");return new Ut(this.proxyProvider)},sign:async i=>{if(!await n())throw new J("Wallet is not currently connected.");return await this.sign(i)},disconnect:()=>{this.disconnect()}}}async syncAccounts(o){let r=o;if(r===void 0){let l=await this.proxyProvider.request({method:"eth_accounts"});Array.isArray(l)&&(r=l)}if(r===void 0||!Array.isArray(r)||r.length<=0)return;let n=[],i=await this.proxyProvider.request({method:"eth_chainId"}),a=ti(i);for(let l of r)n.find(s=>(0,_t.getAddress)(s.address)===(0,_t.getAddress)(l))||n.push(this.buildConnectedWallet((0,_t.getAddress)(l),a));Mr(n,this.wallets)||(this.wallets=n,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=>(0,_t.getAddress)(n)===(0,_t.getAddress)(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 ni.Web3Provider(new et(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 Kc=e=>{let t=`https://mainnet.infura.io/v3/${Je}`,o=1;return e.makeWeb3Provider(t,o)},Or,Dr=class extends ke{constructor(){super("coinbase_wallet");this.connectorType="coinbase_wallet";this.proxyProvider=new X,this.subscribeListeners(),Or||(Or=new Ha.default({appName:"Privy",darkMode:!1,headlessMode:!1})),this.proxyProvider.setWalletProvider(Kc(Or)),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(){Or.disconnect()}get walletBranding(){return{name:"Coinbase Wallet",icon:ze}}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(o.length===0)throw new J("Unable to retrieve accounts");this.connected=!0,await this.syncAccounts(o)}catch(o){throw $e(o)}}};var ii=require("react/jsx-runtime"),Bt=({style:e,...t})=>(0,ii.jsx)("svg",{width:"16",height:"17",viewBox:"0 0 16 17",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"1.25rem",width:"1.25rem",...e},...t,children:(0,ii.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.99555 0.929932C-1.12055 1.31799 -0.499722 9.15734 2.17445 8.76915C0.0807959 10.5544 -0.960455 16.6416 6.01654 16.0265C10.6356 15.9489 15.5635 12.2232 15.5635 8.1095C15.5635 2.63748 10.7516 0.929932 7.99555 0.929932ZM9.47052 7.53055C9.47052 8.49933 8.81856 9.28468 8.01433 9.28468C7.2101 9.28468 6.55814 8.49933 6.55814 7.53055C6.55814 6.56176 7.2101 5.77641 8.01433 5.77641C8.81856 5.77641 9.47052 6.56176 9.47052 7.53055ZM12.3171 9.28468C13.1213 9.28468 13.7733 8.49933 13.7733 7.53055C13.7733 6.56176 13.1213 5.77641 12.3171 5.77641C11.5129 5.77641 10.8609 6.56176 10.8609 7.53055C10.8609 8.49933 11.5129 9.28468 12.3171 9.28468Z",fill:t.color||"var(--privy-color-foreground-3)"})});var Ur=class extends ke{constructor(o){super("privy");this.connectorType="embedded";this.proxyProvider=o,this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return await this.isConnected()?(await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[Yo((o==null?void 0:o.chainId)||"0x1")]}),this.getConnectedWallet()):null}get walletBranding(){return{name:"Privy Wallet",icon:Bt}}disconnect(){this.connected=!1}async promptConnection(){}};var Yc=require("@ethersproject/address"),Zc=require("@ethersproject/providers"),Va=require("react-device-detect");var ve=require("react/jsx-runtime"),be=({style:e,...t})=>(0,ve.jsxs)("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:[(0,ve.jsx)("style",{children:".s1{stroke-linecap:round;stroke-linejoin:round}.s2{fill:#e4761b;stroke:#e4761b}.s3{fill:#f6851b;stroke:#f6851b}"}),(0,ve.jsx)("path",{fill:"#e2761b",stroke:"#e2761b",className:"s1",d:"m274.1 35.5-99.5 73.9L193 65.8z"}),(0,ve.jsx)("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"}),(0,ve.jsx)("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"}),(0,ve.jsx)("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"}),(0,ve.jsx)("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"}),(0,ve.jsx)("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"}),(0,ve.jsx)("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"}),(0,ve.jsx)("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"}),(0,ve.jsx)("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"}),(0,ve.jsx)("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"}),(0,ve.jsx)("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"}),(0,ve.jsx)("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 Br=class extends ke{constructor(){super("metamask");this.connectorType="injected";this.proxyProvider=new X,this.subscribeListeners();let o=window,r=o.ethereum,n=o.ethereum.providers||[];for(let i of n)if(i.isMetaMask){r=i;break}this.proxyProvider.setWalletProvider(r),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{!Va.isMobile&&Nr()&&await this.proxyProvider.request({method:"wallet_requestPermissions",params:[{eth_accounts:{}}]});let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0)throw new J("Unable to retrieve accounts");await this.syncAccounts(o)}catch(o){throw $e(o)}}};var qe=require("react/jsx-runtime"),mt=({style:e,...t})=>(0,qe.jsxs)("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:[(0,qe.jsx)("rect",{width:"28",height:"28",rx:"6",fill:"url(#paint0_linear_1765_9937)"}),(0,qe.jsx)("path",{d:"M24.0223 14.1704H21.5542C21.5542 9.14083 17.4627 5.06372 12.4151 5.06372C7.43008 5.06372 3.37717 9.04101 3.27798 13.9845C3.17536 19.0945 7.98653 23.5318 13.1154 23.5318H13.7605C18.2822 23.5318 24.3426 20.0047 25.2895 15.7072C25.4643 14.9151 24.8364 14.1704 24.0223 14.1704ZM8.74752 14.3945C8.74752 15.0671 8.19544 15.6172 7.52045 15.6172C6.84545 15.6172 6.29341 15.0669 6.29341 14.3945V12.4165C6.29341 11.7439 6.84545 11.1938 7.52045 11.1938C8.19544 11.1938 8.74752 11.7439 8.74752 12.4165V14.3945ZM13.0083 14.3945C13.0083 15.0671 12.4563 15.6172 11.7813 15.6172C11.1063 15.6172 10.5543 15.0669 10.5543 14.3945V12.4165C10.5543 11.7439 11.1065 11.1938 11.7813 11.1938C12.4563 11.1938 13.0083 11.7439 13.0083 12.4165V14.3945Z",fill:"url(#paint1_linear_1765_9937)"}),(0,qe.jsxs)("defs",{children:[(0,qe.jsxs)("linearGradient",{id:"paint0_linear_1765_9937",x1:"14",y1:"0",x2:"14",y2:"28",gradientUnits:"userSpaceOnUse",children:[(0,qe.jsx)("stop",{stopColor:"#534BB1"}),(0,qe.jsx)("stop",{offset:"1",stopColor:"#551BF9"})]}),(0,qe.jsxs)("linearGradient",{id:"paint1_linear_1765_9937",x1:"14.2976",y1:"5.06372",x2:"14.2976",y2:"23.5318",gradientUnits:"userSpaceOnUse",children:[(0,qe.jsx)("stop",{stopColor:"white"}),(0,qe.jsx)("stop",{offset:"1",stopColor:"white",stopOpacity:"0.82"})]})]})]});var Fr=class extends ke{constructor(){super("phantom");this.connectorType="injected";this.proxyProvider=new X,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:mt}}disconnect(){console.warn("Phantom does not support programmatic disconnect.")}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});await this.syncAccounts(o)}catch(o){throw $e(o)}}};var ls=E(require("@walletconnect/web3-provider")),Jo=require("react-device-detect");var tt=require("react");var $a=require("react/jsx-runtime");function za(e){return(0,$a.jsx)("link",{rel:"prefetch",href:e.src})}var Gr=require("react/jsx-runtime"),At="LANDING",qa=(0,tt.createContext)({ready:!1,app:null,currentScreen:At,lastScreen:At,navigate:T,navigateBack:T,setModalData:T}),ja=e=>{var f,h,u;let t=e.appConfig,o=e.authenticated,r=e.visible,[n,i]=(0,tt.useState)(e.initialScreen||At),[a,l]=(0,tt.useState)(e.initialScreen||At);(0,tt.useEffect)(()=>{o||i(At)},[o]),(0,tt.useEffect)(()=>{r||(l(At),i(At))},[r]),(0,tt.useEffect)(()=>{e.initialScreen&&n===At&&(i(e.initialScreen),l(e.initialScreen))},[e.initialScreen]);let s=e.initialScreen&&n===At?e.initialScreen:n,p={ready:!!(t!=null&&t.id),app:t,data:e.data,setModalData:e.setModalData,currentScreen:s,lastScreen:a,navigate:C=>{l(n),i(C)},navigateBack:()=>{i(a)}};return(0,Gr.jsxs)(qa.Provider,{value:p,children:[(typeof((f=t==null?void 0:t.appearance)==null?void 0:f.logo)=="string"||((u=(h=t==null?void 0:t.appearance)==null?void 0:h.logo)==null?void 0:u.type)==="img")&&(0,Gr.jsx)(za,{src:typeof t.appearance.logo=="string"?t.appearance.logo:t.appearance.logo.props.src}),e.children]})},w=()=>(0,tt.useContext)(qa);var St=require("react/jsx-runtime"),_o=({style:e,...t})=>{let{app:o}=w();return(0,St.jsxs)("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:[(0,St.jsx)("rect",{width:"28",height:"28",rx:"3",fill:(o==null?void 0:o.appearance.palette.colorScheme)==="dark"?"#3396ff":"#141414"}),(0,St.jsx)("g",{clipPath:"url(#clip0_1765_9946)",children:(0,St.jsx)("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"})}),(0,St.jsx)("defs",{children:(0,St.jsx)("clipPath",{id:"clip0_1765_9946",children:(0,St.jsx)("rect",{width:"20",height:"12.2531",fill:"white",transform:"translate(4 8)"})})})]})};var Ka={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 Ya={id:421613,name:"Arbitrum Goerli",network:"arbitrum-goerli",nativeCurrency:{name:"Arbitrum Goerli Ether",symbol:"ETH",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 Za={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 Qa={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 Ja={id:10,name:"Optimism",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 Xa={id:420,name:"Optimism Goerli",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 es={id:137,name:"Polygon",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 ts={id:80001,name:"Polygon 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 os=[Ka,Ya,Za,Qa,Ja,Xa,es,ts];var ai=require("@walletconnect/browser-utils"),Hr=require("react-device-detect");var Qo=e=>{let t;try{t=new URL(e).hostname}catch{return}for(let[o,r]of Object.entries(si))if(r.hostname===t)return{walletClientType:o,entry:r}};var si={rainbow:{id:"1ae92b26df02f0abca6304df07debccd18262fdf5fe82daa81593582dac9a369",displayName:"Rainbow",image_id:"7a33d7f1-3d12-4b5c-f3ee-5cd83cb1b500",hostname:"rainbow.me",mobile:{universal:"https://rnbwapp.com"}},trust:{id:"4622a2b2d6af1c9844944291e5e7351a6aa24cd7b23099efac1b2fd875da31a0",displayName:"Trust",image_id:"0528ee7e-16d1-4089-21e3-bbfb41933100",hostname:"trustwallet.com",mobile:{universal:"https://link.trustwallet.com"}},uniswap:{id:"c03dfee351b6fcc421b4494ea33b9d4b92a984f87aa76d1663bb28705e95034a",displayName:"Uniswap",image_id:"bff9cf1f-df19-42ce-f62a-87f04df13c00",hostname:"uniswap.org",mobile:{universal:"https://uniswap.org/app"}},metamask:{id:"c57ca95b47569778a828d19178114f4db188b89b763c899ba0be274e97267d96",displayName:"MetaMask",image_id:"5195e9db-94d8-4579-6f11-ef553be95100",hostname:"metamask.io",mobile:{native:"metamask:"}},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"}},zerion:{id:"ecc4036f814562b41a5268adc86270fba1365471402006302e70169465b7ac18",displayName:"Zerion",image_id:"f216b371-96cf-409a-9d88-296392b85800",hostname:"zerion.io",mobile:{universal:"https://wallet.zerion.io"}},bitkeep:{id:"38f5d18bd8522c244bdd70cb4a68e0e718865155811c043f052fb9f1c51de662",displayName:"BitKeep",image_id:"3f7075d0-4ab7-4db5-404d-3e4c05e6fe00",hostname:"bitkeep.com",mobile:{universal:"https://bkapp.vip"}},unstoppable:{id:"7e90b95230bc462869bbb59f952273d89841e1c76bcc5319898e08c9f34bd4cd",displayName:"Unstoppable",image_id:"5c38b22c-adb9-4899-3252-6e3d71458500",hostname:"unstoppable.money",mobile:{universal:"https://unstoppable.money"}},omni:{id:"afbd95522f4041c71dd4f1a065f971fd32372865b416f95a0b1db759ae33f2a7",displayName:"Omni",image_id:"2cd67b4c-282b-4809-e7c0-a88cd5116f00",hostname:"omni.app",mobile:{universal:"https://links.omni.app"}},mathwallet:{id:"7674bb4e353bf52886768a3ddc2a4562ce2f4191c80831291218ebd90f5f5e26",displayName:"MathWallet",image_id:"26a8f588-3231-4411-60ce-5bb6b805a700",hostname:"mathwallet.org",mobile:{universal:"https://www.mathwallet.org"}},bitpay:{id:"ccb714920401f7d008dbe11281ae70e3a4bfb621763b187b9e4a3ce1ab8faa3b",displayName:"BitPay",image_id:"97d4429f-eaf0-4302-87f5-9d26d46fe700",hostname:"bitpay.com",mobile:{universal:"https://link.bitpay.com/wallet"}},"1inch":{id:"2863183c3299d820fb9a4cb8aab4a34f50380c9992e8be871fd60a62e8d36481",displayName:"1inch",image_id:"dce1ee99-403f-44a9-9f94-20de30616500",hostname:"1inch.io",mobile:{universal:"https://wallet.1inch.io"}},eidoo:{id:"efba9ae0a9e0fdd9e3e055ddf3c8e75f294babb8aea3499456eff27f771fda61",displayName:"Eidoo",image_id:"ef5b8bcf-00d5-457d-e161-9911e4788700",hostname:"eidoo.io",mobile:{universal:"https://eidoo.io/crypto-wallet"}},coin98:{id:"b021913ba555948a1c81eb3d89b372be46f8354e926679de648e4fa2938bed3e",displayName:"Coin98",image_id:"dee547be-936a-4c92-9e3f-7a2350a62e00",hostname:"coin98.com",mobile:{universal:"https://coin98.com"}},alphawallet:{id:"138f51c8d00ac7b9ac9d8dc75344d096a7dfe370a568aa167eabc0a21830ed98",displayName:"AlphaWallet",image_id:"5b1cddfb-056e-4e78-029a-54de5d70c500",hostname:"alphawallet.com",mobile:{universal:"https://aw.app"}},rwallet:{id:"b13fcc7e3500a4580c9a5341ed64c49c17d7f864497881048eb160c089be5346",displayName:"RWallet",image_id:"a883229c-26cb-4c19-9b34-1f0ed4012a00",hostname:"rsk.co",mobile:{universal:"https://www.rwallet.app"}},plasmapay:{id:"13c6a06b733edf51784f669f508826b2ab0dc80122a8b5d25d84b17d94bbdf70",displayName:"PlasmaPay",image_id:"466c8fd0-fcec-4621-b94f-e91ce1439f00",hostname:"plasmapay.com",mobile:{universal:"https://plasmapay.com/"}},o3wallet:{id:"0aafbedfb8eb56dae59ecc37c9a5388509cf9c082635e3f752581cc7128a17c0",displayName:"O3Wallet",image_id:"e1c7c6af-c731-463e-55f0-5e686e9f6200",hostname:"o3.network",mobile:{universal:"https://o3.network"}},hashkey_me:{id:"761d3d98fd77bdb06e6c90092ee7071c6001e93401d05dcf2b007c1a6c9c222c",displayName:"HashKey Me",image_id:"72734fac-9500-4c2c-81ba-678f7fc32700",hostname:"me.hashkey.com",mobile:{universal:"https://me.hashkey.com"}},defiant:{id:"1986e7c874bb906f057d5d64a4806c004e021689536e5228c74d64a6058e8bac",displayName:"Defiant",image_id:"11a96ca4-3592-42ae-c781-2b7265ec9200",hostname:"www.defiantapp.tech",mobile:{universal:"https://defiantapp.tech/"}},essentials:{id:"717911f4db0c5eda0e02e76ed179b7940ba1eefffdfb3c9e6540696226860da0",displayName:"Essentials",image_id:"04a6bfed-d80e-4f7b-0516-261f86aa4000",hostname:"elastos.org",mobile:{universal:"https://essentials.elastos.net"}},stasis:{id:"9d6c614d1995741d5313f1f3dbf1f66dcba694de782087d13b8721822502692f",displayName:"Stasis",image_id:"7ae753bc-a754-450c-2d90-2c5521734400",hostname:"stasis.net",mobile:{universal:"https://app.stasis.net"}},julwallet:{id:"a6ffb821a3c32d36fc9d29e29c2ff79a0cd1db0bca453714777846ddf3fdff76",displayName:"JulWallet",image_id:"cabd50de-22fa-487b-ce68-2c63de8bb800",hostname:"justliquidity.org",mobile:{universal:"https://justliquidity.org"}},tangem:{id:"76745388a50e6fea982c4dee2a3ad61a8aa417668be870754689caa8a7506c93",displayName:"Tangem",image_id:"8a5b6e94-e378-458d-bf2e-017cc7958e00",hostname:"tangem.com",mobile:{universal:"https://app.tangem.com"}},secux:{id:"6464873279d46030c0b6b005b33da6be5ed57a752be3ef1f857dc10eaf8028aa",displayName:"SecuX",image_id:"6013a9a1-4a67-45bb-fc24-27c11eb13900",hostname:"secuxtech.com",mobile:{universal:"https://wsweb.secuxtech.com"}},linen:{id:"dd8ee41915d967e547c80266e883d77ee808427405f4e8026a85ac1308104221",displayName:"Linen",image_id:"aff3e4e1-92a9-4066-f48f-3591947cf200",hostname:"linen.app",mobile:{universal:"https://linen.app/"}},ambire:{id:"2c81da3add65899baeac53758a07e652eea46dbb5195b8074772c62a77bbf568",displayName:"Ambire",image_id:"c39b3a16-1a38-4588-f089-cb7aeb584700",hostname:"www.ambire.com",mobile:{universal:"https://mobile.ambire.com"}},obvious:{id:"031f0187049b7f96c6f039d1c9c8138ff7a17fd75d38b34350c7182232cc29aa",displayName:"Obvious",image_id:"61abe2ca-b06d-4a8b-de3e-8326f523e900",hostname:"obvious.technology",mobile:{universal:"https://wallet.obvious.technology"}},easypocket:{id:"244a0d93a45df0d0501a9cb9cdfb4e91aa750cfd4fc88f6e97a54d8455a76f5c",displayName:"EasyPocket",image_id:"a9fcf1d1-3b2c-4226-0fb9-a6c8f2647300",hostname:"easypocket.app",mobile:{universal:"https://wallet.easypocket.app"}},rice_wallet:{id:"c40b9bcef32fa6ce4e0df98be1420628bbc4957646f742380fe618fcb4ab74f1",displayName:"RICE Wallet",image_id:"df94578e-19be-4f00-258f-2470343e7b00",hostname:"ricewallet.io",mobile:{universal:"https://ricewallet.io"}},safemoon:{id:"a0e04f1086aac204d4ebdd5f985c12ed226cd0006323fd8143715f9324da58d1",displayName:"SafeMoon",image_id:"ea0140c7-787c-43a4-838f-d5ab6a342000",hostname:"safemoon.com",mobile:{universal:"https://safemoon.com/wc"}},simplehold:{id:"dc5415b6ea8114db518ae91195b027d690a11a1d2bfdd1a904e93c5cb746380e",displayName:"SimpleHold",image_id:"a9f1ba96-b658-4d13-f71f-226b6389f000",hostname:"simplehold.io",mobile:{universal:"https://simplehold.io"}},bitizen:{id:"41f20106359ff63cf732adf1f7dc1a157176c9b02fd266b50da6dcc1e9b86071",displayName:"Bitizen",image_id:"75dd1471-77e9-4811-ce57-ec8fc980ec00",hostname:"bitizen.org",mobile:{universal:"https://bitizen.org/wallet"}},slavi_wallet:{id:"b823fb0d7228ef8e3c0bc9607df9ed79dae2ab3a2811d33f22ade4f573c18232",displayName:"Slavi Wallet",image_id:"282ce060-0beb-4236-b7b0-1b34cc6c8f00",hostname:"slavi.io",mobile:{universal:"https://www.slaviwallet.io"}},nufinetes:{id:"dccbd717df77b395445cc6080e01fffada9d8b92dacfda312a26c70c2e9af673",displayName:"nufinetes",image_id:"70080bd7-9858-4720-cf74-8f74cd74cb00",hostname:"www.nufinetes.com",mobile:{universal:"https://apple.vimworld.org"}},now_wallet:{id:"c482dfe368d4f004479977fd88e80dc9e81107f3245d706811581a6dfe69c534",displayName:"NOW Wallet",image_id:"b6ee4efc-f53e-475b-927b-a7ded6211700",hostname:"walletnow.app",mobile:{universal:"https://walletnow.app.link"}},blocto:{id:"14e7176536cb3706e221daaa3cfd7b88b7da8c7dfb64d1d241044164802c6bdd",displayName:"Blocto",image_id:"374258d3-c749-4f37-7815-77e61f798c00",hostname:"blocto.io",mobile:{universal:"https://blocto.app"}},timeless:{id:"9751385960bca290c13b443155288f892f62ee920337eda8c5a8874135daaea8",displayName:"Timeless",image_id:"32e89601-0490-42fc-0cc4-8627d62a2000",hostname:"timelesswallet.xyz",mobile:{universal:"https://timelesswallet.xyz"}},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"}},card:{id:"11c5487e4d8dd8bf32d4c92222363df8296a27307b2531be1e25770365392ecb",displayName:"Card",image_id:"325428cf-c212-4d83-a434-7f48902d2c00",hostname:"cardstack.com",mobile:{universal:"https://wallet.cardstack.com"}},mew_wallet:{id:"f5b4eeb6015d66be3f5940a895cbaa49ef3439e518cd771270e6b553b48f31d2",displayName:"MEW wallet",image_id:"e2024511-2c9b-46d7-3111-52df3d241700",hostname:"mewwallet.com",mobile:{universal:"https://mewwallet.com"}},pltwallet:{id:"576c90ceaea34f29ff0104837cf2b2e23d201be43be1433feeb18d375430e1fd",displayName:"PLTwallet",image_id:"a5d9dd15-8cef-42de-8bed-09e01a8b0200",hostname:"pltwallet.io",mobile:{universal:"https://pltwallet.io/"}},avacus:{id:"94f785c0c8fb8c4f38cd9cd704416430bcaa2137f27e1468782d624bcd155a43",displayName:"Avacus",image_id:"a7106965-91cc-4a73-4688-c5c72ae0ed00",hostname:"avacus.cc",mobile:{universal:"https://avacus.app.link"}},bitski:{id:"3b9f67c2c0887f71e4f9ba1bd2bf5b4eb6cda94419abd3f0c5c12931a60928b0",displayName:"Bitski",image_id:"94d94cb5-a94f-47cf-70e6-fe8d3f1c3700",hostname:"bitski.com",mobile:{universal:"https://wallet.bitski.com/walletconnect/wc"}},hippowallet:{id:"664b505fea4c2117b8a55c054ef209664e0a68ddaafd7534df739f97a293fa1d",displayName:"HippoWallet",image_id:"f9570968-45f7-47c1-3189-98cf60e25c00",hostname:"hippowallet.io",mobile:{universal:"https://hippowallet.io"}},edge:{id:"0c5bba82e70a2b62405871af809020a077d110d765c0798eb660ad5d3131b328",displayName:"Edge",image_id:"f601bc29-4298-422f-dbf7-34dac2884f00",hostname:"edge.app",mobile:{universal:"https://deep.edge.app/wc"}},assure:{id:"792fbacfe787d67595dd4eb38ac308e14b3bbc810393db56f477a92e5ac8764b",displayName:"Assure",image_id:"64db7104-c8b7-44ea-e102-11ce87124200",hostname:"www.assure.pro",mobile:{universal:"https://www.assure.pro/Official"}},enjin_wallet:{id:"bdc9433ffdaee55d31737d83b931caa1f17e30666f5b8e03eea794bac960eb4a",displayName:"Enjin Wallet",image_id:"add9626b-a5fa-4c12-178c-e5584e6dcd00",hostname:"enjin.io",mobile:{universal:"https://deeplink.wallet.enjin.io/"}},slingshot:{id:"d23de318f0f56038c5edb730a083216ff0cce00c1514e619ab32231cc9ec484b",displayName:"Slingshot",image_id:"10c75467-6612-48ad-b97b-63985e922200",hostname:"slingshot.finance",mobile:{universal:"https://app.slingshot.finance"}},coinstats:{id:"7e94e75c90964a69ea375b92214f50c4223dfbfa4913a3733b615444b322f687",displayName:"CoinStats",image_id:"f989ab84-650b-4ad5-c342-77f3334f1b00",hostname:"coinstats.app",mobile:{universal:"https://coinstats.app"}},bitcoincom_wallet:{id:"107bb20463699c4e614d3a2fb7b961e66f48774cb8f6d6c1aee789853280972c",displayName:"Bitcoin.com Wallet",image_id:"0d7938e1-9b3b-4d8b-177b-98188c4cf400",hostname:"www.bitcoin.com",mobile:{universal:"https://wallet.bitcoin.com/"}},binance:{id:"8a0ee50d1f22f6651afcae7eb4253e52a3310b90af5daef78a8c4929a9bb99d4",displayName:"Binance",image_id:"ebac7b39-688c-41e3-7912-a4fefba74600",hostname:"www.binance.com",mobile:{universal:"https://app.binance.com/cedefi"}}},rs=(e,t="md")=>`https://registry.walletconnect.com/v2/logo/${t}/${e}`;function ns(e){return{name:e.displayName||"",universalLink:e.mobile.universal||"",deepLink:e.mobile.native||""}}function is(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 as(e,t){return Hr.isAndroid?e:is(e,ns(t))}var li=(e,t)=>{if(!e)return;if(Hr.isAndroid){(0,ai.saveMobileLinkInfo)({name:"Unknown",href:t||"wc:"});return}let o=is(t||"wc:",ns(e));(0,ai.saveMobileLinkInfo)({name:(e==null?void 0:e.displayName)||"",href:o})},ss=()=>{!Hr.isAndroid||window.open("wc:","_self")};var io=class extends ke{constructor(o,r){super(o||"unknown");this.connectorType="wallet_connect";this.reconnectDelayMs=10;this.reconnectBackoff=2;this.proxyProvider=new X,this.subscribeListeners(),o&&(this.walletEntry=si[o]),this.setWalletProvider(this.createOrRestoreProvider(r)),r&&this.promptConnection(),this.syncAccounts().then(()=>{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(){var o,r,n;return this.walletEntry?{name:this.walletEntry.displayName,icon:this.walletClientType==="metamask"?be:rs(this.walletEntry.image_id)}:{name:ei(((o=this.walletProvider.walletMeta)==null?void 0:o.name)||"")||"WalletConnect",icon:((n=(r=this.walletProvider.walletMeta)==null?void 0:r.icons)==null?void 0:n[0])||_o}}async promptConnection(){return new Promise((o,r)=>{this.walletProvider.connector.on("disconnect",(i,a)=>{if(i){r($e(i));return}if(a.params.some(l=>l.message==="Session Rejected")){this.setWalletProvider(this.replaceProvider()),r(new ro);return}r(new J("Unknown error during connection"))}),this.walletProvider.qrcode&&this.walletProvider.connector.on("modal_closed",()=>{this.setWalletProvider(this.replaceProvider()),r(new ro)}),this.walletProvider.connector.on("transport_error",(i,a)=>{r($e(i))}),(async()=>{var l;let i="",a=await Promise.race([this.enableProvider(),ri()]);if(a.length>0&&(i=a[0]),!i||i==="")throw new J("Unable to retrieve address");if((l=this.walletProvider.walletMeta)!=null&&l.url){let s=Qo(this.walletProvider.walletMeta.url);this.walletEntry=s==null?void 0:s.entry,this.walletClientType=(s==null?void 0:s.walletClientType)||"unknown"}this.connected=!0,await this.syncAccounts(a),o()})().catch(i=>r($e(i)))})}async sign(o){this.walletEntry&&li(this.walletEntry),this.walletProvider.connected||await this.enableProvider();let r=await this.walletProvider.getWalletConnector();return new Promise(async(n,i)=>{var a;r.signPersonalMessage([o,(a=this.walletProvider.accounts)==null?void 0:a[0]]).then(l=>n(l)).catch(l=>i(l)),Jo.isAndroid&&ss()})}disconnect(){this.walletProvider.close().catch(()=>console.warn("Unable to disconnect Wallet Connect provider"))}get walletProvider(){return this.proxyProvider.walletProvider}setWalletProvider(o){this.proxyProvider.setWalletProvider(o)}replaceProvider(){return this.walletProvider.close().catch(()=>console.warn("Unable to disconnect provider")),z.getKeys().forEach(o=>{o.startsWith("walletconnect")&&z.get(o).key===this.walletProvider.connector.session.key&&z.del(o)}),this.createOrRestoreProvider()}static generateStorageId(){return`${Pa}:${Math.random().toString(36).slice(2)}`}createOrRestoreProvider(o){var l,s;o||(o=io.generateStorageId());let r=this.walletEntry||Jo.isAndroid?{qrcode:!1}:{},n={};for(let p of os){let f=(s=(l=p.rpcUrls.infura)==null?void 0:l.http)==null?void 0:s[0];f&&(n[p.id]=f+"/"+Je)}let i=new ls.default({infuraId:Je,storageId:o,pollingInterval:_a,rpc:n,...r}),a=this.walletEntry;return a&&(i.walletId=a.id),a?i.connector.on("display_uri",(p,f)=>{li(a);let h=f.params[0],u=as(h,a);Jo.isAndroid?window.open(u,"_self"):window.open(u,"_self","noopener,noreferrer")}):Jo.isAndroid?i.connector.on("display_uri",(p,f)=>{let h=f.params[0];window.open(h,"_self")}):i.connector.on("connect",()=>{var p,f;if((p=i.walletMeta)!=null&&p.url){let h=Qo(i.walletMeta.url);i.walletId=(f=h==null?void 0:h.entry)==null?void 0:f.id,this.walletEntry=h==null?void 0:h.entry,this.walletClientType=(h==null?void 0:h.walletClientType)||"unknown"}}),i.connector.on("transport_error",()=>{console.warn("Transport failed. Replacing provider."),setTimeout(()=>{this.setWalletProvider(this.replaceProvider()),this.reconnectDelayMs*=this.reconnectBackoff},this.reconnectDelayMs)}),i}async enableProvider(){return this.walletProvider.connected?Promise.resolve(this.walletProvider.accounts):await this.walletProvider.enable()}};var Nr=()=>{let e=window;if(!e.ethereum)return!1;if(Vr(window.ethereum,!0))return!0;if(e.ethereum.providers){for(let t of e.ethereum.providers)if(Vr(t,!0))return!0}return!1},zr=()=>{let e=window;if(!e.ethereum)return!1;if(Vr(window.ethereum,!1))return!0;if(e.ethereum.providers){for(let t of e.ethereum.providers)if(Vr(t,!1))return!0}return!1},Vr=(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.isTokenPocket||e.isTokenary||e.isZerion):!1,Xe=()=>{var e,t;if("phantom"in window){let o=window;if((t=(e=o==null?void 0:o.phantom)==null?void 0:e.ethereum)!=null&&t.isPhantom)return!0}return!1},ao=()=>{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},di=e=>{let t=localStorage.getItem("-walletlink:https://www.walletlink.org:Addresses");return t?!!(e==null?void 0:e.linkedAccounts.filter(r=>r.type=="wallet"&&r.address===(0,ci.getAddress)(t)).length):!1},Ao=class extends cs.default{constructor(){super();this.getEthereumProvider=()=>{let o=this.wallets[0],r=this.walletConnectors.find(n=>n.wallets.find(i=>i.address===(o==null?void 0:o.address)));return!o||!r?new X:r.proxyProvider};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||(z.get(Zn)&&(z.getKeys().forEach(o=>{o.startsWith("walletconnect")&&z.del(o)}),z.del(Zn)),Ia().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}})),(ao()||z.getKeys().find(o=>o.startsWith("-walletlink")))&&this.createWalletConnector("coinbase_wallet","coinbase_wallet"),this.restoreWalletConnectConnectors(),this.initialized=!0)}restoreWalletConnectConnectors(){typeof window>"u"||z.getKeys().forEach(o=>{var r,n;if(o.startsWith("walletconnect")){let i=(n=(r=z.get(o))==null?void 0:r.peerMeta)==null?void 0:n.url,a;if(i){let s=Qo(i);s!=null&&s.walletClientType&&(a=s.walletClientType)}let l=new io(a,o);this.addWalletConnector(l)}})}findWalletConnector(o,r){return 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 Lr(o,r),a=new Ur(i);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")}}createWalletConnector(o,r){let n=this.findWalletConnector(o,r);if(n&&n.walletClientType!=="unknown")return n;let a=(()=>{switch(o){case"injected":switch(r){case"phantom":return Xe()?new Fr:null;case"metamask":default:return zr()?new Br:null}case"coinbase_wallet":return new Dr;case"wallet_connect":return new io(r)}})();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=z.get(Qn);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}));z.put(Qn,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=(0,ci.getAddress)(o),this.emit("walletsUpdated")}};function Mr(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==null?void 0:r.address)!==(n==null?void 0:n.address)||(r==null?void 0:r.chainId)!==(n==null?void 0:n.chainId)||(r==null?void 0:r.connectorType)!==(n==null?void 0:n.connectorType)||(r==null?void 0:r.connectedAt)!==(n==null?void 0:n.connectedAt)||(r==null?void 0:r.walletClientType)!==(n==null?void 0:n.walletClientType)||(r==null?void 0:r.isConnected)!==(n==null?void 0:n.isConnected)||(r==null?void 0:r.linked)!==(n==null?void 0:n.linked))return!1}return!0}var $r=require("ofetch");var qr=class{constructor(t,o,r){this.appId=t,this.sdkVersion=Rr,this.client=o,this.defaults=r,this.fallbackApiUrl=o.fallbackApiUrl}async get(t,o,r=!0){try{return await(0,$r.ofetch)(t,await this.buildConfig({headers:{"Cache-Control":"no-cache"},...o},r))}catch(n){throw se(n)}}async post(t,o,r,n=!0){try{return await(0,$r.ofetch)(t,{method:"POST",...o?{body:o}:{},...await this.buildConfig(r,n)})}catch(i){throw se(i)}}async delete(t,o,r=!0){try{return await(0,$r.ofetch)(t,{method:"DELETE",...await this.buildConfig(o,r)})}catch(n){throw se(n)}}async buildConfig(t,o=!0){t=Object.assign({withCredentials:!0},t||{});let{headers:r,...n}=t,i;o&&(i=await this.client.getAccessToken());let a={...r,...i?{authorization:`Bearer ${i}`}:{},"privy-app-id":this.appId,"privy-client":`react-auth:${this.sdkVersion}`};return{...this.defaults,headers:a,...n}}};function ds(e){return e instanceof Xt?"email":e instanceof to?"sms":e instanceof eo?"siwe":e instanceof Mt?e.meta.provider:null}var Ft=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 ps=E(require("jose")),kt=class{static parse(t){try{return new kt(t)}catch{return null}}constructor(t){this.value=t,this._decoded=ps.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 Qc=30,jr=class{constructor(){this.authenticateOnce=new Ft(async t=>this._authenticate(t)),this.linkOnce=new Ft(async t=>this._link(t)),this.refreshOnce=new Ft(this._refresh.bind(this)),this.destroyOnce=new Ft(this._destroy.bind(this)),this.forkSessionOnce=new Ft(this._forkSession.bind(this))}get token(){try{let t=z.get(xo);return typeof t=="string"?new kt(t).value:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get refreshToken(){try{let t=z.get(Wr);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get forkedToken(){try{let t=z.get(Ko);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}hasRefreshCredentials(){return typeof this.token=="string"&&typeof this.refreshToken=="string"}hasRecoveryCredentials(){return typeof this.forkedToken=="string"}hasActiveToken(){let t=kt.parse(this.token);return t!==null&&!t.isExpired(Qc)}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=ds(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:Tt(n),isNewUser:i}}catch(o){throw console.warn("Error authenticating session"),He(o)}}async _link(t){try{let o=await t.link();return Tt(o)}catch(o){throw console.warn("Error linking account"),He(o)}}async _refresh(){if(!this.api)throw new A("Session has no API instance");if(!this.client)throw new A("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)n=await this.api.post(oa(),{refresh_token:o},{headers:{authorization:`Bearer ${t}`}},!1),r&&this.clearForkedToken();else if(r)n=await this.api.post(ia(),{refresh_token:r},{},!1),this.clearForkedToken();else return null;return this.storeToken(n.token),this.storeRefreshToken(n.refresh_token),Tt(n.user)}catch(n){if(n instanceof Co&&n.status===400&&n.message==="Invalid auth token")return this.destroyLocalState(),null;throw He(n)}}async _destroy(){var t;try{await((t=this.api)==null?void 0:t.post(ra(),{refresh_token:this.refreshToken}))}catch{console.warn("Error destroying session")}this.destroyLocalState()}async _forkSession(){if(!this.api)throw new A("Session has no API instance");let t=this.refreshToken;try{let o=await this.api.post(na(),{refresh_token:t});return this.storeToken(o.token),this.storeRefreshToken(o.refresh_token),o.new_session_refresh_token}catch(o){throw He(o)}}destroyLocalState(){this.storeToken(null),this.storeRefreshToken(null),this.clearForkedToken()}storeToken(t){typeof t=="string"?z.put(xo,t):z.del(xo)}storeRefreshToken(t){typeof t=="string"?z.put(Wr,t):z.del(Wr)}clearForkedToken(){z.del(Ko)}};var pi,So=class{constructor(t){this.apiUrl=t.apiUrl||kr,this.fallbackApiUrl=this.apiUrl,this.timeout=t.timeout||Ta,this.appId=t.appId,this.clientAnalyticsId=typeof window>"u"?null:crypto.randomUUID(),this.connectors=new Ao,pi||(pi=new jr),this.session=pi,this.api=this.generateApi(),this.session.client=this}generateApi(){let t=new qr(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()}authenticate(){if(!this.authFlow)throw new A("No auth flow in progress.");return this.session.authenticate(this.authFlow)}link(){if(!this.authFlow)throw new A("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(ba(),{address:t});return Tt(o)}catch(o){throw He(o)}}async unlinkPhone(t){try{let o=await this.api.post(wa(),{phoneNumber:t});return Tt(o)}catch(o){throw He(o)}}async unlinkWallet(t){try{let o=await this.api.post(va(),{address:t});return Tt(o)}catch(o){throw He(o)}}async unlinkOAuth(t,o){try{let r=await this.api.post(Ca(),{provider:t,subject:o});return Tt(r)}catch(r){throw He(r)}}async createAnalyticsEvent(t,o,r){try{if(!this.clientAnalyticsId)throw new Error("Cannot create analytics event if run in node and not browswer");await this.api.post(xa(),{event_name:t,client_id:this.clientAnalyticsId,payload:{...o||{},clientTimestamp:r?r.toISOString():new Date().toISOString()}})}catch(n){console.error("Failed to create analytics event",n)}}async getAuthenticatedUser(){return this.session.hasRefreshCredentials()||this.session.hasRecoveryCredentials()?this.session.refresh():null}async getAccessToken(t){var o;return this.session.hasActiveToken()?((o=kt.parse(this.session.token))==null?void 0:o.audience)!==this.appId?(await this.logout(),null):this.session.token:!(t!=null&&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,privacyPolicyUrl:t.privacy_policy_url,customApiUrl:t.custom_api_url,createdAt:new Date(t.created_at*1e3),updatedAt:new Date(t.updated_at*1e3)}}catch(t){throw He(t)}}async getUsdTokenPrice(t){try{return(await this.api.get(`/api/v1/token_price?chainId=${t}`)).usd}catch{console.error(`Unable to fetch token price for chain with id ${t}`);return}}async forkSession(){return await this.session.forkSession()}};var x5=require("wicg-inert"),Bn=require("body-scroll-lock"),Fn=require("react"),Qi=require("react"),bc=E(require("react-dom")),Gn=E(require("styled-components"));var Kr=require("react");var ui=(0,Kr.createContext)({isLinking:!1,linkingHint:null,walletConnectionStatus:null,getAuthMeta:T,getAuthFlow:T,closePrivyModal:T,connectWallet:T,initLoginWithWallet:T,loginWithWallet:T,loginWithCode:T,initLoginWithEmail:T,initLoginWithSms:T,resendEmailCode:T,resendSmsCode:T,initLoginWithOAuth:T,loginWithOAuth:T,refreshUser:T,walletProxy:null,createAnalyticsEvent:T,getUsdTokenPrice:T,recoverEmbeddedWallet:T}),W=()=>(0,Kr.useContext)(ui);var Yr=require("react");var mi=(0,Yr.createContext)({ready:!1,authenticated:!1,user:null,walletConnectors:null,connectWallet:T,login:T,linkEmail:T,linkPhone:T,linkWallet:T,linkGoogle:T,linkTwitter:T,linkDiscord:T,linkGithub:T,linkApple:T,logout:T,getAccessToken:T,getEthereumProvider:T,getEthersProvider:T,getWeb3jsProvider:T,unlinkEmail:T,unlinkPhone:T,unlinkWallet:T,unlinkGoogle:T,unlinkTwitter:T,unlinkDiscord:T,unlinkGithub:T,unlinkApple:T,setActiveWallet:T,forkSession:T,createWallet:T,signMessage:T,sendTransaction:T,exportWallet:T}),F=()=>(0,Yr.useContext)(mi);var en=E(require("styled-components"));var Rt=E(require("styled-components"));var Zr=E(require("styled-components")),Gt=require("react/jsx-runtime"),Qr=({success:e,fail:t})=>(0,Gt.jsxs)(Gt.Fragment,{children:[(0,Gt.jsx)(Xo,{className:e?"success":t?"fail":""}),(0,Gt.jsx)(Jc,{className:e?"success":t?"fail":""})]}),Xo=Zr.default.span`
12
+ - https://privy.io`;this.wallet=t}get meta(){return{connectorType:this.wallet.connectorType,walletClientType:this.wallet.walletClientType}}async authenticate(){if(!this.api)throw new A("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign(),r=await this.api.post(ca(),{message:t,signature:o});return{user:r.user,token:r.token,refresh_token:r.refresh_token,is_new_user:r.is_new_user}}catch(t){throw se(t)}}async link(){if(!this.api)throw new A("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign();return await this.api.post(da(),{message:t,signature:o})}catch(t){throw se(t)}}async sign(){if(!this.api)throw new A("Auth flow has no API instance");if(this.preparedMessage||await this.buildSiweMessage(),!this.preparedMessage)throw new A("Could not prepare SIWE message");let t=await this.wallet.sign(this.preparedMessage);return{message:this.preparedMessage,signature:t}}async buildSiweMessage(){if(!this.api)throw new A("Auth flow has no API instance");let t=this.wallet.address,o=this.wallet.chainId.replace("eip155:",""),r=await this.api.post(la(),{address:t});return this.preparedMessage=this.prepareMessage(o,t,r.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 oo=class{constructor(t){this.meta={phoneNumber:t}}async authenticate(){if(!this.api)throw new A("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new A("phone number and sms code must be set prior to calling authenticate.");try{let t=fa(),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 se(t)}}async link(){if(!this.api)throw new A("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new A("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 se(t)}}async sendSmsCode(t){if(!this.api)throw new A("Auth flow has no API instance");if(t&&(this.meta.phoneNumber=t),!this.meta.phoneNumber)throw new A("phone nNumber must be set when initialzing authentication.");try{let o=ha();return await this.api.post(o,{phoneNumber:this.meta.phoneNumber})}catch(o){throw se(o)}}};function Et(e){return new Date(e*1e3)}function Bc(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:Et(o.verified_at),chainType:o.chain_type,walletClient:o.wallet_client};t.push(n);break;case"email":let i={address:o.address,type:o.type,verifiedAt:Et(o.verified_at)};t.push(i);break;case"phone":let a={number:o.phoneNumber,type:o.type,verifiedAt:Et(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:Et(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:Et(o.verified_at)};t.push(s);break;case"discord_oauth":let p={subject:o.subject,username:o.username,email:o.email,type:o.type,verifiedAt:Et(o.verified_at)};t.push(p);break;case"github_oauth":let f={subject:o.subject,username:o.username,name:o.name,email:o.email,type:o.type,verifiedAt:Et(o.verified_at)};t.push(f);break;case"apple_oauth":let h={subject:o.subject,email:o.email,type:o.type,verifiedAt:Et(o.verified_at)};t.push(h);break;default:console.warn(`Unrecognized account type: ${r}. Please consider upgrading the Privy SDK.`)}}return t}function Ot(e,t){return e.sort((o,r)=>r.verifiedAt.getTime()-o.verifiedAt.getTime()),e.find(o=>o.type===t)}var ee=e=>e==null?void 0:e.linkedAccounts.find(t=>t.type==="wallet"&&t.walletClient==="privy");function Tt(e){if(!e)return null;let t=Bc(e.linked_accounts),o=Ot(t,"wallet"),r=Ot(t,"email"),n=Ot(t,"phone"),i=Ot(t,"google_oauth"),a=Ot(t,"twitter_oauth"),l=Ot(t,"discord_oauth"),s=Ot(t,"github_oauth"),p=Ot(t,"apple_oauth");return{id:e.id,createdAt:Et(e.created_at),linkedAccounts:t,email:r&&{address:r==null?void 0:r.address},phone:n&&{number:n==null?void 0:n.number},wallet:o&&{address:o.address,chainType:o.chainType,chainId:o.chainId,walletClient:o.walletClient},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:p&&{subject:p.subject,email:p.email}}}var pi=require("@ethersproject/address"),cs=E(require("eventemitter3"));var Pa="1.26.2";var Je="4df5e2316331463a9130964bd6078dfa",kr="https://auth.privy.io",_a=1e4,ut=1400,Rr=Pa;var xo="privy:token",Wr="privy:refresh_token",Ko="privy:session_transfer_token",Qn="privy:connectors",Jn="privy:connections",Aa="walletconnect",Sa=3e4,Ve=1;var Xn=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)}},ei=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 Gc(){return typeof window<"u"&&window.localStorage?new ei:new Xn}var z=Gc();var ka=require("libphonenumber-js/min");var Ra=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,}))$/),Wa=e=>(0,ka.isPossiblePhoneNumber)(String(e),"US"),Ia=(e,t)=>{let o=e.slice(0),r=[];for(;o.length;)r.push(o.splice(0,t));return r},Dt=(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}`},Hc=e=>new Promise(t=>setTimeout(t,e)),Na=(e,t={})=>{let o=t.delayMs||40,r=t.maxAttempts||1e3;return new Promise(async(n,i)=>{let a=!1,l=0;for(;!a&&l<r;)e().then(()=>{a=!0,n()},(...s)=>{a=!0,i(...s)}),l+=1,await Hc(o);a||i(new Error("Exceeded max attempts before resolving function"))})},Ir=(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 ti=e=>e.replace(/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g,""),Yo=e=>typeof e=="string"?e:"0x"+e.toString(16);async function La(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=[];Nr()&&i.push("metamask"),Xe()&&i.push("phantom"),o.ethereum&&o.ethereum.isBraveWallet&&i.push("brave"),r(i)}})}function oi(e){return`eip155:${String(Number(e))}`}var Qa=E(require("@coinbase/wallet-sdk"));var Zo=require("react/jsx-runtime"),ze=({style:e,...t})=>(0,Zo.jsxs)("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:[(0,Zo.jsx)("rect",{width:"1024",height:"1024",fill:"#0052FF",rx:100,ry:100}),(0,Zo.jsx)("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"})]});var _t=require("@ethersproject/address"),ai=require("@ethersproject/providers"),Za=E(require("eventemitter3"));var $a=require("@ethersproject/bytes"),ni=require("@ethersproject/providers"),qa=require("@ethersproject/strings"),ja=E(require("eventemitter3"));var Vc=["eth_sign","eth_populateTransactionRequest","eth_signTransaction","personal_sign"],Ma=e=>Vc.includes(e);var Oa={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 Da={id:421613,name:"Arbitrum Goerli",network:"arbitrum-goerli",nativeCurrency:{name:"Arbitrum Goerli Ether",symbol:"ETH",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 Ua={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 Ba={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 Fa={id:10,name:"Optimism",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 Ga={id:420,name:"Optimism Goerli",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 Ha={id:137,name:"Polygon",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 Va={id:80001,name:"Polygon 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 Lr=[Oa,Da,Ua,Ba,Fa,Ga,Ha,Va];var za=require("@ethersproject/logger");var Eo=class extends J{constructor(){super("Wallet timeout");this.type="wallet_error"}},no=class extends J{constructor(){super("User rejected connection");this.type="wallet_error"}},$e=e=>{if(e instanceof J)return e;if((e==null?void 0:e.code)&&(e==null?void 0:e.reason)){let t=new To(e);return e.code===za.ErrorCode.ACTION_REJECTED&&(t.details=ro.E4001_USER_REJECTED_REQUEST),t}return e!=null&&e.code?new To(e):new J("Unknown connector error",e)},ri=class extends Qe{constructor(o,r,n){super(o);this.type="provider_error";this.code=r,this.data=n}},To=class extends ri{constructor(o){var i,a,l;let r=o;super(r.message,r.code,r.data);let n=Object.values(ro).find(s=>s.eipCode===r.code);this.details=n||ro.UNKNOWN_ERROR,r.code===-32002&&((i=r.message)!=null&&i.includes("already pending for origin")?(a=r.message)!=null&&a.includes("wallet_requestPermissions")?this.details=ro.E32002_CONNECTION_ALREADY_PENDING:this.details=ro.E32002_REQUEST_ALREADY_PENDING:(l=r.message)!=null&&l.includes("Already processing")&&r.message.includes("eth_requestAccounts")&&(this.details=ro.E32002_WALLET_LOCKED))}},zc={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}},$c={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}},qc={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}},ro={UNKNOWN_ERROR:{eipCode:0,message:"Unknown error",detail:"Unknown error",retryable:!0},...qc,...$c},Pt={...zc,...ro};var jc=12e4,ii=(e=new Eo,t=jc)=>new Promise((o,r)=>setTimeout(()=>{r(e)},t)),X=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=>{var r;(r=this.walletProvider)==null||r.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 J(`A wallet request of type ${t.method} was made before setting a wallet provider.`);return Promise.race([this.walletProvider.request(t),ii()]).catch(o=>{throw $e(o)})}},Ut=class extends Error{constructor(o,r,n){super(o);this.code=r,this.data=n}},Mr=class extends ja.default{constructor(o,r,n=1){super();this.walletProxy=o,this.address=r,this.chainId=n,this.provider=new ni.JsonRpcProvider(this.getInfuraEndpoint(n))}getInfuraEndpoint(o){var n;let r=Lr.find(i=>i.id===o);if(!r)throw new Ut(`Unsupported chainId ${o}`,4901);return((n=r.rpcUrls.infura)==null?void 0:n.http[0])+`/${Je}`}async handleSendTransaction(o){if(!o.params||!Array.isArray(o.params))throw new Ut(`Invalid params for ${o.method}`,4200);let r=o.params[0];if(!await Po()||!this.address)throw new Ut("Disconnected",4900);return(await Ya(r)).transactionHash}handleSwitchEthereumChain(o){if(!o.params||!Array.isArray(o.params))throw new Ut(`Invalid params for ${o.method}`,4200);let r=o.params[0];this.chainId=Number(r),this.provider=new ni.JsonRpcProvider(this.getInfuraEndpoint(this.chainId)),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],n=(0,$a.isHexString)(r)?(0,qa.toUtf8String)(r):r;return await Ka(n)}async handleEstimateGas(o){if(!o.params||!Array.isArray(o.params))throw new Error("Invalid params for eth_estimateGas");let r={...o.params[0],chainId:Yo(this.chainId)};return delete r.from,this.provider.send("eth_estimateGas",[r])}async request(o){switch(console.debug("Embedded1193Provider.request() called with args",o),o.method){case"eth_accounts":return this.address?[this.address]:[];case"eth_chainId":return Yo(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(Ma(o.method)){let r=await Po();if(!r||!this.address)throw new Ut("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 Ut("Disconnected",4900)}}else return this.provider.send(o.method,o.params)}async connect(){let o=await Po();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}}},et=class extends X{constructor(o){super(o)}},Bt=class extends X{constructor(t){super(t)}sendAsync(t,o){throw new Error("sendAsync is no longer supported by EIP-1193. Use the request method instead.")}};var ke=class extends Za.default{constructor(o){super();this.onAccountsChanged=o=>{this.syncAccounts(o)};this.onChainChanged=o=>{this.wallets.forEach(r=>{r.chainId=oi(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.connected=!1,this.initialized=!1}buildConnectedWallet(o,r){let n=async()=>!!this.wallets.find(i=>(0,_t.getAddress)(i.address)===(0,_t.getAddress)(o));return{address:(0,_t.getAddress)(o),chainId:r,connectedAt:Date.now(),walletClientType:this.walletClientType,connectorType:this.connectorType,isConnected:n,getEthereumProvider:async()=>{if(!await n())throw new J("Wallet is not currently connected.");return this.proxyProvider},getEthersProvider:async()=>{if(!await n())throw new J("Wallet is not currently connected.");return new ai.Web3Provider(new et(this.proxyProvider))},getWeb3jsProvider:async()=>{if(!await n())throw new J("Wallet is not currently connected.");return new Bt(this.proxyProvider)},sign:async i=>{if(!await n())throw new J("Wallet is not currently connected.");return await this.sign(i)},disconnect:()=>{this.disconnect()}}}async syncAccounts(o){let r=o;if(r===void 0){let l=await this.proxyProvider.request({method:"eth_accounts"});Array.isArray(l)&&(r=l)}if(r===void 0||!Array.isArray(r)||r.length<=0)return;let n=[],i=await this.proxyProvider.request({method:"eth_chainId"}),a=oi(i);for(let l of r)n.find(s=>(0,_t.getAddress)(s.address)===(0,_t.getAddress)(l))||n.push(this.buildConnectedWallet((0,_t.getAddress)(l),a));Or(n,this.wallets)||(this.wallets=n,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=>(0,_t.getAddress)(n)===(0,_t.getAddress)(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 ai.Web3Provider(new et(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 Kc=e=>{let t=`https://mainnet.infura.io/v3/${Je}`,o=1;return e.makeWeb3Provider(t,o)},Dr,Ur=class extends ke{constructor(){super("coinbase_wallet");this.connectorType="coinbase_wallet";this.proxyProvider=new X,this.subscribeListeners(),Dr||(Dr=new Qa.default({appName:"Privy",darkMode:!1,headlessMode:!1})),this.proxyProvider.setWalletProvider(Kc(Dr)),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(){Dr.disconnect()}get walletBranding(){return{name:"Coinbase Wallet",icon:ze}}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(o.length===0)throw new J("Unable to retrieve accounts");this.connected=!0,await this.syncAccounts(o)}catch(o){throw $e(o)}}};var si=require("react/jsx-runtime"),Ft=({style:e,...t})=>(0,si.jsx)("svg",{width:"16",height:"17",viewBox:"0 0 16 17",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"1.25rem",width:"1.25rem",...e},...t,children:(0,si.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.99555 0.929932C-1.12055 1.31799 -0.499722 9.15734 2.17445 8.76915C0.0807959 10.5544 -0.960455 16.6416 6.01654 16.0265C10.6356 15.9489 15.5635 12.2232 15.5635 8.1095C15.5635 2.63748 10.7516 0.929932 7.99555 0.929932ZM9.47052 7.53055C9.47052 8.49933 8.81856 9.28468 8.01433 9.28468C7.2101 9.28468 6.55814 8.49933 6.55814 7.53055C6.55814 6.56176 7.2101 5.77641 8.01433 5.77641C8.81856 5.77641 9.47052 6.56176 9.47052 7.53055ZM12.3171 9.28468C13.1213 9.28468 13.7733 8.49933 13.7733 7.53055C13.7733 6.56176 13.1213 5.77641 12.3171 5.77641C11.5129 5.77641 10.8609 6.56176 10.8609 7.53055C10.8609 8.49933 11.5129 9.28468 12.3171 9.28468Z",fill:t.color||"var(--privy-color-foreground-3)"})});var Br=class extends ke{constructor(o){super("privy");this.connectorType="embedded";this.proxyProvider=o,this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return await this.isConnected()?(await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[Yo((o==null?void 0:o.chainId)||"0x1")]}),this.getConnectedWallet()):null}get walletBranding(){return{name:"Privy Wallet",icon:Ft}}disconnect(){this.connected=!1}async promptConnection(){}};var Yc=require("@ethersproject/address"),Zc=require("@ethersproject/providers"),Ja=require("react-device-detect");var ve=require("react/jsx-runtime"),be=({style:e,...t})=>(0,ve.jsxs)("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:[(0,ve.jsx)("style",{children:".s1{stroke-linecap:round;stroke-linejoin:round}.s2{fill:#e4761b;stroke:#e4761b}.s3{fill:#f6851b;stroke:#f6851b}"}),(0,ve.jsx)("path",{fill:"#e2761b",stroke:"#e2761b",className:"s1",d:"m274.1 35.5-99.5 73.9L193 65.8z"}),(0,ve.jsx)("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"}),(0,ve.jsx)("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"}),(0,ve.jsx)("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"}),(0,ve.jsx)("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"}),(0,ve.jsx)("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"}),(0,ve.jsx)("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"}),(0,ve.jsx)("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"}),(0,ve.jsx)("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"}),(0,ve.jsx)("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"}),(0,ve.jsx)("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"}),(0,ve.jsx)("path",{d:"m267.2 153.5-52.3-15.3 15.9 23.9-23.7 46 31.2-.4h46.5zm-163.6-15.3-52.3 15.3-17.4 54.2h46.4l31.1.4-23.6-46zm71 26.4 3.3-57.7 15.2-41.1h-67.5l15 41.1 3.5 57.7 1.2 18.2.1 44.8h27.7l.2-44.8z",className:"s3"})]});var Fr=class extends ke{constructor(){super("metamask");this.connectorType="injected";this.proxyProvider=new X,this.subscribeListeners();let o=window,r=o.ethereum,n=o.ethereum.providers||[];for(let i of n)if(i.isMetaMask){r=i;break}this.proxyProvider.setWalletProvider(r),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{!Ja.isMobile&&Nr()&&await this.proxyProvider.request({method:"wallet_requestPermissions",params:[{eth_accounts:{}}]});let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0)throw new J("Unable to retrieve accounts");await this.syncAccounts(o)}catch(o){throw $e(o)}}};var qe=require("react/jsx-runtime"),mt=({style:e,...t})=>(0,qe.jsxs)("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:[(0,qe.jsx)("rect",{width:"28",height:"28",rx:"6",fill:"url(#paint0_linear_1765_9937)"}),(0,qe.jsx)("path",{d:"M24.0223 14.1704H21.5542C21.5542 9.14083 17.4627 5.06372 12.4151 5.06372C7.43008 5.06372 3.37717 9.04101 3.27798 13.9845C3.17536 19.0945 7.98653 23.5318 13.1154 23.5318H13.7605C18.2822 23.5318 24.3426 20.0047 25.2895 15.7072C25.4643 14.9151 24.8364 14.1704 24.0223 14.1704ZM8.74752 14.3945C8.74752 15.0671 8.19544 15.6172 7.52045 15.6172C6.84545 15.6172 6.29341 15.0669 6.29341 14.3945V12.4165C6.29341 11.7439 6.84545 11.1938 7.52045 11.1938C8.19544 11.1938 8.74752 11.7439 8.74752 12.4165V14.3945ZM13.0083 14.3945C13.0083 15.0671 12.4563 15.6172 11.7813 15.6172C11.1063 15.6172 10.5543 15.0669 10.5543 14.3945V12.4165C10.5543 11.7439 11.1065 11.1938 11.7813 11.1938C12.4563 11.1938 13.0083 11.7439 13.0083 12.4165V14.3945Z",fill:"url(#paint1_linear_1765_9937)"}),(0,qe.jsxs)("defs",{children:[(0,qe.jsxs)("linearGradient",{id:"paint0_linear_1765_9937",x1:"14",y1:"0",x2:"14",y2:"28",gradientUnits:"userSpaceOnUse",children:[(0,qe.jsx)("stop",{stopColor:"#534BB1"}),(0,qe.jsx)("stop",{offset:"1",stopColor:"#551BF9"})]}),(0,qe.jsxs)("linearGradient",{id:"paint1_linear_1765_9937",x1:"14.2976",y1:"5.06372",x2:"14.2976",y2:"23.5318",gradientUnits:"userSpaceOnUse",children:[(0,qe.jsx)("stop",{stopColor:"white"}),(0,qe.jsx)("stop",{offset:"1",stopColor:"white",stopOpacity:"0.82"})]})]})]});var Gr=class extends ke{constructor(){super("phantom");this.connectorType="injected";this.proxyProvider=new X,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:mt}}disconnect(){console.warn("Phantom does not support programmatic disconnect.")}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});await this.syncAccounts(o)}catch(o){throw $e(o)}}};var ls=E(require("@walletconnect/web3-provider")),Jo=require("react-device-detect");var tt=require("react");var es=require("react/jsx-runtime");function Xa(e){return(0,es.jsx)("link",{rel:"prefetch",href:e.src})}var Hr=require("react/jsx-runtime"),At="LANDING",ts=(0,tt.createContext)({ready:!1,app:null,currentScreen:At,lastScreen:At,navigate:T,navigateBack:T,setModalData:T}),os=e=>{var f,h,u;let t=e.appConfig,o=e.authenticated,r=e.visible,[n,i]=(0,tt.useState)(e.initialScreen||At),[a,l]=(0,tt.useState)(e.initialScreen||At);(0,tt.useEffect)(()=>{o||i(At)},[o]),(0,tt.useEffect)(()=>{r||(l(At),i(At))},[r]),(0,tt.useEffect)(()=>{e.initialScreen&&n===At&&(i(e.initialScreen),l(e.initialScreen))},[e.initialScreen]);let s=e.initialScreen&&n===At?e.initialScreen:n,p={ready:!!(t!=null&&t.id),app:t,data:e.data,setModalData:e.setModalData,currentScreen:s,lastScreen:a,navigate:C=>{l(n),i(C)},navigateBack:()=>{i(a)}};return(0,Hr.jsxs)(ts.Provider,{value:p,children:[(typeof((f=t==null?void 0:t.appearance)==null?void 0:f.logo)=="string"||((u=(h=t==null?void 0:t.appearance)==null?void 0:h.logo)==null?void 0:u.type)==="img")&&(0,Hr.jsx)(Xa,{src:typeof t.appearance.logo=="string"?t.appearance.logo:t.appearance.logo.props.src}),e.children]})},w=()=>(0,tt.useContext)(ts);var St=require("react/jsx-runtime"),_o=({style:e,...t})=>{let{app:o}=w();return(0,St.jsxs)("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:[(0,St.jsx)("rect",{width:"28",height:"28",rx:"3",fill:(o==null?void 0:o.appearance.palette.colorScheme)==="dark"?"#3396ff":"#141414"}),(0,St.jsx)("g",{clipPath:"url(#clip0_1765_9946)",children:(0,St.jsx)("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"})}),(0,St.jsx)("defs",{children:(0,St.jsx)("clipPath",{id:"clip0_1765_9946",children:(0,St.jsx)("rect",{width:"20",height:"12.2531",fill:"white",transform:"translate(4 8)"})})})]})};var li=require("@walletconnect/browser-utils"),Vr=require("react-device-detect");var Qo=e=>{let t;try{t=new URL(e).hostname}catch{return}for(let[o,r]of Object.entries(ci))if(r.hostname===t)return{walletClientType:o,entry:r}};var ci={rainbow:{id:"1ae92b26df02f0abca6304df07debccd18262fdf5fe82daa81593582dac9a369",displayName:"Rainbow",image_id:"7a33d7f1-3d12-4b5c-f3ee-5cd83cb1b500",hostname:"rainbow.me",mobile:{universal:"https://rnbwapp.com"}},trust:{id:"4622a2b2d6af1c9844944291e5e7351a6aa24cd7b23099efac1b2fd875da31a0",displayName:"Trust",image_id:"0528ee7e-16d1-4089-21e3-bbfb41933100",hostname:"trustwallet.com",mobile:{universal:"https://link.trustwallet.com"}},uniswap:{id:"c03dfee351b6fcc421b4494ea33b9d4b92a984f87aa76d1663bb28705e95034a",displayName:"Uniswap",image_id:"bff9cf1f-df19-42ce-f62a-87f04df13c00",hostname:"uniswap.org",mobile:{universal:"https://uniswap.org/app"}},metamask:{id:"c57ca95b47569778a828d19178114f4db188b89b763c899ba0be274e97267d96",displayName:"MetaMask",image_id:"5195e9db-94d8-4579-6f11-ef553be95100",hostname:"metamask.io",mobile:{native:"metamask:"}},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"}},zerion:{id:"ecc4036f814562b41a5268adc86270fba1365471402006302e70169465b7ac18",displayName:"Zerion",image_id:"f216b371-96cf-409a-9d88-296392b85800",hostname:"zerion.io",mobile:{universal:"https://wallet.zerion.io"}},bitkeep:{id:"38f5d18bd8522c244bdd70cb4a68e0e718865155811c043f052fb9f1c51de662",displayName:"BitKeep",image_id:"3f7075d0-4ab7-4db5-404d-3e4c05e6fe00",hostname:"bitkeep.com",mobile:{universal:"https://bkapp.vip"}},unstoppable:{id:"7e90b95230bc462869bbb59f952273d89841e1c76bcc5319898e08c9f34bd4cd",displayName:"Unstoppable",image_id:"5c38b22c-adb9-4899-3252-6e3d71458500",hostname:"unstoppable.money",mobile:{universal:"https://unstoppable.money"}},omni:{id:"afbd95522f4041c71dd4f1a065f971fd32372865b416f95a0b1db759ae33f2a7",displayName:"Omni",image_id:"2cd67b4c-282b-4809-e7c0-a88cd5116f00",hostname:"omni.app",mobile:{universal:"https://links.omni.app"}},mathwallet:{id:"7674bb4e353bf52886768a3ddc2a4562ce2f4191c80831291218ebd90f5f5e26",displayName:"MathWallet",image_id:"26a8f588-3231-4411-60ce-5bb6b805a700",hostname:"mathwallet.org",mobile:{universal:"https://www.mathwallet.org"}},bitpay:{id:"ccb714920401f7d008dbe11281ae70e3a4bfb621763b187b9e4a3ce1ab8faa3b",displayName:"BitPay",image_id:"97d4429f-eaf0-4302-87f5-9d26d46fe700",hostname:"bitpay.com",mobile:{universal:"https://link.bitpay.com/wallet"}},"1inch":{id:"2863183c3299d820fb9a4cb8aab4a34f50380c9992e8be871fd60a62e8d36481",displayName:"1inch",image_id:"dce1ee99-403f-44a9-9f94-20de30616500",hostname:"1inch.io",mobile:{universal:"https://wallet.1inch.io"}},eidoo:{id:"efba9ae0a9e0fdd9e3e055ddf3c8e75f294babb8aea3499456eff27f771fda61",displayName:"Eidoo",image_id:"ef5b8bcf-00d5-457d-e161-9911e4788700",hostname:"eidoo.io",mobile:{universal:"https://eidoo.io/crypto-wallet"}},coin98:{id:"b021913ba555948a1c81eb3d89b372be46f8354e926679de648e4fa2938bed3e",displayName:"Coin98",image_id:"dee547be-936a-4c92-9e3f-7a2350a62e00",hostname:"coin98.com",mobile:{universal:"https://coin98.com"}},alphawallet:{id:"138f51c8d00ac7b9ac9d8dc75344d096a7dfe370a568aa167eabc0a21830ed98",displayName:"AlphaWallet",image_id:"5b1cddfb-056e-4e78-029a-54de5d70c500",hostname:"alphawallet.com",mobile:{universal:"https://aw.app"}},rwallet:{id:"b13fcc7e3500a4580c9a5341ed64c49c17d7f864497881048eb160c089be5346",displayName:"RWallet",image_id:"a883229c-26cb-4c19-9b34-1f0ed4012a00",hostname:"rsk.co",mobile:{universal:"https://www.rwallet.app"}},plasmapay:{id:"13c6a06b733edf51784f669f508826b2ab0dc80122a8b5d25d84b17d94bbdf70",displayName:"PlasmaPay",image_id:"466c8fd0-fcec-4621-b94f-e91ce1439f00",hostname:"plasmapay.com",mobile:{universal:"https://plasmapay.com/"}},o3wallet:{id:"0aafbedfb8eb56dae59ecc37c9a5388509cf9c082635e3f752581cc7128a17c0",displayName:"O3Wallet",image_id:"e1c7c6af-c731-463e-55f0-5e686e9f6200",hostname:"o3.network",mobile:{universal:"https://o3.network"}},hashkey_me:{id:"761d3d98fd77bdb06e6c90092ee7071c6001e93401d05dcf2b007c1a6c9c222c",displayName:"HashKey Me",image_id:"72734fac-9500-4c2c-81ba-678f7fc32700",hostname:"me.hashkey.com",mobile:{universal:"https://me.hashkey.com"}},defiant:{id:"1986e7c874bb906f057d5d64a4806c004e021689536e5228c74d64a6058e8bac",displayName:"Defiant",image_id:"11a96ca4-3592-42ae-c781-2b7265ec9200",hostname:"www.defiantapp.tech",mobile:{universal:"https://defiantapp.tech/"}},essentials:{id:"717911f4db0c5eda0e02e76ed179b7940ba1eefffdfb3c9e6540696226860da0",displayName:"Essentials",image_id:"04a6bfed-d80e-4f7b-0516-261f86aa4000",hostname:"elastos.org",mobile:{universal:"https://essentials.elastos.net"}},stasis:{id:"9d6c614d1995741d5313f1f3dbf1f66dcba694de782087d13b8721822502692f",displayName:"Stasis",image_id:"7ae753bc-a754-450c-2d90-2c5521734400",hostname:"stasis.net",mobile:{universal:"https://app.stasis.net"}},julwallet:{id:"a6ffb821a3c32d36fc9d29e29c2ff79a0cd1db0bca453714777846ddf3fdff76",displayName:"JulWallet",image_id:"cabd50de-22fa-487b-ce68-2c63de8bb800",hostname:"justliquidity.org",mobile:{universal:"https://justliquidity.org"}},tangem:{id:"76745388a50e6fea982c4dee2a3ad61a8aa417668be870754689caa8a7506c93",displayName:"Tangem",image_id:"8a5b6e94-e378-458d-bf2e-017cc7958e00",hostname:"tangem.com",mobile:{universal:"https://app.tangem.com"}},secux:{id:"6464873279d46030c0b6b005b33da6be5ed57a752be3ef1f857dc10eaf8028aa",displayName:"SecuX",image_id:"6013a9a1-4a67-45bb-fc24-27c11eb13900",hostname:"secuxtech.com",mobile:{universal:"https://wsweb.secuxtech.com"}},linen:{id:"dd8ee41915d967e547c80266e883d77ee808427405f4e8026a85ac1308104221",displayName:"Linen",image_id:"aff3e4e1-92a9-4066-f48f-3591947cf200",hostname:"linen.app",mobile:{universal:"https://linen.app/"}},ambire:{id:"2c81da3add65899baeac53758a07e652eea46dbb5195b8074772c62a77bbf568",displayName:"Ambire",image_id:"c39b3a16-1a38-4588-f089-cb7aeb584700",hostname:"www.ambire.com",mobile:{universal:"https://mobile.ambire.com"}},obvious:{id:"031f0187049b7f96c6f039d1c9c8138ff7a17fd75d38b34350c7182232cc29aa",displayName:"Obvious",image_id:"61abe2ca-b06d-4a8b-de3e-8326f523e900",hostname:"obvious.technology",mobile:{universal:"https://wallet.obvious.technology"}},easypocket:{id:"244a0d93a45df0d0501a9cb9cdfb4e91aa750cfd4fc88f6e97a54d8455a76f5c",displayName:"EasyPocket",image_id:"a9fcf1d1-3b2c-4226-0fb9-a6c8f2647300",hostname:"easypocket.app",mobile:{universal:"https://wallet.easypocket.app"}},rice_wallet:{id:"c40b9bcef32fa6ce4e0df98be1420628bbc4957646f742380fe618fcb4ab74f1",displayName:"RICE Wallet",image_id:"df94578e-19be-4f00-258f-2470343e7b00",hostname:"ricewallet.io",mobile:{universal:"https://ricewallet.io"}},safemoon:{id:"a0e04f1086aac204d4ebdd5f985c12ed226cd0006323fd8143715f9324da58d1",displayName:"SafeMoon",image_id:"ea0140c7-787c-43a4-838f-d5ab6a342000",hostname:"safemoon.com",mobile:{universal:"https://safemoon.com/wc"}},simplehold:{id:"dc5415b6ea8114db518ae91195b027d690a11a1d2bfdd1a904e93c5cb746380e",displayName:"SimpleHold",image_id:"a9f1ba96-b658-4d13-f71f-226b6389f000",hostname:"simplehold.io",mobile:{universal:"https://simplehold.io"}},bitizen:{id:"41f20106359ff63cf732adf1f7dc1a157176c9b02fd266b50da6dcc1e9b86071",displayName:"Bitizen",image_id:"75dd1471-77e9-4811-ce57-ec8fc980ec00",hostname:"bitizen.org",mobile:{universal:"https://bitizen.org/wallet"}},slavi_wallet:{id:"b823fb0d7228ef8e3c0bc9607df9ed79dae2ab3a2811d33f22ade4f573c18232",displayName:"Slavi Wallet",image_id:"282ce060-0beb-4236-b7b0-1b34cc6c8f00",hostname:"slavi.io",mobile:{universal:"https://www.slaviwallet.io"}},nufinetes:{id:"dccbd717df77b395445cc6080e01fffada9d8b92dacfda312a26c70c2e9af673",displayName:"nufinetes",image_id:"70080bd7-9858-4720-cf74-8f74cd74cb00",hostname:"www.nufinetes.com",mobile:{universal:"https://apple.vimworld.org"}},now_wallet:{id:"c482dfe368d4f004479977fd88e80dc9e81107f3245d706811581a6dfe69c534",displayName:"NOW Wallet",image_id:"b6ee4efc-f53e-475b-927b-a7ded6211700",hostname:"walletnow.app",mobile:{universal:"https://walletnow.app.link"}},blocto:{id:"14e7176536cb3706e221daaa3cfd7b88b7da8c7dfb64d1d241044164802c6bdd",displayName:"Blocto",image_id:"374258d3-c749-4f37-7815-77e61f798c00",hostname:"blocto.io",mobile:{universal:"https://blocto.app"}},timeless:{id:"9751385960bca290c13b443155288f892f62ee920337eda8c5a8874135daaea8",displayName:"Timeless",image_id:"32e89601-0490-42fc-0cc4-8627d62a2000",hostname:"timelesswallet.xyz",mobile:{universal:"https://timelesswallet.xyz"}},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"}},card:{id:"11c5487e4d8dd8bf32d4c92222363df8296a27307b2531be1e25770365392ecb",displayName:"Card",image_id:"325428cf-c212-4d83-a434-7f48902d2c00",hostname:"cardstack.com",mobile:{universal:"https://wallet.cardstack.com"}},mew_wallet:{id:"f5b4eeb6015d66be3f5940a895cbaa49ef3439e518cd771270e6b553b48f31d2",displayName:"MEW wallet",image_id:"e2024511-2c9b-46d7-3111-52df3d241700",hostname:"mewwallet.com",mobile:{universal:"https://mewwallet.com"}},pltwallet:{id:"576c90ceaea34f29ff0104837cf2b2e23d201be43be1433feeb18d375430e1fd",displayName:"PLTwallet",image_id:"a5d9dd15-8cef-42de-8bed-09e01a8b0200",hostname:"pltwallet.io",mobile:{universal:"https://pltwallet.io/"}},avacus:{id:"94f785c0c8fb8c4f38cd9cd704416430bcaa2137f27e1468782d624bcd155a43",displayName:"Avacus",image_id:"a7106965-91cc-4a73-4688-c5c72ae0ed00",hostname:"avacus.cc",mobile:{universal:"https://avacus.app.link"}},bitski:{id:"3b9f67c2c0887f71e4f9ba1bd2bf5b4eb6cda94419abd3f0c5c12931a60928b0",displayName:"Bitski",image_id:"94d94cb5-a94f-47cf-70e6-fe8d3f1c3700",hostname:"bitski.com",mobile:{universal:"https://wallet.bitski.com/walletconnect/wc"}},hippowallet:{id:"664b505fea4c2117b8a55c054ef209664e0a68ddaafd7534df739f97a293fa1d",displayName:"HippoWallet",image_id:"f9570968-45f7-47c1-3189-98cf60e25c00",hostname:"hippowallet.io",mobile:{universal:"https://hippowallet.io"}},edge:{id:"0c5bba82e70a2b62405871af809020a077d110d765c0798eb660ad5d3131b328",displayName:"Edge",image_id:"f601bc29-4298-422f-dbf7-34dac2884f00",hostname:"edge.app",mobile:{universal:"https://deep.edge.app/wc"}},assure:{id:"792fbacfe787d67595dd4eb38ac308e14b3bbc810393db56f477a92e5ac8764b",displayName:"Assure",image_id:"64db7104-c8b7-44ea-e102-11ce87124200",hostname:"www.assure.pro",mobile:{universal:"https://www.assure.pro/Official"}},enjin_wallet:{id:"bdc9433ffdaee55d31737d83b931caa1f17e30666f5b8e03eea794bac960eb4a",displayName:"Enjin Wallet",image_id:"add9626b-a5fa-4c12-178c-e5584e6dcd00",hostname:"enjin.io",mobile:{universal:"https://deeplink.wallet.enjin.io/"}},slingshot:{id:"d23de318f0f56038c5edb730a083216ff0cce00c1514e619ab32231cc9ec484b",displayName:"Slingshot",image_id:"10c75467-6612-48ad-b97b-63985e922200",hostname:"slingshot.finance",mobile:{universal:"https://app.slingshot.finance"}},coinstats:{id:"7e94e75c90964a69ea375b92214f50c4223dfbfa4913a3733b615444b322f687",displayName:"CoinStats",image_id:"f989ab84-650b-4ad5-c342-77f3334f1b00",hostname:"coinstats.app",mobile:{universal:"https://coinstats.app"}},bitcoincom_wallet:{id:"107bb20463699c4e614d3a2fb7b961e66f48774cb8f6d6c1aee789853280972c",displayName:"Bitcoin.com Wallet",image_id:"0d7938e1-9b3b-4d8b-177b-98188c4cf400",hostname:"www.bitcoin.com",mobile:{universal:"https://wallet.bitcoin.com/"}},binance:{id:"8a0ee50d1f22f6651afcae7eb4253e52a3310b90af5daef78a8c4929a9bb99d4",displayName:"Binance",image_id:"ebac7b39-688c-41e3-7912-a4fefba74600",hostname:"www.binance.com",mobile:{universal:"https://app.binance.com/cedefi"}}},rs=(e,t="md")=>`https://registry.walletconnect.com/v2/logo/${t}/${e}`;function ns(e){return{name:e.displayName||"",universalLink:e.mobile.universal||"",deepLink:e.mobile.native||""}}function is(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 as(e,t){return Vr.isAndroid?e:is(e,ns(t))}var di=(e,t)=>{if(!e)return;if(Vr.isAndroid){(0,li.saveMobileLinkInfo)({name:"Unknown",href:t||"wc:"});return}let o=is(t||"wc:",ns(e));(0,li.saveMobileLinkInfo)({name:(e==null?void 0:e.displayName)||"",href:o})},ss=()=>{!Vr.isAndroid||window.open("wc:","_self")};var io=class extends ke{constructor(o,r){super(o||"unknown");this.connectorType="wallet_connect";this.reconnectDelayMs=10;this.reconnectBackoff=2;this.proxyProvider=new X,this.subscribeListeners(),o&&(this.walletEntry=ci[o]),this.setWalletProvider(this.createOrRestoreProvider(r)),r&&this.promptConnection(),this.syncAccounts().then(()=>{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(){var o,r,n;return this.walletEntry?{name:this.walletEntry.displayName,icon:this.walletClientType==="metamask"?be:rs(this.walletEntry.image_id)}:{name:ti(((o=this.walletProvider.walletMeta)==null?void 0:o.name)||"")||"WalletConnect",icon:((n=(r=this.walletProvider.walletMeta)==null?void 0:r.icons)==null?void 0:n[0])||_o}}async promptConnection(){return new Promise((o,r)=>{this.walletProvider.connector.on("disconnect",(i,a)=>{if(i){r($e(i));return}if(a.params.some(l=>l.message==="Session Rejected")){this.setWalletProvider(this.replaceProvider()),r(new no);return}r(new J("Unknown error during connection"))}),this.walletProvider.qrcode&&this.walletProvider.connector.on("modal_closed",()=>{this.setWalletProvider(this.replaceProvider()),r(new no)}),this.walletProvider.connector.on("transport_error",(i,a)=>{r($e(i))}),(async()=>{var l;let i="",a=await Promise.race([this.enableProvider(),ii()]);if(a.length>0&&(i=a[0]),!i||i==="")throw new J("Unable to retrieve address");if((l=this.walletProvider.walletMeta)!=null&&l.url){let s=Qo(this.walletProvider.walletMeta.url);this.walletEntry=s==null?void 0:s.entry,this.walletClientType=(s==null?void 0:s.walletClientType)||"unknown"}this.connected=!0,await this.syncAccounts(a),o()})().catch(i=>r($e(i)))})}async sign(o){this.walletEntry&&di(this.walletEntry),this.walletProvider.connected||await this.enableProvider();let r=await this.walletProvider.getWalletConnector();return new Promise(async(n,i)=>{var a;r.signPersonalMessage([o,(a=this.walletProvider.accounts)==null?void 0:a[0]]).then(l=>n(l)).catch(l=>i(l)),Jo.isAndroid&&ss()})}disconnect(){this.walletProvider.close().catch(()=>console.warn("Unable to disconnect Wallet Connect provider"))}get walletProvider(){return this.proxyProvider.walletProvider}setWalletProvider(o){this.proxyProvider.setWalletProvider(o)}replaceProvider(){return this.walletProvider.close().catch(()=>console.warn("Unable to disconnect provider")),z.getKeys().forEach(o=>{o.startsWith("walletconnect")&&z.get(o).key===this.walletProvider.connector.session.key&&z.del(o)}),this.createOrRestoreProvider()}static generateStorageId(){return`${Aa}:${Math.random().toString(36).slice(2)}`}createOrRestoreProvider(o){var l,s;o||(o=io.generateStorageId());let r=this.walletEntry||Jo.isAndroid?{qrcode:!1}:{},n={};for(let p of Lr){let f=(s=(l=p.rpcUrls.infura)==null?void 0:l.http)==null?void 0:s[0];f&&(n[p.id]=f+"/"+Je)}let i=new ls.default({infuraId:Je,storageId:o,pollingInterval:Sa,rpc:n,...r}),a=this.walletEntry;return a&&(i.walletId=a.id),a?i.connector.on("display_uri",(p,f)=>{di(a);let h=f.params[0],u=as(h,a);Jo.isAndroid?window.open(u,"_self"):window.open(u,"_self","noopener,noreferrer")}):Jo.isAndroid?i.connector.on("display_uri",(p,f)=>{let h=f.params[0];window.open(h,"_self")}):i.connector.on("connect",()=>{var p,f;if((p=i.walletMeta)!=null&&p.url){let h=Qo(i.walletMeta.url);i.walletId=(f=h==null?void 0:h.entry)==null?void 0:f.id,this.walletEntry=h==null?void 0:h.entry,this.walletClientType=(h==null?void 0:h.walletClientType)||"unknown"}}),i.connector.on("transport_error",()=>{console.warn("Transport failed. Replacing provider."),setTimeout(()=>{this.setWalletProvider(this.replaceProvider()),this.reconnectDelayMs*=this.reconnectBackoff},this.reconnectDelayMs)}),i}async enableProvider(){return this.walletProvider.connected?Promise.resolve(this.walletProvider.accounts):await this.walletProvider.enable()}};var Nr=()=>{let e=window;if(!e.ethereum)return!1;if(zr(window.ethereum,!0))return!0;if(e.ethereum.providers){for(let t of e.ethereum.providers)if(zr(t,!0))return!0}return!1},$r=()=>{let e=window;if(!e.ethereum)return!1;if(zr(window.ethereum,!1))return!0;if(e.ethereum.providers){for(let t of e.ethereum.providers)if(zr(t,!1))return!0}return!1},zr=(e,t)=>e.isMetaMask?e.isMetaMask&&!t?!0:!(e.isBraveWallet&&!e._events&&!e._state||e.isApexWallet||e.isAvalanche||e.isBitKeep||e.isBlockWallet||e.isKuCoinWallet||e.isMathWallet||e.isOkxWallet||e.isOKExWallet||e.isOneInchIOSWallet||e.isOneInchAndroidWallet||e.isOpera||e.isPhantom||e.isPortal||e.isRabby||e.isTokenPocket||e.isTokenary||e.isZerion):!1,Xe=()=>{var e,t;if("phantom"in window){let o=window;if((t=(e=o==null?void 0:o.phantom)==null?void 0:e.ethereum)!=null&&t.isPhantom)return!0}return!1},ao=()=>{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},ui=e=>{let t=localStorage.getItem("-walletlink:https://www.walletlink.org:Addresses");return t?!!(e==null?void 0:e.linkedAccounts.filter(r=>r.type=="wallet"&&r.address===(0,pi.getAddress)(t)).length):!1},Ao=class extends cs.default{constructor(){super();this.getEthereumProvider=()=>{let o=this.wallets[0],r=this.walletConnectors.find(n=>n.wallets.find(i=>i.address===(o==null?void 0:o.address)));return!o||!r?new X:r.proxyProvider};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||(z.get(Qn)&&(z.getKeys().forEach(o=>{o.startsWith("walletconnect")&&z.del(o)}),z.del(Qn)),La().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}})),(ao()||z.getKeys().find(o=>o.startsWith("-walletlink")))&&this.createWalletConnector("coinbase_wallet","coinbase_wallet"),this.restoreWalletConnectConnectors(),this.initialized=!0)}restoreWalletConnectConnectors(){typeof window>"u"||z.getKeys().forEach(o=>{var r,n;if(o.startsWith("walletconnect")){let i=(n=(r=z.get(o))==null?void 0:r.peerMeta)==null?void 0:n.url,a;if(i){let s=Qo(i);s!=null&&s.walletClientType&&(a=s.walletClientType)}let l=new io(a,o);this.addWalletConnector(l)}})}findWalletConnector(o,r){return 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 Mr(o,r),a=new Br(i);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")}}createWalletConnector(o,r){let n=this.findWalletConnector(o,r);if(n&&n.walletClientType!=="unknown")return n;let a=(()=>{switch(o){case"injected":switch(r){case"phantom":return Xe()?new Gr:null;case"metamask":default:return $r()?new Fr:null}case"coinbase_wallet":return new Ur;case"wallet_connect":return new io(r)}})();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=z.get(Jn);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}));z.put(Jn,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=(0,pi.getAddress)(o),this.emit("walletsUpdated")}};function Or(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==null?void 0:r.address)!==(n==null?void 0:n.address)||(r==null?void 0:r.chainId)!==(n==null?void 0:n.chainId)||(r==null?void 0:r.connectorType)!==(n==null?void 0:n.connectorType)||(r==null?void 0:r.connectedAt)!==(n==null?void 0:n.connectedAt)||(r==null?void 0:r.walletClientType)!==(n==null?void 0:n.walletClientType)||(r==null?void 0:r.isConnected)!==(n==null?void 0:n.isConnected)||(r==null?void 0:r.linked)!==(n==null?void 0:n.linked))return!1}return!0}var qr=require("ofetch");var jr=class{constructor(t,o,r){this.appId=t,this.sdkVersion=Rr,this.client=o,this.defaults=r,this.fallbackApiUrl=o.fallbackApiUrl}async get(t,o,r=!0){try{return await(0,qr.ofetch)(t,await this.buildConfig({headers:{"Cache-Control":"no-cache"},...o},r))}catch(n){throw se(n)}}async post(t,o,r,n=!0){try{return await(0,qr.ofetch)(t,{method:"POST",...o?{body:o}:{},...await this.buildConfig(r,n)})}catch(i){throw se(i)}}async delete(t,o,r=!0){try{return await(0,qr.ofetch)(t,{method:"DELETE",...await this.buildConfig(o,r)})}catch(n){throw se(n)}}async buildConfig(t,o=!0){t=Object.assign({withCredentials:!0},t||{});let{headers:r,...n}=t,i;o&&(i=await this.client.getAccessToken());let a={...r,...i?{authorization:`Bearer ${i}`}:{},"privy-app-id":this.appId,"privy-client":`react-auth:${this.sdkVersion}`};return{...this.defaults,headers:a,...n}}};function ds(e){return e instanceof eo?"email":e instanceof oo?"sms":e instanceof to?"siwe":e instanceof Mt?e.meta.provider:null}var Gt=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 ps=E(require("jose")),kt=class{static parse(t){try{return new kt(t)}catch{return null}}constructor(t){this.value=t,this._decoded=ps.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 Qc=30,Kr=class{constructor(){this.authenticateOnce=new Gt(async t=>this._authenticate(t)),this.linkOnce=new Gt(async t=>this._link(t)),this.refreshOnce=new Gt(this._refresh.bind(this)),this.destroyOnce=new Gt(this._destroy.bind(this)),this.forkSessionOnce=new Gt(this._forkSession.bind(this))}get token(){try{let t=z.get(xo);return typeof t=="string"?new kt(t).value:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get refreshToken(){try{let t=z.get(Wr);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get forkedToken(){try{let t=z.get(Ko);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}hasRefreshCredentials(){return typeof this.token=="string"&&typeof this.refreshToken=="string"}hasRecoveryCredentials(){return typeof this.forkedToken=="string"}hasActiveToken(){let t=kt.parse(this.token);return t!==null&&!t.isExpired(Qc)}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=ds(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:Tt(n),isNewUser:i}}catch(o){throw console.warn("Error authenticating session"),He(o)}}async _link(t){try{let o=await t.link();return Tt(o)}catch(o){throw console.warn("Error linking account"),He(o)}}async _refresh(){if(!this.api)throw new A("Session has no API instance");if(!this.client)throw new A("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)n=await this.api.post(na(),{refresh_token:o},{headers:{authorization:`Bearer ${t}`}},!1),r&&this.clearForkedToken();else if(r)n=await this.api.post(sa(),{refresh_token:r},{},!1),this.clearForkedToken();else return null;return this.storeToken(n.token),this.storeRefreshToken(n.refresh_token),Tt(n.user)}catch(n){if(n instanceof Co&&n.status===400&&n.message==="Invalid auth token")return this.destroyLocalState(),null;throw He(n)}}async _destroy(){var t;try{await((t=this.api)==null?void 0:t.post(ia(),{refresh_token:this.refreshToken}))}catch{console.warn("Error destroying session")}this.destroyLocalState()}async _forkSession(){if(!this.api)throw new A("Session has no API instance");let t=this.refreshToken;try{let o=await this.api.post(aa(),{refresh_token:t});return this.storeToken(o.token),this.storeRefreshToken(o.refresh_token),o.new_session_refresh_token}catch(o){throw He(o)}}destroyLocalState(){this.storeToken(null),this.storeRefreshToken(null),this.clearForkedToken()}storeToken(t){typeof t=="string"?z.put(xo,t):z.del(xo)}storeRefreshToken(t){typeof t=="string"?z.put(Wr,t):z.del(Wr)}clearForkedToken(){z.del(Ko)}};var mi,So=class{constructor(t){this.apiUrl=t.apiUrl||kr,this.fallbackApiUrl=this.apiUrl,this.timeout=t.timeout||_a,this.appId=t.appId,this.clientAnalyticsId=typeof window>"u"?null:crypto.randomUUID(),this.connectors=new Ao,mi||(mi=new Kr),this.session=mi,this.api=this.generateApi(),this.session.client=this}generateApi(){let t=new jr(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()}authenticate(){if(!this.authFlow)throw new A("No auth flow in progress.");return this.session.authenticate(this.authFlow)}link(){if(!this.authFlow)throw new A("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(Ca(),{address:t});return Tt(o)}catch(o){throw He(o)}}async unlinkPhone(t){try{let o=await this.api.post(xa(),{phoneNumber:t});return Tt(o)}catch(o){throw He(o)}}async unlinkWallet(t){try{let o=await this.api.post(wa(),{address:t});return Tt(o)}catch(o){throw He(o)}}async unlinkOAuth(t,o){try{let r=await this.api.post(Ea(),{provider:t,subject:o});return Tt(r)}catch(r){throw He(r)}}async createAnalyticsEvent(t,o,r){try{if(!this.clientAnalyticsId)throw new Error("Cannot create analytics event if run in node and not browswer");await this.api.post(Ta(),{event_name:t,client_id:this.clientAnalyticsId,payload:{...o||{},clientTimestamp:r?r.toISOString():new Date().toISOString()}})}catch(n){console.error("Failed to create analytics event",n)}}async getAuthenticatedUser(){return this.session.hasRefreshCredentials()||this.session.hasRecoveryCredentials()?this.session.refresh():null}async getAccessToken(t){var o;return this.session.hasActiveToken()?((o=kt.parse(this.session.token))==null?void 0:o.audience)!==this.appId?(await this.logout(),null):this.session.token:!(t!=null&&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,privacyPolicyUrl:t.privacy_policy_url,customApiUrl:t.custom_api_url,createdAt:new Date(t.created_at*1e3),updatedAt:new Date(t.updated_at*1e3)}}catch(t){throw He(t)}}async getUsdTokenPrice(t){try{return(await this.api.get(`/api/v1/token_price?chainId=${t}`)).usd}catch{console.error(`Unable to fetch token price for chain with id ${t}`);return}}async forkSession(){return await this.session.forkSession()}};var E5=require("wicg-inert"),Fn=require("body-scroll-lock"),Gn=require("react"),Xi=require("react"),bc=E(require("react-dom")),Hn=E(require("styled-components"));var Yr=require("react");var hi=(0,Yr.createContext)({isLinking:!1,linkingHint:null,walletConnectionStatus:null,getAuthMeta:T,getAuthFlow:T,closePrivyModal:T,connectWallet:T,initLoginWithWallet:T,loginWithWallet:T,loginWithCode:T,initLoginWithEmail:T,initLoginWithSms:T,resendEmailCode:T,resendSmsCode:T,initLoginWithOAuth:T,loginWithOAuth:T,refreshUser:T,walletProxy:null,createAnalyticsEvent:T,getUsdTokenPrice:T,recoverEmbeddedWallet:T}),W=()=>(0,Yr.useContext)(hi);var Zr=require("react");var fi=(0,Zr.createContext)({ready:!1,authenticated:!1,user:null,walletConnectors:null,connectWallet:T,login:T,linkEmail:T,linkPhone:T,linkWallet:T,linkGoogle:T,linkTwitter:T,linkDiscord:T,linkGithub:T,linkApple:T,logout:T,getAccessToken:T,getEthereumProvider:T,getEthersProvider:T,getWeb3jsProvider:T,unlinkEmail:T,unlinkPhone:T,unlinkWallet:T,unlinkGoogle:T,unlinkTwitter:T,unlinkDiscord:T,unlinkGithub:T,unlinkApple:T,setActiveWallet:T,forkSession:T,createWallet:T,signMessage:T,sendTransaction:T,exportWallet:T}),F=()=>(0,Zr.useContext)(fi);var tn=E(require("styled-components"));var Rt=E(require("styled-components"));var Qr=E(require("styled-components")),Ht=require("react/jsx-runtime"),Jr=({success:e,fail:t})=>(0,Ht.jsxs)(Ht.Fragment,{children:[(0,Ht.jsx)(Xo,{className:e?"success":t?"fail":""}),(0,Ht.jsx)(Jc,{className:e?"success":t?"fail":""})]}),Xo=Qr.default.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
- `,Jc=(0,Zr.default)(Xo)`
45
+ `,Jc=(0,Qr.default)(Xo)`
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
- `,ot=e=>(0,Gt.jsx)(Xc,{color:e.color||"var(--privy-color-background-2)"}),Xc=(0,Zr.default)(Xo)`
51
+ `,ot=e=>(0,Ht.jsx)(Xc,{color:e.color||"var(--privy-color-background-2)"}),Xc=(0,Qr.default)(Xo)`
52
52
  && {
53
53
  height: 0.9rem;
54
54
  width: 0.9rem;
@@ -79,7 +79,7 @@ Resources:
79
79
  color: var(--privy-color-foreground-3);
80
80
  cursor: not-allowed;
81
81
  }
82
- `,re=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>(0,Re.jsx)(ms,{disabled:t||o,...n,children:t?(0,Re.jsxs)("span",{children:[(0,Re.jsx)(ot,{}),r?(0,Re.jsx)("span",{children:r}):null]}):e}),Jr=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>(0,Re.jsx)(ms,{as:"a",disabled:t||o,...n,children:t?(0,Re.jsxs)("span",{children:[(0,Re.jsx)(ot,{}),r?(0,Re.jsx)("span",{children:r}):null]}):e}),ms=(0,Rt.default)(us)`
82
+ `,re=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>(0,Re.jsx)(ms,{disabled:t||o,...n,children:t?(0,Re.jsxs)("span",{children:[(0,Re.jsx)(ot,{}),r?(0,Re.jsx)("span",{children:r}):null]}):e}),Xr=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>(0,Re.jsx)(ms,{as:"a",disabled:t||o,...n,children:t?(0,Re.jsxs)("span",{children:[(0,Re.jsx)(ot,{}),r?(0,Re.jsx)("span",{children:r}):null]}):e}),ms=(0,Rt.default)(us)`
83
83
  && {
84
84
  background-color: ${e=>e.warn?"var(--privy-color-error)":"var(--privy-color-accent)"};
85
85
  color: var(--privy-color-foreground-accent);
@@ -182,7 +182,7 @@ Resources:
182
182
  cursor: not-allowed;
183
183
  }
184
184
  }
185
- `,Xr=Rt.default.div`
185
+ `,en=Rt.default.div`
186
186
  /* Set to match height of SoftCtaButton to avoid reflow if conditionally rendered */
187
187
  height: 44px;
188
188
  `;var fs=E(require("styled-components")),ys=fs.default.span`
@@ -201,7 +201,7 @@ Resources:
201
201
  border-color: var(--privy-color-accent);
202
202
  border-bottom-color: var(--privy-color-accent);
203
203
  }
204
- `;var yi=E(require("styled-components"));var hi=require("react/jsx-runtime"),gs=({style:e,...t})=>(0,hi.jsx)("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:(0,hi.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M10.5 19.5L3 12m0 0l7.5-7.5M3 12h18"})});var fi=require("react/jsx-runtime"),vs=({style:e,...t})=>(0,fi.jsx)("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:(0,fi.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M6 18L18 6M6 6l12 12"})});var We=require("react/jsx-runtime"),td=()=>(0,We.jsx)("div",{}),od=({backFn:e})=>(0,We.jsx)("div",{children:(0,We.jsx)(gs,{onClick:e})}),rd=e=>(0,We.jsx)("div",{children:(0,We.jsx)("div",{children:(0,We.jsx)(vs,{onClick:e.onClose})})});var _=({backFn:e,onClose:t,title:o})=>{let{closePrivyModal:r}=W(),{app:n}=w();return(0,We.jsxs)(nd,{children:[e?(0,We.jsx)(od,{backFn:e}):(0,We.jsx)(td,{}),o&&(0,We.jsx)(id,{children:o}),n!=null&&n.render.inDialog?(0,We.jsx)(rd,{onClose:t||(()=>r())}):null]})},nd=yi.default.div`
204
+ `;var vi=E(require("styled-components"));var yi=require("react/jsx-runtime"),gs=({style:e,...t})=>(0,yi.jsx)("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:(0,yi.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M10.5 19.5L3 12m0 0l7.5-7.5M3 12h18"})});var gi=require("react/jsx-runtime"),vs=({style:e,...t})=>(0,gi.jsx)("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:(0,gi.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M6 18L18 6M6 6l12 12"})});var We=require("react/jsx-runtime"),td=()=>(0,We.jsx)("div",{}),od=({backFn:e})=>(0,We.jsx)("div",{children:(0,We.jsx)(gs,{onClick:e})}),rd=e=>(0,We.jsx)("div",{children:(0,We.jsx)("div",{children:(0,We.jsx)(vs,{onClick:e.onClose})})});var _=({backFn:e,onClose:t,title:o})=>{let{closePrivyModal:r}=W(),{app:n}=w();return(0,We.jsxs)(nd,{children:[e?(0,We.jsx)(od,{backFn:e}):(0,We.jsx)(td,{}),o&&(0,We.jsx)(id,{children:o}),n!=null&&n.render.inDialog?(0,We.jsx)(rd,{onClose:t||(()=>r())}):null]})},nd=vi.default.div`
205
205
  height: 30px;
206
206
  display: flex;
207
207
  align-items: center;
@@ -259,12 +259,12 @@ Resources:
259
259
  height: 30px;
260
260
  margin-bottom: 10px;
261
261
  }
262
- `,id=yi.default.div`
262
+ `,id=vi.default.div`
263
263
  overflow: hidden;
264
264
  white-space: nowrap;
265
265
  max-width: 100%;
266
266
  text-overflow: ellipsis;
267
- `;var gi=require("react/jsx-runtime"),bs=({style:e,...t})=>(0,gi.jsx)("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:(0,gi.jsx)("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"})});var ne=require("react/jsx-runtime"),ws=()=>{let{navigate:e,app:t}=w(),o=(t==null?void 0:t.allowlistConfig.errorTitle)||"You don't have access to this app",r=(t==null?void 0:t.allowlistConfig.errorDetail)||"Have you been invited?",n=(t==null?void 0:t.allowlistConfig.errorCtaText)||"Try another account";return(0,ne.jsxs)(ne.Fragment,{children:[(0,ne.jsx)(_,{}),(0,ne.jsxs)(ad,{children:[(0,ne.jsx)(ld,{children:(0,ne.jsxs)("div",{children:[(0,ne.jsx)(ys,{}),(0,ne.jsx)(bs,{style:{width:"38px",height:"38px",strokeWidth:"1",stroke:"var(--privy-color-accent)",fill:"var(--privy-color-accent)"}})]})}),(0,ne.jsxs)(sd,{children:[typeof o=="string"?(0,ne.jsx)("h3",{children:o}):(0,ne.jsx)(ne.Fragment,{children:o}),typeof r=="string"?(0,ne.jsx)("p",{children:r}):(0,ne.jsx)(ne.Fragment,{children:r})]}),t!=null&&t.allowlistConfig.errorCtaLink?(0,ne.jsx)(he,{as:"a",href:t.allowlistConfig.errorCtaLink,children:n}):(0,ne.jsx)(he,{onClick:()=>{e("LANDING")},children:n})]})]})},ad=en.default.div`
267
+ `;var bi=require("react/jsx-runtime"),bs=({style:e,...t})=>(0,bi.jsx)("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:(0,bi.jsx)("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"})});var ne=require("react/jsx-runtime"),ws=()=>{let{navigate:e,app:t}=w(),o=(t==null?void 0:t.allowlistConfig.errorTitle)||"You don't have access to this app",r=(t==null?void 0:t.allowlistConfig.errorDetail)||"Have you been invited?",n=(t==null?void 0:t.allowlistConfig.errorCtaText)||"Try another account";return(0,ne.jsxs)(ne.Fragment,{children:[(0,ne.jsx)(_,{}),(0,ne.jsxs)(ad,{children:[(0,ne.jsx)(ld,{children:(0,ne.jsxs)("div",{children:[(0,ne.jsx)(ys,{}),(0,ne.jsx)(bs,{style:{width:"38px",height:"38px",strokeWidth:"1",stroke:"var(--privy-color-accent)",fill:"var(--privy-color-accent)"}})]})}),(0,ne.jsxs)(sd,{children:[typeof o=="string"?(0,ne.jsx)("h3",{children:o}):(0,ne.jsx)(ne.Fragment,{children:o}),typeof r=="string"?(0,ne.jsx)("p",{children:r}):(0,ne.jsx)(ne.Fragment,{children:r})]}),t!=null&&t.allowlistConfig.errorCtaLink?(0,ne.jsx)(he,{as:"a",href:t.allowlistConfig.errorCtaLink,children:n}):(0,ne.jsx)(he,{onClick:()=>{e("LANDING")},children:n})]})]})},ad=tn.default.div`
268
268
  display: flex;
269
269
  flex-direction: column;
270
270
  align-items: center;
@@ -272,11 +272,11 @@ Resources:
272
272
  margin-left: 27px;
273
273
  margin-right: 27px;
274
274
  gap: 24px;
275
- `,sd=en.default.div`
275
+ `,sd=tn.default.div`
276
276
  display: flex;
277
277
  flex-direction: column;
278
278
  gap: 8px;
279
- `,ld=en.default.div`
279
+ `,ld=tn.default.div`
280
280
  display: flex;
281
281
  flex-direction: column;
282
282
  justify-content: center;
@@ -299,7 +299,7 @@ Resources:
299
299
  left: -19px;
300
300
  top: -19px;
301
301
  }
302
- `;var Vt=require("react"),Es=require("react-device-detect"),Ro=E(require("styled-components"));var tn=E(require("styled-components")),Ce=tn.default.div`
302
+ `;var zt=require("react"),Es=require("react-device-detect"),Ro=E(require("styled-components"));var on=E(require("styled-components")),Ce=on.default.div`
303
303
  display: flex;
304
304
  flex-direction: column;
305
305
  align-items: flex-start;
@@ -307,18 +307,18 @@ Resources:
307
307
  margin-top: auto;
308
308
  gap: 16px;
309
309
  flex-grow: 100;
310
- `,ko=tn.default.div`
310
+ `,ko=on.default.div`
311
311
  display: flex;
312
312
  flex-direction: column;
313
313
  align-items: center;
314
314
  justify-content: center;
315
315
  height: 100%;
316
316
  width: 100%;
317
- `,sf=tn.default.div`
317
+ `,lf=on.default.div`
318
318
  display: flex;
319
319
  flex-direction: column;
320
320
  width: 100%;
321
- `;var vi=E(require("styled-components"));var je=require("react/jsx-runtime"),cd=vi.default.div`
321
+ `;var wi=E(require("styled-components"));var je=require("react/jsx-runtime"),cd=wi.default.div`
322
322
  margin-top: 16px;
323
323
  font-size: 12px;
324
324
  text-align: center;
@@ -327,7 +327,7 @@ Resources:
327
327
  && > a {
328
328
  color: var(--privy-color-accent);
329
329
  }
330
- `;function on(e){let{legal:{privacyPolicyUrl:t,termsAndConditionsUrl:o}}=e.app,r=!!t,n=!!o,i=r&&n;return!r&&!n?null:(0,je.jsxs)(cd,{children:["By logging in I agree to the"," ",n&&(0,je.jsx)("a",{href:o,target:"_blank",children:i?"Terms":"Terms of Service"}),i&&" & ",r&&(0,je.jsx)("a",{href:t,target:"_blank",children:"Privacy Policy"})]})}var B=({protectedByPrivy:e})=>(0,je.jsx)(rt,{hideOnMobile:e,children:e?(0,je.jsxs)(je.Fragment,{children:[(0,je.jsx)(Bt,{}),(0,je.jsx)("span",{children:(0,je.jsx)("a",{href:"https://www.privy.io/",target:"_blank",children:"Protected by Privy"})})]}):null}),rt=vi.default.div`
330
+ `;function rn(e){let{legal:{privacyPolicyUrl:t,termsAndConditionsUrl:o}}=e.app,r=!!t,n=!!o,i=r&&n;return!r&&!n?null:(0,je.jsxs)(cd,{children:["By logging in I agree to the"," ",n&&(0,je.jsx)("a",{href:o,target:"_blank",children:i?"Terms":"Terms of Service"}),i&&" & ",r&&(0,je.jsx)("a",{href:t,target:"_blank",children:"Privacy Policy"})]})}var B=({protectedByPrivy:e})=>(0,je.jsx)(rt,{hideOnMobile:e,children:e?(0,je.jsxs)(je.Fragment,{children:[(0,je.jsx)(Ft,{}),(0,je.jsx)("span",{children:(0,je.jsx)("a",{href:"https://www.privy.io/",target:"_blank",children:"Protected by Privy"})})]}):null}),rt=wi.default.div`
331
331
  height: 20px;
332
332
  font-size: 12px;
333
333
  display: flex;
@@ -353,7 +353,7 @@ Resources:
353
353
  }
354
354
  `;var er=E(require("styled-components")),Ke=require("react/jsx-runtime"),pe=({title:e,description:t,children:o,...r})=>(0,Ke.jsx)(Cs,{...r,children:(0,Ke.jsxs)(Ke.Fragment,{children:[(0,Ke.jsx)("h3",{children:e}),typeof t=="string"?(0,Ke.jsx)("p",{children:t}):t,o]})}),ht=(0,er.default)(pe)`
355
355
  margin-bottom: 24px;
356
- `,Ht=({title:e,description:t,icon:o,children:r,...n})=>(0,Ke.jsxs)(dd,{...n,children:[o?(0,Ke.jsx)(pd,{children:o}):null,(0,Ke.jsx)("h3",{children:e}),typeof t=="string"?(0,Ke.jsx)("p",{children:t}):null,r]}),Cs=er.default.div`
356
+ `,Vt=({title:e,description:t,icon:o,children:r,...n})=>(0,Ke.jsxs)(dd,{...n,children:[o?(0,Ke.jsx)(pd,{children:o}):null,(0,Ke.jsx)("h3",{children:e}),typeof t=="string"?(0,Ke.jsx)("p",{children:t}):null,r]}),Cs=er.default.div`
357
357
  display: flex;
358
358
  flex-direction: column;
359
359
  justify-content: flex-start;
@@ -388,7 +388,7 @@ Resources:
388
388
  border-color: var(--privy-color-background-2);
389
389
  border-width: 1px;
390
390
  }
391
- `;var $=require("react/jsx-runtime"),bi=6,xs=new Array(bi).fill(""),ud=1400;var Ts=()=>{var ge,le,Y;let{app:e,data:t,navigate:o,setModalData:r}=w(),{closePrivyModal:n,resendEmailCode:i,resendSmsCode:a,getAuthMeta:l,loginWithCode:s}=W(),{authenticated:p,user:f}=F(),[h,u]=(0,Vt.useState)(xs),[C,b]=(0,Vt.useState)(!1),[m,g]=(0,Vt.useState)(null),[L,S]=(0,Vt.useState)(null),k=(ge=l())!=null&&ge.email?0:1,M=e!=null&&e.render.inDialog?ut:0,R=e!=null&&e.render.inDialog?M-500:0;(0,Vt.useEffect)(()=>{var V;if(!(p&&C&&f))return;if(((V=t==null?void 0:t.login)==null?void 0:V.promptCreatePrivyWalletFlow)&&!f.wallet){let oe=setTimeout(()=>{r({createWallet:{onSuccess:()=>{},onFailure:Ge=>console.error(Ge),callAuthOnSuccessOnClose:!0}}),o("EMBEDDED_WALLET_SCREEN")},R);return()=>clearTimeout(oe)}else{let oe=setTimeout(n,M);return()=>clearTimeout(oe)}},[p,C,f]),(0,Vt.useEffect)(()=>{if(m&&L===0){let me=setTimeout(()=>{u(xs),g(null);let K=document.querySelector("input[name=code-0]");K==null||K.focus()},ud);return()=>clearTimeout(me)}},[m]);let O=me=>{var dt;let K=me.currentTarget.value.replace(" ","");if(K==="")return;if(isNaN(Number(K))){g("Code should be numeric"),S(1);return}g(null),S(null);let V=Number((dt=me.currentTarget.name)==null?void 0:dt.charAt(5)),oe=[...K||[""]].slice(0,bi-V),Ge=[...h.slice(0,V),...oe,...h.slice(V+oe.length)];u(Ge);let Jt=oe.length,ce=Math.min(Math.max(V+Jt,0),bi-1);if(!isNaN(Number(me.currentTarget.value))){let Te=document.querySelector(`input[name=code-${ce}]`);Te==null||Te.focus()}if(Ge.every(Te=>Te&&!isNaN(+Te))){let Te=document.querySelector(`input[name=code-${ce}]`);Te==null||Te.blur(),s(Ge.join("")).then(()=>b(!0)).catch(pt=>{(pt==null?void 0:pt.status)===422?g("Invalid or expired verification code"):g("Issue verifying code"),S(0)})}me.preventDefault()},I=me=>{L===1&&(g(null),S(null));let K=[...h.slice(0,me),"",...h.slice(me+1)];if(u(K),me>0){let V=document.querySelector(`input[name=code-${me-1}]`);V==null||V.focus()}},Ee=`Verify your ${k==0?"email":"phone"}`,Q=k==0?(0,$.jsxs)("p",{children:["Please check ",(0,$.jsx)(gd,{children:(le=l())==null?void 0:le.email})," for an email from privy.io and enter your code below."]}):`Please check ${(Y=l())==null?void 0:Y.phoneNumber} for a message from ${(e==null?void 0:e.name)||"privy.io"} and enter your code below.`;return(0,$.jsxs)($.Fragment,{children:[(0,$.jsx)(_,{},"header"),(0,$.jsxs)(md,{children:[(0,$.jsx)(pe,{title:Ee,description:Q}),(0,$.jsxs)(ko,{children:[(0,$.jsxs)(hd,{children:[(0,$.jsx)(fd,{fail:!!m,success:C,children:(0,$.jsx)("span",{children:m||(C?"Success!":"")})}),(0,$.jsx)("div",{children:h.map((me,K)=>(0,$.jsx)("input",{name:`code-${K}`,type:"text",value:h[K],onChange:O,onKeyUp:V=>{V.key==="Backspace"&&I(K)},inputMode:"numeric",autoFocus:K===0,pattern:"[0-9]",className:`${C?"success":""} ${m?"fail":""}`,autoComplete:Es.isMobile?"one-time-code":"off"},K))})]}),(0,$.jsx)(yd,{children:k==0?(0,$.jsxs)($.Fragment,{children:[(0,$.jsx)("span",{children:"Didn't get an email?"}),(0,$.jsx)("button",{onClick:i,children:"Resend Code"})]}):(0,$.jsxs)($.Fragment,{children:[(0,$.jsx)("span",{children:"Didn't get a message?"}),(0,$.jsx)("button",{onClick:a,children:"Resend Code"})]})})]})]}),(0,$.jsx)(B,{protectedByPrivy:!0})]})},md=Ro.default.div`
391
+ `;var $=require("react/jsx-runtime"),Ci=6,xs=new Array(Ci).fill(""),ud=1400;var Ts=()=>{var ge,le,Y;let{app:e,data:t,navigate:o,setModalData:r}=w(),{closePrivyModal:n,resendEmailCode:i,resendSmsCode:a,getAuthMeta:l,loginWithCode:s}=W(),{authenticated:p,user:f}=F(),[h,u]=(0,zt.useState)(xs),[C,b]=(0,zt.useState)(!1),[m,g]=(0,zt.useState)(null),[L,S]=(0,zt.useState)(null),k=(ge=l())!=null&&ge.email?0:1,M=e!=null&&e.render.inDialog?ut:0,R=e!=null&&e.render.inDialog?M-500:0;(0,zt.useEffect)(()=>{var V;if(!(p&&C&&f))return;if(((V=t==null?void 0:t.login)==null?void 0:V.promptCreatePrivyWalletFlow)&&!f.wallet){let oe=setTimeout(()=>{r({createWallet:{onSuccess:()=>{},onFailure:Ge=>console.error(Ge),callAuthOnSuccessOnClose:!0}}),o("EMBEDDED_WALLET_SCREEN")},R);return()=>clearTimeout(oe)}else{let oe=setTimeout(n,M);return()=>clearTimeout(oe)}},[p,C,f]),(0,zt.useEffect)(()=>{if(m&&L===0){let me=setTimeout(()=>{u(xs),g(null);let K=document.querySelector("input[name=code-0]");K==null||K.focus()},ud);return()=>clearTimeout(me)}},[m]);let O=me=>{var dt;let K=me.currentTarget.value.replace(" ","");if(K==="")return;if(isNaN(Number(K))){g("Code should be numeric"),S(1);return}g(null),S(null);let V=Number((dt=me.currentTarget.name)==null?void 0:dt.charAt(5)),oe=[...K||[""]].slice(0,Ci-V),Ge=[...h.slice(0,V),...oe,...h.slice(V+oe.length)];u(Ge);let Xt=oe.length,ce=Math.min(Math.max(V+Xt,0),Ci-1);if(!isNaN(Number(me.currentTarget.value))){let Te=document.querySelector(`input[name=code-${ce}]`);Te==null||Te.focus()}if(Ge.every(Te=>Te&&!isNaN(+Te))){let Te=document.querySelector(`input[name=code-${ce}]`);Te==null||Te.blur(),s(Ge.join("")).then(()=>b(!0)).catch(pt=>{(pt==null?void 0:pt.status)===422?g("Invalid or expired verification code"):g("Issue verifying code"),S(0)})}me.preventDefault()},I=me=>{L===1&&(g(null),S(null));let K=[...h.slice(0,me),"",...h.slice(me+1)];if(u(K),me>0){let V=document.querySelector(`input[name=code-${me-1}]`);V==null||V.focus()}},Ee=`Verify your ${k==0?"email":"phone"}`,Q=k==0?(0,$.jsxs)("p",{children:["Please check ",(0,$.jsx)(gd,{children:(le=l())==null?void 0:le.email})," for an email from privy.io and enter your code below."]}):`Please check ${(Y=l())==null?void 0:Y.phoneNumber} for a message from ${(e==null?void 0:e.name)||"privy.io"} and enter your code below.`;return(0,$.jsxs)($.Fragment,{children:[(0,$.jsx)(_,{},"header"),(0,$.jsxs)(md,{children:[(0,$.jsx)(pe,{title:Ee,description:Q}),(0,$.jsxs)(ko,{children:[(0,$.jsxs)(hd,{children:[(0,$.jsx)(fd,{fail:!!m,success:C,children:(0,$.jsx)("span",{children:m||(C?"Success!":"")})}),(0,$.jsx)("div",{children:h.map((me,K)=>(0,$.jsx)("input",{name:`code-${K}`,type:"text",value:h[K],onChange:O,onKeyUp:V=>{V.key==="Backspace"&&I(K)},inputMode:"numeric",autoFocus:K===0,pattern:"[0-9]",className:`${C?"success":""} ${m?"fail":""}`,autoComplete:Es.isMobile?"one-time-code":"off"},K))})]}),(0,$.jsx)(yd,{children:k==0?(0,$.jsxs)($.Fragment,{children:[(0,$.jsx)("span",{children:"Didn't get an email?"}),(0,$.jsx)("button",{onClick:i,children:"Resend Code"})]}):(0,$.jsxs)($.Fragment,{children:[(0,$.jsx)("span",{children:"Didn't get a message?"}),(0,$.jsx)("button",{onClick:a,children:"Resend Code"})]})})]})]}),(0,$.jsx)(B,{protectedByPrivy:!0})]})},md=Ro.default.div`
392
392
  display: flex;
393
393
  flex-direction: column;
394
394
  align-items: flex-start;
@@ -487,19 +487,19 @@ Resources:
487
487
  }
488
488
  `,gd=Ro.default.span`
489
489
  word-break: break-all;
490
- `;var rn=require("react"),As=E(require("styled-components"));var Ps=require("react-device-detect");var _s=e=>{let t=new URL(window.location.href);if(!ao()&&Ps.isMobile)return`https://go.cb-w.com/dapp?cb_url=${encodeURIComponent(`${t.href.replace(/\/$/g,"")}?privy_connector=coinbase_wallet&privy_wallet_client=coinbase_wallet${e?`&privy_token=${e}`:""}`)}`};var Ie=require("react/jsx-runtime"),Ss=()=>{let{forkSession:e,ready:t,authenticated:o}=F(),{closePrivyModal:r}=W(),[n,i]=(0,rn.useState)("");(0,rn.useEffect)(()=>{t&&o&&e().then(s=>i(s))},[o,t]);let a=_s(n),l={title:"Redirecting to Coinbase Wallet",description:"We'll take you to the Coinbase Wallet app to continue your login experience.",footnote:""};return t&&o&&(l.description="For the best experience, we'll automatically log you into the Coinbase Wallet in-app browser.",l.footnote="Once you're done, you can always return here and refresh to view your updated account."),(0,Ie.jsxs)(Ie.Fragment,{children:[(0,Ie.jsx)(_,{},"header"),(0,Ie.jsx)(ht,{title:l.title,description:l.description}),(0,Ie.jsxs)(Ce,{children:[(0,Ie.jsx)(vd,{children:(0,Ie.jsx)(ze,{style:{width:"72px",height:"72px"}})}),(0,Ie.jsx)(Jr,{href:a,onClick:()=>{r()},loading:t&&o&&!n,children:"Continue"}),l.footnote?(0,Ie.jsx)("p",{children:l.footnote}):null]}),(0,Ie.jsx)(B,{protectedByPrivy:!0})]})},vd=(0,As.default)(ko)`
490
+ `;var nn=require("react"),As=E(require("styled-components"));var Ps=require("react-device-detect");var _s=e=>{let t=new URL(window.location.href);if(!ao()&&Ps.isMobile)return`https://go.cb-w.com/dapp?cb_url=${encodeURIComponent(`${t.href.replace(/\/$/g,"")}?privy_connector=coinbase_wallet&privy_wallet_client=coinbase_wallet${e?`&privy_token=${e}`:""}`)}`};var Ie=require("react/jsx-runtime"),Ss=()=>{let{forkSession:e,ready:t,authenticated:o}=F(),{closePrivyModal:r}=W(),[n,i]=(0,nn.useState)("");(0,nn.useEffect)(()=>{t&&o&&e().then(s=>i(s))},[o,t]);let a=_s(n),l={title:"Redirecting to Coinbase Wallet",description:"We'll take you to the Coinbase Wallet app to continue your login experience.",footnote:""};return t&&o&&(l.description="For the best experience, we'll automatically log you into the Coinbase Wallet in-app browser.",l.footnote="Once you're done, you can always return here and refresh to view your updated account."),(0,Ie.jsxs)(Ie.Fragment,{children:[(0,Ie.jsx)(_,{},"header"),(0,Ie.jsx)(ht,{title:l.title,description:l.description}),(0,Ie.jsxs)(Ce,{children:[(0,Ie.jsx)(vd,{children:(0,Ie.jsx)(ze,{style:{width:"72px",height:"72px"}})}),(0,Ie.jsx)(Xr,{href:a,onClick:()=>{r()},loading:t&&o&&!n,children:"Continue"}),l.footnote?(0,Ie.jsx)("p",{children:l.footnote}):null]}),(0,Ie.jsx)(B,{protectedByPrivy:!0})]})},vd=(0,As.default)(ko)`
491
491
  margin: 16px auto;
492
- `;var tr=require("react-device-detect"),wi=E(require("styled-components"));var ks=E(require("styled-components")),Rs=ks.default.span`
492
+ `;var tr=require("react-device-detect"),xi=E(require("styled-components"));var ks=E(require("styled-components")),Rs=ks.default.span`
493
493
  @media (max-width: 440px) {
494
494
  display: none;
495
495
  }
496
- `;var ie=require("react/jsx-runtime"),zt=({connectOnly:e})=>{let{navigate:t}=w(),{initLoginWithWallet:o,connectWallet:r}=W();return(0,ie.jsxs)(bd,{children:[(0,ie.jsxs)(nn,{onClick:()=>{zr()?e?(r("injected","metamask"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("injected","metamask"),t("AWAITING_CONNECTION")):tr.isMobile?e?(r("wallet_connect","metamask"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("wallet_connect","metamask"),t("AWAITING_CONNECTION")):t("INSTALL_METAMASK_SCREEN")},children:[(0,ie.jsx)(be,{}),(0,ie.jsx)("span",{children:"Metamask"}),(0,ie.jsx)("span",{children:zr()?"Connect":"Install"})]}),(0,ie.jsxs)(nn,{onClick:()=>{ao()?e?(r("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECTION")):tr.isMobile?t("COINBASE_INTERSTITIAL_SCREEN"):e?(r("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECTION"))},children:[(0,ie.jsx)(ze,{}),(0,ie.jsxs)("span",{children:["Coinbase",(0,ie.jsx)(Rs,{children:" Wallet"})]}),(0,ie.jsx)("span",{children:"Connect"})]}),(tr.isMobile||Xe())&&(0,ie.jsxs)(nn,{id:"privy-phantom-button",onClick:()=>{Xe()?e?(r("injected","phantom"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("injected","phantom"),t("AWAITING_CONNECTION")):t(tr.isMobile?"PHANTOM_INTERSTITIAL_SCREEN":"INSTALL_PHANTOM_SCREEN")},children:[(0,ie.jsx)(mt,{}),(0,ie.jsx)("span",{children:"Phantom"}),(0,ie.jsx)("span",{children:Xe()?"Connect":"Install"})]}),(0,ie.jsxs)(nn,{onClick:()=>{e?(r("wallet_connect","unknown"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("wallet_connect","unknown"),t("AWAITING_CONNECTION"))},children:[(0,ie.jsx)(_o,{}),(0,ie.jsx)("span",{children:"WalletConnect"}),(0,ie.jsx)("span",{children:"Connect"})]})]})},bd=wi.default.div`
496
+ `;var ie=require("react/jsx-runtime"),$t=({connectOnly:e})=>{let{navigate:t}=w(),{initLoginWithWallet:o,connectWallet:r}=W();return(0,ie.jsxs)(bd,{children:[(0,ie.jsxs)(an,{onClick:()=>{$r()?e?(r("injected","metamask"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("injected","metamask"),t("AWAITING_CONNECTION")):tr.isMobile?e?(r("wallet_connect","metamask"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("wallet_connect","metamask"),t("AWAITING_CONNECTION")):t("INSTALL_METAMASK_SCREEN")},children:[(0,ie.jsx)(be,{}),(0,ie.jsx)("span",{children:"Metamask"}),(0,ie.jsx)("span",{children:$r()?"Connect":"Install"})]}),(0,ie.jsxs)(an,{onClick:()=>{ao()?e?(r("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECTION")):tr.isMobile?t("COINBASE_INTERSTITIAL_SCREEN"):e?(r("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECTION"))},children:[(0,ie.jsx)(ze,{}),(0,ie.jsxs)("span",{children:["Coinbase",(0,ie.jsx)(Rs,{children:" Wallet"})]}),(0,ie.jsx)("span",{children:"Connect"})]}),(tr.isMobile||Xe())&&(0,ie.jsxs)(an,{id:"privy-phantom-button",onClick:()=>{Xe()?e?(r("injected","phantom"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("injected","phantom"),t("AWAITING_CONNECTION")):t(tr.isMobile?"PHANTOM_INTERSTITIAL_SCREEN":"INSTALL_PHANTOM_SCREEN")},children:[(0,ie.jsx)(mt,{}),(0,ie.jsx)("span",{children:"Phantom"}),(0,ie.jsx)("span",{children:Xe()?"Connect":"Install"})]}),(0,ie.jsxs)(an,{onClick:()=>{e?(r("wallet_connect","unknown"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("wallet_connect","unknown"),t("AWAITING_CONNECTION"))},children:[(0,ie.jsx)(_o,{}),(0,ie.jsx)("span",{children:"WalletConnect"}),(0,ie.jsx)("span",{children:"Connect"})]})]})},bd=xi.default.div`
497
497
  display: flex;
498
498
  flex-direction: column;
499
499
  align-items: flex-start;
500
500
  gap: 8px;
501
501
  width: 100%;
502
- `,nn=wi.default.button`
502
+ `,an=xi.default.button`
503
503
  display: flex;
504
504
  flex-direction: row;
505
505
  align-items: center;
@@ -552,7 +552,7 @@ Resources:
552
552
  display: none;
553
553
  }
554
554
  }
555
- `;var Ws=E(require("styled-components"));var or=require("react/jsx-runtime"),$t=()=>{let{navigate:e}=w();return(0,or.jsxs)(wd,{children:[(0,or.jsx)("span",{children:"Don\u2019t have a wallet? "}),(0,or.jsx)("button",{onClick:()=>{e("WALLET_EDUCATION")},children:"Create one now."})]})},wd=Ws.default.div`
555
+ `;var Ws=E(require("styled-components"));var or=require("react/jsx-runtime"),qt=()=>{let{navigate:e}=w();return(0,or.jsxs)(wd,{children:[(0,or.jsx)("span",{children:"Don\u2019t have a wallet? "}),(0,or.jsx)("button",{onClick:()=>{e("WALLET_EDUCATION")},children:"Create one now."})]})},wd=Ws.default.div`
556
556
  font-size: 13px;
557
557
  color: var(--privy-color-foreground-3);
558
558
 
@@ -563,13 +563,13 @@ Resources:
563
563
  @media (max-width: 440px) {
564
564
  margin-top: 4px;
565
565
  }
566
- `;var nt=require("react/jsx-runtime"),Is=()=>{let{app:e}=w(),t=`Connect a wallet to ${e==null?void 0:e.name}`;return(0,nt.jsxs)(nt.Fragment,{children:[(0,nt.jsx)(_,{},"header"),(0,nt.jsx)(ht,{title:"Connect your wallet",description:t}),(0,nt.jsxs)(Ce,{children:[(0,nt.jsx)(zt,{connectOnly:!0}),(0,nt.jsx)($t,{})]}),(0,nt.jsx)(B,{protectedByPrivy:!0})]})};var sn=E(require("styled-components"));var Ns=E(require("react"));var Ci=require("react/jsx-runtime"),an=()=>{var a;let{app:e}=w(),t=(a=e==null?void 0:e.appearance)==null?void 0:a.logo,o=`${e==null?void 0:e.name} logo`,r={maxHeight:"50px"},n="100%",i="auto";return t?typeof t=="string"?(0,Ci.jsx)("div",{children:(0,Ci.jsx)("img",{height:n,width:i,src:t,alt:o,style:r})}):t.type==="svg"||t.type==="img"?Ns.default.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};var Pe=require("react/jsx-runtime"),Ls=()=>{let{app:e}=w();return(0,Pe.jsxs)(Pe.Fragment,{children:[(0,Pe.jsx)(_,{},"header"),(0,Pe.jsx)(Ed,{hasTerms:!!((e==null?void 0:e.legal.privacyPolicyUrl)||(e==null?void 0:e.legal.termsAndConditionsUrl)),children:(0,Pe.jsx)(an,{})}),(0,Pe.jsxs)(xd,{children:[(0,Pe.jsx)(Cd,{children:(0,Pe.jsx)("h4",{children:"Connect Wallet"})}),(0,Pe.jsx)(zt,{connectOnly:!0}),(0,Pe.jsx)($t,{})]}),e&&(0,Pe.jsx)(on,{app:e}),(0,Pe.jsx)(B,{protectedByPrivy:!0})]})},Cd=sn.default.div`
566
+ `;var nt=require("react/jsx-runtime"),Is=()=>{let{app:e}=w(),t=`Connect a wallet to ${e==null?void 0:e.name}`;return(0,nt.jsxs)(nt.Fragment,{children:[(0,nt.jsx)(_,{},"header"),(0,nt.jsx)(ht,{title:"Connect your wallet",description:t}),(0,nt.jsxs)(Ce,{children:[(0,nt.jsx)($t,{connectOnly:!0}),(0,nt.jsx)(qt,{})]}),(0,nt.jsx)(B,{protectedByPrivy:!0})]})};var ln=E(require("styled-components"));var Ns=E(require("react"));var Ei=require("react/jsx-runtime"),sn=()=>{var a;let{app:e}=w(),t=(a=e==null?void 0:e.appearance)==null?void 0:a.logo,o=`${e==null?void 0:e.name} logo`,r={maxHeight:"50px"},n="100%",i="auto";return t?typeof t=="string"?(0,Ei.jsx)("div",{children:(0,Ei.jsx)("img",{height:n,width:i,src:t,alt:o,style:r})}):t.type==="svg"||t.type==="img"?Ns.default.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};var Pe=require("react/jsx-runtime"),Ls=()=>{let{app:e}=w();return(0,Pe.jsxs)(Pe.Fragment,{children:[(0,Pe.jsx)(_,{},"header"),(0,Pe.jsx)(Ed,{hasTerms:!!((e==null?void 0:e.legal.privacyPolicyUrl)||(e==null?void 0:e.legal.termsAndConditionsUrl)),children:(0,Pe.jsx)(sn,{})}),(0,Pe.jsxs)(xd,{children:[(0,Pe.jsx)(Cd,{children:(0,Pe.jsx)("h4",{children:"Connect Wallet"})}),(0,Pe.jsx)($t,{connectOnly:!0}),(0,Pe.jsx)(qt,{})]}),e&&(0,Pe.jsx)(rn,{app:e}),(0,Pe.jsx)(B,{protectedByPrivy:!0})]})},Cd=ln.default.div`
567
567
  font-weight: 600;
568
568
  color: 'var(--privy-color-foreground)';
569
569
  display: flex;
570
570
  justify-content: center;
571
571
  align-items: center;
572
- `,xd=sn.default.div`
572
+ `,xd=ln.default.div`
573
573
  display: flex;
574
574
  flex-direction: column;
575
575
  align-items: flex-start;
@@ -590,7 +590,7 @@ Resources:
590
590
  border-radius: '0';
591
591
  }
592
592
  cursor: 'inherit';
593
- `,Ed=sn.default.div`
593
+ `,Ed=ln.default.div`
594
594
  display: flex;
595
595
  flex-direction: column;
596
596
  align-items: center;
@@ -599,7 +599,7 @@ Resources:
599
599
  @media (max-width: 440px) {
600
600
  padding: 10px 10px 20px;
601
601
  }
602
- `;var Io=require("react"),Ti=E(require("styled-components"));var ft=require("react"),cn=require("react-device-detect"),dn=E(require("styled-components"));var Z=require("react/jsx-runtime"),ln=2,rr={metamask:{name:"MetaMask",component:be},phantom:{name:"Phantom",component:mt},coinbase_wallet:{name:"Coinbase Wallet",component:ze},wallet_connect:{name:"WalletConnect",component:_o},embedded:{name:"Privy Wallet",component:Bt}},xi=e=>(e==null?void 0:e.privyErrorCode)==="linked_to_another_user"?Pt.ERROR_USER_EXISTS:e instanceof To&&!e.details.default?e.details:e instanceof Eo?Pt.ERROR_TIMED_OUT:e instanceof ro?Pt.ERROR_USER_REJECTED_CONNECTION:Pt.ERROR_WALLET_CONNECTION,Os=()=>{var Jt,ce,dt,Te,pt,vo,bo,Tr,jo,Pr,_r;let[e,t]=(0,ft.useState)(!1),[o,r]=(0,ft.useState)(!1),[n,i]=(0,ft.useState)(void 0),{app:a,navigate:l,navigateBack:s,lastScreen:p,currentScreen:f}=w(),{getAuthFlow:h,walletConnectionStatus:u,closePrivyModal:C,loginWithWallet:b}=W(),{walletConnectors:m}=F(),[g,L]=(0,ft.useState)(0),{user:S}=F(),[k]=(0,ft.useState)((S==null?void 0:S.linkedAccounts.length)||0),M=h(),R=cn.isMobile&&((Jt=u==null?void 0:u.connector)==null?void 0:Jt.connectorType)==="wallet_connect"||cn.isMobile&&((ce=u==null?void 0:u.connector)==null?void 0:ce.connectorType)==="coinbase_wallet"||cn.isMobile&&((dt=u==null?void 0:u.connector)==null?void 0:dt.connectorType)==="injected"&&((Te=u==null?void 0:u.connector)==null?void 0:Te.walletClientType)==="phantom",O=(u==null?void 0:u.status)==="connected",I=a!=null&&a.render.inDialog?ut:0;(0,ft.useEffect)(()=>{if(M&&R&&O&&!M.preparedMessage){M.buildSiweMessage();return}!M||R||!O||(r(!0),i(void 0),Q().catch(de=>console.warn("Auto-prompted signature failed",de)).finally(()=>r(!1)))},[g,O]),(0,ft.useEffect)(()=>{if(S&&e){let de=setTimeout(C,I);return()=>clearTimeout(de)}},[S,e]);let Ee=de=>{if((de==null?void 0:de.privyErrorCode)==="allowlist_rejected"){l("ALLOWLIST_REJECTION_SCREEN");return}i(xi(de))};async function Q(){try{await b(),t(!0)}catch(de){Ee(de)}finally{r(!1)}}(0,ft.useEffect)(()=>{u!=null&&u.connectError&&Ee(u==null?void 0:u.connectError)},[u]);let ge=((pt=u==null?void 0:u.connector)==null?void 0:pt.connectorType)||"metamask",le=((vo=u==null?void 0:u.connector)==null?void 0:vo.walletClientType)||"metamask",Y=((bo=u==null?void 0:u.connector)==null?void 0:bo.walletBranding.name)||((Tr=rr[le])==null?void 0:Tr.name)||"Metamask",me=((jo=u==null?void 0:u.connector)==null?void 0:jo.walletBranding.icon)||((Pr=rr[le])==null?void 0:Pr.component)||(de=>(0,Z.jsx)(be,{...de})),K=e?`Successfully connected with ${Y}`:n?n.message:O?o&&R?"Signing":"Sign to verify":`Waiting for ${Y}`,V="Don\u2019t see your wallet modal? Check your other browser windows.";if(e){let de=(S==null?void 0:S.linkedAccounts.length)||0;k===de?V="Wallet was already linked.":V="You\u2019re good to go!"}else g>=ln&&n?V="Unable to connect wallet":n?V=n.detail:O&&R?V="Sign the message in your wallet to verify it belongs to you.":le==="metamask"?V="For the best experience, connect only one wallet at a time.":ge==="wallet_connect"?V="Open your mobile wallet app to continue":ge==="coinbase_wallet"&&(ao()||(di(S)?V="Continue with the Coinbase app. Not the right wallet? Reset your connection below.":V="Open the Coinbase app on your phone to continue."));let oe=(_r=m==null?void 0:m.walletConnectors)==null?void 0:_r.find(de=>de.walletClientType==="coinbase_wallet"),Ge=le==="coinbase_wallet"&&(di(S)||n===Pt.ERROR_USER_EXISTS);return(0,Z.jsxs)(Z.Fragment,{children:[(0,Z.jsx)(_,{backFn:f===p?void 0:s}),(0,Z.jsxs)(Td,{children:[(0,Z.jsx)(Ei,{walletLogo:me,success:e,fail:!!n}),(0,Z.jsxs)(Pd,{children:[(0,Z.jsx)("h3",{children:K}),(0,Z.jsx)("p",{children:V})]}),(0,Z.jsx)(Xr,{children:Ge?(0,Z.jsx)(he,{onClick:()=>oe&&(oe==null?void 0:oe.disconnect()),invisible:e,disabled:e,children:"Use a different wallet"}):n==Pt.ERROR_USER_EXISTS&&f!==p?(0,Z.jsx)(he,{onClick:s,children:"Use a different wallet"}):O&&!e&&R?(0,Z.jsx)(he,{onClick:()=>{r(!0),Q()},disabled:o,children:o?"Signing":"Sign with your wallet"}):!e&&(n==null?void 0:n.retryable)&&g<ln?(0,Z.jsx)(he,{onClick:()=>{L(g+1),i(void 0),O?(r(!0),Q()):u==null||u.connectRetry()},invisible:e||!(n!=null&&n.retryable)||g>=ln,disabled:!e&&(!(n!=null&&n.retryable)||g>=ln),children:"Retry"}):null})]})]})},Td=dn.default.div`
602
+ `;var Io=require("react"),_i=E(require("styled-components"));var ft=require("react"),dn=require("react-device-detect"),pn=E(require("styled-components"));var Z=require("react/jsx-runtime"),cn=2,rr={metamask:{name:"MetaMask",component:be},phantom:{name:"Phantom",component:mt},coinbase_wallet:{name:"Coinbase Wallet",component:ze},wallet_connect:{name:"WalletConnect",component:_o},embedded:{name:"Privy Wallet",component:Ft}},Ti=e=>(e==null?void 0:e.privyErrorCode)==="linked_to_another_user"?Pt.ERROR_USER_EXISTS:e instanceof To&&!e.details.default?e.details:e instanceof Eo?Pt.ERROR_TIMED_OUT:e instanceof no?Pt.ERROR_USER_REJECTED_CONNECTION:Pt.ERROR_WALLET_CONNECTION,Os=()=>{var Xt,ce,dt,Te,pt,vo,bo,Tr,jo,Pr,_r;let[e,t]=(0,ft.useState)(!1),[o,r]=(0,ft.useState)(!1),[n,i]=(0,ft.useState)(void 0),{app:a,navigate:l,navigateBack:s,lastScreen:p,currentScreen:f}=w(),{getAuthFlow:h,walletConnectionStatus:u,closePrivyModal:C,loginWithWallet:b}=W(),{walletConnectors:m}=F(),[g,L]=(0,ft.useState)(0),{user:S}=F(),[k]=(0,ft.useState)((S==null?void 0:S.linkedAccounts.length)||0),M=h(),R=dn.isMobile&&((Xt=u==null?void 0:u.connector)==null?void 0:Xt.connectorType)==="wallet_connect"||dn.isMobile&&((ce=u==null?void 0:u.connector)==null?void 0:ce.connectorType)==="coinbase_wallet"||dn.isMobile&&((dt=u==null?void 0:u.connector)==null?void 0:dt.connectorType)==="injected"&&((Te=u==null?void 0:u.connector)==null?void 0:Te.walletClientType)==="phantom",O=(u==null?void 0:u.status)==="connected",I=a!=null&&a.render.inDialog?ut:0;(0,ft.useEffect)(()=>{if(M&&R&&O&&!M.preparedMessage){M.buildSiweMessage();return}!M||R||!O||(r(!0),i(void 0),Q().catch(de=>console.warn("Auto-prompted signature failed",de)).finally(()=>r(!1)))},[g,O]),(0,ft.useEffect)(()=>{if(S&&e){let de=setTimeout(C,I);return()=>clearTimeout(de)}},[S,e]);let Ee=de=>{if((de==null?void 0:de.privyErrorCode)==="allowlist_rejected"){l("ALLOWLIST_REJECTION_SCREEN");return}i(Ti(de))};async function Q(){try{await b(),t(!0)}catch(de){Ee(de)}finally{r(!1)}}(0,ft.useEffect)(()=>{u!=null&&u.connectError&&Ee(u==null?void 0:u.connectError)},[u]);let ge=((pt=u==null?void 0:u.connector)==null?void 0:pt.connectorType)||"metamask",le=((vo=u==null?void 0:u.connector)==null?void 0:vo.walletClientType)||"metamask",Y=((bo=u==null?void 0:u.connector)==null?void 0:bo.walletBranding.name)||((Tr=rr[le])==null?void 0:Tr.name)||"Metamask",me=((jo=u==null?void 0:u.connector)==null?void 0:jo.walletBranding.icon)||((Pr=rr[le])==null?void 0:Pr.component)||(de=>(0,Z.jsx)(be,{...de})),K=e?`Successfully connected with ${Y}`:n?n.message:O?o&&R?"Signing":"Sign to verify":`Waiting for ${Y}`,V="Don\u2019t see your wallet modal? Check your other browser windows.";if(e){let de=(S==null?void 0:S.linkedAccounts.length)||0;k===de?V="Wallet was already linked.":V="You\u2019re good to go!"}else g>=cn&&n?V="Unable to connect wallet":n?V=n.detail:O&&R?V="Sign the message in your wallet to verify it belongs to you.":le==="metamask"?V="For the best experience, connect only one wallet at a time.":ge==="wallet_connect"?V="Open your mobile wallet app to continue":ge==="coinbase_wallet"&&(ao()||(ui(S)?V="Continue with the Coinbase app. Not the right wallet? Reset your connection below.":V="Open the Coinbase app on your phone to continue."));let oe=(_r=m==null?void 0:m.walletConnectors)==null?void 0:_r.find(de=>de.walletClientType==="coinbase_wallet"),Ge=le==="coinbase_wallet"&&(ui(S)||n===Pt.ERROR_USER_EXISTS);return(0,Z.jsxs)(Z.Fragment,{children:[(0,Z.jsx)(_,{backFn:f===p?void 0:s}),(0,Z.jsxs)(Td,{children:[(0,Z.jsx)(Pi,{walletLogo:me,success:e,fail:!!n}),(0,Z.jsxs)(Pd,{children:[(0,Z.jsx)("h3",{children:K}),(0,Z.jsx)("p",{children:V})]}),(0,Z.jsx)(en,{children:Ge?(0,Z.jsx)(he,{onClick:()=>oe&&(oe==null?void 0:oe.disconnect()),invisible:e,disabled:e,children:"Use a different wallet"}):n==Pt.ERROR_USER_EXISTS&&f!==p?(0,Z.jsx)(he,{onClick:s,children:"Use a different wallet"}):O&&!e&&R?(0,Z.jsx)(he,{onClick:()=>{r(!0),Q()},disabled:o,children:o?"Signing":"Sign with your wallet"}):!e&&(n==null?void 0:n.retryable)&&g<cn?(0,Z.jsx)(he,{onClick:()=>{L(g+1),i(void 0),O?(r(!0),Q()):u==null||u.connectRetry()},invisible:e||!(n!=null&&n.retryable)||g>=cn,disabled:!e&&(!(n!=null&&n.retryable)||g>=cn),children:"Retry"}):null})]})]})},Td=pn.default.div`
603
603
  display: flex;
604
604
  flex-direction: column;
605
605
  align-items: center;
@@ -607,14 +607,14 @@ Resources:
607
607
  margin-left: 27px;
608
608
  margin-right: 27px;
609
609
  gap: 24px;
610
- `,Pd=dn.default.div`
610
+ `,Pd=pn.default.div`
611
611
  display: flex;
612
612
  flex-direction: column;
613
613
  gap: 8px;
614
614
  /* Very specifically chosen to be the height if 2 lines h3 and 1 line p.
615
615
  If we then switch to 1 line h3 and 2 lines p, we don't resize. */
616
616
  min-height: 76px;
617
- `,_d=dn.default.div`
617
+ `,_d=pn.default.div`
618
618
  display: flex;
619
619
  flex-direction: column;
620
620
  justify-content: center;
@@ -637,7 +637,7 @@ Resources:
637
637
  left: -19px;
638
638
  top: -19px;
639
639
  }
640
- `,Ei=e=>{let t=e.walletLogo;return(0,Z.jsx)(Z.Fragment,{children:(0,Z.jsx)(_d,{children:(0,Z.jsxs)("div",{children:[(0,Z.jsx)(Qr,{success:e.success,fail:e.fail}),typeof t=="string"?(0,Z.jsx)("span",{style:{background:`url('${t}')`,height:"38px",width:"38px",borderRadius:"6px",margin:"auto",backgroundSize:"cover"}}):(0,Z.jsx)(t,{style:{width:"38px",height:"38px"}})]})})})};var _e=require("react/jsx-runtime"),pn=2,Ds=()=>{var L,S,k,M,R,O;let{navigateBack:e,lastScreen:t,currentScreen:o}=w(),{walletConnectionStatus:r,closePrivyModal:n}=W(),[i,a]=(0,Io.useState)(void 0),[l,s]=(0,Io.useState)(0),p=(r==null?void 0:r.status)==="connected";(0,Io.useEffect)(()=>{if(p){let I=setTimeout(n,ut);return()=>clearTimeout(I)}},[p]);let f=I=>{a(xi(I))};(0,Io.useEffect)(()=>{r!=null&&r.connectError&&f(r==null?void 0:r.connectError)},[r]);let h=((L=r==null?void 0:r.connector)==null?void 0:L.connectorType)||"metamask",u=((S=r==null?void 0:r.connector)==null?void 0:S.walletClientType)||"metamask",C=((k=r==null?void 0:r.connector)==null?void 0:k.walletBranding.name)||((M=rr[u])==null?void 0:M.name)||"Metamask",b=((R=r==null?void 0:r.connector)==null?void 0:R.walletBranding.icon)||((O=rr[u])==null?void 0:O.component)||(I=>(0,_e.jsx)(be,{...I})),m=p?`Successfully connected with ${C}`:i?i.message:`Waiting for ${C}`,g="Don\u2019t see your wallet modal? Check your other browser windows.";return p?g="You\u2019re good to go!":l>=pn&&i?g="Unable to connect wallet":i?g=i.detail:u==="metamask"?g="For the best experience, connect only one wallet at a time.":h==="wallet_connect"?g="Open your mobile wallet app to continue":h==="coinbase_wallet"&&(g="Open the Coinbase app on your phone to continue."),(0,_e.jsxs)(_e.Fragment,{children:[(0,_e.jsx)(_,{backFn:o===t?void 0:e}),(0,_e.jsxs)(Ad,{children:[(0,_e.jsx)(Ei,{walletLogo:b,success:p,fail:!!i}),(0,_e.jsxs)(Sd,{children:[(0,_e.jsx)("h3",{children:m}),(0,_e.jsx)("p",{children:g})]}),(0,_e.jsx)(Xr,{children:i==Pt.ERROR_USER_EXISTS?(0,_e.jsx)(he,{onClick:e,children:"Use a different wallet"}):!p&&(i==null?void 0:i.retryable)&&l<pn?(0,_e.jsx)(he,{onClick:()=>{s(l+1),a(void 0),r==null||r.connectRetry()},invisible:p||!(i!=null&&i.retryable)||l>=pn,disabled:!p&&(!(i!=null&&i.retryable)||l>=pn),children:"Retry"}):null})]})]})},Ad=Ti.default.div`
640
+ `,Pi=e=>{let t=e.walletLogo;return(0,Z.jsx)(Z.Fragment,{children:(0,Z.jsx)(_d,{children:(0,Z.jsxs)("div",{children:[(0,Z.jsx)(Jr,{success:e.success,fail:e.fail}),typeof t=="string"?(0,Z.jsx)("span",{style:{background:`url('${t}')`,height:"38px",width:"38px",borderRadius:"6px",margin:"auto",backgroundSize:"cover"}}):(0,Z.jsx)(t,{style:{width:"38px",height:"38px"}})]})})})};var _e=require("react/jsx-runtime"),un=2,Ds=()=>{var L,S,k,M,R,O;let{navigateBack:e,lastScreen:t,currentScreen:o}=w(),{walletConnectionStatus:r,closePrivyModal:n}=W(),[i,a]=(0,Io.useState)(void 0),[l,s]=(0,Io.useState)(0),p=(r==null?void 0:r.status)==="connected";(0,Io.useEffect)(()=>{if(p){let I=setTimeout(n,ut);return()=>clearTimeout(I)}},[p]);let f=I=>{a(Ti(I))};(0,Io.useEffect)(()=>{r!=null&&r.connectError&&f(r==null?void 0:r.connectError)},[r]);let h=((L=r==null?void 0:r.connector)==null?void 0:L.connectorType)||"metamask",u=((S=r==null?void 0:r.connector)==null?void 0:S.walletClientType)||"metamask",C=((k=r==null?void 0:r.connector)==null?void 0:k.walletBranding.name)||((M=rr[u])==null?void 0:M.name)||"Metamask",b=((R=r==null?void 0:r.connector)==null?void 0:R.walletBranding.icon)||((O=rr[u])==null?void 0:O.component)||(I=>(0,_e.jsx)(be,{...I})),m=p?`Successfully connected with ${C}`:i?i.message:`Waiting for ${C}`,g="Don\u2019t see your wallet modal? Check your other browser windows.";return p?g="You\u2019re good to go!":l>=un&&i?g="Unable to connect wallet":i?g=i.detail:u==="metamask"?g="For the best experience, connect only one wallet at a time.":h==="wallet_connect"?g="Open your mobile wallet app to continue":h==="coinbase_wallet"&&(g="Open the Coinbase app on your phone to continue."),(0,_e.jsxs)(_e.Fragment,{children:[(0,_e.jsx)(_,{backFn:o===t?void 0:e}),(0,_e.jsxs)(Ad,{children:[(0,_e.jsx)(Pi,{walletLogo:b,success:p,fail:!!i}),(0,_e.jsxs)(Sd,{children:[(0,_e.jsx)("h3",{children:m}),(0,_e.jsx)("p",{children:g})]}),(0,_e.jsx)(en,{children:i==Pt.ERROR_USER_EXISTS?(0,_e.jsx)(he,{onClick:e,children:"Use a different wallet"}):!p&&(i==null?void 0:i.retryable)&&l<un?(0,_e.jsx)(he,{onClick:()=>{s(l+1),a(void 0),r==null||r.connectRetry()},invisible:p||!(i!=null&&i.retryable)||l>=un,disabled:!p&&(!(i!=null&&i.retryable)||l>=un),children:"Retry"}):null})]})]})},Ad=_i.default.div`
641
641
  display: flex;
642
642
  flex-direction: column;
643
643
  align-items: center;
@@ -645,14 +645,14 @@ Resources:
645
645
  margin-left: 27px;
646
646
  margin-right: 27px;
647
647
  gap: 24px;
648
- `,Sd=Ti.default.div`
648
+ `,Sd=_i.default.div`
649
649
  display: flex;
650
650
  flex-direction: column;
651
651
  gap: 8px;
652
652
  /* Very specifically chosen to be the height if 2 lines h3 and 1 line p.
653
653
  If we then switch to 1 line h3 and 2 lines p, we don't resize. */
654
654
  min-height: 76px;
655
- `;var hn=require("react"),Vs=E(require("styled-components"));var nr=E(require("styled-components")),No=require("react/jsx-runtime"),un=({children:e})=>(0,No.jsx)(kd,{children:(0,No.jsxs)(Rd,{children:[e,(0,No.jsx)(Wd,{}),(0,No.jsx)(Id,{})]})}),kd=nr.default.div`
655
+ `;var fn=require("react"),Vs=E(require("styled-components"));var nr=E(require("styled-components")),No=require("react/jsx-runtime"),mn=({children:e})=>(0,No.jsx)(kd,{children:(0,No.jsxs)(Rd,{children:[e,(0,No.jsx)(Wd,{}),(0,No.jsx)(Id,{})]})}),kd=nr.default.div`
656
656
  height: 100%;
657
657
  display: flex;
658
658
  justify-content: center;
@@ -699,12 +699,12 @@ Resources:
699
699
  transform: rotate(360deg);
700
700
  }
701
701
  }
702
- `;var Us=["error","invalid_request_arguments","wallet_not_on_device","invalid_recovery_pin","insufficient_funds"];var qt=class extends Error{constructor(o,r){super(r);this.type=o}};function Pi(e){let t=e.type;return typeof t=="string"&&Us.includes(t)}function Bs(e){return Pi(e)&&e.type==="wallet_not_on_device"}function Fs(e){return Pi(e)&&e.type==="invalid_recovery_pin"}function Gs(e){return Pi(e)&&e.type==="insufficient_funds"}var _i=require("react/jsx-runtime"),mn=e=>(0,_i.jsx)("svg",{width:"160",height:"160",viewBox:"0 0 160 160",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e,children:(0,_i.jsx)("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)"})});var it=require("react/jsx-runtime"),Hs=1,zs=()=>{let{authenticated:e,user:t,getAccessToken:o}=F(),{closePrivyModal:r,walletProxy:n}=W(),{navigate:i,data:a,setModalData:l}=w(),s=(0,hn.useMemo)(()=>Date.now(),[]),{onCompleteNavigateTo:p,onFailure:f}=a==null?void 0:a.connectWallet,h=u=>{r({shouldCallAuthOnSuccess:!1}),f(typeof u=="string"?new Error(u):u)};return(0,hn.useEffect)(()=>{let u=ee(t),C;return!e||!u?h("User must be authenticated and have a Privy wallet before it can be connected"):n?((async()=>{let m=await o();if(!m)return h("User must be authenticated and have a Privy wallet before it can be connected");try{await n.connect({accessToken:m,address:u.address});let g=(Date.now()-s)/1e3;p==="EMBEDDED_WALLET_KEY_EXPORT_SCREEN"&&g<Hs?C=setTimeout(()=>{i(p)},(Hs-g)*1e3):i(p)}catch(g){Bs(g)?(l({...a,recoverWallet:{onCompleteNavigateTo:p,onFailure:f}}),i("EMBEDDED_WALLET_RECOVERY_SCREEN")):h(g)}})(),()=>clearTimeout(C)):void 0},[e,t,n]),(0,it.jsxs)(it.Fragment,{children:[(0,it.jsx)(_,{onClose:()=>h("User exited before wallet could be connected")}),(0,it.jsxs)(Nd,{children:[(0,it.jsx)(Ht,{title:"Loading your account",description:"Please wait one moment while we load your account information"}),(0,it.jsx)(un,{children:(0,it.jsx)(mn,{})})]}),(0,it.jsx)(B,{protectedByPrivy:!0})]})},Nd=Vs.default.div`
702
+ `;var Us=["error","invalid_request_arguments","wallet_not_on_device","invalid_recovery_pin","insufficient_funds"];var jt=class extends Error{constructor(o,r){super(r);this.type=o}};function Ai(e){let t=e.type;return typeof t=="string"&&Us.includes(t)}function Bs(e){return Ai(e)&&e.type==="wallet_not_on_device"}function Fs(e){return Ai(e)&&e.type==="invalid_recovery_pin"}function Gs(e){return Ai(e)&&e.type==="insufficient_funds"}var Si=require("react/jsx-runtime"),hn=e=>(0,Si.jsx)("svg",{width:"160",height:"160",viewBox:"0 0 160 160",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e,children:(0,Si.jsx)("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)"})});var it=require("react/jsx-runtime"),Hs=1,zs=()=>{let{authenticated:e,user:t,getAccessToken:o}=F(),{closePrivyModal:r,walletProxy:n}=W(),{navigate:i,data:a,setModalData:l}=w(),s=(0,fn.useMemo)(()=>Date.now(),[]),{onCompleteNavigateTo:p,onFailure:f}=a==null?void 0:a.connectWallet,h=u=>{r({shouldCallAuthOnSuccess:!1}),f(typeof u=="string"?new Error(u):u)};return(0,fn.useEffect)(()=>{let u=ee(t),C;return!e||!u?h("User must be authenticated and have a Privy wallet before it can be connected"):n?((async()=>{let m=await o();if(!m)return h("User must be authenticated and have a Privy wallet before it can be connected");try{await n.connect({accessToken:m,address:u.address});let g=(Date.now()-s)/1e3;p==="EMBEDDED_WALLET_KEY_EXPORT_SCREEN"&&g<Hs?C=setTimeout(()=>{i(p)},(Hs-g)*1e3):i(p)}catch(g){Bs(g)?(l({...a,recoverWallet:{onCompleteNavigateTo:p,onFailure:f}}),i("EMBEDDED_WALLET_RECOVERY_SCREEN")):h(g)}})(),()=>clearTimeout(C)):void 0},[e,t,n]),(0,it.jsxs)(it.Fragment,{children:[(0,it.jsx)(_,{onClose:()=>h("User exited before wallet could be connected")}),(0,it.jsxs)(Nd,{children:[(0,it.jsx)(Vt,{title:"Loading your account",description:"Please wait one moment while we load your account information"}),(0,it.jsx)(mn,{children:(0,it.jsx)(hn,{})})]}),(0,it.jsx)(B,{protectedByPrivy:!0})]})},Nd=Vs.default.div`
703
703
  display: flex;
704
704
  height: 100%;
705
705
  flex-direction: column;
706
706
  flex-grow: 1;
707
- `;var so=E(require("styled-components"));var qs=require("react"),js=E(require("styled-components"));var Ai=require("react/jsx-runtime"),Lo=({style:e,color:t,...o})=>(0,Ai.jsx)("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:(0,Ai.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M4.5 12.75l6 6 9-13.5"})});var fn=require("react/jsx-runtime"),$s=({color:e,...t})=>(0,fn.jsx)("svg",{version:"1.1",id:"Layer_1",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",x:"0px",y:"0px",viewBox:"0 0 115.77 122.88",xmlSpace:"preserve",...t,children:(0,fn.jsx)("g",{children:(0,fn.jsx)("path",{fill:e||"currentColor",className:"st0",d:"M89.62,13.96v7.73h12.19h0.01v0.02c3.85,0.01,7.34,1.57,9.86,4.1c2.5,2.51,4.06,5.98,4.07,9.82h0.02v0.02 v73.27v0.01h-0.02c-0.01,3.84-1.57,7.33-4.1,9.86c-2.51,2.5-5.98,4.06-9.82,4.07v0.02h-0.02h-61.7H40.1v-0.02 c-3.84-0.01-7.34-1.57-9.86-4.1c-2.5-2.51-4.06-5.98-4.07-9.82h-0.02v-0.02V92.51H13.96h-0.01v-0.02c-3.84-0.01-7.34-1.57-9.86-4.1 c-2.5-2.51-4.06-5.98-4.07-9.82H0v-0.02V13.96v-0.01h0.02c0.01-3.85,1.58-7.34,4.1-9.86c2.51-2.5,5.98-4.06,9.82-4.07V0h0.02h61.7 h0.01v0.02c3.85,0.01,7.34,1.57,9.86,4.1c2.5,2.51,4.06,5.98,4.07,9.82h0.02V13.96L89.62,13.96z M79.04,21.69v-7.73v-0.02h0.02 c0-0.91-0.39-1.75-1.01-2.37c-0.61-0.61-1.46-1-2.37-1v0.02h-0.01h-61.7h-0.02v-0.02c-0.91,0-1.75,0.39-2.37,1.01 c-0.61,0.61-1,1.46-1,2.37h0.02v0.01v64.59v0.02h-0.02c0,0.91,0.39,1.75,1.01,2.37c0.61,0.61,1.46,1,2.37,1v-0.02h0.01h12.19V35.65 v-0.01h0.02c0.01-3.85,1.58-7.34,4.1-9.86c2.51-2.5,5.98-4.06,9.82-4.07v-0.02h0.02H79.04L79.04,21.69z M105.18,108.92V35.65v-0.02 h0.02c0-0.91-0.39-1.75-1.01-2.37c-0.61-0.61-1.46-1-2.37-1v0.02h-0.01h-61.7h-0.02v-0.02c-0.91,0-1.75,0.39-2.37,1.01 c-0.61,0.61-1,1.46-1,2.37h0.02v0.01v73.27v0.02h-0.02c0,0.91,0.39,1.75,1.01,2.37c0.61,0.61,1.46,1,2.37,1v-0.02h0.01h61.7h0.02 v0.02c0.91,0,1.75-0.39,2.37-1.01c0.61-0.61,1-1.46,1-2.37h-0.02V108.92L105.18,108.92z"})})});var ir=require("react/jsx-runtime"),yn=e=>{let[t,o]=(0,qs.useState)(!1);return(0,ir.jsxs)(Ld,{onClick:()=>{o(!0),navigator.clipboard.writeText(e.text),setTimeout(()=>o(!1),1500)},justCopied:t,children:[t?(0,ir.jsx)(Lo,{style:{height:"14px",width:"14px"},strokeWidth:"2"}):(0,ir.jsx)($s,{style:{height:"14px",width:"14px"}}),t?"Copied":"Copy"," ",e.itemName?e.itemName:"to Clipboard"]})},Ld=js.default.button`
707
+ `;var so=E(require("styled-components"));var qs=require("react"),js=E(require("styled-components"));var ki=require("react/jsx-runtime"),Lo=({style:e,color:t,...o})=>(0,ki.jsx)("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:(0,ki.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M4.5 12.75l6 6 9-13.5"})});var yn=require("react/jsx-runtime"),$s=({color:e,...t})=>(0,yn.jsx)("svg",{version:"1.1",id:"Layer_1",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",x:"0px",y:"0px",viewBox:"0 0 115.77 122.88",xmlSpace:"preserve",...t,children:(0,yn.jsx)("g",{children:(0,yn.jsx)("path",{fill:e||"currentColor",className:"st0",d:"M89.62,13.96v7.73h12.19h0.01v0.02c3.85,0.01,7.34,1.57,9.86,4.1c2.5,2.51,4.06,5.98,4.07,9.82h0.02v0.02 v73.27v0.01h-0.02c-0.01,3.84-1.57,7.33-4.1,9.86c-2.51,2.5-5.98,4.06-9.82,4.07v0.02h-0.02h-61.7H40.1v-0.02 c-3.84-0.01-7.34-1.57-9.86-4.1c-2.5-2.51-4.06-5.98-4.07-9.82h-0.02v-0.02V92.51H13.96h-0.01v-0.02c-3.84-0.01-7.34-1.57-9.86-4.1 c-2.5-2.51-4.06-5.98-4.07-9.82H0v-0.02V13.96v-0.01h0.02c0.01-3.85,1.58-7.34,4.1-9.86c2.51-2.5,5.98-4.06,9.82-4.07V0h0.02h61.7 h0.01v0.02c3.85,0.01,7.34,1.57,9.86,4.1c2.5,2.51,4.06,5.98,4.07,9.82h0.02V13.96L89.62,13.96z M79.04,21.69v-7.73v-0.02h0.02 c0-0.91-0.39-1.75-1.01-2.37c-0.61-0.61-1.46-1-2.37-1v0.02h-0.01h-61.7h-0.02v-0.02c-0.91,0-1.75,0.39-2.37,1.01 c-0.61,0.61-1,1.46-1,2.37h0.02v0.01v64.59v0.02h-0.02c0,0.91,0.39,1.75,1.01,2.37c0.61,0.61,1.46,1,2.37,1v-0.02h0.01h12.19V35.65 v-0.01h0.02c0.01-3.85,1.58-7.34,4.1-9.86c2.51-2.5,5.98-4.06,9.82-4.07v-0.02h0.02H79.04L79.04,21.69z M105.18,108.92V35.65v-0.02 h0.02c0-0.91-0.39-1.75-1.01-2.37c-0.61-0.61-1.46-1-2.37-1v0.02h-0.01h-61.7h-0.02v-0.02c-0.91,0-1.75,0.39-2.37,1.01 c-0.61,0.61-1,1.46-1,2.37h0.02v0.01v73.27v0.02h-0.02c0,0.91,0.39,1.75,1.01,2.37c0.61,0.61,1.46,1,2.37,1v-0.02h0.01h61.7h0.02 v0.02c0.91,0,1.75-0.39,2.37-1.01c0.61-0.61,1-1.46,1-2.37h-0.02V108.92L105.18,108.92z"})})});var ir=require("react/jsx-runtime"),gn=e=>{let[t,o]=(0,qs.useState)(!1);return(0,ir.jsxs)(Ld,{onClick:()=>{o(!0),navigator.clipboard.writeText(e.text),setTimeout(()=>o(!1),1500)},justCopied:t,children:[t?(0,ir.jsx)(Lo,{style:{height:"14px",width:"14px"},strokeWidth:"2"}):(0,ir.jsx)($s,{style:{height:"14px",width:"14px"}}),t?"Copied":"Copy"," ",e.itemName?e.itemName:"to Clipboard"]})},Ld=js.default.button`
708
708
  display: flex;
709
709
  align-items: center;
710
710
  gap: 6px;
@@ -761,7 +761,7 @@ Resources:
761
761
  background-position: 0% 50%;
762
762
  }
763
763
  }
764
- `;var ae=require("react/jsx-runtime"),Zs=()=>{var h;let{user:e}=F(),{closePrivyModal:t}=W(),{data:o}=w(),r=ee(e),{onSuccess:n,onFailure:i,callAuthOnSuccessOnClose:a}=o.createWallet,l=()=>{r?(n(r),t({shouldCallAuthOnSuccess:a})):i(new Error("Failed to create wallet"))},s="Your account",p="You\u2019re all set! This account is tied to a digital wallet. It can only ever be accessed by you.",f=Dt(r.address);return(0,ae.jsxs)(ae.Fragment,{children:[(0,ae.jsx)(_,{onClose:l}),(0,ae.jsxs)(Od,{children:[(0,ae.jsxs)("div",{children:[(0,ae.jsx)(pe,{title:s,description:p}),(0,ae.jsxs)(Dd,{children:[(0,ae.jsx)(Ys,{}),(0,ae.jsxs)(Ud,{children:[(0,ae.jsx)("p",{children:((h=e==null?void 0:e.email)==null?void 0:h.address)||""}),(0,ae.jsxs)(Bd,{children:[(0,ae.jsx)(Fd,{children:f})," ",(0,ae.jsx)(Bt,{color:"var(--privy-color-foreground)"})]})]})]}),(0,ae.jsx)(Gd,{children:(0,ae.jsx)(yn,{text:r.address,itemName:"Address"})})]}),(0,ae.jsx)(re,{onClick:l,children:"I\u2019m all set"})]}),(0,ae.jsx)(B,{protectedByPrivy:!0})]})},Od=so.default.div`
764
+ `;var ae=require("react/jsx-runtime"),Zs=()=>{var h;let{user:e}=F(),{closePrivyModal:t}=W(),{data:o}=w(),r=ee(e),{onSuccess:n,onFailure:i,callAuthOnSuccessOnClose:a}=o.createWallet,l=()=>{r?(n(r),t({shouldCallAuthOnSuccess:a})):i(new Error("Failed to create wallet"))},s="Your account",p="You\u2019re all set! This account is tied to a digital wallet. It can only ever be accessed by you.",f=Dt(r.address);return(0,ae.jsxs)(ae.Fragment,{children:[(0,ae.jsx)(_,{onClose:l}),(0,ae.jsxs)(Od,{children:[(0,ae.jsxs)("div",{children:[(0,ae.jsx)(pe,{title:s,description:p}),(0,ae.jsxs)(Dd,{children:[(0,ae.jsx)(Ys,{}),(0,ae.jsxs)(Ud,{children:[(0,ae.jsx)("p",{children:((h=e==null?void 0:e.email)==null?void 0:h.address)||""}),(0,ae.jsxs)(Bd,{children:[(0,ae.jsx)(Fd,{children:f})," ",(0,ae.jsx)(Ft,{color:"var(--privy-color-foreground)"})]})]})]}),(0,ae.jsx)(Gd,{children:(0,ae.jsx)(gn,{text:r.address,itemName:"Address"})})]}),(0,ae.jsx)(re,{onClick:l,children:"I\u2019m all set"})]}),(0,ae.jsx)(B,{protectedByPrivy:!0})]})},Od=so.default.div`
765
765
  display: flex;
766
766
  height: 100%;
767
767
  flex-direction: column;
@@ -880,7 +880,7 @@ Resources:
880
880
  && > h4 {
881
881
  color: var(--privy-color-error);
882
882
  }
883
- `;var Oo=require("react"),Do=E(require("styled-components"));var jt=require("react"),gn=E(require("styled-components"));var Si=require("react/jsx-runtime"),tl=({style:e,...t})=>(0,Si.jsx)("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:(0,Si.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M16.023 9.348h4.992v-.001M2.985 19.644v-4.992m0 0h4.992m-4.993 0l3.181 3.183a8.25 8.25 0 0013.803-3.7M4.031 9.865a8.25 8.25 0 0113.803-3.7l3.181 3.182m0-4.991v4.99"})});var Ne=require("react/jsx-runtime"),Mo=6,Qd=new Array(Mo).fill("");function Jd(e){return e.replace(/\s+/g,"")}function ki(e){return/^[a-zA-Z0-9]{1}$/.test(e)}function Xd(e){return/^[a-zA-Z]{1}$/.test(e)}function ep(e){return/^[a-z]{1}$/.test(e)}function ol(e){return e.length===Mo&&e.every(ki)}function tp(e,t){return e.reduce((o,r)=>o+Number(t(r)),0)}function op(){return crypto.getRandomValues(new Uint8Array(1))[0]}function rp(){let e="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789",t=[];for(;t.length<Mo;){let o=op();o>247||t.push(e.charAt(o%62))}return t.join("")}var vn=({onChange:e,disabled:t,readOnly:o,disableGeneration:r,errorReasonOverride:n})=>{let[i,a]=(0,jt.useState)(Qd),[l,s]=(0,jt.useState)(null),[p,f]=(0,jt.useState)(null),h=b=>{var le;let m=Jd(b.currentTarget.value);if(m==="")return;let g=tp(i,ki),L=m.split(""),S=!L.every(ki),k=L.length+g>Mo;if(S){s("Passcode can only be letters and numbers"),f(1);return}if(k){s("Passcode must be exactly 6 letters and numbers"),f(1);return}s(null),f(null);let M=Number((le=b.currentTarget.name)==null?void 0:le.charAt(4)),R=[...m||[""]].slice(0,Mo-M),O=[...i.slice(0,M),...R,...i.slice(M+R.length)];a(O);let I=R.length,Ee=Math.min(Math.max(M+I,0),Mo-1),Q=document.querySelector(`input[name=pin-${Ee}]`),ge=R[R.length-1]||"";if(Xd(ge)&&(ep(ge)?Q.autocapitalize="none":Q.autocapitalize="on"),Q==null||Q.focus(),ol(O)){let Y=document.querySelector(`input[name=pin-${Ee}]`);Y==null||Y.blur(),e(O.join(""))}else e(null);b.preventDefault()},u=b=>{p===1&&(s(null),f(null));let m=[...i.slice(0,b),"",...i.slice(b+1)];if(a(m),b>0){let g=document.querySelector(`input[name=pin-${b-1}]`);g==null||g.focus()}ol(m)?e(m.join("")):e(null)},C=o||r;return(0,Ne.jsxs)(Ne.Fragment,{children:[(0,Ne.jsxs)(np,{children:[(0,Ne.jsx)(ip,{fail:!!n||!!l,children:n||l||"Passcode can be letters and numbers"}),(0,Ne.jsx)("div",{children:i.map((b,m)=>(0,Ne.jsx)("input",{name:`pin-${m}`,type:"text",value:i[m],onChange:h,onKeyUp:g=>{g.key==="Backspace"&&u(m)},inputMode:"text",autoFocus:m===0,pattern:"[a-zA-Z0-9]",className:l?"fail":"",autoComplete:"off",disabled:t||o,autoCapitalize:"none"},m))})]}),!C&&(0,Ne.jsx)(ap,{disabled:t,onClick:()=>{let b=rp();a([...b]),e(b)}})]})},np=gn.default.div`
883
+ `;var Oo=require("react"),Do=E(require("styled-components"));var Kt=require("react"),vn=E(require("styled-components"));var Ri=require("react/jsx-runtime"),tl=({style:e,...t})=>(0,Ri.jsx)("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:(0,Ri.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M16.023 9.348h4.992v-.001M2.985 19.644v-4.992m0 0h4.992m-4.993 0l3.181 3.183a8.25 8.25 0 0013.803-3.7M4.031 9.865a8.25 8.25 0 0113.803-3.7l3.181 3.182m0-4.991v4.99"})});var Ne=require("react/jsx-runtime"),Mo=6,Qd=new Array(Mo).fill("");function Jd(e){return e.replace(/\s+/g,"")}function Wi(e){return/^[a-zA-Z0-9]{1}$/.test(e)}function Xd(e){return/^[a-zA-Z]{1}$/.test(e)}function ep(e){return/^[a-z]{1}$/.test(e)}function ol(e){return e.length===Mo&&e.every(Wi)}function tp(e,t){return e.reduce((o,r)=>o+Number(t(r)),0)}function op(){return crypto.getRandomValues(new Uint8Array(1))[0]}function rp(){let e="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789",t=[];for(;t.length<Mo;){let o=op();o>247||t.push(e.charAt(o%62))}return t.join("")}var bn=({onChange:e,disabled:t,readOnly:o,disableGeneration:r,errorReasonOverride:n})=>{let[i,a]=(0,Kt.useState)(Qd),[l,s]=(0,Kt.useState)(null),[p,f]=(0,Kt.useState)(null),h=b=>{var le;let m=Jd(b.currentTarget.value);if(m==="")return;let g=tp(i,Wi),L=m.split(""),S=!L.every(Wi),k=L.length+g>Mo;if(S){s("Passcode can only be letters and numbers"),f(1);return}if(k){s("Passcode must be exactly 6 letters and numbers"),f(1);return}s(null),f(null);let M=Number((le=b.currentTarget.name)==null?void 0:le.charAt(4)),R=[...m||[""]].slice(0,Mo-M),O=[...i.slice(0,M),...R,...i.slice(M+R.length)];a(O);let I=R.length,Ee=Math.min(Math.max(M+I,0),Mo-1),Q=document.querySelector(`input[name=pin-${Ee}]`),ge=R[R.length-1]||"";if(Xd(ge)&&(ep(ge)?Q.autocapitalize="none":Q.autocapitalize="on"),Q==null||Q.focus(),ol(O)){let Y=document.querySelector(`input[name=pin-${Ee}]`);Y==null||Y.blur(),e(O.join(""))}else e(null);b.preventDefault()},u=b=>{p===1&&(s(null),f(null));let m=[...i.slice(0,b),"",...i.slice(b+1)];if(a(m),b>0){let g=document.querySelector(`input[name=pin-${b-1}]`);g==null||g.focus()}ol(m)?e(m.join("")):e(null)},C=o||r;return(0,Ne.jsxs)(Ne.Fragment,{children:[(0,Ne.jsxs)(np,{children:[(0,Ne.jsx)(ip,{fail:!!n||!!l,children:n||l||"Passcode can be letters and numbers"}),(0,Ne.jsx)("div",{children:i.map((b,m)=>(0,Ne.jsx)("input",{name:`pin-${m}`,type:"text",value:i[m],onChange:h,onKeyUp:g=>{g.key==="Backspace"&&u(m)},inputMode:"text",autoFocus:m===0,pattern:"[a-zA-Z0-9]",className:l?"fail":"",autoComplete:"off",disabled:t||o,autoCapitalize:"none"},m))})]}),!C&&(0,Ne.jsx)(ap,{disabled:t,onClick:()=>{let b=rp();a([...b]),e(b)}})]})},np=vn.default.div`
884
884
  display: flex;
885
885
  flex-direction: column;
886
886
  width: 100%;
@@ -947,7 +947,7 @@ Resources:
947
947
  transform: translate(1px, 0px);
948
948
  }
949
949
  }
950
- `,ip=gn.default.div`
950
+ `,ip=vn.default.div`
951
951
  line-height: 20px;
952
952
  height: 20px;
953
953
  font-size: 13px;
@@ -955,7 +955,7 @@ Resources:
955
955
  display: flex;
956
956
  justify-content: flex-end;
957
957
  width: 100%;
958
- `,ap=({onClick:e,disabled:t,...o})=>{let[r,n]=(0,jt.useState)(!1),[i,a]=(0,jt.useState)();return(0,jt.useEffect)(()=>{t&&i&&clearTimeout(i),a(void 0)},[t]),(0,Ne.jsxs)(sp,{onClick:l=>{i&&clearTimeout(i),n(!0),e==null||e(l),a(setTimeout(()=>n(!1),1e3))},justGenerated:r,disabled:t,...o,children:[r?(0,Ne.jsx)(Lo,{style:{height:"14px",width:"14px"},strokeWidth:"2"}):(0,Ne.jsx)(tl,{style:{height:"14px",width:"14px"}}),r?"Generated":"Generate"," passcode"]})},sp=gn.default.button`
958
+ `,ap=({onClick:e,disabled:t,...o})=>{let[r,n]=(0,Kt.useState)(!1),[i,a]=(0,Kt.useState)();return(0,Kt.useEffect)(()=>{t&&i&&clearTimeout(i),a(void 0)},[t]),(0,Ne.jsxs)(sp,{onClick:l=>{i&&clearTimeout(i),n(!0),e==null||e(l),a(setTimeout(()=>n(!1),1e3))},justGenerated:r,disabled:t,...o,children:[r?(0,Ne.jsx)(Lo,{style:{height:"14px",width:"14px"},strokeWidth:"2"}):(0,Ne.jsx)(tl,{style:{height:"14px",width:"14px"}}),r?"Generated":"Generate"," passcode"]})},sp=vn.default.button`
959
959
  display: flex;
960
960
  align-items: center;
961
961
  gap: 6px;
@@ -993,7 +993,7 @@ Resources:
993
993
  width: 14px;
994
994
  height: 14px;
995
995
  }
996
- `;var Ae=require("react/jsx-runtime"),rl=()=>{let{authenticated:e,getAccessToken:t,user:o}=F(),{walletProxy:r,closePrivyModal:n,createAnalyticsEvent:i}=W(),{navigate:a,data:l}=w(),[s,p]=(0,Oo.useState)(null),[f,h]=(0,Oo.useState)(""),[u,C]=(0,Oo.useState)(!1),{onCompleteNavigateTo:b,onSuccess:m,onFailure:g}=l.recoverWallet,L=R=>{n({shouldCallAuthOnSuccess:!1}),g(typeof R=="string"?new Error(R):R)};(0,Oo.useEffect)(()=>{if(!e||!ee(o))return L("User must be authenticated and have a Privy wallet before it can be recovered")},[e,o]);let S=R=>{p(R)},k=ee(o);return(0,Ae.jsxs)(Ae.Fragment,{children:[(0,Ae.jsx)(_,{onClose:()=>L("User exited before their wallet could be recovered")}),(0,Ae.jsxs)(lp,{children:[(0,Ae.jsxs)("div",{children:[(0,Ae.jsx)(pe,{title:"Load your account",description:"We haven't seen this device yet. To continue, please enter your passcode."}),(0,Ae.jsx)(vn,{onChange:S,disabled:u,errorReasonOverride:f,disableGeneration:!0})]}),(0,Ae.jsxs)(cp,{children:[(0,Ae.jsx)("h4",{children:"Why am I doing this?"}),(0,Ae.jsx)("p",{children:"When you created your account, you entered a passcode\u2014this helps secure your digital wallet and ensure only you can access it."})]}),(0,Ae.jsx)(dp,{loading:u||!r,disabled:!s,onClick:async()=>{C(!0);let R=await t();if(R&&k&&s!==null)try{i("embedded_wallet_recovery_started",{walletAddress:k.address}),await(r==null?void 0:r.recover({address:k.address,accessToken:R,recoveryPin:s})),h(""),b?a(b):n({shouldCallAuthOnSuccess:!1}),m==null||m(k),i("embedded_wallet_recovery_completed",{walletAddress:k.address})}catch(O){Fs(O)?h("Invalid recovery passcode, please try again."):h("An error has occurred, please try again.")}finally{C(!1)}else return L("User must be authenticated and have a Privy wallet before it can be recovered")},warn:!1,hideAnimations:!k&&u,children:"Recover your account"})]}),(0,Ae.jsx)(B,{protectedByPrivy:!0})]})},lp=Do.default.div`
996
+ `;var Ae=require("react/jsx-runtime"),rl=()=>{let{authenticated:e,getAccessToken:t,user:o}=F(),{walletProxy:r,closePrivyModal:n,createAnalyticsEvent:i}=W(),{navigate:a,data:l}=w(),[s,p]=(0,Oo.useState)(null),[f,h]=(0,Oo.useState)(""),[u,C]=(0,Oo.useState)(!1),{onCompleteNavigateTo:b,onSuccess:m,onFailure:g}=l.recoverWallet,L=R=>{n({shouldCallAuthOnSuccess:!1}),g(typeof R=="string"?new Error(R):R)};(0,Oo.useEffect)(()=>{if(!e||!ee(o))return L("User must be authenticated and have a Privy wallet before it can be recovered")},[e,o]);let S=R=>{p(R)},k=ee(o);return(0,Ae.jsxs)(Ae.Fragment,{children:[(0,Ae.jsx)(_,{onClose:()=>L("User exited before their wallet could be recovered")}),(0,Ae.jsxs)(lp,{children:[(0,Ae.jsxs)("div",{children:[(0,Ae.jsx)(pe,{title:"Load your account",description:"We haven't seen this device yet. To continue, please enter your passcode."}),(0,Ae.jsx)(bn,{onChange:S,disabled:u,errorReasonOverride:f,disableGeneration:!0})]}),(0,Ae.jsxs)(cp,{children:[(0,Ae.jsx)("h4",{children:"Why am I doing this?"}),(0,Ae.jsx)("p",{children:"When you created your account, you entered a passcode\u2014this helps secure your digital wallet and ensure only you can access it."})]}),(0,Ae.jsx)(dp,{loading:u||!r,disabled:!s,onClick:async()=>{C(!0);let R=await t();if(R&&k&&s!==null)try{i("embedded_wallet_recovery_started",{walletAddress:k.address}),await(r==null?void 0:r.recover({address:k.address,accessToken:R,recoveryPin:s})),h(""),b?a(b):n({shouldCallAuthOnSuccess:!1}),m==null||m(k),i("embedded_wallet_recovery_completed",{walletAddress:k.address})}catch(O){Fs(O)?h("Invalid recovery passcode, please try again."):h("An error has occurred, please try again.")}finally{C(!1)}else return L("User must be authenticated and have a Privy wallet before it can be recovered")},warn:!1,hideAnimations:!k&&u,children:"Recover your account"})]}),(0,Ae.jsx)(B,{protectedByPrivy:!0})]})},lp=Do.default.div`
997
997
  display: flex;
998
998
  height: 100%;
999
999
  flex-direction: column;
@@ -1031,7 +1031,7 @@ Resources:
1031
1031
  transition: none;
1032
1032
  }
1033
1033
  `}
1034
- `;var Uo=require("react"),Bo=E(require("styled-components"));var ye=require("react/jsx-runtime"),nl=()=>{let{authenticated:e,getAccessToken:t,user:o}=F(),{walletProxy:r,refreshUser:n,closePrivyModal:i,createAnalyticsEvent:a}=W(),{navigate:l,data:s}=w(),[p,f]=(0,Uo.useState)(null),[h,u]=(0,Uo.useState)(""),[C,b]=(0,Uo.useState)(!1),{onFailure:m,callAuthOnSuccessOnClose:g}=s.createWallet;(0,Uo.useEffect)(()=>{e||(l("LANDING"),m(new Error("User must be authenticated before creating a Privy wallet")))},[e]);let L=()=>{m(new Error("User exited before creating a wallet")),i({shouldCallAuthOnSuccess:g})},S=O=>{f(O)},k=ee(o),M=k?()=>{b(!0),setTimeout(()=>{b(!1),l("EMBEDDED_WALLET_CREATED_SCREEN")},350)}:async()=>{b(!0);let O=await t();if(O&&p!==null)try{a("embedded_wallet_creation_started");let I=await(r==null?void 0:r.create({accessToken:O,recoveryPin:p}));a("embedded_wallet_creation_completed",{walletAddress:I==null?void 0:I.address}),u(""),await n()}catch(I){u("An error has occurred, please try again."),console.error(I)}finally{b(!1)}},R=!!k;return(0,ye.jsxs)(ye.Fragment,{children:[(0,ye.jsx)(_,{onClose:L}),(0,ye.jsxs)(pp,{children:[(0,ye.jsxs)("div",{children:[(0,ye.jsx)(pe,{title:R?"Secure your passcode":"Set your passcode",description:R?"Don\u2019t lose this passcode. You\u2019ll need it to access your full account on another device.":"You will need it when you sign in on a different device."}),(0,ye.jsx)(vn,{onChange:S,disabled:C,readOnly:R,errorReasonOverride:h}),R?(0,ye.jsx)(yn,{text:p||""}):null]}),(0,ye.jsxs)(up,{children:[(0,ye.jsx)("h4",{children:"Why am I doing this?"}),R?(0,ye.jsx)("p",{children:"This passcode allows you to access your account on another device. If you lose it, there is no way to recover your full account."}):(0,ye.jsx)("p",{children:"For your security, your account is tied to this device. Your passcode allows you to access it across devices."})]}),(0,ye.jsx)(mp,{loading:C||!r,disabled:!p,onClick:M,warn:R,hideAnimations:!k&&C,children:R?"I have saved my passcode":"Set passcode"})]}),(0,ye.jsx)(B,{protectedByPrivy:!0})]})},pp=Bo.default.div`
1034
+ `;var Uo=require("react"),Bo=E(require("styled-components"));var ye=require("react/jsx-runtime"),nl=()=>{let{authenticated:e,getAccessToken:t,user:o}=F(),{walletProxy:r,refreshUser:n,closePrivyModal:i,createAnalyticsEvent:a}=W(),{navigate:l,data:s}=w(),[p,f]=(0,Uo.useState)(null),[h,u]=(0,Uo.useState)(""),[C,b]=(0,Uo.useState)(!1),{onFailure:m,callAuthOnSuccessOnClose:g}=s.createWallet;(0,Uo.useEffect)(()=>{e||(l("LANDING"),m(new Error("User must be authenticated before creating a Privy wallet")))},[e]);let L=()=>{m(new Error("User exited before creating a wallet")),i({shouldCallAuthOnSuccess:g})},S=O=>{f(O)},k=ee(o),M=k?()=>{b(!0),setTimeout(()=>{b(!1),l("EMBEDDED_WALLET_CREATED_SCREEN")},350)}:async()=>{b(!0);let O=await t();if(O&&p!==null)try{a("embedded_wallet_creation_started");let I=await(r==null?void 0:r.create({accessToken:O,recoveryPin:p}));a("embedded_wallet_creation_completed",{walletAddress:I==null?void 0:I.address}),u(""),await n()}catch(I){u("An error has occurred, please try again."),console.error(I)}finally{b(!1)}},R=!!k;return(0,ye.jsxs)(ye.Fragment,{children:[(0,ye.jsx)(_,{onClose:L}),(0,ye.jsxs)(pp,{children:[(0,ye.jsxs)("div",{children:[(0,ye.jsx)(pe,{title:R?"Secure your passcode":"Set your passcode",description:R?"Don\u2019t lose this passcode. You\u2019ll need it to access your full account on another device.":"You will need it when you sign in on a different device."}),(0,ye.jsx)(bn,{onChange:S,disabled:C,readOnly:R,errorReasonOverride:h}),R?(0,ye.jsx)(gn,{text:p||""}):null]}),(0,ye.jsxs)(up,{children:[(0,ye.jsx)("h4",{children:"Why am I doing this?"}),R?(0,ye.jsx)("p",{children:"This passcode allows you to access your account on another device. If you lose it, there is no way to recover your full account."}):(0,ye.jsx)("p",{children:"For your security, your account is tied to this device. Your passcode allows you to access it across devices."})]}),(0,ye.jsx)(mp,{loading:C||!r,disabled:!p,onClick:M,warn:R,hideAnimations:!k&&C,children:R?"I have saved my passcode":"Set passcode"})]}),(0,ye.jsx)(B,{protectedByPrivy:!0})]})},pp=Bo.default.div`
1035
1035
  display: flex;
1036
1036
  height: 100%;
1037
1037
  flex-direction: column;
@@ -1069,18 +1069,18 @@ Resources:
1069
1069
  transition: none;
1070
1070
  }
1071
1071
  `}
1072
- `;var fl=require("react"),It=E(require("react-device-detect")),at=E(require("styled-components"));var bn=E(require("styled-components"));var Ri=require("react/jsx-runtime"),il=({style:e,...t})=>(0,Ri.jsx)("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:(0,Ri.jsx)("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)"})});var Cn=require("react/jsx-runtime"),wn=bn.default.div`
1072
+ `;var fl=require("react"),It=E(require("react-device-detect")),at=E(require("styled-components"));var wn=E(require("styled-components"));var Ii=require("react/jsx-runtime"),il=({style:e,...t})=>(0,Ii.jsx)("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:(0,Ii.jsx)("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)"})});var xn=require("react/jsx-runtime"),Cn=wn.default.div`
1073
1073
  display: flex;
1074
1074
  flex-direction: column;
1075
1075
  justify-content: flex-start;
1076
1076
  gap: 4px;
1077
- `,lo=bn.default.div`
1077
+ `,lo=wn.default.div`
1078
1078
  &&& {
1079
1079
  margin-left: 7px; /* TODO: This is a total hack */
1080
1080
  border-left: 2px solid var(--privy-color-foreground-4);
1081
1081
  height: 12px;
1082
1082
  }
1083
- `,gt=({children:e})=>(0,Cn.jsxs)(hp,{children:[(0,Cn.jsx)(il,{style:{width:"16px",height:"16px"}}),e]}),hp=bn.default.div`
1083
+ `,gt=({children:e})=>(0,xn.jsxs)(hp,{children:[(0,xn.jsx)(il,{style:{width:"16px",height:"16px"}}),e]}),hp=wn.default.div`
1084
1084
  display: flex;
1085
1085
  justify-content: flex-start;
1086
1086
  justify-items: center;
@@ -1098,7 +1098,7 @@ Resources:
1098
1098
  margin-bottom: auto;
1099
1099
  }
1100
1100
  }
1101
- `;var sl=E(require("qrcode")),ll=E(require("styled-components"));var q=require("react/jsx-runtime"),Le=7,Wi=(e,t,o,r,n)=>{for(let i=t;i<t+r;i++)for(let a=o;a<o+n;a++){let l=e==null?void 0:e[a];l&&l[i]&&(l[i]=0)}return e},fp=e=>{let t=sl.default.create(e,{errorCorrectionLevel:"high"}).modules,o=Ra(Array.from(t.data),t.size);return o=Wi(o,0,0,Le,Le),o=Wi(o,o.length-Le,0,Le,Le),o=Wi(o,0,o.length-Le,Le,Le),o},yp=({x:e,y:t,cellSize:o,bgColor:r,fgColor:n})=>(0,q.jsx)(q.Fragment,{children:[0,1,2].map(i=>(0,q.jsx)("circle",{r:o*(Le-i*2)/2,cx:e+o*Le/2,cy:t+o*Le/2,fill:i%2!==0?r:n},`finder-${e}-${t}-${i}`))}),gp=({cellSize:e,matrixSize:t,bgColor:o,fgColor:r})=>{let n=[[0,0],[(t-Le)*e,0],[0,(t-Le)*e]];return(0,q.jsx)(q.Fragment,{children:n.map(([i,a])=>(0,q.jsx)(yp,{x:i,y:a,cellSize:e,bgColor:o,fgColor:r}))})},vp=({matrix:e,cellSize:t,color:o})=>(0,q.jsx)(q.Fragment,{children:e.map((r,n)=>r.map((i,a)=>i?(0,q.jsx)("circle",{r:t/2.5,cx:n*t+t/2,cy:a*t+t/2,fill:o},`circle-${n}-${a}`):(0,q.jsx)(q.Fragment,{})))}),al=(e,t)=>e-e%t,bp=({outputSize:e,cellSize:t,element:o,size:r,padding:n,bgColor:i})=>{if(!o)return(0,q.jsx)(q.Fragment,{});let a=r||40,l=n||4,s=o,p=e/2-a/2-l;return(0,q.jsxs)(q.Fragment,{children:[(0,q.jsx)("rect",{x:al(p,t),y:al(p,t),width:a+l*2+(p%t?t+.5:.5),height:a+l*2+(p%t?t+.5:.5),fill:i}),(0,q.jsx)(s,{x:e/2-a/2,y:e/2-a/2,height:a,width:a})]})},wp=e=>{var n;let t=e.outputSize,o=fp(e.url),r=t/o.length;return(0,q.jsxs)("svg",{height:e.outputSize,width:e.outputSize,viewBox:`0 0 ${e.outputSize} ${e.outputSize}`,style:{height:"100%",width:"100%"},children:[(0,q.jsx)(vp,{matrix:o,cellSize:r,color:e.fgColor}),(0,q.jsx)(gp,{cellSize:r,matrixSize:o.length,fgColor:e.fgColor,bgColor:e.bgColor}),(0,q.jsx)(bp,{outputSize:e.outputSize,cellSize:r,element:(n=e.logo)==null?void 0:n.element,bgColor:e.bgColor})]})},Cp=ll.default.div`
1101
+ `;var sl=E(require("qrcode")),ll=E(require("styled-components"));var q=require("react/jsx-runtime"),Le=7,Ni=(e,t,o,r,n)=>{for(let i=t;i<t+r;i++)for(let a=o;a<o+n;a++){let l=e==null?void 0:e[a];l&&l[i]&&(l[i]=0)}return e},fp=e=>{let t=sl.default.create(e,{errorCorrectionLevel:"high"}).modules,o=Ia(Array.from(t.data),t.size);return o=Ni(o,0,0,Le,Le),o=Ni(o,o.length-Le,0,Le,Le),o=Ni(o,0,o.length-Le,Le,Le),o},yp=({x:e,y:t,cellSize:o,bgColor:r,fgColor:n})=>(0,q.jsx)(q.Fragment,{children:[0,1,2].map(i=>(0,q.jsx)("circle",{r:o*(Le-i*2)/2,cx:e+o*Le/2,cy:t+o*Le/2,fill:i%2!==0?r:n},`finder-${e}-${t}-${i}`))}),gp=({cellSize:e,matrixSize:t,bgColor:o,fgColor:r})=>{let n=[[0,0],[(t-Le)*e,0],[0,(t-Le)*e]];return(0,q.jsx)(q.Fragment,{children:n.map(([i,a])=>(0,q.jsx)(yp,{x:i,y:a,cellSize:e,bgColor:o,fgColor:r}))})},vp=({matrix:e,cellSize:t,color:o})=>(0,q.jsx)(q.Fragment,{children:e.map((r,n)=>r.map((i,a)=>i?(0,q.jsx)("circle",{r:t/2.5,cx:n*t+t/2,cy:a*t+t/2,fill:o},`circle-${n}-${a}`):(0,q.jsx)(q.Fragment,{})))}),al=(e,t)=>e-e%t,bp=({outputSize:e,cellSize:t,element:o,size:r,padding:n,bgColor:i})=>{if(!o)return(0,q.jsx)(q.Fragment,{});let a=r||40,l=n||4,s=o,p=e/2-a/2-l;return(0,q.jsxs)(q.Fragment,{children:[(0,q.jsx)("rect",{x:al(p,t),y:al(p,t),width:a+l*2+(p%t?t+.5:.5),height:a+l*2+(p%t?t+.5:.5),fill:i}),(0,q.jsx)(s,{x:e/2-a/2,y:e/2-a/2,height:a,width:a})]})},wp=e=>{var n;let t=e.outputSize,o=fp(e.url),r=t/o.length;return(0,q.jsxs)("svg",{height:e.outputSize,width:e.outputSize,viewBox:`0 0 ${e.outputSize} ${e.outputSize}`,style:{height:"100%",width:"100%"},children:[(0,q.jsx)(vp,{matrix:o,cellSize:r,color:e.fgColor}),(0,q.jsx)(gp,{cellSize:r,matrixSize:o.length,fgColor:e.fgColor,bgColor:e.bgColor}),(0,q.jsx)(bp,{outputSize:e.outputSize,cellSize:r,element:(n=e.logo)==null?void 0:n.element,bgColor:e.bgColor})]})},Cp=ll.default.div`
1102
1102
  display: flex;
1103
1103
  justify-content: center;
1104
1104
  align-items: center;
@@ -1113,7 +1113,7 @@ Resources:
1113
1113
  border-color: ${e=>e.fgColor};
1114
1114
  border-radius: 12px;
1115
1115
  }
1116
- `,cl=e=>{let t=e.bgColor||"#FFFFFF",o=e.fgColor||"#000000",r=e.size||160;return(0,q.jsx)(Cp,{size:r,bgColor:t,fgColor:o,children:(0,q.jsx)(wp,{url:e.url,logo:{element:e.squareLogoElement},outputSize:r,bgColor:t,fgColor:o})})};var pl=require("react/jsx-runtime"),dl=({size:e})=>(0,pl.jsx)(cl,{url:"https://coinbase-wallet.onelink.me/q5Sx/fdb9b250",squareLogoElement:ze,size:e,fgColor:"#1F1F1F"});var j=require("react/jsx-runtime"),ul=({style:e,...t})=>(0,j.jsxs)("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:[(0,j.jsx)("rect",{x:"198.5",y:"133",width:"50",height:"50",rx:"25",fill:"#E1E7EF"}),(0,j.jsx)(be,{x:"206",y:"140",width:"36",height:"36"}),(0,j.jsx)("rect",{x:"192",y:"30",width:"50",height:"50",rx:"25",fill:"#0C5BFF"}),(0,j.jsx)("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"}),(0,j.jsx)("rect",{x:"39.5",y:"18",width:"50",height:"50",rx:"25",fill:"url(#paint0_linear_428_81)"}),(0,j.jsx)("path",{d:"M77.3677 42.8335H74.102C74.102 36.2519 68.6881 30.9167 62.0091 30.9167C55.4129 30.9167 50.0501 36.1213 49.9189 42.5901C49.7831 49.2769 56.1492 55.0834 62.9357 55.0834H63.7893C69.7724 55.0834 77.7916 50.468 79.0445 44.8444C79.2758 43.8079 78.445 42.8335 77.3677 42.8335ZM57.1562 43.1267C57.1562 44.0068 56.4257 44.7267 55.5325 44.7267C54.6394 44.7267 53.9089 44.0065 53.9089 43.1267V40.5383C53.9089 39.6582 54.6394 38.9383 55.5325 38.9383C56.4257 38.9383 57.1562 39.6582 57.1562 40.5383V43.1267ZM62.794 43.1267C62.794 44.0068 62.0636 44.7267 61.1705 44.7267C60.2773 44.7267 59.5468 44.0065 59.5468 43.1267V40.5383C59.5468 39.6582 60.2776 38.9383 61.1705 38.9383C62.0636 38.9383 62.794 39.6582 62.794 40.5383V43.1267Z",fill:"url(#paint1_linear_428_81)"}),(0,j.jsx)("rect",{x:"46.5",y:"124",width:"50",height:"50",rx:"25",fill:"#141414"}),(0,j.jsx)("g",{clipPath:"url(#clip0_428_81)",children:(0,j.jsx)("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"})}),(0,j.jsx)("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",fill:"var(--privy-color-foreground-accent)"}),(0,j.jsx)(mn,{x:"63",y:"17"}),(0,j.jsx)("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",stroke:"#E1E7EF",strokeWidth:"2"}),(0,j.jsx)("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"}),(0,j.jsx)("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"}),(0,j.jsxs)("defs",{children:[(0,j.jsxs)("linearGradient",{id:"paint0_linear_428_81",x1:"64.5",y1:"18",x2:"64.5",y2:"68",gradientUnits:"userSpaceOnUse",children:[(0,j.jsx)("stop",{stopColor:"#534BB1"}),(0,j.jsx)("stop",{offset:"1",stopColor:"#551BF9"})]}),(0,j.jsxs)("linearGradient",{id:"paint1_linear_428_81",x1:"64.5",y1:"30.9167",x2:"64.5",y2:"55.0834",gradientUnits:"userSpaceOnUse",children:[(0,j.jsx)("stop",{stopColor:"white"}),(0,j.jsx)("stop",{offset:"1",stopColor:"white",stopOpacity:"0.82"})]}),(0,j.jsx)("clipPath",{id:"clip0_428_81",children:(0,j.jsx)("rect",{width:"31.6667",height:"19.1667",fill:"white",transform:"translate(55.6667 139.833)"})})]})]});var y=require("react/jsx-runtime");var Ii=()=>{let{navigate:e}=w(),t="https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn?hl=en";return It.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/ether-metamask/"),(0,y.jsxs)(Mi,{children:[(0,y.jsx)(pe,{title:"Create a Metamask wallet",description:"Follow the instructions below to get started."}),(0,y.jsx)(Oi,{children:(0,y.jsx)(be,{style:{width:"152px",height:"152px"}})}),(0,y.jsxs)(wn,{children:[(0,y.jsx)(gt,{children:(0,y.jsxs)("div",{children:[(0,y.jsx)("span",{children:"Install the "}),(0,y.jsx)("a",{href:t,target:"_blank",children:"MetaMask browser extension"})]})}),(0,y.jsx)(lo,{}),(0,y.jsx)(gt,{children:"Set up your first wallet"}),(0,y.jsx)(lo,{}),(0,y.jsx)(gt,{children:"Store your recovery phrase in a safe place!"})]}),(0,y.jsx)(he,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},Ni=()=>{let{navigate:e}=w(),t="https://chrome.google.com/webstore/detail/phantom/bfnaelmomeimhlpmgjnjophhpkkoljpa?hl=en";return It.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/phantom-app/"),(0,y.jsxs)(Mi,{children:[(0,y.jsx)(pe,{title:"Create a Phantom wallet",description:"Follow the instructions below to get started."}),(0,y.jsx)(Oi,{children:(0,y.jsx)(mt,{style:{width:"152px",height:"152px"}})}),(0,y.jsxs)(wn,{children:[(0,y.jsx)(gt,{children:(0,y.jsxs)("div",{children:[(0,y.jsx)("span",{children:"Install the "}),(0,y.jsx)("a",{href:t,target:"_blank",children:"Phantom browser extension"})]})}),(0,y.jsx)(lo,{}),(0,y.jsx)(gt,{children:"Set up your first wallet"}),(0,y.jsx)(lo,{}),(0,y.jsx)(gt,{children:"Store your recovery phrase in a safe place!"})]}),(0,y.jsx)(he,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},Li=()=>{let{navigate:e}=w();return(0,y.jsxs)(Mi,{children:[(0,y.jsx)(pe,{title:"Create a Coinbase wallet",description:"Follow the instructions below to get started."}),(0,y.jsx)(Oi,{style:{marginTop:"-24px"},children:(0,y.jsx)(dl,{size:200})}),(0,y.jsxs)(wn,{children:[(0,y.jsx)(gt,{children:"Scan the QR code with your camera"}),(0,y.jsx)(lo,{}),(0,y.jsx)(gt,{children:"Set up your first wallet"}),(0,y.jsx)(lo,{}),(0,y.jsx)(gt,{children:"Store your seed phrase in a safe place!"})]}),(0,y.jsx)(he,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},yl=()=>{let[e,t]=(0,fl.useState)("WHAT_IS_A_WALLET"),{navigateBack:o}=w();return(0,y.jsxs)(y.Fragment,{children:[(0,y.jsx)(_,{backFn:e==="WHAT_IS_A_WALLET"?o:e==="PICK_A_NEW_WALLET"?()=>t("WHAT_IS_A_WALLET"):()=>t("PICK_A_NEW_WALLET")},"header"),(0,y.jsxs)(xp,{children:[e==="WHAT_IS_A_WALLET"&&(0,y.jsxs)(y.Fragment,{children:[(0,y.jsx)(Ap,{children:(0,y.jsx)(ul,{style:{width:"240px",height:"auto",borderRadius:"var(--privy-border-radius-sm)",marginBottom:"32px"}})}),(0,y.jsxs)(Ht,{title:"Get started with a new wallet",children:[(0,y.jsx)("p",{children:"Wallets help you store, send, and receive digital assets and collectibles. They are also a new\xA0way\xA0to\xA0log\xA0in."}),(0,y.jsx)("p",{children:"Instead of creating new accounts and passwords for every app, you just connect your wallet and bring your\xA0data\xA0with\xA0you."})]}),(0,y.jsx)(Pp,{children:(0,y.jsx)(_p,{onClick:()=>{t("PICK_A_NEW_WALLET")},children:"Create a wallet"})})]}),e==="PICK_A_NEW_WALLET"&&(0,y.jsx)(y.Fragment,{children:(0,y.jsxs)(Ep,{children:[(0,y.jsx)(pe,{title:"Create a new wallet",description:"Select one the wallet providers below to get started on your web3 adventure."}),(0,y.jsxs)(Tp,{children:[(0,y.jsxs)(ml,{onClick:()=>{It.isIOS?window.location.href="https://apps.apple.com/us/app/metamask-blockchain-wallet/id1438144202":It.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=io.metamask":t("CREATE_METAMASK_WALLET")},children:[(0,y.jsx)(be,{}),(0,y.jsxs)(hl,{children:[(0,y.jsx)("h4",{children:"MetaMask"}),(0,y.jsx)("p",{children:"Get a browser-based wallet"})]})]}),(0,y.jsxs)(ml,{onClick:()=>{It.isIOS?window.location.href="https://apps.apple.com/us/app/coinbase-wallet-nfts-crypto/id1278383455":It.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=org.toshi":t("CREATE_COINBASE_WALLET")},children:[(0,y.jsx)(ze,{}),(0,y.jsxs)(hl,{children:[(0,y.jsx)("h4",{children:"Coinbase Wallet"}),(0,y.jsx)("p",{children:"Get a mobile app wallet"})]})]})]})]})}),e==="CREATE_COINBASE_WALLET"&&(0,y.jsx)(Li,{}),e==="CREATE_METAMASK_WALLET"&&(0,y.jsx)(Ii,{}),e==="CREATE_PHANTOM_WALLET"&&(0,y.jsx)(Ni,{})]}),(0,y.jsxs)(rt,{children:[(0,y.jsx)("span",{children:"Still not sure? "}),(0,y.jsx)("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"}),"."]})]})},xp=at.default.div`
1116
+ `,cl=e=>{let t=e.bgColor||"#FFFFFF",o=e.fgColor||"#000000",r=e.size||160;return(0,q.jsx)(Cp,{size:r,bgColor:t,fgColor:o,children:(0,q.jsx)(wp,{url:e.url,logo:{element:e.squareLogoElement},outputSize:r,bgColor:t,fgColor:o})})};var pl=require("react/jsx-runtime"),dl=({size:e})=>(0,pl.jsx)(cl,{url:"https://coinbase-wallet.onelink.me/q5Sx/fdb9b250",squareLogoElement:ze,size:e,fgColor:"#1F1F1F"});var j=require("react/jsx-runtime"),ul=({style:e,...t})=>(0,j.jsxs)("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:[(0,j.jsx)("rect",{x:"198.5",y:"133",width:"50",height:"50",rx:"25",fill:"#E1E7EF"}),(0,j.jsx)(be,{x:"206",y:"140",width:"36",height:"36"}),(0,j.jsx)("rect",{x:"192",y:"30",width:"50",height:"50",rx:"25",fill:"#0C5BFF"}),(0,j.jsx)("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"}),(0,j.jsx)("rect",{x:"39.5",y:"18",width:"50",height:"50",rx:"25",fill:"url(#paint0_linear_428_81)"}),(0,j.jsx)("path",{d:"M77.3677 42.8335H74.102C74.102 36.2519 68.6881 30.9167 62.0091 30.9167C55.4129 30.9167 50.0501 36.1213 49.9189 42.5901C49.7831 49.2769 56.1492 55.0834 62.9357 55.0834H63.7893C69.7724 55.0834 77.7916 50.468 79.0445 44.8444C79.2758 43.8079 78.445 42.8335 77.3677 42.8335ZM57.1562 43.1267C57.1562 44.0068 56.4257 44.7267 55.5325 44.7267C54.6394 44.7267 53.9089 44.0065 53.9089 43.1267V40.5383C53.9089 39.6582 54.6394 38.9383 55.5325 38.9383C56.4257 38.9383 57.1562 39.6582 57.1562 40.5383V43.1267ZM62.794 43.1267C62.794 44.0068 62.0636 44.7267 61.1705 44.7267C60.2773 44.7267 59.5468 44.0065 59.5468 43.1267V40.5383C59.5468 39.6582 60.2776 38.9383 61.1705 38.9383C62.0636 38.9383 62.794 39.6582 62.794 40.5383V43.1267Z",fill:"url(#paint1_linear_428_81)"}),(0,j.jsx)("rect",{x:"46.5",y:"124",width:"50",height:"50",rx:"25",fill:"#141414"}),(0,j.jsx)("g",{clipPath:"url(#clip0_428_81)",children:(0,j.jsx)("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"})}),(0,j.jsx)("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",fill:"var(--privy-color-foreground-accent)"}),(0,j.jsx)(hn,{x:"63",y:"17"}),(0,j.jsx)("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",stroke:"#E1E7EF",strokeWidth:"2"}),(0,j.jsx)("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"}),(0,j.jsx)("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"}),(0,j.jsxs)("defs",{children:[(0,j.jsxs)("linearGradient",{id:"paint0_linear_428_81",x1:"64.5",y1:"18",x2:"64.5",y2:"68",gradientUnits:"userSpaceOnUse",children:[(0,j.jsx)("stop",{stopColor:"#534BB1"}),(0,j.jsx)("stop",{offset:"1",stopColor:"#551BF9"})]}),(0,j.jsxs)("linearGradient",{id:"paint1_linear_428_81",x1:"64.5",y1:"30.9167",x2:"64.5",y2:"55.0834",gradientUnits:"userSpaceOnUse",children:[(0,j.jsx)("stop",{stopColor:"white"}),(0,j.jsx)("stop",{offset:"1",stopColor:"white",stopOpacity:"0.82"})]}),(0,j.jsx)("clipPath",{id:"clip0_428_81",children:(0,j.jsx)("rect",{width:"31.6667",height:"19.1667",fill:"white",transform:"translate(55.6667 139.833)"})})]})]});var y=require("react/jsx-runtime");var Li=()=>{let{navigate:e}=w(),t="https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn?hl=en";return It.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/ether-metamask/"),(0,y.jsxs)(Di,{children:[(0,y.jsx)(pe,{title:"Create a Metamask wallet",description:"Follow the instructions below to get started."}),(0,y.jsx)(Ui,{children:(0,y.jsx)(be,{style:{width:"152px",height:"152px"}})}),(0,y.jsxs)(Cn,{children:[(0,y.jsx)(gt,{children:(0,y.jsxs)("div",{children:[(0,y.jsx)("span",{children:"Install the "}),(0,y.jsx)("a",{href:t,target:"_blank",children:"MetaMask browser extension"})]})}),(0,y.jsx)(lo,{}),(0,y.jsx)(gt,{children:"Set up your first wallet"}),(0,y.jsx)(lo,{}),(0,y.jsx)(gt,{children:"Store your recovery phrase in a safe place!"})]}),(0,y.jsx)(he,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},Mi=()=>{let{navigate:e}=w(),t="https://chrome.google.com/webstore/detail/phantom/bfnaelmomeimhlpmgjnjophhpkkoljpa?hl=en";return It.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/phantom-app/"),(0,y.jsxs)(Di,{children:[(0,y.jsx)(pe,{title:"Create a Phantom wallet",description:"Follow the instructions below to get started."}),(0,y.jsx)(Ui,{children:(0,y.jsx)(mt,{style:{width:"152px",height:"152px"}})}),(0,y.jsxs)(Cn,{children:[(0,y.jsx)(gt,{children:(0,y.jsxs)("div",{children:[(0,y.jsx)("span",{children:"Install the "}),(0,y.jsx)("a",{href:t,target:"_blank",children:"Phantom browser extension"})]})}),(0,y.jsx)(lo,{}),(0,y.jsx)(gt,{children:"Set up your first wallet"}),(0,y.jsx)(lo,{}),(0,y.jsx)(gt,{children:"Store your recovery phrase in a safe place!"})]}),(0,y.jsx)(he,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},Oi=()=>{let{navigate:e}=w();return(0,y.jsxs)(Di,{children:[(0,y.jsx)(pe,{title:"Create a Coinbase wallet",description:"Follow the instructions below to get started."}),(0,y.jsx)(Ui,{style:{marginTop:"-24px"},children:(0,y.jsx)(dl,{size:200})}),(0,y.jsxs)(Cn,{children:[(0,y.jsx)(gt,{children:"Scan the QR code with your camera"}),(0,y.jsx)(lo,{}),(0,y.jsx)(gt,{children:"Set up your first wallet"}),(0,y.jsx)(lo,{}),(0,y.jsx)(gt,{children:"Store your seed phrase in a safe place!"})]}),(0,y.jsx)(he,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},yl=()=>{let[e,t]=(0,fl.useState)("WHAT_IS_A_WALLET"),{navigateBack:o}=w();return(0,y.jsxs)(y.Fragment,{children:[(0,y.jsx)(_,{backFn:e==="WHAT_IS_A_WALLET"?o:e==="PICK_A_NEW_WALLET"?()=>t("WHAT_IS_A_WALLET"):()=>t("PICK_A_NEW_WALLET")},"header"),(0,y.jsxs)(xp,{children:[e==="WHAT_IS_A_WALLET"&&(0,y.jsxs)(y.Fragment,{children:[(0,y.jsx)(Ap,{children:(0,y.jsx)(ul,{style:{width:"240px",height:"auto",borderRadius:"var(--privy-border-radius-sm)",marginBottom:"32px"}})}),(0,y.jsxs)(Vt,{title:"Get started with a new wallet",children:[(0,y.jsx)("p",{children:"Wallets help you store, send, and receive digital assets and collectibles. They are also a new\xA0way\xA0to\xA0log\xA0in."}),(0,y.jsx)("p",{children:"Instead of creating new accounts and passwords for every app, you just connect your wallet and bring your\xA0data\xA0with\xA0you."})]}),(0,y.jsx)(Pp,{children:(0,y.jsx)(_p,{onClick:()=>{t("PICK_A_NEW_WALLET")},children:"Create a wallet"})})]}),e==="PICK_A_NEW_WALLET"&&(0,y.jsx)(y.Fragment,{children:(0,y.jsxs)(Ep,{children:[(0,y.jsx)(pe,{title:"Create a new wallet",description:"Select one the wallet providers below to get started on your web3 adventure."}),(0,y.jsxs)(Tp,{children:[(0,y.jsxs)(ml,{onClick:()=>{It.isIOS?window.location.href="https://apps.apple.com/us/app/metamask-blockchain-wallet/id1438144202":It.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=io.metamask":t("CREATE_METAMASK_WALLET")},children:[(0,y.jsx)(be,{}),(0,y.jsxs)(hl,{children:[(0,y.jsx)("h4",{children:"MetaMask"}),(0,y.jsx)("p",{children:"Get a browser-based wallet"})]})]}),(0,y.jsxs)(ml,{onClick:()=>{It.isIOS?window.location.href="https://apps.apple.com/us/app/coinbase-wallet-nfts-crypto/id1278383455":It.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=org.toshi":t("CREATE_COINBASE_WALLET")},children:[(0,y.jsx)(ze,{}),(0,y.jsxs)(hl,{children:[(0,y.jsx)("h4",{children:"Coinbase Wallet"}),(0,y.jsx)("p",{children:"Get a mobile app wallet"})]})]})]})]})}),e==="CREATE_COINBASE_WALLET"&&(0,y.jsx)(Oi,{}),e==="CREATE_METAMASK_WALLET"&&(0,y.jsx)(Li,{}),e==="CREATE_PHANTOM_WALLET"&&(0,y.jsx)(Mi,{})]}),(0,y.jsxs)(rt,{children:[(0,y.jsx)("span",{children:"Still not sure? "}),(0,y.jsx)("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"}),"."]})]})},xp=at.default.div`
1117
1117
  display: flex;
1118
1118
  flex-direction: column;
1119
1119
  height: 100%;
@@ -1186,7 +1186,7 @@ Resources:
1186
1186
  && {
1187
1187
  margin-top: 14px;
1188
1188
  }
1189
- `,Mi=at.default.div`
1189
+ `,Di=at.default.div`
1190
1190
  display: flex;
1191
1191
  flex-direction: column;
1192
1192
  align-items: center;
@@ -1198,7 +1198,7 @@ Resources:
1198
1198
  > :first-child > svg {
1199
1199
  margin-top: 20px;
1200
1200
  }
1201
- `,Oi=at.default.div`
1201
+ `,Ui=at.default.div`
1202
1202
  display: flex;
1203
1203
  flex-direction: column;
1204
1204
  align-items: center;
@@ -1208,7 +1208,7 @@ Resources:
1208
1208
  display: flex;
1209
1209
  justify-content: center;
1210
1210
  flex-grow: 1;
1211
- `;var vt=require("react/jsx-runtime"),gl=()=>{let{navigateBack:e}=w();return(0,vt.jsxs)(vt.Fragment,{children:[(0,vt.jsx)(_,{backFn:e},"header"),(0,vt.jsx)(Li,{}),(0,vt.jsxs)(rt,{children:[(0,vt.jsx)("span",{children:"Still not sure? "}),(0,vt.jsx)("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"})]})]})};var bt=require("react/jsx-runtime"),vl=()=>{let{navigateBack:e}=w();return(0,bt.jsxs)(bt.Fragment,{children:[(0,bt.jsx)(_,{backFn:e},"header"),(0,bt.jsx)(Ii,{}),(0,bt.jsxs)(rt,{children:[(0,bt.jsx)("span",{children:"Still not sure? "}),(0,bt.jsx)("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"})]})]})};var wt=require("react/jsx-runtime"),bl=()=>{let{navigateBack:e}=w();return(0,wt.jsxs)(wt.Fragment,{children:[(0,wt.jsx)(_,{backFn:e},"header"),(0,wt.jsx)(Ni,{}),(0,wt.jsxs)(rt,{children:[(0,wt.jsx)("span",{children:"Still not sure? "}),(0,wt.jsx)("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"})]})]})};var xl=require("react"),Hi=require("react-device-detect"),po=E(require("styled-components"));var Fo=require("react"),ar=E(require("styled-components"));var Di=require("react/jsx-runtime"),xn=({style:e,...t})=>(0,Di.jsx)("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:(0,Di.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M21.75 6.75v10.5a2.25 2.25 0 01-2.25 2.25h-15a2.25 2.25 0 01-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0019.5 4.5h-15a2.25 2.25 0 00-2.25 2.25m19.5 0v.243a2.25 2.25 0 01-1.07 1.916l-7.5 4.615a2.25 2.25 0 01-2.36 0L3.32 8.91a2.25 2.25 0 01-1.07-1.916V6.75"})});var Me=require("react/jsx-runtime"),En=e=>{let[t,o]=(0,Fo.useState)(""),[r,n]=(0,Fo.useState)(!1),[i,a]=(0,Fo.useState)(null),{isLinking:l,initLoginWithEmail:s}=W(),{app:p,navigate:f}=w(),h=(p==null?void 0:p.loginMethods.wallet)??!1;(0,Fo.useEffect)(()=>{let m=document.querySelector("#email-input");m==null||m.focus()},[]);let u=Sa(t),C=()=>{n(!0),s(t).then(()=>{f("AWAITING_PASSWORDLESS_CODE")}).catch(m=>{(m==null?void 0:m.status)===422?a(m.message):(m==null?void 0:m.privyErrorCode)==="allowlist_rejected"?f("ALLOWLIST_REJECTION_SCREEN"):a("Issue submitting email"),n(!1)})},b="Get started without a wallet.";return i?b=i:l?b="Easily connect an email":h||(b="Get started quickly with email"),(0,Me.jsxs)(Me.Fragment,{children:[(0,Me.jsxs)(Sp,{stacked:e.stacked,children:[(0,Me.jsxs)(Rp,{standalone:e.stacked,children:[(0,Me.jsx)(xn,{}),(0,Me.jsx)("input",{id:"email-input",type:"email",placeholder:"your@email.com",onChange:m=>o(m.target.value),onKeyUp:m=>{m.key==="Enter"&&C()},value:t,autoComplete:"email"})]}),e.stacked?null:(0,Me.jsx)(kp,{disabled:r||!u,onClick:C,children:r?(0,Me.jsx)(ot,{}):"Submit"})]}),(0,Me.jsx)(Wp,{fail:!!i,children:b}),e.stacked?(0,Me.jsx)(re,{loading:r,loadingText:null,disabled:r||!u,onClick:C,children:"Submit"}):null]})},Sp=ar.default.div`
1211
+ `;var vt=require("react/jsx-runtime"),gl=()=>{let{navigateBack:e}=w();return(0,vt.jsxs)(vt.Fragment,{children:[(0,vt.jsx)(_,{backFn:e},"header"),(0,vt.jsx)(Oi,{}),(0,vt.jsxs)(rt,{children:[(0,vt.jsx)("span",{children:"Still not sure? "}),(0,vt.jsx)("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"})]})]})};var bt=require("react/jsx-runtime"),vl=()=>{let{navigateBack:e}=w();return(0,bt.jsxs)(bt.Fragment,{children:[(0,bt.jsx)(_,{backFn:e},"header"),(0,bt.jsx)(Li,{}),(0,bt.jsxs)(rt,{children:[(0,bt.jsx)("span",{children:"Still not sure? "}),(0,bt.jsx)("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"})]})]})};var wt=require("react/jsx-runtime"),bl=()=>{let{navigateBack:e}=w();return(0,wt.jsxs)(wt.Fragment,{children:[(0,wt.jsx)(_,{backFn:e},"header"),(0,wt.jsx)(Mi,{}),(0,wt.jsxs)(rt,{children:[(0,wt.jsx)("span",{children:"Still not sure? "}),(0,wt.jsx)("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"})]})]})};var xl=require("react"),zi=require("react-device-detect"),po=E(require("styled-components"));var Fo=require("react"),ar=E(require("styled-components"));var Bi=require("react/jsx-runtime"),En=({style:e,...t})=>(0,Bi.jsx)("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:(0,Bi.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M21.75 6.75v10.5a2.25 2.25 0 01-2.25 2.25h-15a2.25 2.25 0 01-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0019.5 4.5h-15a2.25 2.25 0 00-2.25 2.25m19.5 0v.243a2.25 2.25 0 01-1.07 1.916l-7.5 4.615a2.25 2.25 0 01-2.36 0L3.32 8.91a2.25 2.25 0 01-1.07-1.916V6.75"})});var Me=require("react/jsx-runtime"),Tn=e=>{let[t,o]=(0,Fo.useState)(""),[r,n]=(0,Fo.useState)(!1),[i,a]=(0,Fo.useState)(null),{isLinking:l,initLoginWithEmail:s}=W(),{app:p,navigate:f}=w(),h=(p==null?void 0:p.loginMethods.wallet)??!1;(0,Fo.useEffect)(()=>{let m=document.querySelector("#email-input");m==null||m.focus()},[]);let u=Ra(t),C=()=>{n(!0),s(t).then(()=>{f("AWAITING_PASSWORDLESS_CODE")}).catch(m=>{(m==null?void 0:m.status)===422?a(m.message):(m==null?void 0:m.privyErrorCode)==="allowlist_rejected"?f("ALLOWLIST_REJECTION_SCREEN"):a("Issue submitting email"),n(!1)})},b="Get started without a wallet.";return i?b=i:l?b="Easily connect an email":h||(b="Get started quickly with email"),(0,Me.jsxs)(Me.Fragment,{children:[(0,Me.jsxs)(Sp,{stacked:e.stacked,children:[(0,Me.jsxs)(Rp,{standalone:e.stacked,children:[(0,Me.jsx)(En,{}),(0,Me.jsx)("input",{id:"email-input",type:"email",placeholder:"your@email.com",onChange:m=>o(m.target.value),onKeyUp:m=>{m.key==="Enter"&&C()},value:t,autoComplete:"email"})]}),e.stacked?null:(0,Me.jsx)(kp,{disabled:r||!u,onClick:C,children:r?(0,Me.jsx)(ot,{}):"Submit"})]}),(0,Me.jsx)(Wp,{fail:!!i,children:b}),e.stacked?(0,Me.jsx)(re,{loading:r,loadingText:null,disabled:r||!u,onClick:C,children:"Submit"}):null]})},Sp=ar.default.div`
1212
1212
  width: 100%;
1213
1213
  height: ${e=>e.stacked?"100%":"auto"};
1214
1214
 
@@ -1301,7 +1301,7 @@ Resources:
1301
1301
  > a {
1302
1302
  text-decoration: underline;
1303
1303
  }
1304
- `;var Go=require("react"),sr=E(require("styled-components"));var Ui=require("react/jsx-runtime"),Tn=({style:e,...t})=>(0,Ui.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 20 20",strokeWidth:1.5,stroke:"currentColor",style:{height:"1.5rem",width:"1.5rem",...e},...t,children:(0,Ui.jsx)("path",{d:"M2.5 4.16667C2.5 3.72464 2.67559 3.30072 2.98816 2.98816C3.30072 2.67559 3.72464 2.5 4.16667 2.5H6.9C7.07483 2.50013 7.24519 2.55525 7.38696 2.65754C7.52874 2.75984 7.63475 2.90413 7.69 3.07L8.93833 6.81417C9.00158 7.00445 8.9941 7.21116 8.91726 7.39637C8.84042 7.58158 8.69938 7.73288 8.52 7.8225L6.63917 8.76417C7.5611 10.8046 9.19538 12.4389 11.2358 13.3608L12.1775 11.48C12.2671 11.3006 12.4184 11.1596 12.6036 11.0827C12.7888 11.0059 12.9956 10.9984 13.1858 11.0617L16.93 12.31C17.096 12.3653 17.2404 12.4714 17.3427 12.6134C17.445 12.7553 17.5 12.9259 17.5 13.1008V15.8333C17.5 16.2754 17.3244 16.6993 17.0118 17.0118C16.6993 17.3244 16.2754 17.5 15.8333 17.5H15C8.09667 17.5 2.5 11.9033 2.5 5V4.16667Z",strokeLinecap:"round",strokeLinejoin:"round"})});var Oe=require("react/jsx-runtime"),Pn=e=>{let[t,o]=(0,Go.useState)(""),[r,n]=(0,Go.useState)(!1),[i,a]=(0,Go.useState)(null),{isLinking:l,initLoginWithSms:s}=W(),{app:p,navigate:f}=w(),h=(p==null?void 0:p.loginMethods.wallet)??!1;(0,Go.useEffect)(()=>{let m=document.querySelector("#phone-number-input");m==null||m.focus()},[]);let u=ka(t),C=()=>{n(!0),s(t).then(()=>{f("AWAITING_PASSWORDLESS_CODE")}).catch(m=>{(m==null?void 0:m.status)===422?a(m.message):(m==null?void 0:m.privyErrorCode)==="allowlist_rejected"?f("ALLOWLIST_REJECTION_SCREEN"):a("Issue submitting phone number"),n(!1)})},b="Get started without a wallet.";return i?b=i:l?b="Easily connect a phone number":h||(b="Get started quickly with your phone"),(0,Oe.jsxs)(Oe.Fragment,{children:[(0,Oe.jsxs)(Ip,{stacked:e.stacked,children:[(0,Oe.jsxs)(Lp,{standalone:e.stacked,children:[(0,Oe.jsx)(Tn,{}),(0,Oe.jsx)("input",{id:"phone-number-input",type:"tel",placeholder:"555 555 5555",onChange:m=>{o(m.target.value)},onKeyUp:m=>{m.key==="Enter"&&C()},value:t,autoComplete:"tel"})]}),e.stacked?null:(0,Oe.jsx)(Np,{disabled:r||!u,onClick:C,children:r?(0,Oe.jsx)(ot,{}):"Submit"})]}),(0,Oe.jsx)(Mp,{fail:!!i,children:b}),e.stacked?(0,Oe.jsx)(re,{loading:r,loadingText:null,disabled:r||!u,onClick:C,children:"Submit"}):null]})},Ip=sr.default.div`
1304
+ `;var Go=require("react"),sr=E(require("styled-components"));var Fi=require("react/jsx-runtime"),Pn=({style:e,...t})=>(0,Fi.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 20 20",strokeWidth:1.5,stroke:"currentColor",style:{height:"1.5rem",width:"1.5rem",...e},...t,children:(0,Fi.jsx)("path",{d:"M2.5 4.16667C2.5 3.72464 2.67559 3.30072 2.98816 2.98816C3.30072 2.67559 3.72464 2.5 4.16667 2.5H6.9C7.07483 2.50013 7.24519 2.55525 7.38696 2.65754C7.52874 2.75984 7.63475 2.90413 7.69 3.07L8.93833 6.81417C9.00158 7.00445 8.9941 7.21116 8.91726 7.39637C8.84042 7.58158 8.69938 7.73288 8.52 7.8225L6.63917 8.76417C7.5611 10.8046 9.19538 12.4389 11.2358 13.3608L12.1775 11.48C12.2671 11.3006 12.4184 11.1596 12.6036 11.0827C12.7888 11.0059 12.9956 10.9984 13.1858 11.0617L16.93 12.31C17.096 12.3653 17.2404 12.4714 17.3427 12.6134C17.445 12.7553 17.5 12.9259 17.5 13.1008V15.8333C17.5 16.2754 17.3244 16.6993 17.0118 17.0118C16.6993 17.3244 16.2754 17.5 15.8333 17.5H15C8.09667 17.5 2.5 11.9033 2.5 5V4.16667Z",strokeLinecap:"round",strokeLinejoin:"round"})});var Oe=require("react/jsx-runtime"),_n=e=>{let[t,o]=(0,Go.useState)(""),[r,n]=(0,Go.useState)(!1),[i,a]=(0,Go.useState)(null),{isLinking:l,initLoginWithSms:s}=W(),{app:p,navigate:f}=w(),h=(p==null?void 0:p.loginMethods.wallet)??!1;(0,Go.useEffect)(()=>{let m=document.querySelector("#phone-number-input");m==null||m.focus()},[]);let u=Wa(t),C=()=>{n(!0),s(t).then(()=>{f("AWAITING_PASSWORDLESS_CODE")}).catch(m=>{(m==null?void 0:m.status)===422?a(m.message):(m==null?void 0:m.privyErrorCode)==="allowlist_rejected"?f("ALLOWLIST_REJECTION_SCREEN"):a("Issue submitting phone number"),n(!1)})},b="Get started without a wallet.";return i?b=i:l?b="Easily connect a phone number":h||(b="Get started quickly with your phone"),(0,Oe.jsxs)(Oe.Fragment,{children:[(0,Oe.jsxs)(Ip,{stacked:e.stacked,children:[(0,Oe.jsxs)(Lp,{standalone:e.stacked,children:[(0,Oe.jsx)(Pn,{}),(0,Oe.jsx)("input",{id:"phone-number-input",type:"tel",placeholder:"555 555 5555",onChange:m=>{o(m.target.value)},onKeyUp:m=>{m.key==="Enter"&&C()},value:t,autoComplete:"tel"})]}),e.stacked?null:(0,Oe.jsx)(Np,{disabled:r||!u,onClick:C,children:r?(0,Oe.jsx)(ot,{}):"Submit"})]}),(0,Oe.jsx)(Mp,{fail:!!i,children:b}),e.stacked?(0,Oe.jsx)(re,{loading:r,loadingText:null,disabled:r||!u,onClick:C,children:"Submit"}):null]})},Ip=sr.default.div`
1305
1305
  display: flex;
1306
1306
  border: 1px solid var(--privy-color-foreground-4);
1307
1307
  width: 100%;
@@ -1396,12 +1396,12 @@ Resources:
1396
1396
  > a {
1397
1397
  text-decoration: underline;
1398
1398
  }
1399
- `;var Gi=E(require("styled-components"));var lr=require("react/jsx-runtime"),_n=({style:e,...t})=>(0,lr.jsxs)("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:[(0,lr.jsx)("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"}),(0,lr.jsx)("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"})]});var Kt=require("react/jsx-runtime"),An=({style:e,...t})=>(0,Kt.jsxs)("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:[(0,Kt.jsx)("g",{clipPath:"url(#clip0)",children:(0,Kt.jsx)("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"})}),(0,Kt.jsx)("defs",{children:(0,Kt.jsx)("clipPath",{id:"clip0",children:(0,Kt.jsx)("rect",{width:"71",height:"55",fill:"white"})})})]});var Bi=require("react/jsx-runtime"),Sn=({style:e,...t})=>(0,Bi.jsx)("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:(0,Bi.jsx)("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"})});var co=require("react/jsx-runtime"),kn=({style:e,...t})=>(0,co.jsxs)("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:[(0,co.jsx)("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"}),(0,co.jsx)("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"}),(0,co.jsx)("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"}),(0,co.jsx)("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"})]});var Fi=require("react/jsx-runtime"),Rn=({style:e,...t})=>(0,Fi.jsx)("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:(0,Fi.jsx)("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"})});var De=require("react/jsx-runtime"),wl=({showGoogle:e,showTwitter:t,showDiscord:o,showGithub:r,showApple:n})=>{let{initLoginWithOAuth:i}=W(),{app:a}=w(),l=a==null?void 0:a.appearance.palette.colorScheme;return(0,De.jsxs)(Op,{children:[e&&(0,De.jsx)(cr,{onClick:()=>{i("google")},children:(0,De.jsx)(kn,{})}),t&&(0,De.jsx)(cr,{onClick:()=>{i("twitter")},children:(0,De.jsx)(Rn,{})}),o&&(0,De.jsx)(cr,{onClick:()=>{i("discord")},children:(0,De.jsx)(An,{})}),r&&(0,De.jsx)(cr,{onClick:()=>{i("github")},children:(0,De.jsx)(Sn,{style:{color:l==="light"?"#000":"#fff"}})}),n&&(0,De.jsx)(cr,{onClick:()=>{i("apple")},children:(0,De.jsx)(_n,{style:{color:l==="light"?"#000":"#fff"}})})]})},Op=Gi.default.div`
1399
+ `;var Vi=E(require("styled-components"));var lr=require("react/jsx-runtime"),An=({style:e,...t})=>(0,lr.jsxs)("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:[(0,lr.jsx)("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"}),(0,lr.jsx)("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"})]});var Yt=require("react/jsx-runtime"),Sn=({style:e,...t})=>(0,Yt.jsxs)("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:[(0,Yt.jsx)("g",{clipPath:"url(#clip0)",children:(0,Yt.jsx)("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"})}),(0,Yt.jsx)("defs",{children:(0,Yt.jsx)("clipPath",{id:"clip0",children:(0,Yt.jsx)("rect",{width:"71",height:"55",fill:"white"})})})]});var Gi=require("react/jsx-runtime"),kn=({style:e,...t})=>(0,Gi.jsx)("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:(0,Gi.jsx)("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"})});var co=require("react/jsx-runtime"),Rn=({style:e,...t})=>(0,co.jsxs)("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:[(0,co.jsx)("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"}),(0,co.jsx)("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"}),(0,co.jsx)("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"}),(0,co.jsx)("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"})]});var Hi=require("react/jsx-runtime"),Wn=({style:e,...t})=>(0,Hi.jsx)("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:(0,Hi.jsx)("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"})});var De=require("react/jsx-runtime"),wl=({showGoogle:e,showTwitter:t,showDiscord:o,showGithub:r,showApple:n})=>{let{initLoginWithOAuth:i}=W(),{app:a}=w(),l=a==null?void 0:a.appearance.palette.colorScheme;return(0,De.jsxs)(Op,{children:[e&&(0,De.jsx)(cr,{onClick:()=>{i("google")},children:(0,De.jsx)(Rn,{})}),t&&(0,De.jsx)(cr,{onClick:()=>{i("twitter")},children:(0,De.jsx)(Wn,{})}),o&&(0,De.jsx)(cr,{onClick:()=>{i("discord")},children:(0,De.jsx)(Sn,{})}),r&&(0,De.jsx)(cr,{onClick:()=>{i("github")},children:(0,De.jsx)(kn,{style:{color:l==="light"?"#000":"#fff"}})}),n&&(0,De.jsx)(cr,{onClick:()=>{i("apple")},children:(0,De.jsx)(An,{style:{color:l==="light"?"#000":"#fff"}})})]})},Op=Vi.default.div`
1400
1400
  display: flex;
1401
1401
  justify-content: space-between;
1402
1402
  width: 100%;
1403
1403
  gap: 4px;
1404
- `,cr=Gi.default.div`
1404
+ `,cr=Vi.default.div`
1405
1405
  border-radius: var(--privy-border-radius-sm);
1406
1406
  cursor: pointer;
1407
1407
  height: 44px;
@@ -1415,7 +1415,7 @@ Resources:
1415
1415
  &:hover {
1416
1416
  background-color: var(--privy-color-background-2);
1417
1417
  }
1418
- `;var U=require("react/jsx-runtime");var El=()=>{let{app:e}=w(),t=(e==null?void 0:e.loginMethods.email)??!1,o=(e==null?void 0:e.loginMethods.sms)??!1,r=(e==null?void 0:e.loginMethods.wallet)??!1,n=(e==null?void 0:e.loginMethods.google)??!1,i=(e==null?void 0:e.loginMethods.twitter)??!1,a=(e==null?void 0:e.loginMethods.discord)??!1,l=(e==null?void 0:e.loginMethods.github)??!1,s=(e==null?void 0:e.loginMethods.apple)??!1,p=r&&(e==null?void 0:e.appearance.showWalletLoginFirst)?0:1,[f,h]=(0,xl.useState)(p),u=f==0,C=f==1,b=r,m=t||o,g=b!==m;return(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(_,{},"header"),e!=null&&e.appearance.logo?(0,U.jsx)(Gp,{hasOnlyOneSection:g,hasTerms:!!((e==null?void 0:e.legal.privacyPolicyUrl)||(e==null?void 0:e.legal.termsAndConditionsUrl)),children:(0,U.jsx)(an,{})}):null,(0,U.jsxs)(Hp,{reverse:!(e!=null&&e.appearance.showWalletLoginFirst),children:[b&&(0,U.jsx)(Dp,{active:u||g,connectOnly:!1,onClick:()=>h(0),isOnlySection:!m}),m&&(0,U.jsx)(Up,{active:C||g,onClick:()=>h(1),email:t,sms:o,google:n,twitter:i,discord:a,github:l,apple:s,isOnlySection:!b})]}),e&&(0,U.jsx)(on,{app:e}),(0,U.jsx)(B,{protectedByPrivy:!0})]})};function Dp(e){return(0,U.jsxs)(Pl,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,children:[(0,U.jsx)(Tl,{active:e.active,children:(0,U.jsx)("h4",{children:"Connect Wallet"})}),e.active&&(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(zt,{connectOnly:e.connectOnly}),(0,U.jsx)($t,{})]})]})}function Up(e){let t=e.google||e.discord||e.github||e.twitter&&!Hi.isMobile||e.apple,o=e.email?"Email":"Phone";return(0,U.jsxs)(Pl,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,children:[e.isOnlySection?null:(0,U.jsx)(Tl,{active:e.active,children:(0,U.jsx)("h4",{children:t?`${o} & Social`:o})}),e.active&&e.email&&(0,U.jsx)(En,{}),e.active&&e.sms&&!e.email&&(0,U.jsx)(Pn,{}),e.active&&t&&(0,U.jsx)(Bp,{google:e.google,twitter:e.twitter&&!Hi.isMobile,discord:e.discord,github:e.github,apple:e.apple})]})}function Bp(e){return(0,U.jsxs)(U.Fragment,{children:[(0,U.jsxs)(Fp,{children:[(0,U.jsx)(Cl,{}),(0,U.jsx)("p",{children:" Or "}),(0,U.jsx)(Cl,{})]}),(0,U.jsx)(wl,{showGoogle:e.google,showDiscord:e.discord,showGithub:e.github,showTwitter:e.twitter,showApple:e.apple})]})}var Tl=po.default.div`
1418
+ `;var U=require("react/jsx-runtime");var El=()=>{let{app:e}=w(),t=(e==null?void 0:e.loginMethods.email)??!1,o=(e==null?void 0:e.loginMethods.sms)??!1,r=(e==null?void 0:e.loginMethods.wallet)??!1,n=(e==null?void 0:e.loginMethods.google)??!1,i=(e==null?void 0:e.loginMethods.twitter)??!1,a=(e==null?void 0:e.loginMethods.discord)??!1,l=(e==null?void 0:e.loginMethods.github)??!1,s=(e==null?void 0:e.loginMethods.apple)??!1,p=r&&(e==null?void 0:e.appearance.showWalletLoginFirst)?0:1,[f,h]=(0,xl.useState)(p),u=f==0,C=f==1,b=r,m=t||o,g=b!==m;return(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(_,{},"header"),e!=null&&e.appearance.logo?(0,U.jsx)(Gp,{hasOnlyOneSection:g,hasTerms:!!((e==null?void 0:e.legal.privacyPolicyUrl)||(e==null?void 0:e.legal.termsAndConditionsUrl)),children:(0,U.jsx)(sn,{})}):null,(0,U.jsxs)(Hp,{reverse:!(e!=null&&e.appearance.showWalletLoginFirst),children:[b&&(0,U.jsx)(Dp,{active:u||g,connectOnly:!1,onClick:()=>h(0),isOnlySection:!m}),m&&(0,U.jsx)(Up,{active:C||g,onClick:()=>h(1),email:t,sms:o,google:n,twitter:i,discord:a,github:l,apple:s,isOnlySection:!b})]}),e&&(0,U.jsx)(rn,{app:e}),(0,U.jsx)(B,{protectedByPrivy:!0})]})};function Dp(e){return(0,U.jsxs)(Pl,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,children:[(0,U.jsx)(Tl,{active:e.active,children:(0,U.jsx)("h4",{children:"Connect Wallet"})}),e.active&&(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)($t,{connectOnly:e.connectOnly}),(0,U.jsx)(qt,{})]})]})}function Up(e){let t=e.google||e.discord||e.github||e.twitter&&!zi.isMobile||e.apple,o=e.email?"Email":"Phone";return(0,U.jsxs)(Pl,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,children:[e.isOnlySection?null:(0,U.jsx)(Tl,{active:e.active,children:(0,U.jsx)("h4",{children:t?`${o} & Social`:o})}),e.active&&e.email&&(0,U.jsx)(Tn,{}),e.active&&e.sms&&!e.email&&(0,U.jsx)(_n,{}),e.active&&t&&(0,U.jsx)(Bp,{google:e.google,twitter:e.twitter&&!zi.isMobile,discord:e.discord,github:e.github,apple:e.apple})]})}function Bp(e){return(0,U.jsxs)(U.Fragment,{children:[(0,U.jsxs)(Fp,{children:[(0,U.jsx)(Cl,{}),(0,U.jsx)("p",{children:" Or "}),(0,U.jsx)(Cl,{})]}),(0,U.jsx)(wl,{showGoogle:e.google,showDiscord:e.discord,showGithub:e.github,showTwitter:e.twitter,showApple:e.apple})]})}var Tl=po.default.div`
1419
1419
  font-weight: ${e=>e.active?600:500};
1420
1420
  color: ${e=>e.active?"var(--privy-color-foreground)":"var(--privy-color-foreground-2)"};
1421
1421
  display: flex;
@@ -1474,7 +1474,7 @@ Resources:
1474
1474
  }
1475
1475
  `,Hp=(0,po.default)(Ce)`
1476
1476
  flex-direction: ${e=>e.reverse?"column-reverse":"column"};
1477
- `;var st=require("react/jsx-runtime"),_l=()=>{let{app:e}=w();return(0,st.jsxs)(st.Fragment,{children:[(0,st.jsx)(_,{},"header"),(0,st.jsx)(Ht,{title:"Connect your email",description:`Add your email to your ${e==null?void 0:e.name} account`,icon:(0,st.jsx)(xn,{})}),(0,st.jsx)(Ce,{children:(0,st.jsx)(En,{stacked:!0})}),(0,st.jsx)(B,{protectedByPrivy:!0})]})};var lt=require("react/jsx-runtime"),Al=()=>{let{app:e}=w();return(0,lt.jsxs)(lt.Fragment,{children:[(0,lt.jsx)(_,{},"header"),(0,lt.jsx)(Ht,{title:"Connect your phone",description:`Add your number to your ${e==null?void 0:e.name} account`,icon:(0,lt.jsx)(Tn,{})}),(0,lt.jsx)(Ce,{children:(0,lt.jsx)(Pn,{stacked:!0})}),(0,lt.jsx)(B,{protectedByPrivy:!0})]})};var ct=require("react/jsx-runtime"),Sl=()=>{let{linkingHint:e}=W(),{app:t}=w(),o=e?`Select the wallet with ${Dt(e)} and follow the instructions to reconnect your wallet${t!=null&&t.name?` to ${t.name}.`:"."}`:`Link a wallet to your ${t==null?void 0:t.name} account`;return(0,ct.jsxs)(ct.Fragment,{children:[(0,ct.jsx)(_,{},"header"),(0,ct.jsx)(ht,{title:`${e?"Reconnect":"Connect"} your wallet`,description:o}),(0,ct.jsxs)(Ce,{children:[(0,ct.jsx)(zt,{connectOnly:!1}),(0,ct.jsx)($t,{})]}),(0,ct.jsx)(B,{protectedByPrivy:!0})]})};var dr=require("react/jsx-runtime"),kl=({style:e,...t})=>(0,dr.jsxs)("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:[(0,dr.jsx)("circle",{cx:"82",cy:"82",r:"80",stroke:"#EC6351","stroke-width":"4","stroke-linecap":"round"}),(0,dr.jsx)("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"})]});var Ye=require("react/jsx-runtime"),Rl=()=>{let{closePrivyModal:e}=W(),{navigate:t}=w();return(0,Ye.jsxs)(Ye.Fragment,{children:[(0,Ye.jsx)(_,{},"header"),(0,Ye.jsx)(kl,{style:{width:"160px",height:"160px",margin:"0 auto 20px"}}),(0,Ye.jsx)(ht,{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"}}),(0,Ye.jsxs)(Ce,{children:[(0,Ye.jsx)(re,{onClick:()=>t("LANDING"),children:"Try again"}),(0,Ye.jsx)(hs,{onClick:()=>e(),children:"Cancel"})]}),(0,Ye.jsx)(B,{protectedByPrivy:!0})]})};var Ho=require("react"),Wn=E(require("styled-components"));var Se=require("react/jsx-runtime"),Wl={google:{name:"Google",component:kn},discord:{name:"Discord",component:An},github:{name:"Github",component:Sn},twitter:{name:"Twitter",component:Rn},apple:{name:"Apple",component:_n}},Vp=e=>e.charAt(0).toUpperCase()+e.slice(1),Vi=()=>{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)},Il=()=>{var R;let{ready:e,user:t,authenticated:o}=F(),{app:r,data:n,setModalData:i,navigate:a}=w(),{getAuthMeta:l,initLoginWithOAuth:s,loginWithOAuth:p,closePrivyModal:f}=W(),[h,u]=(0,Ho.useState)(!1),[C,b]=(0,Ho.useState)(void 0),m=((R=l())==null?void 0:R.provider)||"google",g=Wl[m].name,L=Wl[m].component,S=r!=null&&r.render.inDialog?ut:0;(0,Ho.useEffect)(()=>{!e||p().then(()=>{Vi(),u(!0)}).catch(O=>{let I={retryable:!1,message:"Authentication failed."};O.message.includes("Another user has already linked this")?I.detail="This account has already been linked to another user.":O.message==="Invalid code during oauth flow."?(I.retryable=!0,I.detail="Something went wrong. Try again."):O.message==="User denied confirmation during OAuth flow"&&(I.detail=`Retry and check ${Vp(m)} to finish connecting your account.`,I.retryable=!0),Vi(),b(I)})},[e]),(0,Ho.useEffect)(()=>{var Ee;if(!(o&&h&&t))return;if(((Ee=n==null?void 0:n.login)==null?void 0:Ee.promptCreatePrivyWalletFlow)&&!t.wallet){let Q=setTimeout(()=>{i({createWallet:{onSuccess:()=>{},onFailure:ge=>console.error(ge),callAuthOnSuccessOnClose:!0}}),console.log("Navigating to wallet creation flow"),a("EMBEDDED_WALLET_SCREEN")},S);return()=>clearTimeout(Q)}else{let Q=setTimeout(f,S);return()=>clearTimeout(Q)}},[o,h,t]);let k=h?`Successfully connected with ${g}`:C?C.message:`Verifying connection to ${g}`,M="";return h?M="You\u2019re good to go!":C?M=C.detail:M="Just a few moments more",(0,Se.jsxs)(Se.Fragment,{children:[(0,Se.jsx)(_,{}),(0,Se.jsxs)(zp,{children:[(0,Se.jsx)(qp,{children:(0,Se.jsxs)("div",{children:[(0,Se.jsx)(Qr,{success:h,fail:!!C}),(0,Se.jsx)(L,{style:{width:"38px",height:"38px"}})]})}),(0,Se.jsxs)($p,{children:[(0,Se.jsx)("h3",{children:k}),(0,Se.jsx)("p",{children:M})]}),(0,Se.jsx)(he,{onClick:()=>{Vi(),s(m),b(void 0)},invisible:h||!(C!=null&&C.retryable),disabled:!h&&!(C!=null&&C.retryable),children:"Retry"})]})]})},zp=Wn.default.div`
1477
+ `;var st=require("react/jsx-runtime"),_l=()=>{let{app:e}=w();return(0,st.jsxs)(st.Fragment,{children:[(0,st.jsx)(_,{},"header"),(0,st.jsx)(Vt,{title:"Connect your email",description:`Add your email to your ${e==null?void 0:e.name} account`,icon:(0,st.jsx)(En,{})}),(0,st.jsx)(Ce,{children:(0,st.jsx)(Tn,{stacked:!0})}),(0,st.jsx)(B,{protectedByPrivy:!0})]})};var lt=require("react/jsx-runtime"),Al=()=>{let{app:e}=w();return(0,lt.jsxs)(lt.Fragment,{children:[(0,lt.jsx)(_,{},"header"),(0,lt.jsx)(Vt,{title:"Connect your phone",description:`Add your number to your ${e==null?void 0:e.name} account`,icon:(0,lt.jsx)(Pn,{})}),(0,lt.jsx)(Ce,{children:(0,lt.jsx)(_n,{stacked:!0})}),(0,lt.jsx)(B,{protectedByPrivy:!0})]})};var ct=require("react/jsx-runtime"),Sl=()=>{let{linkingHint:e}=W(),{app:t}=w(),o=e?`Select the wallet with ${Dt(e)} and follow the instructions to reconnect your wallet${t!=null&&t.name?` to ${t.name}.`:"."}`:`Link a wallet to your ${t==null?void 0:t.name} account`;return(0,ct.jsxs)(ct.Fragment,{children:[(0,ct.jsx)(_,{},"header"),(0,ct.jsx)(ht,{title:`${e?"Reconnect":"Connect"} your wallet`,description:o}),(0,ct.jsxs)(Ce,{children:[(0,ct.jsx)($t,{connectOnly:!1}),(0,ct.jsx)(qt,{})]}),(0,ct.jsx)(B,{protectedByPrivy:!0})]})};var dr=require("react/jsx-runtime"),kl=({style:e,...t})=>(0,dr.jsxs)("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:[(0,dr.jsx)("circle",{cx:"82",cy:"82",r:"80",stroke:"#EC6351","stroke-width":"4","stroke-linecap":"round"}),(0,dr.jsx)("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"})]});var Ye=require("react/jsx-runtime"),Rl=()=>{let{closePrivyModal:e}=W(),{navigate:t}=w();return(0,Ye.jsxs)(Ye.Fragment,{children:[(0,Ye.jsx)(_,{},"header"),(0,Ye.jsx)(kl,{style:{width:"160px",height:"160px",margin:"0 auto 20px"}}),(0,Ye.jsx)(ht,{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"}}),(0,Ye.jsxs)(Ce,{children:[(0,Ye.jsx)(re,{onClick:()=>t("LANDING"),children:"Try again"}),(0,Ye.jsx)(hs,{onClick:()=>e(),children:"Cancel"})]}),(0,Ye.jsx)(B,{protectedByPrivy:!0})]})};var Ho=require("react"),In=E(require("styled-components"));var Se=require("react/jsx-runtime"),Wl={google:{name:"Google",component:Rn},discord:{name:"Discord",component:Sn},github:{name:"Github",component:kn},twitter:{name:"Twitter",component:Wn},apple:{name:"Apple",component:An}},Vp=e=>e.charAt(0).toUpperCase()+e.slice(1),$i=()=>{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)},Il=()=>{var R;let{ready:e,user:t,authenticated:o}=F(),{app:r,data:n,setModalData:i,navigate:a}=w(),{getAuthMeta:l,initLoginWithOAuth:s,loginWithOAuth:p,closePrivyModal:f}=W(),[h,u]=(0,Ho.useState)(!1),[C,b]=(0,Ho.useState)(void 0),m=((R=l())==null?void 0:R.provider)||"google",g=Wl[m].name,L=Wl[m].component,S=r!=null&&r.render.inDialog?ut:0;(0,Ho.useEffect)(()=>{!e||p().then(()=>{$i(),u(!0)}).catch(O=>{let I={retryable:!1,message:"Authentication failed."};O.message.includes("Another user has already linked this")?I.detail="This account has already been linked to another user.":O.message==="Invalid code during oauth flow."?(I.retryable=!0,I.detail="Something went wrong. Try again."):O.message==="User denied confirmation during OAuth flow"&&(I.detail=`Retry and check ${Vp(m)} to finish connecting your account.`,I.retryable=!0),$i(),b(I)})},[e]),(0,Ho.useEffect)(()=>{var Ee;if(!(o&&h&&t))return;if(((Ee=n==null?void 0:n.login)==null?void 0:Ee.promptCreatePrivyWalletFlow)&&!t.wallet){let Q=setTimeout(()=>{i({createWallet:{onSuccess:()=>{},onFailure:ge=>console.error(ge),callAuthOnSuccessOnClose:!0}}),console.log("Navigating to wallet creation flow"),a("EMBEDDED_WALLET_SCREEN")},S);return()=>clearTimeout(Q)}else{let Q=setTimeout(f,S);return()=>clearTimeout(Q)}},[o,h,t]);let k=h?`Successfully connected with ${g}`:C?C.message:`Verifying connection to ${g}`,M="";return h?M="You\u2019re good to go!":C?M=C.detail:M="Just a few moments more",(0,Se.jsxs)(Se.Fragment,{children:[(0,Se.jsx)(_,{}),(0,Se.jsxs)(zp,{children:[(0,Se.jsx)(qp,{children:(0,Se.jsxs)("div",{children:[(0,Se.jsx)(Jr,{success:h,fail:!!C}),(0,Se.jsx)(L,{style:{width:"38px",height:"38px"}})]})}),(0,Se.jsxs)($p,{children:[(0,Se.jsx)("h3",{children:k}),(0,Se.jsx)("p",{children:M})]}),(0,Se.jsx)(he,{onClick:()=>{$i(),s(m),b(void 0)},invisible:h||!(C!=null&&C.retryable),disabled:!h&&!(C!=null&&C.retryable),children:"Retry"})]})]})},zp=In.default.div`
1478
1478
  display: flex;
1479
1479
  flex-direction: column;
1480
1480
  align-items: center;
@@ -1482,11 +1482,11 @@ Resources:
1482
1482
  margin-left: 27px;
1483
1483
  margin-right: 27px;
1484
1484
  gap: 24px;
1485
- `,$p=Wn.default.div`
1485
+ `,$p=In.default.div`
1486
1486
  display: flex;
1487
1487
  flex-direction: column;
1488
1488
  gap: 8px;
1489
- `,qp=Wn.default.div`
1489
+ `,qp=In.default.div`
1490
1490
  display: flex;
1491
1491
  flex-direction: column;
1492
1492
  justify-content: center;
@@ -1509,9 +1509,9 @@ Resources:
1509
1509
  left: -19px;
1510
1510
  top: -19px;
1511
1511
  }
1512
- `;var pr=require("react"),Ml=E(require("styled-components"));var Nl=require("react-device-detect");var Ll=(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(!Xe()&&Nl.isMobile)return`${t?"phantom://":"https://phantom.app/ul/"}browse/${r}?ref=${r}`};var Ue=require("react/jsx-runtime"),Ol=()=>{let{forkSession:e,ready:t,authenticated:o}=F(),[r,n]=(0,pr.useState)(""),[i,a]=(0,pr.useState)(!1);(0,pr.useEffect)(()=>{t&&o&&e().then(n)},[t,o]);let l=Ll(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."),(0,Ue.jsxs)(Ue.Fragment,{children:[(0,Ue.jsx)(_,{},"header"),(0,Ue.jsx)(ht,{title:s.title,description:s.description}),(0,Ue.jsxs)(Ce,{children:[(0,Ue.jsx)(jp,{children:(0,Ue.jsx)(mt,{style:{width:"72px",height:"72px"}})}),(0,Ue.jsx)(Jr,{href:l,onClick:()=>{setTimeout(()=>a(!0),1e3)},loading:t&&!l,children:i?"Go to App Store":"Continue"}),s.footnote?(0,Ue.jsx)("p",{children:s.footnote}):null]}),(0,Ue.jsx)(B,{protectedByPrivy:!0})]})},jp=(0,Ml.default)(ko)`
1512
+ `;var pr=require("react"),Ml=E(require("styled-components"));var Nl=require("react-device-detect");var Ll=(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(!Xe()&&Nl.isMobile)return`${t?"phantom://":"https://phantom.app/ul/"}browse/${r}?ref=${r}`};var Ue=require("react/jsx-runtime"),Ol=()=>{let{forkSession:e,ready:t,authenticated:o}=F(),[r,n]=(0,pr.useState)(""),[i,a]=(0,pr.useState)(!1);(0,pr.useEffect)(()=>{t&&o&&e().then(n)},[t,o]);let l=Ll(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."),(0,Ue.jsxs)(Ue.Fragment,{children:[(0,Ue.jsx)(_,{},"header"),(0,Ue.jsx)(ht,{title:s.title,description:s.description}),(0,Ue.jsxs)(Ce,{children:[(0,Ue.jsx)(jp,{children:(0,Ue.jsx)(mt,{style:{width:"72px",height:"72px"}})}),(0,Ue.jsx)(Xr,{href:l,onClick:()=>{setTimeout(()=>a(!0),1e3)},loading:t&&!l,children:i?"Go to App Store":"Continue"}),s.footnote?(0,Ue.jsx)("p",{children:s.footnote}):null]}),(0,Ue.jsx)(B,{protectedByPrivy:!0})]})},jp=(0,Ml.default)(ko)`
1513
1513
  margin: 16px auto;
1514
- `;var Lt=require("react"),fo=E(require("styled-components"));var Ki=E(require("styled-components"));var zi=E(require("styled-components")),ur=require("react/jsx-runtime"),mr=({label:e,children:t,valueStyles:o})=>(0,ur.jsxs)(Kp,{children:[(0,ur.jsx)("div",{children:e}),(0,ur.jsx)(Yp,{style:{...o},children:t})]}),Kp=zi.default.div`
1514
+ `;var Lt=require("react"),fo=E(require("styled-components"));var Zi=E(require("styled-components"));var qi=E(require("styled-components")),ur=require("react/jsx-runtime"),mr=({label:e,children:t,valueStyles:o})=>(0,ur.jsxs)(Kp,{children:[(0,ur.jsx)("div",{children:e}),(0,ur.jsx)(Yp,{style:{...o},children:t})]}),Kp=qi.default.div`
1515
1515
  display: flex;
1516
1516
  align-items: center;
1517
1517
  justify-content: space-between;
@@ -1526,14 +1526,14 @@ Resources:
1526
1526
  color: var(--privy-color-foreground-2);
1527
1527
  text-align: right;
1528
1528
  }
1529
- `,Yp=zi.default.div`
1529
+ `,Yp=qi.default.div`
1530
1530
  display: flex;
1531
1531
  align-items: center;
1532
1532
  justify-content: center;
1533
1533
  border-radius: var(--privy-border-radius-md);
1534
1534
  background-color: var(--privy-color-background-2);
1535
1535
  padding: 4px 8px;
1536
- `;var Gl=require("@ethersproject/bignumber");var Dl=require("@ethersproject/bignumber"),Ul=require("@ethersproject/bytes"),Bl=require("@ethersproject/providers"),$i=require("@ethersproject/units"),In=(e,t)=>(t*parseFloat((0,$i.formatEther)(e))).toFixed(2),uo=(e,t=8)=>parseFloat((0,$i.formatEther)(e)).toFixed(t).replace(/0+$/,"").replace(/\.$/,""),Fl=(e,t)=>{(0,Ul.isHexString)(e)&&(e=Number(e));let o=(0,Bl.getNetwork)(e);return`https://${o.name==="homestead"?"www":o.name}.etherscan.io/address/${t}`},Be=e=>Dl.BigNumber.from(e);var Nn=require("react/jsx-runtime"),hr=({weiQuantities:e,tokenPrice:t})=>{let o=e.map(Be).reduce((n,i)=>n.add(i),Gl.BigNumber.from(0)),r=In(o.toHexString(),t);return(0,Nn.jsx)(Nn.Fragment,{children:r==="0.00"?"< USD $0.01":`USD $${r}`})};var mo=E(require("styled-components"));var ue=require("react/jsx-runtime"),ql=({transactionData:e,displayFee:t=!1,gas:o,tokenPrice:r,isLoading:n=!1})=>(0,ue.jsxs)(Zp,{children:[(0,ue.jsx)(Qp,{"data-open":t,children:(0,ue.jsxs)(Hl,{children:[(0,ue.jsxs)(Vl,{children:[(0,ue.jsx)($l,{children:"Est. Fees"}),(0,ue.jsx)("div",{children:n?(0,ue.jsx)(ot,{color:"var(--privy-color-accent)"}):(0,ue.jsx)(hr,{weiQuantities:[o],tokenPrice:r})})]}),(0,ue.jsx)(zl,{children:`ETH ${uo(Be(o).toHexString())}`})]})}),(0,ue.jsxs)(Hl,{children:[(0,ue.jsxs)(Vl,{children:[(0,ue.jsx)($l,{children:"Total (including fees)"}),(0,ue.jsx)("div",{children:n||!e.value?(0,ue.jsx)(ot,{color:"var(--privy-color-accent)"}):(0,ue.jsx)(hr,{weiQuantities:[e.value,o],tokenPrice:r})})]}),(0,ue.jsx)(zl,{children:e.value?`ETH ${uo(Be(e.value).add(Be(o)).toHexString())}`:null})]})]}),Zp=mo.default.div`
1536
+ `;var Gl=require("@ethersproject/bignumber");var Dl=require("@ethersproject/bignumber"),Ul=require("@ethersproject/bytes"),Bl=require("@ethersproject/providers"),ji=require("@ethersproject/units"),Nn=(e,t)=>(t*parseFloat((0,ji.formatEther)(e))).toFixed(2),uo=(e,t=8)=>parseFloat((0,ji.formatEther)(e)).toFixed(t).replace(/0+$/,"").replace(/\.$/,""),Fl=(e,t)=>{(0,Ul.isHexString)(e)&&(e=Number(e));let o=(0,Bl.getNetwork)(e);return`https://${o.name==="homestead"?"www":o.name}.etherscan.io/address/${t}`},Be=e=>Dl.BigNumber.from(e);var Ln=require("react/jsx-runtime"),hr=({weiQuantities:e,tokenPrice:t})=>{let o=e.map(Be).reduce((n,i)=>n.add(i),Gl.BigNumber.from(0)),r=Nn(o.toHexString(),t);return(0,Ln.jsx)(Ln.Fragment,{children:r==="0.00"?"< USD $0.01":`USD $${r}`})};var mo=E(require("styled-components"));var ue=require("react/jsx-runtime"),ql=({transactionData:e,displayFee:t=!1,gas:o,tokenPrice:r,isLoading:n=!1})=>(0,ue.jsxs)(Zp,{children:[(0,ue.jsx)(Qp,{"data-open":t,children:(0,ue.jsxs)(Hl,{children:[(0,ue.jsxs)(Vl,{children:[(0,ue.jsx)($l,{children:"Est. Fees"}),(0,ue.jsx)("div",{children:n?(0,ue.jsx)(ot,{color:"var(--privy-color-accent)"}):(0,ue.jsx)(hr,{weiQuantities:[o],tokenPrice:r})})]}),(0,ue.jsx)(zl,{children:`ETH ${uo(Be(o).toHexString())}`})]})}),(0,ue.jsxs)(Hl,{children:[(0,ue.jsxs)(Vl,{children:[(0,ue.jsx)($l,{children:"Total (including fees)"}),(0,ue.jsx)("div",{children:n||!e.value?(0,ue.jsx)(ot,{color:"var(--privy-color-accent)"}):(0,ue.jsx)(hr,{weiQuantities:[e.value,o],tokenPrice:r})})]}),(0,ue.jsx)(zl,{children:e.value?`ETH ${uo(Be(e.value).add(Be(o)).toHexString())}`:null})]})]}),Zp=mo.default.div`
1537
1537
  display: flex;
1538
1538
  flex-direction: column;
1539
1539
  gap: 4px;
@@ -1571,12 +1571,12 @@ Resources:
1571
1571
  &[data-open='false'] {
1572
1572
  max-height: 0;
1573
1573
  }
1574
- `;var Ct=require("react"),Yt=E(require("styled-components"));var qi=require("react/jsx-runtime"),jl=({style:e,...t})=>(0,qi.jsx)("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:(0,qi.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M19.5 8.25l-7.5 7.5-7.5-7.5"})});var Ln=require("react"),Vo=(0,Ln.createContext)(void 0);var fr=(0,Ln.createContext)(void 0);var Fe=require("react/jsx-runtime"),Kl=({defaultValue:e,children:t})=>{let[o,r]=(0,Ct.useState)(e||null),n=i=>{r(o===i?null:i)};return(0,Fe.jsx)(Vo.Provider,{value:{activePanel:o,togglePanel:n},children:(0,Fe.jsx)(Jp,{children:t})})},Yl=({value:e,children:t})=>{let{activePanel:o,togglePanel:r}=(0,Ct.useContext)(Vo),n=o===e;return(0,Fe.jsx)(fr.Provider,{value:{onToggle:()=>r(e),value:e},children:(0,Fe.jsx)(tu,{isActive:n,"data-open":n,children:t})})},Zl=({children:e})=>{let{activePanel:t}=(0,Ct.useContext)(Vo),{onToggle:o,value:r}=(0,Ct.useContext)(fr),n=t===r;return(0,Fe.jsxs)(Xp,{onClick:o,"data-open":n,children:[(0,Fe.jsx)(eu,{children:e}),(0,Fe.jsx)(ru,{isactive:n,children:(0,Fe.jsx)(jl,{})})]})},Ql=({children:e})=>{let{activePanel:t}=(0,Ct.useContext)(Vo),{value:o}=(0,Ct.useContext)(fr);return(0,Fe.jsx)(ou,{"data-open":t===o,children:(0,Fe.jsx)(Xl,{children:e})})},Jl=({children:e})=>{let{activePanel:t}=(0,Ct.useContext)(Vo),{value:o}=(0,Ct.useContext)(fr);return(0,Fe.jsx)(Xl,{children:typeof e=="function"?e({isActive:t===o}):e})},Jp=Yt.default.div`
1574
+ `;var Ct=require("react"),Zt=E(require("styled-components"));var Ki=require("react/jsx-runtime"),jl=({style:e,...t})=>(0,Ki.jsx)("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:(0,Ki.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M19.5 8.25l-7.5 7.5-7.5-7.5"})});var Mn=require("react"),Vo=(0,Mn.createContext)(void 0);var fr=(0,Mn.createContext)(void 0);var Fe=require("react/jsx-runtime"),Kl=({defaultValue:e,children:t})=>{let[o,r]=(0,Ct.useState)(e||null),n=i=>{r(o===i?null:i)};return(0,Fe.jsx)(Vo.Provider,{value:{activePanel:o,togglePanel:n},children:(0,Fe.jsx)(Jp,{children:t})})},Yl=({value:e,children:t})=>{let{activePanel:o,togglePanel:r}=(0,Ct.useContext)(Vo),n=o===e;return(0,Fe.jsx)(fr.Provider,{value:{onToggle:()=>r(e),value:e},children:(0,Fe.jsx)(tu,{isActive:n,"data-open":n,children:t})})},Zl=({children:e})=>{let{activePanel:t}=(0,Ct.useContext)(Vo),{onToggle:o,value:r}=(0,Ct.useContext)(fr),n=t===r;return(0,Fe.jsxs)(Xp,{onClick:o,"data-open":n,children:[(0,Fe.jsx)(eu,{children:e}),(0,Fe.jsx)(ru,{isactive:n,children:(0,Fe.jsx)(jl,{})})]})},Ql=({children:e})=>{let{activePanel:t}=(0,Ct.useContext)(Vo),{value:o}=(0,Ct.useContext)(fr);return(0,Fe.jsx)(ou,{"data-open":t===o,children:(0,Fe.jsx)(Xl,{children:e})})},Jl=({children:e})=>{let{activePanel:t}=(0,Ct.useContext)(Vo),{value:o}=(0,Ct.useContext)(fr);return(0,Fe.jsx)(Xl,{children:typeof e=="function"?e({isActive:t===o}):e})},Jp=Zt.default.div`
1575
1575
  display: flex;
1576
1576
  flex-direction: column;
1577
1577
  width: 100%;
1578
1578
  gap: 8px;
1579
- `,Xp=Yt.default.div`
1579
+ `,Xp=Zt.default.div`
1580
1580
  display: flex;
1581
1581
  justify-content: space-between;
1582
1582
  align-items: center;
@@ -1588,13 +1588,13 @@ Resources:
1588
1588
  border-bottom: 1px solid;
1589
1589
  border-color: var(--privy-color-foreground-4);
1590
1590
  }
1591
- `,eu=Yt.default.div`
1591
+ `,eu=Zt.default.div`
1592
1592
  font-size: 14px;
1593
1593
  font-weight: 500;
1594
1594
  line-height: 19.6px;
1595
1595
  width: 100%;
1596
1596
  padding-right: 8px;
1597
- `,tu=Yt.default.div`
1597
+ `,tu=Zt.default.div`
1598
1598
  display: flex;
1599
1599
  flex-direction: column;
1600
1600
  width: 100%;
@@ -1606,7 +1606,7 @@ Resources:
1606
1606
  border-color: var(--privy-color-foreground-4);
1607
1607
  border-radius: var(--privy-border-radius-md);
1608
1608
  }
1609
- `,ou=Yt.default.div`
1609
+ `,ou=Zt.default.div`
1610
1610
  position: relative;
1611
1611
  overflow: hidden;
1612
1612
  transition: max-height 0.35s ease-in-out;
@@ -1618,27 +1618,27 @@ Resources:
1618
1618
  &[data-open='false'] {
1619
1619
  max-height: 0;
1620
1620
  }
1621
- `,Xl=Yt.default.div`
1621
+ `,Xl=Zt.default.div`
1622
1622
  display: flex;
1623
1623
  flex-direction: column;
1624
1624
  gap: 12px;
1625
1625
  flex: 1 1 auto;
1626
1626
  min-height: 1px;
1627
1627
  padding-top: 8px;
1628
- `,ru=Yt.default.div`
1628
+ `,ru=Zt.default.div`
1629
1629
  transform: ${e=>e.isactive?"rotate(180deg)":"rotate(0deg)"};
1630
- `;var ec=E(require("styled-components"));var tc=require("react/jsx-runtime"),ji=({walletAddress:e,chainId:t=Ve})=>(0,tc.jsx)(nu,{href:Fl(t,e),target:"_blank",children:Dt(e)}),nu=ec.default.a`
1630
+ `;var ec=E(require("styled-components"));var tc=require("react/jsx-runtime"),Yi=({walletAddress:e,chainId:t=Ve})=>(0,tc.jsx)(nu,{href:Fl(t,e),target:"_blank",children:Dt(e)}),nu=ec.default.a`
1631
1631
  &:hover {
1632
1632
  text-decoration: underline;
1633
1633
  }
1634
- `;var te=require("react/jsx-runtime"),Mn=e=>{var o,r,n;let t=!!((o=e.txn)!=null&&o.value);return(0,te.jsx)(Kl,{children:(0,te.jsxs)(Yl,{value:"details",children:[(0,te.jsx)(Zl,{children:(0,te.jsxs)(iu,{children:[(0,te.jsx)("div",{children:((r=e.transactionInfo)==null?void 0:r.actionDescription)||"Details"}),((n=e.txn)==null?void 0:n.value)&&e.tokenPrice?(0,te.jsx)(au,{children:(0,te.jsx)(hr,{weiQuantities:[e.txn.value],tokenPrice:e.tokenPrice})}):null]})}),(0,te.jsxs)(Ql,{children:[(0,te.jsx)(mr,{label:"From",children:(0,te.jsx)(ji,{walletAddress:e.from,chainId:e.txn.chainId||Ve})}),(0,te.jsx)(mr,{label:"To",children:(0,te.jsx)(ji,{walletAddress:e.to,chainId:e.txn.chainId||Ve})}),t&&e.transactionInfo&&e.transactionInfo.action&&(0,te.jsx)(mr,{label:"Action",children:e.transactionInfo.action})]}),(0,te.jsx)(Jl,{children:({isActive:i})=>t?(0,te.jsx)(ql,{transactionData:e.txn,displayFee:i,gas:e.gas,tokenPrice:e.tokenPrice}):(0,te.jsx)(te.Fragment,{children:e.transactionInfo&&e.transactionInfo.action&&(0,te.jsx)(mr,{label:"Action",children:e.transactionInfo.action})})})]})})},iu=Ki.default.div`
1634
+ `;var te=require("react/jsx-runtime"),On=e=>{var o,r,n;let t=!!((o=e.txn)!=null&&o.value);return(0,te.jsx)(Kl,{children:(0,te.jsxs)(Yl,{value:"details",children:[(0,te.jsx)(Zl,{children:(0,te.jsxs)(iu,{children:[(0,te.jsx)("div",{children:((r=e.transactionInfo)==null?void 0:r.actionDescription)||"Details"}),((n=e.txn)==null?void 0:n.value)&&e.tokenPrice?(0,te.jsx)(au,{children:(0,te.jsx)(hr,{weiQuantities:[e.txn.value],tokenPrice:e.tokenPrice})}):null]})}),(0,te.jsxs)(Ql,{children:[(0,te.jsx)(mr,{label:"From",children:(0,te.jsx)(Yi,{walletAddress:e.from,chainId:e.txn.chainId||Ve})}),(0,te.jsx)(mr,{label:"To",children:(0,te.jsx)(Yi,{walletAddress:e.to,chainId:e.txn.chainId||Ve})}),t&&e.transactionInfo&&e.transactionInfo.action&&(0,te.jsx)(mr,{label:"Action",children:e.transactionInfo.action})]}),(0,te.jsx)(Jl,{children:({isActive:i})=>t?(0,te.jsx)(ql,{transactionData:e.txn,displayFee:i,gas:e.gas,tokenPrice:e.tokenPrice}):(0,te.jsx)(te.Fragment,{children:e.transactionInfo&&e.transactionInfo.action&&(0,te.jsx)(mr,{label:"Action",children:e.transactionInfo.action})})})]})})},iu=Zi.default.div`
1635
1635
  display: flex;
1636
1636
  flex-direction: row;
1637
1637
  justify-content: space-between;
1638
- `,au=Ki.default.div`
1638
+ `,au=Zi.default.div`
1639
1639
  flex-shrink: 0;
1640
1640
  padding-left: 8px;
1641
- `;var zo=E(require("styled-components")),Zt=require("react/jsx-runtime"),oc=({partyInfo:e})=>(0,Zt.jsxs)(su,{children:[e.imgUrl&&(0,Zt.jsx)(lu,{size:e.imgSize||"sm",src:e.imgUrl,alt:e.imgAltText||`${e.name} image`}),(0,Zt.jsx)(cu,{children:(0,Zt.jsx)("a",{href:e.url,target:"_blank",rel:"noopener noreferrer",children:e.url.replace(/^(https?:\/\/)(www\.)?/,"")})}),(0,Zt.jsx)(du,{children:e.name}),(0,Zt.jsx)(pu,{children:e.actionText})]}),su=zo.default.div`
1641
+ `;var zo=E(require("styled-components")),Qt=require("react/jsx-runtime"),oc=({partyInfo:e})=>(0,Qt.jsxs)(su,{children:[e.imgUrl&&(0,Qt.jsx)(lu,{size:e.imgSize||"sm",src:e.imgUrl,alt:e.imgAltText||`${e.name} image`}),(0,Qt.jsx)(cu,{children:(0,Qt.jsx)("a",{href:e.url,target:"_blank",rel:"noopener noreferrer",children:e.url.replace(/^(https?:\/\/)(www\.)?/,"")})}),(0,Qt.jsx)(du,{children:e.name}),(0,Qt.jsx)(pu,{children:e.actionText})]}),su=zo.default.div`
1642
1642
  display: flex;
1643
1643
  flex-direction: column;
1644
1644
  align-items: center;
@@ -1677,7 +1677,7 @@ Resources:
1677
1677
  white-space: nowrap;
1678
1678
  max-width: 275px;
1679
1679
  text-overflow: ellipsis;
1680
- `;var gr=require("react"),On=E(require("styled-components"));var yr=require("@ethersproject/providers");async function rc(e,t,o,r){return r=Object.assign({chainId:Ve},r),r.chainId=Number(r.chainId),sc(r),(await o.rpc({address:t,accessToken:e,request:{method:"eth_populateTransactionRequest",params:[r]}})).response.data}async function nc(e,t,o,r){r=Object.assign({chainId:Ve},r),sc(r);let i=(await o.rpc({address:t,accessToken:e,request:{method:"eth_signTransaction",params:[r]}})).response.data,l=await(await uu(r.chainId,i)).wait();return fu(l)}function uu(e,t){return new yr.InfuraProvider(e,Je).sendTransaction(t)}async function ic(e,t=Ve){return await new yr.InfuraProvider(t,Je).getBalance(e)}async function ac(e){return delete e.from,await new yr.InfuraProvider(Number(e.chainId)||Ve,Je).estimateGas(e)}function sc(e){let t=["gasLimit","gasPrice","value","maxPriorityFeePerGas","maxFeePerGas"];for(let o of t){let r=e[o];if(!(typeof r>"u")&&!mu(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 mu(e){let t=typeof e=="number",o=typeof e=="bigint",r=typeof e=="string"&&hu(e);return t||o||r}function hu(e){return/^-?0x[a-f0-9]+$/i.test(e)}function fu(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.toHexString()}}var Yi=require("react/jsx-runtime"),lc=({style:e,...t})=>(0,Yi.jsx)("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:(0,Yi.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M21 12a2.25 2.25 0 00-2.25-2.25H15a3 3 0 11-6 0H5.25A2.25 2.25 0 003 12m18 0v6a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 18v-6m18 0V9M3 12V9m18 0a2.25 2.25 0 00-2.25-2.25H5.25A2.25 2.25 0 003 9m18 0V6a2.25 2.25 0 00-2.25-2.25H5.25A2.25 2.25 0 003 6v3"})});var ho=require("react/jsx-runtime"),cc=({wallet:e,txnValue:t,chainId:o})=>{let[r,n]=(0,gr.useState)(),[i,a]=(0,gr.useState)(!1);return(0,gr.useEffect)(()=>{(async s=>{try{let p=await ic(s,o);t&&p.sub(Be(t)).isNegative()&&a(!0),n(p.toHexString())}catch(p){console.log(p)}})(e.address)},[e,t]),(0,ho.jsxs)(yu,{children:[(0,ho.jsxs)(gu,{children:[(0,ho.jsx)(lc,{style:{height:"12px",width:"12px"}}),(0,ho.jsx)("div",{children:Dt(e==null?void 0:e.address)})]}),(0,ho.jsxs)(vu,{displayBalanceColor:!!t,hasFunds:!i,children:[r?uo(r):0," ETH"]})]})},yu=On.default.div`
1680
+ `;var gr=require("react"),Dn=E(require("styled-components"));var yr=require("@ethersproject/providers");async function rc(e,t,o,r){return r=Object.assign({chainId:Ve},r),r.chainId=Number(r.chainId),sc(r),(await o.rpc({address:t,accessToken:e,request:{method:"eth_populateTransactionRequest",params:[r]}})).response.data}async function nc(e,t,o,r){r=Object.assign({chainId:Ve},r),sc(r);let i=(await o.rpc({address:t,accessToken:e,request:{method:"eth_signTransaction",params:[r]}})).response.data,l=await(await uu(r.chainId,i)).wait();return fu(l)}function uu(e,t){return new yr.InfuraProvider(e,Je).sendTransaction(t)}async function ic(e,t=Ve){return await new yr.InfuraProvider(t,Je).getBalance(e)}async function ac(e){return delete e.from,await new yr.InfuraProvider(Number(e.chainId)||Ve,Je).estimateGas(e)}function sc(e){let t=["gasLimit","gasPrice","value","maxPriorityFeePerGas","maxFeePerGas"];for(let o of t){let r=e[o];if(!(typeof r>"u")&&!mu(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 mu(e){let t=typeof e=="number",o=typeof e=="bigint",r=typeof e=="string"&&hu(e);return t||o||r}function hu(e){return/^-?0x[a-f0-9]+$/i.test(e)}function fu(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.toHexString()}}var Qi=require("react/jsx-runtime"),lc=({style:e,...t})=>(0,Qi.jsx)("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:(0,Qi.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M21 12a2.25 2.25 0 00-2.25-2.25H15a3 3 0 11-6 0H5.25A2.25 2.25 0 003 12m18 0v6a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 18v-6m18 0V9M3 12V9m18 0a2.25 2.25 0 00-2.25-2.25H5.25A2.25 2.25 0 003 9m18 0V6a2.25 2.25 0 00-2.25-2.25H5.25A2.25 2.25 0 003 6v3"})});var ho=require("react/jsx-runtime"),cc=({wallet:e,txnValue:t,chainId:o})=>{let[r,n]=(0,gr.useState)(),[i,a]=(0,gr.useState)(!1);return(0,gr.useEffect)(()=>{(async s=>{try{let p=await ic(s,o);t&&p.sub(Be(t)).isNegative()&&a(!0),n(p.toHexString())}catch(p){console.log(p)}})(e.address)},[e,t]),(0,ho.jsxs)(yu,{children:[(0,ho.jsxs)(gu,{children:[(0,ho.jsx)(lc,{style:{height:"12px",width:"12px"}}),(0,ho.jsx)("div",{children:Dt(e==null?void 0:e.address)})]}),(0,ho.jsxs)(vu,{displayBalanceColor:!!t,hasFunds:!i,children:[r?uo(r):0," ETH"]})]})},yu=Dn.default.div`
1681
1681
  display: flex;
1682
1682
  flex-direction: row;
1683
1683
  justify-content: space-between;
@@ -1689,12 +1689,12 @@ Resources:
1689
1689
  border: 1px solid var(--privy-color-foreground-4);
1690
1690
  border-radius: var(--privy-border-radius-sm);
1691
1691
  }
1692
- `,gu=On.default.div`
1692
+ `,gu=Dn.default.div`
1693
1693
  display: flex;
1694
1694
  flex-direction: row;
1695
1695
  align-items: center;
1696
1696
  gap: 8px;
1697
- `,vu=On.default.div`
1697
+ `,vu=Dn.default.div`
1698
1698
  display: flex;
1699
1699
  align-items: center;
1700
1700
  justify-content: center;
@@ -1702,7 +1702,7 @@ Resources:
1702
1702
  background-color: var(--privy-color-background-2);
1703
1703
  padding: 4px 12px;
1704
1704
  color: ${e=>e.displayBalanceColor?e.hasFunds?"green":"red":"inherit"};
1705
- `;var vr=E(require("styled-components"));var Nt=require("react");var Dn=e=>{let{getUsdTokenPrice:t}=W(),[o,r]=(0,Nt.useState)(!1),[n,i]=(0,Nt.useState)(!1),[a,l]=(0,Nt.useState)(void 0),[s,p]=(0,Nt.useState)(void 0),[f,h]=(0,Nt.useState)(null);return(0,Nt.useEffect)(()=>{let u=e.chainId||Ve;(async()=>{try{r(!0);let b=await t(u);p(b)}catch(b){l(b)}finally{r(!1)}})()},[]),(0,Nt.useEffect)(()=>{(async()=>{try{i(!0);let C=await ac(e);h(C.toBigInt())}catch(C){l(C)}finally{i(!1)}})()},[e]),{tokenPrice:s,estimatedGas:f,isLoading:o||n,error:a}};var $o=require("react/jsx-runtime"),dc=e=>{var o,r;let{tokenPrice:t}=Dn(e.txn);return(0,$o.jsxs)(bu,{children:[(0,$o.jsxs)(wu,{children:["$",((o=e.txn)==null?void 0:o.value)&&t?In(Be(e.txn.value).toHexString(),t):"--"]}),(0,$o.jsxs)(Cu,{children:[(r=e.txn)!=null&&r.value?uo(Be(e.txn.value).toHexString()):"--"," ","ETH"]}),(0,$o.jsx)(xu,{children:e.description})]})},bu=vr.default.div`
1705
+ `;var vr=E(require("styled-components"));var Nt=require("react");var Un=e=>{let{getUsdTokenPrice:t}=W(),[o,r]=(0,Nt.useState)(!1),[n,i]=(0,Nt.useState)(!1),[a,l]=(0,Nt.useState)(void 0),[s,p]=(0,Nt.useState)(void 0),[f,h]=(0,Nt.useState)(null);return(0,Nt.useEffect)(()=>{let u=e.chainId||Ve;(async()=>{try{r(!0);let b=await t(u);p(b)}catch(b){l(b)}finally{r(!1)}})()},[]),(0,Nt.useEffect)(()=>{(async()=>{try{i(!0);let C=await ac(e);h(C.toBigInt())}catch(C){l(C)}finally{i(!1)}})()},[e]),{tokenPrice:s,estimatedGas:f,isLoading:o||n,error:a}};var $o=require("react/jsx-runtime"),dc=e=>{var o,r;let{tokenPrice:t}=Un(e.txn);return(0,$o.jsxs)(bu,{children:[(0,$o.jsxs)(wu,{children:["$",((o=e.txn)==null?void 0:o.value)&&t?Nn(Be(e.txn.value).toHexString(),t):"--"]}),(0,$o.jsxs)(Cu,{children:[(r=e.txn)!=null&&r.value?uo(Be(e.txn.value).toHexString()):"--"," ","ETH"]}),(0,$o.jsx)(xu,{children:e.description})]})},bu=vr.default.div`
1706
1706
  display: flex;
1707
1707
  flex-direction: column;
1708
1708
  align-items: center;
@@ -1728,15 +1728,15 @@ Resources:
1728
1728
  white-space: nowrap;
1729
1729
  max-width: 275px;
1730
1730
  text-overflow: ellipsis;
1731
- `;function pc(e){return e.to&&e.data?"CONTRACT_CALL":e.to&&e.value?"SEND_ETH":"UNKNOWN"}var Zi=E(require("styled-components"));var Ze=require("react/jsx-runtime"),uc=({txn:e,receipt:t,transactionInfo:o,onClose:r,tokenPrice:n})=>(0,Ze.jsxs)(Ze.Fragment,{children:[(0,Ze.jsx)(_,{onClose:r}),(0,Ze.jsxs)(Eu,{children:[(0,Ze.jsxs)("div",{children:[(0,Ze.jsx)(pe,{title:"Transaction complete!",description:"You're all set."}),(0,Ze.jsx)(Mn,{tokenPrice:n,from:t.from,to:t.to,gas:t.gasUsed,txn:e,transactionInfo:o})]}),(0,Ze.jsx)("div",{children:(0,Ze.jsx)(Tu,{loading:!1,onClick:r,children:"All Done"})})]})]}),Eu=Zi.default.div`
1731
+ `;function pc(e){return e.to&&e.data?"CONTRACT_CALL":e.to&&e.value?"SEND_ETH":"UNKNOWN"}var Ji=E(require("styled-components"));var Ze=require("react/jsx-runtime"),uc=({txn:e,receipt:t,transactionInfo:o,onClose:r,tokenPrice:n})=>(0,Ze.jsxs)(Ze.Fragment,{children:[(0,Ze.jsx)(_,{onClose:r}),(0,Ze.jsxs)(Eu,{children:[(0,Ze.jsxs)("div",{children:[(0,Ze.jsx)(pe,{title:"Transaction complete!",description:"You're all set."}),(0,Ze.jsx)(On,{tokenPrice:n,from:t.from,to:t.to,gas:t.gasUsed,txn:e,transactionInfo:o})]}),(0,Ze.jsx)("div",{children:(0,Ze.jsx)(Tu,{loading:!1,onClick:r,children:"All Done"})})]})]}),Eu=Ji.default.div`
1732
1732
  display: flex;
1733
1733
  height: 100%;
1734
1734
  flex-direction: column;
1735
1735
  justify-content: space-between;
1736
1736
  flex-grow: 1;
1737
- `,Tu=(0,Zi.default)(re)`
1737
+ `,Tu=(0,Ji.default)(re)`
1738
1738
  transition: color 350ms ease, background-color 350ms ease;
1739
- `;var H=require("react/jsx-runtime"),Pu=e=>{var t;switch(e.txnFamily){case"SEND_ETH":return(0,H.jsx)(H.Fragment,{children:(0,H.jsx)(dc,{description:((t=e.uiOptions.transactionInfo)==null?void 0:t.description)||"",txn:e.txn})});case"CONTRACT_CALL":return(0,H.jsx)(H.Fragment,{children:e.uiOptions.senderInfo&&(0,H.jsx)(oc,{partyInfo:e.uiOptions.senderInfo})});default:return(0,H.jsx)("div",{children:"Unsupported transaction."})}},hc=()=>{let{authenticated:e,getAccessToken:t,user:o}=F(),{walletProxy:r,closePrivyModal:n}=W(),{navigate:i,data:a}=w(),{transactionRequest:l,onSuccess:s,onFailure:p,uiOptions:f}=a.sendTransaction,[h,u]=(0,Lt.useState)(null),[C,b]=(0,Lt.useState)(""),[m,g]=(0,Lt.useState)(!0),[L,S]=(0,Lt.useState)(!1),[k,M]=(0,Lt.useState)(l),{tokenPrice:R,estimatedGas:O}=Dn(k);(0,Lt.useEffect)(()=>{e||(i("LANDING"),p(new Error("User must be authenticated before transacting with a Privy wallet")))},[e]);let I=ee(o);(0,Lt.useEffect)(()=>{async function le(){let Y=await t();return!Y||!r||!I?k:rc(Y,I.address,r,k)}le().then(Y=>{g(!1),M(Y)},Y=>{g(!0),Gs(Y)?b(Y.message):(b("There was an error preparing transaction"),console.error(Y))})},[r]);let Ee=pc(k),Q={modalTitle:f.modalTitle||"Review transaction",title:f.title||Ee==="SEND_ETH"?"Send ETH":"Submit transaction",description:f.description||"Confirm the details of the transaction",buttonText:f.buttonText||"Submit"},ge=()=>{L||(h?s(h):p(new Error(C||"User exited the modal before submitting the transaction")),n({shouldCallAuthOnSuccess:!1}))};return R===void 0||O===null?(0,H.jsxs)(H.Fragment,{children:[(0,H.jsx)(_,{title:Q.modalTitle,onClose:ge}),(0,H.jsx)(mc,{children:(0,H.jsx)(un,{})})]}):h!==null?(0,H.jsx)(uc,{txn:k,onClose:ge,receipt:h,transactionInfo:f.transactionInfo,tokenPrice:R}):(0,H.jsxs)(H.Fragment,{children:[(0,H.jsx)(_,{title:Q.modalTitle,onClose:ge}),(0,H.jsxs)(mc,{children:[(0,H.jsxs)(ku,{children:[(0,H.jsx)(Pu,{txn:k,txnFamily:Ee,uiOptions:f}),I?(0,H.jsx)(Mn,{from:I.address,to:k.to,txn:k,transactionInfo:f.transactionInfo,gas:Be(O).toHexString(),tokenPrice:R}):null]}),(0,H.jsxs)(Ru,{children:[(0,H.jsx)(_u,{children:C}),I?(0,H.jsx)(cc,{txnValue:k.value,wallet:I,chainId:Number(k.chainId)}):null,(0,H.jsx)(Au,{children:(0,H.jsx)(Su,{disabled:m||L,loading:!r||L,loadingText:L?"Submitting (may take a few minutes)...":"Loading...",onClick:async()=>{S(!0);let le=await t();if(le&&!L&&I)try{let Y=await nc(le,I.address,r,k);u(Y),b("")}catch(Y){b(Y.reason||"An error has occurred, please try again.")}finally{S(!1)}},children:Q.buttonText})})]})]})]})},mc=fo.default.div`
1739
+ `;var H=require("react/jsx-runtime"),Pu=e=>{var t;switch(e.txnFamily){case"SEND_ETH":return(0,H.jsx)(H.Fragment,{children:(0,H.jsx)(dc,{description:((t=e.uiOptions.transactionInfo)==null?void 0:t.description)||"",txn:e.txn})});case"CONTRACT_CALL":return(0,H.jsx)(H.Fragment,{children:e.uiOptions.senderInfo&&(0,H.jsx)(oc,{partyInfo:e.uiOptions.senderInfo})});default:return(0,H.jsx)("div",{children:"Unsupported transaction."})}},hc=()=>{let{authenticated:e,getAccessToken:t,user:o}=F(),{walletProxy:r,closePrivyModal:n}=W(),{navigate:i,data:a}=w(),{transactionRequest:l,onSuccess:s,onFailure:p,uiOptions:f}=a.sendTransaction,[h,u]=(0,Lt.useState)(null),[C,b]=(0,Lt.useState)(""),[m,g]=(0,Lt.useState)(!0),[L,S]=(0,Lt.useState)(!1),[k,M]=(0,Lt.useState)(l),{tokenPrice:R,estimatedGas:O}=Un(k);(0,Lt.useEffect)(()=>{e||(i("LANDING"),p(new Error("User must be authenticated before transacting with a Privy wallet")))},[e]);let I=ee(o);(0,Lt.useEffect)(()=>{async function le(){let Y=await t();return!Y||!r||!I?k:rc(Y,I.address,r,k)}le().then(Y=>{g(!1),M(Y)},Y=>{g(!0),Gs(Y)?b(Y.message):(b("There was an error preparing transaction"),console.error(Y))})},[r]);let Ee=pc(k),Q={modalTitle:f.modalTitle||"Review transaction",title:f.title||Ee==="SEND_ETH"?"Send ETH":"Submit transaction",description:f.description||"Confirm the details of the transaction",buttonText:f.buttonText||"Submit"},ge=()=>{L||(h?s(h):p(new Error(C||"User exited the modal before submitting the transaction")),n({shouldCallAuthOnSuccess:!1}))};return R===void 0||O===null?(0,H.jsxs)(H.Fragment,{children:[(0,H.jsx)(_,{title:Q.modalTitle,onClose:ge}),(0,H.jsx)(mc,{children:(0,H.jsx)(mn,{})})]}):h!==null?(0,H.jsx)(uc,{txn:k,onClose:ge,receipt:h,transactionInfo:f.transactionInfo,tokenPrice:R}):(0,H.jsxs)(H.Fragment,{children:[(0,H.jsx)(_,{title:Q.modalTitle,onClose:ge}),(0,H.jsxs)(mc,{children:[(0,H.jsxs)(ku,{children:[(0,H.jsx)(Pu,{txn:k,txnFamily:Ee,uiOptions:f}),I?(0,H.jsx)(On,{from:I.address,to:k.to,txn:k,transactionInfo:f.transactionInfo,gas:Be(O).toHexString(),tokenPrice:R}):null]}),(0,H.jsxs)(Ru,{children:[(0,H.jsx)(_u,{children:C}),I?(0,H.jsx)(cc,{txnValue:k.value,wallet:I,chainId:Number(k.chainId)}):null,(0,H.jsx)(Au,{children:(0,H.jsx)(Su,{disabled:m||L,loading:!r||L,loadingText:L?"Submitting (may take a few minutes)...":"Loading...",onClick:async()=>{S(!0);let le=await t();if(le&&!L&&I)try{let Y=await nc(le,I.address,r,k);u(Y),b("")}catch(Y){b(Y.reason||"An error has occurred, please try again.")}finally{S(!1)}},children:Q.buttonText})})]})]})]})},mc=fo.default.div`
1740
1740
  display: flex;
1741
1741
  height: 100%;
1742
1742
  flex-direction: column;
@@ -1767,13 +1767,13 @@ Resources:
1767
1767
  display: flex;
1768
1768
  flex-direction: column;
1769
1769
  gap: 8px;
1770
- `;var br=require("react"),Qt=E(require("styled-components"));var xe=require("react/jsx-runtime"),fc=()=>{let{authenticated:e,getAccessToken:t,user:o}=F(),{walletProxy:r,closePrivyModal:n,createAnalyticsEvent:i}=W(),{navigate:a,data:l}=w(),[s,p]=(0,br.useState)(!1),[f,h]=(0,br.useState)("");(0,br.useEffect)(()=>{e||(a("LANDING"),b(new Error("User must be authenticated before signing with a Privy wallet")))},[e]);let{message:u,onSuccess:C,onFailure:b,uiOptions:m}=l.signMessage,g=ee(o),L=!r,S={title:m.title||"Sign message",description:m.description||"Signing this message will not cost you any fees.",buttonText:m.buttonText||"Sign and continue"};return(0,xe.jsxs)(xe.Fragment,{children:[(0,xe.jsx)(_,{onClose:()=>n({shouldCallAuthOnSuccess:!1})}),(0,xe.jsxs)(Wu,{children:[(0,xe.jsxs)("div",{children:[(0,xe.jsx)(pe,{title:S.title,description:S.description}),(0,xe.jsx)(Iu,{children:u}),(0,xe.jsx)(Nu,{fail:!0,children:f})]}),(0,xe.jsx)(Mu,{success:s,loading:L,disabled:s,onClick:async()=>{let k=await t();if(k&&!L&&g)try{i("embedded_wallet_sign_message_started",{walletAddress:g.address});let{response:M}=await r.rpc({accessToken:k,address:g==null?void 0:g.address,request:{method:"eth_sign",params:[g.address,u]}}),R=M.data;h(""),C(R),i("embedded_wallet_sign_message_completed",{walletAddress:g.address}),p(!0),setTimeout(()=>{n({shouldCallAuthOnSuccess:!1})},ut)}catch(M){h("An error has occurred, please try again."),b(M)}},children:s?(0,xe.jsxs)(Lu,{children:[(0,xe.jsx)(Lo,{style:{height:"0.9rem",width:"0.9rem"},strokeWidth:2})," ",(0,xe.jsx)("span",{children:"Success"})]}):S.buttonText})]}),(0,xe.jsx)(B,{protectedByPrivy:!0})]})},Wu=Qt.default.div`
1770
+ `;var br=require("react"),Jt=E(require("styled-components"));var xe=require("react/jsx-runtime"),fc=()=>{let{authenticated:e,getAccessToken:t,user:o}=F(),{walletProxy:r,closePrivyModal:n,createAnalyticsEvent:i}=W(),{navigate:a,data:l}=w(),[s,p]=(0,br.useState)(!1),[f,h]=(0,br.useState)("");(0,br.useEffect)(()=>{e||(a("LANDING"),b(new Error("User must be authenticated before signing with a Privy wallet")))},[e]);let{message:u,onSuccess:C,onFailure:b,uiOptions:m}=l.signMessage,g=ee(o),L=!r,S={title:m.title||"Sign message",description:m.description||"Signing this message will not cost you any fees.",buttonText:m.buttonText||"Sign and continue"};return(0,xe.jsxs)(xe.Fragment,{children:[(0,xe.jsx)(_,{onClose:()=>n({shouldCallAuthOnSuccess:!1})}),(0,xe.jsxs)(Wu,{children:[(0,xe.jsxs)("div",{children:[(0,xe.jsx)(pe,{title:S.title,description:S.description}),(0,xe.jsx)(Iu,{children:u}),(0,xe.jsx)(Nu,{fail:!0,children:f})]}),(0,xe.jsx)(Mu,{success:s,loading:L,disabled:s,onClick:async()=>{let k=await t();if(k&&!L&&g)try{i("embedded_wallet_sign_message_started",{walletAddress:g.address});let{response:M}=await r.rpc({accessToken:k,address:g==null?void 0:g.address,request:{method:"eth_sign",params:[g.address,u]}}),R=M.data;h(""),C(R),i("embedded_wallet_sign_message_completed",{walletAddress:g.address}),p(!0),setTimeout(()=>{n({shouldCallAuthOnSuccess:!1})},ut)}catch(M){h("An error has occurred, please try again."),b(M)}},children:s?(0,xe.jsxs)(Lu,{children:[(0,xe.jsx)(Lo,{style:{height:"0.9rem",width:"0.9rem"},strokeWidth:2})," ",(0,xe.jsx)("span",{children:"Success"})]}):S.buttonText})]}),(0,xe.jsx)(B,{protectedByPrivy:!0})]})},Wu=Jt.default.div`
1771
1771
  display: flex;
1772
1772
  height: 100%;
1773
1773
  flex-direction: column;
1774
1774
  justify-content: space-between;
1775
1775
  flex-grow: 1;
1776
- `,Iu=Qt.default.div`
1776
+ `,Iu=Jt.default.div`
1777
1777
  background-color: var(--privy-color-background-2);
1778
1778
  border-radius: 8px;
1779
1779
  padding: 12px;
@@ -1789,7 +1789,7 @@ Resources:
1789
1789
  &::-webkit-scrollbar {
1790
1790
  display: none; /* Safari and Chrome */
1791
1791
  }
1792
- `,Nu=Qt.default.div`
1792
+ `,Nu=Jt.default.div`
1793
1793
  line-height: 20px;
1794
1794
  height: 20px;
1795
1795
  font-size: 13px;
@@ -1798,20 +1798,20 @@ Resources:
1798
1798
  justify-content: flex-start;
1799
1799
  width: 100%;
1800
1800
  margin-top: 4px;
1801
- `,Lu=Qt.default.span`
1801
+ `,Lu=Jt.default.span`
1802
1802
  display: flex;
1803
1803
  align-items: center;
1804
1804
  gap: 8px;
1805
- `,Mu=(0,Qt.default)(re)`
1805
+ `,Mu=(0,Jt.default)(re)`
1806
1806
  transition: color 350ms ease, background-color 350ms ease;
1807
1807
 
1808
- ${e=>e.success&&Qt.css`
1808
+ ${e=>e.success&&Jt.css`
1809
1809
  &&&& {
1810
1810
  background-color: var(--privy-color-success);
1811
1811
  color: #ffffff;
1812
1812
  }
1813
1813
  `}
1814
- `;var Un=E(require("styled-components"));var Ou=`
1814
+ `;var Bn=E(require("styled-components"));var Ou=`
1815
1815
  *,
1816
1816
  ::before,
1817
1817
  ::after {
@@ -2041,7 +2041,7 @@ Resources:
2041
2041
  [hidden] {
2042
2042
  display: none;
2043
2043
  }
2044
- `,yc=Ou;var gc=Un.createGlobalStyle`
2044
+ `,yc=Ou;var gc=Bn.createGlobalStyle`
2045
2045
  :root {
2046
2046
  // Borders
2047
2047
  --privy-border-radius-sm: 6px;
@@ -2066,7 +2066,7 @@ Resources:
2066
2066
  --privy-color-success: ${e=>e.theme.success};
2067
2067
  --privy-color-error: ${e=>e.theme.error};
2068
2068
  };
2069
- `,vc=Un.default.div`
2069
+ `,vc=Bn.default.div`
2070
2070
  // css normalize only the privy application to avoid conflicts
2071
2071
  // with consuming application
2072
2072
  ${yc}
@@ -2128,7 +2128,7 @@ Resources:
2128
2128
  opacity: 1;
2129
2129
  }
2130
2130
  }
2131
- `;var N=require("react/jsx-runtime"),Du=()=>{let{ready:e}=F(),{isLinking:t}=W(),{ready:o,currentScreen:r,app:n}=w(),i=!!(n!=null&&n.loginMethods.wallet),a=!!((n==null?void 0:n.loginMethods.email)||(n==null?void 0:n.loginMethods.sms)),l=i!==a,s;return["AWAITING_CONNECTION","AWAITING_CONNECT_ONLY_CONNECTION","CONNECT_ONLY_LANDING_SCREEN","AWAITING_OAUTH_SCREEN","ALLOWLIST_REJECTION_SCREEN"].includes(r)||l&&r==="LANDING"?s="compact":"WALLET_EDUCATION"===r?s="full":t&&r!=="EMBEDDED_WALLET_SIGN_REQUEST_SCREEN"?s="medium":s="full",!e||!o?(0,N.jsxs)(Wo,{"data-height":s,children:[(0,N.jsx)(_,{}),(0,N.jsx)(Fu,{children:(0,N.jsx)(Xo,{})}),(0,N.jsx)(rt,{})]}):(0,N.jsxs)(Wo,{"data-height":s,children:[r==="LANDING"&&(0,N.jsx)(El,{}),r==="AWAITING_PASSWORDLESS_CODE"&&(0,N.jsx)(Ts,{}),r==="WALLET_EDUCATION"&&(0,N.jsx)(yl,{}),r==="AWAITING_CONNECTION"&&(0,N.jsx)(Os,{}),r==="AWAITING_CONNECT_ONLY_CONNECTION"&&(0,N.jsx)(Ds,{}),r==="COINBASE_INTERSTITIAL_SCREEN"&&(0,N.jsx)(Ss,{}),r==="PHANTOM_INTERSTITIAL_SCREEN"&&(0,N.jsx)(Ol,{}),r==="LOGIN_FAILED_SCREEN"&&(0,N.jsx)(Rl,{}),r==="AWAITING_OAUTH_SCREEN"&&(0,N.jsx)(Il,{}),r==="ALLOWLIST_REJECTION_SCREEN"&&(0,N.jsx)(ws,{}),r==="INSTALL_METAMASK_SCREEN"&&(0,N.jsx)(vl,{}),r==="INSTALL_PHANTOM_SCREEN"&&(0,N.jsx)(bl,{}),r==="INSTALL_COINBASE_WALLET_SCREEN"&&(0,N.jsx)(gl,{}),r==="LINK_EMAIL_SCREEN"&&(0,N.jsx)(_l,{}),r==="LINK_PHONE_SCREEN"&&(0,N.jsx)(Al,{}),r==="LINK_WALLET_SCREEN"&&(0,N.jsx)(Sl,{}),r==="CONNECT_ONLY_LANDING_SCREEN"&&(0,N.jsx)(Ls,{}),r==="CONNECT_ONLY_AUTHENTICATED_SCREEN"&&(0,N.jsx)(Is,{}),r==="EMBEDDED_WALLET_SCREEN"&&(0,N.jsx)(nl,{}),r==="EMBEDDED_WALLET_CREATED_SCREEN"&&(0,N.jsx)(Zs,{}),r==="EMBEDDED_WALLET_CONNECTING_SCREEN"&&(0,N.jsx)(zs,{}),r==="EMBEDDED_WALLET_RECOVERY_SCREEN"&&(0,N.jsx)(rl,{}),r==="EMBEDDED_WALLET_KEY_EXPORT_SCREEN"&&(0,N.jsx)(el,{}),r==="EMBEDDED_WALLET_SIGN_REQUEST_SCREEN"&&(0,N.jsx)(fc,{}),r==="EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN"&&(0,N.jsx)(hc,{})]})},wc=()=>{let{closePrivyModal:e}=W(),{app:t}=w(),o=(0,Fn.useCallback)(i=>{i.key==="Escape"&&(t==null?void 0:t.render.inDialog)&&e()},[t==null?void 0:t.render.inDialog]);(0,Qi.useEffect)(()=>(document.addEventListener("keydown",o,!1),()=>{document.removeEventListener("keydown",o,!1)}),[o]);let r=(0,N.jsx)(vc,{onClick:i=>i.stopPropagation(),children:(0,N.jsx)(Du,{})}),n=t!=null&&t.render.inDialog?(0,N.jsx)(Bu,{id:"privy-dialog",onClick:()=>e(),children:r}):r;return bc.default.createPortal(n,t!=null&&t.render.inParentNodeId&&document.getElementById(t.render.inParentNodeId)||document.body)},Uu=({children:e,...t})=>{let o=(0,Fn.useRef)(null);return(0,Qi.useEffect)(()=>{var n;(n=document==null?void 0:document.activeElement)==null||n.blur();let r=(document==null?void 0:document.getElementById("root"))||(document==null?void 0:document.getElementById("__next"));if(!!r)return r.setAttribute("inert","true"),(0,Bn.disableBodyScroll)(o==null?void 0:o.current),()=>{let i=(document==null?void 0:document.getElementById("root"))||(document==null?void 0:document.getElementById("__next"));!i||(i.removeAttribute("inert"),(0,Bn.clearAllBodyScrollLocks)())}},[t.open,t.onClose]),(0,N.jsx)("dialog",{open:!0,role:"dialog",...t,ref:o,children:e})},Bu=(0,Gn.default)(Uu)`
2131
+ `;var N=require("react/jsx-runtime"),Du=()=>{let{ready:e}=F(),{isLinking:t}=W(),{ready:o,currentScreen:r,app:n}=w(),i=!!(n!=null&&n.loginMethods.wallet),a=!!((n==null?void 0:n.loginMethods.email)||(n==null?void 0:n.loginMethods.sms)),l=i!==a,s;return["AWAITING_CONNECTION","AWAITING_CONNECT_ONLY_CONNECTION","CONNECT_ONLY_LANDING_SCREEN","AWAITING_OAUTH_SCREEN","ALLOWLIST_REJECTION_SCREEN"].includes(r)||l&&r==="LANDING"?s="compact":"WALLET_EDUCATION"===r?s="full":t&&r!=="EMBEDDED_WALLET_SIGN_REQUEST_SCREEN"?s="medium":s="full",!e||!o?(0,N.jsxs)(Wo,{"data-height":s,children:[(0,N.jsx)(_,{}),(0,N.jsx)(Fu,{children:(0,N.jsx)(Xo,{})}),(0,N.jsx)(rt,{})]}):(0,N.jsxs)(Wo,{"data-height":s,children:[r==="LANDING"&&(0,N.jsx)(El,{}),r==="AWAITING_PASSWORDLESS_CODE"&&(0,N.jsx)(Ts,{}),r==="WALLET_EDUCATION"&&(0,N.jsx)(yl,{}),r==="AWAITING_CONNECTION"&&(0,N.jsx)(Os,{}),r==="AWAITING_CONNECT_ONLY_CONNECTION"&&(0,N.jsx)(Ds,{}),r==="COINBASE_INTERSTITIAL_SCREEN"&&(0,N.jsx)(Ss,{}),r==="PHANTOM_INTERSTITIAL_SCREEN"&&(0,N.jsx)(Ol,{}),r==="LOGIN_FAILED_SCREEN"&&(0,N.jsx)(Rl,{}),r==="AWAITING_OAUTH_SCREEN"&&(0,N.jsx)(Il,{}),r==="ALLOWLIST_REJECTION_SCREEN"&&(0,N.jsx)(ws,{}),r==="INSTALL_METAMASK_SCREEN"&&(0,N.jsx)(vl,{}),r==="INSTALL_PHANTOM_SCREEN"&&(0,N.jsx)(bl,{}),r==="INSTALL_COINBASE_WALLET_SCREEN"&&(0,N.jsx)(gl,{}),r==="LINK_EMAIL_SCREEN"&&(0,N.jsx)(_l,{}),r==="LINK_PHONE_SCREEN"&&(0,N.jsx)(Al,{}),r==="LINK_WALLET_SCREEN"&&(0,N.jsx)(Sl,{}),r==="CONNECT_ONLY_LANDING_SCREEN"&&(0,N.jsx)(Ls,{}),r==="CONNECT_ONLY_AUTHENTICATED_SCREEN"&&(0,N.jsx)(Is,{}),r==="EMBEDDED_WALLET_SCREEN"&&(0,N.jsx)(nl,{}),r==="EMBEDDED_WALLET_CREATED_SCREEN"&&(0,N.jsx)(Zs,{}),r==="EMBEDDED_WALLET_CONNECTING_SCREEN"&&(0,N.jsx)(zs,{}),r==="EMBEDDED_WALLET_RECOVERY_SCREEN"&&(0,N.jsx)(rl,{}),r==="EMBEDDED_WALLET_KEY_EXPORT_SCREEN"&&(0,N.jsx)(el,{}),r==="EMBEDDED_WALLET_SIGN_REQUEST_SCREEN"&&(0,N.jsx)(fc,{}),r==="EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN"&&(0,N.jsx)(hc,{})]})},wc=()=>{let{closePrivyModal:e}=W(),{app:t}=w(),o=(0,Gn.useCallback)(i=>{i.key==="Escape"&&(t==null?void 0:t.render.inDialog)&&e()},[t==null?void 0:t.render.inDialog]);(0,Xi.useEffect)(()=>(document.addEventListener("keydown",o,!1),()=>{document.removeEventListener("keydown",o,!1)}),[o]);let r=(0,N.jsx)(vc,{onClick:i=>i.stopPropagation(),children:(0,N.jsx)(Du,{})}),n=t!=null&&t.render.inDialog?(0,N.jsx)(Bu,{id:"privy-dialog",onClick:()=>e(),children:r}):r;return bc.default.createPortal(n,t!=null&&t.render.inParentNodeId&&document.getElementById(t.render.inParentNodeId)||document.body)},Uu=({children:e,...t})=>{let o=(0,Gn.useRef)(null);return(0,Xi.useEffect)(()=>{var n;(n=document==null?void 0:document.activeElement)==null||n.blur();let r=(document==null?void 0:document.getElementById("root"))||(document==null?void 0:document.getElementById("__next"));if(!!r)return r.setAttribute("inert","true"),(0,Fn.disableBodyScroll)(o==null?void 0:o.current),()=>{let i=(document==null?void 0:document.getElementById("root"))||(document==null?void 0:document.getElementById("__next"));!i||(i.removeAttribute("inert"),(0,Fn.clearAllBodyScrollLocks)())}},[t.open,t.onClose]),(0,N.jsx)("dialog",{open:!0,role:"dialog",...t,ref:o,children:e})},Bu=(0,Hn.default)(Uu)`
2132
2132
  position: fixed;
2133
2133
  top: 0;
2134
2134
  left: 0;
@@ -2143,7 +2143,7 @@ Resources:
2143
2143
  z-index: 999999;
2144
2144
  -webkit-backdrop-filter: blur(3px);
2145
2145
  backdrop-filter: blur(3px);
2146
- `,Wo=Gn.default.div`
2146
+ `,Wo=Hn.default.div`
2147
2147
  display: flex;
2148
2148
  flex-direction: column;
2149
2149
  text-align: center;
@@ -2180,10 +2180,10 @@ Resources:
2180
2180
  min-height: 0;
2181
2181
  }
2182
2182
  }
2183
- `,Fu=Gn.default.div`
2183
+ `,Fu=Hn.default.div`
2184
2184
  display: flex;
2185
2185
  flex-direction: column;
2186
2186
  align-items: center;
2187
2187
  justify-content: center;
2188
2188
  height: 100%;
2189
- `;var go=E(require("tinycolor2")),Cc="#FFFFFF",Gu="#000000",Hu=Cc,Vu="#1E1E1D";function zu(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 yo(e,t){let o=Math.max(0,Math.min(1,e.toHsl().l+t));return(0,go.default)({...e.toHsl(),l:o})}function xc({backgroundTheme:e,accentHex:t,successHex:o="#51BA81",errorHex:r="#EC6351",whiteHex:n=Cc,blackHex:i=Gu}){let a;switch(e){case"light":a=Hu;break;case"dark":a=Vu;break;default:a=e;break}let l=(0,go.default)(a),s=(0,go.default)(t),p=(0,go.default)(o),f=(0,go.default)(r),h=zu(l.getLuminance()),u=yo(l,h==="light"?-.04:.11),C=yo(l,h==="light"?-.88:.87),b=yo(l,h==="light"?-.77:.75),m=yo(l,h==="light"?-.43:.45).desaturate(h==="light"?60:20),g=yo(l,h==="light"?-.13:.25).desaturate(h==="light"?60:20),L=yo(s,.15),S=yo(s,-.06),k=(0,go.default)(s.getLuminance()>.5?i:n);return{colorScheme:h,background:l.toHslString(),background2:u.toHslString(),foreground:C.toHslString(),foreground2:b.toHslString(),foreground3:m.toHslString(),foreground4:g.toHslString(),accent:s.toHslString(),accentLight:L.toHslString(),accentDark:S.toHslString(),foregroundAccent:k.toHslString(),success:p.toHslString(),error:f.toHslString()}}var Ec={appearance:{theme:"light",accentColor:"#676FFF"}};function Ji(e,t){var h,u,C,b,m,g,L,S;let o,r,n,i,a,l,s,p;if(t!=null&&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"),p=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,p=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,p].some(k=>k))throw new Error("To enable social logins you must also enable either SMS or Email login");if(![o,r,n,i,a,l,s,p].some(k=>k))throw new Error("You must enable at least one login method");return{id:e.id,name:e.name,allowlistConfig:e.allowlistConfig,appearance:{logo:((h=t==null?void 0:t.appearance)==null?void 0:h.logo)??e.logoUrl,palette:xc({backgroundTheme:((u=t==null?void 0:t.appearance)==null?void 0:u.theme)??Ec.appearance.theme,accentHex:((C=t==null?void 0:t.appearance)==null?void 0:C.accentColor)??e.accentColor??Ec.appearance.accentColor}),showWalletLoginFirst:((b=t==null?void 0:t.appearance)==null?void 0:b.showWalletLoginFirst)??e.showWalletLoginFirst},loginMethods:{wallet:n,email:o,sms:r,google:i,twitter:a,discord:l,github:s,apple:p},legal:{termsAndConditionsUrl:((m=t==null?void 0:t.legal)==null?void 0:m.termsAndConditionsUrl)??e.termsAndConditionsUrl,privacyPolicyUrl:((g=t==null?void 0:t.legal)==null?void 0:g.privacyPolicyUrl)??e.privacyPolicyUrl},render:{inDialog:((L=t==null?void 0:t._render)==null?void 0:L.inDialog)??!0,inParentNodeId:((S=t==null?void 0:t._render)==null?void 0:S.inParentNodeId)??null}}}var Vn=require("react");var Hn=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;default:throw new Error(`invalid wallet event type ${t}`)}}};var Pc=require("react/jsx-runtime"),$u=function(e){return()=>`id-${e++}`}(0);function qu(e){return typeof e.event=="string"&&/^privy:.+/.test(e.event)}function wr(e){return e.error!==void 0}var qo=new Hn;function Cr(e,t,o){let r=o.contentWindow;if(!r)throw new Error("iframe not initialized");return new Promise((n,i)=>{let a=$u();qo.enqueue(a,{resolve:n,reject:i}),r.postMessage({id:a,event:e,data:t},"*")})}function ju(e){switch(e.event){case"privy:iframe:ready":let t=qo.dequeue(e.event,e.id);return wr(e)?t.reject(new qt(e.error.type,e.error.message)):t.resolve(e.data);case"privy:wallet:create":let o=qo.dequeue(e.event,e.id);return wr(e)?o.reject(new qt(e.error.type,e.error.message)):o.resolve(e.data);case"privy:wallet:connect":let r=qo.dequeue(e.event,e.id);return wr(e)?r.reject(new qt(e.error.type,e.error.message)):r.resolve(e.data);case"privy:wallet:recover":let n=qo.dequeue(e.event,e.id);return wr(e)?n.reject(new qt(e.error.type,e.error.message)):n.resolve(e.data);case"privy:wallet:rpc":let i=qo.dequeue(e.event,e.id);return wr(e)?i.reject(new qt(e.error.type,e.error.message)):i.resolve(e.data)}}function Tc(e){let t=(0,Vn.useRef)(null);return(0,Vn.useEffect)(()=>{let o=t.current;if(!o)return;function r(l){l&&l.origin===e.origin&&qu(l.data)&&ju(l.data)}let n={create(l){return Cr("privy:wallet:create",l,o)},connect(l){return Cr("privy:wallet:connect",l,o)},recover(l){return Cr("privy:wallet:recover",l,o)},rpc(l){return Cr("privy:wallet:rpc",l,o)}};window.addEventListener("message",r);let i=()=>e.onLoad(n),a=(...l)=>{console.error("privy iframe failed to load: ",...l),e.onLoadFailed()};return Wa(()=>Cr("privy:iframe:ready",{},o)).then(i,a),()=>window.removeEventListener("message",r)},[t.current]),(0,Pc.jsx)("iframe",{ref:t,width:"0",height:"0",style:{display:"none",height:"0px",width:"0px"},src:Ir(e.origin,`/apps/${e.appId}/embedded-wallets`)})}var zn=require("react"),Xi=(0,zn.createContext)({wallets:[]});function _c(){return(0,zn.useContext)(Xi)}var xt=require("react/jsx-runtime");function Ku(e){return typeof e=="string"&&e.length===25}var Er;function Po(){if(!Er){let e=z.get(xo);return Promise.resolve(e||null)}return Er.getAccessToken()}var Ac,Ba=(e,t)=>Ac(e,t),Sc,Fa=(e,t)=>Sc(e,t),Yu=()=>{let t=new URLSearchParams(window.location.search).get("privy_token");if(!t)return;z.put(Ko,t);let o=new URL(window.location.href);o.searchParams.delete("privy_token"),window.history.pushState({},"",o)},kc=e=>{if(!Ku(e.appId))throw new A("Cannot initialize the Privy provider with an invalid Privy app ID");return Er||(Er=new So({appId:e.appId,apiUrl:e.apiUrl||kr})),(0,xt.jsx)(Zu,{...e,client:Er})},Zu=e=>{let t=e.client,[o,r]=(0,G.useState)(!1),[n,i]=(0,G.useState)(!1),[a,l]=(0,G.useState)(!1),[s,p]=(0,G.useState)(null),[f,h]=(0,G.useState)([]),u=(0,G.useRef)(f),[C,b]=(0,G.useState)(!1),[m,g]=(0,G.useState)(null),[L,S]=(0,G.useState)(!1),[k,M]=(0,G.useState)({status:"disconnected",connectError:null,connector:null,connectRetry:T}),[R,O]=(0,G.useState)(null),[I,Ee]=(0,G.useState)(null),[Q,ge]=(0,G.useState)({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}),[le,Y]=(0,G.useState)(Ji(Q,e.config)),[me,K]=(0,G.useState)(!0),[V,oe]=(0,G.useState)({}),[Ge,Jt]=(0,G.useState)(null),ce=c=>{c&&g(c),r(!0),t.createAnalyticsEvent("modal_open",{initialScreen:c})},dt=c=>{let d=e.createPrivyWalletOnLogin===!0;oe({login:{promptCreatePrivyWalletFlow:d}}),d&&K(!0),ce(c)};(0,G.useEffect)(()=>{if(!I||!s){t.connectors.removeEmbeddedWalletConnector();return}let c=s==null?void 0:s.linkedAccounts.filter(d=>d.type==="wallet"&&d.walletClient==="privy");if(c&&c.length>0){let d=c[0].address;t.connectors.addEmbeddedWalletConnector(I,d)}},[I,s]),(0,G.useEffect)(()=>{async function c(){let d=await t.getServerConfig();ge(d),d.customApiUrl&&t.updateApiUrl(d.customApiUrl),t.connectors.initialize();let v=Te();Yu();let P=await t.getAuthenticatedUser();l(!!P),p(P),i(!0),Ge==null||Ge(),v&&P&&S(!0),Tr()}c()},[t,Ge,n]),(0,G.useEffect)(()=>{let c=Ji(Q,e.config);Y(c)},[e.config,Q]);let Te=()=>{let c=new URLSearchParams(window.location.search),d=c.get("privy_oauth_code"),v=c.get("privy_oauth_state"),P=c.get("privy_oauth_provider");return d&&v&&P?(t.startAuthFlow(new Mt(P,d,v)),dt("AWAITING_OAUTH_SCREEN"),!0):!1},pt=async(c,d,v)=>{let P=t.connectors.createWalletConnector(c,d);vo(P,v)};async function vo(c,d){if(!c)return M({status:"disconnected",connectError:new J("Unable to connect to wallet."),connector:null,connectRetry:T}),d==null?void 0:d(null);M({connector:c,status:"connecting",connectError:null,connectRetry:()=>vo(c,d)});try{let v=await c.connect({showPrompt:!0});return M(P=>({...P,status:"connected",connectError:null,connectRetry:T})),d==null?void 0:d(v)}catch(v){return v instanceof Qe?console.error(v.cause?v.cause:v.message):console.error(v),M(P=>({...P,status:"disconnected",connectError:v})),d==null?void 0:d(null)}}let bo=c=>{if(c===null)throw new A("Error connecting to wallet.");t.startAuthFlow(new eo(c))},Tr=()=>{let c=new URLSearchParams(window.location.search),d=c.get("privy_connector"),v=c.get("privy_wallet_client");if(!d||!v)return;if(v==="phantom"&&!Xe()&&dt("LOGIN_FAILED_SCREEN"),!t.connectors)throw new A("Connector not initialized");ce("AWAITING_CONNECTION");let P=new URL(window.location.href);P.searchParams.delete("privy_connector"),P.searchParams.delete("privy_wallet_client"),window.history.pushState({},"",P),pt(d,v,bo)};(0,G.useEffect)(()=>{n&&a&&s===null&&t.getAuthenticatedUser().then(p)},[n,a,s,t]);let jo=()=>{S(!0),ce("LINK_WALLET_SCREEN")},Pr=c=>{if(!a||!s)return!1;for(let d of s.linkedAccounts)if(d.type==="wallet"&&d.address===c.address)return!0;return!1},_r=async c=>{if(!t.connectors)throw new A("Connector not initialized");S(!!a);let d=t.connectors.findWalletConnector(c.connectorType,c.walletClientType)||null;vo(d,bo),dt("AWAITING_CONNECTION")},de=(c,d)=>{if(!t.connectors)throw new A("Connector not initialized");S(!!a),pt(c,d,bo)},qn=()=>{h(c=>{let d=t.connectors.wallets.map(v=>({...v,linked:Pr(v),loginOrLink:async()=>{if(!await v.isConnected())throw new A("Wallet is not connected");if(v.connectorType==="embedded"&&v.walletClientType==="privy")throw new A("Cannot link or login with embedded wallet");_r(v)},unlink:async()=>{if(!a)throw new A("User is not authenticated.");if(v.connectorType==="embedded"&&v.walletClientType==="privy")throw new A("Cannot unlink an embedded wallet");let P=await t.unlinkWallet(v.address);p(P)}}));return Mr(c,d)?c:d})};(0,G.useEffect)(()=>{qn()},[s==null?void 0:s.linkedAccounts]),(0,G.useEffect)(()=>{n&&(qn(),t.connectors.on("walletsUpdated",qn))},[n]);let Rc=()=>{ce(a?"CONNECT_ONLY_AUTHENTICATED_SCREEN":"CONNECT_ONLY_LANDING_SCREEN")};(0,G.useEffect)(()=>{if(!f[0])return;let c=f[0],d=u.current.find(P=>P.address===c.address),v=s==null?void 0:s.linkedAccounts.find(P=>P.type==="wallet"&&P.address===c.address);if(!d&&v){let P=Object.assign({},s);P.wallet=v&&{address:v.address,chainType:v.chainType,chainId:v.chainId,walletClient:v.walletClient},p(P)}u.current=f},[f]);let jn={ready:n,authenticated:a,user:s,walletConnectors:t.connectors,connectWallet:Rc,linkWallet:jo,linkEmail:()=>{S(!0),ce("LINK_EMAIL_SCREEN")},linkPhone:()=>{S(!0),ce("LINK_PHONE_SCREEN")},linkGoogle:async()=>{await wo.initLoginWithOAuth("google")},linkTwitter:async()=>{await wo.initLoginWithOAuth("twitter")},linkDiscord:async()=>{await wo.initLoginWithOAuth("discord")},linkGithub:async()=>{await wo.initLoginWithOAuth("github")},linkApple:async()=>{await wo.initLoginWithOAuth("apple")},login:async()=>{if(n||(await new Promise(c=>{Jt(()=>c)}),Jt(null)),a){console.warn("Attempted to log in, but user is already logged in. Use a `link` helper instead.");return}dt()},logout:async()=>{await t.logout(),p(null),l(!1),g(null),S(!1),r(!1)},getAccessToken:()=>t.getAccessToken(),getEthereumProvider:()=>{if(!s||!s.wallet)return new X;let c=f.find(v=>s.wallet&&v.address===s.wallet.address),d=t.connectors.walletConnectors.find(v=>v.wallets.find(P=>P.address===(c==null?void 0:c.address)));return!c||!d?new X:d.proxyProvider},getEthersProvider:()=>{if(!s||!s.wallet)return new $n.Web3Provider(new et(new X));let c=f.find(v=>s.wallet&&v.address===s.wallet.address),d=t.connectors.walletConnectors.find(v=>v.wallets.find(P=>P.address===(c==null?void 0:c.address)));return!c||!d?new $n.Web3Provider(new et(new X)):new $n.Web3Provider(new et(d.proxyProvider))},getWeb3jsProvider:()=>{if(!s||!s.wallet)return new Ut(new X);let c=f.find(v=>s.wallet&&v.address===s.wallet.address),d=t.connectors.walletConnectors.find(v=>v.wallets.find(P=>P.address===(c==null?void 0:c.address)));return!c||!d?new Ut(new X):new Ut(d.proxyProvider)},unlinkWallet:async c=>{let d=await t.unlinkWallet(c);return p(d),d},unlinkEmail:async c=>{let d=await t.unlinkEmail(c);return p(d),d},unlinkPhone:async c=>{let d=await t.unlinkPhone(c);return p(d),d},unlinkGoogle:async c=>{let d=await t.unlinkOAuth("google",c);return p(d),d},unlinkTwitter:async c=>{let d=await t.unlinkOAuth("twitter",c);return p(d),d},unlinkDiscord:async c=>{let d=await t.unlinkOAuth("discord",c);return p(d),d},unlinkGithub:async c=>{let d=await t.unlinkOAuth("github",c);return p(d),d},unlinkApple:async c=>{let d=await t.unlinkOAuth("apple",c);return p(d),d},setActiveWallet:async c=>{let d=f.find(P=>(0,xr.getAddress)(P.address)===(0,xr.getAddress)(c)),v=s==null?void 0:s.linkedAccounts.find(P=>P.type==="wallet"&&(0,xr.getAddress)(P.address)===(0,xr.getAddress)(c));if(!d||!await d.isConnected())O(c),jo();else if(!d.linked)d.loginOrLink();else{let P=Object.assign({},s);P.wallet=v&&{address:v.address,chainType:v.chainType,chainId:v.chainId,walletClient:v.walletClient},p(P)}},forkSession:()=>t.forkSession(),createWallet:()=>new Promise((c,d)=>{if(!a||!s){d(new Error("User must be authenticated before creating a Privy wallet"));return}if(ee(s)){d(new Error("Only one Privy wallet per user is currently allowed"));return}K(!0),oe({createWallet:{onSuccess:c,onFailure:d,callAuthOnSuccessOnClose:!1}}),ce("EMBEDDED_WALLET_SCREEN")}),signMessage:(c,d)=>new Promise((v,P)=>{if(!a||!s){P(new Error("User must be authenticated before signing with a Privy wallet"));return}if(!ee(s)){P(new Error("Must have a Privy wallet before signing"));return}if(typeof c!="string"||c.length<1){P(new Error("Message must be a non-empty string"));return}K(!0);let Kn={message:c,onSuccess:v,onFailure:P,uiOptions:d||{}},Yn={onCompleteNavigateTo:"EMBEDDED_WALLET_SIGN_REQUEST_SCREEN",onFailure:P};oe({signMessage:Kn,connectWallet:Yn}),ce("EMBEDDED_WALLET_CONNECTING_SCREEN")}),sendTransaction:(c,d)=>new Promise(async(v,P)=>{if(!a||!s){P(new Error("User must be authenticated before signing with a Privy wallet"));return}if(!ee(s)){P(new Error("Must have a Privy wallet before signing"));return}K(!0);let Kn={transactionRequest:c,onSuccess:v,onFailure:P,uiOptions:d||{}},Yn={onCompleteNavigateTo:"EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN",onFailure:P};oe({connectWallet:Yn,sendTransaction:Kn}),ce("EMBEDDED_WALLET_CONNECTING_SCREEN")}),exportWallet:()=>new Promise((c,d)=>{if(!a||!s){d(new Error("User must be authenticated before exporting their Privy wallet"));return}if(!ee(s)){d(new Error("Must have a Privy wallet before exporting"));return}K(!0);let P={onCompleteNavigateTo:"EMBEDDED_WALLET_KEY_EXPORT_SCREEN",onFailure:d},Ar={appId:e.appId,origin:t.apiUrl,onSuccess:c,onFailure:d};oe({keyExport:Ar,connectWallet:P}),ce("EMBEDDED_WALLET_CONNECTING_SCREEN")})};Ac=jn.signMessage,Sc=jn.sendTransaction;let wo=(()=>({isLinking:L,linkingHint:R,walletConnectionStatus:k,getAuthFlow:()=>t.authFlow,getAuthMeta:()=>{var c;return(c=t.authFlow)==null?void 0:c.meta},closePrivyModal:(c={shouldCallAuthOnSuccess:!0})=>{var v;let d=n&&a&&s;c.shouldCallAuthOnSuccess&&d&&((v=e.onSuccess)==null||v.call(e,s,C)),t.authFlow=void 0,O(null),g(null),S(!1),b(!1),r(!1),t.createAnalyticsEvent("modal_closed")},connectWallet:pt,initLoginWithWallet:de,loginWithWallet:async()=>{if(!(t.authFlow instanceof eo))throw new A("Must initialize SIWE flow first.");let c,d;L?c=await t.link():{user:c,isNewUser:d}=await t.authenticate(),p(c||s||null),b(d||!1),l(!0)},initLoginWithOAuth:async c=>{t.startAuthFlow(new Mt(c));let d=await t.authFlow.getAuthorizationUrl();d&&d.url&&window.location.assign(d.url)},loginWithOAuth:async()=>{if(!(t.authFlow instanceof Mt))throw new A("Must initialize OAuth flow before calling loginWithOAuth");let c,d;n&&a?c=await t.link():{user:c,isNewUser:d}=await t.authenticate(),p(c),b(d||!1),l(!0)},initLoginWithEmail:async c=>{let d=new Xt(c);t.startAuthFlow(d),await d.sendCodeEmail()},initLoginWithSms:async c=>{let d=new to(c);t.startAuthFlow(d),await d.sendSmsCode()},resendEmailCode:async()=>{var c;await((c=t.authFlow)==null?void 0:c.sendCodeEmail())},resendSmsCode:async()=>{var c;await((c=t.authFlow)==null?void 0:c.sendSmsCode())},loginWithCode:async c=>{if(t.authFlow instanceof Xt)t.authFlow.meta.emailCode=c.trim();else if(t.authFlow instanceof to)t.authFlow.meta.smsCode=c.trim();else throw new A("Must initialize a passwordless code flow first");let d,v;L?d=await t.link():{user:d,isNewUser:v}=await t.authenticate(),p(d||s||null),b(v||!1),l(!0)},refreshUser:async()=>{let c=await t.getAuthenticatedUser();return p(c),c},walletProxy:I,createAnalyticsEvent:(c,d,v)=>t.createAnalyticsEvent(c,d,v),getUsdTokenPrice:c=>t.getUsdTokenPrice(c),recoverEmbeddedWallet:c=>new Promise((d,v)=>{if(!a||!s){v(new Error("User must be authenticated before recovering the Privy wallet"));return}if(!ee(s)){v(new Error("Must have a Privy wallet in order to recover it"));return}K(!0),oe({recoverWallet:{onCompleteNavigateTo:c,onFailure:v,onSuccess:d}}),ce("EMBEDDED_WALLET_RECOVERY_SCREEN")})}))(),Wc=(0,G.useMemo)(()=>({wallets:f}),[f]);return(0,xt.jsx)(mi.Provider,{value:jn,children:(0,xt.jsxs)(Xi.Provider,{value:Wc,children:[e.children,(0,xt.jsxs)(ui.Provider,{value:wo,children:[(0,xt.jsx)(gc,{theme:{...le.appearance.palette||{}}}),(0,xt.jsx)(ja,{appConfig:le,data:V,setModalData:oe,initialScreen:m,visible:o,authenticated:a,children:o&&(0,xt.jsx)(wc,{})}),me&&(0,xt.jsx)(Tc,{appId:e.appId,origin:t.apiUrl,onLoad:Ee,onLoadFailed:()=>null})]})]})})};0&&(module.exports={AsExternalProvider,ConnectorManager,PrivyClient,PrivyProvider,PrivyProxyProvider,VERSION,WalletConnector,getAccessToken,usePrivy,useWallets});
2189
+ `;var go=E(require("tinycolor2")),Cc="#FFFFFF",Gu="#000000",Hu=Cc,Vu="#1E1E1D";function zu(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 yo(e,t){let o=Math.max(0,Math.min(1,e.toHsl().l+t));return(0,go.default)({...e.toHsl(),l:o})}function xc({backgroundTheme:e,accentHex:t,successHex:o="#51BA81",errorHex:r="#EC6351",whiteHex:n=Cc,blackHex:i=Gu}){let a;switch(e){case"light":a=Hu;break;case"dark":a=Vu;break;default:a=e;break}let l=(0,go.default)(a),s=(0,go.default)(t),p=(0,go.default)(o),f=(0,go.default)(r),h=zu(l.getLuminance()),u=yo(l,h==="light"?-.04:.11),C=yo(l,h==="light"?-.88:.87),b=yo(l,h==="light"?-.77:.75),m=yo(l,h==="light"?-.43:.45).desaturate(h==="light"?60:20),g=yo(l,h==="light"?-.13:.25).desaturate(h==="light"?60:20),L=yo(s,.15),S=yo(s,-.06),k=(0,go.default)(s.getLuminance()>.5?i:n);return{colorScheme:h,background:l.toHslString(),background2:u.toHslString(),foreground:C.toHslString(),foreground2:b.toHslString(),foreground3:m.toHslString(),foreground4:g.toHslString(),accent:s.toHslString(),accentLight:L.toHslString(),accentDark:S.toHslString(),foregroundAccent:k.toHslString(),success:p.toHslString(),error:f.toHslString()}}var Ec={appearance:{theme:"light",accentColor:"#676FFF"}};function ea(e,t){var h,u,C,b,m,g,L,S;let o,r,n,i,a,l,s,p;if(t!=null&&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"),p=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,p=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,p].some(k=>k))throw new Error("To enable social logins you must also enable either SMS or Email login");if(![o,r,n,i,a,l,s,p].some(k=>k))throw new Error("You must enable at least one login method");return{id:e.id,name:e.name,allowlistConfig:e.allowlistConfig,appearance:{logo:((h=t==null?void 0:t.appearance)==null?void 0:h.logo)??e.logoUrl,palette:xc({backgroundTheme:((u=t==null?void 0:t.appearance)==null?void 0:u.theme)??Ec.appearance.theme,accentHex:((C=t==null?void 0:t.appearance)==null?void 0:C.accentColor)??e.accentColor??Ec.appearance.accentColor}),showWalletLoginFirst:((b=t==null?void 0:t.appearance)==null?void 0:b.showWalletLoginFirst)??e.showWalletLoginFirst},loginMethods:{wallet:n,email:o,sms:r,google:i,twitter:a,discord:l,github:s,apple:p},legal:{termsAndConditionsUrl:((m=t==null?void 0:t.legal)==null?void 0:m.termsAndConditionsUrl)??e.termsAndConditionsUrl,privacyPolicyUrl:((g=t==null?void 0:t.legal)==null?void 0:g.privacyPolicyUrl)??e.privacyPolicyUrl},render:{inDialog:((L=t==null?void 0:t._render)==null?void 0:L.inDialog)??!0,inParentNodeId:((S=t==null?void 0:t._render)==null?void 0:S.inParentNodeId)??null}}}var zn=require("react");var Vn=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;default:throw new Error(`invalid wallet event type ${t}`)}}};var Pc=require("react/jsx-runtime"),$u=function(e){return()=>`id-${e++}`}(0);function qu(e){return typeof e.event=="string"&&/^privy:.+/.test(e.event)}function wr(e){return e.error!==void 0}var qo=new Vn;function Cr(e,t,o){let r=o.contentWindow;if(!r)throw new Error("iframe not initialized");return new Promise((n,i)=>{let a=$u();qo.enqueue(a,{resolve:n,reject:i}),r.postMessage({id:a,event:e,data:t},"*")})}function ju(e){switch(e.event){case"privy:iframe:ready":let t=qo.dequeue(e.event,e.id);return wr(e)?t.reject(new jt(e.error.type,e.error.message)):t.resolve(e.data);case"privy:wallet:create":let o=qo.dequeue(e.event,e.id);return wr(e)?o.reject(new jt(e.error.type,e.error.message)):o.resolve(e.data);case"privy:wallet:connect":let r=qo.dequeue(e.event,e.id);return wr(e)?r.reject(new jt(e.error.type,e.error.message)):r.resolve(e.data);case"privy:wallet:recover":let n=qo.dequeue(e.event,e.id);return wr(e)?n.reject(new jt(e.error.type,e.error.message)):n.resolve(e.data);case"privy:wallet:rpc":let i=qo.dequeue(e.event,e.id);return wr(e)?i.reject(new jt(e.error.type,e.error.message)):i.resolve(e.data)}}function Tc(e){let t=(0,zn.useRef)(null);return(0,zn.useEffect)(()=>{let o=t.current;if(!o)return;function r(l){l&&l.origin===e.origin&&qu(l.data)&&ju(l.data)}let n={create(l){return Cr("privy:wallet:create",l,o)},connect(l){return Cr("privy:wallet:connect",l,o)},recover(l){return Cr("privy:wallet:recover",l,o)},rpc(l){return Cr("privy:wallet:rpc",l,o)}};window.addEventListener("message",r);let i=()=>e.onLoad(n),a=(...l)=>{console.error("privy iframe failed to load: ",...l),e.onLoadFailed()};return Na(()=>Cr("privy:iframe:ready",{},o)).then(i,a),()=>window.removeEventListener("message",r)},[t.current]),(0,Pc.jsx)("iframe",{ref:t,width:"0",height:"0",style:{display:"none",height:"0px",width:"0px"},src:Ir(e.origin,`/apps/${e.appId}/embedded-wallets`)})}var $n=require("react"),ta=(0,$n.createContext)({wallets:[]});function _c(){return(0,$n.useContext)(ta)}var xt=require("react/jsx-runtime");function Ku(e){return typeof e=="string"&&e.length===25}var Er;function Po(){if(!Er){let e=z.get(xo);return Promise.resolve(e||null)}return Er.getAccessToken()}var Ac,Ka=(e,t)=>Ac(e,t),Sc,Ya=(e,t)=>Sc(e,t),Yu=()=>{let t=new URLSearchParams(window.location.search).get("privy_token");if(!t)return;z.put(Ko,t);let o=new URL(window.location.href);o.searchParams.delete("privy_token"),window.history.pushState({},"",o)},kc=e=>{if(!Ku(e.appId))throw new A("Cannot initialize the Privy provider with an invalid Privy app ID");return Er||(Er=new So({appId:e.appId,apiUrl:e.apiUrl||kr})),(0,xt.jsx)(Zu,{...e,client:Er})},Zu=e=>{let t=e.client,[o,r]=(0,G.useState)(!1),[n,i]=(0,G.useState)(!1),[a,l]=(0,G.useState)(!1),[s,p]=(0,G.useState)(null),[f,h]=(0,G.useState)([]),u=(0,G.useRef)(f),[C,b]=(0,G.useState)(!1),[m,g]=(0,G.useState)(null),[L,S]=(0,G.useState)(!1),[k,M]=(0,G.useState)({status:"disconnected",connectError:null,connector:null,connectRetry:T}),[R,O]=(0,G.useState)(null),[I,Ee]=(0,G.useState)(null),[Q,ge]=(0,G.useState)({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}),[le,Y]=(0,G.useState)(ea(Q,e.config)),[me,K]=(0,G.useState)(!0),[V,oe]=(0,G.useState)({}),[Ge,Xt]=(0,G.useState)(null),ce=c=>{c&&g(c),r(!0),t.createAnalyticsEvent("modal_open",{initialScreen:c})},dt=c=>{let d=e.createPrivyWalletOnLogin===!0;oe({login:{promptCreatePrivyWalletFlow:d}}),d&&K(!0),ce(c)};(0,G.useEffect)(()=>{if(!I||!s){t.connectors.removeEmbeddedWalletConnector();return}let c=s==null?void 0:s.linkedAccounts.filter(d=>d.type==="wallet"&&d.walletClient==="privy");if(c&&c.length>0){let d=c[0].address;t.connectors.addEmbeddedWalletConnector(I,d)}},[I,s]),(0,G.useEffect)(()=>{async function c(){let d=await t.getServerConfig();ge(d),d.customApiUrl&&t.updateApiUrl(d.customApiUrl),t.connectors.initialize();let v=Te();Yu();let P=await t.getAuthenticatedUser();l(!!P),p(P),i(!0),Ge==null||Ge(),v&&P&&S(!0),Tr()}c()},[t,Ge,n]),(0,G.useEffect)(()=>{let c=ea(Q,e.config);Y(c)},[e.config,Q]);let Te=()=>{let c=new URLSearchParams(window.location.search),d=c.get("privy_oauth_code"),v=c.get("privy_oauth_state"),P=c.get("privy_oauth_provider");return d&&v&&P?(t.startAuthFlow(new Mt(P,d,v)),dt("AWAITING_OAUTH_SCREEN"),!0):!1},pt=async(c,d,v)=>{let P=t.connectors.createWalletConnector(c,d);vo(P,v)};async function vo(c,d){if(!c)return M({status:"disconnected",connectError:new J("Unable to connect to wallet."),connector:null,connectRetry:T}),d==null?void 0:d(null);M({connector:c,status:"connecting",connectError:null,connectRetry:()=>vo(c,d)});try{let v=await c.connect({showPrompt:!0});return M(P=>({...P,status:"connected",connectError:null,connectRetry:T})),d==null?void 0:d(v)}catch(v){return v instanceof Qe?console.error(v.cause?v.cause:v.message):console.error(v),M(P=>({...P,status:"disconnected",connectError:v})),d==null?void 0:d(null)}}let bo=c=>{if(c===null)throw new A("Error connecting to wallet.");t.startAuthFlow(new to(c))},Tr=()=>{let c=new URLSearchParams(window.location.search),d=c.get("privy_connector"),v=c.get("privy_wallet_client");if(!d||!v)return;if(v==="phantom"&&!Xe()&&dt("LOGIN_FAILED_SCREEN"),!t.connectors)throw new A("Connector not initialized");ce("AWAITING_CONNECTION");let P=new URL(window.location.href);P.searchParams.delete("privy_connector"),P.searchParams.delete("privy_wallet_client"),window.history.pushState({},"",P),pt(d,v,bo)};(0,G.useEffect)(()=>{n&&a&&s===null&&t.getAuthenticatedUser().then(p)},[n,a,s,t]);let jo=()=>{S(!0),ce("LINK_WALLET_SCREEN")},Pr=c=>{if(!a||!s)return!1;for(let d of s.linkedAccounts)if(d.type==="wallet"&&d.address===c.address)return!0;return!1},_r=async c=>{if(!t.connectors)throw new A("Connector not initialized");S(!!a);let d=t.connectors.findWalletConnector(c.connectorType,c.walletClientType)||null;vo(d,bo),dt("AWAITING_CONNECTION")},de=(c,d)=>{if(!t.connectors)throw new A("Connector not initialized");S(!!a),pt(c,d,bo)},jn=()=>{h(c=>{let d=t.connectors.wallets.map(v=>({...v,linked:Pr(v),loginOrLink:async()=>{if(!await v.isConnected())throw new A("Wallet is not connected");if(v.connectorType==="embedded"&&v.walletClientType==="privy")throw new A("Cannot link or login with embedded wallet");_r(v)},unlink:async()=>{if(!a)throw new A("User is not authenticated.");if(v.connectorType==="embedded"&&v.walletClientType==="privy")throw new A("Cannot unlink an embedded wallet");let P=await t.unlinkWallet(v.address);p(P)}}));return Or(c,d)?c:d})};(0,G.useEffect)(()=>{jn()},[s==null?void 0:s.linkedAccounts]),(0,G.useEffect)(()=>{n&&(jn(),t.connectors.on("walletsUpdated",jn))},[n]);let Rc=()=>{ce(a?"CONNECT_ONLY_AUTHENTICATED_SCREEN":"CONNECT_ONLY_LANDING_SCREEN")};(0,G.useEffect)(()=>{if(!f[0])return;let c=f[0],d=u.current.find(P=>P.address===c.address),v=s==null?void 0:s.linkedAccounts.find(P=>P.type==="wallet"&&P.address===c.address);if(!d&&v){let P=Object.assign({},s);P.wallet=v&&{address:v.address,chainType:v.chainType,chainId:v.chainId,walletClient:v.walletClient},p(P)}u.current=f},[f]);let Kn={ready:n,authenticated:a,user:s,walletConnectors:t.connectors,connectWallet:Rc,linkWallet:jo,linkEmail:()=>{S(!0),ce("LINK_EMAIL_SCREEN")},linkPhone:()=>{S(!0),ce("LINK_PHONE_SCREEN")},linkGoogle:async()=>{await wo.initLoginWithOAuth("google")},linkTwitter:async()=>{await wo.initLoginWithOAuth("twitter")},linkDiscord:async()=>{await wo.initLoginWithOAuth("discord")},linkGithub:async()=>{await wo.initLoginWithOAuth("github")},linkApple:async()=>{await wo.initLoginWithOAuth("apple")},login:async()=>{if(n||(await new Promise(c=>{Xt(()=>c)}),Xt(null)),a){console.warn("Attempted to log in, but user is already logged in. Use a `link` helper instead.");return}dt()},logout:async()=>{await t.logout(),p(null),l(!1),g(null),S(!1),r(!1)},getAccessToken:()=>t.getAccessToken(),getEthereumProvider:()=>{if(!s||!s.wallet)return new X;let c=f.find(v=>s.wallet&&v.address===s.wallet.address),d=t.connectors.walletConnectors.find(v=>v.wallets.find(P=>P.address===(c==null?void 0:c.address)));return!c||!d?new X:d.proxyProvider},getEthersProvider:()=>{if(!s||!s.wallet)return new qn.Web3Provider(new et(new X));let c=f.find(v=>s.wallet&&v.address===s.wallet.address),d=t.connectors.walletConnectors.find(v=>v.wallets.find(P=>P.address===(c==null?void 0:c.address)));return!c||!d?new qn.Web3Provider(new et(new X)):new qn.Web3Provider(new et(d.proxyProvider))},getWeb3jsProvider:()=>{if(!s||!s.wallet)return new Bt(new X);let c=f.find(v=>s.wallet&&v.address===s.wallet.address),d=t.connectors.walletConnectors.find(v=>v.wallets.find(P=>P.address===(c==null?void 0:c.address)));return!c||!d?new Bt(new X):new Bt(d.proxyProvider)},unlinkWallet:async c=>{let d=await t.unlinkWallet(c);return p(d),d},unlinkEmail:async c=>{let d=await t.unlinkEmail(c);return p(d),d},unlinkPhone:async c=>{let d=await t.unlinkPhone(c);return p(d),d},unlinkGoogle:async c=>{let d=await t.unlinkOAuth("google",c);return p(d),d},unlinkTwitter:async c=>{let d=await t.unlinkOAuth("twitter",c);return p(d),d},unlinkDiscord:async c=>{let d=await t.unlinkOAuth("discord",c);return p(d),d},unlinkGithub:async c=>{let d=await t.unlinkOAuth("github",c);return p(d),d},unlinkApple:async c=>{let d=await t.unlinkOAuth("apple",c);return p(d),d},setActiveWallet:async c=>{let d=f.find(P=>(0,xr.getAddress)(P.address)===(0,xr.getAddress)(c)),v=s==null?void 0:s.linkedAccounts.find(P=>P.type==="wallet"&&(0,xr.getAddress)(P.address)===(0,xr.getAddress)(c));if(!d||!await d.isConnected())O(c),jo();else if(!d.linked)d.loginOrLink();else{let P=Object.assign({},s);P.wallet=v&&{address:v.address,chainType:v.chainType,chainId:v.chainId,walletClient:v.walletClient},p(P)}},forkSession:()=>t.forkSession(),createWallet:()=>new Promise((c,d)=>{if(!a||!s){d(new Error("User must be authenticated before creating a Privy wallet"));return}if(ee(s)){d(new Error("Only one Privy wallet per user is currently allowed"));return}K(!0),oe({createWallet:{onSuccess:c,onFailure:d,callAuthOnSuccessOnClose:!1}}),ce("EMBEDDED_WALLET_SCREEN")}),signMessage:(c,d)=>new Promise((v,P)=>{if(!a||!s){P(new Error("User must be authenticated before signing with a Privy wallet"));return}if(!ee(s)){P(new Error("Must have a Privy wallet before signing"));return}if(typeof c!="string"||c.length<1){P(new Error("Message must be a non-empty string"));return}K(!0);let Yn={message:c,onSuccess:v,onFailure:P,uiOptions:d||{}},Zn={onCompleteNavigateTo:"EMBEDDED_WALLET_SIGN_REQUEST_SCREEN",onFailure:P};oe({signMessage:Yn,connectWallet:Zn}),ce("EMBEDDED_WALLET_CONNECTING_SCREEN")}),sendTransaction:(c,d)=>new Promise(async(v,P)=>{if(!a||!s){P(new Error("User must be authenticated before signing with a Privy wallet"));return}if(!ee(s)){P(new Error("Must have a Privy wallet before signing"));return}K(!0);let Yn={transactionRequest:c,onSuccess:v,onFailure:P,uiOptions:d||{}},Zn={onCompleteNavigateTo:"EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN",onFailure:P};oe({connectWallet:Zn,sendTransaction:Yn}),ce("EMBEDDED_WALLET_CONNECTING_SCREEN")}),exportWallet:()=>new Promise((c,d)=>{if(!a||!s){d(new Error("User must be authenticated before exporting their Privy wallet"));return}if(!ee(s)){d(new Error("Must have a Privy wallet before exporting"));return}K(!0);let P={onCompleteNavigateTo:"EMBEDDED_WALLET_KEY_EXPORT_SCREEN",onFailure:d},Ar={appId:e.appId,origin:t.apiUrl,onSuccess:c,onFailure:d};oe({keyExport:Ar,connectWallet:P}),ce("EMBEDDED_WALLET_CONNECTING_SCREEN")})};Ac=Kn.signMessage,Sc=Kn.sendTransaction;let wo=(()=>({isLinking:L,linkingHint:R,walletConnectionStatus:k,getAuthFlow:()=>t.authFlow,getAuthMeta:()=>{var c;return(c=t.authFlow)==null?void 0:c.meta},closePrivyModal:(c={shouldCallAuthOnSuccess:!0})=>{var v;let d=n&&a&&s;c.shouldCallAuthOnSuccess&&d&&((v=e.onSuccess)==null||v.call(e,s,C)),t.authFlow=void 0,O(null),g(null),S(!1),b(!1),r(!1),t.createAnalyticsEvent("modal_closed")},connectWallet:pt,initLoginWithWallet:de,loginWithWallet:async()=>{if(!(t.authFlow instanceof to))throw new A("Must initialize SIWE flow first.");let c,d;L?c=await t.link():{user:c,isNewUser:d}=await t.authenticate(),p(c||s||null),b(d||!1),l(!0)},initLoginWithOAuth:async c=>{t.startAuthFlow(new Mt(c));let d=await t.authFlow.getAuthorizationUrl();d&&d.url&&window.location.assign(d.url)},loginWithOAuth:async()=>{if(!(t.authFlow instanceof Mt))throw new A("Must initialize OAuth flow before calling loginWithOAuth");let c,d;n&&a?c=await t.link():{user:c,isNewUser:d}=await t.authenticate(),p(c),b(d||!1),l(!0)},initLoginWithEmail:async c=>{let d=new eo(c);t.startAuthFlow(d),await d.sendCodeEmail()},initLoginWithSms:async c=>{let d=new oo(c);t.startAuthFlow(d),await d.sendSmsCode()},resendEmailCode:async()=>{var c;await((c=t.authFlow)==null?void 0:c.sendCodeEmail())},resendSmsCode:async()=>{var c;await((c=t.authFlow)==null?void 0:c.sendSmsCode())},loginWithCode:async c=>{if(t.authFlow instanceof eo)t.authFlow.meta.emailCode=c.trim();else if(t.authFlow instanceof oo)t.authFlow.meta.smsCode=c.trim();else throw new A("Must initialize a passwordless code flow first");let d,v;L?d=await t.link():{user:d,isNewUser:v}=await t.authenticate(),p(d||s||null),b(v||!1),l(!0)},refreshUser:async()=>{let c=await t.getAuthenticatedUser();return p(c),c},walletProxy:I,createAnalyticsEvent:(c,d,v)=>t.createAnalyticsEvent(c,d,v),getUsdTokenPrice:c=>t.getUsdTokenPrice(c),recoverEmbeddedWallet:c=>new Promise((d,v)=>{if(!a||!s){v(new Error("User must be authenticated before recovering the Privy wallet"));return}if(!ee(s)){v(new Error("Must have a Privy wallet in order to recover it"));return}K(!0),oe({recoverWallet:{onCompleteNavigateTo:c,onFailure:v,onSuccess:d}}),ce("EMBEDDED_WALLET_RECOVERY_SCREEN")})}))(),Wc=(0,G.useMemo)(()=>({wallets:f}),[f]);return(0,xt.jsx)(fi.Provider,{value:Kn,children:(0,xt.jsxs)(ta.Provider,{value:Wc,children:[e.children,(0,xt.jsxs)(hi.Provider,{value:wo,children:[(0,xt.jsx)(gc,{theme:{...le.appearance.palette||{}}}),(0,xt.jsx)(os,{appConfig:le,data:V,setModalData:oe,initialScreen:m,visible:o,authenticated:a,children:o&&(0,xt.jsx)(wc,{})}),me&&(0,xt.jsx)(Tc,{appId:e.appId,origin:t.apiUrl,onLoad:Ee,onLoadFailed:()=>null})]})]})})};0&&(module.exports={AsExternalProvider,ConnectorManager,PrivyClient,PrivyProvider,PrivyProxyProvider,VERSION,WalletConnector,getAccessToken,usePrivy,useWallets});