@privy-io/react-auth 1.18.0-beta.2 → 1.18.0-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/esm/index.js CHANGED
@@ -1,15 +1,15 @@
1
- import{Web3Provider as mc}from"@ethersproject/providers";import{useEffect as Ni,useState as ne}from"react";import Ui from"axios";var ue=class extends Error{constructor(o,r){super(o);r instanceof Error&&(this.cause=r)}toString(){return`${this.type}: ${this.message}${this.cause?` [cause: ${this.cause}]`:""}`}},Ke=class extends ue{constructor(o,r,n,i){super(n,i);this.type=o;this.status=r}},y=class extends ue{constructor(o,r){super(o,r);this.type="client_error"}};var F=class extends ue{constructor(o,r){super(o,r);this.type="connector_error"}},B=e=>{if(e instanceof ue)return e;if(!Ui.isAxiosError(e))return se(e);if(!e.response)return new Ke("api_error",null,e.message,e);let{type:t,message:o,error:r}=e.response.data;return new Ke(t||"ApiError",e.response.status,o||r,e)},se=e=>e instanceof ue?e:e instanceof Error?new y(e.message,e):new y(`Internal error: ${e}`);var Cr=()=>"/api/v1/sessions",br=()=>"/api/v1/sessions/logout",xr=()=>"/api/v1/sessions/fork",Er=()=>"/api/v1/siwe/init",Lr=()=>"/api/v1/siwe/authenticate",Ar=()=>"/api/v1/siwe/link",Pr=()=>"/api/v1/passwordless/init",_r=()=>"/api/v1/passwordless/authenticate",Sr=()=>"/api/v1/passwordless/link",kr=()=>"/api/v1/passwordless_sms/init",Tr=()=>"/api/v1/passwordless_sms/authenticate",Wr=()=>"/api/v1/passwordless_sms/link",Rr=()=>"/api/v1/oauth/init",Mr=()=>"/api/v1/oauth/authenticate",Ir=()=>"/api/v1/oauth/link",Nr=()=>"/api/v1/siwe/unlink",Or=()=>"/api/v1/passwordless/unlink",Ur=()=>"/api/v1/passwordless_sms/unlink",Dr=()=>"/api/v1/oauth/unlink";var vt=class{constructor(t){this.meta={email:t}}async authenticate(){if(!this.api)throw new y("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new y("Email and email code must be set prior to calling authenticate.");try{let t=_r(),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 B(t)}}async link(){if(!this.api)throw new y("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new y("Email and email code must be set prior to calling authenticate.");try{let t=Sr();return(await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode})).data}catch(t){throw B(t)}}async sendCodeEmail(t){if(!this.api)throw new y("Auth flow has no API instance");if(t&&(this.meta.email=t),!this.meta.email)throw new y("Email must be set when initialzing authentication.");try{let o=Pr();return(await this.api.post(o,{email:this.meta.email})).data}catch(o){throw B(o)}}};var Je=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 y("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new y("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling authenticate.");if(this.meta.authorizationCode==="undefined")throw new y("User denied confirmation during OAuth flow");try{let t=Mr(),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 B(t)}}async link(){if(!this.api)throw new y("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new y("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling link.");if(this.meta.authorizationCode==="undefined")throw new y("User denied confirmation during OAuth flow");try{let t=Ir();return(await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode})).data}catch(t){throw B(t)}}async getAuthorizationUrl(){if(!this.api)throw new y("Auth flow has no API instance");if(!this.meta.provider)throw new y("Provider must be set when initialzing OAuth authentication.");try{let t=Rr();return(await this.api.post(t,{provider:this.meta.provider,redirect_to:window.location.href})).data}catch(t){throw B(t)}}};var Ct=class{constructor(t,o){this._meta={walletType:o},this.connectors=t,this.walletConnector=this.connectors.createWalletConnector(o,null)}get meta(){return{...this._meta,walletMeta:this.walletConnector.walletMeta}}async authenticate(){if(!this.api)throw new y("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign(this.api),r=await this.api.post(Lr(),{message:t,signature:o});return this.connectors.addWalletConnector(this.walletConnector),await this.connectors.setActiveWallet(this.walletConnector.address)||console.warn("Failed to set active wallet"),{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 B(t)}}async link(){if(!this.api)throw new y("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign(this.api),r=await this.api.post(Ar(),{message:t,signature:o});return this.connectors.addWalletConnector(this.walletConnector),await this.connectors.setActiveWallet(this.walletConnector.address)||console.warn("Failed to set active wallet"),r.data}catch(t){throw B(t)}}async promptConnect(){return await this.walletConnector.connect({showPrompt:!0})}async sign(t){let o=await this.walletConnector.connect({showPrompt:!1});if(!o)throw new F("Cannot sign without a connected wallet");let r=o.address,n=o.chainId,i=await t.post(Er(),{address:r}),s=this.walletConnector.prepareMessage(n,r,i.data.nonce),a=await this.walletConnector.sign(s);return{message:s,signature:a}}};var bt=class{constructor(t){this.meta={phoneNumber:t}}async authenticate(){if(!this.api)throw new y("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new y("phone number and sms code must be set prior to calling authenticate.");try{let t=Tr(),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 B(t)}}async link(){if(!this.api)throw new y("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new y("phone number and sms code must be set prior to calling authenticate.");try{let t=Wr();return(await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode})).data}catch(t){throw B(t)}}async sendSmsCode(t){if(!this.api)throw new y("Auth flow has no API instance");if(t&&(this.meta.phoneNumber=t),!this.meta.phoneNumber)throw new y("phone nNumber must be set when initialzing authentication.");try{let o=kr();return(await this.api.post(o,{phoneNumber:this.meta.phoneNumber})).data}catch(o){throw B(o)}}};import{getAddress as rs}from"@ethersproject/address";var Fr="1.18.0-beta.2";var Gr="https://api.privy.io/v0",_o=process.env.NEXT_PUBLIC_PRIVY_AUTH_URL||"https://auth.privy.io",Dt="4df5e2316331463a9130964bd6078dfa",Br=1e4,ae=1400,So=Fr;var Ye="privy:token",Ft="privy:refresh_token",Gt="privy:connectors",Hr="walletconnect",Vr=3e4;var ko=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)}},To=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 Fi(){return typeof window<"u"&&window.localStorage?new To:new ko}var q=Fi();import qi from"@coinbase/wallet-sdk";import{getAddress as Ki}from"@ethersproject/address";import{jsx as $r,jsxs as Gi}from"react/jsx-runtime";var le=({style:e,...t})=>Gi("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:[$r("rect",{width:"1024",height:"1024",fill:"#0052FF",rx:100,ry:100}),$r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M152 512C152 710.823 313.177 872 512 872C710.823 872 872 710.823 872 512C872 313.177 710.823 152 512 152C313.177 152 152 313.177 152 512ZM420 396C406.745 396 396 406.745 396 420V604C396 617.255 406.745 628 420 628H604C617.255 628 628 617.255 628 604V420C628 406.745 617.255 396 604 396H420Z",fill:"white"})]});import{getAddress as ji}from"@ethersproject/address";import{Web3Provider as Zi}from"@ethersproject/providers";import{ErrorCode as Bi}from"@ethersproject/logger";var Xe=class extends F{constructor(){super("Wallet timeout");this.type="wallet_error"}},Qe=class extends F{constructor(){super("User rejected connection");this.type="wallet_error"}},Ee=e=>{if(e instanceof F)return e;if((e==null?void 0:e.code)&&(e==null?void 0:e.reason)){let t=new et(e);return e.code===Bi.ACTION_REJECTED&&(t.details=Ge.E4001_USER_REJECTED_REQUEST),t}return e!=null&&e.code?new et(e):new F("Unknown connector error",e)},Wo=class extends ue{constructor(o,r,n){super(o);this.type="provider_error";this.code=r,this.data=n}},et=class extends Wo{constructor(o){var i,s,a;let r=o;super(r.message,r.code,r.data);let n=Object.values(Ge).find(d=>d.eipCode===r.code);this.details=n||Ge.UNKNOWN_ERROR,r.code===-32002&&((i=r.message)!=null&&i.includes("already pending for origin")?(s=r.message)!=null&&s.includes("wallet_requestPermissions")?this.details=Ge.E32002_CONNECTION_ALREADY_PENDING:this.details=Ge.E32002_REQUEST_ALREADY_PENDING:(a=r.message)!=null&&a.includes("Already processing")&&r.message.includes("eth_requestAccounts")&&(this.details=Ge.E32002_WALLET_LOCKED))}},Hi={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}},Vi={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}},$i={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}},Ge={UNKNOWN_ERROR:{eipCode:0,message:"Unknown error",detail:"Unknown error",retryable:!0},...$i,...Vi},Be={...Hi,...Ge};var zi=12e4,Ro=(e=new Xe,t=zi)=>new Promise((o,r)=>setTimeout(()=>{r(e)},t)),we=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 F(`A wallet request of type ${t.method} was made before setting a wallet provider.`);return Promise.race([this.walletProvider.request(t),Ro()]).catch(o=>{throw Ee(o)})}},He=class extends we{constructor(o){super(o)}},Bt=class extends we{constructor(t){super(t)}sendAsync(t,o){throw new Error("sendAsync is no longer supported by EIP-1193. Use the request method instead.")}};var Le=class{constructor(t,o,r){this.createSiweMessage=(t,o,r,n,i,s,a)=>`${r} wants you to sign in with your Ethereum account:
1
+ var ps=Object.create;var Yt=Object.defineProperty;var hs=Object.getOwnPropertyDescriptor;var ms=Object.getOwnPropertyNames;var fs=Object.getPrototypeOf,gs=Object.prototype.hasOwnProperty;var qr=(e,t)=>()=>(e&&(t=e(e=0)),t);var Pe=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),Zr=(e,t)=>{for(var o in t)Yt(e,o,{get:t[o],enumerable:!0})},Kr=(e,t,o,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of ms(t))!gs.call(e,n)&&n!==o&&Yt(e,n,{get:()=>t[n],enumerable:!(r=hs(t,n))||r.enumerable});return e};var ys=(e,t,o)=>(o=e!=null?ps(fs(e)):{},Kr(t||!e||!e.__esModule?Yt(o,"default",{value:e,enumerable:!0}):o,e)),Jr=e=>Kr(Yt({},"__esModule",{value:!0}),e);var lo=Pe((Bu,so)=>{var Wn,Mn,In,Rn,On,Nn,Un,Dn,Fn,io,er,Bn,Gn,Vn,dt,Hn,$n,jn,zn,qn,Zn,Kn,Jn,Yn,ao;(function(e){var t=typeof global=="object"?global:typeof self=="object"?self:typeof this=="object"?this:{};typeof define=="function"&&define.amd?define("tslib",["exports"],function(r){e(o(t,o(r)))}):typeof so=="object"&&typeof so.exports=="object"?e(o(t,o(so.exports))):e(o(t));function o(r,n){return r!==t&&(typeof Object.create=="function"?Object.defineProperty(r,"__esModule",{value:!0}):r.__esModule=!0),function(i,a){return r[i]=n?n(i,a):a}}})(function(e){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,n){r.__proto__=n}||function(r,n){for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(r[i]=n[i])};Wn=function(r,n){if(typeof n!="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");t(r,n);function i(){this.constructor=r}r.prototype=n===null?Object.create(n):(i.prototype=n.prototype,new i)},Mn=Object.assign||function(r){for(var n,i=1,a=arguments.length;i<a;i++){n=arguments[i];for(var s in n)Object.prototype.hasOwnProperty.call(n,s)&&(r[s]=n[s])}return r},In=function(r,n){var i={};for(var a in r)Object.prototype.hasOwnProperty.call(r,a)&&n.indexOf(a)<0&&(i[a]=r[a]);if(r!=null&&typeof Object.getOwnPropertySymbols=="function")for(var s=0,a=Object.getOwnPropertySymbols(r);s<a.length;s++)n.indexOf(a[s])<0&&Object.prototype.propertyIsEnumerable.call(r,a[s])&&(i[a[s]]=r[a[s]]);return i},Rn=function(r,n,i,a){var s=arguments.length,l=s<3?n:a===null?a=Object.getOwnPropertyDescriptor(n,i):a,c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(r,n,i,a);else for(var y=r.length-1;y>=0;y--)(c=r[y])&&(l=(s<3?c(l):s>3?c(n,i,l):c(n,i))||l);return s>3&&l&&Object.defineProperty(n,i,l),l},On=function(r,n){return function(i,a){n(i,a,r)}},Nn=function(r,n){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(r,n)},Un=function(r,n,i,a){function s(l){return l instanceof i?l:new i(function(c){c(l)})}return new(i||(i=Promise))(function(l,c){function y(h){try{d(a.next(h))}catch(f){c(f)}}function w(h){try{d(a.throw(h))}catch(f){c(f)}}function d(h){h.done?l(h.value):s(h.value).then(y,w)}d((a=a.apply(r,n||[])).next())})},Dn=function(r,n){var i={label:0,sent:function(){if(l[0]&1)throw l[1];return l[1]},trys:[],ops:[]},a,s,l,c;return c={next:y(0),throw:y(1),return:y(2)},typeof Symbol=="function"&&(c[Symbol.iterator]=function(){return this}),c;function y(d){return function(h){return w([d,h])}}function w(d){if(a)throw new TypeError("Generator is already executing.");for(;i;)try{if(a=1,s&&(l=d[0]&2?s.return:d[0]?s.throw||((l=s.return)&&l.call(s),0):s.next)&&!(l=l.call(s,d[1])).done)return l;switch(s=0,l&&(d=[d[0]&2,l.value]),d[0]){case 0:case 1:l=d;break;case 4:return i.label++,{value:d[1],done:!1};case 5:i.label++,s=d[1],d=[0];continue;case 7:d=i.ops.pop(),i.trys.pop();continue;default:if(l=i.trys,!(l=l.length>0&&l[l.length-1])&&(d[0]===6||d[0]===2)){i=0;continue}if(d[0]===3&&(!l||d[1]>l[0]&&d[1]<l[3])){i.label=d[1];break}if(d[0]===6&&i.label<l[1]){i.label=l[1],l=d;break}if(l&&i.label<l[2]){i.label=l[2],i.ops.push(d);break}l[2]&&i.ops.pop(),i.trys.pop();continue}d=n.call(r,i)}catch(h){d=[6,h],s=0}finally{a=l=0}if(d[0]&5)throw d[1];return{value:d[0]?d[1]:void 0,done:!0}}},Fn=function(r,n){for(var i in r)i!=="default"&&!Object.prototype.hasOwnProperty.call(n,i)&&ao(n,r,i)},ao=Object.create?function(r,n,i,a){a===void 0&&(a=i);var s=Object.getOwnPropertyDescriptor(n,i);(!s||("get"in s?!n.__esModule:s.writable||s.configurable))&&(s={enumerable:!0,get:function(){return n[i]}}),Object.defineProperty(r,a,s)}:function(r,n,i,a){a===void 0&&(a=i),r[a]=n[i]},io=function(r){var n=typeof Symbol=="function"&&Symbol.iterator,i=n&&r[n],a=0;if(i)return i.call(r);if(r&&typeof r.length=="number")return{next:function(){return r&&a>=r.length&&(r=void 0),{value:r&&r[a++],done:!r}}};throw new TypeError(n?"Object is not iterable.":"Symbol.iterator is not defined.")},er=function(r,n){var i=typeof Symbol=="function"&&r[Symbol.iterator];if(!i)return r;var a=i.call(r),s,l=[],c;try{for(;(n===void 0||n-- >0)&&!(s=a.next()).done;)l.push(s.value)}catch(y){c={error:y}}finally{try{s&&!s.done&&(i=a.return)&&i.call(a)}finally{if(c)throw c.error}}return l},Bn=function(){for(var r=[],n=0;n<arguments.length;n++)r=r.concat(er(arguments[n]));return r},Gn=function(){for(var r=0,n=0,i=arguments.length;n<i;n++)r+=arguments[n].length;for(var a=Array(r),s=0,n=0;n<i;n++)for(var l=arguments[n],c=0,y=l.length;c<y;c++,s++)a[s]=l[c];return a},Vn=function(r,n,i){if(i||arguments.length===2)for(var a=0,s=n.length,l;a<s;a++)(l||!(a in n))&&(l||(l=Array.prototype.slice.call(n,0,a)),l[a]=n[a]);return r.concat(l||Array.prototype.slice.call(n))},dt=function(r){return this instanceof dt?(this.v=r,this):new dt(r)},Hn=function(r,n,i){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var a=i.apply(r,n||[]),s,l=[];return s={},c("next"),c("throw"),c("return"),s[Symbol.asyncIterator]=function(){return this},s;function c(u){a[u]&&(s[u]=function(m){return new Promise(function(A,P){l.push([u,m,A,P])>1||y(u,m)})})}function y(u,m){try{w(a[u](m))}catch(A){f(l[0][3],A)}}function w(u){u.value instanceof dt?Promise.resolve(u.value.v).then(d,h):f(l[0][2],u)}function d(u){y("next",u)}function h(u){y("throw",u)}function f(u,m){u(m),l.shift(),l.length&&y(l[0][0],l[0][1])}},$n=function(r){var n,i;return n={},a("next"),a("throw",function(s){throw s}),a("return"),n[Symbol.iterator]=function(){return this},n;function a(s,l){n[s]=r[s]?function(c){return(i=!i)?{value:dt(r[s](c)),done:s==="return"}:l?l(c):c}:l}},jn=function(r){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var n=r[Symbol.asyncIterator],i;return n?n.call(r):(r=typeof io=="function"?io(r):r[Symbol.iterator](),i={},a("next"),a("throw"),a("return"),i[Symbol.asyncIterator]=function(){return this},i);function a(l){i[l]=r[l]&&function(c){return new Promise(function(y,w){c=r[l](c),s(y,w,c.done,c.value)})}}function s(l,c,y,w){Promise.resolve(w).then(function(d){l({value:d,done:y})},c)}},zn=function(r,n){return Object.defineProperty?Object.defineProperty(r,"raw",{value:n}):r.raw=n,r};var o=Object.create?function(r,n){Object.defineProperty(r,"default",{enumerable:!0,value:n})}:function(r,n){r.default=n};qn=function(r){if(r&&r.__esModule)return r;var n={};if(r!=null)for(var i in r)i!=="default"&&Object.prototype.hasOwnProperty.call(r,i)&&ao(n,r,i);return o(n,r),n},Zn=function(r){return r&&r.__esModule?r:{default:r}},Kn=function(r,n,i,a){if(i==="a"&&!a)throw new TypeError("Private accessor was defined without a getter");if(typeof n=="function"?r!==n||!a:!n.has(r))throw new TypeError("Cannot read private member from an object whose class did not declare it");return i==="m"?a:i==="a"?a.call(r):a?a.value:n.get(r)},Jn=function(r,n,i,a,s){if(a==="m")throw new TypeError("Private method is not writable");if(a==="a"&&!s)throw new TypeError("Private accessor was defined without a setter");if(typeof n=="function"?r!==n||!s:!n.has(r))throw new TypeError("Cannot write private member to an object whose class did not declare it");return a==="a"?s.call(r,i):s?s.value=i:n.set(r,i),i},Yn=function(r,n){if(n===null||typeof n!="object"&&typeof n!="function")throw new TypeError("Cannot use 'in' operator on non-object");return typeof r=="function"?n===r:r.has(n)},e("__extends",Wn),e("__assign",Mn),e("__rest",In),e("__decorate",Rn),e("__param",On),e("__metadata",Nn),e("__awaiter",Un),e("__generator",Dn),e("__exportStar",Fn),e("__createBinding",ao),e("__values",io),e("__read",er),e("__spread",Bn),e("__spreadArrays",Gn),e("__spreadArray",Vn),e("__await",dt),e("__asyncGenerator",Hn),e("__asyncDelegator",$n),e("__asyncValues",jn),e("__makeTemplateObject",zn),e("__importStar",qn),e("__importDefault",Zn),e("__classPrivateFieldGet",Kn),e("__classPrivateFieldSet",Jn),e("__classPrivateFieldIn",Yn)})});var tr=Pe(I=>{"use strict";Object.defineProperty(I,"__esModule",{value:!0});I.getLocalStorage=I.getLocalStorageOrThrow=I.getCrypto=I.getCryptoOrThrow=I.getLocation=I.getLocationOrThrow=I.getNavigator=I.getNavigatorOrThrow=I.getDocument=I.getDocumentOrThrow=I.getFromWindowOrThrow=I.getFromWindow=void 0;function Ye(e){let t;return typeof window<"u"&&typeof window[e]<"u"&&(t=window[e]),t}I.getFromWindow=Ye;function ut(e){let t=Ye(e);if(!t)throw new Error(`${e} is not defined in Window`);return t}I.getFromWindowOrThrow=ut;function Ns(){return ut("document")}I.getDocumentOrThrow=Ns;function Us(){return Ye("document")}I.getDocument=Us;function Ds(){return ut("navigator")}I.getNavigatorOrThrow=Ds;function Fs(){return Ye("navigator")}I.getNavigator=Fs;function Bs(){return ut("location")}I.getLocationOrThrow=Bs;function Gs(){return Ye("location")}I.getLocation=Gs;function Vs(){return ut("crypto")}I.getCryptoOrThrow=Vs;function Hs(){return Ye("crypto")}I.getCrypto=Hs;function $s(){return ut("localStorage")}I.getLocalStorageOrThrow=$s;function js(){return Ye("localStorage")}I.getLocalStorage=js});var Qn=Pe(co=>{"use strict";Object.defineProperty(co,"__esModule",{value:!0});co.getWindowMetadata=void 0;var Xn=tr();function zs(){let e,t;try{e=Xn.getDocumentOrThrow(),t=Xn.getLocationOrThrow()}catch{return null}function o(){let w=e.getElementsByTagName("link"),d=[];for(let h=0;h<w.length;h++){let f=w[h],u=f.getAttribute("rel");if(u&&u.toLowerCase().indexOf("icon")>-1){let m=f.getAttribute("href");if(m)if(m.toLowerCase().indexOf("https:")===-1&&m.toLowerCase().indexOf("http:")===-1&&m.indexOf("//")!==0){let A=t.protocol+"//"+t.host;if(m.indexOf("/")===0)A+=m;else{let P=t.pathname.split("/");P.pop(),A+=P.join("/")+"/"+m}d.push(A)}else if(m.indexOf("//")===0){let A=t.protocol+m;d.push(A)}else d.push(m)}}return d}function r(...w){let d=e.getElementsByTagName("meta");for(let h=0;h<d.length;h++){let f=d[h],u=["itemprop","property","name"].map(m=>f.getAttribute(m)).filter(m=>m?w.includes(m):!1);if(u.length&&u){let m=f.getAttribute("content");if(m)return m}}return""}function n(){let w=r("name","og:site_name","og:title","twitter:title");return w||(w=e.title),w}function i(){return r("description","og:description","twitter:description","keywords")}let a=n(),s=i(),l=t.origin,c=o();return{description:s,url:l,icons:c,name:a}}co.getWindowMetadata=zs});var di={};Zr(di,{BotInfo:()=>ii,BrowserInfo:()=>oi,NodeInfo:()=>ri,ReactNativeInfo:()=>ai,SearchBotDeviceInfo:()=>ni,browserName:()=>Xs,detect:()=>Ys,detectOS:()=>li,getNodeVersion:()=>ci,parseUserAgent:()=>or});function Ys(e){return e?or(e):typeof document>"u"&&typeof navigator<"u"&&navigator.product==="ReactNative"?new ai:typeof navigator<"u"?or(navigator.userAgent):ci()}function si(e){return e!==""&&Js.reduce(function(t,o){var r=o[0],n=o[1];if(t)return t;var i=n.exec(e);return!!i&&[r,i]},!1)}function Xs(e){var t=si(e);return t?t[0]:null}function or(e){var t=si(e);if(!t)return null;var o=t[0],r=t[1];if(o==="searchbot")return new ii;var n=r[1]&&r[1].split(/[._]/).slice(0,3);n?n.length<ei&&(n=qs(n,Qs(ei-n.length))):n=[];var i=n.join("."),a=li(e),s=Ks.exec(e);return s&&s[1]?new ni(o,i,a,s[1]):new oi(o,i,a)}function li(e){for(var t=0,o=ti.length;t<o;t++){var r=ti[t],n=r[0],i=r[1],a=i.exec(e);if(a)return n}return null}function ci(){var e=typeof process<"u"&&process.version;return e?new ri(process.version.slice(1)):null}function Qs(e){for(var t=[],o=0;o<e;o++)t.push("0");return t}var qs,oi,ri,ni,ii,ai,Zs,Ks,ei,Js,ti,ui=qr(()=>{qs=function(){for(var e=0,t=0,o=arguments.length;t<o;t++)e+=arguments[t].length;for(var r=Array(e),n=0,t=0;t<o;t++)for(var i=arguments[t],a=0,s=i.length;a<s;a++,n++)r[n]=i[a];return r},oi=function(){function e(t,o,r){this.name=t,this.version=o,this.os=r,this.type="browser"}return e}(),ri=function(){function e(t){this.version=t,this.type="node",this.name="node",this.os=process.platform}return e}(),ni=function(){function e(t,o,r,n){this.name=t,this.version=o,this.os=r,this.bot=n,this.type="bot-device"}return e}(),ii=function(){function e(){this.type="bot",this.bot=!0,this.name="bot",this.version=null,this.os=null}return e}(),ai=function(){function e(){this.type="react-native",this.name="react-native",this.version=null,this.os=null}return e}(),Zs=/alexa|bot|crawl(er|ing)|facebookexternalhit|feedburner|google web preview|nagios|postrank|pingdom|slurp|spider|yahoo!|yandex/,Ks=/(nuhk|Googlebot|Yammybot|Openbot|Slurp|MSNBot|Ask\ Jeeves\/Teoma|ia_archiver)/,ei=3,Js=[["aol",/AOLShield\/([0-9\._]+)/],["edge",/Edge\/([0-9\._]+)/],["edge-ios",/EdgiOS\/([0-9\._]+)/],["yandexbrowser",/YaBrowser\/([0-9\._]+)/],["kakaotalk",/KAKAOTALK\s([0-9\.]+)/],["samsung",/SamsungBrowser\/([0-9\.]+)/],["silk",/\bSilk\/([0-9._-]+)\b/],["miui",/MiuiBrowser\/([0-9\.]+)$/],["beaker",/BeakerBrowser\/([0-9\.]+)/],["edge-chromium",/EdgA?\/([0-9\.]+)/],["chromium-webview",/(?!Chrom.*OPR)wv\).*Chrom(?:e|ium)\/([0-9\.]+)(:?\s|$)/],["chrome",/(?!Chrom.*OPR)Chrom(?:e|ium)\/([0-9\.]+)(:?\s|$)/],["phantomjs",/PhantomJS\/([0-9\.]+)(:?\s|$)/],["crios",/CriOS\/([0-9\.]+)(:?\s|$)/],["firefox",/Firefox\/([0-9\.]+)(?:\s|$)/],["fxios",/FxiOS\/([0-9\.]+)/],["opera-mini",/Opera Mini.*Version\/([0-9\.]+)/],["opera",/Opera\/([0-9\.]+)(?:\s|$)/],["opera",/OPR\/([0-9\.]+)(:?\s|$)/],["ie",/Trident\/7\.0.*rv\:([0-9\.]+).*\).*Gecko$/],["ie",/MSIE\s([0-9\.]+);.*Trident\/[4-7].0/],["ie",/MSIE\s(7\.0)/],["bb10",/BB10;\sTouch.*Version\/([0-9\.]+)/],["android",/Android\s([0-9\.]+)/],["ios",/Version\/([0-9\._]+).*Mobile.*Safari.*/],["safari",/Version\/([0-9\._]+).*Safari/],["facebook",/FBAV\/([0-9\.]+)/],["instagram",/Instagram\s([0-9\.]+)/],["ios-webview",/AppleWebKit\/([0-9\.]+).*Mobile/],["ios-webview",/AppleWebKit\/([0-9\.]+).*Gecko\)$/],["searchbot",Zs]],ti=[["iOS",/iP(hone|od|ad)/],["Android OS",/Android/],["BlackBerry OS",/BlackBerry|BB10/],["Windows Mobile",/IEMobile/],["Amazon OS",/Kindle/],["Windows 3.11",/Win16/],["Windows 95",/(Windows 95)|(Win95)|(Windows_95)/],["Windows 98",/(Windows 98)|(Win98)/],["Windows 2000",/(Windows NT 5.0)|(Windows 2000)/],["Windows XP",/(Windows NT 5.1)|(Windows XP)/],["Windows Server 2003",/(Windows NT 5.2)/],["Windows Vista",/(Windows NT 6.0)/],["Windows 7",/(Windows NT 6.1)/],["Windows 8",/(Windows NT 6.2)/],["Windows 8.1",/(Windows NT 6.3)/],["Windows 10",/(Windows NT 10.0)/],["Windows ME",/Windows ME/],["Open BSD",/OpenBSD/],["Sun OS",/SunOS/],["Chrome OS",/CrOS/],["Linux",/(Linux)|(X11)/],["Mac OS",/(Mac_PowerPC)|(Macintosh)/],["QNX",/QNX/],["BeOS",/BeOS/],["OS/2",/OS\/2/]]});var nr=Pe(b=>{"use strict";Object.defineProperty(b,"__esModule",{value:!0});b.getClientMeta=b.getLocalStorage=b.getLocalStorageOrThrow=b.getCrypto=b.getCryptoOrThrow=b.getLocation=b.getLocationOrThrow=b.getNavigator=b.getNavigatorOrThrow=b.getDocument=b.getDocumentOrThrow=b.getFromWindowOrThrow=b.getFromWindow=b.isBrowser=b.isNode=b.isMobile=b.isIOS=b.isAndroid=b.detectOS=b.detectEnv=void 0;var pi=lo(),el=pi.__importStar(Qn()),he=pi.__importStar(tr()),tl=(ui(),Jr(di));function rr(e){return(0,tl.detect)(e)}b.detectEnv=rr;function uo(){let e=rr();return e&&e.os?e.os:void 0}b.detectOS=uo;function hi(){let e=uo();return e?e.toLowerCase().includes("android"):!1}b.isAndroid=hi;function mi(){let e=uo();return e?e.toLowerCase().includes("ios")||e.toLowerCase().includes("mac")&&navigator.maxTouchPoints>1:!1}b.isIOS=mi;function ol(){return uo()?hi()||mi():!1}b.isMobile=ol;function fi(){let e=rr();return e&&e.name?e.name.toLowerCase()==="node":!1}b.isNode=fi;function rl(){return!fi()&&!!(0,b.getNavigator)()}b.isBrowser=rl;b.getFromWindow=he.getFromWindow;b.getFromWindowOrThrow=he.getFromWindowOrThrow;b.getDocumentOrThrow=he.getDocumentOrThrow;b.getDocument=he.getDocument;b.getNavigatorOrThrow=he.getNavigatorOrThrow;b.getNavigator=he.getNavigator;b.getLocationOrThrow=he.getLocationOrThrow;b.getLocation=he.getLocation;b.getCryptoOrThrow=he.getCryptoOrThrow;b.getCrypto=he.getCrypto;b.getLocalStorageOrThrow=he.getLocalStorageOrThrow;b.getLocalStorage=he.getLocalStorage;function nl(){return el.getWindowMetadata()}b.getClientMeta=nl});var gi={};Zr(gi,{safeJsonParse:()=>il,safeJsonStringify:()=>al});function il(e){if(typeof e!="string")throw new Error(`Cannot safe json parse value of type ${typeof e}`);try{return JSON.parse(e)}catch{return e}}function al(e){return typeof e=="string"?e:JSON.stringify(e)}var yi=qr(()=>{});var ir=Pe(pt=>{"use strict";Object.defineProperty(pt,"__esModule",{value:!0});pt.safeJsonStringify=pt.safeJsonParse=void 0;var sl=lo(),wi=sl.__importStar((yi(),Jr(gi)));pt.safeJsonParse=wi.safeJsonParse;pt.safeJsonStringify=wi.safeJsonStringify});var sr=Pe(De=>{"use strict";Object.defineProperty(De,"__esModule",{value:!0});De.removeLocal=De.getLocal=De.setLocal=void 0;var vi=ir(),ar=nr();function ll(e,t){let o=(0,vi.safeJsonStringify)(t),r=(0,ar.getLocalStorage)();r&&r.setItem(e,o)}De.setLocal=ll;function cl(e){let t=null,o=null,r=(0,ar.getLocalStorage)();return r&&(o=r.getItem(e)),t=o&&(0,vi.safeJsonParse)(o),t}De.getLocal=cl;function dl(e){let t=(0,ar.getLocalStorage)();t&&t.removeItem(e)}De.removeLocal=dl});var bi=Pe(oe=>{"use strict";Object.defineProperty(oe,"__esModule",{value:!0});oe.getMobileLinkRegistry=oe.getMobileRegistryEntry=oe.saveMobileLinkInfo=oe.formatIOSMobile=oe.mobileLinkChoiceKey=void 0;var ul=sr();oe.mobileLinkChoiceKey="WALLETCONNECT_DEEPLINK_CHOICE";function pl(e,t){let o=encodeURIComponent(e);return t.universalLink?`${t.universalLink}/wc?uri=${o}`:t.deepLink?`${t.deepLink}${t.deepLink.endsWith(":")?"//":"/"}wc?uri=${o}`:""}oe.formatIOSMobile=pl;function hl(e){let t=e.href.split("?")[0];(0,ul.setLocal)(oe.mobileLinkChoiceKey,Object.assign(Object.assign({},e),{href:t}))}oe.saveMobileLinkInfo=hl;function Ci(e,t){return e.filter(o=>o.name.toLowerCase().includes(t.toLowerCase()))[0]}oe.getMobileRegistryEntry=Ci;function ml(e,t){let o=e;return t&&(o=t.map(r=>Ci(e,r)).filter(Boolean)),o}oe.getMobileLinkRegistry=ml});var Li=Pe(Ee=>{"use strict";Object.defineProperty(Ee,"__esModule",{value:!0});Ee.formatMobileRegistry=Ee.formatMobileRegistryEntry=Ee.getDappRegistryUrl=Ee.getWalletRegistryUrl=void 0;var xi="https://registry.walletconnect.com";function fl(){return xi+"/api/v2/wallets"}Ee.getWalletRegistryUrl=fl;function gl(){return xi+"/api/v2/dapps"}Ee.getDappRegistryUrl=gl;function Ei(e,t="mobile"){var o;return{name:e.name||"",shortName:e.metadata.shortName||"",color:e.metadata.colors.primary||"",logo:(o=e.image_url.sm)!==null&&o!==void 0?o:"",universalLink:e[t].universal||"",deepLink:e[t].native||""}}Ee.formatMobileRegistryEntry=Ei;function yl(e,t="mobile"){return Object.values(e).filter(o=>!!o[t].universal||!!o[t].native).map(o=>Ei(o,t))}Ee.formatMobileRegistry=yl});var _i=Pe(Xe=>{"use strict";Object.defineProperty(Xe,"__esModule",{value:!0});var Rt=lo();Rt.__exportStar(nr(),Xe);Rt.__exportStar(ir(),Xe);Rt.__exportStar(sr(),Xe);Rt.__exportStar(bi(),Xe);Rt.__exportStar(Li(),Xe)});import{Web3Provider as I1}from"@ethersproject/providers";import{useEffect as ds,useState as le}from"react";import ws from"axios";var ye=class extends Error{constructor(o,r){super(o);r instanceof Error&&(this.cause=r)}toString(){return`${this.type}: ${this.message}${this.cause?` [cause: ${this.cause}]`:""}`}},nt=class extends ye{constructor(o,r,n,i){super(n,i);this.type=o;this.status=r}},C=class extends ye{constructor(o,r){super(o,r);this.type="client_error"}};var G=class extends ye{constructor(o,r){super(o,r);this.type="connector_error"}},H=e=>{if(e instanceof ye)return e;if(!ws.isAxiosError(e))return de(e);if(!e.response)return new nt("api_error",null,e.message,e);let{type:t,message:o,error:r}=e.response.data;return new nt(t||"ApiError",e.response.status,o||r,e)},de=e=>e instanceof ye?e:e instanceof Error?new C(e.message,e):new C(`Internal error: ${e}`);var Yr=()=>"/api/v1/sessions",Xr=()=>"/api/v1/sessions/logout",Qr=()=>"/api/v1/sessions/fork",en=()=>"/api/v1/siwe/init",tn=()=>"/api/v1/siwe/authenticate",on=()=>"/api/v1/siwe/link",rn=()=>"/api/v1/passwordless/init",nn=()=>"/api/v1/passwordless/authenticate",an=()=>"/api/v1/passwordless/link",sn=()=>"/api/v1/passwordless_sms/init",ln=()=>"/api/v1/passwordless_sms/authenticate",cn=()=>"/api/v1/passwordless_sms/link",dn=()=>"/api/v1/oauth/init",un=()=>"/api/v1/oauth/authenticate",pn=()=>"/api/v1/oauth/link",hn=()=>"/api/v1/siwe/unlink",mn=()=>"/api/v1/passwordless/unlink",fn=()=>"/api/v1/passwordless_sms/unlink",gn=()=>"/api/v1/oauth/unlink";var Wt=class{constructor(t){this.meta={email:t}}async authenticate(){if(!this.api)throw new C("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new C("Email and email code must be set prior to calling authenticate.");try{let t=nn(),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 H(t)}}async link(){if(!this.api)throw new C("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new C("Email and email code must be set prior to calling authenticate.");try{let t=an();return(await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode})).data}catch(t){throw H(t)}}async sendCodeEmail(t){if(!this.api)throw new C("Auth flow has no API instance");if(t&&(this.meta.email=t),!this.meta.email)throw new C("Email must be set when initialzing authentication.");try{let o=rn();return(await this.api.post(o,{email:this.meta.email})).data}catch(o){throw H(o)}}};var it=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 C("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new C("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling authenticate.");if(this.meta.authorizationCode==="undefined")throw new C("User denied confirmation during OAuth flow");try{let t=un(),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 H(t)}}async link(){if(!this.api)throw new C("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new C("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling link.");if(this.meta.authorizationCode==="undefined")throw new C("User denied confirmation during OAuth flow");try{let t=pn();return(await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode})).data}catch(t){throw H(t)}}async getAuthorizationUrl(){if(!this.api)throw new C("Auth flow has no API instance");if(!this.meta.provider)throw new C("Provider must be set when initialzing OAuth authentication.");try{let t=dn();return(await this.api.post(t,{provider:this.meta.provider,redirect_to:window.location.href})).data}catch(t){throw H(t)}}};var Mt=class{constructor(t,o){this._meta={walletType:o},this.connectors=t,this.walletConnector=this.connectors.createWalletConnector(o,null)}get meta(){return{...this._meta,walletMeta:this.walletConnector.walletMeta}}async authenticate(){if(!this.api)throw new C("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign(this.api),r=await this.api.post(tn(),{message:t,signature:o});return this.connectors.addWalletConnector(this.walletConnector),await this.connectors.setActiveWallet(this.walletConnector.address)||console.warn("Failed to set active wallet"),{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 H(t)}}async link(){if(!this.api)throw new C("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign(this.api),r=await this.api.post(on(),{message:t,signature:o});return this.connectors.addWalletConnector(this.walletConnector),await this.connectors.setActiveWallet(this.walletConnector.address)||console.warn("Failed to set active wallet"),r.data}catch(t){throw H(t)}}async promptConnect(){return await this.walletConnector.connect({showPrompt:!0})}async sign(t){let o=await this.walletConnector.connect({showPrompt:!1});if(!o)throw new G("Cannot sign without a connected wallet");let r=o.address,n=o.chainId,i=await t.post(en(),{address:r}),a=this.walletConnector.prepareMessage(n,r,i.data.nonce),s=await this.walletConnector.sign(a);return{message:a,signature:s}}};var It=class{constructor(t){this.meta={phoneNumber:t}}async authenticate(){if(!this.api)throw new C("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new C("phone number and sms code must be set prior to calling authenticate.");try{let t=ln(),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 H(t)}}async link(){if(!this.api)throw new C("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new C("phone number and sms code must be set prior to calling authenticate.");try{let t=cn();return(await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode})).data}catch(t){throw H(t)}}async sendSmsCode(t){if(!this.api)throw new C("Auth flow has no API instance");if(t&&(this.meta.phoneNumber=t),!this.meta.phoneNumber)throw new C("phone nNumber must be set when initialzing authentication.");try{let o=sn();return(await this.api.post(o,{phoneNumber:this.meta.phoneNumber})).data}catch(o){throw H(o)}}};import{getAddress as xl}from"@ethersproject/address";var yn="1.18.0-beta.3";var wn="https://api.privy.io/v0",qo=process.env.NEXT_PUBLIC_PRIVY_AUTH_URL||"https://auth.privy.io",Xt="4df5e2316331463a9130964bd6078dfa",vn=1e4,ue=1400,Zo=yn;var at="privy:token",Qt="privy:refresh_token",eo="privy:connectors",Cn="walletconnect",bn=3e4;var Ko=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)}},Jo=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 Cs(){return typeof window<"u"&&window.localStorage?new Jo:new Ko}var Y=Cs();import ks from"@coinbase/wallet-sdk";import{getAddress as Ts}from"@ethersproject/address";import{jsx as xn,jsxs as bs}from"react/jsx-runtime";var pe=({style:e,...t})=>bs("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:[xn("rect",{width:"1024",height:"1024",fill:"#0052FF",rx:100,ry:100}),xn("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M152 512C152 710.823 313.177 872 512 872C710.823 872 872 710.823 872 512C872 313.177 710.823 152 512 152C313.177 152 152 313.177 152 512ZM420 396C406.745 396 396 406.745 396 420V604C396 617.255 406.745 628 420 628H604C617.255 628 628 617.255 628 604V420C628 406.745 617.255 396 604 396H420Z",fill:"white"})]});import{getAddress as As}from"@ethersproject/address";import{Web3Provider as Ps}from"@ethersproject/providers";import{ErrorCode as xs}from"@ethersproject/logger";var st=class extends G{constructor(){super("Wallet timeout");this.type="wallet_error"}},lt=class extends G{constructor(){super("User rejected connection");this.type="wallet_error"}},ke=e=>{if(e instanceof G)return e;if((e==null?void 0:e.code)&&(e==null?void 0:e.reason)){let t=new ct(e);return e.code===xs.ACTION_REJECTED&&(t.details=qe.E4001_USER_REJECTED_REQUEST),t}return e!=null&&e.code?new ct(e):new G("Unknown connector error",e)},Yo=class extends ye{constructor(o,r,n){super(o);this.type="provider_error";this.code=r,this.data=n}},ct=class extends Yo{constructor(o){var i,a,s;let r=o;super(r.message,r.code,r.data);let n=Object.values(qe).find(l=>l.eipCode===r.code);this.details=n||qe.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=qe.E32002_CONNECTION_ALREADY_PENDING:this.details=qe.E32002_REQUEST_ALREADY_PENDING:(s=r.message)!=null&&s.includes("Already processing")&&r.message.includes("eth_requestAccounts")&&(this.details=qe.E32002_WALLET_LOCKED))}},Es={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}},Ls={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}},_s={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}},qe={UNKNOWN_ERROR:{eipCode:0,message:"Unknown error",detail:"Unknown error",retryable:!0},..._s,...Ls},Ze={...Es,...qe};var Ss=12e4,Xo=(e=new st,t=Ss)=>new Promise((o,r)=>setTimeout(()=>{r(e)},t)),we=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 G(`A wallet request of type ${t.method} was made before setting a wallet provider.`);return Promise.race([this.walletProvider.request(t),Xo()]).catch(o=>{throw ke(o)})}},Ke=class extends we{constructor(o){super(o)}},to=class extends we{constructor(t){super(t)}sendAsync(t,o){throw new Error("sendAsync is no longer supported by EIP-1193. Use the request method instead.")}};var Te=class{constructor(t,o,r){this.createSiweMessage=(t,o,r,n,i,a,s)=>`${r} wants you to sign in with your Ethereum account:
2
2
  ${o}
3
3
 
4
- ${a}
4
+ ${s}
5
5
 
6
6
  URI: ${n}
7
7
  Version: 1
8
8
  Chain ID: ${t}
9
- Nonce: ${s}
9
+ Nonce: ${a}
10
10
  Issued At: ${i}
11
11
  Resources:
12
- - https://privy.io`;this.proxyProvider=o,this.walletType=t,this.address=r,this.chain=null,this.connected=!1}async fetchAddress(){if(!this.address){let t=await this.proxyProvider.request({method:"eth_accounts"});Array.isArray(t)&&t.length>0&&(this.address=ji(t[0]))}return this.address}async fetchChainId(){if(!this.chain){let t=await this.proxyProvider.request({method:"eth_chainId"}),o=Number(t);this.chain=String(o)}return this.chain}async getConnectedWallet(){if(!this.walletType||!await this.isConnected())return null;let o=await this.fetchAddress(),r=await this.fetchChainId();return{address:o,chainId:r,chainType:"ethereum",walletClient:"unknown"}}async setActive(){return!0}async sign(t){return await this.connect({showPrompt:!1}),new Zi(new He(this.proxyProvider)).getSigner().signMessage(t)}prepareMessage(t,o,r){let n=window.location.host,i=window.location.origin,s="By signing, you are proving you own this wallet and logging in. This does not initiate a transaction or cost any fees.",a=new Date().toISOString();return this.createSiweMessage(t,o,n,i,a,r,s)}};var Ji=e=>{let t=`https://mainnet.infura.io/v3/${Dt}`,o=1;return e.makeWeb3Provider(t,o)},Ht,Vt=class extends Le{constructor(t,o){super("coinbase_wallet",t,o),Ht||(Ht=new qi({appName:"Privy",darkMode:!1,headlessMode:!1}))}async connect(t){return this.proxyProvider.setWalletProvider(Ji(Ht)),t.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}disconnect(){Ht.disconnect()}async isConnected(){return await this.fetchAddress()!==null}get walletMeta(){return{name:"Coinbase Wallet",icon:le}}async promptConnection(){try{let t="",o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(o.length>0&&(t=Ki(o[0])),!t||t==="")throw new F("Unable to retrieve address");this.connected=!0}catch(t){throw Ee(t)}}};import{getAddress as Xr}from"@ethersproject/address";import{Web3Provider as Qi}from"@ethersproject/providers";import{isMobile as es}from"react-device-detect";import{jsx as X,jsxs as Yi}from"react/jsx-runtime";var ce=({style:e,...t})=>Yi("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:[X("rect",{width:"28",height:"28",rx:"6",fill:"white"}),X("path",{d:"M23.0126 5L15.1958 10.7823L16.6533 7.37359L23.0126 5Z",fill:"#E17726",stroke:"#E17726",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),X("path",{d:"M4.98753 5L12.7329 10.8299L11.3468 7.37954L4.98753 5ZM20.1987 18.4027L18.1166 21.5794L22.5723 22.8049L23.8454 18.4741L20.1987 18.4027ZM4.16064 18.4741L5.42775 22.8049L9.87153 21.5794L7.80133 18.4027L4.16064 18.4741Z",fill:"#E27625",stroke:"#E27625",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),X("path",{d:"M9.6336 13.0369L8.39624 14.9049L12.7984 15.1071L12.6556 10.3659L9.6336 13.0429V13.0369ZM18.3665 13.0429L15.2969 10.3064L15.1958 15.1071L19.5979 14.9049L18.3665 13.0429ZM9.87155 21.5794L12.5426 20.2945L10.2463 18.5098L9.87155 21.5794ZM15.4635 20.2886L18.1166 21.5794L17.7597 18.5039L15.4635 20.2886Z",fill:"#E27625",stroke:"#E27625",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),X("path",{d:"M18.1167 21.5794L15.4635 20.2944L15.6776 22.0196L15.6539 22.7513L18.1167 21.5794ZM9.87158 21.5794L12.3463 22.7513L12.3285 22.0196L12.5426 20.2944L9.87158 21.5794Z",fill:"#D5BFB2",stroke:"#D5BFB2",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),X("path",{d:"M12.3878 17.3616L10.1868 16.7191L11.7454 16.0052L12.3938 17.3616H12.3878ZM15.6062 17.3616L16.2605 15.9993L17.8251 16.7131L15.6062 17.3675V17.3616Z",fill:"#233447",stroke:"#233447",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),X("path",{d:"M9.87147 21.5794L10.2581 18.4027L7.80127 18.4741L9.87147 21.5794ZM17.7418 18.4027L18.1166 21.5794L20.1987 18.4741L17.7418 18.4027ZM19.6038 14.9048L15.2016 15.107L15.6061 17.3676L16.2605 15.9994L17.8251 16.7132L19.6038 14.9048ZM10.1868 16.7192L11.7454 16.0053L12.3938 17.3617L12.8042 15.1011L8.4021 14.9048L10.1868 16.7192Z",fill:"#CC6228",stroke:"#CC6228",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),X("path",{d:"M8.4021 14.9048L10.2462 18.5038L10.1868 16.7192L8.4021 14.9048ZM17.8251 16.7192L17.7537 18.5038L19.5978 14.9048L17.8251 16.7192ZM12.8042 15.107L12.3878 17.3676L12.9113 20.0327L13.0303 16.5169L12.8042 15.107ZM15.1957 15.107L14.9815 16.511L15.0886 20.0327L15.6061 17.3617L15.1957 15.1011V15.107Z",fill:"#E27525",stroke:"#E27525",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),X("path",{d:"M15.6062 17.3617L15.0887 20.0327L15.4635 20.2945L17.7538 18.5098L17.8252 16.7192L15.6062 17.3617ZM10.1869 16.7192L10.2463 18.5039L12.5426 20.2885L12.9114 20.0327L12.3939 17.3617L10.1809 16.7192H10.1869Z",fill:"#F5841F",stroke:"#F5841F",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),X("path",{d:"M15.6598 22.7513L15.6776 22.0196L15.4754 21.853H12.5248L12.3285 22.0196L12.3463 22.7513L9.87158 21.5793L10.7401 22.2932L12.495 23.5008H15.4992L17.26 22.2873L18.1167 21.5793L15.6539 22.7513H15.6598Z",fill:"#C0AC9D",stroke:"#C0AC9D",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),X("path",{d:"M15.4634 20.2885L15.0886 20.0327H12.9114L12.5425 20.2945L12.3284 22.0196L12.5247 21.8531H15.4753L15.6776 22.0196L15.4634 20.2945V20.2885Z",fill:"#161616",stroke:"#161616",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),X("path",{d:"M23.3456 11.1571L24 7.97442L23.0125 5L15.4575 10.5919L18.3664 13.0369L22.4711 14.2326L23.3754 13.1797L22.9827 12.8941L23.6074 12.323L23.1315 11.9542L23.7561 11.4783L23.3397 11.1571H23.3456ZM4 7.96847L4.66627 11.1571L4.23795 11.4723L4.87448 11.9482L4.39857 12.323L5.01725 12.8941L4.62463 13.1797L5.52885 14.2326L9.63355 13.0428L12.5425 10.586L4.98751 5L4 7.96847Z",fill:"#763E1A",stroke:"#763E1A",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),X("path",{d:"M22.4712 14.2325L18.3665 13.0428L19.6038 14.9048L17.7597 18.5038L20.1987 18.4741H23.8454L22.4712 14.2325ZM9.63358 13.0368L5.52888 14.2325L4.16064 18.4741H7.80728L10.2463 18.5038L8.40217 14.9048L9.63953 13.0368H9.63358ZM15.1957 15.107L15.4634 10.5859L16.6532 7.37354H11.3468L12.5366 10.5859L12.8043 15.107L12.9054 16.5229V20.0327H15.0887L15.1006 16.5229L15.1957 15.107Z",fill:"#F5841F",stroke:"#F5841F",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"})]});import{isPossiblePhoneNumber as Xi}from"libphonenumber-js/min";var zr=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,}))$/),jr=e=>Xi(String(e),"US"),Zr=e=>{let t=/^#?([a-f\d])([a-f\d])([a-f\d])$/i;e=e.replace(t,function(r,n,i,s){return n+n+i+i+s+s});let o=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(e);return{r:parseInt((o==null?void 0:o[1])||"00",16),g:parseInt((o==null?void 0:o[2])||"00",16),b:parseInt((o==null?void 0:o[3])||"00",16)}},qr=({r:e,g:t,b:o})=>{e/=255,t/=255,o/=255;let r=Math.max(e,t,o),n=r-Math.min(e,t,o),i=n?r===e?(t-o)/n:r===t?2+(o-e)/n:4+(e-t)/n:0;return{h:Math.round(60*i<0?60*i+360:60*i),s:Math.round(100*(n?r<=.5?n/(2*r-n):n/(2-(2*r-n)):0)),l:Math.round(100*(2*r-n)/2)}},Kr=(e,t)=>{let o=e.slice(0),r=[];for(;o.length;)r.push(o.splice(0,t));return r},Ve=(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),s=e.slice(e.length-o,e.length);return`${i}...${s}`},Mo=e=>new Promise(t=>setTimeout(t,e)),Jr=(e,t={})=>{let o=t.delayMs||40,r=t.maxAttempts||1e3;return new Promise(async(n,i)=>{let s=!1,a=0;for(;!s&&a<r;)e().then(()=>{s=!0,n()},(...d)=>{s=!0,i(...d)}),a+=1,await Mo(o);s||i(new Error("Exceeded max attempts before resolving function"))})},Yr=(...e)=>{let o=e.length-1;return e.map((n,i)=>(i===0&&(n.startsWith("//")||n.endsWith("://"))?n=n.replace(new RegExp("/$"),""):i!==o&&(n=n.replace(new RegExp("/+$"),"")),i!==0&&(n=n.replace(new RegExp("^/+"),"")),n)).join("/")};var $t=class extends Le{constructor(t,o){var r;super("metamask",t,o),this.proxyProvider.setWalletProvider(window.ethereum),(r=window.ethereum.providers)==null||r.forEach(async n=>{n.isMetaMask&&this.proxyProvider.setWalletProvider(n)}),this.subscribeListeners()}async connect(t){return t.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}async isConnected(){let t=await this.connectedMetamaskAddress();return this.address===t}async connectedMetamaskAddress(){let o=await new Qi(this.proxyProvider).listAccounts();return o.length===0?null:Xr(o[0])}get walletMeta(){return{name:"MetaMask",icon:ce}}disconnect(){console.warn("Metamask does not support programmetic disconnect.")}async promptConnection(){try{let t="";if(!es&&(await this.proxyProvider.request({method:"wallet_requestPermissions",params:[{eth_accounts:{}}]}),this.address&&await this.isConnected()))throw new F("Selected the wrong wallet in MetaMask");let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(o.length>0&&(t=Xr(o[0])),!t||t==="")throw new F("Unable to retrieve address");this.connected=!0,this.address=t}catch(t){throw Ee(t)}}async setActive(){if(await this.connectedMetamaskAddress()===this.address)return this.connected=!0,!0;for(;!this.connected;)await Mo(200);return!0}subscribeListeners(){this.proxyProvider.on("accountsChanged",t=>{var o;if(t.length>0){let r=t[0];this.connected=((o=this.address)==null?void 0:o.toLowerCase())===(r==null?void 0:r.toLowerCase())}}),this.proxyProvider.on("disconnect",()=>{this.connected=!1})}};import os from"@walletconnect/web3-provider";import{jsx as tt,jsxs as ts}from"react/jsx-runtime";var Re=({style:e,...t})=>ts("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:[tt("rect",{width:"28",height:"28",rx:"6",fill:"#141414"}),tt("g",{clipPath:"url(#clip0_1765_9946)",children:tt("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"})}),tt("defs",{children:tt("clipPath",{id:"clip0_1765_9946",children:tt("rect",{width:"20",height:"12.2531",fill:"white",transform:"translate(4 8)"})})})]});var Io=class extends Le{constructor(o,r,n){super("wallet_connect",r,n);this._connectionManager=o,this.proxyProvider.setWalletProvider(this._connectionManager.getOrCreateProviderForAddress(n))}async connect(o){return o.showPrompt&&await this.promptConnection(),this.getConnectedWallet()}async isConnected(){return this.walletProvider.connected}get walletMeta(){var r,n,i;let o=((r=this.walletProvider.walletMeta)==null?void 0:r.name)||"WalletConnect";return o==="\u{1F308} Rainbow"&&(o="Rainbow"),{name:o,icon:((i=(n=this.walletProvider.walletMeta)==null?void 0:n.icons)==null?void 0:i[0])||Re}}async promptConnection(){return new Promise(async(o,r)=>{try{this.walletProvider.connector.on("disconnect",(s,a)=>{if(s){r(Ee(s));return}a.params.some(d=>d.message==="Session Rejected")&&(this.proxyProvider.setWalletProvider(this._connectionManager.replaceProvider(this.walletProvider)),r(new Qe))});let n="",i=await Promise.race([this._connectionManager.enableProvider(this.walletProvider),Ro()]);if(i.length>0&&(n=i[0]),!n||n==="")throw new F("Unable to retrieve address");this.connected=!0,o()}catch(n){r(Ee(n))}})}async sign(o){let r=await this._connectionManager.enableProvider(this.walletProvider);return(await this.walletProvider.getWalletConnector()).signPersonalMessage([o,r==null?void 0:r[0]])}disconnect(){}get walletProvider(){return this.proxyProvider.walletProvider}},zt=class{constructor(){this._storageIdToProvider={},this._addressToStorageId={},q.getKeys().forEach(t=>{if(t.startsWith("walletconnect")){let o=this.createProvider(t);this.enableProvider(o)}})}createConnector(t,o){return new Io(this,t,o)}async disconnect(){Object.values(this._storageIdToProvider).forEach(async t=>{await t.disconnect()})}getOrCreateProviderForAddress(t){let o=t?this._addressToStorageId[t]:void 0;o||(o=`${Hr}:${Math.random().toString(36).slice(2)}`);let r=this._storageIdToProvider[o];return r||this.createProvider(o)}createProvider(t){let o=new os({infuraId:Dt,storageId:t,pollingInterval:Vr});return this._storageIdToProvider[t]=o,o}replaceProvider(t){t.connected&&t.walletProvider.disconnect();let o=Object.entries(this._storageIdToProvider).find(([r,n])=>n.wc.session.key===t.wc.session.key);return o&&delete this._storageIdToProvider[o[0]],this.getOrCreateProviderForAddress(null)}async enableProvider(t){let o=await t.enable();this._storageIdToProvider[t.storageId]=t;for(let r of o)this._addressToStorageId[r]=t.storageId;return o}};var No=()=>{if(!window.ethereum)return!1;if(window.ethereum.isMetaMask)return!0;if(window.ethereum.providers){for(let e of window.ethereum.providers)if(e.isMetaMask)return!0}return!1},jt=()=>{if(!window.ethereum)return!1;if(window.ethereum.isCoinbaseWallet)return!0;if(window.ethereum.providers){for(let e of window.ethereum.providers)if(e.isCoinbaseWallet)return!0}return!1},Oo=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===rs(t)).length):!1},Qr=()=>{var t;let e=q.get(Gt);return e?(t=e.find(o=>o.active))==null?void 0:t.address:null},xt=class{constructor(){this.getEthereumProvider=()=>{var t;return((t=this.activeWalletConnector)==null?void 0:t.proxyProvider)||new we};this.walletConnectors=[],this.wcConnectionManager=new zt,this.initialized=!1}initialize(){this.initialized||(this.load(),this.activeWalletConnector&&this.activeWalletConnector.connect({showPrompt:!1}),this.initialized=!0)}initializeLinkedWallets(t){t.linkedAccounts.forEach(()=>null)}load(){(q.get(Gt)||[]).forEach(o=>{let r=this.createWalletConnector(o.walletType,o.address);this.addWalletConnector(r),o.active&&(this.activeWalletConnector=r)})}save(){let t=this.walletConnectors.map(o=>{var r;return{address:o.address,walletType:o.walletType,active:o.address===((r=this.activeWalletConnector)==null?void 0:r.address)}});q.put(Gt,t)}addWalletConnector(t){this.walletConnectors.find(r=>r.address===t.address&&r.walletType===t.walletType)||this.walletConnectors.push(t)}getConnectorByAddress(t){return this.walletConnectors.find(o=>{var r;return((r=o.address)==null?void 0:r.toLowerCase())===t.toLowerCase()})}async removeWallet(t){this.walletConnectors=this.walletConnectors.filter(o=>o.address!==t),this.activeWalletConnector=void 0,this.save()}async activeWalletSign(t){if(!this.activeWalletConnector)throw new F("Cannot sign, no wallet is active. Is a wallet connected?");return this.activeWalletConnector.sign(t)}async setActiveWallet(t){let o=this.walletConnectors.find(r=>r.address===t);if(o){let r=await o.setActive();return this.activeWalletConnector=r?o:void 0,this.save(),!0}return!1}createWalletConnector(t,o){switch(t){case"metamask":return new $t(new we,o);case"coinbase_wallet":return new Vt(new we,o);case"wallet_connect":return this.wcConnectionManager.createConnector(new we,o)}}};function Me(e){return new Date(e*1e3)}function ns(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:Me(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:Me(o.verified_at)};t.push(i);break;case"phone":let s={number:o.phoneNumber,type:o.type,verifiedAt:Me(o.verified_at)};t.push(s);break;case"google_oauth":let a={subject:o.subject,email:o.email,name:o.name,type:o.type,verifiedAt:Me(o.verified_at)};t.push(a);break;case"twitter_oauth":let d={subject:o.subject,username:o.username,name:o.name,type:o.type,verifiedAt:Me(o.verified_at)};t.push(d);break;case"discord_oauth":let u={subject:o.subject,username:o.username,email:o.email,type:o.type,verifiedAt:Me(o.verified_at)};t.push(u);break;case"github_oauth":let x={subject:o.subject,username:o.username,name:o.name,email:o.email,type:o.type,verifiedAt:Me(o.verified_at)};t.push(x);break;default:console.warn(`Unrecognized account type: ${r}. Please consider upgrading the Privy SDK.`)}}return t}function $e(e,t){return e.sort((o,r)=>r.verifiedAt.getTime()-o.verifiedAt.getTime()),e.find(o=>o.type===t)}function Et(e){let t=Qr();if(!t&&e.wallet)return delete e.wallet,e;let o=e.linkedAccounts.find(n=>n.type==="wallet"&&n.address===t);if(!o)return e;let r=Object.assign({},e);return r.wallet=o&&{address:o.address,chainType:o.chainType,chainId:o.chainId,walletClient:o.walletClient},r}var Ae=e=>e==null?void 0:e.linkedAccounts.find(t=>t.type==="wallet"&&t.walletClient==="privy");function Pe(e){if(!e)return null;let t=ns(e.linked_accounts),o=$e(t,"wallet"),r=$e(t,"email"),n=$e(t,"phone"),i=$e(t,"google_oauth"),s=$e(t,"twitter_oauth"),a=$e(t,"discord_oauth"),d=$e(t,"github_oauth"),u={id:e.id,createdAt:Me(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:s&&{subject:s.subject,username:s.username,name:s.name},discord:a&&{subject:a.subject,username:a.username,email:a.email},github:d&&{subject:d.subject,username:d.username,name:d.name,email:d.email}};return Et(u)}import Uo from"axios";var Zt=class{constructor(t,o,r){this.appId=t,this.sdkVersion=So,this.client=o,this.defaults=r}async get(t,o){try{return await Uo.get(t,await this.buildConfig({headers:{"Cache-Control":"no-cache"},...o}))}catch(r){throw B(r)}}async post(t,o,r){try{return await Uo.post(t,o,await this.buildConfig(r))}catch(n){throw B(n)}}async delete(t,o){try{return await Uo.delete(t,await this.buildConfig(o))}catch(r){throw B(r)}}async buildConfig(t){if(t=t||{},t.headers=t.headers||{},t.headers["privy-app-id"]=this.appId,t.headers["privy-client"]=`react-auth:${this.sdkVersion}`,!t.headers.authorization){let o=await this.client.getAccessToken();o!==null&&(t.headers.authorization=`Bearer ${o}`)}return{...this.defaults,...t}}};var Ie=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}};import*as en from"jose";var _e=class{static parse(t){try{return new _e(t)}catch{return null}}constructor(t){this.value=t,this._decoded=en.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 is=30,qt=class{constructor(){this.authenticateOnce=new Ie(async t=>this._authenticate(t)),this.linkOnce=new Ie(async t=>this._link(t)),this.refreshOnce=new Ie(this._refresh.bind(this)),this.destroyOnce=new Ie(this._destroy.bind(this)),this.forkSessionOnce=new Ie(this._forkSession.bind(this))}get token(){try{let t=q.get(Ye);return typeof t=="string"?new _e(t).value:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get refreshToken(){try{let t=q.get(Ft);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"}hasActiveToken(){let t=_e.parse(this.token);return t!==null&&!t.isExpired(is)}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();return this.storeToken(o),this.storeRefreshToken(r),{user:Pe(n),isNewUser:i}}catch(o){throw console.warn("Error authenticating session"),se(o)}}async _link(t){try{let o=await t.link();return Pe(o)}catch(o){throw console.warn("Error linking account"),se(o)}}async _refresh(){if(!this.api)throw new y("Session has no API instance");if(!this.client)throw new y("Session has no PrivyClient instance");await this.client.getAccessToken({disableAutoRefresh:!0});let t=this.token,o=this.refreshToken;if(!t||!o)return null;try{let r=await this.api.post(Cr(),{refresh_token:o},{headers:{authorization:`Bearer ${t}`}});return this.storeToken(r.data.token),this.storeRefreshToken(r.data.refresh_token),Pe(r.data.user)}catch(r){if(r instanceof Ke&&r.status===400&&r.message==="Invalid auth token")return this.destroyLocalState(),null;throw se(r)}}async _destroy(){var t;try{await((t=this.api)==null?void 0:t.post(br(),{refresh_token:this.refreshToken}))}catch{console.warn("Error destroying session")}this.destroyLocalState()}async _forkSession(){if(!this.api)throw new y("Session has no API instance");let t=this.refreshToken;try{let o=await this.api.post(xr(),{refresh_token:t});return this.storeToken(o.data.token),this.storeRefreshToken(o.data.refresh_token),o.data.new_session_refresh_token}catch(o){throw se(o)}}destroyLocalState(){this.storeToken(null),this.storeRefreshToken(null)}storeToken(t){typeof t=="string"?q.put(Ye,t):q.del(Ye)}storeRefreshToken(t){typeof t=="string"?q.put(Ft,t):q.del(Ft)}};var Do,Lt=class{constructor(t){let o=t.apiURL||Gr,r=t.timeout||Br;this.appId=t.appId,this.connectors=new xt,Do||(Do=new qt),this.session=Do,this.api=new Zt(t.appId,this,{baseURL:o,timeout:r}),this.session.api=this.api,this.session.client=this}authenticate(){if(!this.authFlow)throw new y("No auth flow in progress.");return this.session.authenticate(this.authFlow)}link(){if(!this.authFlow)throw new y("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(Or(),{address:t});return Pe(o.data)}catch(o){throw se(o)}}async unlinkPhone(t){try{let o=await this.api.post(Ur(),{phoneNumber:t});return Pe(o.data)}catch(o){throw se(o)}}async unlinkWallet(t){try{let o=await this.api.post(Nr(),{address:t});return await this.connectors.removeWallet(t),Pe(o.data)}catch(o){throw se(o)}}async unlinkOAuth(t,o){try{let r=await this.api.post(Dr(),{provider:t,subject:o});return Pe(r.data)}catch(r){throw se(r)}}async getAuthenticatedUser(){return this.session.hasRefreshCredentials()?this.session.refresh():null}async getAccessToken(t){var o;return this.session.hasActiveToken()?((o=_e.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 getAppSettings(){try{let t=await this.api.get(`/api/v1/apps/${this.appId}`);return{id:t.data.id,name:t.data.name,verificationKey:t.data.verification_key,logoUrl:t.data.logo_url||void 0,theme:t.data.theme,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,termsAndConditionsUrl:t.data.terms_and_conditions_url,privacyPolicyUrl:t.data.privacy_policy_url,createdAt:new Date(t.data.created_at*1e3),updatedAt:new Date(t.data.updated_at*1e3)}}catch(t){throw se(t)}}async setActiveWallet(t,o){if(!o.linkedAccounts.map(i=>i.type==="wallet"?i.address:null).includes(t))throw new y("Cannot set an unlinked address as active.");if(!await this.connectors.setActiveWallet(t))throw new y("Error setting the active wallet.");return Et(o)}async forkSession(){return await this.session.forkSession()}};import"wicg-inert";import{disableBodyScroll as Ql,clearAllBodyScrollLocks as ec}from"body-scroll-lock";import{useRef as tc}from"react";import{useEffect as oc}from"react";import rc from"react-dom";import vr from"styled-components";import{createContext as ss,useContext as as}from"react";var w=()=>{throw new Error("You need to wrap your application with the <PrivyProvider> initialized with your app id.")};var Fo=ss({isLinking:!1,linkingHint:null,activeStatus:null,getAuthMeta:w,getAuthFlow:w,closePrivyModal:w,initLoginWithWallet:w,loginWithWallet:w,loginWithCode:w,initLoginWithEmail:w,initLoginWithSms:w,resendEmailCode:w,resendSmsCode:w,initLoginWithOAuth:w,loginWithOAuth:w,refreshUser:w,walletProxy:null}),_=()=>as(Fo);import{createContext as cs,useContext as ds,useEffect as Go,useState as on}from"react";import{jsx as ls}from"react/jsx-runtime";function tn(e){return ls("link",{rel:"prefetch",href:e.src})}import{jsx as ps,jsxs as us}from"react/jsx-runtime";var Se="LANDING",rn=cs({ready:!1,app:null,options:{email:!0,sms:!1,wallet:!0,google:!1,twitter:!1,discord:!1,github:!1},currentScreen:Se,lastScreen:Se,navigate:w,navigateBack:w,setModalData:w}),nn=e=>{let t=e.appSettings,o=e.authenticated,r=e.visible,[n,i]=on(e.initialScreen||Se),[s,a]=on(e.initialScreen||Se);Go(()=>{o||i(Se)},[o]),Go(()=>{r||(a(Se),i(Se))},[r]),Go(()=>{e.initialScreen&&n===Se&&(i(e.initialScreen),a(e.initialScreen))},[e.initialScreen]);let d=e.initialScreen&&n===Se?e.initialScreen:n,u={ready:!!(t!=null&&t.id),app:t,options:e.options,data:e.data,setModalData:e.setModalData,currentScreen:d,lastScreen:s,navigate:x=>{a(n),i(x)},navigateBack:()=>{i(s)}};return us(rn.Provider,{value:u,children:[t&&t.logoUrl&&ps(tn,{src:t.logoUrl}),e.children]})},v=()=>ds(rn);import{createContext as hs,useContext as ms}from"react";var Bo=hs({ready:!1,authenticated:!1,user:null,walletConnectors:null,login:w,linkEmail:w,linkPhone:w,linkWallet:w,linkGoogle:w,linkTwitter:w,linkDiscord:w,linkGithub:w,logout:w,getAccessToken:w,getEthereumProvider:w,getEthersProvider:w,getWeb3jsProvider:w,unlinkEmail:w,unlinkPhone:w,unlinkWallet:w,unlinkGoogle:w,unlinkTwitter:w,unlinkDiscord:w,unlinkGithub:w,setActiveWallet:w,forkSession:w,createWallet:w,signMessage:w}),$=()=>ms(Bo);import jo from"styled-components";import Kt,{css as vs}from"styled-components";import Vo from"styled-components";import{Fragment as ys,jsx as Ho,jsxs as ws}from"react/jsx-runtime";var ot=({success:e,fail:t})=>ws(ys,{children:[Ho(At,{className:e?"success":t?"fail":""}),Ho(fs,{className:e?"success":t?"fail":""})]}),At=Vo.span`
12
+ - https://privy.io`;this.proxyProvider=o,this.walletType=t,this.address=r,this.chain=null,this.connected=!1}async fetchAddress(){if(!this.address){let t=await this.proxyProvider.request({method:"eth_accounts"});Array.isArray(t)&&t.length>0&&(this.address=As(t[0]))}return this.address}async fetchChainId(){if(!this.chain){let t=await this.proxyProvider.request({method:"eth_chainId"}),o=Number(t);this.chain=String(o)}return this.chain}async getConnectedWallet(){if(!this.walletType||!await this.isConnected())return null;let o=await this.fetchAddress(),r=await this.fetchChainId();return{address:o,chainId:r,chainType:"ethereum",walletClient:"unknown"}}async setActive(){return!0}async sign(t){return await this.connect({showPrompt:!1}),new Ps(new Ke(this.proxyProvider)).getSigner().signMessage(t)}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.",s=new Date().toISOString();return this.createSiweMessage(t,o,n,i,s,r,a)}};var Ws=e=>{let t=`https://mainnet.infura.io/v3/${Xt}`,o=1;return e.makeWeb3Provider(t,o)},oo,ro=class extends Te{constructor(t,o){super("coinbase_wallet",t,o),oo||(oo=new ks({appName:"Privy",darkMode:!1,headlessMode:!1}))}async connect(t){return this.proxyProvider.setWalletProvider(Ws(oo)),t.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}disconnect(){oo.disconnect()}async isConnected(){return await this.fetchAddress()!==null}get walletMeta(){return{name:"Coinbase Wallet",icon:pe}}async promptConnection(){try{let t="",o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(o.length>0&&(t=Ts(o[0])),!t||t==="")throw new G("Unable to retrieve address");this.connected=!0}catch(t){throw ke(t)}}};import{getAddress as Tn}from"@ethersproject/address";import{Web3Provider as Rs}from"@ethersproject/providers";import{isMobile as Os}from"react-device-detect";import{jsx as te,jsxs as Ms}from"react/jsx-runtime";var z=({style:e,...t})=>Ms("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:[te("rect",{width:"28",height:"28",rx:"6",fill:"white"}),te("path",{d:"M23.0126 5L15.1958 10.7823L16.6533 7.37359L23.0126 5Z",fill:"#E17726",stroke:"#E17726",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),te("path",{d:"M4.98753 5L12.7329 10.8299L11.3468 7.37954L4.98753 5ZM20.1987 18.4027L18.1166 21.5794L22.5723 22.8049L23.8454 18.4741L20.1987 18.4027ZM4.16064 18.4741L5.42775 22.8049L9.87153 21.5794L7.80133 18.4027L4.16064 18.4741Z",fill:"#E27625",stroke:"#E27625",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),te("path",{d:"M9.6336 13.0369L8.39624 14.9049L12.7984 15.1071L12.6556 10.3659L9.6336 13.0429V13.0369ZM18.3665 13.0429L15.2969 10.3064L15.1958 15.1071L19.5979 14.9049L18.3665 13.0429ZM9.87155 21.5794L12.5426 20.2945L10.2463 18.5098L9.87155 21.5794ZM15.4635 20.2886L18.1166 21.5794L17.7597 18.5039L15.4635 20.2886Z",fill:"#E27625",stroke:"#E27625",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),te("path",{d:"M18.1167 21.5794L15.4635 20.2944L15.6776 22.0196L15.6539 22.7513L18.1167 21.5794ZM9.87158 21.5794L12.3463 22.7513L12.3285 22.0196L12.5426 20.2944L9.87158 21.5794Z",fill:"#D5BFB2",stroke:"#D5BFB2",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),te("path",{d:"M12.3878 17.3616L10.1868 16.7191L11.7454 16.0052L12.3938 17.3616H12.3878ZM15.6062 17.3616L16.2605 15.9993L17.8251 16.7131L15.6062 17.3675V17.3616Z",fill:"#233447",stroke:"#233447",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),te("path",{d:"M9.87147 21.5794L10.2581 18.4027L7.80127 18.4741L9.87147 21.5794ZM17.7418 18.4027L18.1166 21.5794L20.1987 18.4741L17.7418 18.4027ZM19.6038 14.9048L15.2016 15.107L15.6061 17.3676L16.2605 15.9994L17.8251 16.7132L19.6038 14.9048ZM10.1868 16.7192L11.7454 16.0053L12.3938 17.3617L12.8042 15.1011L8.4021 14.9048L10.1868 16.7192Z",fill:"#CC6228",stroke:"#CC6228",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),te("path",{d:"M8.4021 14.9048L10.2462 18.5038L10.1868 16.7192L8.4021 14.9048ZM17.8251 16.7192L17.7537 18.5038L19.5978 14.9048L17.8251 16.7192ZM12.8042 15.107L12.3878 17.3676L12.9113 20.0327L13.0303 16.5169L12.8042 15.107ZM15.1957 15.107L14.9815 16.511L15.0886 20.0327L15.6061 17.3617L15.1957 15.1011V15.107Z",fill:"#E27525",stroke:"#E27525",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),te("path",{d:"M15.6062 17.3617L15.0887 20.0327L15.4635 20.2945L17.7538 18.5098L17.8252 16.7192L15.6062 17.3617ZM10.1869 16.7192L10.2463 18.5039L12.5426 20.2885L12.9114 20.0327L12.3939 17.3617L10.1809 16.7192H10.1869Z",fill:"#F5841F",stroke:"#F5841F",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),te("path",{d:"M15.6598 22.7513L15.6776 22.0196L15.4754 21.853H12.5248L12.3285 22.0196L12.3463 22.7513L9.87158 21.5793L10.7401 22.2932L12.495 23.5008H15.4992L17.26 22.2873L18.1167 21.5793L15.6539 22.7513H15.6598Z",fill:"#C0AC9D",stroke:"#C0AC9D",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),te("path",{d:"M15.4634 20.2885L15.0886 20.0327H12.9114L12.5425 20.2945L12.3284 22.0196L12.5247 21.8531H15.4753L15.6776 22.0196L15.4634 20.2945V20.2885Z",fill:"#161616",stroke:"#161616",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),te("path",{d:"M23.3456 11.1571L24 7.97442L23.0125 5L15.4575 10.5919L18.3664 13.0369L22.4711 14.2326L23.3754 13.1797L22.9827 12.8941L23.6074 12.323L23.1315 11.9542L23.7561 11.4783L23.3397 11.1571H23.3456ZM4 7.96847L4.66627 11.1571L4.23795 11.4723L4.87448 11.9482L4.39857 12.323L5.01725 12.8941L4.62463 13.1797L5.52885 14.2326L9.63355 13.0428L12.5425 10.586L4.98751 5L4 7.96847Z",fill:"#763E1A",stroke:"#763E1A",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),te("path",{d:"M22.4712 14.2325L18.3665 13.0428L19.6038 14.9048L17.7597 18.5038L20.1987 18.4741H23.8454L22.4712 14.2325ZM9.63358 13.0368L5.52888 14.2325L4.16064 18.4741H7.80728L10.2463 18.5038L8.40217 14.9048L9.63953 13.0368H9.63358ZM15.1957 15.107L15.4634 10.5859L16.6532 7.37354H11.3468L12.5366 10.5859L12.8043 15.107L12.9054 16.5229V20.0327H15.0887L15.1006 16.5229L15.1957 15.107Z",fill:"#F5841F",stroke:"#F5841F",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"})]});import{isPossiblePhoneNumber as Is}from"libphonenumber-js/min";var En=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,}))$/),Ln=e=>Is(String(e),"US"),_n=e=>{let t=/^#?([a-f\d])([a-f\d])([a-f\d])$/i;e=e.replace(t,function(r,n,i,a){return n+n+i+i+a+a});let o=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(e);return{r:parseInt((o==null?void 0:o[1])||"00",16),g:parseInt((o==null?void 0:o[2])||"00",16),b:parseInt((o==null?void 0:o[3])||"00",16)}},Sn=({r:e,g:t,b:o})=>{e/=255,t/=255,o/=255;let r=Math.max(e,t,o),n=r-Math.min(e,t,o),i=n?r===e?(t-o)/n:r===t?2+(o-e)/n:4+(e-t)/n:0;return{h:Math.round(60*i<0?60*i+360:60*i),s:Math.round(100*(n?r<=.5?n/(2*r-n):n/(2-(2*r-n)):0)),l:Math.round(100*(2*r-n)/2)}},An=(e,t)=>{let o=e.slice(0),r=[];for(;o.length;)r.push(o.splice(0,t));return r},Je=(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}`},Qo=e=>new Promise(t=>setTimeout(t,e)),Pn=(e,t={})=>{let o=t.delayMs||40,r=t.maxAttempts||1e3;return new Promise(async(n,i)=>{let a=!1,s=0;for(;!a&&s<r;)e().then(()=>{a=!0,n()},(...l)=>{a=!0,i(...l)}),s+=1,await Qo(o);a||i(new Error("Exceeded max attempts before resolving function"))})},kn=(...e)=>{let o=e.length-1;return e.map((n,i)=>(i===0&&(n.startsWith("//")||n.endsWith("://"))?n=n.replace(new RegExp("/$"),""):i!==o&&(n=n.replace(new RegExp("/+$"),"")),i!==0&&(n=n.replace(new RegExp("^/+"),"")),n)).join("/")};var no=class extends Te{constructor(t,o){var r;super("metamask",t,o),this.proxyProvider.setWalletProvider(window.ethereum),(r=window.ethereum.providers)==null||r.forEach(async n=>{n.isMetaMask&&this.proxyProvider.setWalletProvider(n)}),this.subscribeListeners()}async connect(t){return t.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}async isConnected(){let t=await this.connectedMetamaskAddress();return this.address===t}async connectedMetamaskAddress(){let o=await new Rs(this.proxyProvider).listAccounts();return o.length===0?null:Tn(o[0])}get walletMeta(){return{name:"MetaMask",icon:z}}disconnect(){console.warn("Metamask does not support programmetic disconnect.")}async promptConnection(){try{let t="";if(!Os&&(await this.proxyProvider.request({method:"wallet_requestPermissions",params:[{eth_accounts:{}}]}),this.address&&await this.isConnected()))throw new G("Selected the wrong wallet in MetaMask");let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(o.length>0&&(t=Tn(o[0])),!t||t==="")throw new G("Unable to retrieve address");this.connected=!0,this.address=t}catch(t){throw ke(t)}}async setActive(){if(await this.connectedMetamaskAddress()===this.address)return this.connected=!0,!0;for(;!this.connected;)await Qo(200);return!0}subscribeListeners(){this.proxyProvider.on("accountsChanged",t=>{var o;if(t.length>0){let r=t[0];this.connected=((o=this.address)==null?void 0:o.toLowerCase())===(r==null?void 0:r.toLowerCase())}}),this.proxyProvider.on("disconnect",()=>{this.connected=!1})}};var Si=ys(_i());import vl from"@walletconnect/web3-provider";import{jsx as ht,jsxs as wl}from"react/jsx-runtime";var Fe=({style:e,...t})=>wl("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:[ht("rect",{width:"28",height:"28",rx:"6",fill:"#141414"}),ht("g",{clipPath:"url(#clip0_1765_9946)",children:ht("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"})}),ht("defs",{children:ht("clipPath",{id:"clip0_1765_9946",children:ht("rect",{width:"20",height:"12.2531",fill:"white",transform:"translate(4 8)"})})})]});var lr=class extends Te{constructor(o,r,n,i){super("wallet_connect",r,n);this.connectionManager=o,this.targetWalletName=i,this.proxyProvider.setWalletProvider(this.connectionManager.getOrCreateProviderForAddress(n,i))}async connect(o){return o.showPrompt&&await this.promptConnection(),this.getConnectedWallet()}async isConnected(){return this.walletProvider.connected}get walletMeta(){var r,n,i;if(this.targetWalletName){let a=Ai[this.targetWalletName];return{name:a.name,icon:a.logo}}let o=((r=this.walletProvider.walletMeta)==null?void 0:r.name)||"WalletConnect";return o==="\u{1F308} Rainbow"&&(o="Rainbow"),{name:o,icon:((i=(n=this.walletProvider.walletMeta)==null?void 0:n.icons)==null?void 0:i[0])||Fe}}async promptConnection(){return new Promise(async(o,r)=>{try{this.walletProvider.connector.on("disconnect",(a,s)=>{if(a){r(ke(a));return}s.params.some(l=>l.message==="Session Rejected")&&(this.proxyProvider.setWalletProvider(this.connectionManager.replaceProvider(this.walletProvider,this.targetWalletName)),r(new lt))});let n="",i=await Promise.race([this.connectionManager.enableProvider(this.walletProvider,this.targetWalletName),Xo()]);if(i.length>0&&(n=i[0]),!n||n==="")throw new G("Unable to retrieve address");this.connected=!0,o()}catch(n){r(ke(n))}})}async sign(o){let r=await this.connectionManager.enableProvider(this.walletProvider,this.targetWalletName);return(await this.walletProvider.getWalletConnector()).signPersonalMessage([o,r==null?void 0:r[0]])}disconnect(){}get walletProvider(){return this.proxyProvider.walletProvider}},po=class{constructor(){this._storageIdToProvider={},this._addressToStorageId={},Y.getKeys().forEach(t=>{if(t.startsWith("walletconnect")){let o=this.createProvider(t,void 0);this.enableProvider(o,void 0)}})}createConnector(t,o,r){return new lr(this,t,o,r)}async disconnect(){Object.values(this._storageIdToProvider).forEach(async t=>{await t.disconnect()})}getOrCreateProviderForAddress(t,o){let r=t?this._addressToStorageId[`${t||""}:${o||""}`]:void 0;r||(r=`${Cn}:${Math.random().toString(36).slice(2)}`);let n=this._storageIdToProvider[r];return n||this.createProvider(r,o)}createProvider(t,o){let r=o?{qrcode:!1}:{},n=new vl({infuraId:Xt,storageId:t,pollingInterval:bn,...r});return o&&n.connector.on("display_uri",(i,a)=>{let s=a.params[0],l=bl(s,Cl(Ai[o],"mobile"));(0,Si.saveMobileLinkInfo)({name:o,href:l}),window.open(l,"_blank","noopener,noreferrer")}),this._storageIdToProvider[t]=n,n}replaceProvider(t,o){t.connected&&t.walletProvider.disconnect();let r=Object.entries(this._storageIdToProvider).find(([n,i])=>i.wc.session.key===t.wc.session.key);return r&&delete this._storageIdToProvider[r[0]],this.getOrCreateProviderForAddress(null,o)}async enableProvider(t,o){let r=await t.enable();this._storageIdToProvider[t.storageId]=t;for(let n of r)this._addressToStorageId[`${n||""}:${o||""}`]=t.storageId;return r}};var Ai={metamask:{name:"MetaMask",mobile:{native:"metamask:",universal:"https://metamask.app.link"},desktop:{native:null,universal:null},logo:z}};function Cl(e,t="mobile"){return{name:e.name||"",universalLink:e[t].universal||"",deepLink:e[t].native||""}}function bl(e,t){let o=encodeURIComponent(e);return t.universalLink?`${t.universalLink}/wc?uri=${o}`:t.deepLink?`${t.deepLink}${t.deepLink.endsWith(":")?"//":"/"}wc?uri=${o}`:""}var cr=()=>{if(!window.ethereum)return!1;if(window.ethereum.isMetaMask)return!0;if(window.ethereum.providers){for(let e of window.ethereum.providers)if(e.isMetaMask)return!0}return!1},ho=()=>{if(!window.ethereum)return!1;if(window.ethereum.isCoinbaseWallet)return!0;if(window.ethereum.providers){for(let e of window.ethereum.providers)if(e.isCoinbaseWallet)return!0}return!1},dr=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===xl(t)).length):!1},Pi=()=>{var t;let e=Y.get(eo);return e?(t=e.find(o=>o.active))==null?void 0:t.address:null},Ot=class{constructor(){this.getEthereumProvider=()=>{var t;return((t=this.activeWalletConnector)==null?void 0:t.proxyProvider)||new we};this.walletConnectors=[],this.wcConnectionManager=new po,this.initialized=!1}initialize(){this.initialized||(this.load(),this.activeWalletConnector&&this.activeWalletConnector.connect({showPrompt:!1}),this.initialized=!0)}initializeLinkedWallets(t){t.linkedAccounts.forEach(()=>null)}load(){(Y.get(eo)||[]).forEach(o=>{let r=this.createWalletConnector(o.walletType,o.address);this.addWalletConnector(r),o.active&&(this.activeWalletConnector=r)})}save(){let t=this.walletConnectors.map(o=>{var r;return{address:o.address,walletType:o.walletType,active:o.address===((r=this.activeWalletConnector)==null?void 0:r.address)}});Y.put(eo,t)}addWalletConnector(t){this.walletConnectors.find(r=>r.address===t.address&&r.walletType===t.walletType)||this.walletConnectors.push(t)}getConnectorByAddress(t){return this.walletConnectors.find(o=>{var r;return((r=o.address)==null?void 0:r.toLowerCase())===t.toLowerCase()})}async removeWallet(t){this.walletConnectors=this.walletConnectors.filter(o=>o.address!==t),this.activeWalletConnector=void 0,this.save()}async activeWalletSign(t){if(!this.activeWalletConnector)throw new G("Cannot sign, no wallet is active. Is a wallet connected?");return this.activeWalletConnector.sign(t)}async setActiveWallet(t){let o=this.walletConnectors.find(r=>r.address===t);if(o){let r=await o.setActive();return this.activeWalletConnector=r?o:void 0,this.save(),!0}return!1}createWalletConnector(t,o){switch(t){case"metamask":return new no(new we,o);case"coinbase_wallet":return new ro(new we,o);case"wallet_connect":return this.wcConnectionManager.createConnector(new we,o);case"metamask_wc":return this.wcConnectionManager.createConnector(new we,o,"metamask")}}};function Be(e){return new Date(e*1e3)}function El(e){let t=[];for(let o of e){let r=o.type;switch(o.type){case"wallet":let n={address:o.address,type:o.type,verifiedAt:Be(o.verified_at),chainType:o.chain_type,walletClient:o.wallet_client};t.push(n);break;case"email":let i={address:o.address,type:o.type,verifiedAt:Be(o.verified_at)};t.push(i);break;case"phone":let a={number:o.phoneNumber,type:o.type,verifiedAt:Be(o.verified_at)};t.push(a);break;case"google_oauth":let s={subject:o.subject,email:o.email,name:o.name,type:o.type,verifiedAt:Be(o.verified_at)};t.push(s);break;case"twitter_oauth":let l={subject:o.subject,username:o.username,name:o.name,type:o.type,verifiedAt:Be(o.verified_at)};t.push(l);break;case"discord_oauth":let c={subject:o.subject,username:o.username,email:o.email,type:o.type,verifiedAt:Be(o.verified_at)};t.push(c);break;case"github_oauth":let y={subject:o.subject,username:o.username,name:o.name,email:o.email,type:o.type,verifiedAt:Be(o.verified_at)};t.push(y);break;default:console.warn(`Unrecognized account type: ${r}. Please consider upgrading the Privy SDK.`)}}return t}function Qe(e,t){return e.sort((o,r)=>r.verifiedAt.getTime()-o.verifiedAt.getTime()),e.find(o=>o.type===t)}function Nt(e){let t=Pi();if(!t&&e.wallet)return delete e.wallet,e;let o=e.linkedAccounts.find(n=>n.type==="wallet"&&n.address===t);if(!o)return e;let r=Object.assign({},e);return r.wallet=o&&{address:o.address,chainType:o.chainType,chainId:o.chainId,walletClient:o.walletClient},r}var We=e=>e==null?void 0:e.linkedAccounts.find(t=>t.type==="wallet"&&t.walletClient==="privy");function Me(e){if(!e)return null;let t=El(e.linked_accounts),o=Qe(t,"wallet"),r=Qe(t,"email"),n=Qe(t,"phone"),i=Qe(t,"google_oauth"),a=Qe(t,"twitter_oauth"),s=Qe(t,"discord_oauth"),l=Qe(t,"github_oauth"),c={id:e.id,createdAt:Be(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:s&&{subject:s.subject,username:s.username,email:s.email},github:l&&{subject:l.subject,username:l.username,name:l.name,email:l.email}};return Nt(c)}import ur from"axios";var mo=class{constructor(t,o,r){this.appId=t,this.sdkVersion=Zo,this.client=o,this.defaults=r}async get(t,o){try{return await ur.get(t,await this.buildConfig({headers:{"Cache-Control":"no-cache"},...o}))}catch(r){throw H(r)}}async post(t,o,r){try{return await ur.post(t,o,await this.buildConfig(r))}catch(n){throw H(n)}}async delete(t,o){try{return await ur.delete(t,await this.buildConfig(o))}catch(r){throw H(r)}}async buildConfig(t){if(t=t||{},t.headers=t.headers||{},t.headers["privy-app-id"]=this.appId,t.headers["privy-client"]=`react-auth:${this.sdkVersion}`,!t.headers.authorization){let o=await this.client.getAccessToken();o!==null&&(t.headers.authorization=`Bearer ${o}`)}return{...this.defaults,...t}}};var Ge=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}};import*as ki from"jose";var Ie=class{static parse(t){try{return new Ie(t)}catch{return null}}constructor(t){this.value=t,this._decoded=ki.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 Ll=30,fo=class{constructor(){this.authenticateOnce=new Ge(async t=>this._authenticate(t)),this.linkOnce=new Ge(async t=>this._link(t)),this.refreshOnce=new Ge(this._refresh.bind(this)),this.destroyOnce=new Ge(this._destroy.bind(this)),this.forkSessionOnce=new Ge(this._forkSession.bind(this))}get token(){try{let t=Y.get(at);return typeof t=="string"?new Ie(t).value:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get refreshToken(){try{let t=Y.get(Qt);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"}hasActiveToken(){let t=Ie.parse(this.token);return t!==null&&!t.isExpired(Ll)}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();return this.storeToken(o),this.storeRefreshToken(r),{user:Me(n),isNewUser:i}}catch(o){throw console.warn("Error authenticating session"),de(o)}}async _link(t){try{let o=await t.link();return Me(o)}catch(o){throw console.warn("Error linking account"),de(o)}}async _refresh(){if(!this.api)throw new C("Session has no API instance");if(!this.client)throw new C("Session has no PrivyClient instance");await this.client.getAccessToken({disableAutoRefresh:!0});let t=this.token,o=this.refreshToken;if(!t||!o)return null;try{let r=await this.api.post(Yr(),{refresh_token:o},{headers:{authorization:`Bearer ${t}`}});return this.storeToken(r.data.token),this.storeRefreshToken(r.data.refresh_token),Me(r.data.user)}catch(r){if(r instanceof nt&&r.status===400&&r.message==="Invalid auth token")return this.destroyLocalState(),null;throw de(r)}}async _destroy(){var t;try{await((t=this.api)==null?void 0:t.post(Xr(),{refresh_token:this.refreshToken}))}catch{console.warn("Error destroying session")}this.destroyLocalState()}async _forkSession(){if(!this.api)throw new C("Session has no API instance");let t=this.refreshToken;try{let o=await this.api.post(Qr(),{refresh_token:t});return this.storeToken(o.data.token),this.storeRefreshToken(o.data.refresh_token),o.data.new_session_refresh_token}catch(o){throw de(o)}}destroyLocalState(){this.storeToken(null),this.storeRefreshToken(null)}storeToken(t){typeof t=="string"?Y.put(at,t):Y.del(at)}storeRefreshToken(t){typeof t=="string"?Y.put(Qt,t):Y.del(Qt)}};var pr,Ut=class{constructor(t){let o=t.apiURL||wn,r=t.timeout||vn;this.appId=t.appId,this.connectors=new Ot,pr||(pr=new fo),this.session=pr,this.api=new mo(t.appId,this,{baseURL:o,timeout:r}),this.session.api=this.api,this.session.client=this}authenticate(){if(!this.authFlow)throw new C("No auth flow in progress.");return this.session.authenticate(this.authFlow)}link(){if(!this.authFlow)throw new C("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(mn(),{address:t});return Me(o.data)}catch(o){throw de(o)}}async unlinkPhone(t){try{let o=await this.api.post(fn(),{phoneNumber:t});return Me(o.data)}catch(o){throw de(o)}}async unlinkWallet(t){try{let o=await this.api.post(hn(),{address:t});return await this.connectors.removeWallet(t),Me(o.data)}catch(o){throw de(o)}}async unlinkOAuth(t,o){try{let r=await this.api.post(gn(),{provider:t,subject:o});return Me(r.data)}catch(r){throw de(r)}}async getAuthenticatedUser(){return this.session.hasRefreshCredentials()?this.session.refresh():null}async getAccessToken(t){var o;return this.session.hasActiveToken()?((o=Ie.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 getAppSettings(){try{let t=await this.api.get(`/api/v1/apps/${this.appId}`);return{id:t.data.id,name:t.data.name,verificationKey:t.data.verification_key,logoUrl:t.data.logo_url||void 0,theme:t.data.theme,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,termsAndConditionsUrl:t.data.terms_and_conditions_url,privacyPolicyUrl:t.data.privacy_policy_url,createdAt:new Date(t.data.created_at*1e3),updatedAt:new Date(t.data.updated_at*1e3)}}catch(t){throw de(t)}}async setActiveWallet(t,o){if(!o.linkedAccounts.map(i=>i.type==="wallet"?i.address:null).includes(t))throw new C("Cannot set an unlinked address as active.");if(!await this.connectors.setActiveWallet(t))throw new C("Error setting the active wallet.");return Nt(o)}async forkSession(){return await this.session.forkSession()}};import"wicg-inert";import{disableBodyScroll as w1,clearAllBodyScrollLocks as v1}from"body-scroll-lock";import{useRef as C1}from"react";import{useEffect as b1}from"react";import x1 from"react-dom";import zr from"styled-components";import{createContext as _l,useContext as Sl}from"react";var x=()=>{throw new Error("You need to wrap your application with the <PrivyProvider> initialized with your app id.")};var hr=_l({isLinking:!1,linkingHint:null,activeStatus:null,getAuthMeta:x,getAuthFlow:x,closePrivyModal:x,initLoginWithWallet:x,loginWithWallet:x,loginWithCode:x,initLoginWithEmail:x,initLoginWithSms:x,resendEmailCode:x,resendSmsCode:x,initLoginWithOAuth:x,loginWithOAuth:x,refreshUser:x,walletProxy:null}),T=()=>Sl(hr);import{createContext as Pl,useContext as kl,useEffect as mr,useState as Wi}from"react";import{jsx as Al}from"react/jsx-runtime";function Ti(e){return Al("link",{rel:"prefetch",href:e.src})}import{jsx as Tl,jsxs as Wl}from"react/jsx-runtime";var Re="LANDING",Mi=Pl({ready:!1,app:null,options:{email:!0,sms:!1,wallet:!0,google:!1,twitter:!1,discord:!1,github:!1},currentScreen:Re,lastScreen:Re,navigate:x,navigateBack:x,setModalData:x}),Ii=e=>{let t=e.appSettings,o=e.authenticated,r=e.visible,[n,i]=Wi(e.initialScreen||Re),[a,s]=Wi(e.initialScreen||Re);mr(()=>{o||i(Re)},[o]),mr(()=>{r||(s(Re),i(Re))},[r]),mr(()=>{e.initialScreen&&n===Re&&(i(e.initialScreen),s(e.initialScreen))},[e.initialScreen]);let l=e.initialScreen&&n===Re?e.initialScreen:n,c={ready:!!(t!=null&&t.id),app:t,options:e.options,data:e.data,setModalData:e.setModalData,currentScreen:l,lastScreen:a,navigate:y=>{s(n),i(y)},navigateBack:()=>{i(a)}};return Wl(Mi.Provider,{value:c,children:[t&&t.logoUrl&&Tl(Ti,{src:t.logoUrl}),e.children]})},E=()=>kl(Mi);import{createContext as Ml,useContext as Il}from"react";var fr=Ml({ready:!1,authenticated:!1,user:null,walletConnectors:null,login:x,linkEmail:x,linkPhone:x,linkWallet:x,linkGoogle:x,linkTwitter:x,linkDiscord:x,linkGithub:x,logout:x,getAccessToken:x,getEthereumProvider:x,getEthersProvider:x,getWeb3jsProvider:x,unlinkEmail:x,unlinkPhone:x,unlinkWallet:x,unlinkGoogle:x,unlinkTwitter:x,unlinkDiscord:x,unlinkGithub:x,setActiveWallet:x,forkSession:x,createWallet:x,signMessage:x}),q=()=>Il(fr);import Cr from"styled-components";import go,{css as Dl}from"styled-components";import yr from"styled-components";import{Fragment as Nl,jsx as gr,jsxs as Ul}from"react/jsx-runtime";var mt=({success:e,fail:t})=>Ul(Nl,{children:[gr(Dt,{className:e?"success":t?"fail":""}),gr(Rl,{className:e?"success":t?"fail":""})]}),Dt=yr.span`
13
13
  && {
14
14
  width: 82px;
15
15
  height: 82px;
@@ -42,13 +42,13 @@ Resources:
42
42
  border-color: var(--fail-light);
43
43
  border-bottom-color: var(--fail-light);
44
44
  }
45
- `,fs=Vo(At)`
45
+ `,Rl=yr(Dt)`
46
46
  && {
47
47
  border-bottom-color: ${e=>e.color??"var(--primary-color)"};
48
48
  animation: none;
49
49
  opacity: 0.5;
50
50
  }
51
- `,rt=e=>Ho(gs,{color:e.color||"var(--disabled-fg)"}),gs=Vo(At)`
51
+ `,ft=e=>gr(Ol,{color:e.color||"var(--disabled-fg)"}),Ol=yr(Dt)`
52
52
  && {
53
53
  height: 0.9rem;
54
54
  width: 0.9rem;
@@ -57,7 +57,7 @@ Resources:
57
57
  /* Override default Loader to match button transitions */
58
58
  transition: border-color 200ms ease;
59
59
  }
60
- `;import{jsx as $o,jsxs as bs}from"react/jsx-runtime";var sn=Kt.button`
60
+ `;import{jsx as wr,jsxs as Bl}from"react/jsx-runtime";var Ri=go.button`
61
61
  display: flex;
62
62
  flex-direction: row;
63
63
  align-items: center;
@@ -78,7 +78,7 @@ Resources:
78
78
  color: var(--disabled-fg);
79
79
  cursor: not-allowed;
80
80
  }
81
- `,de=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>$o(Cs,{disabled:t||o,...n,children:t?bs("span",{children:[$o(rt,{}),r?$o("span",{children:r}):null]}):e}),Cs=Kt(sn)`
81
+ `,me=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>wr(Fl,{disabled:t||o,...n,children:t?Bl("span",{children:[wr(ft,{}),r?wr("span",{children:r}):null]}):e}),Fl=go(Ri)`
82
82
  && {
83
83
  background-color: ${e=>e.warn?"var(--fail-dark)":"var(--primary-color)"};
84
84
  color: var(--light-theme-bg-1);
@@ -109,12 +109,12 @@ Resources:
109
109
  opacity: 1;
110
110
  animation: fadein 200ms ease;
111
111
  }
112
- `,Md=Kt(sn)`
112
+ `,dh=go(Ri)`
113
113
  && {
114
114
  border: 1px solid var(--light-theme-bg-3);
115
115
  color: var(--light-theme-fg-1);
116
116
  }
117
- `,ee=Kt.button`
117
+ `,ne=go.button`
118
118
  && {
119
119
  padding: 12px 16px;
120
120
  font-weight: 500;
@@ -126,7 +126,7 @@ Resources:
126
126
  opacity: ${e=>e.invisible?"0":"1"};
127
127
  transition: opacity 200ms ease, background-color 200ms ease;
128
128
 
129
- ${e=>e.invisible&&vs`
129
+ ${e=>e.invisible&&Dl`
130
130
  pointer-events: none;
131
131
  `}
132
132
 
@@ -137,7 +137,7 @@ Resources:
137
137
  background-color: var(--primary-color-300);
138
138
  }
139
139
  }
140
- `;import xs from"styled-components";var an=xs.span`
140
+ `;import Gl from"styled-components";var Oi=Gl.span`
141
141
  && {
142
142
  width: 82px;
143
143
  height: 82px;
@@ -153,7 +153,7 @@ Resources:
153
153
  border-color: var(--primary-color);
154
154
  border-bottom-color: var(--primary-color);
155
155
  }
156
- `;import Es from"styled-components";import{jsx as ln}from"react/jsx-runtime";var cn=({style:e,...t})=>ln("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:ln("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M10.5 19.5L3 12m0 0l7.5-7.5M3 12h18"})});import{jsx as dn}from"react/jsx-runtime";var pn=({style:e,...t})=>dn("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:dn("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M6 18L18 6M6 6l12 12"})});import{jsx as ke,jsxs as Ss}from"react/jsx-runtime";var Ls=()=>ke("div",{}),As=({backFn:e})=>ke("div",{children:ke(cn,{onClick:e})}),Ps=e=>ke("div",{children:ke("div",{children:ke(pn,{onClick:e.onClose})})});var A=({backFn:e,onClose:t})=>{let{closePrivyModal:o}=_();return Ss(_s,{children:[e?ke(As,{backFn:e}):ke(Ls,{}),ke(Ps,{onClose:t||(()=>o())})]})},_s=Es.div`
156
+ `;import Vl from"styled-components";import{jsx as Ni}from"react/jsx-runtime";var Ui=({style:e,...t})=>Ni("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:Ni("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M10.5 19.5L3 12m0 0l7.5-7.5M3 12h18"})});import{jsx as Di}from"react/jsx-runtime";var Fi=({style:e,...t})=>Di("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:Di("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M6 18L18 6M6 6l12 12"})});import{jsx as Oe,jsxs as ql}from"react/jsx-runtime";var Hl=()=>Oe("div",{}),$l=({backFn:e})=>Oe("div",{children:Oe(Ui,{onClick:e})}),jl=e=>Oe("div",{children:Oe("div",{children:Oe(Fi,{onClick:e.onClose})})});var S=({backFn:e,onClose:t})=>{let{closePrivyModal:o}=T();return ql(zl,{children:[e?Oe($l,{backFn:e}):Oe(Hl,{}),Oe(jl,{onClose:t||(()=>o())})]})},zl=Vl.div`
157
157
  height: 30px;
158
158
  display: flex;
159
159
  align-items: center;
@@ -210,7 +210,7 @@ Resources:
210
210
  @media (max-width: 440px) {
211
211
  height: 30px;
212
212
  }
213
- `;import{jsx as un}from"react/jsx-runtime";var hn=({style:e,...t})=>un("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:un("path",{fillRule:"evenodd",d:"M12 1.5a5.25 5.25 0 00-5.25 5.25v3a3 3 0 00-3 3v6.75a3 3 0 003 3h10.5a3 3 0 003-3v-6.75a3 3 0 00-3-3v-3c0-2.9-2.35-5.25-5.25-5.25zm3.75 8.25v-3a3.75 3.75 0 10-7.5 0v3h7.5z",clipRule:"evenodd"})});import{Fragment as zo,jsx as ve,jsxs as Jt}from"react/jsx-runtime";var mn=()=>{let{navigate:e,app:t}=v(),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 Jt(zo,{children:[ve(A,{}),Jt(ks,{children:[ve(Ws,{children:Jt("div",{children:[ve(an,{}),ve(hn,{style:{width:"38px",height:"38px",strokeWidth:"1",stroke:"var(--primary-color)",fill:"var(--primary-color)"}})]})}),Jt(Ts,{children:[typeof o=="string"?ve("h3",{children:o}):ve(zo,{children:o}),typeof r=="string"?ve("p",{children:r}):ve(zo,{children:r})]}),t!=null&&t.allowlistConfig.errorCtaLink?ve(ee,{as:"a",href:t.allowlistConfig.errorCtaLink,children:n}):ve(ee,{onClick:()=>{e("LANDING")},children:n})]})]})},ks=jo.div`
213
+ `;import{jsx as Bi}from"react/jsx-runtime";var Gi=({style:e,...t})=>Bi("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:Bi("path",{fillRule:"evenodd",d:"M12 1.5a5.25 5.25 0 00-5.25 5.25v3a3 3 0 00-3 3v6.75a3 3 0 003 3h10.5a3 3 0 003-3v-6.75a3 3 0 00-3-3v-3c0-2.9-2.35-5.25-5.25-5.25zm3.75 8.25v-3a3.75 3.75 0 10-7.5 0v3h7.5z",clipRule:"evenodd"})});import{Fragment as vr,jsx as Le,jsxs as yo}from"react/jsx-runtime";var Vi=()=>{let{navigate:e,app:t}=E(),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 yo(vr,{children:[Le(S,{}),yo(Zl,{children:[Le(Jl,{children:yo("div",{children:[Le(Oi,{}),Le(Gi,{style:{width:"38px",height:"38px",strokeWidth:"1",stroke:"var(--primary-color)",fill:"var(--primary-color)"}})]})}),yo(Kl,{children:[typeof o=="string"?Le("h3",{children:o}):Le(vr,{children:o}),typeof r=="string"?Le("p",{children:r}):Le(vr,{children:r})]}),t!=null&&t.allowlistConfig.errorCtaLink?Le(ne,{as:"a",href:t.allowlistConfig.errorCtaLink,children:n}):Le(ne,{onClick:()=>{e("LANDING")},children:n})]})]})},Zl=Cr.div`
214
214
  display: flex;
215
215
  flex-direction: column;
216
216
  align-items: center;
@@ -218,11 +218,11 @@ Resources:
218
218
  margin-left: 27px;
219
219
  margin-right: 27px;
220
220
  gap: 24px;
221
- `,Ts=jo.div`
221
+ `,Kl=Cr.div`
222
222
  display: flex;
223
223
  flex-direction: column;
224
224
  gap: 8px;
225
- `,Ws=jo.div`
225
+ `,Jl=Cr.div`
226
226
  display: flex;
227
227
  flex-direction: column;
228
228
  justify-content: center;
@@ -245,7 +245,7 @@ Resources:
245
245
  left: -19px;
246
246
  top: -19px;
247
247
  }
248
- `;import{useEffect as Ln,useState as Qt}from"react";import{isMobile as Us}from"react-device-detect";import Pt from"styled-components";import fn from"styled-components";var Ne=fn.div`
248
+ `;import{useEffect as Xi,useState as Co}from"react";import{isMobile as oc}from"react-device-detect";import Ft from"styled-components";import Hi from"styled-components";var Ve=Hi.div`
249
249
  display: flex;
250
250
  flex-direction: column;
251
251
  align-items: flex-start;
@@ -253,14 +253,14 @@ Resources:
253
253
  margin-top: auto;
254
254
  gap: 16px;
255
255
  flex-grow: 100;
256
- `,gn=fn.div`
256
+ `,$i=Hi.div`
257
257
  display: flex;
258
258
  flex-direction: column;
259
259
  align-items: center;
260
260
  justify-content: center;
261
261
  height: 100%;
262
262
  width: 100%;
263
- `;import wn from"styled-components";import{jsx as yn}from"react/jsx-runtime";var Yt=({style:e,...t})=>yn("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:yn("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(--primary-color)"})});import{Fragment as Ms,jsx as nt,jsxs as Cn}from"react/jsx-runtime";var Rs=wn.div`
263
+ `;import zi from"styled-components";import{jsx as ji}from"react/jsx-runtime";var wo=({style:e,...t})=>ji("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:ji("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(--primary-color)"})});import{Fragment as Xl,jsx as gt,jsxs as Zi}from"react/jsx-runtime";var Yl=zi.div`
264
264
  margin-top: 16px;
265
265
  font-size: 12px;
266
266
  text-align: left;
@@ -269,7 +269,7 @@ Resources:
269
269
  && > a {
270
270
  color: var(--primary-color);
271
271
  }
272
- `;function vn(e){let{privacyPolicyUrl:t,termsAndConditionsUrl:o}=e.app,r=!!t,n=!!o,i=r&&n;return!r&&!n?null:Cn(Rs,{children:["By logging in I agree to the"," ",n&&nt("a",{href:o,target:"_blank",children:i?"Terms":"Terms of Service"}),i&&" & ",r&&nt("a",{href:t,target:"_blank",children:"Privacy Policy"})]})}var z=({protectedByPrivy:e})=>nt(he,{hideOnMobile:e,children:e?Cn(Ms,{children:[nt(Yt,{}),nt("span",{children:nt("a",{href:"https://www.privy.io/",target:"_blank",children:"Protected by Privy"})})]}):null}),he=wn.div`
272
+ `;function qi(e){let{privacyPolicyUrl:t,termsAndConditionsUrl:o}=e.app,r=!!t,n=!!o,i=r&&n;return!r&&!n?null:Zi(Yl,{children:["By logging in I agree to the"," ",n&&gt("a",{href:o,target:"_blank",children:i?"Terms":"Terms of Service"}),i&&" & ",r&&gt("a",{href:t,target:"_blank",children:"Privacy Policy"})]})}var Z=({protectedByPrivy:e})=>gt(ve,{hideOnMobile:e,children:e?Zi(Xl,{children:[gt(wo,{}),gt("span",{children:gt("a",{href:"https://www.privy.io/",target:"_blank",children:"Protected by Privy"})})]}):null}),ve=zi.div`
273
273
  height: 20px;
274
274
  font-size: 12px;
275
275
  display: flex;
@@ -291,9 +291,9 @@ Resources:
291
291
  @media (max-width: 440px) {
292
292
  display: ${e=>e.hideOnMobile?"none":"inherit"};
293
293
  }
294
- `;import Xt from"styled-components";import{Fragment as Os,jsx as it,jsxs as En}from"react/jsx-runtime";var te=({title:e,description:t,children:o,...r})=>it(xn,{...r,children:En(Os,{children:[it("h3",{children:e}),typeof t=="string"?it("p",{children:t}):t,o]})}),bn=Xt(te)`
294
+ `;import vo from"styled-components";import{Fragment as tc,jsx as yt,jsxs as Yi}from"react/jsx-runtime";var ie=({title:e,description:t,children:o,...r})=>yt(Ji,{...r,children:Yi(tc,{children:[yt("h3",{children:e}),typeof t=="string"?yt("p",{children:t}):t,o]})}),Ki=vo(ie)`
295
295
  margin-bottom: 24px;
296
- `,st=({title:e,description:t,icon:o,children:r,...n})=>En(Is,{...n,children:[o?it(Ns,{children:o}):null,it("h3",{children:e}),typeof t=="string"?it("p",{children:t}):null,r]}),xn=Xt.div`
296
+ `,wt=({title:e,description:t,icon:o,children:r,...n})=>Yi(Ql,{...n,children:[o?yt(ec,{children:o}):null,yt("h3",{children:e}),typeof t=="string"?yt("p",{children:t}):null,r]}),Ji=vo.div`
297
297
  display: flex;
298
298
  flex-direction: column;
299
299
  justify-content: flex-start;
@@ -312,7 +312,7 @@ Resources:
312
312
  color: var(--light-theme-fg-2);
313
313
  font-size: 14px;
314
314
  }
315
- `,Is=Xt(xn)`
315
+ `,Ql=vo(Ji)`
316
316
  align-items: center;
317
317
  text-align: center;
318
318
  gap: 16px;
@@ -320,21 +320,21 @@ Resources:
320
320
  h3 {
321
321
  margin-bottom: 24px;
322
322
  }
323
- `,Ns=Xt.div`
323
+ `,ec=vo.div`
324
324
  padding: 14px;
325
325
  border-radius: 50%;
326
326
  && {
327
327
  border-color: var(--light-theme-bg-3);
328
328
  border-width: 1px;
329
329
  }
330
- `;import{Fragment as Zo,jsx as oe,jsxs as ze}from"react/jsx-runtime";var qo=6,An=new Array(qo).fill(""),Ds=1400;var Pn=()=>{var D,J,ge;let{app:e,data:t,navigate:o,setModalData:r}=v(),{closePrivyModal:n,resendEmailCode:i,resendSmsCode:s,getAuthMeta:a,loginWithCode:d}=_(),{authenticated:u,user:x}=$(),[E,m]=Qt(An),[g,f]=Qt(!1),[c,b]=Qt(null),[I,k]=Qt(null),T=(D=a())!=null&&D.email?0:1;Ln(()=>{var W;if(!(u&&g&&x))return;if(((W=t==null?void 0:t.login)==null?void 0:W.promptCreatePrivyWalletFlow)&&!x.wallet){let Y=setTimeout(()=>{r({createWallet:{onSuccess:()=>{},onFailure:ye=>console.error(ye),callAuthOnSuccessOnClose:!0}}),o("EMBEDDED_WALLET_SCREEN")},ae-500);return()=>clearTimeout(Y)}else{let Y=setTimeout(n,ae);return()=>clearTimeout(Y)}},[u,g,x]),Ln(()=>{if(c&&I===0){let O=setTimeout(()=>{m(An),b(null);let U=document.querySelector("input[name=code-0]");U==null||U.focus()},Ds);return()=>clearTimeout(O)}},[c]);let S=O=>{var Ut;let U=O.currentTarget.value.replace(" ","");if(U==="")return;if(isNaN(Number(U))){b("Code should be numeric"),k(1);return}b(null),k(null);let W=Number((Ut=O.currentTarget.name)==null?void 0:Ut.charAt(5)),Y=[...U||[""]].slice(0,qo-W),ye=[...E.slice(0,W),...Y,...E.slice(W+Y.length)];m(ye);let P=Y.length,Fe=Math.min(Math.max(W+P,0),qo-1);if(!isNaN(Number(O.currentTarget.value))){let pe=document.querySelector(`input[name=code-${Fe}]`);pe==null||pe.focus()}if(ye.every(pe=>pe&&!isNaN(+pe))){let pe=document.querySelector(`input[name=code-${Fe}]`);pe==null||pe.blur(),d(ye.join("")).then(()=>f(!0)).catch(xe=>{(xe==null?void 0:xe.status)===422?b("Invalid or expired verification code"):b("Issue verifying code"),k(0)})}O.preventDefault()},N=O=>{I===1&&(b(null),k(null));let U=[...E.slice(0,O),"",...E.slice(O+1)];if(m(U),O>0){let W=document.querySelector(`input[name=code-${O-1}]`);W==null||W.focus()}},V=`Verify your ${T==0?"email":"phone"}`,Z=T==0?ze("p",{children:["Please check ",oe(Vs,{children:(J=a())==null?void 0:J.email})," for an email from privy.io and enter your code below."]}):`Please check ${(ge=a())==null?void 0:ge.phoneNumber} for a message from ${(e==null?void 0:e.name)||"privy.io"} and enter your code below.`;return ze(Zo,{children:[oe(A,{},"header"),ze(Fs,{children:[oe(te,{title:V,description:Z}),ze(gn,{children:[ze(Gs,{children:[oe(Bs,{fail:!!c,success:g,children:oe("span",{children:c||(g?"Success!":"")})}),oe("div",{children:E.map((O,U)=>oe("input",{name:`code-${U}`,type:"text",value:E[U],onChange:S,onKeyUp:W=>{W.key==="Backspace"&&N(U)},inputMode:"numeric",autoFocus:U===0,pattern:"[0-9]",className:`${g?"success":""} ${c?"fail":""}`,autoComplete:Us?"one-time-code":"off"},U))})]}),oe(Hs,{children:T==0?ze(Zo,{children:[oe("span",{children:"Didn't get an email?"}),oe("button",{onClick:i,children:"Resend Code"})]}):ze(Zo,{children:[oe("span",{children:"Didn't get a message?"}),oe("button",{onClick:s,children:"Resend Code"})]})})]})]}),oe(z,{protectedByPrivy:!0})]})},Fs=Pt.div`
330
+ `;import{Fragment as br,jsx as ae,jsxs as et}from"react/jsx-runtime";var xr=6,Qi=new Array(xr).fill(""),rc=1400;var ea=()=>{var B,Q,be;let{app:e,data:t,navigate:o,setModalData:r}=E(),{closePrivyModal:n,resendEmailCode:i,resendSmsCode:a,getAuthMeta:s,loginWithCode:l}=T(),{authenticated:c,user:y}=q(),[w,d]=Co(Qi),[h,f]=Co(!1),[u,m]=Co(null),[A,P]=Co(null),M=(B=s())!=null&&B.email?0:1;Xi(()=>{var R;if(!(c&&h&&y))return;if(((R=t==null?void 0:t.login)==null?void 0:R.promptCreatePrivyWalletFlow)&&!y.wallet){let ee=setTimeout(()=>{r({createWallet:{onSuccess:()=>{},onFailure:xe=>console.error(xe),callAuthOnSuccessOnClose:!0}}),o("EMBEDDED_WALLET_SCREEN")},ue-500);return()=>clearTimeout(ee)}else{let ee=setTimeout(n,ue);return()=>clearTimeout(ee)}},[c,h,y]),Xi(()=>{if(u&&A===0){let D=setTimeout(()=>{d(Qi),m(null);let F=document.querySelector("input[name=code-0]");F==null||F.focus()},rc);return()=>clearTimeout(D)}},[u]);let W=D=>{var Jt;let F=D.currentTarget.value.replace(" ","");if(F==="")return;if(isNaN(Number(F))){m("Code should be numeric"),P(1);return}m(null),P(null);let R=Number((Jt=D.currentTarget.name)==null?void 0:Jt.charAt(5)),ee=[...F||[""]].slice(0,xr-R),xe=[...w.slice(0,R),...ee,...w.slice(R+ee.length)];d(xe);let k=ee.length,ze=Math.min(Math.max(R+k,0),xr-1);if(!isNaN(Number(D.currentTarget.value))){let ge=document.querySelector(`input[name=code-${ze}]`);ge==null||ge.focus()}if(xe.every(ge=>ge&&!isNaN(+ge))){let ge=document.querySelector(`input[name=code-${ze}]`);ge==null||ge.blur(),l(xe.join("")).then(()=>f(!0)).catch(Ae=>{(Ae==null?void 0:Ae.status)===422?m("Invalid or expired verification code"):m("Issue verifying code"),P(0)})}D.preventDefault()},U=D=>{A===1&&(m(null),P(null));let F=[...w.slice(0,D),"",...w.slice(D+1)];if(d(F),D>0){let R=document.querySelector(`input[name=code-${D-1}]`);R==null||R.focus()}},j=`Verify your ${M==0?"email":"phone"}`,J=M==0?et("p",{children:["Please check ",ae(lc,{children:(Q=s())==null?void 0:Q.email})," for an email from privy.io and enter your code below."]}):`Please check ${(be=s())==null?void 0:be.phoneNumber} for a message from ${(e==null?void 0:e.name)||"privy.io"} and enter your code below.`;return et(br,{children:[ae(S,{},"header"),et(nc,{children:[ae(ie,{title:j,description:J}),et($i,{children:[et(ic,{children:[ae(ac,{fail:!!u,success:h,children:ae("span",{children:u||(h?"Success!":"")})}),ae("div",{children:w.map((D,F)=>ae("input",{name:`code-${F}`,type:"text",value:w[F],onChange:W,onKeyUp:R=>{R.key==="Backspace"&&U(F)},inputMode:"numeric",autoFocus:F===0,pattern:"[0-9]",className:`${h?"success":""} ${u?"fail":""}`,autoComplete:oc?"one-time-code":"off"},F))})]}),ae(sc,{children:M==0?et(br,{children:[ae("span",{children:"Didn't get an email?"}),ae("button",{onClick:i,children:"Resend Code"})]}):et(br,{children:[ae("span",{children:"Didn't get a message?"}),ae("button",{onClick:a,children:"Resend Code"})]})})]})]}),ae(Z,{protectedByPrivy:!0})]})},nc=Ft.div`
331
331
  display: flex;
332
332
  flex-direction: column;
333
333
  align-items: flex-start;
334
334
  justify-content: flex-end;
335
335
  margin: auto;
336
336
  gap: 16px;
337
- `,Gs=Pt.div`
337
+ `,ic=Ft.div`
338
338
  display: flex;
339
339
  flex-direction: column;
340
340
  width: 100%;
@@ -343,7 +343,7 @@ Resources:
343
343
  // center just this element.
344
344
  margin-top: 70px;
345
345
 
346
- ${at}[data-height='medium'] & {
346
+ ${vt}[data-height='medium'] & {
347
347
  /* Aligns this with the input field on the page before on shorter modals */
348
348
  margin-top: 22px;
349
349
  }
@@ -402,7 +402,7 @@ Resources:
402
402
  transform: translate(1px, 0px);
403
403
  }
404
404
  }
405
- `,Bs=Pt.div`
405
+ `,ac=Ft.div`
406
406
  line-height: 20px;
407
407
  height: 20px;
408
408
  font-size: 13px;
@@ -410,7 +410,7 @@ Resources:
410
410
  display: flex;
411
411
  justify-content: flex-end;
412
412
  width: 100%;
413
- `,Hs=Pt.div`
413
+ `,sc=Ft.div`
414
414
  font-size: 13px;
415
415
  color: var(--light-theme-fg-3);
416
416
  display: flex;
@@ -424,9 +424,9 @@ Resources:
424
424
  > button {
425
425
  text-decoration: underline;
426
426
  }
427
- `,Vs=Pt.span`
427
+ `,lc=Ft.span`
428
428
  word-break: break-all;
429
- `;import{useEffect as _n,useState as _t}from"react";import{isMobile as $s}from"react-device-detect";import Jo from"styled-components";import{Fragment as Ks,jsx as me,jsxs as eo}from"react/jsx-runtime";var Ko=2,Sn={metamask:{name:"MetaMask",component:ce},coinbase_wallet:{name:"Coinbase Wallet",component:le},wallet_connect:{name:"WalletConnect",component:Re}},zs=e=>(e==null?void 0:e.status)===422?Be.ERROR_USER_EXISTS:e instanceof et&&!e.details.default?e.details:e instanceof Xe?Be.ERROR_TIMED_OUT:e instanceof Qe?Be.ERROR_USER_REJECTED_CONNECTION:Be.ERROR_WALLET_CONNECTION,kn=()=>{var O,U,W,Y,ye;let[e,t]=_t(!1),[o,r]=_t(!1),[n,i]=_t(void 0),{navigate:s,navigateBack:a}=v(),{getAuthFlow:d,closePrivyModal:u,loginWithWallet:x}=_(),{walletConnectors:E}=$(),[m,g]=_t(0),{user:f}=$(),[c]=_t((f==null?void 0:f.linkedAccounts.length)||0),b=d(),I=(b==null?void 0:b.meta.walletType)==="wallet_connect"&&$s;_n(()=>{if(!b)return;async function P(){if(!!b)try{await b.promptConnect(),t(!0)}catch(Fe){k(Fe)}}e?I||T():P()},[m,e]),_n(()=>{if(o){let P=setTimeout(u,ae);return()=>clearTimeout(P)}},[f]);let k=P=>{if(P instanceof ue?console.error(P.cause?P.cause:P.message):console.error(P),(P==null?void 0:P.status)===401&&(P==null?void 0:P.message)==="User is not allowed to login to this app."){s("ALLOWLIST_REJECTION_SCREEN");return}i(zs(P))};async function T(){try{await x(),t(!0),r(!0)}catch(P){k(P)}}let S=(b==null?void 0:b.meta.walletType)||"metamask",N=((U=(O=b==null?void 0:b.meta)==null?void 0:O.walletMeta)==null?void 0:U.name)||Sn[S].name,V=((Y=(W=b==null?void 0:b.meta)==null?void 0:W.walletMeta)==null?void 0:Y.icon)||Sn[S].component,Z=o?`Successfully connected with ${N}`:n?n.message:e?"Sign to verify":`Waiting for ${N}`,D="Don\u2019t see your wallet modal? Check your other browser windows.";if(o){let P=(f==null?void 0:f.linkedAccounts.length)||0;c===P?D="Wallet was already linked.":D="You\u2019re good to go!"}else m>=Ko&&n?D="Unable to connect wallet":n?D=n.detail:e&&I?D="Sign the message in your wallet to verify it belongs to you.":S==="metamask"?D="For the best experience, connect only one wallet at a time.":S==="wallet_connect"?D="Open your mobile wallet app to continue":S==="coinbase_wallet"&&(jt()||(Oo(f)?D="Continue with the Coinbase app. Not the right wallet? Reset your connection below.":D="Open the Coinbase app on your phone to continue."));let J=(ye=E==null?void 0:E.walletConnectors)==null?void 0:ye.find(P=>P.walletType==="coinbase_wallet"),ge=S==="coinbase_wallet"&&(Oo(f)||n===Be.ERROR_USER_EXISTS);return eo(Ks,{children:[me(A,{backFn:a}),eo(js,{children:[me(qs,{children:eo("div",{children:[me(ot,{success:o,fail:!!n}),typeof V=="string"?me("span",{style:{background:`url('${V}')`,height:"38px",width:"38px",borderRadius:"6px",margin:"auto",backgroundSize:"cover"}}):me(V,{style:{width:"38px",height:"38px"}})]})}),eo(Zs,{children:[me("h3",{children:Z}),me("p",{children:D})]}),ge?me(ee,{onClick:()=>J&&(J==null?void 0:J.disconnect()),invisible:o,disabled:o,children:"Use a different wallet"}):n==Be.ERROR_USER_EXISTS?me(ee,{onClick:a,children:"Use a different wallet"}):e&&!o&&I?me(ee,{onClick:T,children:"Sign with your wallet"}):me(ee,{onClick:()=>{g(m+1),i(void 0)},invisible:o||!(n!=null&&n.retryable)||m>=Ko,disabled:!o&&(!(n!=null&&n.retryable)||m>=Ko),children:"Retry"})]})]})},js=Jo.div`
429
+ `;import{useEffect as ta,useState as Bt}from"react";import{isMobile as cc}from"react-device-detect";import Lr from"styled-components";import{Fragment as mc,jsx as Ce,jsxs as bo}from"react/jsx-runtime";var Er=2,oa={metamask:{name:"MetaMask",component:z},metamask_wc:{name:"MetaMask",component:z},coinbase_wallet:{name:"Coinbase Wallet",component:pe},wallet_connect:{name:"WalletConnect",component:Fe}},dc=e=>(e==null?void 0:e.status)===422?Ze.ERROR_USER_EXISTS:e instanceof ct&&!e.details.default?e.details:e instanceof st?Ze.ERROR_TIMED_OUT:e instanceof lt?Ze.ERROR_USER_REJECTED_CONNECTION:Ze.ERROR_WALLET_CONNECTION,ra=()=>{var D,F,R,ee,xe;let[e,t]=Bt(!1),[o,r]=Bt(!1),[n,i]=Bt(void 0),{navigate:a,navigateBack:s}=E(),{getAuthFlow:l,closePrivyModal:c,loginWithWallet:y}=T(),{walletConnectors:w}=q(),[d,h]=Bt(0),{user:f}=q(),[u]=Bt((f==null?void 0:f.linkedAccounts.length)||0),m=l(),A=cc&&((m==null?void 0:m.meta.walletType)==="wallet_connect"||(m==null?void 0:m.meta.walletType)==="metamask_wc");ta(()=>{if(!m)return;async function k(){if(!!m)try{await m.promptConnect(),t(!0)}catch(ze){P(ze)}}e?A||M():k()},[d,e]),ta(()=>{if(o){let k=setTimeout(c,ue);return()=>clearTimeout(k)}},[f]);let P=k=>{if(k instanceof ye?console.error(k.cause?k.cause:k.message):console.error(k),(k==null?void 0:k.status)===401&&(k==null?void 0:k.message)==="User is not allowed to login to this app."){a("ALLOWLIST_REJECTION_SCREEN");return}i(dc(k))};async function M(){try{await y(),t(!0),r(!0)}catch(k){P(k)}}let W=(m==null?void 0:m.meta.walletType)||"metamask",U=((F=(D=m==null?void 0:m.meta)==null?void 0:D.walletMeta)==null?void 0:F.name)||oa[W].name,j=((ee=(R=m==null?void 0:m.meta)==null?void 0:R.walletMeta)==null?void 0:ee.icon)||oa[W].component,J=o?`Successfully connected with ${U}`:n?n.message:e?"Sign to verify":`Waiting for ${U}`,B="Don\u2019t see your wallet modal? Check your other browser windows.";if(o){let k=(f==null?void 0:f.linkedAccounts.length)||0;u===k?B="Wallet was already linked.":B="You\u2019re good to go!"}else d>=Er&&n?B="Unable to connect wallet":n?B=n.detail:e&&A?B="Sign the message in your wallet to verify it belongs to you.":W==="metamask"?B="For the best experience, connect only one wallet at a time.":W==="wallet_connect"?B="Open your mobile wallet app to continue":W==="coinbase_wallet"&&(ho()||(dr(f)?B="Continue with the Coinbase app. Not the right wallet? Reset your connection below.":B="Open the Coinbase app on your phone to continue."));let Q=(xe=w==null?void 0:w.walletConnectors)==null?void 0:xe.find(k=>k.walletType==="coinbase_wallet"),be=W==="coinbase_wallet"&&(dr(f)||n===Ze.ERROR_USER_EXISTS);return bo(mc,{children:[Ce(S,{backFn:s}),bo(uc,{children:[Ce(hc,{children:bo("div",{children:[Ce(mt,{success:o,fail:!!n}),typeof j=="string"?Ce("span",{style:{background:`url('${j}')`,height:"38px",width:"38px",borderRadius:"6px",margin:"auto",backgroundSize:"cover"}}):Ce(j,{style:{width:"38px",height:"38px"}})]})}),bo(pc,{children:[Ce("h3",{children:J}),Ce("p",{children:B})]}),be?Ce(ne,{onClick:()=>Q&&(Q==null?void 0:Q.disconnect()),invisible:o,disabled:o,children:"Use a different wallet"}):n==Ze.ERROR_USER_EXISTS?Ce(ne,{onClick:s,children:"Use a different wallet"}):e&&!o&&A?Ce(ne,{onClick:M,children:"Sign with your wallet"}):Ce(ne,{onClick:()=>{h(d+1),i(void 0)},invisible:o||!(n!=null&&n.retryable)||d>=Er,disabled:!o&&(!(n!=null&&n.retryable)||d>=Er),children:"Retry"})]})]})},uc=Lr.div`
430
430
  display: flex;
431
431
  flex-direction: column;
432
432
  align-items: center;
@@ -434,14 +434,14 @@ Resources:
434
434
  margin-left: 27px;
435
435
  margin-right: 27px;
436
436
  gap: 24px;
437
- `,Zs=Jo.div`
437
+ `,pc=Lr.div`
438
438
  display: flex;
439
439
  flex-direction: column;
440
440
  gap: 8px;
441
441
  /* Very specifically chosen to be the height if 2 lines h3 and 1 line p.
442
442
  If we then switch to 1 line h3 and 2 lines p, we don't resize. */
443
443
  min-height: 76px;
444
- `,qs=Jo.div`
444
+ `,hc=Lr.div`
445
445
  display: flex;
446
446
  flex-direction: column;
447
447
  justify-content: center;
@@ -464,7 +464,7 @@ Resources:
464
464
  left: -19px;
465
465
  top: -19px;
466
466
  }
467
- `;import dt from"styled-components";import{useState as Js}from"react";import Ys from"styled-components";import{jsx as Tn}from"react/jsx-runtime";var lt=({style:e,color:t,...o})=>Tn("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:t||"currentColor",style:{height:"1.5rem",width:"1.5rem",...e},...o,children:Tn("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M4.5 12.75l6 6 9-13.5"})});import{jsx as Yo}from"react/jsx-runtime";var Wn=({color:e,...t})=>Yo("svg",{version:"1.1",id:"Layer_1",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",x:"0px",y:"0px",viewBox:"0 0 115.77 122.88",xmlSpace:"preserve",...t,children:Yo("g",{children:Yo("path",{fill:e||"currentColor",className:"st0",d:"M89.62,13.96v7.73h12.19h0.01v0.02c3.85,0.01,7.34,1.57,9.86,4.1c2.5,2.51,4.06,5.98,4.07,9.82h0.02v0.02 v73.27v0.01h-0.02c-0.01,3.84-1.57,7.33-4.1,9.86c-2.51,2.5-5.98,4.06-9.82,4.07v0.02h-0.02h-61.7H40.1v-0.02 c-3.84-0.01-7.34-1.57-9.86-4.1c-2.5-2.51-4.06-5.98-4.07-9.82h-0.02v-0.02V92.51H13.96h-0.01v-0.02c-3.84-0.01-7.34-1.57-9.86-4.1 c-2.5-2.51-4.06-5.98-4.07-9.82H0v-0.02V13.96v-0.01h0.02c0.01-3.85,1.58-7.34,4.1-9.86c2.51-2.5,5.98-4.06,9.82-4.07V0h0.02h61.7 h0.01v0.02c3.85,0.01,7.34,1.57,9.86,4.1c2.5,2.51,4.06,5.98,4.07,9.82h0.02V13.96L89.62,13.96z M79.04,21.69v-7.73v-0.02h0.02 c0-0.91-0.39-1.75-1.01-2.37c-0.61-0.61-1.46-1-2.37-1v0.02h-0.01h-61.7h-0.02v-0.02c-0.91,0-1.75,0.39-2.37,1.01 c-0.61,0.61-1,1.46-1,2.37h0.02v0.01v64.59v0.02h-0.02c0,0.91,0.39,1.75,1.01,2.37c0.61,0.61,1.46,1,2.37,1v-0.02h0.01h12.19V35.65 v-0.01h0.02c0.01-3.85,1.58-7.34,4.1-9.86c2.51-2.5,5.98-4.06,9.82-4.07v-0.02h0.02H79.04L79.04,21.69z M105.18,108.92V35.65v-0.02 h0.02c0-0.91-0.39-1.75-1.01-2.37c-0.61-0.61-1.46-1-2.37-1v0.02h-0.01h-61.7h-0.02v-0.02c-0.91,0-1.75,0.39-2.37,1.01 c-0.61,0.61-1,1.46-1,2.37h0.02v0.01v73.27v0.02h-0.02c0,0.91,0.39,1.75,1.01,2.37c0.61,0.61,1.46,1,2.37,1v-0.02h0.01h61.7h0.02 v0.02c0.91,0,1.75-0.39,2.37-1.01c0.61-0.61,1-1.46,1-2.37h-0.02V108.92L105.18,108.92z"})})});import{jsx as Rn,jsxs as Qs}from"react/jsx-runtime";var to=e=>{let[t,o]=Js(!1);return Qs(Xs,{onClick:()=>{o(!0),navigator.clipboard.writeText(e.text),setTimeout(()=>o(!1),1500)},justCopied:t,children:[t?Rn(lt,{style:{height:"14px",width:"14px"},strokeWidth:"2"}):Rn(Wn,{style:{height:"14px",width:"14px"}}),t?"Copied":"Copy"," ",e.itemName?e.itemName:"to Clipboard"]})},Xs=Ys.button`
467
+ `;import xt from"styled-components";import{useState as fc}from"react";import gc from"styled-components";import{jsx as na}from"react/jsx-runtime";var Ct=({style:e,color:t,...o})=>na("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:t||"currentColor",style:{height:"1.5rem",width:"1.5rem",...e},...o,children:na("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M4.5 12.75l6 6 9-13.5"})});import{jsx as _r}from"react/jsx-runtime";var ia=({color:e,...t})=>_r("svg",{version:"1.1",id:"Layer_1",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",x:"0px",y:"0px",viewBox:"0 0 115.77 122.88",xmlSpace:"preserve",...t,children:_r("g",{children:_r("path",{fill:e||"currentColor",className:"st0",d:"M89.62,13.96v7.73h12.19h0.01v0.02c3.85,0.01,7.34,1.57,9.86,4.1c2.5,2.51,4.06,5.98,4.07,9.82h0.02v0.02 v73.27v0.01h-0.02c-0.01,3.84-1.57,7.33-4.1,9.86c-2.51,2.5-5.98,4.06-9.82,4.07v0.02h-0.02h-61.7H40.1v-0.02 c-3.84-0.01-7.34-1.57-9.86-4.1c-2.5-2.51-4.06-5.98-4.07-9.82h-0.02v-0.02V92.51H13.96h-0.01v-0.02c-3.84-0.01-7.34-1.57-9.86-4.1 c-2.5-2.51-4.06-5.98-4.07-9.82H0v-0.02V13.96v-0.01h0.02c0.01-3.85,1.58-7.34,4.1-9.86c2.51-2.5,5.98-4.06,9.82-4.07V0h0.02h61.7 h0.01v0.02c3.85,0.01,7.34,1.57,9.86,4.1c2.5,2.51,4.06,5.98,4.07,9.82h0.02V13.96L89.62,13.96z M79.04,21.69v-7.73v-0.02h0.02 c0-0.91-0.39-1.75-1.01-2.37c-0.61-0.61-1.46-1-2.37-1v0.02h-0.01h-61.7h-0.02v-0.02c-0.91,0-1.75,0.39-2.37,1.01 c-0.61,0.61-1,1.46-1,2.37h0.02v0.01v64.59v0.02h-0.02c0,0.91,0.39,1.75,1.01,2.37c0.61,0.61,1.46,1,2.37,1v-0.02h0.01h12.19V35.65 v-0.01h0.02c0.01-3.85,1.58-7.34,4.1-9.86c2.51-2.5,5.98-4.06,9.82-4.07v-0.02h0.02H79.04L79.04,21.69z M105.18,108.92V35.65v-0.02 h0.02c0-0.91-0.39-1.75-1.01-2.37c-0.61-0.61-1.46-1-2.37-1v0.02h-0.01h-61.7h-0.02v-0.02c-0.91,0-1.75,0.39-2.37,1.01 c-0.61,0.61-1,1.46-1,2.37h0.02v0.01v73.27v0.02h-0.02c0,0.91,0.39,1.75,1.01,2.37c0.61,0.61,1.46,1,2.37,1v-0.02h0.01h61.7h0.02 v0.02c0.91,0,1.75-0.39,2.37-1.01c0.61-0.61,1-1.46,1-2.37h-0.02V108.92L105.18,108.92z"})})});import{jsx as aa,jsxs as wc}from"react/jsx-runtime";var xo=e=>{let[t,o]=fc(!1);return wc(yc,{onClick:()=>{o(!0),navigator.clipboard.writeText(e.text),setTimeout(()=>o(!1),1500)},justCopied:t,children:[t?aa(Ct,{style:{height:"14px",width:"14px"},strokeWidth:"2"}):aa(ia,{style:{height:"14px",width:"14px"}}),t?"Copied":"Copy"," ",e.itemName?e.itemName:"to Clipboard"]})},yc=gc.button`
468
468
  display: flex;
469
469
  align-items: center;
470
470
  gap: 6px;
@@ -502,7 +502,7 @@ Resources:
502
502
  width: 14px;
503
503
  height: 14px;
504
504
  }
505
- `;import{jsx as h,jsxs as H}from"react/jsx-runtime";var Mn=()=>H("svg",{width:"332",height:"128",viewBox:"0 0 332 128",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[H("g",{clipPath:"url(#clip0_39_1593)",children:[h("g",{clipPath:"url(#clip1_39_1593)",children:H("g",{filter:"url(#filter0_b_39_1593)",children:[H("linearGradient",{id:"background-gradient",children:[h("stop",{offset:"0%",stopColor:"#fed8f4",children:h("animate",{attributeName:"stop-color",values:"#fed8f4; #ffe5d0; #fed8f4;",dur:"4.97s",repeatCount:"indefinite"})}),h("stop",{offset:"33%",stopColor:"#ffe5d0",children:h("animate",{attributeName:"stop-color",values:"#ffe5d0; #ffcdf3; #ffe5d0;",dur:"5.11s",repeatCount:"indefinite"})}),h("stop",{offset:"67%",stopColor:"#ffcdf3",children:h("animate",{attributeName:"stop-color",values:"#ffcdf3; #d0fcf5; #ffcdf3;",dur:"4.95s",repeatCount:"indefinite"})}),h("stop",{offset:"100%",stopColor:"#d0fcf5",children:h("animate",{attributeName:"stop-color",values:"#d0fcf5; #fed8f4; #d0fcf5;",dur:"5.03s",repeatCount:"indefinite"})})]}),h("rect",{width:301,height:112,transform:"translate(16 16)",fill:"url(#background-gradient)"})]})}),h("path",{d:"M183.83 53.8229L203.497 101.003C203.617 101.287 203.707 101.571 203.781 101.87C203.856 102.169 203.901 102.483 203.916 102.797C203.931 103.111 203.916 103.44 203.886 103.769C203.856 104.098 203.781 104.426 203.692 104.755C203.453 105.592 203.034 106.34 202.511 106.983C201.988 107.626 201.315 108.179 200.583 108.582C199.851 108.986 199.044 109.255 198.207 109.375C197.37 109.494 196.533 109.434 195.711 109.195C195.427 109.121 195.158 109.016 194.904 108.896C194.65 108.777 194.411 108.642 194.172 108.493C193.933 108.343 193.723 108.179 193.529 107.999C193.335 107.82 193.141 107.641 192.976 107.431L159.963 68.3985C160.187 68.6526 160.441 68.8918 160.725 69.1011C161.009 69.3104 161.353 69.4898 161.726 69.6542C162.1 69.8187 162.518 69.9383 162.967 70.028C163.415 70.1177 163.908 70.1775 164.446 70.2074C166.001 70.2821 167.719 70.028 169.483 69.5047C171.246 68.9815 173.099 68.1892 174.833 67.1726C176.567 66.1561 178.196 64.9751 179.6 63.6446C181.005 62.3141 182.141 60.9238 182.948 59.4737C183.262 58.9057 183.516 58.3525 183.71 57.8143C183.905 57.2762 184.024 56.7828 184.084 56.3045C184.144 55.8261 184.159 55.3776 184.114 54.959C184.069 54.5404 183.964 54.1518 183.815 53.793L183.83 53.8229Z",fill:"url(#paint0_linear_39_1593)"}),h("path",{d:"M161.158 60.2668C162.04 59.0559 163.116 57.9198 164.326 56.8733C165.537 55.8269 166.852 54.9 168.227 54.0927C169.602 53.2855 171.066 52.5978 172.531 52.0746C173.995 51.5514 175.505 51.1926 176.94 51.058C178.374 50.9235 179.689 51.0132 180.736 51.3122C181.782 51.6111 182.678 52.1643 183.261 52.8818C183.844 53.5994 184.173 54.5711 184.143 55.6624C184.113 56.7537 183.74 58.0992 182.947 59.5044C182.155 60.9097 180.99 62.3597 179.6 63.6753C178.21 64.9908 176.566 66.2017 174.832 67.2033C173.099 68.2049 171.275 68.9973 169.482 69.5354C167.689 70.0736 166 70.2978 164.446 70.238C162.891 70.1783 161.726 69.8045 160.844 69.2065C159.962 68.6086 159.424 67.8461 159.185 66.9043C158.946 65.9625 158.991 64.946 159.335 63.8098C159.678 62.6737 160.276 61.5076 161.173 60.2818L161.158 60.2668Z",fill:"url(#paint1_linear_39_1593)"}),h("path",{d:"M326.717 118.136L252.77 127.539L235.18 119.003L310.771 102.693L326.717 118.136Z",fill:"url(#paint2_linear_39_1593)"}),h("path",{d:"M310.771 102.694L235.18 119.003L242.069 98.9263L313.117 73.333L310.771 102.694Z",fill:"url(#paint3_linear_39_1593)"}),h("path",{d:"M327.241 91.1526L326.718 118.136L310.771 102.694L313.118 73.333L327.241 91.1526Z",fill:"url(#paint4_linear_39_1593)"}),h("path",{d:"M99.4197 23.8945L122.45 47.9331L64.1199 132.801L36.0684 110.093L99.4346 23.8945H99.4197Z",fill:"url(#paint5_linear_39_1593)"}),h("path",{d:"M36.0685 110.077L64.1201 132.785L27.789 117.612L6.0293 100.465L36.0834 110.062L36.0685 110.077Z",fill:"url(#paint6_linear_39_1593)"}),h("path",{d:"M55.7664 36.3772L99.4204 23.8945L36.0542 110.093L6 100.495L55.7515 36.3772H55.7664Z",fill:"url(#paint7_linear_39_1593)"}),h("path",{d:"M106.012 124.249C109.046 126.133 127.189 132.74 135.737 135.805C137.859 136.567 139.623 134.983 139.1 132.8C136.992 123.965 132.449 105.204 130.91 101.975C131.672 104.172 127.473 110.182 121.016 115.952C114.545 121.738 108.119 125.251 106.012 124.249V124.249Z",fill:"url(#paint8_linear_39_1593)"}),h("path",{d:"M105.638 123.981C105.638 123.981 105.698 124.041 105.743 124.071C105.788 124.101 105.833 124.146 105.877 124.175C105.922 124.205 105.967 124.235 106.027 124.265C108.134 125.267 114.56 121.769 121.032 115.968C127.488 110.183 131.687 104.188 130.925 101.991C130.91 101.931 130.88 101.871 130.85 101.841C130.82 101.796 130.791 101.736 130.761 101.692C130.731 101.647 130.716 101.617 130.686 101.587C129.117 99.8229 122.227 103.411 115.308 109.6C108.388 115.789 104.069 122.247 105.638 123.996V123.981Z",fill:"url(#paint9_linear_39_1593)"}),h("path",{d:"M290.057 16.9137C289.713 21.3537 287.89 25.5844 284.886 29.1573C277.817 37.6335 264.187 42.4323 248.167 37.7083C218.695 29.0227 200.313 19.799 183.963 17.138C179.779 16.4653 178.613 10.919 182.14 8.55705C200.238 -3.59678 237.466 -23.9578 268.013 -10.6529C284.527 -3.46224 290.789 7.22655 290.057 16.9137Z",fill:"url(#paint10_linear_39_1593)"})]}),H("defs",{children:[H("filter",{id:"filter0_b_39_1593",x:"-76",y:"-76",width:"485",height:"296",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[h("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),h("feGaussianBlur",{in:"BackgroundImageFix",stdDeviation:"46"}),h("feComposite",{in2:"SourceAlpha",operator:"in",result:"effect1_backgroundBlur_39_1593"}),h("feBlend",{mode:"normal",in:"SourceGraphic",in2:"effect1_backgroundBlur_39_1593",result:"shape"})]}),H("linearGradient",{id:"paint0_linear_39_1593",x1:"187.753",y1:"56.8365",x2:"173.389",y2:"118.39",gradientUnits:"userSpaceOnUse",children:[h("stop",{stopColor:"#2D2068"}),h("stop",{offset:"1",stopColor:"#4F3D9A"})]}),H("linearGradient",{id:"paint1_linear_39_1593",x1:"162.8",y1:"69.9911",x2:"171.997",y2:"54.1167",gradientUnits:"userSpaceOnUse",children:[h("stop",{stopColor:"#4F3D9A"}),h("stop",{offset:"1",stopColor:"#160B45"})]}),H("linearGradient",{id:"paint2_linear_39_1593",x1:"248.905",y1:"127.208",x2:"254.292",y2:"100.947",gradientUnits:"userSpaceOnUse",children:[h("stop",{stopColor:"#4F3D9A"}),h("stop",{offset:"1",stopColor:"#160B45"})]}),H("linearGradient",{id:"paint3_linear_39_1593",x1:"246.866",y1:"118.395",x2:"265.49",y2:"76.3396",gradientUnits:"userSpaceOnUse",children:[h("stop",{stopColor:"#4F3D9A"}),h("stop",{offset:"1",stopColor:"#160B45"})]}),H("linearGradient",{id:"paint4_linear_39_1593",x1:"321.183",y1:"75.7837",x2:"300.239",y2:"117.543",gradientUnits:"userSpaceOnUse",children:[h("stop",{stopColor:"#2D2068"}),h("stop",{offset:"1",stopColor:"#4F3D9A"})]}),H("linearGradient",{id:"paint5_linear_39_1593",x1:"90.6771",y1:"29.8515",x2:"62.6626",y2:"150.379",gradientUnits:"userSpaceOnUse",children:[h("stop",{stopColor:"#2D2068"}),h("stop",{offset:"1",stopColor:"#4F3D9A"})]}),H("linearGradient",{id:"paint6_linear_39_1593",x1:"14.7397",y1:"132.355",x2:"27.4593",y2:"102.104",gradientUnits:"userSpaceOnUse",children:[h("stop",{stopColor:"#4F3D9A"}),h("stop",{offset:"1",stopColor:"#160B45"})]}),H("linearGradient",{id:"paint7_linear_39_1593",x1:"20.0079",y1:"108.945",x2:"64.5521",y2:"45.0635",gradientUnits:"userSpaceOnUse",children:[h("stop",{stopColor:"#4F3D9A"}),h("stop",{offset:"1",stopColor:"#160B45"})]}),H("linearGradient",{id:"paint8_linear_39_1593",x1:"126.988",y1:"103.836",x2:"119.744",y2:"142.156",gradientUnits:"userSpaceOnUse",children:[h("stop",{stopColor:"#2D2068"}),h("stop",{offset:"1",stopColor:"#4F3D9A"})]}),H("linearGradient",{id:"paint9_linear_39_1593",x1:"109.17",y1:"124.125",x2:"121.135",y2:"106.662",gradientUnits:"userSpaceOnUse",children:[h("stop",{stopColor:"#4F3D9A"}),h("stop",{offset:"1",stopColor:"#160B45"})]}),H("linearGradient",{id:"paint10_linear_39_1593",x1:"196.556",y1:"38.8404",x2:"216.303",y2:"-13.8631",gradientUnits:"userSpaceOnUse",children:[h("stop",{stopColor:"#4F3D9A"}),h("stop",{offset:"1",stopColor:"#160B45"})]}),h("clipPath",{id:"clip0_39_1593",children:h("rect",{width:"332",height:"128",fill:"white"})}),h("clipPath",{id:"clip1_39_1593",children:h("rect",{x:"16",y:"16",width:"301",height:"112",rx:"8",fill:"white"})})]})]});import{Fragment as sa,jsx as Ce,jsxs as ct}from"react/jsx-runtime";var In=()=>{var E;let{user:e}=$(),{closePrivyModal:t}=_(),{data:o}=v(),r=Ae(e),{onSuccess:n,onFailure:i,callAuthOnSuccessOnClose:s}=o.createWallet,a=()=>{r?(n(r),t({shouldCallAuthOnSuccess:s})):i(new Error("Failed to create wallet"))},d="Your digital wallet",u="You\u2019re all set! This wallet is all yours and can only ever be accessed by you.",x=Ve(r.address);return ct(sa,{children:[Ce(A,{onClose:a}),ct(ea,{children:[ct("div",{children:[Ce(te,{title:d,description:u}),ct(ta,{children:[Ce(Mn,{}),ct(oa,{children:[Ce("p",{children:((E=e==null?void 0:e.email)==null?void 0:E.address)||""}),ct(ra,{children:[Ce(na,{children:x})," ",Ce(Yt,{color:"var(--light-theme-bg-1)"})]})]})]}),Ce(ia,{children:Ce(to,{text:r.address,itemName:"Address"})})]}),Ce(de,{onClick:a,children:"I\u2019m all set"})]}),Ce(z,{protectedByPrivy:!0})]})},ea=dt.div`
505
+ `;import{jsx as v,jsxs as $}from"react/jsx-runtime";var sa=()=>$("svg",{width:"332",height:"128",viewBox:"0 0 332 128",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[$("g",{clipPath:"url(#clip0_39_1593)",children:[v("g",{clipPath:"url(#clip1_39_1593)",children:$("g",{filter:"url(#filter0_b_39_1593)",children:[$("linearGradient",{id:"background-gradient",children:[v("stop",{offset:"0%",stopColor:"#fed8f4",children:v("animate",{attributeName:"stop-color",values:"#fed8f4; #ffe5d0; #fed8f4;",dur:"4.97s",repeatCount:"indefinite"})}),v("stop",{offset:"33%",stopColor:"#ffe5d0",children:v("animate",{attributeName:"stop-color",values:"#ffe5d0; #ffcdf3; #ffe5d0;",dur:"5.11s",repeatCount:"indefinite"})}),v("stop",{offset:"67%",stopColor:"#ffcdf3",children:v("animate",{attributeName:"stop-color",values:"#ffcdf3; #d0fcf5; #ffcdf3;",dur:"4.95s",repeatCount:"indefinite"})}),v("stop",{offset:"100%",stopColor:"#d0fcf5",children:v("animate",{attributeName:"stop-color",values:"#d0fcf5; #fed8f4; #d0fcf5;",dur:"5.03s",repeatCount:"indefinite"})})]}),v("rect",{width:301,height:112,transform:"translate(16 16)",fill:"url(#background-gradient)"})]})}),v("path",{d:"M183.83 53.8229L203.497 101.003C203.617 101.287 203.707 101.571 203.781 101.87C203.856 102.169 203.901 102.483 203.916 102.797C203.931 103.111 203.916 103.44 203.886 103.769C203.856 104.098 203.781 104.426 203.692 104.755C203.453 105.592 203.034 106.34 202.511 106.983C201.988 107.626 201.315 108.179 200.583 108.582C199.851 108.986 199.044 109.255 198.207 109.375C197.37 109.494 196.533 109.434 195.711 109.195C195.427 109.121 195.158 109.016 194.904 108.896C194.65 108.777 194.411 108.642 194.172 108.493C193.933 108.343 193.723 108.179 193.529 107.999C193.335 107.82 193.141 107.641 192.976 107.431L159.963 68.3985C160.187 68.6526 160.441 68.8918 160.725 69.1011C161.009 69.3104 161.353 69.4898 161.726 69.6542C162.1 69.8187 162.518 69.9383 162.967 70.028C163.415 70.1177 163.908 70.1775 164.446 70.2074C166.001 70.2821 167.719 70.028 169.483 69.5047C171.246 68.9815 173.099 68.1892 174.833 67.1726C176.567 66.1561 178.196 64.9751 179.6 63.6446C181.005 62.3141 182.141 60.9238 182.948 59.4737C183.262 58.9057 183.516 58.3525 183.71 57.8143C183.905 57.2762 184.024 56.7828 184.084 56.3045C184.144 55.8261 184.159 55.3776 184.114 54.959C184.069 54.5404 183.964 54.1518 183.815 53.793L183.83 53.8229Z",fill:"url(#paint0_linear_39_1593)"}),v("path",{d:"M161.158 60.2668C162.04 59.0559 163.116 57.9198 164.326 56.8733C165.537 55.8269 166.852 54.9 168.227 54.0927C169.602 53.2855 171.066 52.5978 172.531 52.0746C173.995 51.5514 175.505 51.1926 176.94 51.058C178.374 50.9235 179.689 51.0132 180.736 51.3122C181.782 51.6111 182.678 52.1643 183.261 52.8818C183.844 53.5994 184.173 54.5711 184.143 55.6624C184.113 56.7537 183.74 58.0992 182.947 59.5044C182.155 60.9097 180.99 62.3597 179.6 63.6753C178.21 64.9908 176.566 66.2017 174.832 67.2033C173.099 68.2049 171.275 68.9973 169.482 69.5354C167.689 70.0736 166 70.2978 164.446 70.238C162.891 70.1783 161.726 69.8045 160.844 69.2065C159.962 68.6086 159.424 67.8461 159.185 66.9043C158.946 65.9625 158.991 64.946 159.335 63.8098C159.678 62.6737 160.276 61.5076 161.173 60.2818L161.158 60.2668Z",fill:"url(#paint1_linear_39_1593)"}),v("path",{d:"M326.717 118.136L252.77 127.539L235.18 119.003L310.771 102.693L326.717 118.136Z",fill:"url(#paint2_linear_39_1593)"}),v("path",{d:"M310.771 102.694L235.18 119.003L242.069 98.9263L313.117 73.333L310.771 102.694Z",fill:"url(#paint3_linear_39_1593)"}),v("path",{d:"M327.241 91.1526L326.718 118.136L310.771 102.694L313.118 73.333L327.241 91.1526Z",fill:"url(#paint4_linear_39_1593)"}),v("path",{d:"M99.4197 23.8945L122.45 47.9331L64.1199 132.801L36.0684 110.093L99.4346 23.8945H99.4197Z",fill:"url(#paint5_linear_39_1593)"}),v("path",{d:"M36.0685 110.077L64.1201 132.785L27.789 117.612L6.0293 100.465L36.0834 110.062L36.0685 110.077Z",fill:"url(#paint6_linear_39_1593)"}),v("path",{d:"M55.7664 36.3772L99.4204 23.8945L36.0542 110.093L6 100.495L55.7515 36.3772H55.7664Z",fill:"url(#paint7_linear_39_1593)"}),v("path",{d:"M106.012 124.249C109.046 126.133 127.189 132.74 135.737 135.805C137.859 136.567 139.623 134.983 139.1 132.8C136.992 123.965 132.449 105.204 130.91 101.975C131.672 104.172 127.473 110.182 121.016 115.952C114.545 121.738 108.119 125.251 106.012 124.249V124.249Z",fill:"url(#paint8_linear_39_1593)"}),v("path",{d:"M105.638 123.981C105.638 123.981 105.698 124.041 105.743 124.071C105.788 124.101 105.833 124.146 105.877 124.175C105.922 124.205 105.967 124.235 106.027 124.265C108.134 125.267 114.56 121.769 121.032 115.968C127.488 110.183 131.687 104.188 130.925 101.991C130.91 101.931 130.88 101.871 130.85 101.841C130.82 101.796 130.791 101.736 130.761 101.692C130.731 101.647 130.716 101.617 130.686 101.587C129.117 99.8229 122.227 103.411 115.308 109.6C108.388 115.789 104.069 122.247 105.638 123.996V123.981Z",fill:"url(#paint9_linear_39_1593)"}),v("path",{d:"M290.057 16.9137C289.713 21.3537 287.89 25.5844 284.886 29.1573C277.817 37.6335 264.187 42.4323 248.167 37.7083C218.695 29.0227 200.313 19.799 183.963 17.138C179.779 16.4653 178.613 10.919 182.14 8.55705C200.238 -3.59678 237.466 -23.9578 268.013 -10.6529C284.527 -3.46224 290.789 7.22655 290.057 16.9137Z",fill:"url(#paint10_linear_39_1593)"})]}),$("defs",{children:[$("filter",{id:"filter0_b_39_1593",x:"-76",y:"-76",width:"485",height:"296",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[v("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),v("feGaussianBlur",{in:"BackgroundImageFix",stdDeviation:"46"}),v("feComposite",{in2:"SourceAlpha",operator:"in",result:"effect1_backgroundBlur_39_1593"}),v("feBlend",{mode:"normal",in:"SourceGraphic",in2:"effect1_backgroundBlur_39_1593",result:"shape"})]}),$("linearGradient",{id:"paint0_linear_39_1593",x1:"187.753",y1:"56.8365",x2:"173.389",y2:"118.39",gradientUnits:"userSpaceOnUse",children:[v("stop",{stopColor:"#2D2068"}),v("stop",{offset:"1",stopColor:"#4F3D9A"})]}),$("linearGradient",{id:"paint1_linear_39_1593",x1:"162.8",y1:"69.9911",x2:"171.997",y2:"54.1167",gradientUnits:"userSpaceOnUse",children:[v("stop",{stopColor:"#4F3D9A"}),v("stop",{offset:"1",stopColor:"#160B45"})]}),$("linearGradient",{id:"paint2_linear_39_1593",x1:"248.905",y1:"127.208",x2:"254.292",y2:"100.947",gradientUnits:"userSpaceOnUse",children:[v("stop",{stopColor:"#4F3D9A"}),v("stop",{offset:"1",stopColor:"#160B45"})]}),$("linearGradient",{id:"paint3_linear_39_1593",x1:"246.866",y1:"118.395",x2:"265.49",y2:"76.3396",gradientUnits:"userSpaceOnUse",children:[v("stop",{stopColor:"#4F3D9A"}),v("stop",{offset:"1",stopColor:"#160B45"})]}),$("linearGradient",{id:"paint4_linear_39_1593",x1:"321.183",y1:"75.7837",x2:"300.239",y2:"117.543",gradientUnits:"userSpaceOnUse",children:[v("stop",{stopColor:"#2D2068"}),v("stop",{offset:"1",stopColor:"#4F3D9A"})]}),$("linearGradient",{id:"paint5_linear_39_1593",x1:"90.6771",y1:"29.8515",x2:"62.6626",y2:"150.379",gradientUnits:"userSpaceOnUse",children:[v("stop",{stopColor:"#2D2068"}),v("stop",{offset:"1",stopColor:"#4F3D9A"})]}),$("linearGradient",{id:"paint6_linear_39_1593",x1:"14.7397",y1:"132.355",x2:"27.4593",y2:"102.104",gradientUnits:"userSpaceOnUse",children:[v("stop",{stopColor:"#4F3D9A"}),v("stop",{offset:"1",stopColor:"#160B45"})]}),$("linearGradient",{id:"paint7_linear_39_1593",x1:"20.0079",y1:"108.945",x2:"64.5521",y2:"45.0635",gradientUnits:"userSpaceOnUse",children:[v("stop",{stopColor:"#4F3D9A"}),v("stop",{offset:"1",stopColor:"#160B45"})]}),$("linearGradient",{id:"paint8_linear_39_1593",x1:"126.988",y1:"103.836",x2:"119.744",y2:"142.156",gradientUnits:"userSpaceOnUse",children:[v("stop",{stopColor:"#2D2068"}),v("stop",{offset:"1",stopColor:"#4F3D9A"})]}),$("linearGradient",{id:"paint9_linear_39_1593",x1:"109.17",y1:"124.125",x2:"121.135",y2:"106.662",gradientUnits:"userSpaceOnUse",children:[v("stop",{stopColor:"#4F3D9A"}),v("stop",{offset:"1",stopColor:"#160B45"})]}),$("linearGradient",{id:"paint10_linear_39_1593",x1:"196.556",y1:"38.8404",x2:"216.303",y2:"-13.8631",gradientUnits:"userSpaceOnUse",children:[v("stop",{stopColor:"#4F3D9A"}),v("stop",{offset:"1",stopColor:"#160B45"})]}),v("clipPath",{id:"clip0_39_1593",children:v("rect",{width:"332",height:"128",fill:"white"})}),v("clipPath",{id:"clip1_39_1593",children:v("rect",{x:"16",y:"16",width:"301",height:"112",rx:"8",fill:"white"})})]})]});import{Fragment as _c,jsx as _e,jsxs as bt}from"react/jsx-runtime";var la=()=>{var w;let{user:e}=q(),{closePrivyModal:t}=T(),{data:o}=E(),r=We(e),{onSuccess:n,onFailure:i,callAuthOnSuccessOnClose:a}=o.createWallet,s=()=>{r?(n(r),t({shouldCallAuthOnSuccess:a})):i(new Error("Failed to create wallet"))},l="Your digital wallet",c="You\u2019re all set! This wallet is all yours and can only ever be accessed by you.",y=Je(r.address);return bt(_c,{children:[_e(S,{onClose:s}),bt(vc,{children:[bt("div",{children:[_e(ie,{title:l,description:c}),bt(Cc,{children:[_e(sa,{}),bt(bc,{children:[_e("p",{children:((w=e==null?void 0:e.email)==null?void 0:w.address)||""}),bt(xc,{children:[_e(Ec,{children:y})," ",_e(wo,{color:"var(--light-theme-bg-1)"})]})]})]}),_e(Lc,{children:_e(xo,{text:r.address,itemName:"Address"})})]}),_e(me,{onClick:s,children:"I\u2019m all set"})]}),_e(Z,{protectedByPrivy:!0})]})},vc=xt.div`
506
506
  display: flex;
507
507
  height: 100%;
508
508
  flex-direction: column;
@@ -511,7 +511,7 @@ Resources:
511
511
  @media (max-width: 440px) {
512
512
  gap: 24px;
513
513
  }
514
- `,ta=dt.div`
514
+ `,Cc=xt.div`
515
515
  width: 100%;
516
516
  background-color: #160b45;
517
517
  border-radius: 8px;
@@ -520,7 +520,7 @@ Resources:
520
520
  width: 100%;
521
521
  height: auto;
522
522
  }
523
- `,oa=dt.div`
523
+ `,bc=xt.div`
524
524
  display: flex;
525
525
  text-align: left;
526
526
  flex-direction: column;
@@ -532,23 +532,23 @@ Resources:
532
532
  color: var(--light-theme-bg-1);
533
533
  opacity: 0.65;
534
534
  }
535
- `,ra=dt.div`
535
+ `,xc=xt.div`
536
536
  display: flex;
537
537
  justify-content: space-between;
538
538
  width: 100%;
539
- `,na=dt.span`
539
+ `,Ec=xt.span`
540
540
  font-size: 17px;
541
541
  color: #fff;
542
- `,ia=dt.div`
542
+ `,Lc=xt.div`
543
543
  display: flex;
544
544
  justify-content: center;
545
- `;import{useEffect as Ca,useState as tr}from"react";import or,{css as ba}from"styled-components";import{useEffect as aa,useState as St}from"react";import er from"styled-components";import{jsx as Nn}from"react/jsx-runtime";var On=({style:e,...t})=>Nn("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:Nn("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"})});import{Fragment as va,jsx as pt,jsxs as Qo}from"react/jsx-runtime";var ut=6,la=new Array(ut).fill("");function ca(e){return e.replace(/\s+/g,"")}function Xo(e){return/^[a-zA-Z0-9]{1}$/.test(e)}function da(e){return/^[a-zA-Z]{1}$/.test(e)}function pa(e){return/^[a-z]{1}$/.test(e)}function Un(e){return e.length===ut&&e.every(Xo)}function ua(e,t){return e.reduce((o,r)=>o+Number(t(r)),0)}function ha(){return crypto.getRandomValues(new Uint8Array(1))[0]}function ma(){let e="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789",t=[];for(;t.length<ut;){let o=ha();o>247||t.push(e.charAt(o%62))}return t.join("")}var Dn=({onChange:e,disabled:t,readOnly:o,errorReasonOverride:r})=>{let[n,i]=St(la),[s,a]=St(null),[d,u]=St(null),x=m=>{var J;let g=ca(m.currentTarget.value);if(g==="")return;let f=ua(n,Xo),c=g.split(""),b=!c.every(Xo),I=c.length+f>ut;if(b){a("PIN can only be letters and numbers"),u(1);return}if(I){a("PIN must be exactly 6 letters and numbers"),u(1);return}a(null),u(null);let k=Number((J=m.currentTarget.name)==null?void 0:J.charAt(4)),T=[...g||[""]].slice(0,ut-k),S=[...n.slice(0,k),...T,...n.slice(k+T.length)];i(S);let N=T.length,V=Math.min(Math.max(k+N,0),ut-1),Z=document.querySelector(`input[name=pin-${V}]`),D=T[T.length-1]||"";if(da(D)&&(pa(D)?Z.autocapitalize="none":Z.autocapitalize="on"),Z==null||Z.focus(),Un(S)){let ge=document.querySelector(`input[name=pin-${V}]`);ge==null||ge.blur(),e(S.join(""))}else e(null);m.preventDefault()},E=m=>{d===1&&(a(null),u(null));let g=[...n.slice(0,m),"",...n.slice(m+1)];if(i(g),m>0){let f=document.querySelector(`input[name=pin-${m-1}]`);f==null||f.focus()}Un(g)?e(g.join("")):e(null)};return Qo(va,{children:[Qo(fa,{children:[pt(ga,{fail:!!r||!!s,children:r||s||"PIN can be letters and numbers"}),pt("div",{children:n.map((m,g)=>pt("input",{name:`pin-${g}`,type:"text",value:n[g],onChange:x,onKeyUp:f=>{f.key==="Backspace"&&E(g)},inputMode:"text",autoFocus:g===0,pattern:"[a-zA-Z0-9]",className:s?"fail":"",autoComplete:"off",disabled:t||o,autoCapitalize:"none"},g))})]}),!o&&pt(ya,{disabled:t,onClick:()=>{let m=ma();i([...m]),e(m)}})]})},fa=er.div`
545
+ `;import{useEffect as Fc,useState as kr}from"react";import Tr,{css as Bc}from"styled-components";import{useEffect as Sc,useState as Gt}from"react";import Pr from"styled-components";import{jsx as ca}from"react/jsx-runtime";var da=({style:e,...t})=>ca("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:ca("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"})});import{Fragment as Dc,jsx as Et,jsxs as Ar}from"react/jsx-runtime";var Lt=6,Ac=new Array(Lt).fill("");function Pc(e){return e.replace(/\s+/g,"")}function Sr(e){return/^[a-zA-Z0-9]{1}$/.test(e)}function kc(e){return/^[a-zA-Z]{1}$/.test(e)}function Tc(e){return/^[a-z]{1}$/.test(e)}function ua(e){return e.length===Lt&&e.every(Sr)}function Wc(e,t){return e.reduce((o,r)=>o+Number(t(r)),0)}function Mc(){return crypto.getRandomValues(new Uint8Array(1))[0]}function Ic(){let e="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789",t=[];for(;t.length<Lt;){let o=Mc();o>247||t.push(e.charAt(o%62))}return t.join("")}var pa=({onChange:e,disabled:t,readOnly:o,errorReasonOverride:r})=>{let[n,i]=Gt(Ac),[a,s]=Gt(null),[l,c]=Gt(null),y=d=>{var Q;let h=Pc(d.currentTarget.value);if(h==="")return;let f=Wc(n,Sr),u=h.split(""),m=!u.every(Sr),A=u.length+f>Lt;if(m){s("PIN can only be letters and numbers"),c(1);return}if(A){s("PIN must be exactly 6 letters and numbers"),c(1);return}s(null),c(null);let P=Number((Q=d.currentTarget.name)==null?void 0:Q.charAt(4)),M=[...h||[""]].slice(0,Lt-P),W=[...n.slice(0,P),...M,...n.slice(P+M.length)];i(W);let U=M.length,j=Math.min(Math.max(P+U,0),Lt-1),J=document.querySelector(`input[name=pin-${j}]`),B=M[M.length-1]||"";if(kc(B)&&(Tc(B)?J.autocapitalize="none":J.autocapitalize="on"),J==null||J.focus(),ua(W)){let be=document.querySelector(`input[name=pin-${j}]`);be==null||be.blur(),e(W.join(""))}else e(null);d.preventDefault()},w=d=>{l===1&&(s(null),c(null));let h=[...n.slice(0,d),"",...n.slice(d+1)];if(i(h),d>0){let f=document.querySelector(`input[name=pin-${d-1}]`);f==null||f.focus()}ua(h)?e(h.join("")):e(null)};return Ar(Dc,{children:[Ar(Rc,{children:[Et(Oc,{fail:!!r||!!a,children:r||a||"PIN can be letters and numbers"}),Et("div",{children:n.map((d,h)=>Et("input",{name:`pin-${h}`,type:"text",value:n[h],onChange:y,onKeyUp:f=>{f.key==="Backspace"&&w(h)},inputMode:"text",autoFocus:h===0,pattern:"[a-zA-Z0-9]",className:a?"fail":"",autoComplete:"off",disabled:t||o,autoCapitalize:"none"},h))})]}),!o&&Et(Nc,{disabled:t,onClick:()=>{let d=Ic();i([...d]),e(d)}})]})},Rc=Pr.div`
546
546
  display: flex;
547
547
  flex-direction: column;
548
548
  width: 100%;
549
549
  gap: 8px;
550
550
 
551
- ${at}[data-height='medium'] & {
551
+ ${vt}[data-height='medium'] & {
552
552
  margin-top: 22px;
553
553
  }
554
554
 
@@ -609,7 +609,7 @@ Resources:
609
609
  transform: translate(1px, 0px);
610
610
  }
611
611
  }
612
- `,ga=er.div`
612
+ `,Oc=Pr.div`
613
613
  line-height: 20px;
614
614
  height: 20px;
615
615
  font-size: 13px;
@@ -617,7 +617,7 @@ Resources:
617
617
  display: flex;
618
618
  justify-content: flex-end;
619
619
  width: 100%;
620
- `,ya=({onClick:e,disabled:t,...o})=>{let[r,n]=St(!1),[i,s]=St();return aa(()=>{t&&i&&clearTimeout(i),s(void 0)},[t]),Qo(wa,{onClick:a=>{i&&clearTimeout(i),n(!0),e==null||e(a),s(setTimeout(()=>n(!1),1e3))},justGenerated:r,disabled:t,...o,children:[r?pt(lt,{style:{height:"14px",width:"14px"},strokeWidth:"2"}):pt(On,{style:{height:"14px",width:"14px"}}),r?"Generated":"Generate"," PIN"]})},wa=er.button`
620
+ `,Nc=({onClick:e,disabled:t,...o})=>{let[r,n]=Gt(!1),[i,a]=Gt();return Sc(()=>{t&&i&&clearTimeout(i),a(void 0)},[t]),Ar(Uc,{onClick:s=>{i&&clearTimeout(i),n(!0),e==null||e(s),a(setTimeout(()=>n(!1),1e3))},justGenerated:r,disabled:t,...o,children:[r?Et(Ct,{style:{height:"14px",width:"14px"},strokeWidth:"2"}):Et(da,{style:{height:"14px",width:"14px"}}),r?"Generated":"Generate"," PIN"]})},Uc=Pr.button`
621
621
  display: flex;
622
622
  align-items: center;
623
623
  gap: 6px;
@@ -655,12 +655,12 @@ Resources:
655
655
  width: 14px;
656
656
  height: 14px;
657
657
  }
658
- `;import{Fragment as Aa,jsx as Te,jsxs as oo}from"react/jsx-runtime";var Fn=()=>{let{authenticated:e,getAccessToken:t,user:o}=$(),{walletProxy:r,refreshUser:n,closePrivyModal:i}=_(),{navigate:s,data:a}=v(),[d,u]=tr(null),[x,E]=tr(""),[m,g]=tr(!1),{onFailure:f,callAuthOnSuccessOnClose:c}=a.createWallet;Ca(()=>{e||(s("LANDING"),f(new Error("User must be authenticated before creating a Privy wallet")))},[e]);let b=()=>{f(new Error("User exited before creating a wallet")),i({shouldCallAuthOnSuccess:c})},I=N=>{u(N)},k=Ae(o),T=k?()=>{g(!0),setTimeout(()=>{g(!1),s("EMBEDDED_WALLET_CREATED_SCREEN")},350)}:async()=>{g(!0);let N=await t();if(N&&d!==null)try{await(r==null?void 0:r.create({accessToken:N,recoveryPin:d})),E(""),await n()}catch(V){E("An error has occurred, please try again."),console.error(V)}finally{g(!1)}},S=!!k;return oo(Aa,{children:[Te(A,{onClose:b}),oo(xa,{children:[oo("div",{children:[Te(te,{title:S?"Secure your PIN":"Set your PIN",description:S?"Don\u2019t lose this PIN. You\u2019ll need it to access your wallet across devices.":"To finish setting up your account, please set up a PIN."}),Te(Dn,{onChange:I,disabled:m,readOnly:S,errorReasonOverride:x}),S?Te(to,{text:d||""}):null]}),oo(Ea,{children:[Te("h4",{children:"Why am I doing this?"}),S?Te("p",{children:"This PIN allows you to access your wallet across devices. If you lose it, there is no way to recover your wallet."}):Te("p",{children:"A digital wallet is being created on this device for your account. This PIN allows you to access it across devices."})]}),Te(La,{loading:m||!r,disabled:!d,onClick:T,warn:S,hideAnimations:!k&&m,children:S?"I have saved my PIN":"Create your wallet"})]}),Te(z,{protectedByPrivy:!0})]})},xa=or.div`
658
+ `;import{Fragment as $c,jsx as Ne,jsxs as Eo}from"react/jsx-runtime";var ha=()=>{let{authenticated:e,getAccessToken:t,user:o}=q(),{walletProxy:r,refreshUser:n,closePrivyModal:i}=T(),{navigate:a,data:s}=E(),[l,c]=kr(null),[y,w]=kr(""),[d,h]=kr(!1),{onFailure:f,callAuthOnSuccessOnClose:u}=s.createWallet;Fc(()=>{e||(a("LANDING"),f(new Error("User must be authenticated before creating a Privy wallet")))},[e]);let m=()=>{f(new Error("User exited before creating a wallet")),i({shouldCallAuthOnSuccess:u})},A=U=>{c(U)},P=We(o),M=P?()=>{h(!0),setTimeout(()=>{h(!1),a("EMBEDDED_WALLET_CREATED_SCREEN")},350)}:async()=>{h(!0);let U=await t();if(U&&l!==null)try{await(r==null?void 0:r.create({accessToken:U,recoveryPin:l})),w(""),await n()}catch(j){w("An error has occurred, please try again."),console.error(j)}finally{h(!1)}},W=!!P;return Eo($c,{children:[Ne(S,{onClose:m}),Eo(Gc,{children:[Eo("div",{children:[Ne(ie,{title:W?"Secure your PIN":"Set your PIN",description:W?"Don\u2019t lose this PIN. You\u2019ll need it to access your wallet across devices.":"To finish setting up your account, please set up a PIN."}),Ne(pa,{onChange:A,disabled:d,readOnly:W,errorReasonOverride:y}),W?Ne(xo,{text:l||""}):null]}),Eo(Vc,{children:[Ne("h4",{children:"Why am I doing this?"}),W?Ne("p",{children:"This PIN allows you to access your wallet across devices. If you lose it, there is no way to recover your wallet."}):Ne("p",{children:"A digital wallet is being created on this device for your account. This PIN allows you to access it across devices."})]}),Ne(Hc,{loading:d||!r,disabled:!l,onClick:M,warn:W,hideAnimations:!P&&d,children:W?"I have saved my PIN":"Create your wallet"})]}),Ne(Z,{protectedByPrivy:!0})]})},Gc=Tr.div`
659
659
  display: flex;
660
660
  height: 100%;
661
661
  flex-direction: column;
662
662
  justify-content: space-between;
663
- `,Ea=or.div`
663
+ `,Vc=Tr.div`
664
664
  display: flex;
665
665
  flex-direction: column;
666
666
  justify-content: flex-start;
@@ -685,26 +685,26 @@ Resources:
685
685
  color: var(--light-theme-fg-3);
686
686
  font-size: 14px;
687
687
  }
688
- `,La=or(de)`
689
- ${e=>e.hideAnimations&&ba`
688
+ `,Hc=Tr(me)`
689
+ ${e=>e.hideAnimations&&Bc`
690
690
  && {
691
691
  // Remove animations because the createNewWallet task on the iframe partially
692
692
  // blocks the renderer, so the animation stutters and doesn't look good
693
693
  transition: none;
694
694
  }
695
695
  `}
696
- `;import{useState as Fa}from"react";import*as Oe from"react-device-detect";import be from"styled-components";import rr from"styled-components";import{jsx as Gn}from"react/jsx-runtime";var Bn=({style:e,...t})=>Gn("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:Gn("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(--primary-color)"})});import{jsx as _a,jsxs as Sa}from"react/jsx-runtime";var nr=rr.div`
696
+ `;import{useState as nd}from"react";import*as He from"react-device-detect";import Se from"styled-components";import Wr from"styled-components";import{jsx as ma}from"react/jsx-runtime";var fa=({style:e,...t})=>ma("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:ma("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(--primary-color)"})});import{jsx as zc,jsxs as qc}from"react/jsx-runtime";var Mr=Wr.div`
697
697
  display: flex;
698
698
  flex-direction: column;
699
699
  justify-content: flex-start;
700
700
  gap: 4px;
701
- `,kt=rr.div`
701
+ `,Vt=Wr.div`
702
702
  &&& {
703
703
  margin-left: 7px; /* TODO: This is a total hack */
704
704
  border-left: 2px solid var(--border-color-2);
705
705
  height: 12px;
706
706
  }
707
- `,je=({children:e})=>Sa(Pa,{children:[_a(Bn,{style:{width:"16px",height:"16px"}}),e]}),Pa=rr.div`
707
+ `,tt=({children:e})=>qc(jc,{children:[zc(fa,{style:{width:"16px",height:"16px"}}),e]}),jc=Wr.div`
708
708
  display: flex;
709
709
  justify-content: flex-start;
710
710
  justify-items: center;
@@ -722,7 +722,7 @@ Resources:
722
722
  margin-bottom: auto;
723
723
  }
724
724
  }
725
- `;import ka from"qrcode";import Ta from"styled-components";import{Fragment as ht,jsx as K,jsxs as $n}from"react/jsx-runtime";var re=7,ir=(e,t,o,r,n)=>{for(let i=t;i<t+r;i++)for(let s=o;s<o+n;s++){let a=e==null?void 0:e[s];a&&a[i]&&(a[i]=0)}return e},Wa=e=>{let t=ka.create(e,{errorCorrectionLevel:"high"}).modules,o=Kr(Array.from(t.data),t.size);return o=ir(o,0,0,re,re),o=ir(o,o.length-re,0,re,re),o=ir(o,0,o.length-re,re,re),o},Ra=({x:e,y:t,cellSize:o,bgColor:r,fgColor:n})=>K(ht,{children:[0,1,2].map(i=>K("circle",{r:o*(re-i*2)/2,cx:e+o*re/2,cy:t+o*re/2,fill:i%2!==0?r:n},`finder-${e}-${t}-${i}`))}),Ma=({cellSize:e,matrixSize:t,bgColor:o,fgColor:r})=>{let n=[[0,0],[(t-re)*e,0],[0,(t-re)*e]];return K(ht,{children:n.map(([i,s])=>K(Ra,{x:i,y:s,cellSize:e,bgColor:o,fgColor:r}))})},Ia=({matrix:e,cellSize:t,color:o})=>K(ht,{children:e.map((r,n)=>r.map((i,s)=>i?K("circle",{r:t/2.5,cx:n*t+t/2,cy:s*t+t/2,fill:o},`circle-${n}-${s}`):K(ht,{})))}),Hn=(e,t)=>e-e%t,Na=({outputSize:e,cellSize:t,element:o,size:r,padding:n,bgColor:i})=>{if(!o)return K(ht,{});let s=r||40,a=n||4,d=o,u=e/2-s/2-a;return $n(ht,{children:[K("rect",{x:Hn(u,t),y:Hn(u,t),width:s+a*2+(u%t?t+.5:.5),height:s+a*2+(u%t?t+.5:.5),fill:i}),K(d,{x:e/2-s/2,y:e/2-s/2,height:s,width:s})]})},Oa=e=>{var n;let t=e.outputSize,o=Wa(e.url),r=t/o.length;return $n("svg",{height:e.outputSize,width:e.outputSize,viewBox:`0 0 ${e.outputSize} ${e.outputSize}`,style:{height:"100%",width:"100%"},children:[K(Ia,{matrix:o,cellSize:r,color:e.fgColor}),K(Ma,{cellSize:r,matrixSize:o.length,fgColor:e.fgColor,bgColor:e.bgColor}),K(Na,{outputSize:e.outputSize,cellSize:r,element:(n=e.logo)==null?void 0:n.element,bgColor:e.bgColor})]})},Ua=Ta.div`
725
+ `;import Zc from"qrcode";import Kc from"styled-components";import{Fragment as _t,jsx as X,jsxs as wa}from"react/jsx-runtime";var se=7,Ir=(e,t,o,r,n)=>{for(let i=t;i<t+r;i++)for(let a=o;a<o+n;a++){let s=e==null?void 0:e[a];s&&s[i]&&(s[i]=0)}return e},Jc=e=>{let t=Zc.create(e,{errorCorrectionLevel:"high"}).modules,o=An(Array.from(t.data),t.size);return o=Ir(o,0,0,se,se),o=Ir(o,o.length-se,0,se,se),o=Ir(o,0,o.length-se,se,se),o},Yc=({x:e,y:t,cellSize:o,bgColor:r,fgColor:n})=>X(_t,{children:[0,1,2].map(i=>X("circle",{r:o*(se-i*2)/2,cx:e+o*se/2,cy:t+o*se/2,fill:i%2!==0?r:n},`finder-${e}-${t}-${i}`))}),Xc=({cellSize:e,matrixSize:t,bgColor:o,fgColor:r})=>{let n=[[0,0],[(t-se)*e,0],[0,(t-se)*e]];return X(_t,{children:n.map(([i,a])=>X(Yc,{x:i,y:a,cellSize:e,bgColor:o,fgColor:r}))})},Qc=({matrix:e,cellSize:t,color:o})=>X(_t,{children:e.map((r,n)=>r.map((i,a)=>i?X("circle",{r:t/2.5,cx:n*t+t/2,cy:a*t+t/2,fill:o},`circle-${n}-${a}`):X(_t,{})))}),ga=(e,t)=>e-e%t,ed=({outputSize:e,cellSize:t,element:o,size:r,padding:n,bgColor:i})=>{if(!o)return X(_t,{});let a=r||40,s=n||4,l=o,c=e/2-a/2-s;return wa(_t,{children:[X("rect",{x:ga(c,t),y:ga(c,t),width:a+s*2+(c%t?t+.5:.5),height:a+s*2+(c%t?t+.5:.5),fill:i}),X(l,{x:e/2-a/2,y:e/2-a/2,height:a,width:a})]})},td=e=>{var n;let t=e.outputSize,o=Jc(e.url),r=t/o.length;return wa("svg",{height:e.outputSize,width:e.outputSize,viewBox:`0 0 ${e.outputSize} ${e.outputSize}`,style:{height:"100%",width:"100%"},children:[X(Qc,{matrix:o,cellSize:r,color:e.fgColor}),X(Xc,{cellSize:r,matrixSize:o.length,fgColor:e.fgColor,bgColor:e.bgColor}),X(ed,{outputSize:e.outputSize,cellSize:r,element:(n=e.logo)==null?void 0:n.element,bgColor:e.bgColor})]})},od=Kc.div`
726
726
  display: flex;
727
727
  justify-content: center;
728
728
  align-items: center;
@@ -737,7 +737,7 @@ Resources:
737
737
  border-color: ${e=>e.fgColor};
738
738
  border-radius: 12px;
739
739
  }
740
- `,Vn=e=>{let t=e.bgColor||"#FFFFFF",o=e.fgColor||"#000000",r=e.size||160;return K(Ua,{size:r,bgColor:t,fgColor:o,children:K(Oa,{url:e.url,logo:{element:e.squareLogoElement},outputSize:r,bgColor:t,fgColor:o})})};import{jsx as Da}from"react/jsx-runtime";var zn=({size:e})=>Da(Vn,{url:"https://coinbase-wallet.onelink.me/q5Sx/fdb9b250",squareLogoElement:le,size:e,fgColor:"#1F1F1F"});import{jsx as L,jsxs as ro}from"react/jsx-runtime";var jn=({style:e,...t})=>ro("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:[L("rect",{x:"198.5",y:"133",width:"50",height:"50",rx:"25",fill:"#E1E7EF"}),L("path",{d:"M236.373 144.791L225.206 153.052L227.289 148.181L236.373 144.791Z",fill:"#E17726",stroke:"#E17726",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),L("path",{d:"M210.627 144.791L221.692 153.116L219.711 148.187L210.627 144.785V144.791ZM232.353 163.933L229.377 168.47L235.738 170.219L237.557 164.036L232.347 163.933H232.353ZM209.448 164.036L211.257 170.219L217.602 168.47L214.647 163.933L209.448 164.036Z",fill:"#E27625",stroke:"#E27625",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),L("path",{d:"M217.262 156.27L215.497 158.939L221.783 159.23L221.579 152.46L217.262 156.281V156.27V156.27ZM229.737 156.281L225.351 152.374L225.206 159.23L231.492 158.939L229.732 156.281H229.737ZM217.602 168.475L221.417 166.64L218.14 164.089L217.607 168.475H217.602ZM225.588 166.63L229.377 168.475L228.865 164.084L225.588 166.635V166.63Z",fill:"#E27625",stroke:"#E27625",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),L("path",{d:"M229.377 168.47L225.588 166.635L225.895 169.1L225.862 170.144L229.382 168.47H229.377ZM217.602 168.47L221.137 170.144L221.11 169.1L221.417 166.635L217.602 168.47V168.47Z",fill:"#D5BFB2",stroke:"#D5BFB2",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),L("path",{d:"M221.197 162.448L218.054 161.533L220.282 160.516L221.207 162.453H221.197V162.448ZM225.793 162.448L226.729 160.505L228.962 161.522L225.793 162.459V162.448Z",fill:"#233447",stroke:"#233447",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),L("path",{d:"M217.602 168.47L218.156 163.933L214.647 164.035L217.602 168.47V168.47ZM228.844 163.933L229.377 168.47L232.353 164.035L228.844 163.933V163.933ZM231.503 158.939L225.217 159.23L225.793 162.459L226.729 160.505L228.962 161.522L231.503 158.939V158.939ZM218.054 161.533L220.282 160.516L221.207 162.453L221.794 159.224L215.508 158.944L218.059 161.538L218.054 161.533Z",fill:"#CC6228",stroke:"#CC6228",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),L("path",{d:"M215.503 158.939L218.134 164.078L218.048 161.528L215.497 158.934L215.503 158.939ZM228.962 161.533L228.86 164.084L231.492 158.944L228.957 161.538L228.962 161.533ZM221.794 159.23L221.196 162.459L221.945 166.263L222.117 161.242L221.794 159.23ZM225.211 159.23L224.904 161.237L225.055 166.269L225.792 162.453L225.206 159.224V159.235L225.211 159.23Z",fill:"#E27525",stroke:"#E27525",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),L("path",{d:"M225.793 162.448L225.055 166.263L225.588 166.635L228.86 164.084L228.962 161.528L225.793 162.448V162.448ZM218.054 161.528L218.14 164.078L221.417 166.629L221.945 166.263L221.207 162.448L218.048 161.528H218.059H218.054Z",fill:"#F5841F",stroke:"#F5841F",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),L("path",{d:"M225.868 170.144L225.895 169.1L225.604 168.863H221.39L221.11 169.1L221.137 170.144L217.602 168.47L218.845 169.487L221.353 171.215H225.642L228.155 169.482L229.377 168.47L225.857 170.144H225.868V170.144Z",fill:"#C0AC9D",stroke:"#C0AC9D",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),L("path",{d:"M225.588 166.63L225.055 166.264H221.945L221.417 166.635L221.11 169.1L221.39 168.863H225.604L225.895 169.1L225.588 166.635V166.624V166.63Z",fill:"#161616",stroke:"#161616",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),L("path",{d:"M236.846 153.585L237.783 149.037L236.373 144.791L225.583 152.777L229.737 156.27L235.598 157.976L236.889 156.475L236.33 156.066L237.223 155.248L236.545 154.72L237.438 154.042L236.846 153.585H236.857H236.846ZM209.217 149.032L210.17 153.585L209.556 154.037L210.466 154.715L209.787 155.248L210.67 156.066L210.11 156.475L211.402 157.976L217.263 156.275L221.417 152.767L210.627 144.791L209.217 149.032V149.032Z",fill:"#763E1A",stroke:"#763E1A",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),L("path",{d:"M235.598 157.976L229.737 156.275L231.502 158.934L228.871 164.073L232.353 164.03H237.562L235.598 157.97V157.976ZM217.263 156.27L211.402 157.976L209.448 164.035H214.658L218.14 164.079L215.508 158.939L217.273 156.27H217.263V156.27ZM225.206 159.224L225.588 152.766L227.289 148.176H219.711L221.412 152.766L221.794 159.224L221.939 161.248V166.263H225.055L225.071 161.248L225.206 159.224V159.224Z",fill:"#F5841F",stroke:"#F5841F",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),L("rect",{x:"192",y:"30",width:"50",height:"50",rx:"25",fill:"#0C5BFF"}),L("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"}),L("rect",{x:"39.5",y:"18",width:"50",height:"50",rx:"25",fill:"url(#paint0_linear_428_81)"}),L("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)"}),L("rect",{x:"46.5",y:"124",width:"50",height:"50",rx:"25",fill:"#141414"}),L("g",{clipPath:"url(#clip0_428_81)",children:L("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"})}),L("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",fill:"white"}),L("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M131.626 83.0058C128.674 83.3405 126.5 85.8652 126.5 88.8363V92.0779V103.277V105.099C126.5 108.098 128.713 110.636 131.695 110.952C134.982 111.301 139.216 111.667 142.5 111.667C147.147 111.667 153.695 110.934 156.773 110.555C157.765 110.433 158.5 109.588 158.5 108.589V92.0779C158.5 91.0782 157.765 90.2337 156.773 90.1115C153.705 89.7336 147.189 89.0046 142.545 88.9999L142.5 88.9999L142.46 88.9999C139.655 89.0025 136.165 89.2695 133.166 89.564C132.488 89.5642 131.907 89.0495 131.84 88.3608C131.768 87.6279 132.304 86.9755 133.037 86.9036C136.061 86.6067 139.621 86.3333 142.5 86.3333C145.707 86.3333 149.764 86.6728 152.989 87.007C154.039 87.1159 155.006 87.2247 155.833 87.3221V85.3898C155.833 84.3995 155.112 83.56 154.131 83.4288C151.262 83.0454 145.367 82.3333 141.167 82.3333C138.276 82.3333 134.583 82.6705 131.626 83.0058ZM153.833 102.333C154.938 102.333 155.833 101.438 155.833 100.333C155.833 99.2287 154.938 98.3333 153.833 98.3333C152.729 98.3333 151.833 99.2287 151.833 100.333C151.833 101.438 152.729 102.333 153.833 102.333Z",fill:"#696FFD"}),L("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",stroke:"#E1E7EF",strokeWidth:"2"}),L("path",{d:"M269.405 111C278.27 111 285.457 103.837 285.457 95C285.457 86.1634 278.27 79 269.405 79C260.54 79 253.354 86.1634 253.354 95C253.354 103.837 260.54 111 269.405 111Z",fill:"#B9BBFE"}),L("path",{d:"M133.971 24C140.62 24 146.01 18.6274 146.01 12C146.01 5.37258 140.62 0 133.971 0C127.322 0 121.932 5.37258 121.932 12C121.932 18.6274 127.322 24 133.971 24Z",fill:"#B9BBFE"}),L("path",{d:"M15.5917 112C20.5782 112 24.6206 107.971 24.6206 103C24.6206 98.0294 20.5782 94 15.5917 94C10.6051 94 6.56274 98.0294 6.56274 103C6.56274 107.971 10.6051 112 15.5917 112Z",fill:"#B9BBFE"}),L("path",{d:"M152.029 177C157.57 177 162.061 172.523 162.061 167C162.061 161.477 157.57 157 152.029 157C146.488 157 141.997 161.477 141.997 167C141.997 172.523 146.488 177 152.029 177Z",fill:"#E9E9FF"}),L("path",{d:"M263.386 21C267.818 21 271.412 17.4183 271.412 13C271.412 8.58172 267.818 5 263.386 5C258.953 5 255.36 8.58172 255.36 13C255.36 17.4183 258.953 21 263.386 21Z",fill:"#E9E9FF"}),L("path",{d:"M7.06436 36C10.6658 36 13.5853 33.0899 13.5853 29.5C13.5853 25.9101 10.6658 23 7.06436 23C3.46296 23 0.543457 25.9101 0.543457 29.5C0.543457 33.0899 3.46296 36 7.06436 36Z",fill:"#E9E9FF"}),ro("defs",{children:[ro("linearGradient",{id:"paint0_linear_428_81",x1:"64.5",y1:"18",x2:"64.5",y2:"68",gradientUnits:"userSpaceOnUse",children:[L("stop",{stopColor:"#534BB1"}),L("stop",{offset:"1",stopColor:"#551BF9"})]}),ro("linearGradient",{id:"paint1_linear_428_81",x1:"64.5",y1:"30.9167",x2:"64.5",y2:"55.0834",gradientUnits:"userSpaceOnUse",children:[L("stop",{stopColor:"white"}),L("stop",{offset:"1",stopColor:"white",stopOpacity:"0.82"})]}),L("clipPath",{id:"clip0_428_81",children:L("rect",{width:"31.6667",height:"19.1667",fill:"white",transform:"translate(55.6667 139.833)"})})]})]});import{Fragment as sr,jsx as C,jsxs as j}from"react/jsx-runtime";var ar=()=>{let{navigate:e}=v(),t="https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn?hl=en";return Oe.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/ether-metamask/"),j(Jn,{children:[C(te,{title:"Create a Metamask wallet",description:"Follow the instructions below to get started."}),C(Yn,{children:C(ce,{style:{width:"152px",height:"152px"}})}),j(nr,{children:[C(je,{children:j("div",{children:[C("span",{children:"Install the "}),C("a",{href:t,target:"_blank",children:"MetaMask browser extension"})]})}),C(kt,{}),C(je,{children:"Set up your first wallet"}),C(kt,{}),C(je,{children:"Store your recovery phrase in a safe place!"})]}),C(ee,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},lr=()=>{let{navigate:e}=v();return j(Jn,{children:[C(te,{title:"Create a Coinbase wallet",description:"Follow the instructions below to get started."}),C(Yn,{style:{marginTop:"-24px"},children:C(zn,{size:200})}),j(nr,{children:[C(je,{children:"Scan the QR code with your camera"}),C(kt,{}),C(je,{children:"Set up your first wallet"}),C(kt,{}),C(je,{children:"Store your seed phrase in a safe place!"})]}),C(ee,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},Kn=()=>{let[e,t]=Fa("WHAT_IS_A_WALLET"),{navigateBack:o}=v();return j(sr,{children:[C(A,{backFn:e==="WHAT_IS_A_WALLET"?o:e==="PICK_A_NEW_WALLET"?()=>t("WHAT_IS_A_WALLET"):()=>t("PICK_A_NEW_WALLET")},"header"),j(Ga,{children:[e==="WHAT_IS_A_WALLET"&&j(sr,{children:[C(za,{children:C(jn,{style:{width:"240px",height:"auto",borderRadius:"var(--border-radius-sm)",marginBottom:"32px"}})}),j(st,{title:"Get started with a new wallet",children:[C("p",{children:"Wallets help you store, send, and receive digital assets and collectibles. They are also a new\xA0way\xA0to\xA0log\xA0in."}),C("p",{children:"Instead of creating new accounts and passwords for every app, you just connect your wallet and bring your\xA0data\xA0with\xA0you."})]}),C(Va,{children:C($a,{onClick:()=>{t("PICK_A_NEW_WALLET")},children:"Create a wallet"})})]}),e==="PICK_A_NEW_WALLET"&&C(sr,{children:j(Ba,{children:[C(te,{title:"Create a new wallet",description:"Select one the wallet providers below to get started on your web3 adventure."}),j(Ha,{children:[j(Zn,{onClick:()=>{Oe.isIOS?window.location.href="https://apps.apple.com/us/app/metamask-blockchain-wallet/id1438144202":Oe.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=io.metamask":t("CREATE_METAMASK_WALLET")},children:[C(ce,{}),j(qn,{children:[C("h4",{children:"MetaMask"}),C("p",{children:"Get a browser-based wallet"})]}),C("div",{children:C("span",{children:"Set up"})})]}),j(Zn,{onClick:()=>{Oe.isIOS?window.location.href="https://apps.apple.com/us/app/coinbase-wallet-nfts-crypto/id1278383455":Oe.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=org.toshi":t("CREATE_COINBASE_WALLET")},children:[C(le,{}),j(qn,{children:[C("h4",{children:"Coinbase Wallet"}),C("p",{children:"Get a mobile app wallet"})]}),C("div",{children:C("span",{children:"Set up"})})]})]})]})}),e==="CREATE_COINBASE_WALLET"&&C(lr,{}),e==="CREATE_METAMASK_WALLET"&&C(ar,{})]}),j(he,{children:[C("span",{children:"Still not sure? "}),C("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"}),"."]})]})},Ga=be.div`
740
+ `,ya=e=>{let t=e.bgColor||"#FFFFFF",o=e.fgColor||"#000000",r=e.size||160;return X(od,{size:r,bgColor:t,fgColor:o,children:X(td,{url:e.url,logo:{element:e.squareLogoElement},outputSize:r,bgColor:t,fgColor:o})})};import{jsx as rd}from"react/jsx-runtime";var va=({size:e})=>rd(ya,{url:"https://coinbase-wallet.onelink.me/q5Sx/fdb9b250",squareLogoElement:pe,size:e,fgColor:"#1F1F1F"});import{jsx as _,jsxs as Lo}from"react/jsx-runtime";var Ca=({style:e,...t})=>Lo("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:[_("rect",{x:"198.5",y:"133",width:"50",height:"50",rx:"25",fill:"#E1E7EF"}),_("path",{d:"M236.373 144.791L225.206 153.052L227.289 148.181L236.373 144.791Z",fill:"#E17726",stroke:"#E17726",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),_("path",{d:"M210.627 144.791L221.692 153.116L219.711 148.187L210.627 144.785V144.791ZM232.353 163.933L229.377 168.47L235.738 170.219L237.557 164.036L232.347 163.933H232.353ZM209.448 164.036L211.257 170.219L217.602 168.47L214.647 163.933L209.448 164.036Z",fill:"#E27625",stroke:"#E27625",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),_("path",{d:"M217.262 156.27L215.497 158.939L221.783 159.23L221.579 152.46L217.262 156.281V156.27V156.27ZM229.737 156.281L225.351 152.374L225.206 159.23L231.492 158.939L229.732 156.281H229.737ZM217.602 168.475L221.417 166.64L218.14 164.089L217.607 168.475H217.602ZM225.588 166.63L229.377 168.475L228.865 164.084L225.588 166.635V166.63Z",fill:"#E27625",stroke:"#E27625",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),_("path",{d:"M229.377 168.47L225.588 166.635L225.895 169.1L225.862 170.144L229.382 168.47H229.377ZM217.602 168.47L221.137 170.144L221.11 169.1L221.417 166.635L217.602 168.47V168.47Z",fill:"#D5BFB2",stroke:"#D5BFB2",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),_("path",{d:"M221.197 162.448L218.054 161.533L220.282 160.516L221.207 162.453H221.197V162.448ZM225.793 162.448L226.729 160.505L228.962 161.522L225.793 162.459V162.448Z",fill:"#233447",stroke:"#233447",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),_("path",{d:"M217.602 168.47L218.156 163.933L214.647 164.035L217.602 168.47V168.47ZM228.844 163.933L229.377 168.47L232.353 164.035L228.844 163.933V163.933ZM231.503 158.939L225.217 159.23L225.793 162.459L226.729 160.505L228.962 161.522L231.503 158.939V158.939ZM218.054 161.533L220.282 160.516L221.207 162.453L221.794 159.224L215.508 158.944L218.059 161.538L218.054 161.533Z",fill:"#CC6228",stroke:"#CC6228",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),_("path",{d:"M215.503 158.939L218.134 164.078L218.048 161.528L215.497 158.934L215.503 158.939ZM228.962 161.533L228.86 164.084L231.492 158.944L228.957 161.538L228.962 161.533ZM221.794 159.23L221.196 162.459L221.945 166.263L222.117 161.242L221.794 159.23ZM225.211 159.23L224.904 161.237L225.055 166.269L225.792 162.453L225.206 159.224V159.235L225.211 159.23Z",fill:"#E27525",stroke:"#E27525",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),_("path",{d:"M225.793 162.448L225.055 166.263L225.588 166.635L228.86 164.084L228.962 161.528L225.793 162.448V162.448ZM218.054 161.528L218.14 164.078L221.417 166.629L221.945 166.263L221.207 162.448L218.048 161.528H218.059H218.054Z",fill:"#F5841F",stroke:"#F5841F",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),_("path",{d:"M225.868 170.144L225.895 169.1L225.604 168.863H221.39L221.11 169.1L221.137 170.144L217.602 168.47L218.845 169.487L221.353 171.215H225.642L228.155 169.482L229.377 168.47L225.857 170.144H225.868V170.144Z",fill:"#C0AC9D",stroke:"#C0AC9D",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),_("path",{d:"M225.588 166.63L225.055 166.264H221.945L221.417 166.635L221.11 169.1L221.39 168.863H225.604L225.895 169.1L225.588 166.635V166.624V166.63Z",fill:"#161616",stroke:"#161616",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),_("path",{d:"M236.846 153.585L237.783 149.037L236.373 144.791L225.583 152.777L229.737 156.27L235.598 157.976L236.889 156.475L236.33 156.066L237.223 155.248L236.545 154.72L237.438 154.042L236.846 153.585H236.857H236.846ZM209.217 149.032L210.17 153.585L209.556 154.037L210.466 154.715L209.787 155.248L210.67 156.066L210.11 156.475L211.402 157.976L217.263 156.275L221.417 152.767L210.627 144.791L209.217 149.032V149.032Z",fill:"#763E1A",stroke:"#763E1A",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),_("path",{d:"M235.598 157.976L229.737 156.275L231.502 158.934L228.871 164.073L232.353 164.03H237.562L235.598 157.97V157.976ZM217.263 156.27L211.402 157.976L209.448 164.035H214.658L218.14 164.079L215.508 158.939L217.273 156.27H217.263V156.27ZM225.206 159.224L225.588 152.766L227.289 148.176H219.711L221.412 152.766L221.794 159.224L221.939 161.248V166.263H225.055L225.071 161.248L225.206 159.224V159.224Z",fill:"#F5841F",stroke:"#F5841F",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),_("rect",{x:"192",y:"30",width:"50",height:"50",rx:"25",fill:"#0C5BFF"}),_("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"}),_("rect",{x:"39.5",y:"18",width:"50",height:"50",rx:"25",fill:"url(#paint0_linear_428_81)"}),_("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)"}),_("rect",{x:"46.5",y:"124",width:"50",height:"50",rx:"25",fill:"#141414"}),_("g",{clipPath:"url(#clip0_428_81)",children:_("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"})}),_("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",fill:"white"}),_("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M131.626 83.0058C128.674 83.3405 126.5 85.8652 126.5 88.8363V92.0779V103.277V105.099C126.5 108.098 128.713 110.636 131.695 110.952C134.982 111.301 139.216 111.667 142.5 111.667C147.147 111.667 153.695 110.934 156.773 110.555C157.765 110.433 158.5 109.588 158.5 108.589V92.0779C158.5 91.0782 157.765 90.2337 156.773 90.1115C153.705 89.7336 147.189 89.0046 142.545 88.9999L142.5 88.9999L142.46 88.9999C139.655 89.0025 136.165 89.2695 133.166 89.564C132.488 89.5642 131.907 89.0495 131.84 88.3608C131.768 87.6279 132.304 86.9755 133.037 86.9036C136.061 86.6067 139.621 86.3333 142.5 86.3333C145.707 86.3333 149.764 86.6728 152.989 87.007C154.039 87.1159 155.006 87.2247 155.833 87.3221V85.3898C155.833 84.3995 155.112 83.56 154.131 83.4288C151.262 83.0454 145.367 82.3333 141.167 82.3333C138.276 82.3333 134.583 82.6705 131.626 83.0058ZM153.833 102.333C154.938 102.333 155.833 101.438 155.833 100.333C155.833 99.2287 154.938 98.3333 153.833 98.3333C152.729 98.3333 151.833 99.2287 151.833 100.333C151.833 101.438 152.729 102.333 153.833 102.333Z",fill:"#696FFD"}),_("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",stroke:"#E1E7EF",strokeWidth:"2"}),_("path",{d:"M269.405 111C278.27 111 285.457 103.837 285.457 95C285.457 86.1634 278.27 79 269.405 79C260.54 79 253.354 86.1634 253.354 95C253.354 103.837 260.54 111 269.405 111Z",fill:"#B9BBFE"}),_("path",{d:"M133.971 24C140.62 24 146.01 18.6274 146.01 12C146.01 5.37258 140.62 0 133.971 0C127.322 0 121.932 5.37258 121.932 12C121.932 18.6274 127.322 24 133.971 24Z",fill:"#B9BBFE"}),_("path",{d:"M15.5917 112C20.5782 112 24.6206 107.971 24.6206 103C24.6206 98.0294 20.5782 94 15.5917 94C10.6051 94 6.56274 98.0294 6.56274 103C6.56274 107.971 10.6051 112 15.5917 112Z",fill:"#B9BBFE"}),_("path",{d:"M152.029 177C157.57 177 162.061 172.523 162.061 167C162.061 161.477 157.57 157 152.029 157C146.488 157 141.997 161.477 141.997 167C141.997 172.523 146.488 177 152.029 177Z",fill:"#E9E9FF"}),_("path",{d:"M263.386 21C267.818 21 271.412 17.4183 271.412 13C271.412 8.58172 267.818 5 263.386 5C258.953 5 255.36 8.58172 255.36 13C255.36 17.4183 258.953 21 263.386 21Z",fill:"#E9E9FF"}),_("path",{d:"M7.06436 36C10.6658 36 13.5853 33.0899 13.5853 29.5C13.5853 25.9101 10.6658 23 7.06436 23C3.46296 23 0.543457 25.9101 0.543457 29.5C0.543457 33.0899 3.46296 36 7.06436 36Z",fill:"#E9E9FF"}),Lo("defs",{children:[Lo("linearGradient",{id:"paint0_linear_428_81",x1:"64.5",y1:"18",x2:"64.5",y2:"68",gradientUnits:"userSpaceOnUse",children:[_("stop",{stopColor:"#534BB1"}),_("stop",{offset:"1",stopColor:"#551BF9"})]}),Lo("linearGradient",{id:"paint1_linear_428_81",x1:"64.5",y1:"30.9167",x2:"64.5",y2:"55.0834",gradientUnits:"userSpaceOnUse",children:[_("stop",{stopColor:"white"}),_("stop",{offset:"1",stopColor:"white",stopOpacity:"0.82"})]}),_("clipPath",{id:"clip0_428_81",children:_("rect",{width:"31.6667",height:"19.1667",fill:"white",transform:"translate(55.6667 139.833)"})})]})]});import{Fragment as Rr,jsx as L,jsxs as K}from"react/jsx-runtime";var Or=()=>{let{navigate:e}=E(),t="https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn?hl=en";return He.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/ether-metamask/"),K(La,{children:[L(ie,{title:"Create a Metamask wallet",description:"Follow the instructions below to get started."}),L(_a,{children:L(z,{style:{width:"152px",height:"152px"}})}),K(Mr,{children:[L(tt,{children:K("div",{children:[L("span",{children:"Install the "}),L("a",{href:t,target:"_blank",children:"MetaMask browser extension"})]})}),L(Vt,{}),L(tt,{children:"Set up your first wallet"}),L(Vt,{}),L(tt,{children:"Store your recovery phrase in a safe place!"})]}),L(ne,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},Nr=()=>{let{navigate:e}=E();return K(La,{children:[L(ie,{title:"Create a Coinbase wallet",description:"Follow the instructions below to get started."}),L(_a,{style:{marginTop:"-24px"},children:L(va,{size:200})}),K(Mr,{children:[L(tt,{children:"Scan the QR code with your camera"}),L(Vt,{}),L(tt,{children:"Set up your first wallet"}),L(Vt,{}),L(tt,{children:"Store your seed phrase in a safe place!"})]}),L(ne,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},Ea=()=>{let[e,t]=nd("WHAT_IS_A_WALLET"),{navigateBack:o}=E();return K(Rr,{children:[L(S,{backFn:e==="WHAT_IS_A_WALLET"?o:e==="PICK_A_NEW_WALLET"?()=>t("WHAT_IS_A_WALLET"):()=>t("PICK_A_NEW_WALLET")},"header"),K(id,{children:[e==="WHAT_IS_A_WALLET"&&K(Rr,{children:[L(dd,{children:L(Ca,{style:{width:"240px",height:"auto",borderRadius:"var(--border-radius-sm)",marginBottom:"32px"}})}),K(wt,{title:"Get started with a new wallet",children:[L("p",{children:"Wallets help you store, send, and receive digital assets and collectibles. They are also a new\xA0way\xA0to\xA0log\xA0in."}),L("p",{children:"Instead of creating new accounts and passwords for every app, you just connect your wallet and bring your\xA0data\xA0with\xA0you."})]}),L(ld,{children:L(cd,{onClick:()=>{t("PICK_A_NEW_WALLET")},children:"Create a wallet"})})]}),e==="PICK_A_NEW_WALLET"&&L(Rr,{children:K(ad,{children:[L(ie,{title:"Create a new wallet",description:"Select one the wallet providers below to get started on your web3 adventure."}),K(sd,{children:[K(ba,{onClick:()=>{He.isIOS?window.location.href="https://apps.apple.com/us/app/metamask-blockchain-wallet/id1438144202":He.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=io.metamask":t("CREATE_METAMASK_WALLET")},children:[L(z,{}),K(xa,{children:[L("h4",{children:"MetaMask"}),L("p",{children:"Get a browser-based wallet"})]}),L("div",{children:L("span",{children:"Set up"})})]}),K(ba,{onClick:()=>{He.isIOS?window.location.href="https://apps.apple.com/us/app/coinbase-wallet-nfts-crypto/id1278383455":He.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=org.toshi":t("CREATE_COINBASE_WALLET")},children:[L(pe,{}),K(xa,{children:[L("h4",{children:"Coinbase Wallet"}),L("p",{children:"Get a mobile app wallet"})]}),L("div",{children:L("span",{children:"Set up"})})]})]})]})}),e==="CREATE_COINBASE_WALLET"&&L(Nr,{}),e==="CREATE_METAMASK_WALLET"&&L(Or,{})]}),K(ve,{children:[L("span",{children:"Still not sure? "}),L("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"}),"."]})]})},id=Se.div`
741
741
  display: flex;
742
742
  flex-direction: column;
743
743
  height: 100%;
@@ -747,19 +747,19 @@ Resources:
747
747
  display: none;
748
748
  }
749
749
  }
750
- `,Ba=be.div`
750
+ `,ad=Se.div`
751
751
  display: flex;
752
752
  flex-direction: column;
753
753
  align-items: flex-start;
754
754
  justify-content: flex-start;
755
755
  text-align: left;
756
756
  gap: 20px;
757
- `,Ha=be.div`
757
+ `,sd=Se.div`
758
758
  display: flex;
759
759
  flex-direction: column;
760
760
  width: 100%;
761
761
  gap: 8px;
762
- `,Zn=be.button`
762
+ `,ba=Se.button`
763
763
  display: flex;
764
764
  flex-direction: row;
765
765
  align-items: center;
@@ -816,24 +816,24 @@ Resources:
816
816
  border: 1px solid var(--border-color-2);
817
817
  }
818
818
  }
819
- `,qn=be.div`
819
+ `,xa=Se.div`
820
820
  text-align: left;
821
821
 
822
822
  p {
823
823
  font-style: italic;
824
824
  font-size: 12px;
825
825
  }
826
- `,Va=be.div`
826
+ `,ld=Se.div`
827
827
  margin-top: auto;
828
828
  display: flex;
829
829
  align-items: flex-end;
830
830
  flex-grow: 1;
831
831
  width: 100%;
832
- `,$a=be(de)`
832
+ `,cd=Se(me)`
833
833
  && {
834
834
  margin-top: 14px;
835
835
  }
836
- `,Jn=be.div`
836
+ `,La=Se.div`
837
837
  display: flex;
838
838
  flex-direction: column;
839
839
  align-items: center;
@@ -844,16 +844,16 @@ Resources:
844
844
  > :first-child > svg {
845
845
  margin-top: 20px;
846
846
  }
847
- `,Yn=be.div`
847
+ `,_a=Se.div`
848
848
  display: flex;
849
849
  flex-direction: column;
850
850
  align-items: center;
851
851
  justify-content: center;
852
852
  width: 100%;
853
- `,za=be.div`
853
+ `,dd=Se.div`
854
854
  display: flex;
855
855
  justify-content: center;
856
- `;import{Fragment as ja,jsx as no,jsxs as Xn}from"react/jsx-runtime";var Qn=()=>{let{navigateBack:e}=v();return Xn(ja,{children:[no(A,{backFn:e},"header"),no(lr,{}),Xn(he,{children:[no("span",{children:"Still not sure? "}),no("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"})]})]})};import{Fragment as Za,jsx as io,jsxs as ei}from"react/jsx-runtime";var ti=()=>{let{navigateBack:e}=v();return ei(Za,{children:[io(A,{backFn:e},"header"),io(ar,{}),ei(he,{children:[io("span",{children:"Still not sure? "}),io("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"})]})]})};import{useState as bl}from"react";import{isMobile as hi}from"react-device-detect";import gt from"styled-components";import{jsx as oi}from"react/jsx-runtime";var ri=()=>{let{app:e}=v();return e!=null&&e.logoUrl?oi("div",{children:oi("img",{src:e.logoUrl,alt:`${e==null?void 0:e.name} logo`,style:{objectFit:"contain",width:"200px",height:"80px"}})}):null};import{useEffect as qa,useState as cr}from"react";import ao from"styled-components";import{jsx as ni}from"react/jsx-runtime";var so=({style:e,...t})=>ni("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:ni("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M21.75 6.75v10.5a2.25 2.25 0 01-2.25 2.25h-15a2.25 2.25 0 01-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0019.5 4.5h-15a2.25 2.25 0 00-2.25 2.25m19.5 0v.243a2.25 2.25 0 01-1.07 1.916l-7.5 4.615a2.25 2.25 0 01-2.36 0L3.32 8.91a2.25 2.25 0 01-1.07-1.916V6.75"})});import{Fragment as Qa,jsx as mt,jsxs as dr}from"react/jsx-runtime";var lo=e=>{let[t,o]=cr(""),[r,n]=cr(!1),[i,s]=cr(null),{isLinking:a,initLoginWithEmail:d}=_(),{navigate:u,options:x}=v(),E=x.wallet;qa(()=>{let c=document.querySelector("#email-input");c==null||c.focus()},[]);let m=zr(t),g=()=>{n(!0),d(t).then(()=>{u("AWAITING_PASSWORDLESS_CODE")}).catch(c=>{let b=(c==null?void 0:c.status)===401&&(c==null?void 0:c.message)==="User is not allowed to login to this app.";(c==null?void 0:c.status)===422?s(c.message):b?u("ALLOWLIST_REJECTION_SCREEN"):s("Issue submitting email"),n(!1)})},f="Get started without a wallet.";return i?f=i:a?f="Easily connect an email":E||(f="Get started quickly with email"),dr(Qa,{children:[dr(Ka,{stacked:e.stacked,children:[dr(Ya,{standalone:e.stacked,children:[mt(so,{}),mt("input",{id:"email-input",type:"email",placeholder:"your@email.com",onChange:c=>o(c.target.value),onKeyUp:c=>{c.key==="Enter"&&g()},value:t,autoComplete:"email"})]}),e.stacked?null:mt(Ja,{disabled:r||!m,onClick:g,children:r?mt(rt,{}):"Submit"})]}),mt(Xa,{fail:!!i,children:f}),e.stacked?mt(de,{loading:r,loadingText:null,disabled:r||!m,onClick:g,children:"Submit"}):null]})},Ka=ao.div`
856
+ `;import{Fragment as ud,jsx as _o,jsxs as Sa}from"react/jsx-runtime";var Aa=()=>{let{navigateBack:e}=E();return Sa(ud,{children:[_o(S,{backFn:e},"header"),_o(Nr,{}),Sa(ve,{children:[_o("span",{children:"Still not sure? "}),_o("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"})]})]})};import{Fragment as pd,jsx as So,jsxs as Pa}from"react/jsx-runtime";var ka=()=>{let{navigateBack:e}=E();return Pa(pd,{children:[So(S,{backFn:e},"header"),So(Or,{}),Pa(ve,{children:[So("span",{children:"Still not sure? "}),So("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"})]})]})};import{useState as Bd}from"react";import{isMobile as Va}from"react-device-detect";import Pt from"styled-components";import{jsx as Ta}from"react/jsx-runtime";var Wa=()=>{let{app:e}=E();return e!=null&&e.logoUrl?Ta("div",{children:Ta("img",{src:e.logoUrl,alt:`${e==null?void 0:e.name} logo`,style:{objectFit:"contain",width:"200px",height:"80px"}})}):null};import{useEffect as hd,useState as Ur}from"react";import Po from"styled-components";import{jsx as Ma}from"react/jsx-runtime";var Ao=({style:e,...t})=>Ma("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:Ma("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M21.75 6.75v10.5a2.25 2.25 0 01-2.25 2.25h-15a2.25 2.25 0 01-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0019.5 4.5h-15a2.25 2.25 0 00-2.25 2.25m19.5 0v.243a2.25 2.25 0 01-1.07 1.916l-7.5 4.615a2.25 2.25 0 01-2.36 0L3.32 8.91a2.25 2.25 0 01-1.07-1.916V6.75"})});import{Fragment as wd,jsx as St,jsxs as Dr}from"react/jsx-runtime";var ko=e=>{let[t,o]=Ur(""),[r,n]=Ur(!1),[i,a]=Ur(null),{isLinking:s,initLoginWithEmail:l}=T(),{navigate:c,options:y}=E(),w=y.wallet;hd(()=>{let u=document.querySelector("#email-input");u==null||u.focus()},[]);let d=En(t),h=()=>{n(!0),l(t).then(()=>{c("AWAITING_PASSWORDLESS_CODE")}).catch(u=>{let m=(u==null?void 0:u.status)===401&&(u==null?void 0:u.message)==="User is not allowed to login to this app.";(u==null?void 0:u.status)===422?a(u.message):m?c("ALLOWLIST_REJECTION_SCREEN"):a("Issue submitting email"),n(!1)})},f="Get started without a wallet.";return i?f=i:s?f="Easily connect an email":w||(f="Get started quickly with email"),Dr(wd,{children:[Dr(md,{stacked:e.stacked,children:[Dr(gd,{standalone:e.stacked,children:[St(Ao,{}),St("input",{id:"email-input",type:"email",placeholder:"your@email.com",onChange:u=>o(u.target.value),onKeyUp:u=>{u.key==="Enter"&&h()},value:t,autoComplete:"email"})]}),e.stacked?null:St(fd,{disabled:r||!d,onClick:h,children:r?St(ft,{}):"Submit"})]}),St(yd,{fail:!!i,children:f}),e.stacked?St(me,{loading:r,loadingText:null,disabled:r||!d,onClick:h,children:"Submit"}):null]})},md=Po.div`
857
857
  border: 1px solid var(--border-color-1);
858
858
  width: 100%;
859
859
  height: ${e=>e.stacked?"100%":"auto"};
@@ -866,7 +866,7 @@ Resources:
866
866
  @media (max-width: 440px) {
867
867
  margin-top: 20px;
868
868
  }
869
- `,Ja=ao.button`
869
+ `,fd=Po.button`
870
870
  display: flex;
871
871
  flex-direction: row;
872
872
  align-items: center;
@@ -897,7 +897,7 @@ Resources:
897
897
  color: var(--disabled-fg);
898
898
  cursor: not-allowed;
899
899
  }
900
- `,Ya=ao.label`
900
+ `,gd=Po.label`
901
901
  display: flex;
902
902
  flex-direction: row;
903
903
  align-items: center;
@@ -934,7 +934,7 @@ Resources:
934
934
  line-height: 24px;
935
935
  }
936
936
  }
937
- `,Xa=ao.div`
937
+ `,yd=Po.div`
938
938
  line-height: 20px;
939
939
  height: 20px;
940
940
  font-size: 13px;
@@ -947,7 +947,7 @@ Resources:
947
947
  > a {
948
948
  text-decoration: underline;
949
949
  }
950
- `;import{useEffect as el,useState as pr}from"react";import po from"styled-components";import{jsx as ii}from"react/jsx-runtime";var co=({style:e,...t})=>ii("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 20 20",strokeWidth:1.5,stroke:"currentColor",style:{height:"1.5rem",width:"1.5rem",...e},...t,children:ii("path",{d:"M2.5 4.16667C2.5 3.72464 2.67559 3.30072 2.98816 2.98816C3.30072 2.67559 3.72464 2.5 4.16667 2.5H6.9C7.07483 2.50013 7.24519 2.55525 7.38696 2.65754C7.52874 2.75984 7.63475 2.90413 7.69 3.07L8.93833 6.81417C9.00158 7.00445 8.9941 7.21116 8.91726 7.39637C8.84042 7.58158 8.69938 7.73288 8.52 7.8225L6.63917 8.76417C7.5611 10.8046 9.19538 12.4389 11.2358 13.3608L12.1775 11.48C12.2671 11.3006 12.4184 11.1596 12.6036 11.0827C12.7888 11.0059 12.9956 10.9984 13.1858 11.0617L16.93 12.31C17.096 12.3653 17.2404 12.4714 17.3427 12.6134C17.445 12.7553 17.5 12.9259 17.5 13.1008V15.8333C17.5 16.2754 17.3244 16.6993 17.0118 17.0118C16.6993 17.3244 16.2754 17.5 15.8333 17.5H15C8.09667 17.5 2.5 11.9033 2.5 5V4.16667Z",strokeLinecap:"round",strokeLinejoin:"round"})});import{Fragment as il,jsx as ft,jsxs as ur}from"react/jsx-runtime";var uo=e=>{let[t,o]=pr(""),[r,n]=pr(!1),[i,s]=pr(null),{isLinking:a,initLoginWithSms:d}=_(),{navigate:u,options:x}=v(),E=x.wallet;el(()=>{let c=document.querySelector("#phone-number-input");c==null||c.focus()},[]);let m=jr(t),g=()=>{n(!0),d(t).then(()=>{u("AWAITING_PASSWORDLESS_CODE")}).catch(c=>{let b=(c==null?void 0:c.status)===401&&(c==null?void 0:c.message)==="User is not allowed to login to this app.";(c==null?void 0:c.status)===422?s(c.message):b?u("ALLOWLIST_REJECTION_SCREEN"):s("Issue submitting phone number"),n(!1)})},f="Get started without a wallet.";return i?f=i:a?f="Easily connect a phone number":E||(f="Get started quickly with your phone"),ur(il,{children:[ur(tl,{stacked:e.stacked,children:[ur(rl,{standalone:e.stacked,children:[ft(co,{}),ft("input",{id:"phone-number-input",type:"tel",placeholder:"555 555 5555",onChange:c=>{o(c.target.value)},onKeyUp:c=>{c.key==="Enter"&&g()},value:t,autoComplete:"tel"})]}),e.stacked?null:ft(ol,{disabled:r||!m,onClick:g,children:r?ft(rt,{}):"Submit"})]}),ft(nl,{fail:!!i,children:f}),e.stacked?ft(de,{loading:r,loadingText:null,disabled:r||!m,onClick:g,children:"Submit"}):null]})},tl=po.div`
950
+ `;import{useEffect as vd,useState as Fr}from"react";import Wo from"styled-components";import{jsx as Ia}from"react/jsx-runtime";var To=({style:e,...t})=>Ia("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 20 20",strokeWidth:1.5,stroke:"currentColor",style:{height:"1.5rem",width:"1.5rem",...e},...t,children:Ia("path",{d:"M2.5 4.16667C2.5 3.72464 2.67559 3.30072 2.98816 2.98816C3.30072 2.67559 3.72464 2.5 4.16667 2.5H6.9C7.07483 2.50013 7.24519 2.55525 7.38696 2.65754C7.52874 2.75984 7.63475 2.90413 7.69 3.07L8.93833 6.81417C9.00158 7.00445 8.9941 7.21116 8.91726 7.39637C8.84042 7.58158 8.69938 7.73288 8.52 7.8225L6.63917 8.76417C7.5611 10.8046 9.19538 12.4389 11.2358 13.3608L12.1775 11.48C12.2671 11.3006 12.4184 11.1596 12.6036 11.0827C12.7888 11.0059 12.9956 10.9984 13.1858 11.0617L16.93 12.31C17.096 12.3653 17.2404 12.4714 17.3427 12.6134C17.445 12.7553 17.5 12.9259 17.5 13.1008V15.8333C17.5 16.2754 17.3244 16.6993 17.0118 17.0118C16.6993 17.3244 16.2754 17.5 15.8333 17.5H15C8.09667 17.5 2.5 11.9033 2.5 5V4.16667Z",strokeLinecap:"round",strokeLinejoin:"round"})});import{Fragment as Ld,jsx as At,jsxs as Br}from"react/jsx-runtime";var Mo=e=>{let[t,o]=Fr(""),[r,n]=Fr(!1),[i,a]=Fr(null),{isLinking:s,initLoginWithSms:l}=T(),{navigate:c,options:y}=E(),w=y.wallet;vd(()=>{let u=document.querySelector("#phone-number-input");u==null||u.focus()},[]);let d=Ln(t),h=()=>{n(!0),l(t).then(()=>{c("AWAITING_PASSWORDLESS_CODE")}).catch(u=>{let m=(u==null?void 0:u.status)===401&&(u==null?void 0:u.message)==="User is not allowed to login to this app.";(u==null?void 0:u.status)===422?a(u.message):m?c("ALLOWLIST_REJECTION_SCREEN"):a("Issue submitting phone number"),n(!1)})},f="Get started without a wallet.";return i?f=i:s?f="Easily connect a phone number":w||(f="Get started quickly with your phone"),Br(Ld,{children:[Br(Cd,{stacked:e.stacked,children:[Br(xd,{standalone:e.stacked,children:[At(To,{}),At("input",{id:"phone-number-input",type:"tel",placeholder:"555 555 5555",onChange:u=>{o(u.target.value)},onKeyUp:u=>{u.key==="Enter"&&h()},value:t,autoComplete:"tel"})]}),e.stacked?null:At(bd,{disabled:r||!d,onClick:h,children:r?At(ft,{}):"Submit"})]}),At(Ed,{fail:!!i,children:f}),e.stacked?At(me,{loading:r,loadingText:null,disabled:r||!d,onClick:h,children:"Submit"}):null]})},Cd=Wo.div`
951
951
  display: flex;
952
952
  border: 1px solid var(--border-color-1);
953
953
  width: 100%;
@@ -961,7 +961,7 @@ Resources:
961
961
  @media (max-width: 440px) {
962
962
  margin-top: 20px;
963
963
  }
964
- `,ol=po.button`
964
+ `,bd=Wo.button`
965
965
  display: flex;
966
966
  flex-direction: row;
967
967
  align-items: center;
@@ -992,7 +992,7 @@ Resources:
992
992
  color: var(--disabled-fg);
993
993
  cursor: not-allowed;
994
994
  }
995
- `,rl=po.label`
995
+ `,xd=Wo.label`
996
996
  display: flex;
997
997
  flex-direction: row;
998
998
  align-items: center;
@@ -1029,7 +1029,7 @@ Resources:
1029
1029
  line-height: 24px;
1030
1030
  }
1031
1031
  }
1032
- `,nl=po.div`
1032
+ `,Ed=Wo.div`
1033
1033
  line-height: 20px;
1034
1034
  height: 20px;
1035
1035
  font-size: 13px;
@@ -1042,13 +1042,13 @@ Resources:
1042
1042
  > a {
1043
1043
  text-decoration: underline;
1044
1044
  }
1045
- `;import Wt from"styled-components";import{jsx as Tt,jsxs as sl}from"react/jsx-runtime";var ho=({logoFill:e,style:t,...o})=>sl("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 71 55",style:{height:"24px",...t},...o,children:[Tt("g",{clipPath:"url(#clip0)",children:Tt("path",{d:"M60.1045 4.8978C55.5792 2.8214 50.7265 1.2916 45.6527 0.41542C45.5603 0.39851 45.468 0.440769 45.4204 0.525289C44.7963 1.6353 44.105 3.0834 43.6209 4.2216C38.1637 3.4046 32.7345 3.4046 27.3892 4.2216C26.905 3.0581 26.1886 1.6353 25.5617 0.525289C25.5141 0.443589 25.4218 0.40133 25.3294 0.41542C20.2584 1.2888 15.4057 2.8186 10.8776 4.8978C10.8384 4.9147 10.8048 4.9429 10.7825 4.9795C1.57795 18.7309 -0.943561 32.1443 0.293408 45.3914C0.299005 45.4562 0.335386 45.5182 0.385761 45.5576C6.45866 50.0174 12.3413 52.7249 18.1147 54.5195C18.2071 54.5477 18.305 54.5139 18.3638 54.4378C19.7295 52.5728 20.9469 50.6063 21.9907 48.5383C22.0523 48.4172 21.9935 48.2735 21.8676 48.2256C19.9366 47.4931 18.0979 46.6 16.3292 45.5858C16.1893 45.5041 16.1781 45.304 16.3068 45.2082C16.679 44.9293 17.0513 44.6391 17.4067 44.3461C17.471 44.2926 17.5606 44.2813 17.6362 44.3151C29.2558 49.6202 41.8354 49.6202 53.3179 44.3151C53.3935 44.2785 53.4831 44.2898 53.5502 44.3433C53.9057 44.6363 54.2779 44.9293 54.6529 45.2082C54.7816 45.304 54.7732 45.5041 54.6333 45.5858C52.8646 46.6197 51.0259 47.4931 49.0921 48.2228C48.9662 48.2707 48.9102 48.4172 48.9718 48.5383C50.038 50.6034 51.2554 52.5699 52.5959 54.435C52.6519 54.5139 52.7526 54.5477 52.845 54.5195C58.6464 52.7249 64.529 50.0174 70.6019 45.5576C70.6551 45.5182 70.6887 45.459 70.6943 45.3942C72.1747 30.0791 68.2147 16.7757 60.1968 4.9823C60.1772 4.9429 60.1437 4.9147 60.1045 4.8978ZM23.7259 37.3253C20.2276 37.3253 17.3451 34.1136 17.3451 30.1693C17.3451 26.225 20.1717 23.0133 23.7259 23.0133C27.308 23.0133 30.1626 26.2532 30.1066 30.1693C30.1066 34.1136 27.28 37.3253 23.7259 37.3253ZM47.3178 37.3253C43.8196 37.3253 40.9371 34.1136 40.9371 30.1693C40.9371 26.225 43.7636 23.0133 47.3178 23.0133C50.9 23.0133 53.7545 26.2532 53.6986 30.1693C53.6986 34.1136 50.9 37.3253 47.3178 37.3253Z",fill:e==="primary"?"#5865f2":"white"})}),Tt("defs",{children:Tt("clipPath",{id:"clip0",children:Tt("rect",{width:"71",height:"55",fill:"white"})})})]});import{jsx as si}from"react/jsx-runtime";var mo=({logoFill:e,style:t,...o})=>si("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"24",y:"24",viewBox:"0 0 98 96",style:{height:"24px",...t},...o,children:si("path",{d:"M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z",fill:e==="primary"?"#2D333B":"white"})});import{jsx as fo,jsxs as al}from"react/jsx-runtime";var go=({style:e,...t})=>al("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"26px",width:"26px",...e},...t,children:[fo("path",{d:"M22.56 12.25C22.56 11.47 22.49 10.72 22.36 10H12V14.255H17.92C17.665 15.63 16.89 16.795 15.725 17.575V20.335H19.28C21.36 18.42 22.56 15.6 22.56 12.25Z",fill:"#4285F4"}),fo("path",{d:"M12 23C14.97 23 17.46 22.015 19.28 20.335L15.725 17.575C14.74 18.235 13.48 18.625 12 18.625C9.13504 18.625 6.71004 16.69 5.84504 14.09H2.17004V16.94C3.98004 20.535 7.70004 23 12 23Z",fill:"#34A853"}),fo("path",{d:"M5.845 14.09C5.625 13.43 5.5 12.725 5.5 12C5.5 11.275 5.625 10.57 5.845 9.91V7.06H2.17C1.4 8.59286 0.999321 10.2846 1 12C1 13.775 1.425 15.455 2.17 16.94L5.845 14.09Z",fill:"#FBBC05"}),fo("path",{d:"M12 5.375C13.615 5.375 15.065 5.93 16.205 7.02L19.36 3.865C17.455 2.09 14.965 1 12 1C7.70004 1 3.98004 3.465 2.17004 7.06L5.84504 9.91C6.71004 7.31 9.13504 5.375 12 5.375Z",fill:"#EA4335"})]});import{jsx as ai}from"react/jsx-runtime";var yo=({style:e,logoFill:t,...o})=>ai("svg",{width:"24",height:"20",viewBox:"0 0 24 20",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"26px",width:"26px",...e},...o,children:ai("path",{d:"M7.54311 19.7551C16.5973 19.7551 21.5516 12.2467 21.5516 5.74656C21.5516 5.53533 21.5516 5.32409 21.542 5.11286C22.5021 4.42156 23.3375 3.54783 24 2.55888C23.1166 2.95254 22.1661 3.21178 21.1675 3.3366C22.1853 2.73171 22.963 1.76196 23.3375 0.609788C22.3869 1.17627 21.3308 1.57953 20.2074 1.80037C19.3049 0.840223 18.0279 0.244934 16.6165 0.244934C13.8993 0.244934 11.6909 2.45326 11.6909 5.17047C11.6909 5.55453 11.7389 5.92898 11.8157 6.29384C7.72554 6.09221 4.09619 4.12391 1.66703 1.14747C1.24457 1.87718 1.00453 2.72211 1.00453 3.62464C1.00453 5.3337 1.87826 6.84112 3.19366 7.72445C2.38714 7.69565 1.62862 7.47481 0.966125 7.10996C0.966125 7.12916 0.966125 7.14837 0.966125 7.17717C0.966125 9.55833 2.66558 11.5554 4.91232 12.0067C4.49945 12.1219 4.06739 12.1795 3.61612 12.1795C3.29927 12.1795 2.99203 12.1507 2.69438 12.0931C3.31848 14.0518 5.14275 15.4728 7.29347 15.5112C5.60362 16.8362 3.4817 17.6235 1.17736 17.6235C0.783698 17.6235 0.390039 17.6043 0.00598145 17.5563C2.17591 18.9389 4.76829 19.7551 7.54311 19.7551Z",fill:t==="primary"?"#1da1f2":"white"})});import{jsx as Ue,jsxs as hl}from"react/jsx-runtime";var li=({showGoogle:e,showTwitter:t,showDiscord:o,showGithub:r,stacked:n})=>{let{initLoginWithOAuth:i}=_();return hl(ll,{stacked:n,children:[e&&Ue(ul,{onClick:()=>{i("google")},children:Ue(go,{})}),t&&Ue(cl,{onClick:()=>{i("twitter")},children:Ue(yo,{})}),o&&Ue(dl,{onClick:()=>{i("discord")},children:Ue(ho,{})}),r&&Ue(pl,{onClick:()=>{i("github")},children:Ue(mo,{})})]})},ll=Wt.div`
1045
+ `;import $t from"styled-components";import{jsx as Ht,jsxs as _d}from"react/jsx-runtime";var Io=({logoFill:e,style:t,...o})=>_d("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 71 55",style:{height:"24px",...t},...o,children:[Ht("g",{clipPath:"url(#clip0)",children:Ht("path",{d:"M60.1045 4.8978C55.5792 2.8214 50.7265 1.2916 45.6527 0.41542C45.5603 0.39851 45.468 0.440769 45.4204 0.525289C44.7963 1.6353 44.105 3.0834 43.6209 4.2216C38.1637 3.4046 32.7345 3.4046 27.3892 4.2216C26.905 3.0581 26.1886 1.6353 25.5617 0.525289C25.5141 0.443589 25.4218 0.40133 25.3294 0.41542C20.2584 1.2888 15.4057 2.8186 10.8776 4.8978C10.8384 4.9147 10.8048 4.9429 10.7825 4.9795C1.57795 18.7309 -0.943561 32.1443 0.293408 45.3914C0.299005 45.4562 0.335386 45.5182 0.385761 45.5576C6.45866 50.0174 12.3413 52.7249 18.1147 54.5195C18.2071 54.5477 18.305 54.5139 18.3638 54.4378C19.7295 52.5728 20.9469 50.6063 21.9907 48.5383C22.0523 48.4172 21.9935 48.2735 21.8676 48.2256C19.9366 47.4931 18.0979 46.6 16.3292 45.5858C16.1893 45.5041 16.1781 45.304 16.3068 45.2082C16.679 44.9293 17.0513 44.6391 17.4067 44.3461C17.471 44.2926 17.5606 44.2813 17.6362 44.3151C29.2558 49.6202 41.8354 49.6202 53.3179 44.3151C53.3935 44.2785 53.4831 44.2898 53.5502 44.3433C53.9057 44.6363 54.2779 44.9293 54.6529 45.2082C54.7816 45.304 54.7732 45.5041 54.6333 45.5858C52.8646 46.6197 51.0259 47.4931 49.0921 48.2228C48.9662 48.2707 48.9102 48.4172 48.9718 48.5383C50.038 50.6034 51.2554 52.5699 52.5959 54.435C52.6519 54.5139 52.7526 54.5477 52.845 54.5195C58.6464 52.7249 64.529 50.0174 70.6019 45.5576C70.6551 45.5182 70.6887 45.459 70.6943 45.3942C72.1747 30.0791 68.2147 16.7757 60.1968 4.9823C60.1772 4.9429 60.1437 4.9147 60.1045 4.8978ZM23.7259 37.3253C20.2276 37.3253 17.3451 34.1136 17.3451 30.1693C17.3451 26.225 20.1717 23.0133 23.7259 23.0133C27.308 23.0133 30.1626 26.2532 30.1066 30.1693C30.1066 34.1136 27.28 37.3253 23.7259 37.3253ZM47.3178 37.3253C43.8196 37.3253 40.9371 34.1136 40.9371 30.1693C40.9371 26.225 43.7636 23.0133 47.3178 23.0133C50.9 23.0133 53.7545 26.2532 53.6986 30.1693C53.6986 34.1136 50.9 37.3253 47.3178 37.3253Z",fill:e==="primary"?"#5865f2":"white"})}),Ht("defs",{children:Ht("clipPath",{id:"clip0",children:Ht("rect",{width:"71",height:"55",fill:"white"})})})]});import{jsx as Ra}from"react/jsx-runtime";var Ro=({logoFill:e,style:t,...o})=>Ra("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"24",y:"24",viewBox:"0 0 98 96",style:{height:"24px",...t},...o,children:Ra("path",{d:"M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z",fill:e==="primary"?"#2D333B":"white"})});import{jsx as Oo,jsxs as Sd}from"react/jsx-runtime";var No=({style:e,...t})=>Sd("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"26px",width:"26px",...e},...t,children:[Oo("path",{d:"M22.56 12.25C22.56 11.47 22.49 10.72 22.36 10H12V14.255H17.92C17.665 15.63 16.89 16.795 15.725 17.575V20.335H19.28C21.36 18.42 22.56 15.6 22.56 12.25Z",fill:"#4285F4"}),Oo("path",{d:"M12 23C14.97 23 17.46 22.015 19.28 20.335L15.725 17.575C14.74 18.235 13.48 18.625 12 18.625C9.13504 18.625 6.71004 16.69 5.84504 14.09H2.17004V16.94C3.98004 20.535 7.70004 23 12 23Z",fill:"#34A853"}),Oo("path",{d:"M5.845 14.09C5.625 13.43 5.5 12.725 5.5 12C5.5 11.275 5.625 10.57 5.845 9.91V7.06H2.17C1.4 8.59286 0.999321 10.2846 1 12C1 13.775 1.425 15.455 2.17 16.94L5.845 14.09Z",fill:"#FBBC05"}),Oo("path",{d:"M12 5.375C13.615 5.375 15.065 5.93 16.205 7.02L19.36 3.865C17.455 2.09 14.965 1 12 1C7.70004 1 3.98004 3.465 2.17004 7.06L5.84504 9.91C6.71004 7.31 9.13504 5.375 12 5.375Z",fill:"#EA4335"})]});import{jsx as Oa}from"react/jsx-runtime";var Uo=({style:e,logoFill:t,...o})=>Oa("svg",{width:"24",height:"20",viewBox:"0 0 24 20",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"26px",width:"26px",...e},...o,children:Oa("path",{d:"M7.54311 19.7551C16.5973 19.7551 21.5516 12.2467 21.5516 5.74656C21.5516 5.53533 21.5516 5.32409 21.542 5.11286C22.5021 4.42156 23.3375 3.54783 24 2.55888C23.1166 2.95254 22.1661 3.21178 21.1675 3.3366C22.1853 2.73171 22.963 1.76196 23.3375 0.609788C22.3869 1.17627 21.3308 1.57953 20.2074 1.80037C19.3049 0.840223 18.0279 0.244934 16.6165 0.244934C13.8993 0.244934 11.6909 2.45326 11.6909 5.17047C11.6909 5.55453 11.7389 5.92898 11.8157 6.29384C7.72554 6.09221 4.09619 4.12391 1.66703 1.14747C1.24457 1.87718 1.00453 2.72211 1.00453 3.62464C1.00453 5.3337 1.87826 6.84112 3.19366 7.72445C2.38714 7.69565 1.62862 7.47481 0.966125 7.10996C0.966125 7.12916 0.966125 7.14837 0.966125 7.17717C0.966125 9.55833 2.66558 11.5554 4.91232 12.0067C4.49945 12.1219 4.06739 12.1795 3.61612 12.1795C3.29927 12.1795 2.99203 12.1507 2.69438 12.0931C3.31848 14.0518 5.14275 15.4728 7.29347 15.5112C5.60362 16.8362 3.4817 17.6235 1.17736 17.6235C0.783698 17.6235 0.390039 17.6043 0.00598145 17.5563C2.17591 18.9389 4.76829 19.7551 7.54311 19.7551Z",fill:t==="primary"?"#1da1f2":"white"})});import{jsx as $e,jsxs as Md}from"react/jsx-runtime";var Na=({showGoogle:e,showTwitter:t,showDiscord:o,showGithub:r,stacked:n})=>{let{initLoginWithOAuth:i}=T();return Md(Ad,{stacked:n,children:[e&&$e(Wd,{onClick:()=>{i("google")},children:$e(No,{})}),t&&$e(Pd,{onClick:()=>{i("twitter")},children:$e(Uo,{})}),o&&$e(kd,{onClick:()=>{i("discord")},children:$e(Io,{})}),r&&$e(Td,{onClick:()=>{i("github")},children:$e(Ro,{})})]})},Ad=$t.div`
1046
1046
  display: flex;
1047
1047
  flex-direction: ${e=>e.stacked?"column":"row"};
1048
1048
  justify-content: space-between;
1049
1049
  width: 100%;
1050
1050
  gap: 4px;
1051
- `,cl=Wt.button`
1051
+ `,Pd=$t.button`
1052
1052
  && {
1053
1053
  border-radius: var(--border-radius-sm);
1054
1054
  cursor: pointer;
@@ -1060,7 +1060,7 @@ Resources:
1060
1060
  justify-content: center;
1061
1061
  align-items: center;
1062
1062
  }
1063
- `,dl=Wt.button`
1063
+ `,kd=$t.button`
1064
1064
  && {
1065
1065
  border-radius: var(--border-radius-sm);
1066
1066
  cursor: pointer;
@@ -1072,7 +1072,7 @@ Resources:
1072
1072
  justify-content: center;
1073
1073
  align-items: center;
1074
1074
  }
1075
- `,pl=Wt.button`
1075
+ `,Td=$t.button`
1076
1076
  && {
1077
1077
  border-radius: var(--border-radius-sm);
1078
1078
  cursor: pointer;
@@ -1084,7 +1084,7 @@ Resources:
1084
1084
  justify-content: center;
1085
1085
  align-items: center;
1086
1086
  }
1087
- `,ul=Wt.button`
1087
+ `,Wd=$t.button`
1088
1088
  && {
1089
1089
  border-radius: var(--border-radius-sm);
1090
1090
  cursor: pointer;
@@ -1097,11 +1097,11 @@ Resources:
1097
1097
  align-items: center;
1098
1098
  border: 1px solid var(--border-color-2);
1099
1099
  }
1100
- `;import{isMobile as di}from"react-device-detect";import pi from"styled-components";import{isIOS as ml,isMobile as fl}from"react-device-detect";var hr=e=>{let t=new URL(window.location.href);if(!window.ethereum&&fl){let o;switch(e){case"metamask":ml?o="dapp://"+t.hostname+t.pathname:o="https://metamask.app.link/dapp/"+t.hostname+t.pathname;break;case"coinbase_wallet":o="https://go.cb-w.com/dapp?cb_url="+encodeURIComponent(t.href.replace(/\/$/g,""));break;case"wallet_connect":break;default:break}o&&window.location.assign(o)}};import gl from"styled-components";var ci=gl.span`
1100
+ `;import{isMobile as Fa}from"react-device-detect";import Ba from"styled-components";import{isIOS as Id,isMobile as Rd}from"react-device-detect";var Ua=e=>{let t=new URL(window.location.href);if(!window.ethereum&&Rd){let o;switch(e){case"metamask":Id?o="dapp://"+t.hostname+t.pathname:o="https://metamask.app.link/dapp/"+t.hostname+t.pathname;break;case"coinbase_wallet":o="https://go.cb-w.com/dapp?cb_url="+encodeURIComponent(t.href.replace(/\/$/g,""));break;case"wallet_connect":break;default:break}o&&window.location.assign(o)}};import Od from"styled-components";var Da=Od.span`
1101
1101
  @media (max-width: 440px) {
1102
1102
  display: none;
1103
1103
  }
1104
- `;import{jsx as We,jsxs as Rt}from"react/jsx-runtime";var wo=()=>{let{navigate:e}=v(),{initLoginWithWallet:t,closePrivyModal:o}=_();return Rt(yl,{children:[Rt(mr,{onClick:()=>{No()?(t("metamask"),e("AWAITING_CONNECTION")):di?(hr("metamask"),o()):e("INSTALL_METAMASK_SCREEN")},children:[We(ce,{}),We("span",{children:"Metamask"}),We("span",{children:No()?"Connect":"Install"})]}),Rt(mr,{onClick:()=>{jt()?(t("coinbase_wallet"),e("AWAITING_CONNECTION")):di?(hr("coinbase_wallet"),o()):(t("coinbase_wallet"),e("AWAITING_CONNECTION"))},children:[We(le,{}),Rt("span",{children:["Coinbase",We(ci,{children:" Wallet"})]}),We("span",{children:"Connect"})]}),Rt(mr,{onClick:()=>{t("wallet_connect"),e("AWAITING_CONNECTION")},children:[We(Re,{}),We("span",{children:"WalletConnect"}),We("span",{children:"Connect"})]})]})},yl=pi.div`
1104
+ `;import{jsx as Ue,jsxs as jt}from"react/jsx-runtime";var Do=()=>{let{navigate:e}=E(),{initLoginWithWallet:t,closePrivyModal:o}=T();return jt(Nd,{children:[jt(Gr,{onClick:()=>{cr()?(t("metamask"),e("AWAITING_CONNECTION")):Fa?(t("metamask_wc"),e("AWAITING_CONNECTION")):e("INSTALL_METAMASK_SCREEN")},children:[Ue(z,{}),Ue("span",{children:"Metamask"}),Ue("span",{children:cr()?"Connect":"Install"})]}),jt(Gr,{onClick:()=>{ho()?(t("coinbase_wallet"),e("AWAITING_CONNECTION")):Fa?(Ua("coinbase_wallet"),o()):(t("coinbase_wallet"),e("AWAITING_CONNECTION"))},children:[Ue(pe,{}),jt("span",{children:["Coinbase",Ue(Da,{children:" Wallet"})]}),Ue("span",{children:"Connect"})]}),jt(Gr,{onClick:()=>{t("wallet_connect"),e("AWAITING_CONNECTION")},children:[Ue(Fe,{}),Ue("span",{children:"WalletConnect"}),Ue("span",{children:"Connect"})]})]})},Nd=Ba.div`
1105
1105
  display: flex;
1106
1106
  flex-direction: column;
1107
1107
  align-items: flex-start;
@@ -1111,7 +1111,7 @@ Resources:
1111
1111
  @media (max-width: 440px) {
1112
1112
  flex-direction: row;
1113
1113
  }
1114
- `,mr=pi.button`
1114
+ `,Gr=Ba.button`
1115
1115
  display: flex;
1116
1116
  flex-direction: row;
1117
1117
  align-items: center;
@@ -1178,7 +1178,7 @@ Resources:
1178
1178
  :hover > :last-child {
1179
1179
  opacity: 1;
1180
1180
  }
1181
- `;import wl from"styled-components";import{jsx as ui,jsxs as Cl}from"react/jsx-runtime";var vo=()=>{let{navigate:e}=v();return Cl(vl,{children:[ui("span",{children:"Don\u2019t have a wallet? "}),ui("button",{onClick:()=>{e("WALLET_EDUCATION")},children:"Create one now."})]})},vl=wl.div`
1181
+ `;import Ud from"styled-components";import{jsx as Ga,jsxs as Fd}from"react/jsx-runtime";var Fo=()=>{let{navigate:e}=E();return Fd(Dd,{children:[Ga("span",{children:"Don\u2019t have a wallet? "}),Ga("button",{onClick:()=>{e("WALLET_EDUCATION")},children:"Create one now."})]})},Dd=Ud.div`
1182
1182
  font-size: 13px;
1183
1183
  color: var(--light-theme-fg-3);
1184
1184
 
@@ -1189,13 +1189,13 @@ Resources:
1189
1189
  @media (max-width: 440px) {
1190
1190
  margin-top: 4px;
1191
1191
  }
1192
- `;import{Fragment as fr,jsx as G,jsxs as Ze}from"react/jsx-runtime";var fi=()=>{let{app:e,options:t}=v(),o=t.email,r=t.sms,n=t.wallet,i=t.google,s=t.twitter,a=t.discord,d=t.github,u=n&&(e==null?void 0:e.showWalletLoginFirst)?0:1,[x,E]=bl(u),m=x==0,g=x==1,f=n,c=o||r;return Ze(fr,{children:[G(A,{},"header"),G(Pl,{hasOnlyOneSection:f!==c,hasTerms:!!((e==null?void 0:e.privacyPolicyUrl)||(e==null?void 0:e.termsAndConditionsUrl)),children:G(ri,{})}),Ze(_l,{reverse:!(e!=null&&e.showWalletLoginFirst),children:[f&&G(xl,{active:m,onClick:()=>E(0),isOnlySection:!c}),c&&G(El,{active:g,onClick:()=>E(1),email:o,sms:r,google:i,twitter:s,discord:a,github:d,isOnlySection:!f})]}),e&&G(vn,{app:e}),G(z,{protectedByPrivy:!0})]})};function xl(e){return Ze(yi,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,children:[G(gi,{active:e.active,children:G("h4",{children:"Connect Wallet"})}),e.active&&Ze(fr,{children:[G(wo,{}),G(vo,{})]})]})}function El(e){let t=e.google||e.discord||e.github||e.twitter&&!hi,o=e.email?"Email":"Phone";return Ze(yi,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,children:[e.isOnlySection?null:G(gi,{active:e.active,children:G("h4",{children:t?`${o} & Social`:o})}),e.active&&e.email&&G(lo,{}),e.active&&e.sms&&!e.email&&G(uo,{}),e.active&&t&&G(Ll,{google:e.google,twitter:e.twitter&&!hi,discord:e.discord,github:e.github})]})}function Ll(e){return Ze(fr,{children:[Ze(Al,{children:[G(mi,{}),G("p",{children:" Or "}),G(mi,{})]}),G(li,{showGoogle:e.google,showDiscord:e.discord,showGithub:e.github,showTwitter:e.twitter})]})}var gi=gt.div`
1192
+ `;import{Fragment as Vr,jsx as V,jsxs as ot}from"react/jsx-runtime";var $a=()=>{let{app:e,options:t}=E(),o=t.email,r=t.sms,n=t.wallet,i=t.google,a=t.twitter,s=t.discord,l=t.github,c=n&&(e==null?void 0:e.showWalletLoginFirst)?0:1,[y,w]=Bd(c),d=y==0,h=y==1,f=n,u=o||r;return ot(Vr,{children:[V(S,{},"header"),V(jd,{hasOnlyOneSection:f!==u,hasTerms:!!((e==null?void 0:e.privacyPolicyUrl)||(e==null?void 0:e.termsAndConditionsUrl)),children:V(Wa,{})}),ot(zd,{reverse:!(e!=null&&e.showWalletLoginFirst),children:[f&&V(Gd,{active:d,onClick:()=>w(0),isOnlySection:!u}),u&&V(Vd,{active:h,onClick:()=>w(1),email:o,sms:r,google:i,twitter:a,discord:s,github:l,isOnlySection:!f})]}),e&&V(qi,{app:e}),V(Z,{protectedByPrivy:!0})]})};function Gd(e){return ot(za,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,children:[V(ja,{active:e.active,children:V("h4",{children:"Connect Wallet"})}),e.active&&ot(Vr,{children:[V(Do,{}),V(Fo,{})]})]})}function Vd(e){let t=e.google||e.discord||e.github||e.twitter&&!Va,o=e.email?"Email":"Phone";return ot(za,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,children:[e.isOnlySection?null:V(ja,{active:e.active,children:V("h4",{children:t?`${o} & Social`:o})}),e.active&&e.email&&V(ko,{}),e.active&&e.sms&&!e.email&&V(Mo,{}),e.active&&t&&V(Hd,{google:e.google,twitter:e.twitter&&!Va,discord:e.discord,github:e.github})]})}function Hd(e){return ot(Vr,{children:[ot($d,{children:[V(Ha,{}),V("p",{children:" Or "}),V(Ha,{})]}),V(Na,{showGoogle:e.google,showDiscord:e.discord,showGithub:e.github,showTwitter:e.twitter})]})}var ja=Pt.div`
1193
1193
  font-weight: ${e=>e.active?600:500};
1194
1194
  color: ${e=>e.active?"inherit":"var(--light-theme-fg-3)"};
1195
1195
  display: flex;
1196
1196
  justify-content: center;
1197
1197
  align-items: center;
1198
- `,yi=gt.div`
1198
+ `,za=Pt.div`
1199
1199
  display: flex;
1200
1200
  flex-direction: column;
1201
1201
  align-items: flex-start;
@@ -1220,18 +1220,18 @@ Resources:
1220
1220
  }
1221
1221
 
1222
1222
  cursor: ${e=>e.active?"inherit":"pointer"};
1223
- `,Al=gt.div`
1223
+ `,$d=Pt.div`
1224
1224
  display: flex;
1225
1225
  justify-content: center;
1226
1226
  align-items: center;
1227
1227
  width: 100%;
1228
- `,mi=gt.hr`
1228
+ `,Ha=Pt.hr`
1229
1229
  width: 50%;
1230
1230
  && {
1231
1231
  border-top: 1px solid var(--border-color-1);
1232
1232
  margin: 0px 8px;
1233
1233
  }
1234
- `,Pl=gt.div`
1234
+ `,jd=Pt.div`
1235
1235
  display: flex;
1236
1236
  flex-direction: column;
1237
1237
  align-items: center;
@@ -1250,9 +1250,9 @@ Resources:
1250
1250
  // the logo is close to the top (mobile or full wallet-open design)
1251
1251
  margin-top: ${e=>`${28+(e.hasOnlyOneSection?31:0)-(e.hasTerms?18:0)}px`};
1252
1252
  margin-bottom: ${e=>`${60+(e.hasOnlyOneSection?31:0)-(e.hasTerms?18:0)}px`};
1253
- `,_l=gt(Ne)`
1253
+ `,zd=Pt(Ve)`
1254
1254
  flex-direction: ${e=>e.reverse?"column-reverse":"column"};
1255
- `;import{Fragment as Sl,jsx as yt,jsxs as kl}from"react/jsx-runtime";var wi=()=>{let{app:e}=v();return kl(Sl,{children:[yt(A,{},"header"),yt(st,{title:"Connect your email",description:`Add your email to your ${e==null?void 0:e.name} account`,icon:yt(so,{})}),yt(Ne,{children:yt(lo,{stacked:!0})}),yt(z,{protectedByPrivy:!0})]})};import{Fragment as Tl,jsx as wt,jsxs as Wl}from"react/jsx-runtime";var vi=()=>{let{app:e}=v();return Wl(Tl,{children:[wt(A,{},"header"),wt(st,{title:"Connect your phone",description:`Add your number to your ${e==null?void 0:e.name} account`,icon:wt(co,{})}),wt(Ne,{children:wt(uo,{stacked:!0})}),wt(z,{protectedByPrivy:!0})]})};import{Fragment as Rl,jsx as Mt,jsxs as Ci}from"react/jsx-runtime";var bi=()=>{let{linkingHint:e}=_(),{app:t}=v(),o=e?`Select the wallet with ${Ve(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 Ci(Rl,{children:[Mt(A,{},"header"),Mt(bn,{title:`${e?"Reconnect":"Connect"} your wallet`,description:o}),Ci(Ne,{children:[Mt(wo,{}),Mt(vo,{})]}),Mt(z,{protectedByPrivy:!0})]})};import{useEffect as xi,useState as Ei}from"react";import yr from"styled-components";import{Fragment as Ul,jsx as qe,jsxs as Co}from"react/jsx-runtime";var Li={google:{name:"Google",component:go},discord:{name:"Discord",component:ho},github:{name:"Github",component:mo},twitter:{name:"Twitter",component:yo}},Ml=e=>e.charAt(0).toUpperCase()+e.slice(1),gr=()=>{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)},Ai=()=>{var T;let{ready:e,user:t,authenticated:o}=$(),{data:r,setModalData:n,navigate:i}=v(),{getAuthMeta:s,initLoginWithOAuth:a,loginWithOAuth:d,closePrivyModal:u}=_(),[x,E]=Ei(!1),[m,g]=Ei(void 0),f=((T=s())==null?void 0:T.provider)||"google",c=Li[f].name,b=Li[f].component;xi(()=>{!e||d().then(()=>{gr(),E(!0)}).catch(S=>{let N={retryable:!1,message:"Authentication failed."};S.message.includes("Another user has already linked this")?N.detail="This account has already been linked to another user.":S.message==="Invalid code during oauth flow."?(N.retryable=!0,N.detail="Something went wrong. Try again."):S.message==="User denied confirmation during OAuth flow"&&(N.detail=`Retry and check ${Ml(f)} to finish connecting your account.`,N.retryable=!0),gr(),g(N)})},[e]),xi(()=>{var V;if(!(o&&x&&t))return;if(((V=r==null?void 0:r.login)==null?void 0:V.promptCreatePrivyWalletFlow)&&!t.wallet){let Z=setTimeout(()=>{n({createWallet:{onSuccess:()=>{},onFailure:D=>console.error(D),callAuthOnSuccessOnClose:!0}}),i("EMBEDDED_WALLET_SCREEN")},ae-500);return()=>clearTimeout(Z)}else{let Z=setTimeout(u,ae);return()=>clearTimeout(Z)}},[o,x,t]);let I=x?`Successfully connected with ${c}`:m?m.message:`Verifying connection to ${c}`,k="";return x?k="You\u2019re good to go!":m?k=m.detail:k="Just a few moments more",Co(Ul,{children:[qe(A,{}),Co(Il,{children:[qe(Ol,{children:Co("div",{children:[qe(ot,{success:x,fail:!!m}),qe(b,{style:{width:"38px",height:"38px"},logoFill:"primary"})]})}),Co(Nl,{children:[qe("h3",{children:I}),qe("p",{children:k})]}),qe(ee,{onClick:()=>{gr(),a(f),g(void 0)},invisible:x||!(m!=null&&m.retryable),disabled:!x&&!(m!=null&&m.retryable),children:"Retry"})]})]})},Il=yr.div`
1255
+ `;import{Fragment as qd,jsx as kt,jsxs as Zd}from"react/jsx-runtime";var qa=()=>{let{app:e}=E();return Zd(qd,{children:[kt(S,{},"header"),kt(wt,{title:"Connect your email",description:`Add your email to your ${e==null?void 0:e.name} account`,icon:kt(Ao,{})}),kt(Ve,{children:kt(ko,{stacked:!0})}),kt(Z,{protectedByPrivy:!0})]})};import{Fragment as Kd,jsx as Tt,jsxs as Jd}from"react/jsx-runtime";var Za=()=>{let{app:e}=E();return Jd(Kd,{children:[Tt(S,{},"header"),Tt(wt,{title:"Connect your phone",description:`Add your number to your ${e==null?void 0:e.name} account`,icon:Tt(To,{})}),Tt(Ve,{children:Tt(Mo,{stacked:!0})}),Tt(Z,{protectedByPrivy:!0})]})};import{Fragment as Yd,jsx as zt,jsxs as Ka}from"react/jsx-runtime";var Ja=()=>{let{linkingHint:e}=T(),{app:t}=E(),o=e?`Select the wallet with ${Je(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 Ka(Yd,{children:[zt(S,{},"header"),zt(Ki,{title:`${e?"Reconnect":"Connect"} your wallet`,description:o}),Ka(Ve,{children:[zt(Do,{}),zt(Fo,{})]}),zt(Z,{protectedByPrivy:!0})]})};import{useEffect as Ya,useState as Xa}from"react";import $r from"styled-components";import{Fragment as o1,jsx as rt,jsxs as Bo}from"react/jsx-runtime";var Qa={google:{name:"Google",component:No},discord:{name:"Discord",component:Io},github:{name:"Github",component:Ro},twitter:{name:"Twitter",component:Uo}},Xd=e=>e.charAt(0).toUpperCase()+e.slice(1),Hr=()=>{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)},es=()=>{var M;let{ready:e,user:t,authenticated:o}=q(),{data:r,setModalData:n,navigate:i}=E(),{getAuthMeta:a,initLoginWithOAuth:s,loginWithOAuth:l,closePrivyModal:c}=T(),[y,w]=Xa(!1),[d,h]=Xa(void 0),f=((M=a())==null?void 0:M.provider)||"google",u=Qa[f].name,m=Qa[f].component;Ya(()=>{!e||l().then(()=>{Hr(),w(!0)}).catch(W=>{let U={retryable:!1,message:"Authentication failed."};W.message.includes("Another user has already linked this")?U.detail="This account has already been linked to another user.":W.message==="Invalid code during oauth flow."?(U.retryable=!0,U.detail="Something went wrong. Try again."):W.message==="User denied confirmation during OAuth flow"&&(U.detail=`Retry and check ${Xd(f)} to finish connecting your account.`,U.retryable=!0),Hr(),h(U)})},[e]),Ya(()=>{var j;if(!(o&&y&&t))return;if(((j=r==null?void 0:r.login)==null?void 0:j.promptCreatePrivyWalletFlow)&&!t.wallet){let J=setTimeout(()=>{n({createWallet:{onSuccess:()=>{},onFailure:B=>console.error(B),callAuthOnSuccessOnClose:!0}}),i("EMBEDDED_WALLET_SCREEN")},ue-500);return()=>clearTimeout(J)}else{let J=setTimeout(c,ue);return()=>clearTimeout(J)}},[o,y,t]);let A=y?`Successfully connected with ${u}`:d?d.message:`Verifying connection to ${u}`,P="";return y?P="You\u2019re good to go!":d?P=d.detail:P="Just a few moments more",Bo(o1,{children:[rt(S,{}),Bo(Qd,{children:[rt(t1,{children:Bo("div",{children:[rt(mt,{success:y,fail:!!d}),rt(m,{style:{width:"38px",height:"38px"},logoFill:"primary"})]})}),Bo(e1,{children:[rt("h3",{children:A}),rt("p",{children:P})]}),rt(ne,{onClick:()=>{Hr(),s(f),h(void 0)},invisible:y||!(d!=null&&d.retryable),disabled:!y&&!(d!=null&&d.retryable),children:"Retry"})]})]})},Qd=$r.div`
1256
1256
  display: flex;
1257
1257
  flex-direction: column;
1258
1258
  align-items: center;
@@ -1260,11 +1260,11 @@ Resources:
1260
1260
  margin-left: 27px;
1261
1261
  margin-right: 27px;
1262
1262
  gap: 24px;
1263
- `,Nl=yr.div`
1263
+ `,e1=$r.div`
1264
1264
  display: flex;
1265
1265
  flex-direction: column;
1266
1266
  gap: 8px;
1267
- `,Ol=yr.div`
1267
+ `,t1=$r.div`
1268
1268
  display: flex;
1269
1269
  flex-direction: column;
1270
1270
  justify-content: center;
@@ -1287,7 +1287,7 @@ Resources:
1287
1287
  left: -19px;
1288
1288
  top: -19px;
1289
1289
  }
1290
- `;import{useEffect as Pi,useState as _i}from"react";import wr from"styled-components";import{Fragment as Bl,jsx as fe,jsxs as bo}from"react/jsx-runtime";var Si=()=>{let[e,t]=_i(!1),[o,r]=_i(""),{activeStatus:n,closePrivyModal:i}=_();Pi(()=>{!n||(n.error?r(n.error):n.success&&t(!0))},[n]),Pi(()=>{if(e){let u=setTimeout(i,ae);return()=>clearTimeout(u)}},[e]);let s=n!=null&&n.address?`Please connect and select the wallet ${Ve(n.address)} in MetaMask.`:"Please connect and select the right wallet in MetaMask.",a=e?`${Ve(n==null?void 0:n.address)} is now active.`:s;return bo(Bl,{children:[fe(A,{},"header"),bo(Dl,{children:[fe(Gl,{children:bo("div",{children:[fe(ot,{success:e,fail:!!o}),(u=>{switch(u){case"metamask":return fe(ce,{style:{width:"38px",height:"38px"}});case"wallet_connect":return fe(Re,{style:{width:"38px",height:"38px"}});case"coinbase_wallet":return fe(le,{style:{width:"38px",height:"38px"}});default:return fe(ce,{style:{width:"38px",height:"38px"}})}})((n==null?void 0:n.walletType)||"metamask")]})}),bo(Fl,{children:[fe("h3",{children:e?"Wallet updated successfully":"Update your active wallet"}),fe("p",{children:a}),o&&fe("p",{children:o})]}),fe(he,{})]})]})},Dl=wr.div`
1290
+ `;import{useEffect as ts,useState as os}from"react";import jr from"styled-components";import{Fragment as a1,jsx as fe,jsxs as Go}from"react/jsx-runtime";var rs=()=>{let[e,t]=os(!1),[o,r]=os(""),{activeStatus:n,closePrivyModal:i}=T();ts(()=>{!n||(n.error?r(n.error):n.success&&t(!0))},[n]),ts(()=>{if(e){let c=setTimeout(i,ue);return()=>clearTimeout(c)}},[e]);let a=n!=null&&n.address?`Please connect and select the wallet ${Je(n.address)} in MetaMask.`:"Please connect and select the right wallet in MetaMask.",s=e?`${Je(n==null?void 0:n.address)} is now active.`:a;return Go(a1,{children:[fe(S,{},"header"),Go(r1,{children:[fe(i1,{children:Go("div",{children:[fe(mt,{success:e,fail:!!o}),(c=>{switch(c){case"metamask":return fe(z,{style:{width:"38px",height:"38px"}});case"metamask_wc":return fe(z,{style:{width:"38px",height:"38px"}});case"wallet_connect":return fe(Fe,{style:{width:"38px",height:"38px"}});case"coinbase_wallet":return fe(pe,{style:{width:"38px",height:"38px"}});default:return fe(z,{style:{width:"38px",height:"38px"}})}})((n==null?void 0:n.walletType)||"metamask")]})}),Go(n1,{children:[fe("h3",{children:e?"Wallet updated successfully":"Update your active wallet"}),fe("p",{children:s}),o&&fe("p",{children:o})]}),fe(ve,{})]})]})},r1=jr.div`
1291
1291
  display: flex;
1292
1292
  flex-direction: column;
1293
1293
  align-items: center;
@@ -1295,11 +1295,11 @@ Resources:
1295
1295
  margin-left: 27px;
1296
1296
  margin-right: 27px;
1297
1297
  gap: 24px;
1298
- `,Fl=wr.div`
1298
+ `,n1=jr.div`
1299
1299
  display: flex;
1300
1300
  flex-direction: column;
1301
1301
  gap: 8px;
1302
- `,Gl=wr.div`
1302
+ `,i1=jr.div`
1303
1303
  display: flex;
1304
1304
  flex-direction: column;
1305
1305
  justify-content: center;
@@ -1322,19 +1322,19 @@ Resources:
1322
1322
  left: -19px;
1323
1323
  top: -19px;
1324
1324
  }
1325
- `;import{useEffect as Hl,useState as ki}from"react";import It,{css as Vl}from"styled-components";import{Fragment as Kl,jsx as De,jsxs as xo}from"react/jsx-runtime";var Ti=()=>{let{authenticated:e,getAccessToken:t,user:o}=$(),{walletProxy:r,closePrivyModal:n}=_(),{navigate:i,data:s}=v(),[a,d]=ki(!1),[u,x]=ki("");Hl(()=>{e||(i("LANDING"),g(new Error("User must be authenticated before signing with a Privy wallet")))},[e]);let{message:E,onSuccess:m,onFailure:g,uiOptions:f}=s.signMessage,c=Ae(o),b=!r,I={title:f.title||"Sign message",description:f.description||"Signing this message will not cost you any fees.",buttonText:f.buttonText||"Sign and continue"};return xo(Kl,{children:[De(A,{onClose:()=>n({shouldCallAuthOnSuccess:!1})}),xo($l,{children:[xo("div",{children:[De(te,{title:I.title,description:I.description}),De(zl,{children:E}),De(jl,{fail:!0,children:u})]}),De(ql,{success:a,loading:b,disabled:a,onClick:async()=>{let k=await t();if(k&&!b&&c)try{let{signature:T}=await r.sign({accessToken:k,address:c==null?void 0:c.address,message:E});x(""),m(T),d(!0),setTimeout(()=>{n({shouldCallAuthOnSuccess:!1})},ae)}catch(T){x("An error has occurred, please try again."),g(T)}},children:a?xo(Zl,{children:[De(lt,{style:{height:"0.9rem",width:"0.9rem"},strokeWidth:2})," ",De("span",{children:"Success"})]}):I.buttonText})]}),De(z,{protectedByPrivy:!0})]})},$l=It.div`
1325
+ `;import{useEffect as s1,useState as ns}from"react";import qt,{css as l1}from"styled-components";import{Fragment as m1,jsx as je,jsxs as Vo}from"react/jsx-runtime";var is=()=>{let{authenticated:e,getAccessToken:t,user:o}=q(),{walletProxy:r,closePrivyModal:n}=T(),{navigate:i,data:a}=E(),[s,l]=ns(!1),[c,y]=ns("");s1(()=>{e||(i("LANDING"),h(new Error("User must be authenticated before signing with a Privy wallet")))},[e]);let{message:w,onSuccess:d,onFailure:h,uiOptions:f}=a.signMessage,u=We(o),m=!r,A={title:f.title||"Sign message",description:f.description||"Signing this message will not cost you any fees.",buttonText:f.buttonText||"Sign and continue"};return Vo(m1,{children:[je(S,{onClose:()=>n({shouldCallAuthOnSuccess:!1})}),Vo(c1,{children:[Vo("div",{children:[je(ie,{title:A.title,description:A.description}),je(d1,{children:w}),je(u1,{fail:!0,children:c})]}),je(h1,{success:s,loading:m,disabled:s,onClick:async()=>{let P=await t();if(P&&!m&&u)try{let{signature:M}=await r.sign({accessToken:P,address:u==null?void 0:u.address,message:w});y(""),d(M),l(!0),setTimeout(()=>{n({shouldCallAuthOnSuccess:!1})},ue)}catch(M){y("An error has occurred, please try again."),h(M)}},children:s?Vo(p1,{children:[je(Ct,{style:{height:"0.9rem",width:"0.9rem"},strokeWidth:2})," ",je("span",{children:"Success"})]}):A.buttonText})]}),je(Z,{protectedByPrivy:!0})]})},c1=qt.div`
1326
1326
  display: flex;
1327
1327
  height: 100%;
1328
1328
  flex-direction: column;
1329
1329
  justify-content: space-between;
1330
- `,zl=It.div`
1330
+ `,d1=qt.div`
1331
1331
  background-color: var(--light-theme-bg-2);
1332
1332
  border-radius: 8px;
1333
1333
  padding: 12px;
1334
1334
  text-align: left;
1335
1335
  max-height: 310px;
1336
1336
  overflow: scroll;
1337
- `,jl=It.div`
1337
+ `,u1=qt.div`
1338
1338
  line-height: 20px;
1339
1339
  height: 20px;
1340
1340
  font-size: 13px;
@@ -1343,20 +1343,20 @@ Resources:
1343
1343
  justify-content: flex-start;
1344
1344
  width: 100%;
1345
1345
  margin-top: 4px;
1346
- `,Zl=It.span`
1346
+ `,p1=qt.span`
1347
1347
  display: flex;
1348
1348
  align-items: center;
1349
1349
  gap: 8px;
1350
- `,ql=It(de)`
1350
+ `,h1=qt(me)`
1351
1351
  transition: color 350ms ease, background-color 350ms ease;
1352
1352
 
1353
- ${e=>e.success&&Vl`
1353
+ ${e=>e.success&&l1`
1354
1354
  &&&& {
1355
1355
  background-color: var(--success-light);
1356
1356
  color: var(--light-theme-bg-1);
1357
1357
  }
1358
1358
  `}
1359
- `;import Jl from"styled-components";import{jsx as Xl}from"react/jsx-runtime";var Wi=e=>{let t=qr(Zr(e.accentColor||"#696ffd"));return Xl(Yl,{accent:t,children:e.children})},Yl=Jl.div`
1359
+ `;import f1 from"styled-components";import{jsx as y1}from"react/jsx-runtime";var as=e=>{let t=Sn(_n(e.accentColor||"#696ffd"));return y1(g1,{accent:t,children:e.children})},g1=f1.div`
1360
1360
  /*! Modified from https://unpkg.com/tailwindcss@3.2.3/src/css/preflight.css */
1361
1361
 
1362
1362
  *,
@@ -1691,7 +1691,7 @@ Resources:
1691
1691
  opacity: 1;
1692
1692
  }
1693
1693
  }
1694
- `;import{jsx as M,jsxs as Ri}from"react/jsx-runtime";var nc=()=>{let{ready:e}=$(),{isLinking:t}=_(),{ready:o,currentScreen:r,app:n}=v(),i=!!(n!=null&&n.walletAuth),s=!!((n==null?void 0:n.emailAuth)||(n==null?void 0:n.smsAuth)),a=i!==s,d;return["AWAITING_CONNECTION","AWAITING_OAUTH_SCREEN","ALLOWLIST_REJECTION_SCREEN","SETTING_ACTIVE_WALLET"].includes(r)||a&&r==="LANDING"?d="compact":"WALLET_EDUCATION"===r?d="full":t?d="medium":d="full",!e||!o?Ri(at,{"data-height":d,children:[M(A,{}),M(ac,{children:M(At,{})}),M(he,{})]}):Ri(at,{"data-height":d,children:[r==="LANDING"&&M(fi,{}),r==="AWAITING_PASSWORDLESS_CODE"&&M(Pn,{}),r==="SETTING_ACTIVE_WALLET"&&M(Si,{}),r==="WALLET_EDUCATION"&&M(Kn,{}),r==="AWAITING_CONNECTION"&&M(kn,{}),r==="AWAITING_OAUTH_SCREEN"&&M(Ai,{}),r==="ALLOWLIST_REJECTION_SCREEN"&&M(mn,{}),r==="INSTALL_METAMASK_SCREEN"&&M(ti,{}),r==="INSTALL_COINBASE_WALLET_SCREEN"&&M(Qn,{}),r==="LINK_EMAIL_SCREEN"&&M(wi,{}),r==="LINK_PHONE_SCREEN"&&M(vi,{}),r==="LINK_WALLET_SCREEN"&&M(bi,{}),r==="EMBEDDED_WALLET_SCREEN"&&M(Fn,{}),r==="EMBEDDED_WALLET_CREATED_SCREEN"&&M(In,{}),r==="SIGN_REQUEST_SCREEN"&&M(Ti,{})]})},Mi=()=>{let{app:e}=v();return rc.createPortal(M(sc,{id:"privy-dialog",children:M(Wi,{accentColor:e==null?void 0:e.accentColor,children:M(nc,{})})}),document.body)},ic=({children:e,...t})=>{let o=tc(null);return oc(()=>{var n;(n=document==null?void 0:document.activeElement)==null||n.blur();let r=(document==null?void 0:document.getElementById("root"))||(document==null?void 0:document.getElementById("__next"));if(!!r)return r.setAttribute("inert","true"),Ql(o==null?void 0:o.current),()=>{let i=(document==null?void 0:document.getElementById("root"))||(document==null?void 0:document.getElementById("__next"));!i||(i.removeAttribute("inert"),ec())}},[t.open,t.onClose]),M("dialog",{open:!0,role:"dialog",...t,ref:o,children:e})},sc=vr(ic)`
1694
+ `;import{jsx as N,jsxs as ss}from"react/jsx-runtime";var E1=()=>{let{ready:e}=q(),{isLinking:t}=T(),{ready:o,currentScreen:r,app:n}=E(),i=!!(n!=null&&n.walletAuth),a=!!((n==null?void 0:n.emailAuth)||(n==null?void 0:n.smsAuth)),s=i!==a,l;return["AWAITING_CONNECTION","AWAITING_OAUTH_SCREEN","ALLOWLIST_REJECTION_SCREEN","SETTING_ACTIVE_WALLET"].includes(r)||s&&r==="LANDING"?l="compact":"WALLET_EDUCATION"===r?l="full":t?l="medium":l="full",!e||!o?ss(vt,{"data-height":l,children:[N(S,{}),N(S1,{children:N(Dt,{})}),N(ve,{})]}):ss(vt,{"data-height":l,children:[r==="LANDING"&&N($a,{}),r==="AWAITING_PASSWORDLESS_CODE"&&N(ea,{}),r==="SETTING_ACTIVE_WALLET"&&N(rs,{}),r==="WALLET_EDUCATION"&&N(Ea,{}),r==="AWAITING_CONNECTION"&&N(ra,{}),r==="AWAITING_OAUTH_SCREEN"&&N(es,{}),r==="ALLOWLIST_REJECTION_SCREEN"&&N(Vi,{}),r==="INSTALL_METAMASK_SCREEN"&&N(ka,{}),r==="INSTALL_COINBASE_WALLET_SCREEN"&&N(Aa,{}),r==="LINK_EMAIL_SCREEN"&&N(qa,{}),r==="LINK_PHONE_SCREEN"&&N(Za,{}),r==="LINK_WALLET_SCREEN"&&N(Ja,{}),r==="EMBEDDED_WALLET_SCREEN"&&N(ha,{}),r==="EMBEDDED_WALLET_CREATED_SCREEN"&&N(la,{}),r==="SIGN_REQUEST_SCREEN"&&N(is,{})]})},ls=()=>{let{app:e}=E();return x1.createPortal(N(_1,{id:"privy-dialog",children:N(as,{accentColor:e==null?void 0:e.accentColor,children:N(E1,{})})}),document.body)},L1=({children:e,...t})=>{let o=C1(null);return b1(()=>{var n;(n=document==null?void 0:document.activeElement)==null||n.blur();let r=(document==null?void 0:document.getElementById("root"))||(document==null?void 0:document.getElementById("__next"));if(!!r)return r.setAttribute("inert","true"),w1(o==null?void 0:o.current),()=>{let i=(document==null?void 0:document.getElementById("root"))||(document==null?void 0:document.getElementById("__next"));!i||(i.removeAttribute("inert"),v1())}},[t.open,t.onClose]),N("dialog",{open:!0,role:"dialog",...t,ref:o,children:e})},_1=zr(L1)`
1695
1695
  position: fixed;
1696
1696
  top: 0;
1697
1697
  left: 0;
@@ -1706,7 +1706,7 @@ Resources:
1706
1706
  z-index: 999999;
1707
1707
  -webkit-backdrop-filter: blur(3px);
1708
1708
  backdrop-filter: blur(3px);
1709
- `,at=vr.div`
1709
+ `,vt=zr.div`
1710
1710
  display: flex;
1711
1711
  flex-direction: column;
1712
1712
  text-align: center;
@@ -1743,10 +1743,10 @@ Resources:
1743
1743
  min-height: 0;
1744
1744
  }
1745
1745
  }
1746
- `,ac=vr.div`
1746
+ `,S1=zr.div`
1747
1747
  display: flex;
1748
1748
  flex-direction: column;
1749
1749
  align-items: center;
1750
1750
  justify-content: center;
1751
1751
  height: 100%;
1752
- `;import{useRef as lc,useEffect as cc}from"react";var Eo=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:sign":return r;case"privy:wallet:recover":return r;default:throw new Error(`invalid wallet event type ${t}`)}}};import{jsx as hc}from"react/jsx-runtime";var dc=function(e){return()=>`id-${e++}`}(0);function pc(e){return typeof e.event=="string"&&/^privy:.+/.test(e.event)}function Lo(e){return e.error!==void 0}var Nt=new Eo;function Ao(e,t,o){let r=o.contentWindow;if(!r)throw new Error("iframe not initialized");return new Promise((n,i)=>{let s=dc();Nt.enqueue(s,{resolve:n,reject:i}),r.postMessage({id:s,event:e,data:t},"*")})}function uc(e){switch(e.event){case"privy:iframe:ready":let t=Nt.dequeue(e.event,e.id);return Lo(e)?t.reject(new Error(e.error.message)):t.resolve(e.data);case"privy:wallet:create":let o=Nt.dequeue(e.event,e.id);return Lo(e)?o.reject(new Error(e.error.message)):o.resolve(e.data);case"privy:wallet:sign":let r=Nt.dequeue(e.event,e.id);return Lo(e)?r.reject(new Error(e.error.message)):r.resolve(e.data);case"privy:wallet:recover":let n=Nt.dequeue(e.event,e.id);return Lo(e)?n.reject(new Error(e.error.message)):n.resolve(e.data)}}function Ii(e){let t=lc(null);return cc(()=>{let o=t.current;if(!o)return;function r(a){a&&a.origin===e.origin&&pc(a.data)&&uc(a.data)}let n={create(a){return Ao("privy:wallet:create",a,o)},sign(a){return Ao("privy:wallet:sign",a,o)},recover(a){return Ao("privy:wallet:recover",a,o)}};window.addEventListener("message",r);let i=()=>e.onLoad(n),s=(...a)=>{console.error("privy iframe failed to load: ",...a),e.onLoadFailed()};return Jr(()=>Ao("privy:iframe:ready",{},o)).then(i,s),()=>window.removeEventListener("message",r)},[t.current]),hc("iframe",{ref:t,width:"0",height:"0",style:{visibility:"hidden"},src:Yr(e.origin,`/apps/${e.appId}/embedded-wallets`)})}import{jsx as Po,jsxs as Oi}from"react/jsx-runtime";function fc(e){return typeof e=="string"&&e.length===25}var Ot;function gc(){if(!Ot){let e=q.get(Ye);return Promise.resolve(e||null)}return Ot.getAccessToken()}var yc=e=>{if(!fc(e.appId))throw new y("Cannot initialize the Privy provider with an invalid Privy app ID");return Ot||(Ot=new Lt({appId:e.appId,apiURL:_o})),Po(vc,{...e,client:Ot})},wc=e=>{let t=!!(e!=null&&e.emailAuth),o=!!(e!=null&&e.smsAuth);return t&&o&&(console.warn("Enabling both email and SMS passwordless is not currently supported. Disabling SMS."),o=!1),{email:t,sms:o,wallet:!!(e!=null&&e.walletAuth),google:!!(e!=null&&e.googleOAuth),twitter:!!(e!=null&&e.twitterOAuth),discord:!!(e!=null&&e.discordOAuth),github:!!(e!=null&&e.githubOAuth)}},vc=e=>{let t=e.client,[o,r]=ne(!1),[n,i]=ne(!1),[s,a]=ne(!1),[d,u]=ne(null),[x,E]=ne(!1),[m,g]=ne(null),[f,c]=ne(!1),[b,I]=ne(null),[k,T]=ne(null),[S,N]=ne(null),[V,Z]=ne({accentColor:"#696ffd",theme:"System",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,termsAndConditionsUrl:null,privacyPolicyUrl:null}),[D,J]=ne(!1),[ge,O]=ne({}),U=wc(V),W=l=>{l&&g(l),r(!0)},Y=l=>{let p=e.createPrivyWalletOnLogin===!0;O({login:{promptCreatePrivyWalletFlow:p}}),p&&J(!0),W(l)};Ni(()=>{async function l(){let p=await t.getAppSettings();Z(p),t.connectors.initialize(),ye();let R=await t.getAuthenticatedUser();a(!!R),u(R),i(!0)}l()},[t]);let ye=()=>{let l=new URLSearchParams(window.location.search),p=l.get("privy_oauth_code"),R=l.get("privy_oauth_state"),ie=l.get("privy_oauth_provider");p&&R&&ie&&(t.startAuthFlow(new Je(ie,p,R)),Y("AWAITING_OAUTH_SCREEN"))};Ni(()=>{n&&s&&d===null&&t.getAuthenticatedUser().then(u)},[n,s,d,t]);let P=()=>{c(!0),W("LINK_WALLET_SCREEN")},Fe=async l=>{if(!d)return;let p=t.connectors.getConnectorByAddress(l);if(!p){T(l),P();return}I({address:l,walletType:p.walletType,success:!1}),W("SETTING_ACTIVE_WALLET"),t.setActiveWallet(l,d).then(R=>{u(R),I({address:l,walletType:p.walletType,success:!0})}).catch(R=>{R instanceof y&&R.message==="Error setting the active wallet."&&(T(l),P()),I({address:l,walletType:p.walletType,success:!1,error:R.message})})},Ut={ready:n,authenticated:s,user:d,walletConnectors:t.connectors,linkWallet:P,linkEmail:()=>{c(!0),W("LINK_EMAIL_SCREEN")},linkPhone:()=>{c(!0),W("LINK_PHONE_SCREEN")},linkGoogle:async()=>{await xe.initLoginWithOAuth("google")},linkTwitter:async()=>{await xe.initLoginWithOAuth("twitter")},linkDiscord:async()=>{await xe.initLoginWithOAuth("discord")},linkGithub:async()=>{await xe.initLoginWithOAuth("github")},login:()=>{if(n&&s){console.warn("Attempted to log in, but user is already logged in. Use a `link` helper instead.");return}Y()},logout:async()=>{await t.logout(),u(null),a(!1),g(null),c(!1),r(!1)},getAccessToken:()=>t.getAccessToken(),getEthereumProvider:()=>t.connectors.getEthereumProvider(),getEthersProvider:()=>new mc(new He(t.connectors.getEthereumProvider())),getWeb3jsProvider:()=>new Bt(t.connectors.getEthereumProvider()),unlinkWallet:async l=>{let p=await t.unlinkWallet(l);u(p);let R=p.linkedAccounts.filter(ie=>ie.type==="wallet");if(R&&R.length>0){let ie=R[0];await Fe(ie.address)}return p},unlinkEmail:async l=>{let p=await t.unlinkEmail(l);return u(p),p},unlinkPhone:async l=>{let p=await t.unlinkPhone(l);return u(p),p},unlinkGoogle:async l=>{let p=await t.unlinkOAuth("google",l);return u(p),p},unlinkTwitter:async l=>{let p=await t.unlinkOAuth("twitter",l);return u(p),p},unlinkDiscord:async l=>{let p=await t.unlinkOAuth("discord",l);return u(p),p},unlinkGithub:async l=>{let p=await t.unlinkOAuth("github",l);return u(p),p},setActiveWallet:Fe,forkSession:()=>t.forkSession(),createWallet:()=>new Promise((l,p)=>{if(!s||!d){p(new Error("User must be authenticated before creating a Privy wallet"));return}if(Ae(d)){p(new Error("Only one Privy wallet per user is currently allowed"));return}J(!0),O({createWallet:{onSuccess:l,onFailure:p,callAuthOnSuccessOnClose:!1}}),W("EMBEDDED_WALLET_SCREEN")}),signMessage:(l,p)=>new Promise((R,ie)=>{if(!s||!d){ie(new Error("User must be authenticated before signing with a Privy wallet"));return}if(!Ae(d)){ie(new Error("Must have a Privy wallet before signing"));return}if(typeof l!="string"||l.length<1){ie(new Error("Message must be a non-empty string"));return}J(!0),O({signMessage:{message:l,onSuccess:R,onFailure:ie,uiOptions:p||{}}}),W("SIGN_REQUEST_SCREEN")})},xe=(()=>({isLinking:f,linkingHint:k,activeStatus:b,getAuthFlow:()=>t.authFlow,getAuthMeta:()=>{var l;return(l=t.authFlow)==null?void 0:l.meta},closePrivyModal:(l={shouldCallAuthOnSuccess:!0})=>{var R;let p=n&&s&&d;l.shouldCallAuthOnSuccess&&p&&((R=e.onSuccess)==null||R.call(e,d,x)),t.authFlow=void 0,T(null),g(null),c(!1),I(null),E(!1),r(!1)},initLoginWithWallet:l=>{if(!t.connectors)throw new y("Connector not initialized");l||(l="metamask"),t.startAuthFlow(new Ct(t.connectors,l))},loginWithWallet:async()=>{if(!(t.authFlow instanceof Ct))throw new y("Must initialize SIWE flow first.");let l,p;f?(l=await t.link(),l&&(l=Et(l))):{user:l,isNewUser:p}=await t.authenticate(),u(l||d||null),E(p||!1),a(!0)},initLoginWithOAuth:async l=>{t.startAuthFlow(new Je(l));let p=await t.authFlow.getAuthorizationUrl();p&&p.url&&window.location.assign(p.url)},loginWithOAuth:async()=>{if(!(t.authFlow instanceof Je))throw new y("Must initialize OAuth flow before calling loginWithOAuth");let l,p;n&&s?l=await t.link():{user:l,isNewUser:p}=await t.authenticate(),u(l),E(p||!1),a(!0)},initLoginWithEmail:async l=>{let p=new vt(l);t.startAuthFlow(p),await p.sendCodeEmail()},initLoginWithSms:async l=>{let p=new bt(l);t.startAuthFlow(p),await p.sendSmsCode()},resendEmailCode:async()=>{var l;await((l=t.authFlow)==null?void 0:l.sendCodeEmail())},resendSmsCode:async()=>{var l;await((l=t.authFlow)==null?void 0:l.sendSmsCode())},loginWithCode:async l=>{if(t.authFlow instanceof vt)t.authFlow.meta.emailCode=l.trim();else if(t.authFlow instanceof bt)t.authFlow.meta.smsCode=l.trim();else throw new y("Must initialize a passwordless code flow first");let p,R;f?p=await t.link():{user:p,isNewUser:R}=await t.authenticate(),u(p||d||null),E(R||!1),a(!0)},refreshUser:async()=>{let l=await t.getAuthenticatedUser();return u(l),l},walletProxy:S}))();return Oi(Bo.Provider,{value:Ut,children:[e.children,Oi(Fo.Provider,{value:xe,children:[Po(nn,{appSettings:V,options:U,data:ge,setModalData:O,initialScreen:m,visible:o,authenticated:s,children:o&&Po(Mi,{})}),D&&Po(Ii,{appId:e.appId,origin:_o,onLoad:N,onLoadFailed:()=>null})]})]})};export{He as AsExternalProvider,xt as ConnectorManager,Lt as PrivyClient,yc as PrivyProvider,we as PrivyProxyProvider,So as VERSION,Le as WalletConnector,gc as getAccessToken,$ as usePrivy};
1752
+ `;import{useRef as A1,useEffect as P1}from"react";var Ho=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:sign":return r;case"privy:wallet:recover":return r;default:throw new Error(`invalid wallet event type ${t}`)}}};import{jsx as M1}from"react/jsx-runtime";var k1=function(e){return()=>`id-${e++}`}(0);function T1(e){return typeof e.event=="string"&&/^privy:.+/.test(e.event)}function $o(e){return e.error!==void 0}var Zt=new Ho;function jo(e,t,o){let r=o.contentWindow;if(!r)throw new Error("iframe not initialized");return new Promise((n,i)=>{let a=k1();Zt.enqueue(a,{resolve:n,reject:i}),r.postMessage({id:a,event:e,data:t},"*")})}function W1(e){switch(e.event){case"privy:iframe:ready":let t=Zt.dequeue(e.event,e.id);return $o(e)?t.reject(new Error(e.error.message)):t.resolve(e.data);case"privy:wallet:create":let o=Zt.dequeue(e.event,e.id);return $o(e)?o.reject(new Error(e.error.message)):o.resolve(e.data);case"privy:wallet:sign":let r=Zt.dequeue(e.event,e.id);return $o(e)?r.reject(new Error(e.error.message)):r.resolve(e.data);case"privy:wallet:recover":let n=Zt.dequeue(e.event,e.id);return $o(e)?n.reject(new Error(e.error.message)):n.resolve(e.data)}}function cs(e){let t=A1(null);return P1(()=>{let o=t.current;if(!o)return;function r(s){s&&s.origin===e.origin&&T1(s.data)&&W1(s.data)}let n={create(s){return jo("privy:wallet:create",s,o)},sign(s){return jo("privy:wallet:sign",s,o)},recover(s){return jo("privy:wallet:recover",s,o)}};window.addEventListener("message",r);let i=()=>e.onLoad(n),a=(...s)=>{console.error("privy iframe failed to load: ",...s),e.onLoadFailed()};return Pn(()=>jo("privy:iframe:ready",{},o)).then(i,a),()=>window.removeEventListener("message",r)},[t.current]),M1("iframe",{ref:t,width:"0",height:"0",style:{visibility:"hidden"},src:kn(e.origin,`/apps/${e.appId}/embedded-wallets`)})}import{jsx as zo,jsxs as us}from"react/jsx-runtime";function R1(e){return typeof e=="string"&&e.length===25}var Kt;function O1(){if(!Kt){let e=Y.get(at);return Promise.resolve(e||null)}return Kt.getAccessToken()}var N1=e=>{if(!R1(e.appId))throw new C("Cannot initialize the Privy provider with an invalid Privy app ID");return Kt||(Kt=new Ut({appId:e.appId,apiURL:qo})),zo(D1,{...e,client:Kt})},U1=e=>{let t=!!(e!=null&&e.emailAuth),o=!!(e!=null&&e.smsAuth);return t&&o&&(console.warn("Enabling both email and SMS passwordless is not currently supported. Disabling SMS."),o=!1),{email:t,sms:o,wallet:!!(e!=null&&e.walletAuth),google:!!(e!=null&&e.googleOAuth),twitter:!!(e!=null&&e.twitterOAuth),discord:!!(e!=null&&e.discordOAuth),github:!!(e!=null&&e.githubOAuth)}},D1=e=>{let t=e.client,[o,r]=le(!1),[n,i]=le(!1),[a,s]=le(!1),[l,c]=le(null),[y,w]=le(!1),[d,h]=le(null),[f,u]=le(!1),[m,A]=le(null),[P,M]=le(null),[W,U]=le(null),[j,J]=le({accentColor:"#696ffd",theme:"System",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,termsAndConditionsUrl:null,privacyPolicyUrl:null}),[B,Q]=le(!1),[be,D]=le({}),F=U1(j),R=p=>{p&&h(p),r(!0)},ee=p=>{let g=e.createPrivyWalletOnLogin===!0;D({login:{promptCreatePrivyWalletFlow:g}}),g&&Q(!0),R(p)};ds(()=>{async function p(){let g=await t.getAppSettings();J(g),t.connectors.initialize(),xe();let O=await t.getAuthenticatedUser();s(!!O),c(O),i(!0)}p()},[t]);let xe=()=>{let p=new URLSearchParams(window.location.search),g=p.get("privy_oauth_code"),O=p.get("privy_oauth_state"),ce=p.get("privy_oauth_provider");g&&O&&ce&&(t.startAuthFlow(new it(ce,g,O)),ee("AWAITING_OAUTH_SCREEN"))};ds(()=>{n&&a&&l===null&&t.getAuthenticatedUser().then(c)},[n,a,l,t]);let k=()=>{u(!0),R("LINK_WALLET_SCREEN")},ze=async p=>{if(!l)return;let g=t.connectors.getConnectorByAddress(p);if(!g){M(p),k();return}A({address:p,walletType:g.walletType,success:!1}),R("SETTING_ACTIVE_WALLET"),t.setActiveWallet(p,l).then(O=>{c(O),A({address:p,walletType:g.walletType,success:!0})}).catch(O=>{O instanceof C&&O.message==="Error setting the active wallet."&&(M(p),k()),A({address:p,walletType:g.walletType,success:!1,error:O.message})})},Jt={ready:n,authenticated:a,user:l,walletConnectors:t.connectors,linkWallet:k,linkEmail:()=>{u(!0),R("LINK_EMAIL_SCREEN")},linkPhone:()=>{u(!0),R("LINK_PHONE_SCREEN")},linkGoogle:async()=>{await Ae.initLoginWithOAuth("google")},linkTwitter:async()=>{await Ae.initLoginWithOAuth("twitter")},linkDiscord:async()=>{await Ae.initLoginWithOAuth("discord")},linkGithub:async()=>{await Ae.initLoginWithOAuth("github")},login:()=>{if(n&&a){console.warn("Attempted to log in, but user is already logged in. Use a `link` helper instead.");return}ee()},logout:async()=>{await t.logout(),c(null),s(!1),h(null),u(!1),r(!1)},getAccessToken:()=>t.getAccessToken(),getEthereumProvider:()=>t.connectors.getEthereumProvider(),getEthersProvider:()=>new I1(new Ke(t.connectors.getEthereumProvider())),getWeb3jsProvider:()=>new to(t.connectors.getEthereumProvider()),unlinkWallet:async p=>{let g=await t.unlinkWallet(p);c(g);let O=g.linkedAccounts.filter(ce=>ce.type==="wallet");if(O&&O.length>0){let ce=O[0];await ze(ce.address)}return g},unlinkEmail:async p=>{let g=await t.unlinkEmail(p);return c(g),g},unlinkPhone:async p=>{let g=await t.unlinkPhone(p);return c(g),g},unlinkGoogle:async p=>{let g=await t.unlinkOAuth("google",p);return c(g),g},unlinkTwitter:async p=>{let g=await t.unlinkOAuth("twitter",p);return c(g),g},unlinkDiscord:async p=>{let g=await t.unlinkOAuth("discord",p);return c(g),g},unlinkGithub:async p=>{let g=await t.unlinkOAuth("github",p);return c(g),g},setActiveWallet:ze,forkSession:()=>t.forkSession(),createWallet:()=>new Promise((p,g)=>{if(!a||!l){g(new Error("User must be authenticated before creating a Privy wallet"));return}if(We(l)){g(new Error("Only one Privy wallet per user is currently allowed"));return}Q(!0),D({createWallet:{onSuccess:p,onFailure:g,callAuthOnSuccessOnClose:!1}}),R("EMBEDDED_WALLET_SCREEN")}),signMessage:(p,g)=>new Promise((O,ce)=>{if(!a||!l){ce(new Error("User must be authenticated before signing with a Privy wallet"));return}if(!We(l)){ce(new Error("Must have a Privy wallet before signing"));return}if(typeof p!="string"||p.length<1){ce(new Error("Message must be a non-empty string"));return}Q(!0),D({signMessage:{message:p,onSuccess:O,onFailure:ce,uiOptions:g||{}}}),R("SIGN_REQUEST_SCREEN")})},Ae=(()=>({isLinking:f,linkingHint:P,activeStatus:m,getAuthFlow:()=>t.authFlow,getAuthMeta:()=>{var p;return(p=t.authFlow)==null?void 0:p.meta},closePrivyModal:(p={shouldCallAuthOnSuccess:!0})=>{var O;let g=n&&a&&l;p.shouldCallAuthOnSuccess&&g&&((O=e.onSuccess)==null||O.call(e,l,y)),t.authFlow=void 0,M(null),h(null),u(!1),A(null),w(!1),r(!1)},initLoginWithWallet:p=>{if(!t.connectors)throw new C("Connector not initialized");p||(p="metamask"),t.startAuthFlow(new Mt(t.connectors,p))},loginWithWallet:async()=>{if(!(t.authFlow instanceof Mt))throw new C("Must initialize SIWE flow first.");let p,g;f?(p=await t.link(),p&&(p=Nt(p))):{user:p,isNewUser:g}=await t.authenticate(),c(p||l||null),w(g||!1),s(!0)},initLoginWithOAuth:async p=>{t.startAuthFlow(new it(p));let g=await t.authFlow.getAuthorizationUrl();g&&g.url&&window.location.assign(g.url)},loginWithOAuth:async()=>{if(!(t.authFlow instanceof it))throw new C("Must initialize OAuth flow before calling loginWithOAuth");let p,g;n&&a?p=await t.link():{user:p,isNewUser:g}=await t.authenticate(),c(p),w(g||!1),s(!0)},initLoginWithEmail:async p=>{let g=new Wt(p);t.startAuthFlow(g),await g.sendCodeEmail()},initLoginWithSms:async p=>{let g=new It(p);t.startAuthFlow(g),await g.sendSmsCode()},resendEmailCode:async()=>{var p;await((p=t.authFlow)==null?void 0:p.sendCodeEmail())},resendSmsCode:async()=>{var p;await((p=t.authFlow)==null?void 0:p.sendSmsCode())},loginWithCode:async p=>{if(t.authFlow instanceof Wt)t.authFlow.meta.emailCode=p.trim();else if(t.authFlow instanceof It)t.authFlow.meta.smsCode=p.trim();else throw new C("Must initialize a passwordless code flow first");let g,O;f?g=await t.link():{user:g,isNewUser:O}=await t.authenticate(),c(g||l||null),w(O||!1),s(!0)},refreshUser:async()=>{let p=await t.getAuthenticatedUser();return c(p),p},walletProxy:W}))();return us(fr.Provider,{value:Jt,children:[e.children,us(hr.Provider,{value:Ae,children:[zo(Ii,{appSettings:j,options:F,data:be,setModalData:D,initialScreen:d,visible:o,authenticated:a,children:o&&zo(ls,{})}),B&&zo(cs,{appId:e.appId,origin:qo,onLoad:U,onLoadFailed:()=>null})]})]})};export{Ke as AsExternalProvider,Ot as ConnectorManager,Ut as PrivyClient,N1 as PrivyProvider,we as PrivyProxyProvider,Zo as VERSION,Te as WalletConnector,O1 as getAccessToken,q as usePrivy};