@privy-io/react-auth 1.26.0-beta.7 → 1.26.0-beta.8

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 Ac=Object.create;var kr=Object.defineProperty;var Sc=Object.getOwnPropertyDescriptor;var kc=Object.getOwnPropertyNames;var Rc=Object.getPrototypeOf,Wc=Object.prototype.hasOwnProperty;var Ic=(e,t)=>{for(var o in t)kr(e,o,{get:t[o],enumerable:!0})},Zi=(e,t,o,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of kc(t))!Wc.call(e,n)&&n!==o&&kr(e,n,{get:()=>t[n],enumerable:!(r=Sc(t,n))||r.enumerable});return e};var C=(e,t,o)=>(o=e!=null?Ac(Rc(e)):{},Zi(t||!e||!e.__esModule?kr(o,"default",{value:e,enumerable:!0}):o,e)),Nc=e=>Zi(kr({},"__esModule",{value:!0}),e);var $u={};Ic($u,{AsExternalProvider:()=>mt,ConnectorManager:()=>_o,PrivyClient:()=>Ao,PrivyProvider:()=>Pc,PrivyProxyProvider:()=>Z,VERSION:()=>Wr,WalletConnector:()=>ke,getAccessToken:()=>To,usePrivy:()=>F,useWallets:()=>xc});module.exports=Nc($u);var Tr=require("@ethersproject/address"),Yi=require("@ethersproject/providers"),H=require("react");var _=()=>{throw new Error("You need to wrap your application with the <PrivyProvider> initialized with your app id.")};var Qi=C(require("axios")),Xe=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}]`:""}`}},wo=class extends Xe{constructor(o,r,n,i,a){super(n,i,a);this.type=o;this.status=r}},E=class extends Xe{constructor(o,r,n){super(o,r,n);this.type="client_error"}};var re=class extends Xe{constructor(o,r,n){super(o,r,n);this.type="connector_error"}},le=e=>{if(e instanceof Xe)return e;if(!Qi.default.isAxiosError(e))return He(e);if(!e.response)return new wo("api_error",null,e.message,e);let{type:t,message:o,error:r,code:n}=e.response.data;return new wo(t||"ApiError",e.response.status,o||r,e,n)},He=e=>e instanceof Xe?e:e instanceof Error?new E(e.message,e):new E(`Internal error: ${e}`);var Ji=()=>"/api/v1/sessions",Xi=()=>"/api/v1/sessions/logout",ea=()=>"/api/v1/sessions/fork",ta=()=>"/api/v1/sessions/fork/recover",oa=()=>"/api/v1/siwe/init",ra=()=>"/api/v1/siwe/authenticate",na=()=>"/api/v1/siwe/link",ia=()=>"/api/v1/passwordless/init",aa=()=>"/api/v1/passwordless/authenticate",sa=()=>"/api/v1/passwordless/link",la=()=>"/api/v1/passwordless_sms/init",ca=()=>"/api/v1/passwordless_sms/authenticate",da=()=>"/api/v1/passwordless_sms/link",pa=()=>"/api/v1/oauth/init",ua=()=>"/api/v1/oauth/authenticate",ma=()=>"/api/v1/oauth/link",ha=()=>"/api/v1/siwe/unlink",fa=()=>"/api/v1/passwordless/unlink",ya=()=>"/api/v1/passwordless_sms/unlink",ga=()=>"/api/v1/oauth/unlink",va=()=>"/api/v1/analytics_events";var eo=class{constructor(t){this.meta={email:t}}async authenticate(){if(!this.api)throw new E("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new E("Email and email code must be set prior to calling authenticate.");try{let t=aa(),o=await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode});return{user:o.data.user,token:o.data.token,refresh_token:o.data.refresh_token,is_new_user:o.data.is_new_user}}catch(t){throw le(t)}}async link(){if(!this.api)throw new E("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new E("Email and email code must be set prior to calling authenticate.");try{let t=sa();return(await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode})).data}catch(t){throw le(t)}}async sendCodeEmail(t){if(!this.api)throw new E("Auth flow has no API instance");if(t&&(this.meta.email=t),!this.meta.email)throw new E("Email must be set when initialzing authentication.");try{let o=ia();return(await this.api.post(o,{email:this.meta.email})).data}catch(o){throw le(o)}}};var Dt=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 E("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new E("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling authenticate.");if(this.meta.authorizationCode==="undefined")throw new E("User denied confirmation during OAuth flow");try{let t=ua(),o=await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode});return{user:o.data.user,token:o.data.token,refresh_token:o.data.refresh_token,is_new_user:o.data.is_new_user}}catch(t){throw le(t)}}async link(){if(!this.api)throw new E("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new E("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling link.");if(this.meta.authorizationCode==="undefined")throw new E("User denied confirmation during OAuth flow");try{let t=ma();return(await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode})).data}catch(t){throw le(t)}}async getAuthorizationUrl(){var t;if(!this.api)throw new E("Auth flow has no API instance");if(!this.meta.provider)throw new E("Provider must be set when initialzing OAuth authentication.");try{let o=pa();return(await this.api.post(o,{provider:this.meta.provider,redirect_to:window.location.href},{baseURL:(t=this.api)==null?void 0:t.fallbackApiUrl})).data}catch(o){throw le(o)}}};var Tt=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 Ac=Object.create;var kr=Object.defineProperty;var Sc=Object.getOwnPropertyDescriptor;var kc=Object.getOwnPropertyNames;var Rc=Object.getPrototypeOf,Wc=Object.prototype.hasOwnProperty;var Ic=(e,t)=>{for(var o in t)kr(e,o,{get:t[o],enumerable:!0})},Zi=(e,t,o,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of kc(t))!Wc.call(e,n)&&n!==o&&kr(e,n,{get:()=>t[n],enumerable:!(r=Sc(t,n))||r.enumerable});return e};var C=(e,t,o)=>(o=e!=null?Ac(Rc(e)):{},Zi(t||!e||!e.__esModule?kr(o,"default",{value:e,enumerable:!0}):o,e)),Nc=e=>Zi(kr({},"__esModule",{value:!0}),e);var $u={};Ic($u,{AsExternalProvider:()=>mt,ConnectorManager:()=>_o,PrivyClient:()=>Ao,PrivyProvider:()=>Pc,PrivyProxyProvider:()=>Y,VERSION:()=>Wr,WalletConnector:()=>ke,getAccessToken:()=>To,usePrivy:()=>F,useWallets:()=>xc});module.exports=Nc($u);var Tr=require("@ethersproject/address"),Yi=require("@ethersproject/providers"),H=require("react");var _=()=>{throw new Error("You need to wrap your application with the <PrivyProvider> initialized with your app id.")};var Qi=C(require("axios")),Xe=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}]`:""}`}},wo=class extends Xe{constructor(o,r,n,i,a){super(n,i,a);this.type=o;this.status=r}},E=class extends Xe{constructor(o,r,n){super(o,r,n);this.type="client_error"}};var re=class extends Xe{constructor(o,r,n){super(o,r,n);this.type="connector_error"}},le=e=>{if(e instanceof Xe)return e;if(!Qi.default.isAxiosError(e))return He(e);if(!e.response)return new wo("api_error",null,e.message,e);let{type:t,message:o,error:r,code:n}=e.response.data;return new wo(t||"ApiError",e.response.status,o||r,e,n)},He=e=>e instanceof Xe?e:e instanceof Error?new E(e.message,e):new E(`Internal error: ${e}`);var Ji=()=>"/api/v1/sessions",Xi=()=>"/api/v1/sessions/logout",ea=()=>"/api/v1/sessions/fork",ta=()=>"/api/v1/sessions/fork/recover",oa=()=>"/api/v1/siwe/init",ra=()=>"/api/v1/siwe/authenticate",na=()=>"/api/v1/siwe/link",ia=()=>"/api/v1/passwordless/init",aa=()=>"/api/v1/passwordless/authenticate",sa=()=>"/api/v1/passwordless/link",la=()=>"/api/v1/passwordless_sms/init",ca=()=>"/api/v1/passwordless_sms/authenticate",da=()=>"/api/v1/passwordless_sms/link",pa=()=>"/api/v1/oauth/init",ua=()=>"/api/v1/oauth/authenticate",ma=()=>"/api/v1/oauth/link",ha=()=>"/api/v1/siwe/unlink",fa=()=>"/api/v1/passwordless/unlink",ya=()=>"/api/v1/passwordless_sms/unlink",ga=()=>"/api/v1/oauth/unlink",va=()=>"/api/v1/analytics_events";var eo=class{constructor(t){this.meta={email:t}}async authenticate(){if(!this.api)throw new E("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new E("Email and email code must be set prior to calling authenticate.");try{let t=aa(),o=await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode});return{user:o.data.user,token:o.data.token,refresh_token:o.data.refresh_token,is_new_user:o.data.is_new_user}}catch(t){throw le(t)}}async link(){if(!this.api)throw new E("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new E("Email and email code must be set prior to calling authenticate.");try{let t=sa();return(await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode})).data}catch(t){throw le(t)}}async sendCodeEmail(t){if(!this.api)throw new E("Auth flow has no API instance");if(t&&(this.meta.email=t),!this.meta.email)throw new E("Email must be set when initialzing authentication.");try{let o=ia();return(await this.api.post(o,{email:this.meta.email})).data}catch(o){throw le(o)}}};var Ot=class{constructor(t,o,r){this.meta={provider:t},this.meta.authorizationCode=o,this.meta.stateCode=r}isActive(){return!!(this.meta.authorizationCode&&this.meta.stateCode&&this.meta.provider)}async authenticate(){if(!this.api)throw new E("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new E("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling authenticate.");if(this.meta.authorizationCode==="undefined")throw new E("User denied confirmation during OAuth flow");try{let t=ua(),o=await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode});return{user:o.data.user,token:o.data.token,refresh_token:o.data.refresh_token,is_new_user:o.data.is_new_user}}catch(t){throw le(t)}}async link(){if(!this.api)throw new E("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new E("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling link.");if(this.meta.authorizationCode==="undefined")throw new E("User denied confirmation during OAuth flow");try{let t=ma();return(await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode})).data}catch(t){throw le(t)}}async getAuthorizationUrl(){var t;if(!this.api)throw new E("Auth flow has no API instance");if(!this.meta.provider)throw new E("Provider must be set when initialzing OAuth authentication.");try{let o=pa();return(await this.api.post(o,{provider:this.meta.provider,redirect_to:window.location.href},{baseURL:(t=this.api)==null?void 0:t.fallbackApiUrl})).data}catch(o){throw le(o)}}};var Tt=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 E("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign(),r=await this.api.post(ra(),{message:t,signature:o});return{user:r.data.user,token:r.data.token,refresh_token:r.data.refresh_token,is_new_user:r.data.is_new_user}}catch(t){throw le(t)}}async link(){if(!this.api)throw new E("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign();return(await this.api.post(na(),{message:t,signature:o})).data}catch(t){throw le(t)}}async sign(){if(!this.api)throw new E("Auth flow has no API instance");if(this.preparedMessage||await this.buildSiweMessage(),!this.preparedMessage)throw new E("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 E("Auth flow has no API instance");let t=this.wallet.address,o=this.wallet.chainId.replace("eip155:",""),r=await this.api.post(oa(),{address:t});return this.preparedMessage=this.prepareMessage(o,t,r.data.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 E("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new E("phone number and sms code must be set prior to calling authenticate.");try{let t=ca(),o=await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode});return{user:o.data.user,token:o.data.token,refresh_token:o.data.refresh_token,is_new_user:o.data.is_new_user}}catch(t){throw le(t)}}async link(){if(!this.api)throw new E("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new E("phone number and sms code must be set prior to calling authenticate.");try{let t=da();return(await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode})).data}catch(t){throw le(t)}}async sendSmsCode(t){if(!this.api)throw new E("Auth flow has no API instance");if(t&&(this.meta.phoneNumber=t),!this.meta.phoneNumber)throw new E("phone nNumber must be set when initialzing authentication.");try{let o=la();return(await this.api.post(o,{phoneNumber:this.meta.phoneNumber})).data}catch(o){throw le(o)}}};function Pt(e){return new Date(e*1e3)}function Lc(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:Pt(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:Pt(o.verified_at)};t.push(i);break;case"phone":let a={number:o.phoneNumber,type:o.type,verifiedAt:Pt(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:Pt(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:Pt(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:Pt(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:Pt(o.verified_at)};t.push(f);break;case"apple_oauth":let h={subject:o.subject,email:o.email,type:o.type,verifiedAt:Pt(o.verified_at)};t.push(h);break;default:console.warn(`Unrecognized account type: ${r}. Please consider upgrading the Privy SDK.`)}}return t}function Ut(e,t){return e.sort((o,r)=>r.verifiedAt.getTime()-o.verifiedAt.getTime()),e.find(o=>o.type===t)}var J=e=>e==null?void 0:e.linkedAccounts.find(t=>t.type==="wallet"&&t.walletClient==="privy");function _t(e){if(!e)return null;let t=Lc(e.linked_accounts),o=Ut(t,"wallet"),r=Ut(t,"email"),n=Ut(t,"phone"),i=Ut(t,"google_oauth"),a=Ut(t,"twitter_oauth"),l=Ut(t,"discord_oauth"),s=Ut(t,"github_oauth"),p=Ut(t,"apple_oauth");return{id:e.id,createdAt:Pt(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 ri=require("@ethersproject/address"),is=C(require("eventemitter3"));var ba="1.26.0-beta.7";var et="4df5e2316331463a9130964bd6078dfa",Rr="https://auth.privy.io",wa=1e4,pt=1400,Wr=ba;var Co="privy:token",Ir="privy:refresh_token",Zo="privy:session_transfer_token";var qn="privy:connections",Ca="walletconnect",xa=3e4,Ve=1;var $n=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)}},jn=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 Oc(){return typeof window<"u"&&window.localStorage?new jn:new $n}var X=Oc();var Ea=require("libphonenumber-js/min");var Ta=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,}))$/),Pa=e=>(0,Ea.isPossiblePhoneNumber)(String(e),"US"),_a=(e,t)=>{let o=e.slice(0),r=[];for(;o.length;)r.push(o.splice(0,t));return r},Bt=(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}`},Dc=e=>new Promise(t=>setTimeout(t,e)),Aa=(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 Dc(o);a||i(new Error("Exceeded max attempts before resolving function"))})},Nr=(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 Kn=e=>e.replace(/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g,""),Qo=e=>typeof e=="string"?e:"0x"+e.toString(16);async function Sa(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=[];Lr()&&i.push("metamask"),ut()&&i.push("phantom"),o.ethereum&&o.ethereum.isBraveWallet&&i.push("brave"),r(i)}})}function Yn(e){return`eip155:${String(Number(e))}`}var Ua=C(require("@coinbase/wallet-sdk"));var Jo=require("react/jsx-runtime"),ze=({style:e,...t})=>(0,Jo.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,Jo.jsx)("rect",{width:"1024",height:"1024",fill:"#0052FF",rx:100,ry:100}),(0,Jo.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 St=require("@ethersproject/address"),Jn=require("@ethersproject/providers"),Da=C(require("eventemitter3"));var Wa=require("@ethersproject/bytes"),Ia=require("@ethersproject/providers"),Na=require("@ethersproject/strings"),La=C(require("eventemitter3"));var Uc=["eth_sign","eth_populateTransactionRequest","eth_signTransaction","personal_sign"],ka=e=>Uc.includes(e);var Ra=require("@ethersproject/logger");var xo=class extends re{constructor(){super("Wallet timeout");this.type="wallet_error"}},ro=class extends re{constructor(){super("User rejected connection");this.type="wallet_error"}},qe=e=>{if(e instanceof re)return e;if((e==null?void 0:e.code)&&(e==null?void 0:e.reason)){let t=new Eo(e);return e.code===Ra.ErrorCode.ACTION_REJECTED&&(t.details=oo.E4001_USER_REJECTED_REQUEST),t}return e!=null&&e.code?new Eo(e):new re("Unknown connector error",e)},Zn=class extends Xe{constructor(o,r,n){super(o);this.type="provider_error";this.code=r,this.data=n}},Eo=class extends Zn{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))}},Bc={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}},Fc={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}},Gc={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},...Gc,...Fc},At={...Bc,...oo};var Hc=12e4,Qn=(e=new xo,t=Hc)=>new Promise((o,r)=>setTimeout(()=>{r(e)},t)),Z=class{constructor(t){this.removeListener=(t,o)=>{if(this.walletProvider)return this.walletProvider.removeListener(t,o)};this.setWalletProvider=t=>{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 re(`A wallet request of type ${t.method} was made before setting a wallet provider.`);return Promise.race([this.walletProvider.request(t),Qn()]).catch(o=>{throw qe(o)})}},no=class extends Error{constructor(o,r,n){super(o);this.code=r,this.data=n}},Mr=class extends La.default{constructor(o,r,n=1){super();this.walletProxy=o,this.address=r,this.chainId=n,this.infuraProvider=new Ia.InfuraProvider(n,et)}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 To()||!this.address)throw new no("Disconnected",4900);return(await Oa(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,Wa.isHexString)(r)?(0,Na.toUtf8String)(r):r;return await Ma(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:Qo(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 Qo(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(ka(o.method)){let r=await To();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 To();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}}},mt=class extends Z{constructor(o){super(o)}},io=class extends Z{constructor(t){super(t)}sendAsync(t,o){throw new Error("sendAsync is no longer supported by EIP-1193. Use the request method instead.")}};var ke=class extends Da.default{constructor(o){super();this.onAccountsChanged=o=>{this.syncAccounts()};this.onChainChanged=o=>{this.wallets.forEach(r=>{r.chainId=Yn(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()=>(await this.syncAccounts(),!!this.wallets.find(i=>(0,St.getAddress)(i.address)===(0,St.getAddress)(o)));return{address:(0,St.getAddress)(o),chainId:r,connectedAt:Date.now(),walletClientType:this.walletClientType,connectorType:this.connectorType,isConnected:n,getEthereumProvider:()=>this.proxyProvider,getEthersProvider:()=>new Jn.Web3Provider(new mt(this.proxyProvider)),getWeb3jsProvider:()=>new io(this.proxyProvider),sign:async i=>{if(!await n())throw new re("Wallet is not currently connected.");return await this.sign(i)},disconnect:()=>{this.disconnect()}}}async syncAccounts(){if(!await this.isConnected())return;this.wallets=[];let o=await this.proxyProvider.request({method:"eth_chainId"}),r=Yn(o),n=await this.proxyProvider.request({method:"eth_accounts"});if(Array.isArray(n)&&n.length>0)for(let a of n)this.wallets.find(l=>(0,St.getAddress)(l.address)===(0,St.getAddress)(a))||this.wallets.push(this.buildConnectedWallet((0,St.getAddress)(a),r));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,St.getAddress)(n)===(0,St.getAddress)(r.address)))||null}async isConnected(){let o=await this.proxyProvider.request({method:"eth_accounts"});return o!==void 0&&Array.isArray(o)&&o.length>0}async sign(o){return await this.connect({showPrompt:!1}),new Jn.Web3Provider(new mt(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 Vc=e=>{let t=`https://mainnet.infura.io/v3/${et}`,o=1;return e.makeWeb3Provider(t,o)},Or,Dr=class extends ke{constructor(){super("coinbase_wallet");this.connectorType="coinbase_wallet";this.proxyProvider=new Z,this.subscribeListeners(),Or||(Or=new Ua.default({appName:"Privy",darkMode:!1,headlessMode:!1})),this.proxyProvider.setWalletProvider(Vc(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{if((await this.proxyProvider.request({method:"eth_requestAccounts"})).length===0)throw new re("Unable to retrieve accounts");this.connected=!0,await this.syncAccounts()}catch(o){throw qe(o)}}};var Xn=require("react/jsx-runtime"),Ft=({style:e,...t})=>(0,Xn.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,Xn.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:[Qo((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 zc=require("@ethersproject/address"),qc=require("@ethersproject/providers"),Ba=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(){var r;super("metamask");this.connectorType="injected";this.proxyProvider=new Z,this.subscribeListeners();let o=window;this.proxyProvider.setWalletProvider(o.ethereum),(r=o.ethereum.providers)==null||r.forEach(n=>{n.isMetaMask&&this.proxyProvider.setWalletProvider(n)}),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}get walletBranding(){return{name:"MetaMask",icon:be}}disconnect(){console.warn("Metamask does not support programmatic disconnect.")}async promptConnection(){try{!Ba.isMobile&&Lr()&&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 re("Unable to retrieve accounts");await this.syncAccounts()}catch(o){throw qe(o)}}};var $e=require("react/jsx-runtime"),ht=({style:e,...t})=>(0,$e.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,$e.jsx)("rect",{width:"28",height:"28",rx:"6",fill:"url(#paint0_linear_1765_9937)"}),(0,$e.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,$e.jsxs)("defs",{children:[(0,$e.jsxs)("linearGradient",{id:"paint0_linear_1765_9937",x1:"14",y1:"0",x2:"14",y2:"28",gradientUnits:"userSpaceOnUse",children:[(0,$e.jsx)("stop",{stopColor:"#534BB1"}),(0,$e.jsx)("stop",{offset:"1",stopColor:"#551BF9"})]}),(0,$e.jsxs)("linearGradient",{id:"paint1_linear_1765_9937",x1:"14.2976",y1:"5.06372",x2:"14.2976",y2:"23.5318",gradientUnits:"userSpaceOnUse",children:[(0,$e.jsx)("stop",{stopColor:"white"}),(0,$e.jsx)("stop",{offset:"1",stopColor:"white",stopOpacity:"0.82"})]})]})]});var Fr=class extends ke{constructor(){var r,n;super("phantom");this.connectorType="injected";this.proxyProvider=new Z,this.subscribeListeners();let o=window;this.proxyProvider.setWalletProvider(o.phantom.ethereum),(n=(r=o.phantom.ethereum)==null?void 0:r.providers)==null||n.forEach(i=>{i.isPhantom&&this.proxyProvider.setWalletProvider(i)}),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:ht}}disconnect(){console.warn("Phantom does not support programmatic disconnect.")}async promptConnection(){try{await this.proxyProvider.request({method:"eth_requestAccounts"}),await this.syncAccounts()}catch(o){throw qe(o)}}};var ns=C(require("@walletconnect/web3-provider")),er=require("react-device-detect");var tt=require("react");var Ga=require("react/jsx-runtime");function Fa(e){return(0,Ga.jsx)("link",{rel:"prefetch",href:e.src})}var Gr=require("react/jsx-runtime"),kt="LANDING",Ha=(0,tt.createContext)({ready:!1,app:null,currentScreen:kt,lastScreen:kt,navigate:_,navigateBack:_,setModalData:_}),Va=e=>{var f,h,u;let t=e.appConfig,o=e.authenticated,r=e.visible,[n,i]=(0,tt.useState)(e.initialScreen||kt),[a,l]=(0,tt.useState)(e.initialScreen||kt);(0,tt.useEffect)(()=>{o||i(kt)},[o]),(0,tt.useEffect)(()=>{r||(l(kt),i(kt))},[r]),(0,tt.useEffect)(()=>{e.initialScreen&&n===kt&&(i(e.initialScreen),l(e.initialScreen))},[e.initialScreen]);let s=e.initialScreen&&n===kt?e.initialScreen:n,p={ready:!!(t!=null&&t.id),app:t,data:e.data,setModalData:e.setModalData,currentScreen:s,lastScreen:a,navigate:w=>{l(n),i(w)},navigateBack:()=>{i(a)}};return(0,Gr.jsxs)(Ha.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)(Fa,{src:typeof t.appearance.logo=="string"?t.appearance.logo:t.appearance.logo.props.src}),e.children]})},b=()=>(0,tt.useContext)(Ha);var Rt=require("react/jsx-runtime"),Po=({style:e,...t})=>{let{app:o}=b();return(0,Rt.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,Rt.jsx)("rect",{width:"28",height:"28",rx:"3",fill:(o==null?void 0:o.appearance.palette.colorScheme)==="dark"?"#3396ff":"#141414"}),(0,Rt.jsx)("g",{clipPath:"url(#clip0_1765_9946)",children:(0,Rt.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,Rt.jsx)("defs",{children:(0,Rt.jsx)("clipPath",{id:"clip0_1765_9946",children:(0,Rt.jsx)("rect",{width:"20",height:"12.2531",fill:"white",transform:"translate(4 8)"})})})]})};var za={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 qa={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 $a={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 ja={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 Ka={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 Ya={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 Za={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 Qa={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 Ja=[za,qa,$a,ja,Ka,Ya,Za,Qa];var ei=require("@walletconnect/browser-utils"),Hr=require("react-device-detect");var Xo=e=>{let t;try{t=new URL(e).hostname}catch{return}for(let[o,r]of Object.entries(ti))if(r.hostname===t)return{walletClientType:o,entry:r}};var ti={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"}}},Xa=(e,t="md")=>`https://registry.walletconnect.com/v2/logo/${t}/${e}`;function es(e){return{name:e.displayName||"",universalLink:e.mobile.universal||"",deepLink:e.mobile.native||""}}function ts(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 os(e,t){return Hr.isAndroid?e:ts(e,es(t))}var oi=(e,t)=>{if(!e)return;if(Hr.isAndroid){(0,ei.saveMobileLinkInfo)({name:"Unknown",href:t||"wc:"});return}let o=ts(t||"wc:",es(e));(0,ei.saveMobileLinkInfo)({name:(e==null?void 0:e.displayName)||"",href:o})},rs=()=>{!Hr.isAndroid||window.open("wc:","_self")};var ao=class extends ke{constructor(o,r){super(o||"unknown");this.connectorType="wallet_connect";this.reconnectDelayMs=10;this.reconnectBackoff=2;this.proxyProvider=new Z,this.subscribeListeners(),o&&(this.walletEntry=ti[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:Xa(this.walletEntry.image_id)}:{name:Kn(((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])||Po}}async promptConnection(){return new Promise((o,r)=>{this.walletProvider.connector.on("disconnect",(i,a)=>{if(i){r(qe(i));return}if(a.params.some(l=>l.message==="Session Rejected")){this.setWalletProvider(this.replaceProvider()),r(new ro);return}r(new re("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(qe(i))}),(async()=>{var l;let i="",a=await Promise.race([this.enableProvider(),Qn()]);if(a.length>0&&(i=a[0]),!i||i==="")throw new re("Unable to retrieve address");if((l=this.walletProvider.walletMeta)!=null&&l.url){let s=Xo(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(),o()})().catch(i=>r(qe(i)))})}async sign(o){this.walletEntry&&oi(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)),er.isAndroid&&rs()})}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")),X.getKeys().forEach(o=>{o.startsWith("walletconnect")&&X.get(o).key===this.walletProvider.connector.session.key&&X.del(o)}),this.createOrRestoreProvider()}static generateStorageId(){return`${Ca}:${Math.random().toString(36).slice(2)}`}createOrRestoreProvider(o){var l,s;o||(o=ao.generateStorageId());let r=this.walletEntry||er.isAndroid?{qrcode:!1}:{},n={};for(let p of Ja){let f=(s=(l=p.rpcUrls.infura)==null?void 0:l.http)==null?void 0:s[0];f&&(n[p.id]=f+"/"+et)}let i=new ns.default({infuraId:et,storageId:o,pollingInterval:xa,rpc:n,...r}),a=this.walletEntry;return a&&(i.walletId=a.id),a?i.connector.on("display_uri",(p,f)=>{oi(a);let h=f.params[0],u=os(h,a);er.isAndroid?window.open(u,"_self"):window.open(u,"_self","noopener,noreferrer")}):er.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=Xo(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 Lr=()=>{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},ni=()=>{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,ut=()=>{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},so=()=>{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},ii=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,ri.getAddress)(t)).length):!1},_o=class extends is.default{constructor(){super();this.getEthereumProvider=()=>this.wallets[0]?this.wallets[0].getEthereumProvider():new Z;this.walletConnectors=[],this.initialized=!1,this.storedConnections=this.loadConnectionHistory()}get wallets(){let o=this.walletConnectors.flatMap(n=>n.wallets).sort((n,i)=>n.connectedAt&&i.connectedAt?i.connectedAt-n.connectedAt:0),r=o.findIndex(n=>n.address===(this.activeWallet?this.activeWallet:"unknown"));return r>=0&&o.unshift(o.splice(r,1)[0]),o}initialize(){this.initialized||(Sa().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}})),(so()||X.getKeys().find(o=>o.startsWith("-walletlink")))&&this.createWalletConnector("coinbase_wallet","coinbase_wallet"),this.restoreWalletConnectConnectors(),this.initialized=!0)}restoreWalletConnectConnectors(){typeof window>"u"||X.getKeys().forEach(o=>{var r,n;if(o.startsWith("walletconnect")){let i=(n=(r=X.get(o))==null?void 0:r.peerMeta)==null?void 0:n.url,a;if(i){let s=Xo(i);s!=null&&s.walletClientType&&(a=s.walletClientType)}let l=new ao(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 Ur(i);this.addWalletConnector(a)}}removeEmbeddedWalletConnector(){let o=this.findWalletConnector("embedded","privy");if(o){let r=this.walletConnectors.indexOf(o);delete this.walletConnectors[r],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 new Fr;case"metamask":default:return new Br}case"coinbase_wallet":return new Dr;case"wallet_connect":return new ao(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=X.get(qn);return r&&Array.isArray(r)&&r.map(a=>o(a)).every(Boolean)?r:[]}saveConnectionHistory(){let r=this.wallets.map(n=>({address:n.address,connectorType:n.connectorType,walletClientType:n.walletClientType,connectedAt:n.connectedAt}));X.put(qn,r)}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,ri.getAddress)(o),this.emit("walletsUpdated")}};var zr=C(require("axios"));var qr=class{constructor(t,o,r){this.appId=t,this.sdkVersion=Wr,this.client=o,this.defaults=r,this.fallbackApiUrl=o.fallbackApiUrl}async get(t,o,r=!0){try{return await zr.default.get(t,await this.buildConfig({headers:{"Cache-Control":"no-cache"},...o},r))}catch(n){throw le(n)}}async post(t,o,r,n=!0){try{return await zr.default.post(t,o,await this.buildConfig(r,n))}catch(i){throw le(i)}}async delete(t,o,r=!0){try{return await zr.default.delete(t,await this.buildConfig(o,r))}catch(n){throw le(n)}}async buildConfig(t,o=!0){if(t=Object.assign({withCredentials:!0},t||{}),t.headers=t.headers||{},t.headers["privy-app-id"]=this.appId,t.headers["privy-client"]=`react-auth:${this.sdkVersion}`,o){let r=await this.client.getAccessToken();r!==null&&(t.headers.authorization=`Bearer ${r}`)}return{...this.defaults,...t}}};function as(e){return e instanceof eo?"email":e instanceof to?"sms":e instanceof Tt?"siwe":e instanceof Dt?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 ss=C(require("jose")),Wt=class{static parse(t){try{return new Wt(t)}catch{return null}}constructor(t){this.value=t,this._decoded=ss.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 $c=30,$r=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=X.get(Co);return typeof t=="string"?new Wt(t).value:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get refreshToken(){try{let t=X.get(Ir);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get forkedToken(){try{let t=X.get(Zo);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=Wt.parse(this.token);return t!==null&&!t.isExpired($c)}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=as(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:_t(n),isNewUser:i}}catch(o){throw console.warn("Error authenticating session"),He(o)}}async _link(t){try{let o=await t.link();return _t(o)}catch(o){throw console.warn("Error linking account"),He(o)}}async _refresh(){if(!this.api)throw new E("Session has no API instance");if(!this.client)throw new E("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(Ji(),{refresh_token:o},{headers:{authorization:`Bearer ${t}`}},!1),r&&this.clearForkedToken();else if(r)n=await this.api.post(ta(),{refresh_token:r},{},!1),this.clearForkedToken();else return null;return this.storeToken(n.data.token),this.storeRefreshToken(n.data.refresh_token),_t(n.data.user)}catch(n){if(n instanceof wo&&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(Xi(),{refresh_token:this.refreshToken}))}catch{console.warn("Error destroying session")}this.destroyLocalState()}async _forkSession(){if(!this.api)throw new E("Session has no API instance");let t=this.refreshToken;try{let o=await this.api.post(ea(),{refresh_token:t});return this.storeToken(o.data.token),this.storeRefreshToken(o.data.refresh_token),o.data.new_session_refresh_token}catch(o){throw He(o)}}destroyLocalState(){this.storeToken(null),this.storeRefreshToken(null),this.clearForkedToken()}storeToken(t){typeof t=="string"?X.put(Co,t):X.del(Co)}storeRefreshToken(t){typeof t=="string"?X.put(Ir,t):X.del(Ir)}clearForkedToken(){X.del(Zo)}};var ai,Ao=class{constructor(t){this.apiUrl=t.apiUrl||Rr,this.fallbackApiUrl=this.apiUrl,this.timeout=t.timeout||wa,this.appId=t.appId,this.clientAnalyticsId=typeof window>"u"?null:crypto.randomUUID(),this.connectors=new _o,ai||(ai=new $r),this.session=ai,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 E("No auth flow in progress.");return this.session.authenticate(this.authFlow)}link(){if(!this.authFlow)throw new E("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(fa(),{address:t});return _t(o.data)}catch(o){throw He(o)}}async unlinkPhone(t){try{let o=await this.api.post(ya(),{phoneNumber:t});return _t(o.data)}catch(o){throw He(o)}}async unlinkWallet(t){try{let o=await this.api.post(ha(),{address:t});return _t(o.data)}catch(o){throw He(o)}}async unlinkOAuth(t,o){try{let r=await this.api.post(ga(),{provider:t,subject:o});return _t(r.data)}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(va(),{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=Wt.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.data.id,name:t.data.name,verificationKey:t.data.verification_key,logoUrl:t.data.logo_url||void 0,accentColor:t.data.accent_color||void 0,showWalletLoginFirst:t.data.show_wallet_login_first,allowlistConfig:{errorTitle:t.data.allowlist_config.error_title,errorDetail:t.data.allowlist_config.error_detail,errorCtaText:t.data.allowlist_config.cta_text,errorCtaLink:t.data.allowlist_config.cta_link},walletAuth:t.data.wallet_auth,emailAuth:t.data.email_auth,smsAuth:t.data.sms_auth,googleOAuth:t.data.google_oauth,twitterOAuth:t.data.twitter_oauth,discordOAuth:t.data.discord_oauth,githubOAuth:t.data.github_oauth,appleOAuth:t.data.apple_oauth,termsAndConditionsUrl:t.data.terms_and_conditions_url,privacyPolicyUrl:t.data.privacy_policy_url,customApiUrl:t.data.custom_api_url,createdAt:new Date(t.data.created_at*1e3),updatedAt:new Date(t.data.updated_at*1e3)}}catch(t){throw He(t)}}async getUsdTokenPrice(t){try{return(await this.api.get(`/api/v1/token_price?chainId=${t}`)).data.usd}catch{console.error(`Unable to fetch token price for chain with id ${t}`);return}}async forkSession(){return await this.session.forkSession()}};var y5=require("wicg-inert"),Un=require("body-scroll-lock"),Bn=require("react"),$i=require("react"),fc=C(require("react-dom")),Fn=C(require("styled-components"));var jr=require("react");var si=(0,jr.createContext)({isLinking:!1,linkingHint:null,walletConnectionStatus:null,getAuthMeta:_,getAuthFlow:_,closePrivyModal:_,connectWallet:_,initLoginWithWallet:_,loginWithWallet:_,loginWithCode:_,initLoginWithEmail:_,initLoginWithSms:_,resendEmailCode:_,resendSmsCode:_,initLoginWithOAuth:_,loginWithOAuth:_,refreshUser:_,walletProxy:null,createAnalyticsEvent:_,getUsdTokenPrice:_,recoverEmbeddedWallet:_}),W=()=>(0,jr.useContext)(si);var Kr=require("react");var li=(0,Kr.createContext)({ready:!1,authenticated:!1,user:null,walletConnectors:null,connectWallet:_,login:_,linkEmail:_,linkPhone:_,linkWallet:_,linkGoogle:_,linkTwitter:_,linkDiscord:_,linkGithub:_,linkApple:_,logout:_,getAccessToken:_,getEthereumProvider:_,getEthersProvider:_,getWeb3jsProvider:_,unlinkEmail:_,unlinkPhone:_,unlinkWallet:_,unlinkGoogle:_,unlinkTwitter:_,unlinkDiscord:_,unlinkGithub:_,unlinkApple:_,setActiveWallet:_,forkSession:_,createWallet:_,signMessage:_,sendTransaction:_,exportWallet:_}),F=()=>(0,Kr.useContext)(li);var Xr=C(require("styled-components"));var It=C(require("styled-components"));var Yr=C(require("styled-components")),Ht=require("react/jsx-runtime"),Zr=({success:e,fail:t})=>(0,Ht.jsxs)(Ht.Fragment,{children:[(0,Ht.jsx)(tr,{className:e?"success":t?"fail":""}),(0,Ht.jsx)(jc,{className:e?"success":t?"fail":""})]}),tr=Yr.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 E("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign(),r=await this.api.post(ra(),{message:t,signature:o});return{user:r.data.user,token:r.data.token,refresh_token:r.data.refresh_token,is_new_user:r.data.is_new_user}}catch(t){throw le(t)}}async link(){if(!this.api)throw new E("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign();return(await this.api.post(na(),{message:t,signature:o})).data}catch(t){throw le(t)}}async sign(){if(!this.api)throw new E("Auth flow has no API instance");if(this.preparedMessage||await this.buildSiweMessage(),!this.preparedMessage)throw new E("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 E("Auth flow has no API instance");let t=this.wallet.address,o=this.wallet.chainId.replace("eip155:",""),r=await this.api.post(oa(),{address:t});return this.preparedMessage=this.prepareMessage(o,t,r.data.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 E("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new E("phone number and sms code must be set prior to calling authenticate.");try{let t=ca(),o=await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode});return{user:o.data.user,token:o.data.token,refresh_token:o.data.refresh_token,is_new_user:o.data.is_new_user}}catch(t){throw le(t)}}async link(){if(!this.api)throw new E("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new E("phone number and sms code must be set prior to calling authenticate.");try{let t=da();return(await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode})).data}catch(t){throw le(t)}}async sendSmsCode(t){if(!this.api)throw new E("Auth flow has no API instance");if(t&&(this.meta.phoneNumber=t),!this.meta.phoneNumber)throw new E("phone nNumber must be set when initialzing authentication.");try{let o=la();return(await this.api.post(o,{phoneNumber:this.meta.phoneNumber})).data}catch(o){throw le(o)}}};function Pt(e){return new Date(e*1e3)}function Lc(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:Pt(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:Pt(o.verified_at)};t.push(i);break;case"phone":let a={number:o.phoneNumber,type:o.type,verifiedAt:Pt(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:Pt(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:Pt(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:Pt(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:Pt(o.verified_at)};t.push(f);break;case"apple_oauth":let h={subject:o.subject,email:o.email,type:o.type,verifiedAt:Pt(o.verified_at)};t.push(h);break;default:console.warn(`Unrecognized account type: ${r}. Please consider upgrading the Privy SDK.`)}}return t}function Dt(e,t){return e.sort((o,r)=>r.verifiedAt.getTime()-o.verifiedAt.getTime()),e.find(o=>o.type===t)}var J=e=>e==null?void 0:e.linkedAccounts.find(t=>t.type==="wallet"&&t.walletClient==="privy");function _t(e){if(!e)return null;let t=Lc(e.linked_accounts),o=Dt(t,"wallet"),r=Dt(t,"email"),n=Dt(t,"phone"),i=Dt(t,"google_oauth"),a=Dt(t,"twitter_oauth"),l=Dt(t,"discord_oauth"),s=Dt(t,"github_oauth"),p=Dt(t,"apple_oauth");return{id:e.id,createdAt:Pt(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 ri=require("@ethersproject/address"),is=C(require("eventemitter3"));var ba="1.26.0-beta.8";var et="4df5e2316331463a9130964bd6078dfa",Rr="https://auth.privy.io",wa=1e4,pt=1400,Wr=ba;var Co="privy:token",Ir="privy:refresh_token",Zo="privy:session_transfer_token";var qn="privy:connections",Ca="walletconnect",xa=3e4,Ve=1;var $n=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)}},jn=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 Oc(){return typeof window<"u"&&window.localStorage?new jn:new $n}var X=Oc();var Ea=require("libphonenumber-js/min");var Ta=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,}))$/),Pa=e=>(0,Ea.isPossiblePhoneNumber)(String(e),"US"),_a=(e,t)=>{let o=e.slice(0),r=[];for(;o.length;)r.push(o.splice(0,t));return r},Ut=(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}`},Dc=e=>new Promise(t=>setTimeout(t,e)),Aa=(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 Dc(o);a||i(new Error("Exceeded max attempts before resolving function"))})},Nr=(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 Kn=e=>e.replace(/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g,""),Qo=e=>typeof e=="string"?e:"0x"+e.toString(16);async function Sa(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=[];Lr()&&i.push("metamask"),ut()&&i.push("phantom"),o.ethereum&&o.ethereum.isBraveWallet&&i.push("brave"),r(i)}})}function Yn(e){return`eip155:${String(Number(e))}`}var Ua=C(require("@coinbase/wallet-sdk"));var Jo=require("react/jsx-runtime"),ze=({style:e,...t})=>(0,Jo.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,Jo.jsx)("rect",{width:"1024",height:"1024",fill:"#0052FF",rx:100,ry:100}),(0,Jo.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 At=require("@ethersproject/address"),Jn=require("@ethersproject/providers"),Da=C(require("eventemitter3"));var Wa=require("@ethersproject/bytes"),Ia=require("@ethersproject/providers"),Na=require("@ethersproject/strings"),La=C(require("eventemitter3"));var Uc=["eth_sign","eth_populateTransactionRequest","eth_signTransaction","personal_sign"],ka=e=>Uc.includes(e);var Ra=require("@ethersproject/logger");var xo=class extends re{constructor(){super("Wallet timeout");this.type="wallet_error"}},ro=class extends re{constructor(){super("User rejected connection");this.type="wallet_error"}},qe=e=>{if(e instanceof re)return e;if((e==null?void 0:e.code)&&(e==null?void 0:e.reason)){let t=new Eo(e);return e.code===Ra.ErrorCode.ACTION_REJECTED&&(t.details=oo.E4001_USER_REJECTED_REQUEST),t}return e!=null&&e.code?new Eo(e):new re("Unknown connector error",e)},Zn=class extends Xe{constructor(o,r,n){super(o);this.type="provider_error";this.code=r,this.data=n}},Eo=class extends Zn{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))}},Bc={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}},Fc={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}},Gc={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},...Gc,...Fc},Bt={...Bc,...oo};var Hc=12e4,Qn=(e=new xo,t=Hc)=>new Promise((o,r)=>setTimeout(()=>{r(e)},t)),Y=class{constructor(t){this.removeListener=(t,o)=>{if(this.walletProvider)return this.walletProvider.removeListener(t,o)};this.setWalletProvider=t=>{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 re(`A wallet request of type ${t.method} was made before setting a wallet provider.`);return Promise.race([this.walletProvider.request(t),Qn()]).catch(o=>{throw qe(o)})}},no=class extends Error{constructor(o,r,n){super(o);this.code=r,this.data=n}},Mr=class extends La.default{constructor(o,r,n=1){super();this.walletProxy=o,this.address=r,this.chainId=n,this.infuraProvider=new Ia.InfuraProvider(n,et)}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 To()||!this.address)throw new no("Disconnected",4900);return(await Oa(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,Wa.isHexString)(r)?(0,Na.toUtf8String)(r):r;return await Ma(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:Qo(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 Qo(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(ka(o.method)){let r=await To();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 To();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}}},mt=class extends Y{constructor(o){super(o)}},io=class extends Y{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 Da.default{constructor(o){super();this.onAccountsChanged=o=>{this.syncAccounts()};this.onChainChanged=o=>{this.wallets.forEach(r=>{r.chainId=Yn(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()=>(await this.syncAccounts(),!!this.wallets.find(i=>(0,At.getAddress)(i.address)===(0,At.getAddress)(o)));return{address:(0,At.getAddress)(o),chainId:r,connectedAt:Date.now(),walletClientType:this.walletClientType,connectorType:this.connectorType,isConnected:n,getEthereumProvider:()=>this.proxyProvider,getEthersProvider:()=>new Jn.Web3Provider(new mt(this.proxyProvider)),getWeb3jsProvider:()=>new io(this.proxyProvider),sign:async i=>{if(!await n())throw new re("Wallet is not currently connected.");return await this.sign(i)},disconnect:()=>{this.disconnect()}}}async syncAccounts(){if(!await this.isConnected())return;this.wallets=[];let o=await this.proxyProvider.request({method:"eth_chainId"}),r=Yn(o),n=await this.proxyProvider.request({method:"eth_accounts"});if(Array.isArray(n)&&n.length>0)for(let a of n)this.wallets.find(l=>(0,At.getAddress)(l.address)===(0,At.getAddress)(a))||this.wallets.push(this.buildConnectedWallet((0,At.getAddress)(a),r));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,At.getAddress)(n)===(0,At.getAddress)(r.address)))||null}async isConnected(){let o=await this.proxyProvider.request({method:"eth_accounts"});return o!==void 0&&Array.isArray(o)&&o.length>0}async sign(o){return await this.connect({showPrompt:!1}),new Jn.Web3Provider(new mt(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 Vc=e=>{let t=`https://mainnet.infura.io/v3/${et}`,o=1;return e.makeWeb3Provider(t,o)},Or,Dr=class extends ke{constructor(){super("coinbase_wallet");this.connectorType="coinbase_wallet";this.proxyProvider=new Y,this.subscribeListeners(),Or||(Or=new Ua.default({appName:"Privy",darkMode:!1,headlessMode:!1})),this.proxyProvider.setWalletProvider(Vc(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{if((await this.proxyProvider.request({method:"eth_requestAccounts"})).length===0)throw new re("Unable to retrieve accounts");this.connected=!0,await this.syncAccounts()}catch(o){throw qe(o)}}};var Xn=require("react/jsx-runtime"),Ft=({style:e,...t})=>(0,Xn.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,Xn.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:[Qo((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 zc=require("@ethersproject/address"),qc=require("@ethersproject/providers"),Ba=require("react-device-detect");var ge=require("react/jsx-runtime"),ve=({style:e,...t})=>(0,ge.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,ge.jsx)("style",{children:".s1{stroke-linecap:round;stroke-linejoin:round}.s2{fill:#e4761b;stroke:#e4761b}.s3{fill:#f6851b;stroke:#f6851b}"}),(0,ge.jsx)("path",{fill:"#e2761b",stroke:"#e2761b",className:"s1",d:"m274.1 35.5-99.5 73.9L193 65.8z"}),(0,ge.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,ge.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,ge.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,ge.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,ge.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,ge.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,ge.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,ge.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,ge.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,ge.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,ge.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(){var r;super("metamask");this.connectorType="injected";this.proxyProvider=new Y,this.subscribeListeners();let o=window;this.proxyProvider.setWalletProvider(o.ethereum),(r=o.ethereum.providers)==null||r.forEach(n=>{n.isMetaMask&&this.proxyProvider.setWalletProvider(n)}),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}get walletBranding(){return{name:"MetaMask",icon:ve}}disconnect(){console.warn("Metamask does not support programmatic disconnect.")}async promptConnection(){try{!Ba.isMobile&&Lr()&&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 re("Unable to retrieve accounts");await this.syncAccounts()}catch(o){throw qe(o)}}};var $e=require("react/jsx-runtime"),ht=({style:e,...t})=>(0,$e.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,$e.jsx)("rect",{width:"28",height:"28",rx:"6",fill:"url(#paint0_linear_1765_9937)"}),(0,$e.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,$e.jsxs)("defs",{children:[(0,$e.jsxs)("linearGradient",{id:"paint0_linear_1765_9937",x1:"14",y1:"0",x2:"14",y2:"28",gradientUnits:"userSpaceOnUse",children:[(0,$e.jsx)("stop",{stopColor:"#534BB1"}),(0,$e.jsx)("stop",{offset:"1",stopColor:"#551BF9"})]}),(0,$e.jsxs)("linearGradient",{id:"paint1_linear_1765_9937",x1:"14.2976",y1:"5.06372",x2:"14.2976",y2:"23.5318",gradientUnits:"userSpaceOnUse",children:[(0,$e.jsx)("stop",{stopColor:"white"}),(0,$e.jsx)("stop",{offset:"1",stopColor:"white",stopOpacity:"0.82"})]})]})]});var Fr=class extends ke{constructor(){var r,n;super("phantom");this.connectorType="injected";this.proxyProvider=new Y,this.subscribeListeners();let o=window;this.proxyProvider.setWalletProvider(o.phantom.ethereum),(n=(r=o.phantom.ethereum)==null?void 0:r.providers)==null||n.forEach(i=>{i.isPhantom&&this.proxyProvider.setWalletProvider(i)}),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:ht}}disconnect(){console.warn("Phantom does not support programmatic disconnect.")}async promptConnection(){try{await this.proxyProvider.request({method:"eth_requestAccounts"}),await this.syncAccounts()}catch(o){throw qe(o)}}};var ns=C(require("@walletconnect/web3-provider")),er=require("react-device-detect");var tt=require("react");var Ga=require("react/jsx-runtime");function Fa(e){return(0,Ga.jsx)("link",{rel:"prefetch",href:e.src})}var Gr=require("react/jsx-runtime"),St="LANDING",Ha=(0,tt.createContext)({ready:!1,app:null,currentScreen:St,lastScreen:St,navigate:_,navigateBack:_,setModalData:_}),Va=e=>{var f,h,u;let t=e.appConfig,o=e.authenticated,r=e.visible,[n,i]=(0,tt.useState)(e.initialScreen||St),[a,l]=(0,tt.useState)(e.initialScreen||St);(0,tt.useEffect)(()=>{o||i(St)},[o]),(0,tt.useEffect)(()=>{r||(l(St),i(St))},[r]),(0,tt.useEffect)(()=>{e.initialScreen&&n===St&&(i(e.initialScreen),l(e.initialScreen))},[e.initialScreen]);let s=e.initialScreen&&n===St?e.initialScreen:n,p={ready:!!(t!=null&&t.id),app:t,data:e.data,setModalData:e.setModalData,currentScreen:s,lastScreen:a,navigate:w=>{l(n),i(w)},navigateBack:()=>{i(a)}};return(0,Gr.jsxs)(Ha.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)(Fa,{src:typeof t.appearance.logo=="string"?t.appearance.logo:t.appearance.logo.props.src}),e.children]})},b=()=>(0,tt.useContext)(Ha);var kt=require("react/jsx-runtime"),Po=({style:e,...t})=>{let{app:o}=b();return(0,kt.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,kt.jsx)("rect",{width:"28",height:"28",rx:"3",fill:(o==null?void 0:o.appearance.palette.colorScheme)==="dark"?"#3396ff":"#141414"}),(0,kt.jsx)("g",{clipPath:"url(#clip0_1765_9946)",children:(0,kt.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,kt.jsx)("defs",{children:(0,kt.jsx)("clipPath",{id:"clip0_1765_9946",children:(0,kt.jsx)("rect",{width:"20",height:"12.2531",fill:"white",transform:"translate(4 8)"})})})]})};var za={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 qa={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 $a={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 ja={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 Ka={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 Ya={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 Za={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 Qa={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 Ja=[za,qa,$a,ja,Ka,Ya,Za,Qa];var ei=require("@walletconnect/browser-utils"),Hr=require("react-device-detect");var Xo=e=>{let t;try{t=new URL(e).hostname}catch{return}for(let[o,r]of Object.entries(ti))if(r.hostname===t)return{walletClientType:o,entry:r}};var ti={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"}}},Xa=(e,t="md")=>`https://registry.walletconnect.com/v2/logo/${t}/${e}`;function es(e){return{name:e.displayName||"",universalLink:e.mobile.universal||"",deepLink:e.mobile.native||""}}function ts(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 os(e,t){return Hr.isAndroid?e:ts(e,es(t))}var oi=(e,t)=>{if(!e)return;if(Hr.isAndroid){(0,ei.saveMobileLinkInfo)({name:"Unknown",href:t||"wc:"});return}let o=ts(t||"wc:",es(e));(0,ei.saveMobileLinkInfo)({name:(e==null?void 0:e.displayName)||"",href:o})},rs=()=>{!Hr.isAndroid||window.open("wc:","_self")};var ao=class extends ke{constructor(o,r){super(o||"unknown");this.connectorType="wallet_connect";this.reconnectDelayMs=10;this.reconnectBackoff=2;this.proxyProvider=new Y,this.subscribeListeners(),o&&(this.walletEntry=ti[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"?ve:Xa(this.walletEntry.image_id)}:{name:Kn(((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])||Po}}async promptConnection(){return new Promise((o,r)=>{this.walletProvider.connector.on("disconnect",(i,a)=>{if(i){r(qe(i));return}if(a.params.some(l=>l.message==="Session Rejected")){this.setWalletProvider(this.replaceProvider()),r(new ro);return}r(new re("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(qe(i))}),(async()=>{var l;let i="",a=await Promise.race([this.enableProvider(),Qn()]);if(a.length>0&&(i=a[0]),!i||i==="")throw new re("Unable to retrieve address");if((l=this.walletProvider.walletMeta)!=null&&l.url){let s=Xo(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(),o()})().catch(i=>r(qe(i)))})}async sign(o){this.walletEntry&&oi(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)),er.isAndroid&&rs()})}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")),X.getKeys().forEach(o=>{o.startsWith("walletconnect")&&X.get(o).key===this.walletProvider.connector.session.key&&X.del(o)}),this.createOrRestoreProvider()}static generateStorageId(){return`${Ca}:${Math.random().toString(36).slice(2)}`}createOrRestoreProvider(o){var l,s;o||(o=ao.generateStorageId());let r=this.walletEntry||er.isAndroid?{qrcode:!1}:{},n={};for(let p of Ja){let f=(s=(l=p.rpcUrls.infura)==null?void 0:l.http)==null?void 0:s[0];f&&(n[p.id]=f+"/"+et)}let i=new ns.default({infuraId:et,storageId:o,pollingInterval:xa,rpc:n,...r}),a=this.walletEntry;return a&&(i.walletId=a.id),a?i.connector.on("display_uri",(p,f)=>{oi(a);let h=f.params[0],u=os(h,a);er.isAndroid?window.open(u,"_self"):window.open(u,"_self","noopener,noreferrer")}):er.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=Xo(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 Lr=()=>{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},ni=()=>{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,ut=()=>{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},so=()=>{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},ii=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,ri.getAddress)(t)).length):!1},_o=class extends is.default{constructor(){super();this.getEthereumProvider=()=>this.wallets[0]?this.wallets[0].getEthereumProvider():new Y;this.walletConnectors=[],this.initialized=!1,this.storedConnections=this.loadConnectionHistory()}get wallets(){let o=this.walletConnectors.flatMap(n=>n.wallets).sort((n,i)=>n.connectedAt&&i.connectedAt?i.connectedAt-n.connectedAt:0),r=o.findIndex(n=>n.address===(this.activeWallet?this.activeWallet:"unknown"));return r>=0&&o.unshift(o.splice(r,1)[0]),o}initialize(){this.initialized||(Sa().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}})),(so()||X.getKeys().find(o=>o.startsWith("-walletlink")))&&this.createWalletConnector("coinbase_wallet","coinbase_wallet"),this.restoreWalletConnectConnectors(),this.initialized=!0)}restoreWalletConnectConnectors(){typeof window>"u"||X.getKeys().forEach(o=>{var r,n;if(o.startsWith("walletconnect")){let i=(n=(r=X.get(o))==null?void 0:r.peerMeta)==null?void 0:n.url,a;if(i){let s=Xo(i);s!=null&&s.walletClientType&&(a=s.walletClientType)}let l=new ao(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 Ur(i);this.addWalletConnector(a)}}removeEmbeddedWalletConnector(){let o=this.findWalletConnector("embedded","privy");if(o){let r=this.walletConnectors.indexOf(o);delete this.walletConnectors[r],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 new Fr;case"metamask":default:return new Br}case"coinbase_wallet":return new Dr;case"wallet_connect":return new ao(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=X.get(qn);return r&&Array.isArray(r)&&r.map(a=>o(a)).every(Boolean)?r:[]}saveConnectionHistory(){let r=this.wallets.map(n=>({address:n.address,connectorType:n.connectorType,walletClientType:n.walletClientType,connectedAt:n.connectedAt}));X.put(qn,r)}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,ri.getAddress)(o),this.emit("walletsUpdated")}};var zr=C(require("axios"));var qr=class{constructor(t,o,r){this.appId=t,this.sdkVersion=Wr,this.client=o,this.defaults=r,this.fallbackApiUrl=o.fallbackApiUrl}async get(t,o,r=!0){try{return await zr.default.get(t,await this.buildConfig({headers:{"Cache-Control":"no-cache"},...o},r))}catch(n){throw le(n)}}async post(t,o,r,n=!0){try{return await zr.default.post(t,o,await this.buildConfig(r,n))}catch(i){throw le(i)}}async delete(t,o,r=!0){try{return await zr.default.delete(t,await this.buildConfig(o,r))}catch(n){throw le(n)}}async buildConfig(t,o=!0){if(t=Object.assign({withCredentials:!0},t||{}),t.headers=t.headers||{},t.headers["privy-app-id"]=this.appId,t.headers["privy-client"]=`react-auth:${this.sdkVersion}`,o){let r=await this.client.getAccessToken();r!==null&&(t.headers.authorization=`Bearer ${r}`)}return{...this.defaults,...t}}};function as(e){return e instanceof eo?"email":e instanceof to?"sms":e instanceof Tt?"siwe":e instanceof Ot?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 ss=C(require("jose")),Rt=class{static parse(t){try{return new Rt(t)}catch{return null}}constructor(t){this.value=t,this._decoded=ss.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 $c=30,$r=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=X.get(Co);return typeof t=="string"?new Rt(t).value:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get refreshToken(){try{let t=X.get(Ir);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get forkedToken(){try{let t=X.get(Zo);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=Rt.parse(this.token);return t!==null&&!t.isExpired($c)}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=as(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:_t(n),isNewUser:i}}catch(o){throw console.warn("Error authenticating session"),He(o)}}async _link(t){try{let o=await t.link();return _t(o)}catch(o){throw console.warn("Error linking account"),He(o)}}async _refresh(){if(!this.api)throw new E("Session has no API instance");if(!this.client)throw new E("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(Ji(),{refresh_token:o},{headers:{authorization:`Bearer ${t}`}},!1),r&&this.clearForkedToken();else if(r)n=await this.api.post(ta(),{refresh_token:r},{},!1),this.clearForkedToken();else return null;return this.storeToken(n.data.token),this.storeRefreshToken(n.data.refresh_token),_t(n.data.user)}catch(n){if(n instanceof wo&&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(Xi(),{refresh_token:this.refreshToken}))}catch{console.warn("Error destroying session")}this.destroyLocalState()}async _forkSession(){if(!this.api)throw new E("Session has no API instance");let t=this.refreshToken;try{let o=await this.api.post(ea(),{refresh_token:t});return this.storeToken(o.data.token),this.storeRefreshToken(o.data.refresh_token),o.data.new_session_refresh_token}catch(o){throw He(o)}}destroyLocalState(){this.storeToken(null),this.storeRefreshToken(null),this.clearForkedToken()}storeToken(t){typeof t=="string"?X.put(Co,t):X.del(Co)}storeRefreshToken(t){typeof t=="string"?X.put(Ir,t):X.del(Ir)}clearForkedToken(){X.del(Zo)}};var ai,Ao=class{constructor(t){this.apiUrl=t.apiUrl||Rr,this.fallbackApiUrl=this.apiUrl,this.timeout=t.timeout||wa,this.appId=t.appId,this.clientAnalyticsId=typeof window>"u"?null:crypto.randomUUID(),this.connectors=new _o,ai||(ai=new $r),this.session=ai,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 E("No auth flow in progress.");return this.session.authenticate(this.authFlow)}link(){if(!this.authFlow)throw new E("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(fa(),{address:t});return _t(o.data)}catch(o){throw He(o)}}async unlinkPhone(t){try{let o=await this.api.post(ya(),{phoneNumber:t});return _t(o.data)}catch(o){throw He(o)}}async unlinkWallet(t){try{let o=await this.api.post(ha(),{address:t});return _t(o.data)}catch(o){throw He(o)}}async unlinkOAuth(t,o){try{let r=await this.api.post(ga(),{provider:t,subject:o});return _t(r.data)}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(va(),{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=Rt.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.data.id,name:t.data.name,verificationKey:t.data.verification_key,logoUrl:t.data.logo_url||void 0,accentColor:t.data.accent_color||void 0,showWalletLoginFirst:t.data.show_wallet_login_first,allowlistConfig:{errorTitle:t.data.allowlist_config.error_title,errorDetail:t.data.allowlist_config.error_detail,errorCtaText:t.data.allowlist_config.cta_text,errorCtaLink:t.data.allowlist_config.cta_link},walletAuth:t.data.wallet_auth,emailAuth:t.data.email_auth,smsAuth:t.data.sms_auth,googleOAuth:t.data.google_oauth,twitterOAuth:t.data.twitter_oauth,discordOAuth:t.data.discord_oauth,githubOAuth:t.data.github_oauth,appleOAuth:t.data.apple_oauth,termsAndConditionsUrl:t.data.terms_and_conditions_url,privacyPolicyUrl:t.data.privacy_policy_url,customApiUrl:t.data.custom_api_url,createdAt:new Date(t.data.created_at*1e3),updatedAt:new Date(t.data.updated_at*1e3)}}catch(t){throw He(t)}}async getUsdTokenPrice(t){try{return(await this.api.get(`/api/v1/token_price?chainId=${t}`)).data.usd}catch{console.error(`Unable to fetch token price for chain with id ${t}`);return}}async forkSession(){return await this.session.forkSession()}};var y5=require("wicg-inert"),Un=require("body-scroll-lock"),Bn=require("react"),$i=require("react"),fc=C(require("react-dom")),Fn=C(require("styled-components"));var jr=require("react");var si=(0,jr.createContext)({isLinking:!1,linkingHint:null,walletConnectionStatus:null,getAuthMeta:_,getAuthFlow:_,closePrivyModal:_,connectWallet:_,initLoginWithWallet:_,loginWithWallet:_,loginWithCode:_,initLoginWithEmail:_,initLoginWithSms:_,resendEmailCode:_,resendSmsCode:_,initLoginWithOAuth:_,loginWithOAuth:_,refreshUser:_,walletProxy:null,createAnalyticsEvent:_,getUsdTokenPrice:_,recoverEmbeddedWallet:_}),W=()=>(0,jr.useContext)(si);var Kr=require("react");var li=(0,Kr.createContext)({ready:!1,authenticated:!1,user:null,walletConnectors:null,connectWallet:_,login:_,linkEmail:_,linkPhone:_,linkWallet:_,linkGoogle:_,linkTwitter:_,linkDiscord:_,linkGithub:_,linkApple:_,logout:_,getAccessToken:_,getEthereumProvider:_,getEthersProvider:_,getWeb3jsProvider:_,unlinkEmail:_,unlinkPhone:_,unlinkWallet:_,unlinkGoogle:_,unlinkTwitter:_,unlinkDiscord:_,unlinkGithub:_,unlinkApple:_,setActiveWallet:_,forkSession:_,createWallet:_,signMessage:_,sendTransaction:_,exportWallet:_}),F=()=>(0,Kr.useContext)(li);var Xr=C(require("styled-components"));var Wt=C(require("styled-components"));var Yr=C(require("styled-components")),Ht=require("react/jsx-runtime"),Zr=({success:e,fail:t})=>(0,Ht.jsxs)(Ht.Fragment,{children:[(0,Ht.jsx)(tr,{className:e?"success":t?"fail":""}),(0,Ht.jsx)(jc,{className:e?"success":t?"fail":""})]}),tr=Yr.default.span`
13
13
  && {
14
14
  width: 82px;
15
15
  height: 82px;
@@ -57,7 +57,7 @@ Resources:
57
57
  /* Override default Loader to match button transitions */
58
58
  transition: border-color 200ms ease;
59
59
  }
60
- `;var Re=require("react/jsx-runtime"),ls=It.default.button`
60
+ `;var Re=require("react/jsx-runtime"),ls=Wt.default.button`
61
61
  display: flex;
62
62
  flex-direction: row;
63
63
  align-items: center;
@@ -79,7 +79,7 @@ Resources:
79
79
  color: var(--privy-color-foreground-3);
80
80
  cursor: not-allowed;
81
81
  }
82
- `,ne=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>(0,Re.jsx)(cs,{disabled:t||o,...n,children:t?(0,Re.jsxs)("span",{children:[(0,Re.jsx)(ot,{}),r?(0,Re.jsx)("span",{children:r}):null]}):e}),Qr=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>(0,Re.jsx)(cs,{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}),cs=(0,It.default)(ls)`
82
+ `,ne=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>(0,Re.jsx)(cs,{disabled:t||o,...n,children:t?(0,Re.jsxs)("span",{children:[(0,Re.jsx)(ot,{}),r?(0,Re.jsx)("span",{children:r}):null]}):e}),Qr=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>(0,Re.jsx)(cs,{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}),cs=(0,Wt.default)(ls)`
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);
@@ -103,7 +103,7 @@ Resources:
103
103
  }
104
104
 
105
105
  /* If an anchor tag, :disabled isn't a thing, so manually set state */
106
- ${e=>e.disabled?It.css`
106
+ ${e=>e.disabled?Wt.css`
107
107
  &&&,
108
108
  &&&:hover,
109
109
  &&&:active {
@@ -122,7 +122,7 @@ Resources:
122
122
  opacity: 1;
123
123
  animation: fadein 200ms ease;
124
124
  }
125
- `,ds=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>(0,Re.jsx)(Yc,{disabled:t||o,...n,children:t?(0,Re.jsxs)("span",{children:[(0,Re.jsx)(ot,{}),r?(0,Re.jsx)("span",{children:r}):null]}):e}),Yc=(0,It.default)(ls)`
125
+ `,ds=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>(0,Re.jsx)(Yc,{disabled:t||o,...n,children:t?(0,Re.jsxs)("span",{children:[(0,Re.jsx)(ot,{}),r?(0,Re.jsx)("span",{children:r}):null]}):e}),Yc=(0,Wt.default)(ls)`
126
126
  && {
127
127
  border-width: 1px;
128
128
  border-color: ${e=>e.warn?"var(--privy-color-error)":"var(--privy-color-foreground-4)"};
@@ -151,7 +151,7 @@ Resources:
151
151
  opacity: 1;
152
152
  animation: fadein 200ms ease;
153
153
  }
154
- `,he=It.default.button`
154
+ `,we=Wt.default.button`
155
155
  && {
156
156
  padding: 12px 16px;
157
157
  font-weight: 500;
@@ -164,7 +164,7 @@ Resources:
164
164
  transition: opacity 200ms ease, background-color 200ms ease, color 200ms ease;
165
165
  user-select: none;
166
166
 
167
- ${e=>e.invisible&&It.css`
167
+ ${e=>e.invisible&&Wt.css`
168
168
  pointer-events: none;
169
169
  `}
170
170
 
@@ -182,7 +182,7 @@ Resources:
182
182
  cursor: not-allowed;
183
183
  }
184
184
  }
185
- `,Jr=It.default.div`
185
+ `,Jr=Wt.default.div`
186
186
  /* Set to match height of SoftCtaButton to avoid reflow if conditionally rendered */
187
187
  height: 44px;
188
188
  `;var ps=C(require("styled-components")),us=ps.default.span`
@@ -264,7 +264,7 @@ Resources:
264
264
  white-space: nowrap;
265
265
  max-width: 100%;
266
266
  text-overflow: ellipsis;
267
- `;var ui=require("react/jsx-runtime"),fs=({style:e,...t})=>(0,ui.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,ui.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 ie=require("react/jsx-runtime"),ys=()=>{let{navigate:e,app:t}=b(),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,ie.jsxs)(ie.Fragment,{children:[(0,ie.jsx)(T,{}),(0,ie.jsxs)(td,{children:[(0,ie.jsx)(rd,{children:(0,ie.jsxs)("div",{children:[(0,ie.jsx)(us,{}),(0,ie.jsx)(fs,{style:{width:"38px",height:"38px",strokeWidth:"1",stroke:"var(--privy-color-accent)",fill:"var(--privy-color-accent)"}})]})}),(0,ie.jsxs)(od,{children:[typeof o=="string"?(0,ie.jsx)("h3",{children:o}):(0,ie.jsx)(ie.Fragment,{children:o}),typeof r=="string"?(0,ie.jsx)("p",{children:r}):(0,ie.jsx)(ie.Fragment,{children:r})]}),t!=null&&t.allowlistConfig.errorCtaLink?(0,ie.jsx)(he,{as:"a",href:t.allowlistConfig.errorCtaLink,children:n}):(0,ie.jsx)(he,{onClick:()=>{e("LANDING")},children:n})]})]})},td=Xr.default.div`
267
+ `;var ui=require("react/jsx-runtime"),fs=({style:e,...t})=>(0,ui.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,ui.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 ie=require("react/jsx-runtime"),ys=()=>{let{navigate:e,app:t}=b(),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,ie.jsxs)(ie.Fragment,{children:[(0,ie.jsx)(T,{}),(0,ie.jsxs)(td,{children:[(0,ie.jsx)(rd,{children:(0,ie.jsxs)("div",{children:[(0,ie.jsx)(us,{}),(0,ie.jsx)(fs,{style:{width:"38px",height:"38px",strokeWidth:"1",stroke:"var(--privy-color-accent)",fill:"var(--privy-color-accent)"}})]})}),(0,ie.jsxs)(od,{children:[typeof o=="string"?(0,ie.jsx)("h3",{children:o}):(0,ie.jsx)(ie.Fragment,{children:o}),typeof r=="string"?(0,ie.jsx)("p",{children:r}):(0,ie.jsx)(ie.Fragment,{children:r})]}),t!=null&&t.allowlistConfig.errorCtaLink?(0,ie.jsx)(we,{as:"a",href:t.allowlistConfig.errorCtaLink,children:n}):(0,ie.jsx)(we,{onClick:()=>{e("LANDING")},children:n})]})]})},td=Xr.default.div`
268
268
  display: flex;
269
269
  flex-direction: column;
270
270
  align-items: center;
@@ -388,7 +388,7 @@ Resources:
388
388
  border-color: var(--privy-color-background-2);
389
389
  border-width: 1px;
390
390
  }
391
- `;var z=require("react/jsx-runtime"),hi=6,vs=new Array(hi).fill(""),sd=1400;var ws=()=>{var ge,ce,K;let{app:e,data:t,navigate:o,setModalData:r}=b(),{closePrivyModal:n,resendEmailCode:i,resendSmsCode:a,getAuthMeta:l,loginWithCode:s}=W(),{authenticated:p,user:f}=F(),[h,u]=(0,zt.useState)(vs),[w,v]=(0,zt.useState)(!1),[m,g]=(0,zt.useState)(null),[L,A]=(0,zt.useState)(null),S=(ge=l())!=null&&ge.email?0:1,M=e!=null&&e.render.inDialog?pt:0,R=e!=null&&e.render.inDialog?M-500:0;(0,zt.useEffect)(()=>{var V;if(!(p&&w&&f))return;if(((V=t==null?void 0:t.login)==null?void 0:V.promptCreatePrivyWalletFlow)&&!f.wallet){let te=setTimeout(()=>{r({createWallet:{onSuccess:()=>{},onFailure:Ge=>console.error(Ge),callAuthOnSuccessOnClose:!0}}),o("EMBEDDED_WALLET_SCREEN")},R);return()=>clearTimeout(te)}else{let te=setTimeout(n,M);return()=>clearTimeout(te)}},[p,w,f]),(0,zt.useEffect)(()=>{if(m&&L===0){let me=setTimeout(()=>{u(vs),g(null);let j=document.querySelector("input[name=code-0]");j==null||j.focus()},sd);return()=>clearTimeout(me)}},[m]);let O=me=>{var dt;let j=me.currentTarget.value.replace(" ","");if(j==="")return;if(isNaN(Number(j))){g("Code should be numeric"),A(1);return}g(null),A(null);let V=Number((dt=me.currentTarget.name)==null?void 0:dt.charAt(5)),te=[...j||[""]].slice(0,hi-V),Ge=[...h.slice(0,V),...te,...h.slice(V+te.length)];u(Ge);let Xt=te.length,de=Math.min(Math.max(V+Xt,0),hi-1);if(!isNaN(Number(me.currentTarget.value))){let Te=document.querySelector(`input[name=code-${de}]`);Te==null||Te.focus()}if(Ge.every(Te=>Te&&!isNaN(+Te))){let Te=document.querySelector(`input[name=code-${de}]`);Te==null||Te.blur(),s(Ge.join("")).then(()=>v(!0)).catch(Qe=>{(Qe==null?void 0:Qe.status)===422?g("Invalid or expired verification code"):g("Issue verifying code"),A(0)})}me.preventDefault()},I=me=>{L===1&&(g(null),A(null));let j=[...h.slice(0,me),"",...h.slice(me+1)];if(u(j),me>0){let V=document.querySelector(`input[name=code-${me-1}]`);V==null||V.focus()}},Ee=`Verify your ${S==0?"email":"phone"}`,Q=S==0?(0,z.jsxs)("p",{children:["Please check ",(0,z.jsx)(ud,{children:(ce=l())==null?void 0:ce.email})," for an email from privy.io and enter your code below."]}):`Please check ${(K=l())==null?void 0:K.phoneNumber} for a message from ${(e==null?void 0:e.name)||"privy.io"} and enter your code below.`;return(0,z.jsxs)(z.Fragment,{children:[(0,z.jsx)(T,{},"header"),(0,z.jsxs)(ld,{children:[(0,z.jsx)(pe,{title:Ee,description:Q}),(0,z.jsxs)(So,{children:[(0,z.jsxs)(cd,{children:[(0,z.jsx)(dd,{fail:!!m,success:w,children:(0,z.jsx)("span",{children:m||(w?"Success!":"")})}),(0,z.jsx)("div",{children:h.map((me,j)=>(0,z.jsx)("input",{name:`code-${j}`,type:"text",value:h[j],onChange:O,onKeyUp:V=>{V.key==="Backspace"&&I(j)},inputMode:"numeric",autoFocus:j===0,pattern:"[0-9]",className:`${w?"success":""} ${m?"fail":""}`,autoComplete:bs.isMobile?"one-time-code":"off"},j))})]}),(0,z.jsx)(pd,{children:S==0?(0,z.jsxs)(z.Fragment,{children:[(0,z.jsx)("span",{children:"Didn't get an email?"}),(0,z.jsx)("button",{onClick:i,children:"Resend Code"})]}):(0,z.jsxs)(z.Fragment,{children:[(0,z.jsx)("span",{children:"Didn't get a message?"}),(0,z.jsx)("button",{onClick:a,children:"Resend Code"})]})})]})]}),(0,z.jsx)(B,{protectedByPrivy:!0})]})},ld=ko.default.div`
391
+ `;var z=require("react/jsx-runtime"),hi=6,vs=new Array(hi).fill(""),sd=1400;var ws=()=>{var ye,ce,K;let{app:e,data:t,navigate:o,setModalData:r}=b(),{closePrivyModal:n,resendEmailCode:i,resendSmsCode:a,getAuthMeta:l,loginWithCode:s}=W(),{authenticated:p,user:f}=F(),[h,u]=(0,zt.useState)(vs),[w,v]=(0,zt.useState)(!1),[m,g]=(0,zt.useState)(null),[L,A]=(0,zt.useState)(null),S=(ye=l())!=null&&ye.email?0:1,M=e!=null&&e.render.inDialog?pt:0,R=e!=null&&e.render.inDialog?M-500:0;(0,zt.useEffect)(()=>{var V;if(!(p&&w&&f))return;if(((V=t==null?void 0:t.login)==null?void 0:V.promptCreatePrivyWalletFlow)&&!f.wallet){let te=setTimeout(()=>{r({createWallet:{onSuccess:()=>{},onFailure:Ge=>console.error(Ge),callAuthOnSuccessOnClose:!0}}),o("EMBEDDED_WALLET_SCREEN")},R);return()=>clearTimeout(te)}else{let te=setTimeout(n,M);return()=>clearTimeout(te)}},[p,w,f]),(0,zt.useEffect)(()=>{if(m&&L===0){let me=setTimeout(()=>{u(vs),g(null);let j=document.querySelector("input[name=code-0]");j==null||j.focus()},sd);return()=>clearTimeout(me)}},[m]);let O=me=>{var dt;let j=me.currentTarget.value.replace(" ","");if(j==="")return;if(isNaN(Number(j))){g("Code should be numeric"),A(1);return}g(null),A(null);let V=Number((dt=me.currentTarget.name)==null?void 0:dt.charAt(5)),te=[...j||[""]].slice(0,hi-V),Ge=[...h.slice(0,V),...te,...h.slice(V+te.length)];u(Ge);let Xt=te.length,de=Math.min(Math.max(V+Xt,0),hi-1);if(!isNaN(Number(me.currentTarget.value))){let Te=document.querySelector(`input[name=code-${de}]`);Te==null||Te.focus()}if(Ge.every(Te=>Te&&!isNaN(+Te))){let Te=document.querySelector(`input[name=code-${de}]`);Te==null||Te.blur(),s(Ge.join("")).then(()=>v(!0)).catch(Qe=>{(Qe==null?void 0:Qe.status)===422?g("Invalid or expired verification code"):g("Issue verifying code"),A(0)})}me.preventDefault()},I=me=>{L===1&&(g(null),A(null));let j=[...h.slice(0,me),"",...h.slice(me+1)];if(u(j),me>0){let V=document.querySelector(`input[name=code-${me-1}]`);V==null||V.focus()}},Ee=`Verify your ${S==0?"email":"phone"}`,Q=S==0?(0,z.jsxs)("p",{children:["Please check ",(0,z.jsx)(ud,{children:(ce=l())==null?void 0:ce.email})," for an email from privy.io and enter your code below."]}):`Please check ${(K=l())==null?void 0:K.phoneNumber} for a message from ${(e==null?void 0:e.name)||"privy.io"} and enter your code below.`;return(0,z.jsxs)(z.Fragment,{children:[(0,z.jsx)(T,{},"header"),(0,z.jsxs)(ld,{children:[(0,z.jsx)(pe,{title:Ee,description:Q}),(0,z.jsxs)(So,{children:[(0,z.jsxs)(cd,{children:[(0,z.jsx)(dd,{fail:!!m,success:w,children:(0,z.jsx)("span",{children:m||(w?"Success!":"")})}),(0,z.jsx)("div",{children:h.map((me,j)=>(0,z.jsx)("input",{name:`code-${j}`,type:"text",value:h[j],onChange:O,onKeyUp:V=>{V.key==="Backspace"&&I(j)},inputMode:"numeric",autoFocus:j===0,pattern:"[0-9]",className:`${w?"success":""} ${m?"fail":""}`,autoComplete:bs.isMobile?"one-time-code":"off"},j))})]}),(0,z.jsx)(pd,{children:S==0?(0,z.jsxs)(z.Fragment,{children:[(0,z.jsx)("span",{children:"Didn't get an email?"}),(0,z.jsx)("button",{onClick:i,children:"Resend Code"})]}):(0,z.jsxs)(z.Fragment,{children:[(0,z.jsx)("span",{children:"Didn't get a message?"}),(0,z.jsx)("button",{onClick:a,children:"Resend Code"})]})})]})]}),(0,z.jsx)(B,{protectedByPrivy:!0})]})},ld=ko.default.div`
392
392
  display: flex;
393
393
  flex-direction: column;
394
394
  align-items: flex-start;
@@ -493,7 +493,7 @@ Resources:
493
493
  @media (max-width: 440px) {
494
494
  display: none;
495
495
  }
496
- `;var ae=require("react/jsx-runtime"),qt=({connectOnly:e})=>{let{navigate:t}=b(),{initLoginWithWallet:o,connectWallet:r}=W();return(0,ae.jsxs)(hd,{children:[(0,ae.jsxs)(rn,{onClick:()=>{ni()?e?(r("injected","metamask"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("injected","metamask"),t("AWAITING_CONNECTION")):rr.isMobile?e?(r("wallet_connect","metamask"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("wallet_connect","metamask"),t("AWAITING_CONNECTION")):t("INSTALL_METAMASK_SCREEN")},children:[(0,ae.jsx)(be,{}),(0,ae.jsx)("span",{children:"Metamask"}),(0,ae.jsx)("span",{children:ni()?"Connect":"Install"})]}),(0,ae.jsxs)(rn,{onClick:()=>{so()?e?(r("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECTION")):rr.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,ae.jsx)(ze,{}),(0,ae.jsxs)("span",{children:["Coinbase",(0,ae.jsx)(_s,{children:" Wallet"})]}),(0,ae.jsx)("span",{children:"Connect"})]}),(rr.isMobile||ut())&&(0,ae.jsxs)(rn,{id:"privy-phantom-button",onClick:()=>{ut()?e?(r("injected","phantom"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("injected","phantom"),t("AWAITING_CONNECTION")):t(rr.isMobile?"PHANTOM_INTERSTITIAL_SCREEN":"INSTALL_PHANTOM_SCREEN")},children:[(0,ae.jsx)(ht,{}),(0,ae.jsx)("span",{children:"Phantom"}),(0,ae.jsx)("span",{children:ut()?"Connect":"Install"})]}),(0,ae.jsxs)(rn,{onClick:()=>{e?(r("wallet_connect","unknown"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("wallet_connect","unknown"),t("AWAITING_CONNECTION"))},children:[(0,ae.jsx)(Po,{}),(0,ae.jsx)("span",{children:"WalletConnect"}),(0,ae.jsx)("span",{children:"Connect"})]})]})},hd=fi.default.div`
496
+ `;var ae=require("react/jsx-runtime"),qt=({connectOnly:e})=>{let{navigate:t}=b(),{initLoginWithWallet:o,connectWallet:r}=W();return(0,ae.jsxs)(hd,{children:[(0,ae.jsxs)(rn,{onClick:()=>{ni()?e?(r("injected","metamask"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("injected","metamask"),t("AWAITING_CONNECTION")):rr.isMobile?e?(r("wallet_connect","metamask"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("wallet_connect","metamask"),t("AWAITING_CONNECTION")):t("INSTALL_METAMASK_SCREEN")},children:[(0,ae.jsx)(ve,{}),(0,ae.jsx)("span",{children:"Metamask"}),(0,ae.jsx)("span",{children:ni()?"Connect":"Install"})]}),(0,ae.jsxs)(rn,{onClick:()=>{so()?e?(r("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECTION")):rr.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,ae.jsx)(ze,{}),(0,ae.jsxs)("span",{children:["Coinbase",(0,ae.jsx)(_s,{children:" Wallet"})]}),(0,ae.jsx)("span",{children:"Connect"})]}),(rr.isMobile||ut())&&(0,ae.jsxs)(rn,{id:"privy-phantom-button",onClick:()=>{ut()?e?(r("injected","phantom"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("injected","phantom"),t("AWAITING_CONNECTION")):t(rr.isMobile?"PHANTOM_INTERSTITIAL_SCREEN":"INSTALL_PHANTOM_SCREEN")},children:[(0,ae.jsx)(ht,{}),(0,ae.jsx)("span",{children:"Phantom"}),(0,ae.jsx)("span",{children:ut()?"Connect":"Install"})]}),(0,ae.jsxs)(rn,{onClick:()=>{e?(r("wallet_connect","unknown"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("wallet_connect","unknown"),t("AWAITING_CONNECTION"))},children:[(0,ae.jsx)(Po,{}),(0,ae.jsx)("span",{children:"WalletConnect"}),(0,ae.jsx)("span",{children:"Connect"})]})]})},hd=fi.default.div`
497
497
  display: flex;
498
498
  flex-direction: column;
499
499
  align-items: flex-start;
@@ -599,7 +599,7 @@ Resources:
599
599
  @media (max-width: 440px) {
600
600
  padding: 10px 10px 20px;
601
601
  }
602
- `;var Wo=require("react"),bi=C(require("styled-components"));var yt=require("react"),ln=require("react-device-detect"),cn=C(require("styled-components"));var Y=require("react/jsx-runtime"),sn=2,ir={metamask:{name:"MetaMask",component:be},phantom:{name:"Phantom",component:ht},coinbase_wallet:{name:"Coinbase Wallet",component:ze},wallet_connect:{name:"WalletConnect",component:Po},embedded:{name:"Privy Wallet",component:Ft}},gi=e=>(e==null?void 0:e.privyErrorCode)==="linked_to_another_user"?At.ERROR_USER_EXISTS:e instanceof Eo&&!e.details.default?e.details:e instanceof xo?At.ERROR_TIMED_OUT:e instanceof ro?At.ERROR_USER_REJECTED_CONNECTION:At.ERROR_WALLET_CONNECTION,Is=()=>{var Xt,de,dt,Te,Qe,_r,$o,Ar,jo,Ko,Sr;let[e,t]=(0,yt.useState)(!1),[o,r]=(0,yt.useState)(!1),[n,i]=(0,yt.useState)(void 0),{app:a,navigate:l,navigateBack:s,lastScreen:p,currentScreen:f}=b(),{getAuthFlow:h,walletConnectionStatus:u,closePrivyModal:w,loginWithWallet:v}=W(),{walletConnectors:m}=F(),[g,L]=(0,yt.useState)(0),{user:A}=F(),[S]=(0,yt.useState)((A==null?void 0:A.linkedAccounts.length)||0),M=h(),R=ln.isMobile&&((Xt=u==null?void 0:u.connector)==null?void 0:Xt.connectorType)==="wallet_connect"||ln.isMobile&&((de=u==null?void 0:u.connector)==null?void 0:de.connectorType)==="coinbase_wallet"||ln.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?pt:0;(0,yt.useEffect)(()=>{if(M&&R&&O&&!M.preparedMessage){M.buildSiweMessage();return}!M||R||!O||(r(!0),i(void 0),Q().catch(oe=>console.warn("Auto-prompted signature failed",oe)).finally(()=>r(!1)))},[g,O]),(0,yt.useEffect)(()=>{if(A&&e){let oe=setTimeout(w,I);return()=>clearTimeout(oe)}},[A,e]);let Ee=oe=>{if((oe==null?void 0:oe.privyErrorCode)==="allowlist_rejected"){l("ALLOWLIST_REJECTION_SCREEN");return}i(gi(oe))};async function Q(){try{await v(),t(!0)}catch(oe){Ee(oe)}finally{r(!1)}}(0,yt.useEffect)(()=>{u!=null&&u.connectError&&Ee(u==null?void 0:u.connectError)},[u]);let ge=((Qe=u==null?void 0:u.connector)==null?void 0:Qe.connectorType)||"metamask",ce=((_r=u==null?void 0:u.connector)==null?void 0:_r.walletClientType)||"metamask",K=(($o=u==null?void 0:u.connector)==null?void 0:$o.walletBranding.name)||((Ar=ir[ce])==null?void 0:Ar.name)||"Metamask",me=((jo=u==null?void 0:u.connector)==null?void 0:jo.walletBranding.icon)||((Ko=ir[ce])==null?void 0:Ko.component)||(oe=>(0,Y.jsx)(be,{...oe})),j=e?`Successfully connected with ${K}`:n?n.message:O?"Sign to verify":`Waiting for ${K}`,V="Don\u2019t see your wallet modal? Check your other browser windows.";if(e){let oe=(A==null?void 0:A.linkedAccounts.length)||0;S===oe?V="Wallet was already linked.":V="You\u2019re good to go!"}else g>=sn&&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.":ce==="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"&&(so()||(ii(A)?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 te=(Sr=m==null?void 0:m.walletConnectors)==null?void 0:Sr.find(oe=>oe.walletClientType==="coinbase_wallet"),Ge=ce==="coinbase_wallet"&&(ii(A)||n===At.ERROR_USER_EXISTS);return(0,Y.jsxs)(Y.Fragment,{children:[(0,Y.jsx)(T,{backFn:f===p?void 0:s}),(0,Y.jsxs)(bd,{children:[(0,Y.jsx)(vi,{walletLogo:me,success:e,fail:!!n}),(0,Y.jsxs)(wd,{children:[(0,Y.jsx)("h3",{children:j}),(0,Y.jsx)("p",{children:V})]}),(0,Y.jsx)(Jr,{children:Ge?(0,Y.jsx)(he,{onClick:()=>te&&(te==null?void 0:te.disconnect()),invisible:e,disabled:e,children:"Use a different wallet"}):n==At.ERROR_USER_EXISTS?(0,Y.jsx)(he,{onClick:s,children:"Use a different wallet"}):O&&!e&&R?(0,Y.jsx)(he,{onClick:()=>{r(!0),Q()},disabled:o,children:o?"Signing":"Sign with your wallet"}):!e&&(n==null?void 0:n.retryable)&&g<sn?(0,Y.jsx)(he,{onClick:()=>{L(g+1),i(void 0),u==null||u.connectRetry()},invisible:e||!(n!=null&&n.retryable)||g>=sn,disabled:!e&&(!(n!=null&&n.retryable)||g>=sn),children:"Retry"}):null})]})]})},bd=cn.default.div`
602
+ `;var Wo=require("react"),bi=C(require("styled-components"));var yt=require("react"),ln=require("react-device-detect"),cn=C(require("styled-components"));var Z=require("react/jsx-runtime"),sn=2,ir={metamask:{name:"MetaMask",component:ve},phantom:{name:"Phantom",component:ht},coinbase_wallet:{name:"Coinbase Wallet",component:ze},wallet_connect:{name:"WalletConnect",component:Po},embedded:{name:"Privy Wallet",component:Ft}},gi=e=>(e==null?void 0:e.privyErrorCode)==="linked_to_another_user"?Bt.ERROR_USER_EXISTS:e instanceof Eo&&!e.details.default?e.details:e instanceof xo?Bt.ERROR_TIMED_OUT:e instanceof ro?Bt.ERROR_USER_REJECTED_CONNECTION:Bt.ERROR_WALLET_CONNECTION,Is=()=>{var Xt,de,dt,Te,Qe,_r,$o,Ar,jo,Ko,Sr;let[e,t]=(0,yt.useState)(!1),[o,r]=(0,yt.useState)(!1),[n,i]=(0,yt.useState)(void 0),{app:a,navigate:l,navigateBack:s,lastScreen:p,currentScreen:f}=b(),{getAuthFlow:h,walletConnectionStatus:u,closePrivyModal:w,loginWithWallet:v}=W(),{walletConnectors:m}=F(),[g,L]=(0,yt.useState)(0),{user:A}=F(),[S]=(0,yt.useState)((A==null?void 0:A.linkedAccounts.length)||0),M=h(),R=ln.isMobile&&((Xt=u==null?void 0:u.connector)==null?void 0:Xt.connectorType)==="wallet_connect"||ln.isMobile&&((de=u==null?void 0:u.connector)==null?void 0:de.connectorType)==="coinbase_wallet"||ln.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?pt:0;(0,yt.useEffect)(()=>{if(M&&R&&O&&!M.preparedMessage){M.buildSiweMessage();return}!M||R||!O||(r(!0),i(void 0),Q().catch(oe=>console.warn("Auto-prompted signature failed",oe)).finally(()=>r(!1)))},[g,O]),(0,yt.useEffect)(()=>{if(A&&e){let oe=setTimeout(w,I);return()=>clearTimeout(oe)}},[A,e]);let Ee=oe=>{if((oe==null?void 0:oe.privyErrorCode)==="allowlist_rejected"){l("ALLOWLIST_REJECTION_SCREEN");return}i(gi(oe))};async function Q(){try{await v(),t(!0)}catch(oe){Ee(oe)}finally{r(!1)}}(0,yt.useEffect)(()=>{u!=null&&u.connectError&&Ee(u==null?void 0:u.connectError)},[u]);let ye=((Qe=u==null?void 0:u.connector)==null?void 0:Qe.connectorType)||"metamask",ce=((_r=u==null?void 0:u.connector)==null?void 0:_r.walletClientType)||"metamask",K=(($o=u==null?void 0:u.connector)==null?void 0:$o.walletBranding.name)||((Ar=ir[ce])==null?void 0:Ar.name)||"Metamask",me=((jo=u==null?void 0:u.connector)==null?void 0:jo.walletBranding.icon)||((Ko=ir[ce])==null?void 0:Ko.component)||(oe=>(0,Z.jsx)(ve,{...oe})),j=e?`Successfully connected with ${K}`:n?n.message:O?"Sign to verify":`Waiting for ${K}`,V="Don\u2019t see your wallet modal? Check your other browser windows.";if(e){let oe=(A==null?void 0:A.linkedAccounts.length)||0;S===oe?V="Wallet was already linked.":V="You\u2019re good to go!"}else g>=sn&&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.":ce==="metamask"?V="For the best experience, connect only one wallet at a time.":ye==="wallet_connect"?V="Open your mobile wallet app to continue":ye==="coinbase_wallet"&&(so()||(ii(A)?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 te=(Sr=m==null?void 0:m.walletConnectors)==null?void 0:Sr.find(oe=>oe.walletClientType==="coinbase_wallet"),Ge=ce==="coinbase_wallet"&&(ii(A)||n===Bt.ERROR_USER_EXISTS);return(0,Z.jsxs)(Z.Fragment,{children:[(0,Z.jsx)(T,{backFn:f===p?void 0:s}),(0,Z.jsxs)(bd,{children:[(0,Z.jsx)(vi,{walletLogo:me,success:e,fail:!!n}),(0,Z.jsxs)(wd,{children:[(0,Z.jsx)("h3",{children:j}),(0,Z.jsx)("p",{children:V})]}),(0,Z.jsx)(Jr,{children:Ge?(0,Z.jsx)(we,{onClick:()=>te&&(te==null?void 0:te.disconnect()),invisible:e,disabled:e,children:"Use a different wallet"}):O&&!e&&R?(0,Z.jsx)(we,{onClick:()=>{r(!0),Q()},disabled:o,children:o?"Signing":"Sign with your wallet"}):!e&&(n==null?void 0:n.retryable)&&g<sn?(0,Z.jsx)(we,{onClick:()=>{L(g+1),i(void 0),u==null||u.connectRetry()},invisible:e||!(n!=null&&n.retryable)||g>=sn,disabled:!e&&(!(n!=null&&n.retryable)||g>=sn),children:"Retry"}):null})]})]})},bd=cn.default.div`
603
603
  display: flex;
604
604
  flex-direction: column;
605
605
  align-items: center;
@@ -637,7 +637,7 @@ Resources:
637
637
  left: -19px;
638
638
  top: -19px;
639
639
  }
640
- `,vi=e=>{let t=e.walletLogo;return(0,Y.jsx)(Y.Fragment,{children:(0,Y.jsx)(Cd,{children:(0,Y.jsxs)("div",{children:[(0,Y.jsx)(Zr,{success:e.success,fail:e.fail}),typeof t=="string"?(0,Y.jsx)("span",{style:{background:`url('${t}')`,height:"38px",width:"38px",borderRadius:"6px",margin:"auto",backgroundSize:"cover"}}):(0,Y.jsx)(t,{style:{width:"38px",height:"38px"}})]})})})};var _e=require("react/jsx-runtime"),dn=2,Ns=()=>{var L,A,S,M,R,O;let{navigateBack:e,lastScreen:t,currentScreen:o}=b(),{walletConnectionStatus:r,closePrivyModal:n}=W(),[i,a]=(0,Wo.useState)(void 0),[l,s]=(0,Wo.useState)(0),p=(r==null?void 0:r.status)==="connected";(0,Wo.useEffect)(()=>{if(p){let I=setTimeout(n,pt);return()=>clearTimeout(I)}},[p]);let f=I=>{a(gi(I))};(0,Wo.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=((A=r==null?void 0:r.connector)==null?void 0:A.walletClientType)||"metamask",w=((S=r==null?void 0:r.connector)==null?void 0:S.walletBranding.name)||((M=ir[u])==null?void 0:M.name)||"Metamask",v=((R=r==null?void 0:r.connector)==null?void 0:R.walletBranding.icon)||((O=ir[u])==null?void 0:O.component)||(I=>(0,_e.jsx)(be,{...I})),m=p?`Successfully connected with ${w}`:i?i.message:`Waiting for ${w}`,g="Don\u2019t see your wallet modal? Check your other browser windows.";return p?g="You\u2019re good to go!":l>=dn&&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)(T,{backFn:o===t?void 0:e}),(0,_e.jsxs)(xd,{children:[(0,_e.jsx)(vi,{walletLogo:v,success:p,fail:!!i}),(0,_e.jsxs)(Ed,{children:[(0,_e.jsx)("h3",{children:m}),(0,_e.jsx)("p",{children:g})]}),(0,_e.jsx)(Jr,{children:i==At.ERROR_USER_EXISTS?(0,_e.jsx)(he,{onClick:e,children:"Use a different wallet"}):!p&&(i==null?void 0:i.retryable)&&l<dn?(0,_e.jsx)(he,{onClick:()=>{s(l+1),a(void 0),r==null||r.connectRetry()},invisible:p||!(i!=null&&i.retryable)||l>=dn,disabled:!p&&(!(i!=null&&i.retryable)||l>=dn),children:"Retry"}):null})]})]})},xd=bi.default.div`
640
+ `,vi=e=>{let t=e.walletLogo;return(0,Z.jsx)(Z.Fragment,{children:(0,Z.jsx)(Cd,{children:(0,Z.jsxs)("div",{children:[(0,Z.jsx)(Zr,{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"),dn=2,Ns=()=>{var L,A,S,M,R,O;let{navigateBack:e,lastScreen:t,currentScreen:o}=b(),{walletConnectionStatus:r,closePrivyModal:n}=W(),[i,a]=(0,Wo.useState)(void 0),[l,s]=(0,Wo.useState)(0),p=(r==null?void 0:r.status)==="connected";(0,Wo.useEffect)(()=>{if(p){let I=setTimeout(n,pt);return()=>clearTimeout(I)}},[p]);let f=I=>{a(gi(I))};(0,Wo.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=((A=r==null?void 0:r.connector)==null?void 0:A.walletClientType)||"metamask",w=((S=r==null?void 0:r.connector)==null?void 0:S.walletBranding.name)||((M=ir[u])==null?void 0:M.name)||"Metamask",v=((R=r==null?void 0:r.connector)==null?void 0:R.walletBranding.icon)||((O=ir[u])==null?void 0:O.component)||(I=>(0,_e.jsx)(ve,{...I})),m=p?`Successfully connected with ${w}`:i?i.message:`Waiting for ${w}`,g="Don\u2019t see your wallet modal? Check your other browser windows.";return p?g="You\u2019re good to go!":l>=dn&&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)(T,{backFn:o===t?void 0:e}),(0,_e.jsxs)(xd,{children:[(0,_e.jsx)(vi,{walletLogo:v,success:p,fail:!!i}),(0,_e.jsxs)(Ed,{children:[(0,_e.jsx)("h3",{children:m}),(0,_e.jsx)("p",{children:g})]}),(0,_e.jsx)(Jr,{children:i==Bt.ERROR_USER_EXISTS?(0,_e.jsx)(we,{onClick:e,children:"Use a different wallet"}):!p&&(i==null?void 0:i.retryable)&&l<dn?(0,_e.jsx)(we,{onClick:()=>{s(l+1),a(void 0),r==null||r.connectRetry()},invisible:p||!(i!=null&&i.retryable)||l>=dn,disabled:!p&&(!(i!=null&&i.retryable)||l>=dn),children:"Retry"}):null})]})]})},xd=bi.default.div`
641
641
  display: flex;
642
642
  flex-direction: column;
643
643
  align-items: center;
@@ -761,7 +761,7 @@ Resources:
761
761
  background-position: 0% 50%;
762
762
  }
763
763
  }
764
- `;var se=require("react/jsx-runtime"),$s=()=>{var h;let{user:e}=F(),{closePrivyModal:t}=W(),{data:o}=b(),r=J(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=Bt(r.address);return(0,se.jsxs)(se.Fragment,{children:[(0,se.jsx)(T,{onClose:l}),(0,se.jsxs)(Wd,{children:[(0,se.jsxs)("div",{children:[(0,se.jsx)(pe,{title:s,description:p}),(0,se.jsxs)(Id,{children:[(0,se.jsx)(qs,{}),(0,se.jsxs)(Nd,{children:[(0,se.jsx)("p",{children:((h=e==null?void 0:e.email)==null?void 0:h.address)||""}),(0,se.jsxs)(Ld,{children:[(0,se.jsx)(Md,{children:f})," ",(0,se.jsx)(Ft,{color:"var(--privy-color-foreground)"})]})]})]}),(0,se.jsx)(Od,{children:(0,se.jsx)(fn,{text:r.address,itemName:"Address"})})]}),(0,se.jsx)(ne,{onClick:l,children:"I\u2019m all set"})]}),(0,se.jsx)(B,{protectedByPrivy:!0})]})},Wd=lo.default.div`
764
+ `;var se=require("react/jsx-runtime"),$s=()=>{var h;let{user:e}=F(),{closePrivyModal:t}=W(),{data:o}=b(),r=J(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=Ut(r.address);return(0,se.jsxs)(se.Fragment,{children:[(0,se.jsx)(T,{onClose:l}),(0,se.jsxs)(Wd,{children:[(0,se.jsxs)("div",{children:[(0,se.jsx)(pe,{title:s,description:p}),(0,se.jsxs)(Id,{children:[(0,se.jsx)(qs,{}),(0,se.jsxs)(Nd,{children:[(0,se.jsx)("p",{children:((h=e==null?void 0:e.email)==null?void 0:h.address)||""}),(0,se.jsxs)(Ld,{children:[(0,se.jsx)(Md,{children:f})," ",(0,se.jsx)(Ft,{color:"var(--privy-color-foreground)"})]})]})]}),(0,se.jsx)(Od,{children:(0,se.jsx)(fn,{text:r.address,itemName:"Address"})})]}),(0,se.jsx)(ne,{onClick:l,children:"I\u2019m all set"})]}),(0,se.jsx)(B,{protectedByPrivy:!0})]})},Wd=lo.default.div`
765
765
  display: flex;
766
766
  height: 100%;
767
767
  flex-direction: column;
@@ -800,7 +800,7 @@ Resources:
800
800
  `,Od=lo.default.div`
801
801
  display: flex;
802
802
  justify-content: center;
803
- `;var Nt=require("react"),gt=C(require("styled-components"));var fe=require("react/jsx-runtime"),js=({style:e,...t})=>(0,fe.jsxs)("svg",{width:"320",height:"144",viewBox:"0 0 320 144",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{width:320,height:144,...e},...t,children:[(0,fe.jsx)("rect",{x:"214.681",y:"51.6852",width:"40",height:"40",rx:"20",fill:"var(--privy-color-background-2)"}),(0,fe.jsx)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M229.848 64.9512C228.001 65.1452 226.643 66.726 226.643 68.5829V75.414C226.643 77.2883 228.026 78.8767 229.891 79.0615C231.417 79.2127 233.21 79.3518 234.643 79.3518C236.862 79.3518 239.95 79.0176 241.563 78.8225C242.183 78.7474 242.643 78.2196 242.643 77.5948V69.7756C242.643 69.1508 242.183 68.6229 241.563 68.5479C239.955 68.3534 236.883 68.0207 234.665 68.0185L234.643 68.0185L234.622 68.0185C233.219 68.0199 231.475 68.1534 229.975 68.3005C229.636 68.3007 229.346 68.0433 229.312 67.6989C229.277 67.3325 229.544 67.0063 229.911 66.9703C231.423 66.8219 233.203 66.6852 234.643 66.6852C236.246 66.6852 238.275 66.855 239.887 67.0221C240.412 67.0765 240.896 67.1309 241.309 67.1796V66.4289C241.309 65.8099 240.858 65.2851 240.244 65.2046C238.746 65.0083 235.977 64.6852 233.976 64.6852C232.734 64.6852 231.195 64.8098 229.848 64.9512ZM240.309 74.6852C240.862 74.6852 241.309 74.2375 241.309 73.6852C241.309 73.1329 240.862 72.6852 240.309 72.6852C239.757 72.6852 239.309 73.1329 239.309 73.6852C239.309 74.2375 239.757 74.6852 240.309 74.6852Z",fill:"var(--privy-color-accent)"}),(0,fe.jsx)("path",{d:"M92.6426 74.2969H89.5743M76.6426 74.2969H85.5085M77.5837 78.2687L87.1555 61.6852M84.7273 65.9017L82.2897 61.6852M91.8614 78.2687L86.6849 69.2993",stroke:"var(--privy-color-accent)","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"}),(0,fe.jsx)("rect",{x:"65.6426",y:"52.6852",width:"38",height:"38",rx:"19",stroke:"var(--privy-color-background-2","stroke-width":"2"}),(0,fe.jsx)("path",{d:"M103.162 71.6852H213.662",stroke:"var(--privy-color-background-2","stroke-width":"2","stroke-dasharray":"4 4"}),(0,fe.jsx)("path",{d:"M270.544 116.469C272.146 116.469 273.445 115.175 273.445 113.577C273.445 111.98 272.146 110.685 270.544 110.685C268.942 110.685 267.643 111.98 267.643 113.577C267.643 115.175 268.942 116.469 270.544 116.469Z",fill:"var(--privy-color-accent-light"}),(0,fe.jsx)("path",{d:"M157.878 48.3615C160.282 48.3615 162.231 46.4193 162.231 44.0234C162.231 41.6274 160.282 39.6852 157.878 39.6852C155.475 39.6852 153.526 41.6274 153.526 44.0234C153.526 46.4193 155.475 48.3615 157.878 48.3615Z",fill:"var(--privy-color-accent-dark)"}),(0,fe.jsx)("path",{d:"M35.0825 96.1749C36.8852 96.1749 38.3466 94.7182 38.3466 92.9212C38.3466 91.1243 36.8852 89.6676 35.0825 89.6676C33.2797 89.6676 31.8184 91.1243 31.8184 92.9212C31.8184 94.7182 33.2797 96.1749 35.0825 96.1749Z",fill:"var(--privy-color-accent-dark)"}),(0,fe.jsx)("path",{d:"M164.407 103.673C166.41 103.673 168.034 102.055 168.034 100.058C168.034 98.0616 166.41 96.443 164.407 96.443C162.404 96.443 160.78 98.0616 160.78 100.058C160.78 102.055 162.404 103.673 164.407 103.673Z",fill:"var(--privy-color-accent-light"}),(0,fe.jsx)("path",{d:"M292.664 33.277C294.267 33.277 295.566 31.9822 295.566 30.3849C295.566 28.7876 294.267 27.4928 292.664 27.4928C291.062 27.4928 289.763 28.7876 289.763 30.3849C289.763 31.9822 291.062 33.277 292.664 33.277Z",fill:"var(--privy-color-accent-light"}),(0,fe.jsx)("path",{d:"M104 12.6997C105.302 12.6997 106.357 11.6476 106.357 10.3498C106.357 9.05206 105.302 8 104 8C102.698 8 101.643 9.05206 101.643 10.3498C101.643 11.6476 102.698 12.6997 104 12.6997Z",fill:"var(--privy-color-accent-light"}),(0,fe.jsx)("path",{d:"M7.99998 68.6997C9.30194 68.6997 10.3574 67.6476 10.3574 66.3498C10.3574 65.0521 9.30194 64 7.99998 64C6.69802 64 5.64258 65.0521 5.64258 66.3498C5.64258 67.6476 6.69802 68.6997 7.99998 68.6997Z",fill:"var(--privy-color-accent-light"}),(0,fe.jsx)("path",{d:"M312 60.6997C313.302 60.6997 314.357 59.6476 314.357 58.3498C314.357 57.0521 313.302 56 312 56C310.698 56 309.643 57.0521 309.643 58.3498C309.643 59.6476 310.698 60.6997 312 60.6997Z",fill:"var(--privy-color-accent-light"}),(0,fe.jsx)("path",{d:"M35.544 42.4694C37.1464 42.4694 38.4454 41.1746 38.4454 39.5773C38.4454 37.98 37.1464 36.6852 35.544 36.6852C33.9416 36.6852 32.6426 37.98 32.6426 39.5773C32.6426 41.1746 33.9416 42.4694 35.544 42.4694Z",fill:"var(--privy-color-accent-light"})]});var D=require("react/jsx-runtime"),Zs=()=>{var m;let[e,t]=(0,Nt.useState)(null),{authenticated:o,user:r,getAccessToken:n}=F(),{closePrivyModal:i,createAnalyticsEvent:a}=W(),{data:l}=b(),s=(m=J(r))==null?void 0:m.address,{onFailure:p,onSuccess:f,origin:h,appId:u}=l.keyExport,w=g=>{i({shouldCallAuthOnSuccess:!1}),p(typeof g=="string"?new Error(g):g)},v=()=>{i({shouldCallAuthOnSuccess:!1}),f(),a("embedded_wallet_key_export_completed",{walletAddress:s})};return(0,Nt.useEffect)(()=>{let g=J(r);if(!o||!g)return w("User must be authenticated before exporting their wallet");n().then(t,w)},[o,r]),(0,D.jsxs)(D.Fragment,{children:[(0,D.jsx)(T,{onClose:v}),(0,D.jsxs)(Bd,{children:[(0,D.jsx)(js,{}),(0,D.jsxs)(Fd,{children:[(0,D.jsx)("h3",{children:"Transfer"}),(0,D.jsxs)(zd,{children:[(0,D.jsx)(Ud,{style:{marginRight:6}}),`${s==null?void 0:s.substring(0,4)}...${s==null?void 0:s.substring(s.length-4,s.length-1)}`]})]}),(0,D.jsx)("p",{children:"You can take your account with you to another site using an external wallet!"}),(0,D.jsxs)(Gd,{children:[(0,D.jsxs)(Ks,{children:[(0,D.jsx)(Ys,{children:"1"}),(0,D.jsxs)("span",{children:[(0,D.jsx)("a",{href:"https://privy-io.notion.site/Transferring-your-account-9dab9e16c6034a7ab1ff7fa479b02828",target:"blank",rel:"noopener noreferrer",children:"Follow the guide"})," ","to transfer your account to your wallet of choice."]})]}),(0,D.jsxs)(Ks,{children:[(0,D.jsx)(Ys,{children:"2"}),(0,D.jsx)("span",{children:"Copy this key into your other wallet"})]})]}),(0,D.jsx)("div",{style:{width:"100%"},children:e&&(0,D.jsx)(Dd,{origin:h,appId:u,accessToken:e,address:s,dimensions:{height:"44px"}})}),(0,D.jsxs)(qd,{children:[(0,D.jsx)("h4",{children:"WARNING"}),(0,D.jsx)("p",{children:"Never share your private key with anyone! It controls your account."})]})]}),(0,D.jsx)(B,{protectedByPrivy:!0})]})};function Dd(e){let[t,o]=(0,Nt.useState)(e.dimensions.width),[r,n]=(0,Nt.useState)(void 0),i=(0,Nt.useRef)(null);return(0,Nt.useEffect)(()=>{if(i.current&&t===void 0){let{width:l}=i.current.getBoundingClientRect();o(l)}let a=getComputedStyle(document.documentElement);n({background2:a.getPropertyValue("--privy-color-background-2"),foreground3:a.getPropertyValue("--privy-color-foreground-3"),foregroundAccent:a.getPropertyValue("--privy-color-foreground-accent"),accent:a.getPropertyValue("--privy-color-accent"),accentDark:a.getPropertyValue("--privy-color-accent-dark"),success:a.getPropertyValue("--privy-color-success")})},[]),(0,D.jsx)("div",{ref:i,children:t&&(0,D.jsxs)(Hd,{children:[(0,D.jsx)("iframe",{style:{position:"absolute",zIndex:1},width:t,height:e.dimensions.height,allow:"clipboard-write self *",src:Nr(e.origin,`/apps/${e.appId}/embedded-wallets/export`,{token:e.accessToken,address:e.address,width:`${t}px`,...r})}),(0,D.jsx)(Vd,{children:"Loading..."})]})})}function Ud(e){return(0,D.jsx)("svg",{width:"16",height:"17",viewBox:"0 0 16 17",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:e.style,children:(0,D.jsx)("path",{d:"M14 8.81335C14 7.98493 13.3284 7.31335 12.5 7.31335H10C10 8.41792 9.10457 9.31335 8 9.31335C6.89543 9.31335 6 8.41792 6 7.31335H3.5C2.67157 7.31335 2 7.98493 2 8.81335M14 8.81335V12.8134C14 13.6418 13.3284 14.3134 12.5 14.3134H3.5C2.67157 14.3134 2 13.6418 2 12.8134V8.81335M14 8.81335V6.81335M2 8.81335V6.81335M14 6.81335C14 5.98493 13.3284 5.31335 12.5 5.31335H3.5C2.67157 5.31335 2 5.98493 2 6.81335M14 6.81335V4.81335C14 3.98493 13.3284 3.31335 12.5 3.31335H3.5C2.67157 3.31335 2 3.98493 2 4.81335V6.81335",stroke:"var(--privy-color-foreground-3)",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})}var Bd=gt.default.div`
803
+ `;var It=require("react"),gt=C(require("styled-components"));var he=require("react/jsx-runtime"),js=({style:e,...t})=>(0,he.jsxs)("svg",{width:"320",height:"144",viewBox:"0 0 320 144",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{width:320,height:144,...e},...t,children:[(0,he.jsx)("rect",{x:"214.681",y:"51.6852",width:"40",height:"40",rx:"20",fill:"var(--privy-color-background-2)"}),(0,he.jsx)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M229.848 64.9512C228.001 65.1452 226.643 66.726 226.643 68.5829V75.414C226.643 77.2883 228.026 78.8767 229.891 79.0615C231.417 79.2127 233.21 79.3518 234.643 79.3518C236.862 79.3518 239.95 79.0176 241.563 78.8225C242.183 78.7474 242.643 78.2196 242.643 77.5948V69.7756C242.643 69.1508 242.183 68.6229 241.563 68.5479C239.955 68.3534 236.883 68.0207 234.665 68.0185L234.643 68.0185L234.622 68.0185C233.219 68.0199 231.475 68.1534 229.975 68.3005C229.636 68.3007 229.346 68.0433 229.312 67.6989C229.277 67.3325 229.544 67.0063 229.911 66.9703C231.423 66.8219 233.203 66.6852 234.643 66.6852C236.246 66.6852 238.275 66.855 239.887 67.0221C240.412 67.0765 240.896 67.1309 241.309 67.1796V66.4289C241.309 65.8099 240.858 65.2851 240.244 65.2046C238.746 65.0083 235.977 64.6852 233.976 64.6852C232.734 64.6852 231.195 64.8098 229.848 64.9512ZM240.309 74.6852C240.862 74.6852 241.309 74.2375 241.309 73.6852C241.309 73.1329 240.862 72.6852 240.309 72.6852C239.757 72.6852 239.309 73.1329 239.309 73.6852C239.309 74.2375 239.757 74.6852 240.309 74.6852Z",fill:"var(--privy-color-accent)"}),(0,he.jsx)("path",{d:"M92.6426 74.2969H89.5743M76.6426 74.2969H85.5085M77.5837 78.2687L87.1555 61.6852M84.7273 65.9017L82.2897 61.6852M91.8614 78.2687L86.6849 69.2993",stroke:"var(--privy-color-accent)","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"}),(0,he.jsx)("rect",{x:"65.6426",y:"52.6852",width:"38",height:"38",rx:"19",stroke:"var(--privy-color-background-2","stroke-width":"2"}),(0,he.jsx)("path",{d:"M103.162 71.6852H213.662",stroke:"var(--privy-color-background-2","stroke-width":"2","stroke-dasharray":"4 4"}),(0,he.jsx)("path",{d:"M270.544 116.469C272.146 116.469 273.445 115.175 273.445 113.577C273.445 111.98 272.146 110.685 270.544 110.685C268.942 110.685 267.643 111.98 267.643 113.577C267.643 115.175 268.942 116.469 270.544 116.469Z",fill:"var(--privy-color-accent-light"}),(0,he.jsx)("path",{d:"M157.878 48.3615C160.282 48.3615 162.231 46.4193 162.231 44.0234C162.231 41.6274 160.282 39.6852 157.878 39.6852C155.475 39.6852 153.526 41.6274 153.526 44.0234C153.526 46.4193 155.475 48.3615 157.878 48.3615Z",fill:"var(--privy-color-accent-dark)"}),(0,he.jsx)("path",{d:"M35.0825 96.1749C36.8852 96.1749 38.3466 94.7182 38.3466 92.9212C38.3466 91.1243 36.8852 89.6676 35.0825 89.6676C33.2797 89.6676 31.8184 91.1243 31.8184 92.9212C31.8184 94.7182 33.2797 96.1749 35.0825 96.1749Z",fill:"var(--privy-color-accent-dark)"}),(0,he.jsx)("path",{d:"M164.407 103.673C166.41 103.673 168.034 102.055 168.034 100.058C168.034 98.0616 166.41 96.443 164.407 96.443C162.404 96.443 160.78 98.0616 160.78 100.058C160.78 102.055 162.404 103.673 164.407 103.673Z",fill:"var(--privy-color-accent-light"}),(0,he.jsx)("path",{d:"M292.664 33.277C294.267 33.277 295.566 31.9822 295.566 30.3849C295.566 28.7876 294.267 27.4928 292.664 27.4928C291.062 27.4928 289.763 28.7876 289.763 30.3849C289.763 31.9822 291.062 33.277 292.664 33.277Z",fill:"var(--privy-color-accent-light"}),(0,he.jsx)("path",{d:"M104 12.6997C105.302 12.6997 106.357 11.6476 106.357 10.3498C106.357 9.05206 105.302 8 104 8C102.698 8 101.643 9.05206 101.643 10.3498C101.643 11.6476 102.698 12.6997 104 12.6997Z",fill:"var(--privy-color-accent-light"}),(0,he.jsx)("path",{d:"M7.99998 68.6997C9.30194 68.6997 10.3574 67.6476 10.3574 66.3498C10.3574 65.0521 9.30194 64 7.99998 64C6.69802 64 5.64258 65.0521 5.64258 66.3498C5.64258 67.6476 6.69802 68.6997 7.99998 68.6997Z",fill:"var(--privy-color-accent-light"}),(0,he.jsx)("path",{d:"M312 60.6997C313.302 60.6997 314.357 59.6476 314.357 58.3498C314.357 57.0521 313.302 56 312 56C310.698 56 309.643 57.0521 309.643 58.3498C309.643 59.6476 310.698 60.6997 312 60.6997Z",fill:"var(--privy-color-accent-light"}),(0,he.jsx)("path",{d:"M35.544 42.4694C37.1464 42.4694 38.4454 41.1746 38.4454 39.5773C38.4454 37.98 37.1464 36.6852 35.544 36.6852C33.9416 36.6852 32.6426 37.98 32.6426 39.5773C32.6426 41.1746 33.9416 42.4694 35.544 42.4694Z",fill:"var(--privy-color-accent-light"})]});var D=require("react/jsx-runtime"),Zs=()=>{var m;let[e,t]=(0,It.useState)(null),{authenticated:o,user:r,getAccessToken:n}=F(),{closePrivyModal:i,createAnalyticsEvent:a}=W(),{data:l}=b(),s=(m=J(r))==null?void 0:m.address,{onFailure:p,onSuccess:f,origin:h,appId:u}=l.keyExport,w=g=>{i({shouldCallAuthOnSuccess:!1}),p(typeof g=="string"?new Error(g):g)},v=()=>{i({shouldCallAuthOnSuccess:!1}),f(),a("embedded_wallet_key_export_completed",{walletAddress:s})};return(0,It.useEffect)(()=>{let g=J(r);if(!o||!g)return w("User must be authenticated before exporting their wallet");n().then(t,w)},[o,r]),(0,D.jsxs)(D.Fragment,{children:[(0,D.jsx)(T,{onClose:v}),(0,D.jsxs)(Bd,{children:[(0,D.jsx)(js,{}),(0,D.jsxs)(Fd,{children:[(0,D.jsx)("h3",{children:"Transfer"}),(0,D.jsxs)(zd,{children:[(0,D.jsx)(Ud,{style:{marginRight:6}}),`${s==null?void 0:s.substring(0,4)}...${s==null?void 0:s.substring(s.length-4,s.length-1)}`]})]}),(0,D.jsx)("p",{children:"You can take your account with you to another site using an external wallet!"}),(0,D.jsxs)(Gd,{children:[(0,D.jsxs)(Ks,{children:[(0,D.jsx)(Ys,{children:"1"}),(0,D.jsxs)("span",{children:[(0,D.jsx)("a",{href:"https://privy-io.notion.site/Transferring-your-account-9dab9e16c6034a7ab1ff7fa479b02828",target:"blank",rel:"noopener noreferrer",children:"Follow the guide"})," ","to transfer your account to your wallet of choice."]})]}),(0,D.jsxs)(Ks,{children:[(0,D.jsx)(Ys,{children:"2"}),(0,D.jsx)("span",{children:"Copy this key into your other wallet"})]})]}),(0,D.jsx)("div",{style:{width:"100%"},children:e&&(0,D.jsx)(Dd,{origin:h,appId:u,accessToken:e,address:s,dimensions:{height:"44px"}})}),(0,D.jsxs)(qd,{children:[(0,D.jsx)("h4",{children:"WARNING"}),(0,D.jsx)("p",{children:"Never share your private key with anyone! It controls your account."})]})]}),(0,D.jsx)(B,{protectedByPrivy:!0})]})};function Dd(e){let[t,o]=(0,It.useState)(e.dimensions.width),[r,n]=(0,It.useState)(void 0),i=(0,It.useRef)(null);return(0,It.useEffect)(()=>{if(i.current&&t===void 0){let{width:l}=i.current.getBoundingClientRect();o(l)}let a=getComputedStyle(document.documentElement);n({background2:a.getPropertyValue("--privy-color-background-2"),foreground3:a.getPropertyValue("--privy-color-foreground-3"),foregroundAccent:a.getPropertyValue("--privy-color-foreground-accent"),accent:a.getPropertyValue("--privy-color-accent"),accentDark:a.getPropertyValue("--privy-color-accent-dark"),success:a.getPropertyValue("--privy-color-success")})},[]),(0,D.jsx)("div",{ref:i,children:t&&(0,D.jsxs)(Hd,{children:[(0,D.jsx)("iframe",{style:{position:"absolute",zIndex:1},width:t,height:e.dimensions.height,allow:"clipboard-write self *",src:Nr(e.origin,`/apps/${e.appId}/embedded-wallets/export`,{token:e.accessToken,address:e.address,width:`${t}px`,...r})}),(0,D.jsx)(Vd,{children:"Loading..."})]})})}function Ud(e){return(0,D.jsx)("svg",{width:"16",height:"17",viewBox:"0 0 16 17",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:e.style,children:(0,D.jsx)("path",{d:"M14 8.81335C14 7.98493 13.3284 7.31335 12.5 7.31335H10C10 8.41792 9.10457 9.31335 8 9.31335C6.89543 9.31335 6 8.41792 6 7.31335H3.5C2.67157 7.31335 2 7.98493 2 8.81335M14 8.81335V12.8134C14 13.6418 13.3284 14.3134 12.5 14.3134H3.5C2.67157 14.3134 2 13.6418 2 12.8134V8.81335M14 8.81335V6.81335M2 8.81335V6.81335M14 6.81335C14 5.98493 13.3284 5.31335 12.5 5.31335H3.5C2.67157 5.31335 2 5.98493 2 6.81335M14 6.81335V4.81335C14 3.98493 13.3284 3.31335 12.5 3.31335H3.5C2.67157 3.31335 2 3.98493 2 4.81335V6.81335",stroke:"var(--privy-color-foreground-3)",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})}var Bd=gt.default.div`
804
804
  display: flex;
805
805
  height: 100%;
806
806
  flex-direction: column;
@@ -880,7 +880,7 @@ Resources:
880
880
  && > h4 {
881
881
  color: var(--privy-color-error);
882
882
  }
883
- `;var Mo=require("react"),Oo=C(require("styled-components"));var Kt=require("react"),yn=C(require("styled-components"));var Ei=require("react/jsx-runtime"),Qs=({style:e,...t})=>(0,Ei.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,Ei.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"),Lo=6,$d=new Array(Lo).fill("");function jd(e){return e.replace(/\s+/g,"")}function Ti(e){return/^[a-zA-Z0-9]{1}$/.test(e)}function Kd(e){return/^[a-zA-Z]{1}$/.test(e)}function Yd(e){return/^[a-z]{1}$/.test(e)}function Js(e){return e.length===Lo&&e.every(Ti)}function Zd(e,t){return e.reduce((o,r)=>o+Number(t(r)),0)}function Qd(){return crypto.getRandomValues(new Uint8Array(1))[0]}function Jd(){let e="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789",t=[];for(;t.length<Lo;){let o=Qd();o>247||t.push(e.charAt(o%62))}return t.join("")}var gn=({onChange:e,disabled:t,readOnly:o,disableGeneration:r,errorReasonOverride:n})=>{let[i,a]=(0,Kt.useState)($d),[l,s]=(0,Kt.useState)(null),[p,f]=(0,Kt.useState)(null),h=v=>{var ce;let m=jd(v.currentTarget.value);if(m==="")return;let g=Zd(i,Ti),L=m.split(""),A=!L.every(Ti),S=L.length+g>Lo;if(A){s("Passcode can only be letters and numbers"),f(1);return}if(S){s("Passcode must be exactly 6 letters and numbers"),f(1);return}s(null),f(null);let M=Number((ce=v.currentTarget.name)==null?void 0:ce.charAt(4)),R=[...m||[""]].slice(0,Lo-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),Lo-1),Q=document.querySelector(`input[name=pin-${Ee}]`),ge=R[R.length-1]||"";if(Kd(ge)&&(Yd(ge)?Q.autocapitalize="none":Q.autocapitalize="on"),Q==null||Q.focus(),Js(O)){let K=document.querySelector(`input[name=pin-${Ee}]`);K==null||K.blur(),e(O.join(""))}else e(null);v.preventDefault()},u=v=>{p===1&&(s(null),f(null));let m=[...i.slice(0,v),"",...i.slice(v+1)];if(a(m),v>0){let g=document.querySelector(`input[name=pin-${v-1}]`);g==null||g.focus()}Js(m)?e(m.join("")):e(null)},w=o||r;return(0,Ne.jsxs)(Ne.Fragment,{children:[(0,Ne.jsxs)(Xd,{children:[(0,Ne.jsx)(ep,{fail:!!n||!!l,children:n||l||"Passcode can be letters and numbers"}),(0,Ne.jsx)("div",{children:i.map((v,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))})]}),!w&&(0,Ne.jsx)(tp,{disabled:t,onClick:()=>{let v=Jd();a([...v]),e(v)}})]})},Xd=yn.default.div`
883
+ `;var Mo=require("react"),Oo=C(require("styled-components"));var Kt=require("react"),yn=C(require("styled-components"));var Ei=require("react/jsx-runtime"),Qs=({style:e,...t})=>(0,Ei.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,Ei.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"),Lo=6,$d=new Array(Lo).fill("");function jd(e){return e.replace(/\s+/g,"")}function Ti(e){return/^[a-zA-Z0-9]{1}$/.test(e)}function Kd(e){return/^[a-zA-Z]{1}$/.test(e)}function Yd(e){return/^[a-z]{1}$/.test(e)}function Js(e){return e.length===Lo&&e.every(Ti)}function Zd(e,t){return e.reduce((o,r)=>o+Number(t(r)),0)}function Qd(){return crypto.getRandomValues(new Uint8Array(1))[0]}function Jd(){let e="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789",t=[];for(;t.length<Lo;){let o=Qd();o>247||t.push(e.charAt(o%62))}return t.join("")}var gn=({onChange:e,disabled:t,readOnly:o,disableGeneration:r,errorReasonOverride:n})=>{let[i,a]=(0,Kt.useState)($d),[l,s]=(0,Kt.useState)(null),[p,f]=(0,Kt.useState)(null),h=v=>{var ce;let m=jd(v.currentTarget.value);if(m==="")return;let g=Zd(i,Ti),L=m.split(""),A=!L.every(Ti),S=L.length+g>Lo;if(A){s("Passcode can only be letters and numbers"),f(1);return}if(S){s("Passcode must be exactly 6 letters and numbers"),f(1);return}s(null),f(null);let M=Number((ce=v.currentTarget.name)==null?void 0:ce.charAt(4)),R=[...m||[""]].slice(0,Lo-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),Lo-1),Q=document.querySelector(`input[name=pin-${Ee}]`),ye=R[R.length-1]||"";if(Kd(ye)&&(Yd(ye)?Q.autocapitalize="none":Q.autocapitalize="on"),Q==null||Q.focus(),Js(O)){let K=document.querySelector(`input[name=pin-${Ee}]`);K==null||K.blur(),e(O.join(""))}else e(null);v.preventDefault()},u=v=>{p===1&&(s(null),f(null));let m=[...i.slice(0,v),"",...i.slice(v+1)];if(a(m),v>0){let g=document.querySelector(`input[name=pin-${v-1}]`);g==null||g.focus()}Js(m)?e(m.join("")):e(null)},w=o||r;return(0,Ne.jsxs)(Ne.Fragment,{children:[(0,Ne.jsxs)(Xd,{children:[(0,Ne.jsx)(ep,{fail:!!n||!!l,children:n||l||"Passcode can be letters and numbers"}),(0,Ne.jsx)("div",{children:i.map((v,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))})]}),!w&&(0,Ne.jsx)(tp,{disabled:t,onClick:()=>{let v=Jd();a([...v]),e(v)}})]})},Xd=yn.default.div`
884
884
  display: flex;
885
885
  flex-direction: column;
886
886
  width: 100%;
@@ -1031,7 +1031,7 @@ Resources:
1031
1031
  transition: none;
1032
1032
  }
1033
1033
  `}
1034
- `;var Do=require("react"),Uo=C(require("styled-components"));var ye=require("react/jsx-runtime"),el=()=>{let{authenticated:e,getAccessToken:t,user:o}=F(),{walletProxy:r,refreshUser:n,closePrivyModal:i,createAnalyticsEvent:a}=W(),{navigate:l,data:s}=b(),[p,f]=(0,Do.useState)(null),[h,u]=(0,Do.useState)(""),[w,v]=(0,Do.useState)(!1),{onFailure:m,callAuthOnSuccessOnClose:g}=s.createWallet;(0,Do.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})},A=O=>{f(O)},S=J(o),M=S?()=>{v(!0),setTimeout(()=>{v(!1),l("EMBEDDED_WALLET_CREATED_SCREEN")},350)}:async()=>{v(!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{v(!1)}},R=!!S;return(0,ye.jsxs)(ye.Fragment,{children:[(0,ye.jsx)(T,{onClose:L}),(0,ye.jsxs)(ap,{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)(gn,{onChange:A,disabled:w,readOnly:R,errorReasonOverride:h}),R?(0,ye.jsx)(fn,{text:p||""}):null]}),(0,ye.jsxs)(sp,{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)(lp,{loading:w||!r,disabled:!p,onClick:M,warn:R,hideAnimations:!S&&w,children:R?"I have saved my passcode":"Set passcode"})]}),(0,ye.jsx)(B,{protectedByPrivy:!0})]})},ap=Uo.default.div`
1034
+ `;var Do=require("react"),Uo=C(require("styled-components"));var fe=require("react/jsx-runtime"),el=()=>{let{authenticated:e,getAccessToken:t,user:o}=F(),{walletProxy:r,refreshUser:n,closePrivyModal:i,createAnalyticsEvent:a}=W(),{navigate:l,data:s}=b(),[p,f]=(0,Do.useState)(null),[h,u]=(0,Do.useState)(""),[w,v]=(0,Do.useState)(!1),{onFailure:m,callAuthOnSuccessOnClose:g}=s.createWallet;(0,Do.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})},A=O=>{f(O)},S=J(o),M=S?()=>{v(!0),setTimeout(()=>{v(!1),l("EMBEDDED_WALLET_CREATED_SCREEN")},350)}:async()=>{v(!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{v(!1)}},R=!!S;return(0,fe.jsxs)(fe.Fragment,{children:[(0,fe.jsx)(T,{onClose:L}),(0,fe.jsxs)(ap,{children:[(0,fe.jsxs)("div",{children:[(0,fe.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,fe.jsx)(gn,{onChange:A,disabled:w,readOnly:R,errorReasonOverride:h}),R?(0,fe.jsx)(fn,{text:p||""}):null]}),(0,fe.jsxs)(sp,{children:[(0,fe.jsx)("h4",{children:"Why am I doing this?"}),R?(0,fe.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,fe.jsx)("p",{children:"For your security, your account is tied to this device. Your passcode allows you to access it across devices."})]}),(0,fe.jsx)(lp,{loading:w||!r,disabled:!p,onClick:M,warn:R,hideAnimations:!S&&w,children:R?"I have saved my passcode":"Set passcode"})]}),(0,fe.jsx)(B,{protectedByPrivy:!0})]})},ap=Uo.default.div`
1035
1035
  display: flex;
1036
1036
  height: 100%;
1037
1037
  flex-direction: column;
@@ -1069,7 +1069,7 @@ Resources:
1069
1069
  transition: none;
1070
1070
  }
1071
1071
  `}
1072
- `;var pl=require("react"),Lt=C(require("react-device-detect")),at=C(require("styled-components"));var vn=C(require("styled-components"));var Pi=require("react/jsx-runtime"),tl=({style:e,...t})=>(0,Pi.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,Pi.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 wn=require("react/jsx-runtime"),bn=vn.default.div`
1072
+ `;var pl=require("react"),Nt=C(require("react-device-detect")),at=C(require("styled-components"));var vn=C(require("styled-components"));var Pi=require("react/jsx-runtime"),tl=({style:e,...t})=>(0,Pi.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,Pi.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 wn=require("react/jsx-runtime"),bn=vn.default.div`
1073
1073
  display: flex;
1074
1074
  flex-direction: column;
1075
1075
  justify-content: flex-start;
@@ -1113,7 +1113,7 @@ Resources:
1113
1113
  border-color: ${e=>e.fgColor};
1114
1114
  border-radius: 12px;
1115
1115
  }
1116
- `,il=e=>{let t=e.bgColor||"#FFFFFF",o=e.fgColor||"#000000",r=e.size||160;return(0,q.jsx)(yp,{size:r,bgColor:t,fgColor:o,children:(0,q.jsx)(fp,{url:e.url,logo:{element:e.squareLogoElement},outputSize:r,bgColor:t,fgColor:o})})};var sl=require("react/jsx-runtime"),al=({size:e})=>(0,sl.jsx)(il,{url:"https://coinbase-wallet.onelink.me/q5Sx/fdb9b250",squareLogoElement:ze,size:e,fgColor:"#1F1F1F"});var $=require("react/jsx-runtime"),ll=({style:e,...t})=>(0,$.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,$.jsx)("rect",{x:"198.5",y:"133",width:"50",height:"50",rx:"25",fill:"#E1E7EF"}),(0,$.jsx)(be,{x:"206",y:"140",width:"36",height:"36"}),(0,$.jsx)("rect",{x:"192",y:"30",width:"50",height:"50",rx:"25",fill:"#0C5BFF"}),(0,$.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,$.jsx)("rect",{x:"39.5",y:"18",width:"50",height:"50",rx:"25",fill:"url(#paint0_linear_428_81)"}),(0,$.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,$.jsx)("rect",{x:"46.5",y:"124",width:"50",height:"50",rx:"25",fill:"#141414"}),(0,$.jsx)("g",{clipPath:"url(#clip0_428_81)",children:(0,$.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,$.jsx)("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",fill:"var(--privy-color-foreground-accent)"}),(0,$.jsx)(un,{x:"63",y:"17"}),(0,$.jsx)("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",stroke:"#E1E7EF",strokeWidth:"2"}),(0,$.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,$.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,$.jsxs)("defs",{children:[(0,$.jsxs)("linearGradient",{id:"paint0_linear_428_81",x1:"64.5",y1:"18",x2:"64.5",y2:"68",gradientUnits:"userSpaceOnUse",children:[(0,$.jsx)("stop",{stopColor:"#534BB1"}),(0,$.jsx)("stop",{offset:"1",stopColor:"#551BF9"})]}),(0,$.jsxs)("linearGradient",{id:"paint1_linear_428_81",x1:"64.5",y1:"30.9167",x2:"64.5",y2:"55.0834",gradientUnits:"userSpaceOnUse",children:[(0,$.jsx)("stop",{stopColor:"white"}),(0,$.jsx)("stop",{offset:"1",stopColor:"white",stopOpacity:"0.82"})]}),(0,$.jsx)("clipPath",{id:"clip0_428_81",children:(0,$.jsx)("rect",{width:"31.6667",height:"19.1667",fill:"white",transform:"translate(55.6667 139.833)"})})]})]});var y=require("react/jsx-runtime");var Ai=()=>{let{navigate:e}=b(),t="https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn?hl=en";return Lt.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/ether-metamask/"),(0,y.jsxs)(Ri,{children:[(0,y.jsx)(pe,{title:"Create a Metamask wallet",description:"Follow the instructions below to get started."}),(0,y.jsx)(Wi,{children:(0,y.jsx)(be,{style:{width:"152px",height:"152px"}})}),(0,y.jsxs)(bn,{children:[(0,y.jsx)(vt,{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)(co,{}),(0,y.jsx)(vt,{children:"Set up your first wallet"}),(0,y.jsx)(co,{}),(0,y.jsx)(vt,{children:"Store your recovery phrase in a safe place!"})]}),(0,y.jsx)(he,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},Si=()=>{let{navigate:e}=b(),t="https://chrome.google.com/webstore/detail/phantom/bfnaelmomeimhlpmgjnjophhpkkoljpa?hl=en";return Lt.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/phantom-app/"),(0,y.jsxs)(Ri,{children:[(0,y.jsx)(pe,{title:"Create a Phantom wallet",description:"Follow the instructions below to get started."}),(0,y.jsx)(Wi,{children:(0,y.jsx)(ht,{style:{width:"152px",height:"152px"}})}),(0,y.jsxs)(bn,{children:[(0,y.jsx)(vt,{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)(co,{}),(0,y.jsx)(vt,{children:"Set up your first wallet"}),(0,y.jsx)(co,{}),(0,y.jsx)(vt,{children:"Store your recovery phrase in a safe place!"})]}),(0,y.jsx)(he,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},ki=()=>{let{navigate:e}=b();return(0,y.jsxs)(Ri,{children:[(0,y.jsx)(pe,{title:"Create a Coinbase wallet",description:"Follow the instructions below to get started."}),(0,y.jsx)(Wi,{style:{marginTop:"-24px"},children:(0,y.jsx)(al,{size:200})}),(0,y.jsxs)(bn,{children:[(0,y.jsx)(vt,{children:"Scan the QR code with your camera"}),(0,y.jsx)(co,{}),(0,y.jsx)(vt,{children:"Set up your first wallet"}),(0,y.jsx)(co,{}),(0,y.jsx)(vt,{children:"Store your seed phrase in a safe place!"})]}),(0,y.jsx)(he,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},ul=()=>{let[e,t]=(0,pl.useState)("WHAT_IS_A_WALLET"),{navigateBack:o}=b();return(0,y.jsxs)(y.Fragment,{children:[(0,y.jsx)(T,{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)(gp,{children:[e==="WHAT_IS_A_WALLET"&&(0,y.jsxs)(y.Fragment,{children:[(0,y.jsx)(xp,{children:(0,y.jsx)(ll,{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)(wp,{children:(0,y.jsx)(Cp,{onClick:()=>{t("PICK_A_NEW_WALLET")},children:"Create a wallet"})})]}),e==="PICK_A_NEW_WALLET"&&(0,y.jsx)(y.Fragment,{children:(0,y.jsxs)(vp,{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)(bp,{children:[(0,y.jsxs)(cl,{onClick:()=>{Lt.isIOS?window.location.href="https://apps.apple.com/us/app/metamask-blockchain-wallet/id1438144202":Lt.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)(dl,{children:[(0,y.jsx)("h4",{children:"MetaMask"}),(0,y.jsx)("p",{children:"Get a browser-based wallet"})]})]}),(0,y.jsxs)(cl,{onClick:()=>{Lt.isIOS?window.location.href="https://apps.apple.com/us/app/coinbase-wallet-nfts-crypto/id1278383455":Lt.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)(dl,{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)(ki,{}),e==="CREATE_METAMASK_WALLET"&&(0,y.jsx)(Ai,{}),e==="CREATE_PHANTOM_WALLET"&&(0,y.jsx)(Si,{})]}),(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"}),"."]})]})},gp=at.default.div`
1116
+ `,il=e=>{let t=e.bgColor||"#FFFFFF",o=e.fgColor||"#000000",r=e.size||160;return(0,q.jsx)(yp,{size:r,bgColor:t,fgColor:o,children:(0,q.jsx)(fp,{url:e.url,logo:{element:e.squareLogoElement},outputSize:r,bgColor:t,fgColor:o})})};var sl=require("react/jsx-runtime"),al=({size:e})=>(0,sl.jsx)(il,{url:"https://coinbase-wallet.onelink.me/q5Sx/fdb9b250",squareLogoElement:ze,size:e,fgColor:"#1F1F1F"});var $=require("react/jsx-runtime"),ll=({style:e,...t})=>(0,$.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,$.jsx)("rect",{x:"198.5",y:"133",width:"50",height:"50",rx:"25",fill:"#E1E7EF"}),(0,$.jsx)(ve,{x:"206",y:"140",width:"36",height:"36"}),(0,$.jsx)("rect",{x:"192",y:"30",width:"50",height:"50",rx:"25",fill:"#0C5BFF"}),(0,$.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,$.jsx)("rect",{x:"39.5",y:"18",width:"50",height:"50",rx:"25",fill:"url(#paint0_linear_428_81)"}),(0,$.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,$.jsx)("rect",{x:"46.5",y:"124",width:"50",height:"50",rx:"25",fill:"#141414"}),(0,$.jsx)("g",{clipPath:"url(#clip0_428_81)",children:(0,$.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,$.jsx)("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",fill:"var(--privy-color-foreground-accent)"}),(0,$.jsx)(un,{x:"63",y:"17"}),(0,$.jsx)("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",stroke:"#E1E7EF",strokeWidth:"2"}),(0,$.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,$.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,$.jsxs)("defs",{children:[(0,$.jsxs)("linearGradient",{id:"paint0_linear_428_81",x1:"64.5",y1:"18",x2:"64.5",y2:"68",gradientUnits:"userSpaceOnUse",children:[(0,$.jsx)("stop",{stopColor:"#534BB1"}),(0,$.jsx)("stop",{offset:"1",stopColor:"#551BF9"})]}),(0,$.jsxs)("linearGradient",{id:"paint1_linear_428_81",x1:"64.5",y1:"30.9167",x2:"64.5",y2:"55.0834",gradientUnits:"userSpaceOnUse",children:[(0,$.jsx)("stop",{stopColor:"white"}),(0,$.jsx)("stop",{offset:"1",stopColor:"white",stopOpacity:"0.82"})]}),(0,$.jsx)("clipPath",{id:"clip0_428_81",children:(0,$.jsx)("rect",{width:"31.6667",height:"19.1667",fill:"white",transform:"translate(55.6667 139.833)"})})]})]});var y=require("react/jsx-runtime");var Ai=()=>{let{navigate:e}=b(),t="https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn?hl=en";return Nt.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/ether-metamask/"),(0,y.jsxs)(Ri,{children:[(0,y.jsx)(pe,{title:"Create a Metamask wallet",description:"Follow the instructions below to get started."}),(0,y.jsx)(Wi,{children:(0,y.jsx)(ve,{style:{width:"152px",height:"152px"}})}),(0,y.jsxs)(bn,{children:[(0,y.jsx)(vt,{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)(co,{}),(0,y.jsx)(vt,{children:"Set up your first wallet"}),(0,y.jsx)(co,{}),(0,y.jsx)(vt,{children:"Store your recovery phrase in a safe place!"})]}),(0,y.jsx)(we,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},Si=()=>{let{navigate:e}=b(),t="https://chrome.google.com/webstore/detail/phantom/bfnaelmomeimhlpmgjnjophhpkkoljpa?hl=en";return Nt.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/phantom-app/"),(0,y.jsxs)(Ri,{children:[(0,y.jsx)(pe,{title:"Create a Phantom wallet",description:"Follow the instructions below to get started."}),(0,y.jsx)(Wi,{children:(0,y.jsx)(ht,{style:{width:"152px",height:"152px"}})}),(0,y.jsxs)(bn,{children:[(0,y.jsx)(vt,{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)(co,{}),(0,y.jsx)(vt,{children:"Set up your first wallet"}),(0,y.jsx)(co,{}),(0,y.jsx)(vt,{children:"Store your recovery phrase in a safe place!"})]}),(0,y.jsx)(we,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},ki=()=>{let{navigate:e}=b();return(0,y.jsxs)(Ri,{children:[(0,y.jsx)(pe,{title:"Create a Coinbase wallet",description:"Follow the instructions below to get started."}),(0,y.jsx)(Wi,{style:{marginTop:"-24px"},children:(0,y.jsx)(al,{size:200})}),(0,y.jsxs)(bn,{children:[(0,y.jsx)(vt,{children:"Scan the QR code with your camera"}),(0,y.jsx)(co,{}),(0,y.jsx)(vt,{children:"Set up your first wallet"}),(0,y.jsx)(co,{}),(0,y.jsx)(vt,{children:"Store your seed phrase in a safe place!"})]}),(0,y.jsx)(we,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},ul=()=>{let[e,t]=(0,pl.useState)("WHAT_IS_A_WALLET"),{navigateBack:o}=b();return(0,y.jsxs)(y.Fragment,{children:[(0,y.jsx)(T,{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)(gp,{children:[e==="WHAT_IS_A_WALLET"&&(0,y.jsxs)(y.Fragment,{children:[(0,y.jsx)(xp,{children:(0,y.jsx)(ll,{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)(wp,{children:(0,y.jsx)(Cp,{onClick:()=>{t("PICK_A_NEW_WALLET")},children:"Create a wallet"})})]}),e==="PICK_A_NEW_WALLET"&&(0,y.jsx)(y.Fragment,{children:(0,y.jsxs)(vp,{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)(bp,{children:[(0,y.jsxs)(cl,{onClick:()=>{Nt.isIOS?window.location.href="https://apps.apple.com/us/app/metamask-blockchain-wallet/id1438144202":Nt.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=io.metamask":t("CREATE_METAMASK_WALLET")},children:[(0,y.jsx)(ve,{}),(0,y.jsxs)(dl,{children:[(0,y.jsx)("h4",{children:"MetaMask"}),(0,y.jsx)("p",{children:"Get a browser-based wallet"})]})]}),(0,y.jsxs)(cl,{onClick:()=>{Nt.isIOS?window.location.href="https://apps.apple.com/us/app/coinbase-wallet-nfts-crypto/id1278383455":Nt.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)(dl,{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)(ki,{}),e==="CREATE_METAMASK_WALLET"&&(0,y.jsx)(Ai,{}),e==="CREATE_PHANTOM_WALLET"&&(0,y.jsx)(Si,{})]}),(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"}),"."]})]})},gp=at.default.div`
1117
1117
  display: flex;
1118
1118
  flex-direction: column;
1119
1119
  height: 100%;
@@ -1474,7 +1474,7 @@ Resources:
1474
1474
  }
1475
1475
  `,Dp=(0,uo.default)(Ce)`
1476
1476
  flex-direction: ${e=>e.reverse?"column-reverse":"column"};
1477
- `;var st=require("react/jsx-runtime"),xl=()=>{let{app:e}=b();return(0,st.jsxs)(st.Fragment,{children:[(0,st.jsx)(T,{},"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)(Cn,{})}),(0,st.jsx)(Ce,{children:(0,st.jsx)(xn,{stacked:!0})}),(0,st.jsx)(B,{protectedByPrivy:!0})]})};var lt=require("react/jsx-runtime"),El=()=>{let{app:e}=b();return(0,lt.jsxs)(lt.Fragment,{children:[(0,lt.jsx)(T,{},"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)(En,{})}),(0,lt.jsx)(Ce,{children:(0,lt.jsx)(Tn,{stacked:!0})}),(0,lt.jsx)(B,{protectedByPrivy:!0})]})};var ct=require("react/jsx-runtime"),Tl=()=>{let{linkingHint:e}=W(),{app:t}=b(),o=e?`Select the wallet with ${Bt(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)(T,{},"header"),(0,ct.jsx)(ft,{title:`${e?"Reconnect":"Connect"} your wallet`,description:o}),(0,ct.jsxs)(Ce,{children:[(0,ct.jsx)(qt,{connectOnly:!1}),(0,ct.jsx)($t,{})]}),(0,ct.jsx)(B,{protectedByPrivy:!0})]})};var ur=require("react/jsx-runtime"),Pl=({style:e,...t})=>(0,ur.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,ur.jsx)("circle",{cx:"82",cy:"82",r:"80",stroke:"#EC6351","stroke-width":"4","stroke-linecap":"round"}),(0,ur.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"),_l=()=>{let{closePrivyModal:e}=W(),{navigate:t}=b();return(0,Ye.jsxs)(Ye.Fragment,{children:[(0,Ye.jsx)(T,{},"header"),(0,Ye.jsx)(Pl,{style:{width:"160px",height:"160px",margin:"0 auto 20px"}}),(0,Ye.jsx)(ft,{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)(ne,{onClick:()=>t("LANDING"),children:"Try again"}),(0,Ye.jsx)(ds,{onClick:()=>e(),children:"Cancel"})]}),(0,Ye.jsx)(B,{protectedByPrivy:!0})]})};var Go=require("react"),Rn=C(require("styled-components"));var Se=require("react/jsx-runtime"),Al={google:{name:"Google",component:Sn},discord:{name:"Discord",component:_n},github:{name:"Github",component:An},twitter:{name:"Twitter",component:kn},apple:{name:"Apple",component:Pn}},Up=e=>e.charAt(0).toUpperCase()+e.slice(1),Ui=()=>{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)},Sl=()=>{var R;let{ready:e,user:t,authenticated:o}=F(),{app:r,data:n,setModalData:i,navigate:a}=b(),{getAuthMeta:l,initLoginWithOAuth:s,loginWithOAuth:p,closePrivyModal:f}=W(),[h,u]=(0,Go.useState)(!1),[w,v]=(0,Go.useState)(void 0),m=((R=l())==null?void 0:R.provider)||"google",g=Al[m].name,L=Al[m].component,A=r!=null&&r.render.inDialog?pt:0;(0,Go.useEffect)(()=>{!e||p().then(()=>{Ui(),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 ${Up(m)} to finish connecting your account.`,I.retryable=!0),Ui(),v(I)})},[e]),(0,Go.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")},A);return()=>clearTimeout(Q)}else{let Q=setTimeout(f,A);return()=>clearTimeout(Q)}},[o,h,t]);let S=h?`Successfully connected with ${g}`:w?w.message:`Verifying connection to ${g}`,M="";return h?M="You\u2019re good to go!":w?M=w.detail:M="Just a few moments more",(0,Se.jsxs)(Se.Fragment,{children:[(0,Se.jsx)(T,{}),(0,Se.jsxs)(Bp,{children:[(0,Se.jsx)(Gp,{children:(0,Se.jsxs)("div",{children:[(0,Se.jsx)(Zr,{success:h,fail:!!w}),(0,Se.jsx)(L,{style:{width:"38px",height:"38px"}})]})}),(0,Se.jsxs)(Fp,{children:[(0,Se.jsx)("h3",{children:S}),(0,Se.jsx)("p",{children:M})]}),(0,Se.jsx)(he,{onClick:()=>{Ui(),s(m),v(void 0)},invisible:h||!(w!=null&&w.retryable),disabled:!h&&!(w!=null&&w.retryable),children:"Retry"})]})]})},Bp=Rn.default.div`
1477
+ `;var st=require("react/jsx-runtime"),xl=()=>{let{app:e}=b();return(0,st.jsxs)(st.Fragment,{children:[(0,st.jsx)(T,{},"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)(Cn,{})}),(0,st.jsx)(Ce,{children:(0,st.jsx)(xn,{stacked:!0})}),(0,st.jsx)(B,{protectedByPrivy:!0})]})};var lt=require("react/jsx-runtime"),El=()=>{let{app:e}=b();return(0,lt.jsxs)(lt.Fragment,{children:[(0,lt.jsx)(T,{},"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)(En,{})}),(0,lt.jsx)(Ce,{children:(0,lt.jsx)(Tn,{stacked:!0})}),(0,lt.jsx)(B,{protectedByPrivy:!0})]})};var ct=require("react/jsx-runtime"),Tl=()=>{let{linkingHint:e}=W(),{app:t}=b(),o=e?`Select the wallet with ${Ut(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)(T,{},"header"),(0,ct.jsx)(ft,{title:`${e?"Reconnect":"Connect"} your wallet`,description:o}),(0,ct.jsxs)(Ce,{children:[(0,ct.jsx)(qt,{connectOnly:!1}),(0,ct.jsx)($t,{})]}),(0,ct.jsx)(B,{protectedByPrivy:!0})]})};var ur=require("react/jsx-runtime"),Pl=({style:e,...t})=>(0,ur.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,ur.jsx)("circle",{cx:"82",cy:"82",r:"80",stroke:"#EC6351","stroke-width":"4","stroke-linecap":"round"}),(0,ur.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"),_l=()=>{let{closePrivyModal:e}=W(),{navigate:t}=b();return(0,Ye.jsxs)(Ye.Fragment,{children:[(0,Ye.jsx)(T,{},"header"),(0,Ye.jsx)(Pl,{style:{width:"160px",height:"160px",margin:"0 auto 20px"}}),(0,Ye.jsx)(ft,{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)(ne,{onClick:()=>t("LANDING"),children:"Try again"}),(0,Ye.jsx)(ds,{onClick:()=>e(),children:"Cancel"})]}),(0,Ye.jsx)(B,{protectedByPrivy:!0})]})};var Go=require("react"),Rn=C(require("styled-components"));var Se=require("react/jsx-runtime"),Al={google:{name:"Google",component:Sn},discord:{name:"Discord",component:_n},github:{name:"Github",component:An},twitter:{name:"Twitter",component:kn},apple:{name:"Apple",component:Pn}},Up=e=>e.charAt(0).toUpperCase()+e.slice(1),Ui=()=>{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)},Sl=()=>{var R;let{ready:e,user:t,authenticated:o}=F(),{app:r,data:n,setModalData:i,navigate:a}=b(),{getAuthMeta:l,initLoginWithOAuth:s,loginWithOAuth:p,closePrivyModal:f}=W(),[h,u]=(0,Go.useState)(!1),[w,v]=(0,Go.useState)(void 0),m=((R=l())==null?void 0:R.provider)||"google",g=Al[m].name,L=Al[m].component,A=r!=null&&r.render.inDialog?pt:0;(0,Go.useEffect)(()=>{!e||p().then(()=>{Ui(),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 ${Up(m)} to finish connecting your account.`,I.retryable=!0),Ui(),v(I)})},[e]),(0,Go.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:ye=>console.error(ye),callAuthOnSuccessOnClose:!0}}),console.log("Navigating to wallet creation flow"),a("EMBEDDED_WALLET_SCREEN")},A);return()=>clearTimeout(Q)}else{let Q=setTimeout(f,A);return()=>clearTimeout(Q)}},[o,h,t]);let S=h?`Successfully connected with ${g}`:w?w.message:`Verifying connection to ${g}`,M="";return h?M="You\u2019re good to go!":w?M=w.detail:M="Just a few moments more",(0,Se.jsxs)(Se.Fragment,{children:[(0,Se.jsx)(T,{}),(0,Se.jsxs)(Bp,{children:[(0,Se.jsx)(Gp,{children:(0,Se.jsxs)("div",{children:[(0,Se.jsx)(Zr,{success:h,fail:!!w}),(0,Se.jsx)(L,{style:{width:"38px",height:"38px"}})]})}),(0,Se.jsxs)(Fp,{children:[(0,Se.jsx)("h3",{children:S}),(0,Se.jsx)("p",{children:M})]}),(0,Se.jsx)(we,{onClick:()=>{Ui(),s(m),v(void 0)},invisible:h||!(w!=null&&w.retryable),disabled:!h&&!(w!=null&&w.retryable),children:"Retry"})]})]})},Bp=Rn.default.div`
1478
1478
  display: flex;
1479
1479
  flex-direction: column;
1480
1480
  align-items: center;
@@ -1511,7 +1511,7 @@ Resources:
1511
1511
  }
1512
1512
  `;var mr=require("react"),Wl=C(require("styled-components"));var kl=require("react-device-detect");var Rl=(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(!ut()&&kl.isMobile)return`${t?"phantom://":"https://phantom.app/ul/"}browse/${r}?ref=${r}`};var Ue=require("react/jsx-runtime"),Il=()=>{let{forkSession:e,ready:t,authenticated:o}=F(),[r,n]=(0,mr.useState)(""),[i,a]=(0,mr.useState)(!1);(0,mr.useEffect)(()=>{t&&o&&e().then(n)},[t,o]);let l=Rl(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)(T,{},"header"),(0,Ue.jsx)(ft,{title:s.title,description:s.description}),(0,Ue.jsxs)(Ce,{children:[(0,Ue.jsx)(Hp,{children:(0,Ue.jsx)(ht,{style:{width:"72px",height:"72px"}})}),(0,Ue.jsx)(Qr,{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})]})},Hp=(0,Wl.default)(So)`
1513
1513
  margin: 16px auto;
1514
- `;var Ot=require("react"),yo=C(require("styled-components"));var Vi=C(require("styled-components"));var Bi=C(require("styled-components")),hr=require("react/jsx-runtime"),fr=({label:e,children:t,valueStyles:o})=>(0,hr.jsxs)(Vp,{children:[(0,hr.jsx)("div",{children:e}),(0,hr.jsx)(zp,{style:{...o},children:t})]}),Vp=Bi.default.div`
1514
+ `;var Mt=require("react"),yo=C(require("styled-components"));var Vi=C(require("styled-components"));var Bi=C(require("styled-components")),hr=require("react/jsx-runtime"),fr=({label:e,children:t,valueStyles:o})=>(0,hr.jsxs)(Vp,{children:[(0,hr.jsx)("div",{children:e}),(0,hr.jsx)(zp,{style:{...o},children:t})]}),Vp=Bi.default.div`
1515
1515
  display: flex;
1516
1516
  align-items: center;
1517
1517
  justify-content: space-between;
@@ -1627,7 +1627,7 @@ Resources:
1627
1627
  padding-top: 8px;
1628
1628
  `,Jp=Zt.default.div`
1629
1629
  transform: ${e=>e.isactive?"rotate(180deg)":"rotate(0deg)"};
1630
- `;var Zl=C(require("styled-components"));var Ql=require("react/jsx-runtime"),Hi=({walletAddress:e,chainId:t=Ve})=>(0,Ql.jsx)(Xp,{href:Ol(t,e),target:"_blank",children:Bt(e)}),Xp=Zl.default.a`
1630
+ `;var Zl=C(require("styled-components"));var Ql=require("react/jsx-runtime"),Hi=({walletAddress:e,chainId:t=Ve})=>(0,Ql.jsx)(Xp,{href:Ol(t,e),target:"_blank",children:Ut(e)}),Xp=Zl.default.a`
1631
1631
  &:hover {
1632
1632
  text-decoration: underline;
1633
1633
  }
@@ -1677,7 +1677,7 @@ Resources:
1677
1677
  white-space: nowrap;
1678
1678
  max-width: 275px;
1679
1679
  text-overflow: ellipsis;
1680
- `;var br=require("react"),Mn=C(require("styled-components"));var vr=require("@ethersproject/providers");async function Xl(e,t,o,r){return r=Object.assign({chainId:Ve},r),r.chainId=Number(r.chainId),rc(r),(await o.rpc({address:t,accessToken:e,request:{method:"eth_populateTransactionRequest",params:[r]}})).response.data}async function ec(e,t,o,r){r=Object.assign({chainId:Ve},r),rc(r);let i=(await o.rpc({address:t,accessToken:e,request:{method:"eth_signTransaction",params:[r]}})).response.data,l=await(await su(r.chainId,i)).wait();return du(l)}function su(e,t){return new vr.InfuraProvider(e,et).sendTransaction(t)}async function tc(e,t=Ve){return await new vr.InfuraProvider(t,et).getBalance(e)}async function oc(e){return delete e.from,await new vr.InfuraProvider(Number(e.chainId)||Ve,et).estimateGas(e)}function rc(e){let t=["gasLimit","gasPrice","value","maxPriorityFeePerGas","maxFeePerGas"];for(let o of t){let r=e[o];if(!(typeof r>"u")&&!lu(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 lu(e){let t=typeof e=="number",o=typeof e=="bigint",r=typeof e=="string"&&cu(e);return t||o||r}function cu(e){return/^-?0x[a-f0-9]+$/i.test(e)}function du(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 zi=require("react/jsx-runtime"),nc=({style:e,...t})=>(0,zi.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,zi.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 fo=require("react/jsx-runtime"),ic=({wallet:e,txnValue:t,chainId:o})=>{let[r,n]=(0,br.useState)(),[i,a]=(0,br.useState)(!1);return(0,br.useEffect)(()=>{(async s=>{try{let p=await tc(s,o);t&&p.sub(Be(t)).isNegative()&&a(!0),n(p.toHexString())}catch(p){console.log(p)}})(e.address)},[e,t]),(0,fo.jsxs)(pu,{children:[(0,fo.jsxs)(uu,{children:[(0,fo.jsx)(nc,{style:{height:"12px",width:"12px"}}),(0,fo.jsx)("div",{children:Bt(e==null?void 0:e.address)})]}),(0,fo.jsxs)(mu,{displayBalanceColor:!!t,hasFunds:!i,children:[r?mo(r):0," ETH"]})]})},pu=Mn.default.div`
1680
+ `;var br=require("react"),Mn=C(require("styled-components"));var vr=require("@ethersproject/providers");async function Xl(e,t,o,r){return r=Object.assign({chainId:Ve},r),r.chainId=Number(r.chainId),rc(r),(await o.rpc({address:t,accessToken:e,request:{method:"eth_populateTransactionRequest",params:[r]}})).response.data}async function ec(e,t,o,r){r=Object.assign({chainId:Ve},r),rc(r);let i=(await o.rpc({address:t,accessToken:e,request:{method:"eth_signTransaction",params:[r]}})).response.data,l=await(await su(r.chainId,i)).wait();return du(l)}function su(e,t){return new vr.InfuraProvider(e,et).sendTransaction(t)}async function tc(e,t=Ve){return await new vr.InfuraProvider(t,et).getBalance(e)}async function oc(e){return delete e.from,await new vr.InfuraProvider(Number(e.chainId)||Ve,et).estimateGas(e)}function rc(e){let t=["gasLimit","gasPrice","value","maxPriorityFeePerGas","maxFeePerGas"];for(let o of t){let r=e[o];if(!(typeof r>"u")&&!lu(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 lu(e){let t=typeof e=="number",o=typeof e=="bigint",r=typeof e=="string"&&cu(e);return t||o||r}function cu(e){return/^-?0x[a-f0-9]+$/i.test(e)}function du(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 zi=require("react/jsx-runtime"),nc=({style:e,...t})=>(0,zi.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,zi.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 fo=require("react/jsx-runtime"),ic=({wallet:e,txnValue:t,chainId:o})=>{let[r,n]=(0,br.useState)(),[i,a]=(0,br.useState)(!1);return(0,br.useEffect)(()=>{(async s=>{try{let p=await tc(s,o);t&&p.sub(Be(t)).isNegative()&&a(!0),n(p.toHexString())}catch(p){console.log(p)}})(e.address)},[e,t]),(0,fo.jsxs)(pu,{children:[(0,fo.jsxs)(uu,{children:[(0,fo.jsx)(nc,{style:{height:"12px",width:"12px"}}),(0,fo.jsx)("div",{children:Ut(e==null?void 0:e.address)})]}),(0,fo.jsxs)(mu,{displayBalanceColor:!!t,hasFunds:!i,children:[r?mo(r):0," ETH"]})]})},pu=Mn.default.div`
1681
1681
  display: flex;
1682
1682
  flex-direction: row;
1683
1683
  justify-content: space-between;
@@ -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 wr=C(require("styled-components"));var Mt=require("react");var On=e=>{let{getUsdTokenPrice:t}=W(),[o,r]=(0,Mt.useState)(!1),[n,i]=(0,Mt.useState)(!1),[a,l]=(0,Mt.useState)(void 0),[s,p]=(0,Mt.useState)(void 0),[f,h]=(0,Mt.useState)(null);return(0,Mt.useEffect)(()=>{let u=e.chainId||Ve;(async()=>{try{r(!0);let v=await t(u);p(v)}catch(v){l(v)}finally{r(!1)}})()},[]),(0,Mt.useEffect)(()=>{(async()=>{try{i(!0);let w=await oc(e);h(w.toBigInt())}catch(w){l(w)}finally{i(!1)}})()},[e]),{tokenPrice:s,estimatedGas:f,isLoading:o||n,error:a}};var zo=require("react/jsx-runtime"),ac=e=>{var o,r;let{tokenPrice:t}=On(e.txn);return(0,zo.jsxs)(hu,{children:[(0,zo.jsxs)(fu,{children:["$",((o=e.txn)==null?void 0:o.value)&&t?Wn(Be(e.txn.value).toHexString(),t):"--"]}),(0,zo.jsxs)(yu,{children:[(r=e.txn)!=null&&r.value?mo(Be(e.txn.value).toHexString()):"--"," ","ETH"]}),(0,zo.jsx)(gu,{children:e.description})]})},hu=wr.default.div`
1705
+ `;var wr=C(require("styled-components"));var Lt=require("react");var On=e=>{let{getUsdTokenPrice:t}=W(),[o,r]=(0,Lt.useState)(!1),[n,i]=(0,Lt.useState)(!1),[a,l]=(0,Lt.useState)(void 0),[s,p]=(0,Lt.useState)(void 0),[f,h]=(0,Lt.useState)(null);return(0,Lt.useEffect)(()=>{let u=e.chainId||Ve;(async()=>{try{r(!0);let v=await t(u);p(v)}catch(v){l(v)}finally{r(!1)}})()},[]),(0,Lt.useEffect)(()=>{(async()=>{try{i(!0);let w=await oc(e);h(w.toBigInt())}catch(w){l(w)}finally{i(!1)}})()},[e]),{tokenPrice:s,estimatedGas:f,isLoading:o||n,error:a}};var zo=require("react/jsx-runtime"),ac=e=>{var o,r;let{tokenPrice:t}=On(e.txn);return(0,zo.jsxs)(hu,{children:[(0,zo.jsxs)(fu,{children:["$",((o=e.txn)==null?void 0:o.value)&&t?Wn(Be(e.txn.value).toHexString(),t):"--"]}),(0,zo.jsxs)(yu,{children:[(r=e.txn)!=null&&r.value?mo(Be(e.txn.value).toHexString()):"--"," ","ETH"]}),(0,zo.jsx)(gu,{children:e.description})]})},hu=wr.default.div`
1706
1706
  display: flex;
1707
1707
  flex-direction: column;
1708
1708
  align-items: center;
@@ -1736,7 +1736,7 @@ Resources:
1736
1736
  flex-grow: 1;
1737
1737
  `,bu=(0,qi.default)(ne)`
1738
1738
  transition: color 350ms ease, background-color 350ms ease;
1739
- `;var G=require("react/jsx-runtime"),wu=e=>{var t;switch(e.txnFamily){case"SEND_ETH":return(0,G.jsx)(G.Fragment,{children:(0,G.jsx)(ac,{description:((t=e.uiOptions.transactionInfo)==null?void 0:t.description)||"",txn:e.txn})});case"CONTRACT_CALL":return(0,G.jsx)(G.Fragment,{children:e.uiOptions.senderInfo&&(0,G.jsx)(Jl,{partyInfo:e.uiOptions.senderInfo})});default:return(0,G.jsx)("div",{children:"Unsupported transaction."})}},dc=()=>{let{authenticated:e,getAccessToken:t,user:o}=F(),{walletProxy:r,closePrivyModal:n}=W(),{navigate:i,data:a}=b(),{transactionRequest:l,onSuccess:s,onFailure:p,uiOptions:f}=a.sendTransaction,[h,u]=(0,Ot.useState)(null),[w,v]=(0,Ot.useState)(""),[m,g]=(0,Ot.useState)(!0),[L,A]=(0,Ot.useState)(!1),[S,M]=(0,Ot.useState)(l),{tokenPrice:R,estimatedGas:O}=On(S);(0,Ot.useEffect)(()=>{e||(i("LANDING"),p(new Error("User must be authenticated before transacting with a Privy wallet")))},[e]);let I=J(o);(0,Ot.useEffect)(()=>{async function ce(){let K=await t();return!K||!r||!I?S:Xl(K,I.address,r,S)}ce().then(K=>{g(!1),M(K)},K=>{g(!0),Ds(K)?v(K.message):(v("There was an error preparing transaction"),console.error(K))})},[r]);let Ee=sc(S),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(w||"User exited the modal before submitting the transaction")),n({shouldCallAuthOnSuccess:!1}))};return R===void 0||O===null?(0,G.jsxs)(G.Fragment,{children:[(0,G.jsx)(T,{title:Q.modalTitle,onClose:ge}),(0,G.jsx)(cc,{children:(0,G.jsx)(pn,{})})]}):h!==null?(0,G.jsx)(lc,{txn:S,onClose:ge,receipt:h,transactionInfo:f.transactionInfo,tokenPrice:R}):(0,G.jsxs)(G.Fragment,{children:[(0,G.jsx)(T,{title:Q.modalTitle,onClose:ge}),(0,G.jsxs)(cc,{children:[(0,G.jsxs)(Tu,{children:[(0,G.jsx)(wu,{txn:S,txnFamily:Ee,uiOptions:f}),I?(0,G.jsx)(Ln,{from:I.address,to:S.to,txn:S,transactionInfo:f.transactionInfo,gas:Be(O).toHexString(),tokenPrice:R}):null]}),(0,G.jsxs)(Pu,{children:[(0,G.jsx)(Cu,{children:w}),I?(0,G.jsx)(ic,{txnValue:S.value,wallet:I,chainId:Number(S.chainId)}):null,(0,G.jsx)(xu,{children:(0,G.jsx)(Eu,{disabled:m||L,loading:!r||L,loadingText:L?"Submitting (may take a few minutes)...":"Loading...",onClick:async()=>{A(!0);let ce=await t();if(ce&&!L&&I)try{let K=await ec(ce,I.address,r,S);u(K),v("")}catch(K){v(K.reason||"An error has occurred, please try again.")}finally{A(!1)}},children:Q.buttonText})})]})]})]})},cc=yo.default.div`
1739
+ `;var G=require("react/jsx-runtime"),wu=e=>{var t;switch(e.txnFamily){case"SEND_ETH":return(0,G.jsx)(G.Fragment,{children:(0,G.jsx)(ac,{description:((t=e.uiOptions.transactionInfo)==null?void 0:t.description)||"",txn:e.txn})});case"CONTRACT_CALL":return(0,G.jsx)(G.Fragment,{children:e.uiOptions.senderInfo&&(0,G.jsx)(Jl,{partyInfo:e.uiOptions.senderInfo})});default:return(0,G.jsx)("div",{children:"Unsupported transaction."})}},dc=()=>{let{authenticated:e,getAccessToken:t,user:o}=F(),{walletProxy:r,closePrivyModal:n}=W(),{navigate:i,data:a}=b(),{transactionRequest:l,onSuccess:s,onFailure:p,uiOptions:f}=a.sendTransaction,[h,u]=(0,Mt.useState)(null),[w,v]=(0,Mt.useState)(""),[m,g]=(0,Mt.useState)(!0),[L,A]=(0,Mt.useState)(!1),[S,M]=(0,Mt.useState)(l),{tokenPrice:R,estimatedGas:O}=On(S);(0,Mt.useEffect)(()=>{e||(i("LANDING"),p(new Error("User must be authenticated before transacting with a Privy wallet")))},[e]);let I=J(o);(0,Mt.useEffect)(()=>{async function ce(){let K=await t();return!K||!r||!I?S:Xl(K,I.address,r,S)}ce().then(K=>{g(!1),M(K)},K=>{g(!0),Ds(K)?v(K.message):(v("There was an error preparing transaction"),console.error(K))})},[r]);let Ee=sc(S),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"},ye=()=>{L||(h?s(h):p(new Error(w||"User exited the modal before submitting the transaction")),n({shouldCallAuthOnSuccess:!1}))};return R===void 0||O===null?(0,G.jsxs)(G.Fragment,{children:[(0,G.jsx)(T,{title:Q.modalTitle,onClose:ye}),(0,G.jsx)(cc,{children:(0,G.jsx)(pn,{})})]}):h!==null?(0,G.jsx)(lc,{txn:S,onClose:ye,receipt:h,transactionInfo:f.transactionInfo,tokenPrice:R}):(0,G.jsxs)(G.Fragment,{children:[(0,G.jsx)(T,{title:Q.modalTitle,onClose:ye}),(0,G.jsxs)(cc,{children:[(0,G.jsxs)(Tu,{children:[(0,G.jsx)(wu,{txn:S,txnFamily:Ee,uiOptions:f}),I?(0,G.jsx)(Ln,{from:I.address,to:S.to,txn:S,transactionInfo:f.transactionInfo,gas:Be(O).toHexString(),tokenPrice:R}):null]}),(0,G.jsxs)(Pu,{children:[(0,G.jsx)(Cu,{children:w}),I?(0,G.jsx)(ic,{txnValue:S.value,wallet:I,chainId:Number(S.chainId)}):null,(0,G.jsx)(xu,{children:(0,G.jsx)(Eu,{disabled:m||L,loading:!r||L,loadingText:L?"Submitting (may take a few minutes)...":"Loading...",onClick:async()=>{A(!0);let ce=await t();if(ce&&!L&&I)try{let K=await ec(ce,I.address,r,S);u(K),v("")}catch(K){v(K.reason||"An error has occurred, please try again.")}finally{A(!1)}},children:Q.buttonText})})]})]})]})},cc=yo.default.div`
1740
1740
  display: flex;
1741
1741
  height: 100%;
1742
1742
  flex-direction: column;
@@ -2186,4 +2186,4 @@ Resources:
2186
2186
  align-items: center;
2187
2187
  justify-content: center;
2188
2188
  height: 100%;
2189
- `;var vo=C(require("tinycolor2")),gc="#FFFFFF",Ou="#000000",Du=gc,Uu="#1E1E1D";function Bu(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 go(e,t){let o=Math.max(0,Math.min(1,e.toHsl().l+t));return(0,vo.default)({...e.toHsl(),l:o})}function vc({backgroundTheme:e,accentHex:t,successHex:o="#51BA81",errorHex:r="#EC6351",whiteHex:n=gc,blackHex:i=Ou}){let a;switch(e){case"light":a=Du;break;case"dark":a=Uu;break;default:a=e;break}let l=(0,vo.default)(a),s=(0,vo.default)(t),p=(0,vo.default)(o),f=(0,vo.default)(r),h=Bu(l.getLuminance()),u=go(l,h==="light"?-.04:.11),w=go(l,h==="light"?-.88:.87),v=go(l,h==="light"?-.77:.75),m=go(l,h==="light"?-.43:.45).desaturate(h==="light"?60:20),g=go(l,h==="light"?-.13:.25).desaturate(h==="light"?60:20),L=go(s,.15),A=go(s,-.06),S=(0,vo.default)(s.getLuminance()>.5?i:n);return{colorScheme:h,background:l.toHslString(),background2:u.toHslString(),foreground:w.toHslString(),foreground2:v.toHslString(),foreground3:m.toHslString(),foreground4:g.toHslString(),accent:s.toHslString(),accentLight:L.toHslString(),accentDark:A.toHslString(),foregroundAccent:S.toHslString(),success:p.toHslString(),error:f.toHslString()}}var bc={appearance:{theme:"light",accentColor:"#676FFF"}};function ji(e,t){var h,u,w,v,m,g,L,A;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(S=>S))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(S=>S))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:vc({backgroundTheme:((u=t==null?void 0:t.appearance)==null?void 0:u.theme)??bc.appearance.theme,accentHex:((w=t==null?void 0:t.appearance)==null?void 0:w.accentColor)??e.accentColor??bc.appearance.accentColor}),showWalletLoginFirst:((v=t==null?void 0:t.appearance)==null?void 0:v.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:((A=t==null?void 0:t._render)==null?void 0:A.inParentNodeId)??null}}}var Hn=require("react");var Gn=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 Cc=require("react/jsx-runtime"),Fu=function(e){return()=>`id-${e++}`}(0);function Gu(e){return typeof e.event=="string"&&/^privy:.+/.test(e.event)}function xr(e){return e.error!==void 0}var qo=new Gn;function Er(e,t,o){let r=o.contentWindow;if(!r)throw new Error("iframe not initialized");return new Promise((n,i)=>{let a=Fu();qo.enqueue(a,{resolve:n,reject:i}),r.postMessage({id:a,event:e,data:t},"*")})}function Hu(e){switch(e.event){case"privy:iframe:ready":let t=qo.dequeue(e.event,e.id);return xr(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 xr(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 xr(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 xr(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 xr(e)?i.reject(new jt(e.error.type,e.error.message)):i.resolve(e.data)}}function wc(e){let t=(0,Hn.useRef)(null);return(0,Hn.useEffect)(()=>{let o=t.current;if(!o)return;function r(l){l&&l.origin===e.origin&&Gu(l.data)&&Hu(l.data)}let n={create(l){return Er("privy:wallet:create",l,o)},connect(l){return Er("privy:wallet:connect",l,o)},recover(l){return Er("privy:wallet:recover",l,o)},rpc(l){return Er("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 Aa(()=>Er("privy:iframe:ready",{},o)).then(i,a),()=>window.removeEventListener("message",r)},[t.current]),(0,Cc.jsx)("iframe",{ref:t,width:"0",height:"0",style:{display:"none",height:"0px",width:"0px"},src:Nr(e.origin,`/apps/${e.appId}/embedded-wallets`)})}var Vn=require("react"),Ki=(0,Vn.createContext)({wallets:[]});function xc(){return(0,Vn.useContext)(Ki)}var Et=require("react/jsx-runtime");function Vu(e){return typeof e=="string"&&e.length===25}var Pr;function To(){if(!Pr){let e=X.get(Co);return Promise.resolve(e||null)}return Pr.getAccessToken()}var Ec,Ma=(e,t)=>Ec(e,t),Tc,Oa=(e,t)=>Tc(e,t),zu=()=>{let t=new URLSearchParams(window.location.search).get("privy_token");if(!t)return;X.put(Zo,t);let o=new URL(window.location.href);o.searchParams.delete("privy_token"),window.history.pushState({},"",o)},Pc=e=>{if(!Vu(e.appId))throw new E("Cannot initialize the Privy provider with an invalid Privy app ID");return Pr||(Pr=new Ao({appId:e.appId,apiUrl:e.apiUrl||Rr})),(0,Et.jsx)(qu,{...e,client:Pr})},qu=e=>{let t=e.client,[o,r]=(0,H.useState)(!1),[n,i]=(0,H.useState)(!1),[a,l]=(0,H.useState)(!1),[s,p]=(0,H.useState)(null),[f,h]=(0,H.useState)([]),u=(0,H.useRef)(f),[w,v]=(0,H.useState)(!1),[m,g]=(0,H.useState)(null),[L,A]=(0,H.useState)(!1),[S,M]=(0,H.useState)({status:"disconnected",connectError:null,connector:null,connectRetry:_}),[R,O]=(0,H.useState)(null),[I,Ee]=(0,H.useState)(null),[Q,ge]=(0,H.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}),[ce,K]=(0,H.useState)(ji(Q,e.config)),[me,j]=(0,H.useState)(!0),[V,te]=(0,H.useState)({}),[Ge,Xt]=(0,H.useState)(null),de=c=>{c&&g(c),r(!0),t.createAnalyticsEvent("modal_open",{initialScreen:c})},dt=c=>{let d=e.createPrivyWalletOnLogin===!0;te({login:{promptCreatePrivyWalletFlow:d}}),d&&j(!0),de(c)};(0,H.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,H.useEffect)(()=>{async function c(){let d=await t.getServerConfig();ge(d),d.customApiUrl&&t.updateApiUrl(d.customApiUrl),t.connectors.initialize();let k=Te();zu();let P=await t.getAuthenticatedUser();l(!!P),p(P),i(!0),Ge==null||Ge(),k&&P&&A(!0),_r()}c()},[t,Ge,n]),(0,H.useEffect)(()=>{let c=ji(Q,e.config);K(c)},[e.config,Q]);let Te=()=>{let c=new URLSearchParams(window.location.search),d=c.get("privy_oauth_code"),k=c.get("privy_oauth_state"),P=c.get("privy_oauth_provider");return d&&k&&P?(t.startAuthFlow(new Dt(P,d,k)),dt("AWAITING_OAUTH_SCREEN"),!0):!1},Qe=async(c,d)=>{let k=t.connectors.createWalletConnector(c,d);return k?(M(P=>({...P,connector:k,status:"connecting",connectError:null,connectRetry:()=>{Qe(c,d)}})),await k.connect({showPrompt:!0}).then(P=>(M(Je=>({...Je,status:"connected",connectError:null})),P)).catch(P=>(P instanceof Xe?console.error(P.cause?P.cause:P.message):console.error(P),M(Je=>({...Je,status:"disconnected",connectError:P})),null))):(M(P=>({...P,status:"disconnected",connectError:new re("Unable to connect to wallet.")})),null)},_r=()=>{let c=new URLSearchParams(window.location.search),d=c.get("privy_connector"),k=c.get("privy_wallet_client");if(!d||!k)return;if(k==="phantom"&&!ut()&&dt("LOGIN_FAILED_SCREEN"),!t.connectors)throw new E("Connector not initialized");de("AWAITING_CONNECTION");let P=new URL(window.location.href);P.searchParams.delete("privy_connector"),P.searchParams.delete("privy_wallet_client"),window.history.pushState({},"",P),Qe(d,k).then(Je=>{if(Je!==null){let Yo=new Tt(Je);t.startAuthFlow(Yo)}})};(0,H.useEffect)(()=>{n&&a&&s===null&&t.getAuthenticatedUser().then(p)},[n,a,s,t]);let $o=()=>{A(!0),de("LINK_WALLET_SCREEN")},Ar=c=>{if(!a||!s)return!1;for(let d of s.linkedAccounts)if(d.type==="wallet"&&d.address===c.address)return!0;return!1},jo=async c=>{if(await c.isConnected()){if(!t.connectors)throw new E("Connector not initialized");A(!!a),M(d=>({...d,connector:t.connectors.findWalletConnector(c.connectorType,c.walletClientType)||null,status:"connected",connectError:null})),t.startAuthFlow(new Tt(c)),dt("AWAITING_CONNECTION")}else throw new E("Wallet is not connected")},Ko=()=>{h(t.connectors.wallets.map(c=>({...c,linked:Ar(c),link:async()=>{if(!a)throw new E("User is not authenticated. Use wallet.login()");if(!await c.isConnected())throw new E("Wallet is not connected");jo(c)},unlink:async()=>{if(!a)throw new E("User is not authenticated.");let d=await t.unlinkWallet(c.address);p(d)},login:async()=>{if(a)throw new E("User is already authenticated. Use wallet.link()");if(!await c.isConnected())throw new E("Wallet is not connected");jo(c)}})))};(0,H.useEffect)(()=>{Ko()},[s==null?void 0:s.linkedAccounts]),t.connectors.on("walletsUpdated",Ko);let Sr=()=>{de(a?"CONNECT_ONLY_AUTHENTICATED_SCREEN":"CONNECT_ONLY_LANDING_SCREEN")};(0,H.useEffect)(()=>{if(!f[0])return;let c=f[0],d=u.current.find(P=>P.address===c.address),k=s==null?void 0:s.linkedAccounts.find(P=>P.type==="wallet"&&P.address===c.address);if(!d&&k){let P=Object.assign({},s);P.wallet=k&&{address:k.address,chainType:k.chainType,chainId:k.chainId,walletClient:k.walletClient},p(P)}u.current=f},[f]);let oe={ready:n,authenticated:a,user:s,walletConnectors:t.connectors,connectWallet:Sr,linkWallet:$o,linkEmail:()=>{A(!0),de("LINK_EMAIL_SCREEN")},linkPhone:()=>{A(!0),de("LINK_PHONE_SCREEN")},linkGoogle:async()=>{await bo.initLoginWithOAuth("google")},linkTwitter:async()=>{await bo.initLoginWithOAuth("twitter")},linkDiscord:async()=>{await bo.initLoginWithOAuth("discord")},linkGithub:async()=>{await bo.initLoginWithOAuth("github")},linkApple:async()=>{await bo.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),A(!1),r(!1)},getAccessToken:()=>t.getAccessToken(),getEthereumProvider:()=>{if(!s||!s.wallet)return new Z;let c=f.find(d=>s.wallet&&d.address===s.wallet.address);return c?c.getEthereumProvider():new Z},getEthersProvider:()=>{if(!s||!s.wallet)return new Yi.Web3Provider(new mt(new Z));let c=f.find(d=>s.wallet&&d.address===s.wallet.address);return c?c.getEthersProvider():new Yi.Web3Provider(new mt(new Z))},getWeb3jsProvider:()=>{if(!s||!s.wallet)return new io(new Z);let c=f.find(d=>s.wallet&&d.address===s.wallet.address);return c?c==null?void 0:c.getWeb3jsProvider():new io(new Z)},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,Tr.getAddress)(P.address)===(0,Tr.getAddress)(c)),k=s==null?void 0:s.linkedAccounts.find(P=>P.type==="wallet"&&(0,Tr.getAddress)(P.address)===(0,Tr.getAddress)(c));if(!d||!await d.isConnected())O(c),$o();else if(!d.linked)d.link();else{let P=Object.assign({},s);P.wallet=k&&{address:k.address,chainType:k.chainType,chainId:k.chainId,walletClient:k.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(J(s)){d(new Error("Only one Privy wallet per user is currently allowed"));return}j(!0),te({createWallet:{onSuccess:c,onFailure:d,callAuthOnSuccessOnClose:!1}}),de("EMBEDDED_WALLET_SCREEN")}),signMessage:(c,d)=>new Promise((k,P)=>{if(!a||!s){P(new Error("User must be authenticated before signing with a Privy wallet"));return}if(!J(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}j(!0);let Yo={message:c,onSuccess:k,onFailure:P,uiOptions:d||{}},zn={onCompleteNavigateTo:"EMBEDDED_WALLET_SIGN_REQUEST_SCREEN",onFailure:P};te({signMessage:Yo,connectWallet:zn}),de("EMBEDDED_WALLET_CONNECTING_SCREEN")}),sendTransaction:(c,d)=>new Promise(async(k,P)=>{if(!a||!s){P(new Error("User must be authenticated before signing with a Privy wallet"));return}if(!J(s)){P(new Error("Must have a Privy wallet before signing"));return}j(!0);let Yo={transactionRequest:c,onSuccess:k,onFailure:P,uiOptions:d||{}},zn={onCompleteNavigateTo:"EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN",onFailure:P};te({connectWallet:zn,sendTransaction:Yo}),de("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(!J(s)){d(new Error("Must have a Privy wallet before exporting"));return}j(!0);let P={onCompleteNavigateTo:"EMBEDDED_WALLET_KEY_EXPORT_SCREEN",onFailure:d},Je={appId:e.appId,origin:t.apiUrl,onSuccess:c,onFailure:d};te({keyExport:Je,connectWallet:P}),de("EMBEDDED_WALLET_CONNECTING_SCREEN")})};Ec=oe.signMessage,Tc=oe.sendTransaction;let bo=(()=>({isLinking:L,linkingHint:R,walletConnectionStatus:S,getAuthFlow:()=>t.authFlow,getAuthMeta:()=>{var c;return(c=t.authFlow)==null?void 0:c.meta},closePrivyModal:(c={shouldCallAuthOnSuccess:!0})=>{var k;let d=n&&a&&s;c.shouldCallAuthOnSuccess&&d&&((k=e.onSuccess)==null||k.call(e,s,w)),t.authFlow=void 0,O(null),g(null),A(!1),v(!1),r(!1),t.createAnalyticsEvent("modal_closed")},connectWallet:Qe,initLoginWithWallet:(c,d)=>{if(!t.connectors)throw new E("Connector not initialized");(!c||!d)&&(c="injected",d="metamask"),A(!!a),Qe(c,d).then(k=>{if(k===null)throw new E("Error connecting to wallet.");t.startAuthFlow(new Tt(k))})},loginWithWallet:async()=>{if(!(t.authFlow instanceof Tt))throw new E("Must initialize SIWE flow first.");let c,d;L?c=await t.link():{user:c,isNewUser:d}=await t.authenticate(),p(c||s||null),v(d||!1),l(!0)},initLoginWithOAuth:async c=>{t.startAuthFlow(new Dt(c));let d=await t.authFlow.getAuthorizationUrl();d&&d.url&&window.location.assign(d.url)},loginWithOAuth:async()=>{if(!(t.authFlow instanceof Dt))throw new E("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),v(d||!1),l(!0)},initLoginWithEmail:async c=>{let d=new eo(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 eo)t.authFlow.meta.emailCode=c.trim();else if(t.authFlow instanceof to)t.authFlow.meta.smsCode=c.trim();else throw new E("Must initialize a passwordless code flow first");let d,k;L?d=await t.link():{user:d,isNewUser:k}=await t.authenticate(),p(d||s||null),v(k||!1),l(!0)},refreshUser:async()=>{let c=await t.getAuthenticatedUser();return p(c),c},walletProxy:I,createAnalyticsEvent:(c,d,k)=>t.createAnalyticsEvent(c,d,k),getUsdTokenPrice:c=>t.getUsdTokenPrice(c),recoverEmbeddedWallet:c=>new Promise((d,k)=>{if(!a||!s){k(new Error("User must be authenticated before recovering the Privy wallet"));return}if(!J(s)){k(new Error("Must have a Privy wallet in order to recover it"));return}j(!0),te({recoverWallet:{onCompleteNavigateTo:c,onFailure:k,onSuccess:d}}),de("EMBEDDED_WALLET_RECOVERY_SCREEN")})}))(),_c=(0,H.useMemo)(()=>({wallets:f}),[f]);return(0,Et.jsx)(li.Provider,{value:oe,children:(0,Et.jsxs)(Ki.Provider,{value:_c,children:[e.children,(0,Et.jsxs)(si.Provider,{value:bo,children:[(0,Et.jsx)(mc,{theme:{...ce.appearance.palette||{}}}),(0,Et.jsx)(Va,{appConfig:ce,data:V,setModalData:te,initialScreen:m,visible:o,authenticated:a,children:o&&(0,Et.jsx)(yc,{})}),me&&(0,Et.jsx)(wc,{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 vo=C(require("tinycolor2")),gc="#FFFFFF",Ou="#000000",Du=gc,Uu="#1E1E1D";function Bu(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 go(e,t){let o=Math.max(0,Math.min(1,e.toHsl().l+t));return(0,vo.default)({...e.toHsl(),l:o})}function vc({backgroundTheme:e,accentHex:t,successHex:o="#51BA81",errorHex:r="#EC6351",whiteHex:n=gc,blackHex:i=Ou}){let a;switch(e){case"light":a=Du;break;case"dark":a=Uu;break;default:a=e;break}let l=(0,vo.default)(a),s=(0,vo.default)(t),p=(0,vo.default)(o),f=(0,vo.default)(r),h=Bu(l.getLuminance()),u=go(l,h==="light"?-.04:.11),w=go(l,h==="light"?-.88:.87),v=go(l,h==="light"?-.77:.75),m=go(l,h==="light"?-.43:.45).desaturate(h==="light"?60:20),g=go(l,h==="light"?-.13:.25).desaturate(h==="light"?60:20),L=go(s,.15),A=go(s,-.06),S=(0,vo.default)(s.getLuminance()>.5?i:n);return{colorScheme:h,background:l.toHslString(),background2:u.toHslString(),foreground:w.toHslString(),foreground2:v.toHslString(),foreground3:m.toHslString(),foreground4:g.toHslString(),accent:s.toHslString(),accentLight:L.toHslString(),accentDark:A.toHslString(),foregroundAccent:S.toHslString(),success:p.toHslString(),error:f.toHslString()}}var bc={appearance:{theme:"light",accentColor:"#676FFF"}};function ji(e,t){var h,u,w,v,m,g,L,A;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(S=>S))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(S=>S))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:vc({backgroundTheme:((u=t==null?void 0:t.appearance)==null?void 0:u.theme)??bc.appearance.theme,accentHex:((w=t==null?void 0:t.appearance)==null?void 0:w.accentColor)??e.accentColor??bc.appearance.accentColor}),showWalletLoginFirst:((v=t==null?void 0:t.appearance)==null?void 0:v.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:((A=t==null?void 0:t._render)==null?void 0:A.inParentNodeId)??null}}}var Hn=require("react");var Gn=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 Cc=require("react/jsx-runtime"),Fu=function(e){return()=>`id-${e++}`}(0);function Gu(e){return typeof e.event=="string"&&/^privy:.+/.test(e.event)}function xr(e){return e.error!==void 0}var qo=new Gn;function Er(e,t,o){let r=o.contentWindow;if(!r)throw new Error("iframe not initialized");return new Promise((n,i)=>{let a=Fu();qo.enqueue(a,{resolve:n,reject:i}),r.postMessage({id:a,event:e,data:t},"*")})}function Hu(e){switch(e.event){case"privy:iframe:ready":let t=qo.dequeue(e.event,e.id);return xr(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 xr(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 xr(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 xr(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 xr(e)?i.reject(new jt(e.error.type,e.error.message)):i.resolve(e.data)}}function wc(e){let t=(0,Hn.useRef)(null);return(0,Hn.useEffect)(()=>{let o=t.current;if(!o)return;function r(l){l&&l.origin===e.origin&&Gu(l.data)&&Hu(l.data)}let n={create(l){return Er("privy:wallet:create",l,o)},connect(l){return Er("privy:wallet:connect",l,o)},recover(l){return Er("privy:wallet:recover",l,o)},rpc(l){return Er("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 Aa(()=>Er("privy:iframe:ready",{},o)).then(i,a),()=>window.removeEventListener("message",r)},[t.current]),(0,Cc.jsx)("iframe",{ref:t,width:"0",height:"0",style:{display:"none",height:"0px",width:"0px"},src:Nr(e.origin,`/apps/${e.appId}/embedded-wallets`)})}var Vn=require("react"),Ki=(0,Vn.createContext)({wallets:[]});function xc(){return(0,Vn.useContext)(Ki)}var Et=require("react/jsx-runtime");function Vu(e){return typeof e=="string"&&e.length===25}var Pr;function To(){if(!Pr){let e=X.get(Co);return Promise.resolve(e||null)}return Pr.getAccessToken()}var Ec,Ma=(e,t)=>Ec(e,t),Tc,Oa=(e,t)=>Tc(e,t),zu=()=>{let t=new URLSearchParams(window.location.search).get("privy_token");if(!t)return;X.put(Zo,t);let o=new URL(window.location.href);o.searchParams.delete("privy_token"),window.history.pushState({},"",o)},Pc=e=>{if(!Vu(e.appId))throw new E("Cannot initialize the Privy provider with an invalid Privy app ID");return Pr||(Pr=new Ao({appId:e.appId,apiUrl:e.apiUrl||Rr})),(0,Et.jsx)(qu,{...e,client:Pr})},qu=e=>{let t=e.client,[o,r]=(0,H.useState)(!1),[n,i]=(0,H.useState)(!1),[a,l]=(0,H.useState)(!1),[s,p]=(0,H.useState)(null),[f,h]=(0,H.useState)([]),u=(0,H.useRef)(f),[w,v]=(0,H.useState)(!1),[m,g]=(0,H.useState)(null),[L,A]=(0,H.useState)(!1),[S,M]=(0,H.useState)({status:"disconnected",connectError:null,connector:null,connectRetry:_}),[R,O]=(0,H.useState)(null),[I,Ee]=(0,H.useState)(null),[Q,ye]=(0,H.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}),[ce,K]=(0,H.useState)(ji(Q,e.config)),[me,j]=(0,H.useState)(!0),[V,te]=(0,H.useState)({}),[Ge,Xt]=(0,H.useState)(null),de=c=>{c&&g(c),r(!0),t.createAnalyticsEvent("modal_open",{initialScreen:c})},dt=c=>{let d=e.createPrivyWalletOnLogin===!0;te({login:{promptCreatePrivyWalletFlow:d}}),d&&j(!0),de(c)};(0,H.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,H.useEffect)(()=>{async function c(){let d=await t.getServerConfig();ye(d),d.customApiUrl&&t.updateApiUrl(d.customApiUrl),t.connectors.initialize();let k=Te();zu();let P=await t.getAuthenticatedUser();l(!!P),p(P),i(!0),Ge==null||Ge(),k&&P&&A(!0),_r()}c()},[t,Ge,n]),(0,H.useEffect)(()=>{let c=ji(Q,e.config);K(c)},[e.config,Q]);let Te=()=>{let c=new URLSearchParams(window.location.search),d=c.get("privy_oauth_code"),k=c.get("privy_oauth_state"),P=c.get("privy_oauth_provider");return d&&k&&P?(t.startAuthFlow(new Ot(P,d,k)),dt("AWAITING_OAUTH_SCREEN"),!0):!1},Qe=async(c,d)=>{let k=t.connectors.createWalletConnector(c,d);return k?(M(P=>({...P,connector:k,status:"connecting",connectError:null,connectRetry:()=>{Qe(c,d)}})),await k.connect({showPrompt:!0}).then(P=>(M(Je=>({...Je,status:"connected",connectError:null})),P)).catch(P=>(P instanceof Xe?console.error(P.cause?P.cause:P.message):console.error(P),M(Je=>({...Je,status:"disconnected",connectError:P})),null))):(M(P=>({...P,status:"disconnected",connectError:new re("Unable to connect to wallet.")})),null)},_r=()=>{let c=new URLSearchParams(window.location.search),d=c.get("privy_connector"),k=c.get("privy_wallet_client");if(!d||!k)return;if(k==="phantom"&&!ut()&&dt("LOGIN_FAILED_SCREEN"),!t.connectors)throw new E("Connector not initialized");de("AWAITING_CONNECTION");let P=new URL(window.location.href);P.searchParams.delete("privy_connector"),P.searchParams.delete("privy_wallet_client"),window.history.pushState({},"",P),Qe(d,k).then(Je=>{if(Je!==null){let Yo=new Tt(Je);t.startAuthFlow(Yo)}})};(0,H.useEffect)(()=>{n&&a&&s===null&&t.getAuthenticatedUser().then(p)},[n,a,s,t]);let $o=()=>{A(!0),de("LINK_WALLET_SCREEN")},Ar=c=>{if(!a||!s)return!1;for(let d of s.linkedAccounts)if(d.type==="wallet"&&d.address===c.address)return!0;return!1},jo=async c=>{if(await c.isConnected()){if(!t.connectors)throw new E("Connector not initialized");A(!!a),M(d=>({...d,connector:t.connectors.findWalletConnector(c.connectorType,c.walletClientType)||null,status:"connected",connectError:null})),t.startAuthFlow(new Tt(c)),dt("AWAITING_CONNECTION")}else throw new E("Wallet is not connected")},Ko=()=>{h(t.connectors.wallets.map(c=>({...c,linked:Ar(c),link:async()=>{if(!a)throw new E("User is not authenticated. Use wallet.login()");if(!await c.isConnected())throw new E("Wallet is not connected");jo(c)},unlink:async()=>{if(!a)throw new E("User is not authenticated.");let d=await t.unlinkWallet(c.address);p(d)},login:async()=>{if(a)throw new E("User is already authenticated. Use wallet.link()");if(!await c.isConnected())throw new E("Wallet is not connected");jo(c)}})))};(0,H.useEffect)(()=>{Ko()},[s==null?void 0:s.linkedAccounts]),t.connectors.on("walletsUpdated",Ko);let Sr=()=>{de(a?"CONNECT_ONLY_AUTHENTICATED_SCREEN":"CONNECT_ONLY_LANDING_SCREEN")};(0,H.useEffect)(()=>{if(!f[0])return;let c=f[0],d=u.current.find(P=>P.address===c.address),k=s==null?void 0:s.linkedAccounts.find(P=>P.type==="wallet"&&P.address===c.address);if(!d&&k){let P=Object.assign({},s);P.wallet=k&&{address:k.address,chainType:k.chainType,chainId:k.chainId,walletClient:k.walletClient},p(P)}u.current=f},[f]);let oe={ready:n,authenticated:a,user:s,walletConnectors:t.connectors,connectWallet:Sr,linkWallet:$o,linkEmail:()=>{A(!0),de("LINK_EMAIL_SCREEN")},linkPhone:()=>{A(!0),de("LINK_PHONE_SCREEN")},linkGoogle:async()=>{await bo.initLoginWithOAuth("google")},linkTwitter:async()=>{await bo.initLoginWithOAuth("twitter")},linkDiscord:async()=>{await bo.initLoginWithOAuth("discord")},linkGithub:async()=>{await bo.initLoginWithOAuth("github")},linkApple:async()=>{await bo.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),A(!1),r(!1)},getAccessToken:()=>t.getAccessToken(),getEthereumProvider:()=>{if(!s||!s.wallet)return new Y;let c=f.find(d=>s.wallet&&d.address===s.wallet.address);return c?c.getEthereumProvider():new Y},getEthersProvider:()=>{if(!s||!s.wallet)return new Yi.Web3Provider(new mt(new Y));let c=f.find(d=>s.wallet&&d.address===s.wallet.address);return c?c.getEthersProvider():new Yi.Web3Provider(new mt(new Y))},getWeb3jsProvider:()=>{if(!s||!s.wallet)return new io(new Y);let c=f.find(d=>s.wallet&&d.address===s.wallet.address);return c?c==null?void 0:c.getWeb3jsProvider():new io(new Y)},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,Tr.getAddress)(P.address)===(0,Tr.getAddress)(c)),k=s==null?void 0:s.linkedAccounts.find(P=>P.type==="wallet"&&(0,Tr.getAddress)(P.address)===(0,Tr.getAddress)(c));if(!d||!await d.isConnected())O(c),$o();else if(!d.linked)d.link();else{let P=Object.assign({},s);P.wallet=k&&{address:k.address,chainType:k.chainType,chainId:k.chainId,walletClient:k.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(J(s)){d(new Error("Only one Privy wallet per user is currently allowed"));return}j(!0),te({createWallet:{onSuccess:c,onFailure:d,callAuthOnSuccessOnClose:!1}}),de("EMBEDDED_WALLET_SCREEN")}),signMessage:(c,d)=>new Promise((k,P)=>{if(!a||!s){P(new Error("User must be authenticated before signing with a Privy wallet"));return}if(!J(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}j(!0);let Yo={message:c,onSuccess:k,onFailure:P,uiOptions:d||{}},zn={onCompleteNavigateTo:"EMBEDDED_WALLET_SIGN_REQUEST_SCREEN",onFailure:P};te({signMessage:Yo,connectWallet:zn}),de("EMBEDDED_WALLET_CONNECTING_SCREEN")}),sendTransaction:(c,d)=>new Promise(async(k,P)=>{if(!a||!s){P(new Error("User must be authenticated before signing with a Privy wallet"));return}if(!J(s)){P(new Error("Must have a Privy wallet before signing"));return}j(!0);let Yo={transactionRequest:c,onSuccess:k,onFailure:P,uiOptions:d||{}},zn={onCompleteNavigateTo:"EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN",onFailure:P};te({connectWallet:zn,sendTransaction:Yo}),de("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(!J(s)){d(new Error("Must have a Privy wallet before exporting"));return}j(!0);let P={onCompleteNavigateTo:"EMBEDDED_WALLET_KEY_EXPORT_SCREEN",onFailure:d},Je={appId:e.appId,origin:t.apiUrl,onSuccess:c,onFailure:d};te({keyExport:Je,connectWallet:P}),de("EMBEDDED_WALLET_CONNECTING_SCREEN")})};Ec=oe.signMessage,Tc=oe.sendTransaction;let bo=(()=>({isLinking:L,linkingHint:R,walletConnectionStatus:S,getAuthFlow:()=>t.authFlow,getAuthMeta:()=>{var c;return(c=t.authFlow)==null?void 0:c.meta},closePrivyModal:(c={shouldCallAuthOnSuccess:!0})=>{var k;let d=n&&a&&s;c.shouldCallAuthOnSuccess&&d&&((k=e.onSuccess)==null||k.call(e,s,w)),t.authFlow=void 0,O(null),g(null),A(!1),v(!1),r(!1),t.createAnalyticsEvent("modal_closed")},connectWallet:Qe,initLoginWithWallet:(c,d)=>{if(!t.connectors)throw new E("Connector not initialized");(!c||!d)&&(c="injected",d="metamask"),A(!!a),Qe(c,d).then(k=>{if(k===null)throw new E("Error connecting to wallet.");t.startAuthFlow(new Tt(k))})},loginWithWallet:async()=>{if(!(t.authFlow instanceof Tt))throw new E("Must initialize SIWE flow first.");let c,d;L?c=await t.link():{user:c,isNewUser:d}=await t.authenticate(),p(c||s||null),v(d||!1),l(!0)},initLoginWithOAuth:async c=>{t.startAuthFlow(new Ot(c));let d=await t.authFlow.getAuthorizationUrl();d&&d.url&&window.location.assign(d.url)},loginWithOAuth:async()=>{if(!(t.authFlow instanceof Ot))throw new E("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),v(d||!1),l(!0)},initLoginWithEmail:async c=>{let d=new eo(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 eo)t.authFlow.meta.emailCode=c.trim();else if(t.authFlow instanceof to)t.authFlow.meta.smsCode=c.trim();else throw new E("Must initialize a passwordless code flow first");let d,k;L?d=await t.link():{user:d,isNewUser:k}=await t.authenticate(),p(d||s||null),v(k||!1),l(!0)},refreshUser:async()=>{let c=await t.getAuthenticatedUser();return p(c),c},walletProxy:I,createAnalyticsEvent:(c,d,k)=>t.createAnalyticsEvent(c,d,k),getUsdTokenPrice:c=>t.getUsdTokenPrice(c),recoverEmbeddedWallet:c=>new Promise((d,k)=>{if(!a||!s){k(new Error("User must be authenticated before recovering the Privy wallet"));return}if(!J(s)){k(new Error("Must have a Privy wallet in order to recover it"));return}j(!0),te({recoverWallet:{onCompleteNavigateTo:c,onFailure:k,onSuccess:d}}),de("EMBEDDED_WALLET_RECOVERY_SCREEN")})}))(),_c=(0,H.useMemo)(()=>({wallets:f}),[f]);return(0,Et.jsx)(li.Provider,{value:oe,children:(0,Et.jsxs)(Ki.Provider,{value:_c,children:[e.children,(0,Et.jsxs)(si.Provider,{value:bo,children:[(0,Et.jsx)(mc,{theme:{...ce.appearance.palette||{}}}),(0,Et.jsx)(Va,{appConfig:ce,data:V,setModalData:te,initialScreen:m,visible:o,authenticated:a,children:o&&(0,Et.jsx)(yc,{})}),me&&(0,Et.jsx)(wc,{appId:e.appId,origin:t.apiUrl,onLoad:Ee,onLoadFailed:()=>null})]})]})})};0&&(module.exports={AsExternalProvider,ConnectorManager,PrivyClient,PrivyProvider,PrivyProxyProvider,VERSION,WalletConnector,getAccessToken,usePrivy,useWallets});