@privy-io/react-auth 1.25.1 → 1.26.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/index.js +282 -243
- package/dist/index.d.ts +341 -266
- package/dist/index.js +282 -243
- package/package.json +2 -2
package/dist/esm/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import{Web3Provider as Rm}from"@ethersproject/providers";import{useEffect as Yr,useState as ne}from"react";var C=()=>{throw new Error("You need to wrap your application with the <PrivyProvider> initialized with your app id.")};import cc from"axios";var ke=class extends Error{constructor(o,r,n){super(o);r instanceof Error&&(this.cause=r),this.privyErrorCode=n}toString(){return`${this.type}${this.privyErrorCode?`-${this.privyErrorCode}`:""}: ${this.message}${this.cause?` [cause: ${this.cause}]`:""}`}},Rt=class extends ke{constructor(o,r,n,i,a){super(n,i,a);this.type=o;this.status=r}},x=class extends ke{constructor(o,r,n){super(o,r,n);this.type="client_error"}};var q=class extends ke{constructor(o,r,n){super(o,r,n);this.type="connector_error"}},Q=e=>{if(e instanceof ke)return e;if(!cc.isAxiosError(e))return Ee(e);if(!e.response)return new Rt("api_error",null,e.message,e);let{type:t,message:o,error:r,code:n}=e.response.data;return new Rt(t||"ApiError",e.response.status,o||r,e,n)},Ee=e=>e instanceof ke?e:e instanceof Error?new x(e.message,e):new x(`Internal error: ${e}`);var bi=()=>"/api/v1/sessions",vi=()=>"/api/v1/sessions/logout",wi=()=>"/api/v1/sessions/fork",Ci=()=>"/api/v1/sessions/fork/recover",xi=()=>"/api/v1/siwe/init",Ei=()=>"/api/v1/siwe/authenticate",Pi=()=>"/api/v1/siwe/link",Ti=()=>"/api/v1/passwordless/init",Ai=()=>"/api/v1/passwordless/authenticate",_i=()=>"/api/v1/passwordless/link",Si=()=>"/api/v1/passwordless_sms/init",ki=()=>"/api/v1/passwordless_sms/authenticate",Ri=()=>"/api/v1/passwordless_sms/link",Wi=()=>"/api/v1/oauth/init",Ii=()=>"/api/v1/oauth/authenticate",Li=()=>"/api/v1/oauth/link",Mi=()=>"/api/v1/siwe/unlink",Ni=()=>"/api/v1/passwordless/unlink",Di=()=>"/api/v1/passwordless_sms/unlink",Oi=()=>"/api/v1/oauth/unlink",Ui=()=>"/api/v1/analytics_events";var pt=class{constructor(t){this.meta={email:t}}async authenticate(){if(!this.api)throw new x("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new x("Email and email code must be set prior to calling authenticate.");try{let t=Ai(),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 Q(t)}}async link(){if(!this.api)throw new x("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new x("Email and email code must be set prior to calling authenticate.");try{let t=_i();return(await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode})).data}catch(t){throw Q(t)}}async sendCodeEmail(t){if(!this.api)throw new x("Auth flow has no API instance");if(t&&(this.meta.email=t),!this.meta.email)throw new x("Email must be set when initialzing authentication.");try{let o=Ti();return(await this.api.post(o,{email:this.meta.email})).data}catch(o){throw Q(o)}}};var tt=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 x("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new x("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling authenticate.");if(this.meta.authorizationCode==="undefined")throw new x("User denied confirmation during OAuth flow");try{let t=Ii(),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 Q(t)}}async link(){if(!this.api)throw new x("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new x("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling link.");if(this.meta.authorizationCode==="undefined")throw new x("User denied confirmation during OAuth flow");try{let t=Li();return(await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode})).data}catch(t){throw Q(t)}}async getAuthorizationUrl(){var t;if(!this.api)throw new x("Auth flow has no API instance");if(!this.meta.provider)throw new x("Provider must be set when initialzing OAuth authentication.");try{let o=Wi();return(await this.api.post(o,{provider:this.meta.provider,redirect_to:window.location.href},{baseURL:(t=this.api)==null?void 0:t.fallbackApiUrl})).data}catch(o){throw Q(o)}}};var ot=class{constructor(t,o,r){this._meta={walletType:o,walletId:r},this.connectors=t,this.walletConnector=this.connectors.createWalletConnector(o,null,r)}get meta(){return{...this._meta,walletName:this.walletConnector.walletBranding.name,walletIcon:this.walletConnector.walletBranding.icon}}async authenticate(){if(!this.api)throw new x("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign(),r=await this.api.post(Ei(),{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 Q(t)}}async link(){if(!this.api)throw new x("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign(),r=await this.api.post(Pi(),{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 Q(t)}}async promptConnect(){if(!this.api)throw new x("Auth flow has no API instance");let t=await this.walletConnector.connect({showPrompt:!0});return await this.buildSiweMessage(t),t}async sign(){if(!this.api)throw new x("Auth flow has no API instance");if(!this.preparedMessage){let o=await this.walletConnector.connect({showPrompt:!1});await this.buildSiweMessage(o)}if(!this.preparedMessage)throw new x("Could not prepare SIWE message");let t=await this.walletConnector.sign(this.preparedMessage);return{message:this.preparedMessage,signature:t}}async buildSiweMessage(t){if(!this.api)throw new x("Auth flow has no API instance");let o=t.address,r=t.chainId,n=await this.api.post(xi(),{address:o});return this.preparedMessage=this.walletConnector.prepareMessage(r,o,n.data.nonce),this.preparedMessage}};var ut=class{constructor(t){this.meta={phoneNumber:t}}async authenticate(){if(!this.api)throw new x("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new x("phone number and sms code must be set prior to calling authenticate.");try{let t=ki(),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 Q(t)}}async link(){if(!this.api)throw new x("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new x("phone number and sms code must be set prior to calling authenticate.");try{let t=Ri();return(await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode})).data}catch(t){throw Q(t)}}async sendSmsCode(t){if(!this.api)throw new x("Auth flow has no API instance");if(t&&(this.meta.phoneNumber=t),!this.meta.phoneNumber)throw new x("phone nNumber must be set when initialzing authentication.");try{let o=Si();return(await this.api.post(o,{phoneNumber:this.meta.phoneNumber})).data}catch(o){throw Q(o)}}};import{getAddress as Fc}from"@ethersproject/address";var Bi="1.25.1";var Me="4df5e2316331463a9130964bd6078dfa",Go="https://auth.privy.io",Fi=1e4,Ne=1400,on=Bi;var Wt="privy:token",Ho="privy:refresh_token",so="privy:session_transfer_token",Vo="privy:connectors",rn="walletconnect",Gi=3e4,Pe=1;var nn=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)}},an=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 pc(){return typeof window<"u"&&window.localStorage?new an:new nn}var G=pc();import _c from"@coinbase/wallet-sdk";import{getAddress as Sc}from"@ethersproject/address";import{jsx as Hi,jsxs as uc}from"react/jsx-runtime";var Te=({style:e,...t})=>uc("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:[Hi("rect",{width:"1024",height:"1024",fill:"#0052FF",rx:100,ry:100}),Hi("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 Tc}from"@ethersproject/address";import{Web3Provider as Ac}from"@ethersproject/providers";import{isHexString as wc}from"@ethersproject/bytes";import{InfuraProvider as Cc}from"@ethersproject/providers";import{toUtf8String as xc}from"@ethersproject/strings";import Ec from"eventemitter3";var mc=["eth_sign","eth_populateTransactionRequest","eth_signTransaction","personal_sign"],Vi=e=>mc.includes(e);import{isPossiblePhoneNumber as fc}from"libphonenumber-js/min";var zi=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,}))$/),qi=e=>fc(String(e),"US"),$i=(e,t)=>{let o=e.slice(0),r=[];for(;o.length;)r.push(o.splice(0,t));return r},Re=(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}`},sn=e=>new Promise(t=>setTimeout(t,e)),ji=(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 sn(o);a||i(new Error("Exceeded max attempts before resolving function"))})},zo=(e,t,o={})=>{let r=new URL(t,e);for(let[n,i]of Object.entries(o))r.searchParams.set(n,i);return r.href},hc=(e,t)=>e.toLowerCase()===t.toLowerCase(),ln=(e,t)=>{for(let o of e)if(hc(o,t))return!0;return!1},qo=e=>e.replace(/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g,""),lo=e=>typeof e=="string"?e:"0x"+e.toString(16);import{ErrorCode as gc}from"@ethersproject/logger";var It=class extends q{constructor(){super("Wallet timeout");this.type="wallet_error"}},ft=class extends q{constructor(){super("User rejected connection");this.type="wallet_error"}},Ae=e=>{if(e instanceof q)return e;if((e==null?void 0:e.code)&&(e==null?void 0:e.reason)){let t=new Lt(e);return e.code===gc.ACTION_REJECTED&&(t.details=mt.E4001_USER_REJECTED_REQUEST),t}return e!=null&&e.code?new Lt(e):new q("Unknown connector error",e)},cn=class extends ke{constructor(o,r,n){super(o);this.type="provider_error";this.code=r,this.data=n}},Lt=class extends cn{constructor(o){var i,a,s;let r=o;super(r.message,r.code,r.data);let n=Object.values(mt).find(l=>l.eipCode===r.code);this.details=n||mt.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=mt.E32002_CONNECTION_ALREADY_PENDING:this.details=mt.E32002_REQUEST_ALREADY_PENDING:(s=r.message)!=null&&s.includes("Already processing")&&r.message.includes("eth_requestAccounts")&&(this.details=mt.E32002_WALLET_LOCKED))}},yc={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}},bc={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}},vc={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}},mt={UNKNOWN_ERROR:{eipCode:0,message:"Unknown error",detail:"Unknown error",retryable:!0},...vc,...bc},ht={...yc,...mt};var Pc=12e4,dn=(e=new It,t=Pc)=>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 q(`A wallet request of type ${t.method} was made before setting a wallet provider.`);return Promise.race([this.walletProvider.request(t),dn()]).catch(o=>{throw Ae(o)})}},gt=class extends Error{constructor(o,r,n){super(o);this.code=r,this.data=n}},$o=class extends Ec{constructor(o,r,n=1){super();this.walletProxy=o,this.address=r,this.chainId=n,this.infuraProvider=new Cc(n,Me)}async handleSendTransaction(o){if(!o.params||!Array.isArray(o.params))throw new gt(`Invalid params for ${o.method}`,4200);let r=o.params[0];if(!await co()||!this.address)throw new gt("Disconnected",4900);return(await Zi(r)).transactionHash}handleSwitchEthereumChain(o){if(!o.params||!Array.isArray(o.params))throw new gt(`Invalid params for ${o.method}`,4200);let r=o.params[0];this.chainId=Number(r),this.emit("chainChanged",r)}async handlePersonalSign(o){if(!o.params||!Array.isArray(o.params))throw new Error("Invalid params for eth_estimateGas");let r=o.params[0],n=wc(r)?xc(r):r;return await Ki(n)}async handleEstimateGas(o){if(!o.params||!Array.isArray(o.params))throw new Error("Invalid params for eth_estimateGas");let r={...o.params[0],chainId:lo(this.chainId)};return delete r.from,this.infuraProvider.send("eth_estimateGas",[r])}async request(o){switch(console.debug("Embedded1193Provider.request() called with args",o),o.method){case"eth_accounts":return this.address?[this.address]:[];case"eth_chainId":return lo(this.chainId);case"eth_estimateGas":return this.handleEstimateGas(o);case"eth_sendTransaction":return this.handleSendTransaction(o);case"wallet_switchEthereumChain":return this.handleSwitchEthereumChain(o);case"personal_sign":return this.handlePersonalSign(o);default:break}if(Vi(o.method)){let r=await co();if(!r||!this.address)throw new gt("Disconnected",4900);try{return(await this.walletProxy.rpc({address:this.address,accessToken:r,request:{method:o.method,params:o.params}})).response.data}catch(n){throw console.error(n),new gt("Disconnected",4900)}}else return this.infuraProvider.send(o.method,o.params)}async connect(){let o=await co();if(!o||!this.address)return null;try{return(await this.walletProxy.connect({address:this.address,accessToken:o})).address}catch(r){return console.error(r),null}}},yt=class extends We{constructor(o){super(o)}},jo=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 ye=class{constructor(t,o,r){this.createSiweMessage=(t,o,r,n,i,a,s)=>`${r} wants you to sign in with your Ethereum account:
|
|
1
|
+
import{getAddress as cn}from"@ethersproject/address";import{Web3Provider as hc}from"@ethersproject/providers";import{useEffect as go,useMemo as zm,useRef as qm,useState as de}from"react";var T=()=>{throw new Error("You need to wrap your application with the <PrivyProvider> initialized with your app id.")};import wc from"axios";var ke=class extends Error{constructor(o,r,n){super(o);r instanceof Error&&(this.cause=r),this.privyErrorCode=n}toString(){return`${this.type}${this.privyErrorCode?`-${this.privyErrorCode}`:""}: ${this.message}${this.cause?` [cause: ${this.cause}]`:""}`}},Ft=class extends ke{constructor(o,r,n,i,a){super(n,i,a);this.type=o;this.status=r}},b=class extends ke{constructor(o,r,n){super(o,r,n);this.type="client_error"}};var $=class extends ke{constructor(o,r,n){super(o,r,n);this.type="connector_error"}},Q=e=>{if(e instanceof ke)return e;if(!wc.isAxiosError(e))return Te(e);if(!e.response)return new Ft("api_error",null,e.message,e);let{type:t,message:o,error:r,code:n}=e.response.data;return new Ft(t||"ApiError",e.response.status,o||r,e,n)},Te=e=>e instanceof ke?e:e instanceof Error?new b(e.message,e):new b(`Internal error: ${e}`);var _i=()=>"/api/v1/sessions",Ai=()=>"/api/v1/sessions/logout",Si=()=>"/api/v1/sessions/fork",ki=()=>"/api/v1/sessions/fork/recover",Ri=()=>"/api/v1/siwe/init",Wi=()=>"/api/v1/siwe/authenticate",Ii=()=>"/api/v1/siwe/link",Ni=()=>"/api/v1/passwordless/init",Li=()=>"/api/v1/passwordless/authenticate",Mi=()=>"/api/v1/passwordless/link",Oi=()=>"/api/v1/passwordless_sms/init",Di=()=>"/api/v1/passwordless_sms/authenticate",Ui=()=>"/api/v1/passwordless_sms/link",Bi=()=>"/api/v1/oauth/init",Fi=()=>"/api/v1/oauth/authenticate",Gi=()=>"/api/v1/oauth/link",Hi=()=>"/api/v1/siwe/unlink",Vi=()=>"/api/v1/passwordless/unlink",zi=()=>"/api/v1/passwordless_sms/unlink",qi=()=>"/api/v1/oauth/unlink",$i=()=>"/api/v1/analytics_events";var bt=class{constructor(t){this.meta={email:t}}async authenticate(){if(!this.api)throw new b("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new b("Email and email code must be set prior to calling authenticate.");try{let t=Li(),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 Q(t)}}async link(){if(!this.api)throw new b("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new b("Email and email code must be set prior to calling authenticate.");try{let t=Mi();return(await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode})).data}catch(t){throw Q(t)}}async sendCodeEmail(t){if(!this.api)throw new b("Auth flow has no API instance");if(t&&(this.meta.email=t),!this.meta.email)throw new b("Email must be set when initialzing authentication.");try{let o=Ni();return(await this.api.post(o,{email:this.meta.email})).data}catch(o){throw Q(o)}}};var st=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 b("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new b("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling authenticate.");if(this.meta.authorizationCode==="undefined")throw new b("User denied confirmation during OAuth flow");try{let t=Fi(),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 Q(t)}}async link(){if(!this.api)throw new b("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new b("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling link.");if(this.meta.authorizationCode==="undefined")throw new b("User denied confirmation during OAuth flow");try{let t=Gi();return(await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode})).data}catch(t){throw Q(t)}}async getAuthorizationUrl(){var t;if(!this.api)throw new b("Auth flow has no API instance");if(!this.meta.provider)throw new b("Provider must be set when initialzing OAuth authentication.");try{let o=Bi();return(await this.api.post(o,{provider:this.meta.provider,redirect_to:window.location.href},{baseURL:(t=this.api)==null?void 0:t.fallbackApiUrl})).data}catch(o){throw Q(o)}}};var Ye=class{constructor(t){this.createSiweMessage=(t,o,r,n,i,a,l)=>`${r} wants you to sign in with your Ethereum account:
|
|
2
2
|
${o}
|
|
3
3
|
|
|
4
|
-
${
|
|
4
|
+
${l}
|
|
5
5
|
|
|
6
6
|
URI: ${n}
|
|
7
7
|
Version: 1
|
|
@@ -9,7 +9,7 @@ Chain ID: ${t}
|
|
|
9
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=Tc(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 Ac(new yt(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 kc=e=>{let t=`https://mainnet.infura.io/v3/${Me}`,o=1;return e.makeWeb3Provider(t,o)},Ko,Zo=class extends ye{constructor(o,r){super("coinbase_wallet",o,r);this.proxyProvider=o,Ko||(Ko=new _c({appName:"Privy",darkMode:!1,headlessMode:!1}))}async connect(o){return this.proxyProvider.setWalletProvider(kc(Ko)),o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}disconnect(){Ko.disconnect()}async isConnected(){return await this.fetchAddress()!==null}get walletBranding(){return{name:"Coinbase Wallet",icon:Te}}async promptConnection(){try{let o="",r=await this.proxyProvider.request({method:"eth_requestAccounts"});if(r.length>0&&(o=Sc(r[0])),!o||o==="")throw new q("Unable to retrieve address");this.connected=!0}catch(o){throw Ae(o)}}};import{jsx as Yi}from"react/jsx-runtime";var rt=({style:e,...t})=>Yi("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:Yi("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.99555 0.929932C-1.12055 1.31799 -0.499722 9.15734 2.17445 8.76915C0.0807959 10.5544 -0.960455 16.6416 6.01654 16.0265C10.6356 15.9489 15.5635 12.2232 15.5635 8.1095C15.5635 2.63748 10.7516 0.929932 7.99555 0.929932ZM9.47052 7.53055C9.47052 8.49933 8.81856 9.28468 8.01433 9.28468C7.2101 9.28468 6.55814 8.49933 6.55814 7.53055C6.55814 6.56176 7.2101 5.77641 8.01433 5.77641C8.81856 5.77641 9.47052 6.56176 9.47052 7.53055ZM12.3171 9.28468C13.1213 9.28468 13.7733 8.49933 13.7733 7.53055C13.7733 6.56176 13.1213 5.77641 12.3171 5.77641C11.5129 5.77641 10.8609 6.56176 10.8609 7.53055C10.8609 8.49933 11.5129 9.28468 12.3171 9.28468Z",fill:t.color||"var(--privy-color-foreground-3)"})});var Yo=class extends ye{constructor(o,r){super("embedded",o,r);this.proxyProvider=o,r&&(this.connected=!0),this.chain="0x1"}async connect(o){if(!await this.isConnected())return null;let r=(o==null?void 0:o.chainId)||"0x1";return this.chain=lo(r),await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[this.chain]}),this.getConnectedWallet()}setAddress(o){this.address=o,this.connected=!0}async getConnectedWallet(){return!this.address||!this.chain?null:{address:this.address,chainId:this.chain,chainType:"ethereum",walletClient:"privy"}}async fetchAddress(){return this.address}async isConnected(){return await this.proxyProvider.connect()===this.address}get walletBranding(){return{name:"Privy Wallet",icon:rt}}disconnect(){this.connected=!1}async promptConnection(){}};import{getAddress as pn}from"@ethersproject/address";import{Web3Provider as Qi}from"@ethersproject/providers";import{isMobile as Wc}from"react-device-detect";import{jsx as be,jsxs as Rc}from"react/jsx-runtime";var ue=({style:e,...t})=>Rc("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",x:0,y:0,viewBox:"0 0 318.6 318.6",width:"28",height:"28",style:{height:"28px",width:"28px",...e},...t,children:[be("style",{children:".s1{stroke-linecap:round;stroke-linejoin:round}.s2{fill:#e4761b;stroke:#e4761b}.s3{fill:#f6851b;stroke:#f6851b}"}),be("path",{fill:"#e2761b",stroke:"#e2761b",className:"s1",d:"m274.1 35.5-99.5 73.9L193 65.8z"}),be("path",{d:"m44.4 35.5 98.7 74.6-17.5-44.3zm193.9 171.3-26.5 40.6 56.7 15.6 16.3-55.3zm-204.4.9L50.1 263l56.7-15.6-26.5-40.6z",className:"s1 s2"}),be("path",{d:"m103.6 138.2-15.8 23.9 56.3 2.5-2-60.5zm111.3 0-39-34.8-1.3 61.2 56.2-2.5zM106.8 247.4l33.8-16.5-29.2-22.8zm71.1-16.5 33.9 16.5-4.7-39.3z",className:"s1 s2"}),be("path",{fill:"#d7c1b3",stroke:"#d7c1b3",className:"s1",d:"m211.8 247.4-33.9-16.5 2.7 22.1-.3 9.3zm-105 0 31.5 14.9-.2-9.3 2.5-22.1z"}),be("path",{fill:"#233447",stroke:"#233447",className:"s1",d:"m138.8 193.5-28.2-8.3 19.9-9.1zm40.9 0 8.3-17.4 20 9.1z"}),be("path",{fill:"#cd6116",stroke:"#cd6116",className:"s1",d:"m106.8 247.4 4.8-40.6-31.3.9zM207 206.8l4.8 40.6 26.5-39.7zm23.8-44.7-56.2 2.5 5.2 28.9 8.3-17.4 20 9.1zm-120.2 23.1 20-9.1 8.2 17.4 5.3-28.9-56.3-2.5z"}),be("path",{fill:"#e4751f",stroke:"#e4751f",className:"s1",d:"m87.8 162.1 23.6 46-.8-22.9zm120.3 23.1-1 22.9 23.7-46zm-64-20.6-5.3 28.9 6.6 34.1 1.5-44.9zm30.5 0-2.7 18 1.2 45 6.7-34.1z"}),be("path",{d:"m179.8 193.5-6.7 34.1 4.8 3.3 29.2-22.8 1-22.9zm-69.2-8.3.8 22.9 29.2 22.8 4.8-3.3-6.6-34.1z",className:"s3"}),be("path",{fill:"#c0ad9e",stroke:"#c0ad9e",className:"s1",d:"m180.3 262.3.3-9.3-2.5-2.2h-37.7l-2.3 2.2.2 9.3-31.5-14.9 11 9 22.3 15.5h38.3l22.4-15.5 11-9z"}),be("path",{fill:"#161616",stroke:"#161616",className:"s1",d:"m177.9 230.9-4.8-3.3h-27.7l-4.8 3.3-2.5 22.1 2.3-2.2h37.7l2.5 2.2z"}),be("path",{fill:"#763d16",stroke:"#763d16",className:"s1",d:"m278.3 114.2 8.5-40.8-12.7-37.9-96.2 71.4 37 31.3 52.3 15.3 11.6-13.5-5-3.6 8-7.3-6.2-4.8 8-6.1zM31.8 73.4l8.5 40.8-5.4 4 8 6.1-6.1 4.8 8 7.3-5 3.6 11.5 13.5 52.3-15.3 37-31.3-96.2-71.4z"}),be("path",{d:"m267.2 153.5-52.3-15.3 15.9 23.9-23.7 46 31.2-.4h46.5zm-163.6-15.3-52.3 15.3-17.4 54.2h46.4l31.1.4-23.6-46zm71 26.4 3.3-57.7 15.2-41.1h-67.5l15 41.1 3.5 57.7 1.2 18.2.1 44.8h27.7l.2-44.8z",className:"s3"})]});var Ji=async()=>{let t=await new Qi(window.ethereum).listAccounts();return t.length===0?null:pn(t[0])},Qo=class extends ye{constructor(o,r){var n;super("metamask",o,r);this.proxyProvider=o,this.proxyProvider.setWalletProvider(window.ethereum),(n=window.ethereum.providers)==null||n.forEach(i=>{i.isMetaMask&&this.proxyProvider.setWalletProvider(i)}),this.subscribeListeners()}async connect(o){return o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}async isConnected(){let o=await this.connectedMetamaskAddress();return this.address===o}async connectedMetamaskAddress(){let r=await new Qi(this.proxyProvider).listAccounts();return r.length===0?null:pn(r[0])}get walletBranding(){return{name:"MetaMask",icon:ue}}disconnect(){console.warn("Metamask does not support programmatic disconnect.")}async promptConnection(){try{let o="";if(!Wc&&Xi()&&(await this.proxyProvider.request({method:"wallet_requestPermissions",params:[{eth_accounts:{}}]}),this.address&&!await this.isConnected()))throw new q("Selected the wrong wallet in MetaMask");let r=await this.proxyProvider.request({method:"eth_requestAccounts"});if(r.length>0&&(o=pn(r[0])),!o||o==="")throw new q("Unable to retrieve address");if(this.address&&o!==this.address)return;this.connected=!0,this.address=o}catch(o){throw Ae(o)}}async setActive(){if(await this.connectedMetamaskAddress()===this.address)return this.connected=!0,!0;for(;!await this.isConnected();)await sn(200);return this.connected=!0,!0}subscribeListeners(){this.proxyProvider.on("accountsChanged",o=>{var r;if(o.length>0){let n=o[0];this.connected=((r=this.address)==null?void 0:r.toLowerCase())===(n==null?void 0:n.toLowerCase())}else this.connected=!1}),this.proxyProvider.on("disconnect",()=>{this.connected=!1})}};import{getAddress as ea}from"@ethersproject/address";import{Web3Provider as Ic}from"@ethersproject/providers";import{jsx as Mt,jsxs as Jo}from"react/jsx-runtime";var De=({style:e,...t})=>Jo("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:[Mt("rect",{width:"28",height:"28",rx:"6",fill:"url(#paint0_linear_1765_9937)"}),Mt("path",{d:"M24.0223 14.1704H21.5542C21.5542 9.14083 17.4627 5.06372 12.4151 5.06372C7.43008 5.06372 3.37717 9.04101 3.27798 13.9845C3.17536 19.0945 7.98653 23.5318 13.1154 23.5318H13.7605C18.2822 23.5318 24.3426 20.0047 25.2895 15.7072C25.4643 14.9151 24.8364 14.1704 24.0223 14.1704ZM8.74752 14.3945C8.74752 15.0671 8.19544 15.6172 7.52045 15.6172C6.84545 15.6172 6.29341 15.0669 6.29341 14.3945V12.4165C6.29341 11.7439 6.84545 11.1938 7.52045 11.1938C8.19544 11.1938 8.74752 11.7439 8.74752 12.4165V14.3945ZM13.0083 14.3945C13.0083 15.0671 12.4563 15.6172 11.7813 15.6172C11.1063 15.6172 10.5543 15.0669 10.5543 14.3945V12.4165C10.5543 11.7439 11.1065 11.1938 11.7813 11.1938C12.4563 11.1938 13.0083 11.7439 13.0083 12.4165V14.3945Z",fill:"url(#paint1_linear_1765_9937)"}),Jo("defs",{children:[Jo("linearGradient",{id:"paint0_linear_1765_9937",x1:"14",y1:"0",x2:"14",y2:"28",gradientUnits:"userSpaceOnUse",children:[Mt("stop",{stopColor:"#534BB1"}),Mt("stop",{offset:"1",stopColor:"#551BF9"})]}),Jo("linearGradient",{id:"paint1_linear_1765_9937",x1:"14.2976",y1:"5.06372",x2:"14.2976",y2:"23.5318",gradientUnits:"userSpaceOnUse",children:[Mt("stop",{stopColor:"white"}),Mt("stop",{offset:"1",stopColor:"white",stopOpacity:"0.82"})]})]})]});var Xo=class extends ye{constructor(o,r){var n,i;super("phantom",o,r);if(this.proxyProvider=o,"phantom"in window){let a=window;this.proxyProvider.setWalletProvider(a.phantom.ethereum),(i=(n=a.phantom.ethereum)==null?void 0:n.providers)==null||i.forEach(s=>{s.isPhantom&&this.proxyProvider.setWalletProvider(s)})}this.subscribeListeners()}async connect(o){return o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}async isConnected(){let o=await this.connectedPhantomAddress();return this.address===o}async connectedPhantomAddress(){let r=await new Ic(this.proxyProvider).listAccounts();return r.length===0?null:ea(r[0])}get walletBranding(){return{name:"Phantom",icon:De}}disconnect(){console.warn("Phantom does not support programmatic disconnect.")}async promptConnection(){try{let o="",r=await this.proxyProvider.request({method:"eth_requestAccounts"});if(r.length>0&&(o=ea(r[0])),!o||o==="")throw new q("Unable to retrieve address");this.connected=!0,this.address=o}catch(o){throw Ae(o)}}subscribeListeners(){this.proxyProvider.on("accountsChanged",o=>{var r;if(o.length>0){let n=o[0];this.connected=((r=this.address)==null?void 0:r.toLowerCase())===(n==null?void 0:n.toLowerCase())}else this.connected=!0}),this.proxyProvider.on("disconnect",()=>{this.connected=!1})}};import Bc from"@walletconnect/web3-provider";import{isAndroid as pa}from"react-device-detect";import{createContext as Mc,useContext as Nc,useEffect as un,useState as oa}from"react";import{jsx as Lc}from"react/jsx-runtime";function ta(e){return Lc("link",{rel:"prefetch",href:e.src})}import{jsx as Dc,jsxs as Oc}from"react/jsx-runtime";var je="LANDING",ra=Mc({ready:!1,app:null,currentScreen:je,lastScreen:je,navigate:C,navigateBack:C,setModalData:C}),na=e=>{var f,m,v;let t=e.appConfig,o=e.authenticated,r=e.visible,[n,i]=oa(e.initialScreen||je),[a,s]=oa(e.initialScreen||je);un(()=>{o||i(je)},[o]),un(()=>{r||(s(je),i(je))},[r]),un(()=>{e.initialScreen&&n===je&&(i(e.initialScreen),s(e.initialScreen))},[e.initialScreen]);let l=e.initialScreen&&n===je?e.initialScreen:n,d={ready:!!(t!=null&&t.id),app:t,data:e.data,setModalData:e.setModalData,currentScreen:l,lastScreen:a,navigate:y=>{s(n),i(y)},navigateBack:()=>{i(a)}};return Oc(ra.Provider,{value:d,children:[(typeof((f=t==null?void 0:t.appearance)==null?void 0:f.logo)=="string"||((v=(m=t==null?void 0:t.appearance)==null?void 0:m.logo)==null?void 0:v.type)==="img")&&Dc(ta,{src:typeof t.appearance.logo=="string"?t.appearance.logo:t.appearance.logo.props.src}),e.children]})},b=()=>Nc(ra);import{jsx as Nt,jsxs as Uc}from"react/jsx-runtime";var Dt=({style:e,...t})=>{let{app:o}=b();return Uc("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:[Nt("rect",{width:"28",height:"28",rx:"3",fill:(o==null?void 0:o.appearance.palette.colorScheme)==="dark"?"#3396ff":"#141414"}),Nt("g",{clipPath:"url(#clip0_1765_9946)",children:Nt("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"})}),Nt("defs",{children:Nt("clipPath",{id:"clip0_1765_9946",children:Nt("rect",{width:"20",height:"12.2531",fill:"white",transform:"translate(4 8)"})})})]})};import{saveMobileLinkInfo as ia}from"@walletconnect/browser-utils";import{isAndroid as mn}from"react-device-detect";var er="c57ca95b47569778a828d19178114f4db188b89b763c899ba0be274e97267d96",fn=e=>{let t=qo(e).trim().toLowerCase();for(let[o,r]of Object.entries(po))if(r.name.toLowerCase()===t)return{id:o,entry:r}},po={"1ae92b26df02f0abca6304df07debccd18262fdf5fe82daa81593582dac9a369":{name:"Rainbow",image_id:"7a33d7f1-3d12-4b5c-f3ee-5cd83cb1b500",mobile:{universal:"https://rnbwapp.com"}},"4622a2b2d6af1c9844944291e5e7351a6aa24cd7b23099efac1b2fd875da31a0":{name:"Trust Wallet",image_id:"0528ee7e-16d1-4089-21e3-bbfb41933100",mobile:{universal:"https://link.trustwallet.com"}},c57ca95b47569778a828d19178114f4db188b89b763c899ba0be274e97267d96:{name:"MetaMask",image_id:"5195e9db-94d8-4579-6f11-ef553be95100",mobile:{native:"metamask:"}},"225affb176778569276e484e1b92637ad061b01e13a048b35a9d280c3b58970f":{name:"Safe",image_id:"a1cb2777-f8f9-49b0-53fd-443d20ee0b00",mobile:{universal:"https://gnosis-safe.io/"}},"74f8092562bd79675e276d8b2062a83601a4106d30202f2d509195e30e19673d":{name:"Spot",image_id:"1bf33a89-b049-4a1c-d1f6-4dd7419ee400",mobile:{universal:"https://spot.so"}},ecc4036f814562b41a5268adc86270fba1365471402006302e70169465b7ac18:{name:"Zerion",image_id:"f216b371-96cf-409a-9d88-296392b85800",mobile:{universal:"https://wallet.zerion.io"}},"8308656f4548bb81b3508afe355cfbb7f0cb6253d1cc7f998080601f838ecee3":{name:"Unstoppable Domains",image_id:"4725dda0-4471-4d0f-7adf-6bbe8b929c00",mobile:{universal:"https://unstoppabledomains.com/mobile"}},"38f5d18bd8522c244bdd70cb4a68e0e718865155811c043f052fb9f1c51de662":{name:"BitKeep",image_id:"3f7075d0-4ab7-4db5-404d-3e4c05e6fe00",mobile:{universal:"https://bkapp.vip"}},afbd95522f4041c71dd4f1a065f971fd32372865b416f95a0b1db759ae33f2a7:{name:"Omni",image_id:"2cd67b4c-282b-4809-e7c0-a88cd5116f00",mobile:{universal:"https://links.omni.app"}},ccb714920401f7d008dbe11281ae70e3a4bfb621763b187b9e4a3ce1ab8faa3b:{name:"BitPay",image_id:"97d4429f-eaf0-4302-87f5-9d26d46fe700",mobile:{universal:"https://link.bitpay.com/wallet"}},"7674bb4e353bf52886768a3ddc2a4562ce2f4191c80831291218ebd90f5f5e26":{name:"MathWallet",image_id:"26a8f588-3231-4411-60ce-5bb6b805a700",mobile:{universal:"https://www.mathwallet.org"}},"2863183c3299d820fb9a4cb8aab4a34f50380c9992e8be871fd60a62e8d36481":{name:"1inch Wallet",image_id:"dce1ee99-403f-44a9-9f94-20de30616500",mobile:{universal:"https://wallet.1inch.io"}},efba9ae0a9e0fdd9e3e055ddf3c8e75f294babb8aea3499456eff27f771fda61:{name:"Eidoo",image_id:"ef5b8bcf-00d5-457d-e161-9911e4788700",mobile:{universal:"https://eidoo.io/crypto-wallet"}},b021913ba555948a1c81eb3d89b372be46f8354e926679de648e4fa2938bed3e:{name:"Coin98",image_id:"dee547be-936a-4c92-9e3f-7a2350a62e00",mobile:{universal:"https://coin98.com"}},"7e90b95230bc462869bbb59f952273d89841e1c76bcc5319898e08c9f34bd4cd":{name:"Unstoppable Wallet",image_id:"5c38b22c-adb9-4899-3252-6e3d71458500",mobile:{universal:"https://unstoppable.money"}},"138f51c8d00ac7b9ac9d8dc75344d096a7dfe370a568aa167eabc0a21830ed98":{name:"AlphaWallet",image_id:"5b1cddfb-056e-4e78-029a-54de5d70c500",mobile:{universal:"https://aw.app"}},"468b4ab3582757233017ec10735863489104515ab160c053074905a1eecb7e63":{name:"D'CENT Wallet",image_id:"1efb49ec-2bab-4fa1-f2f2-4392c64ed000",mobile:{universal:"https://link.dcentwallet.com"}},"29f4a70ad5993f3f73ae8119f0e78ecbae51deec2a021a770225c644935c0f09":{name:"ZelCore",image_id:"97d45a92-a1f0-46da-95a6-ad5db99f3500",mobile:{universal:"https://link.zel.network"}},"8240fb8a7b117aed27f04aa8870c714eeb910f7c1b16c9b868e793c1836335b8":{name:"Nash",image_id:"12f981b1-bb0a-4115-009f-317255979600",mobile:{universal:"https://nash.io/walletconnect"}},"15d7610042217f691385d20e640869dc7273e991b04e8f476417cdc5ec856955":{name:"Coinomi",image_id:"3b446d16-a908-40c8-5835-9a6efe90dd00",mobile:{universal:"https://coinomi.page.link"}},a395dbfc92b5519cbd1cc6937a4e79830187daaeb2c6fcdf9b9cce4255f2dcd5:{name:"CYBAVO Wallet",image_id:"3117d3ce-b973-4cfd-8fb5-f5d72ed3c200",mobile:{universal:"https://cdn.cybavo.com"}},"0b415a746fb9ee99cce155c2ceca0c6f6061b1dbca2d722b3ba16381d0562150":{name:"SafePal",image_id:"14096232-7483-425b-f9a9-658f94fe7100",mobile:{universal:"https://link.safepal.io"}},"881946407ff22a32ec0e42b2cd31ea5dab52242dc3648d777b511a0440d59efb":{name:"Bridge Wallet",image_id:"989d504f-93db-4ca6-c00a-9d1faf177d00",mobile:{universal:"https://bridge.mtpelerin.com"}},"3b0e861b3a57e98325b82ab687fe0a712c81366d521ceec49eebc35591f1b5d1":{name:"SparkPoint",image_id:"34c4f901-70de-4507-e7a0-bc7887843000",mobile:{universal:"https://sparkpoint.io"}},"38ee551a01e3c5af9d8a9715768861e4d642e2381a62245083f96672b5646c6b":{name:"PEAKDEFI Wallet",image_id:"744a3fbe-4261-4148-133e-49c5b58cb400",mobile:{universal:"https://peakdefi.com/download"}},f2436c67184f158d1beda5df53298ee84abfc367581e4505134b5bcf5f46697d:{name:"Crypto.com | DeFi Wallet",image_id:"7c5ff577-a68d-49c5-02cd-3d83637b0b00",mobile:{universal:"https://wallet.crypto.com"}},"15d1d97de89526a3c259a235304a7c510c40cda3331f0f8433da860ecc528bef":{name:"Ellipal",image_id:"0a805e10-bfc0-4d02-d9c1-8cec88f0dc00",mobile:{universal:"https://www.ellipal.com/"}},"19ad8334f0f034f4176a95722b5746b539b47b37ce17a5abde4755956d05d44c":{name:"Aktionariat",image_id:"6d18e8ea-b536-4038-c5bf-94a499d5a400",mobile:{universal:"https://app.aktionariat.com"}},"95501c1a07c8eb575cb28c753ab9044259546ebcefcd3645461086e49b671f5c":{name:"Talken Wallet",image_id:"1afb5a3a-2da3-40ce-baf9-b416e7510600",mobile:{universal:"https://talken.io"}},"2ed796df33fdbde6a3ea6a47d3636b8341fe285038d844c7a78267b465b27028":{name:"KyberSwap",image_id:"3abd1720-260e-495a-2e31-3d0b349e0d00",mobile:{universal:"https://kyberswapnew.app.link"}},"4e6af4201658b52daad51a279bb363a08b3927e74c0f27abeca3b0110bddf0a9":{name:"Tongue Wallet",image_id:"20bc4fdb-b9e6-429a-8cba-c233b3273000",mobile:{universal:"https://www.tongue.fi"}},b13fcc7e3500a4580c9a5341ed64c49c17d7f864497881048eb160c089be5346:{name:"RWallet",image_id:"a883229c-26cb-4c19-9b34-1f0ed4012a00",mobile:{universal:"https://www.rwallet.app"}},"13c6a06b733edf51784f669f508826b2ab0dc80122a8b5d25d84b17d94bbdf70":{name:"PlasmaPay",image_id:"466c8fd0-fcec-4621-b94f-e91ce1439f00",mobile:{universal:"https://plasmapay.com/"}},"0aafbedfb8eb56dae59ecc37c9a5388509cf9c082635e3f752581cc7128a17c0":{name:"O3Wallet",image_id:"e1c7c6af-c731-463e-55f0-5e686e9f6200",mobile:{universal:"https://o3.network"}},"761d3d98fd77bdb06e6c90092ee7071c6001e93401d05dcf2b007c1a6c9c222c":{name:"HashKey Me",image_id:"72734fac-9500-4c2c-81ba-678f7fc32700",mobile:{universal:"https://me.hashkey.com"}},ffa139f74d1c8ebbb748cf0166f92d886e8c81b521c2193aa940e00626f4e215:{name:"Defiant",image_id:"026462e7-09a3-47f6-6b46-49df18133b00",mobile:{universal:"https://defiantapp.tech"}},"717911f4db0c5eda0e02e76ed179b7940ba1eefffdfb3c9e6540696226860da0":{name:"Elastos Essentials",image_id:"04a6bfed-d80e-4f7b-0516-261f86aa4000",mobile:{universal:"https://essentials.elastos.net"}},"9d6c614d1995741d5313f1f3dbf1f66dcba694de782087d13b8721822502692f":{name:"Stasis",image_id:"7ae753bc-a754-450c-2d90-2c5521734400",mobile:{universal:"https://app.stasis.net"}},a6ffb821a3c32d36fc9d29e29c2ff79a0cd1db0bca453714777846ddf3fdff76:{name:"JulWallet",image_id:"cabd50de-22fa-487b-ce68-2c63de8bb800",mobile:{universal:"https://justliquidity.org"}},"76745388a50e6fea982c4dee2a3ad61a8aa417668be870754689caa8a7506c93":{name:"Tangem",image_id:"8a5b6e94-e378-458d-bf2e-017cc7958e00",mobile:{universal:"https://app.tangem.com"}},"6464873279d46030c0b6b005b33da6be5ed57a752be3ef1f857dc10eaf8028aa":{name:"SecuX",image_id:"d46a33d6-92a1-4dfd-38d4-779815fb5c00",mobile:{universal:"https://wsweb.secuxtech.com"}},"2c81da3add65899baeac53758a07e652eea46dbb5195b8074772c62a77bbf568":{name:"Ambire Wallet",image_id:"c39b3a16-1a38-4588-f089-cb7aeb584700",mobile:{universal:"https://mobile.ambire.com"}},b823fb0d7228ef8e3c0bc9607df9ed79dae2ab3a2811d33f22ade4f573c18232:{name:"Slavi Wallet",image_id:"282ce060-0beb-4236-b7b0-1b34cc6c8f00",mobile:{universal:"https://www.slaviwallet.io"}},dccbd717df77b395445cc6080e01fffada9d8b92dacfda312a26c70c2e9af673:{name:"Nufinetes",image_id:"70080bd7-9858-4720-cf74-8f74cd74cb00",mobile:{universal:"https://apple.vimworld.org"}},c6f3d04a4e1a51e7d2045f347a5ebdab30fc600950a740fca21f0c92e230ee05:{name:"Arianee Wallet",image_id:"ace938a9-c906-4b9e-f683-b85f1ab72800",mobile:{universal:"https://arianee.net"}},c482dfe368d4f004479977fd88e80dc9e81107f3245d706811581a6dfe69c534:{name:"NOW Wallet",image_id:"b6ee4efc-f53e-475b-927b-a7ded6211700",mobile:{universal:"https://walletnow.app.link"}},"14e7176536cb3706e221daaa3cfd7b88b7da8c7dfb64d1d241044164802c6bdd":{name:"Blocto",image_id:"374258d3-c749-4f37-7815-77e61f798c00",mobile:{universal:"https://blocto.app"}},"0e4915107da5b3408b38e248f7a710f4529d54cd30e9d12ff0eb886d45c18e92":{name:"Arculus Wallet",image_id:"f78dab27-7165-4a3d-fdb1-fcff06c0a700",mobile:{universal:"https://gw.arculus.co/app"}},a2c031fccd13a6c16d7745c303507f78ae4da53fed064542804e9657d73e8b5c:{name:"Backpack",image_id:"e46f132d-6e05-4d51-8720-43727446e600",mobile:{universal:"https://jxndao.com"}},f593f4eb9755ff047681a37ebc46706e0e915cf1c2fe0102f5ae47c9f6aa4082:{name:"Autonomy: Digital Art Wallet",image_id:"2ee7c9db-9a86-4cd6-0d32-5053b4636100",mobile:{universal:"https://autonomy.io/apps/wc"}},"5859076ade608fbc4e9d3fe2f95e8527de80f8451ecbb1dced54ca84deae0dd6":{name:"Coingrig",image_id:"18e38e41-a387-4402-ca31-6d2d5eb91100",mobile:{universal:"https://link.coingrig.com"}},bb88a220ed4dcd3d717ec19b6ac00a672edf92e97ef7c243d35e25ff56a07301:{name:"bobablocks",image_id:"aff8973b-e093-45b5-4858-c01dd043bc00",mobile:{universal:"https://app.bobablocks.io"}},cbe13eb482c76f1fa401ff4c84d9acd0b8bc9af311ca0620a0b192fb28359b4e:{name:"Plasma Wallet",image_id:"c268e78d-ffb0-4c8b-5cad-04c3add48500",mobile:{universal:"https://plasma-wallet.com"}},b83a346877b71c02b8531f53485ce12bc00033eabcc1213ca3329cbc744813a5:{name:"Holdstation Wallet",image_id:"e6dba126-85af-4194-84f6-dd16632c3c00",mobile:{universal:"https://apps.apple.com/us/app/holdstation-web3-wallet/id6444925618"}},a92d512c649e87a5acba5885ac03f62662cff1f647c20a63833eb45a71a6f877:{name:"HUMBL WALLET",image_id:"1ac55ba2-aa98-4ed0-59b3-b3155dea4200",mobile:{universal:"https://wallet.search3.com"}},"226d8a12a2e6e5c4185fa9c24313824bfb144c2a180325bddbd121844f497afa":{name:"ISLAMIwallet",image_id:"8d723c78-28ad-4610-901f-ea391d7e8d00",mobile:{universal:"https://islamiwallet.com"}},"11c5487e4d8dd8bf32d4c92222363df8296a27307b2531be1e25770365392ecb":{name:"Card Wallet",image_id:"325428cf-c212-4d83-a434-7f48902d2c00",mobile:{universal:"https://wallet.cardstack.com"}},f5b4eeb6015d66be3f5940a895cbaa49ef3439e518cd771270e6b553b48f31d2:{name:"MEW wallet",image_id:"e2024511-2c9b-46d7-3111-52df3d241700",mobile:{universal:"https://mewwallet.com"}},"576c90ceaea34f29ff0104837cf2b2e23d201be43be1433feeb18d375430e1fd":{name:"PLTwallet",image_id:"a5d9dd15-8cef-42de-8bed-09e01a8b0200",mobile:{universal:"https://pltwallet.io/"}},"94f785c0c8fb8c4f38cd9cd704416430bcaa2137f27e1468782d624bcd155a43":{name:"Avacus",image_id:"a7106965-91cc-4a73-4688-c5c72ae0ed00",mobile:{universal:"https://avacus.app.link"}},bc949c5d968ae81310268bf9193f9c9fb7bb4e1283e1284af8f2bd4992535fd6:{name:"Argent",image_id:"215158d2-614b-49c9-410f-77aa661c3900",mobile:{universal:"https://www.argent.xyz/app"}},"664b505fea4c2117b8a55c054ef209664e0a68ddaafd7534df739f97a293fa1d":{name:"Hippo Wallet",image_id:"f9570968-45f7-47c1-3189-98cf60e25c00",mobile:{universal:"https://hippowallet.io"}},"0c5bba82e70a2b62405871af809020a077d110d765c0798eb660ad5d3131b328":{name:"Edge Wallet",image_id:"f601bc29-4298-422f-dbf7-34dac2884f00",mobile:{universal:"https://deep.edge.app/wc"}},"792fbacfe787d67595dd4eb38ac308e14b3bbc810393db56f477a92e5ac8764b":{name:"Assure",image_id:"64db7104-c8b7-44ea-e102-11ce87124200",mobile:{universal:"https://www.assure.pro/Official"}},"7ef337ff00714f179d38b8142398efa2ab902a53430e99ebce02892053d7a310":{name:"EASY",image_id:"62feb41a-be1f-4b1c-e089-27f97c0e8d00",mobile:{universal:"https://link.easy.me"}},"7e94e75c90964a69ea375b92214f50c4223dfbfa4913a3733b615444b322f687":{name:"CoinStats",image_id:"f989ab84-650b-4ad5-c342-77f3334f1b00",mobile:{universal:"https://coinstats.app"}},"107bb20463699c4e614d3a2fb7b961e66f48774cb8f6d6c1aee789853280972c":{name:"Bitcoin.com Wallet",image_id:"0d7938e1-9b3b-4d8b-177b-98188c4cf400",mobile:{universal:"https://wallet.bitcoin.com/"}},"1986e7c874bb906f057d5d64a4806c004e021689536e5228c74d64a6058e8bac":{name:"Defiant",image_id:"11a96ca4-3592-42ae-c781-2b7265ec9200",mobile:{universal:"https://defiantapp.tech/"}},"19418ecfd44963883e4d6abca1adeb2036f3b5ffb9bee0ec61f267a9641f878b":{name:"KryptoGO Wallet",image_id:"3ccbd966-97e8-45a0-1ceb-6141a8978e00",mobile:{universal:"https://kryptogo.page.link"}},"37a686ab6223cd42e2886ed6e5477fce100a4fb565dcd57ed4f81f7c12e93053":{name:"Bifrost Wallet",image_id:"86be07e2-6652-4fd1-5f33-651682c95400",mobile:{universal:"https://app.bifrostwallet.com"}},"4f5de5333fed2ccf47c690579aba3b9128aea78175339ff51ef61704bde7502a":{name:"Okse Wallet",image_id:"8a1b36d5-7f40-403a-7000-5d30f9181200",mobile:{universal:"https://okse.io/"}},"9034d54985807aaf3d7780f50f155f954daa468fb58d7b14b216fc79d68bbd14":{name:"Qubic Wallet",image_id:"2e9ef302-daae-4807-555f-d4986b0b6700",mobile:{universal:"https://wallet.qubic.app"}},c39d8ee468e50474fdf3a0bd6b981be404d4671e2702a3d633aae95bcbaa032a:{name:"XFUN Wallet",image_id:"a665f8f3-09ef-4d17-2bd0-26dca4518400",mobile:{universal:"https://xfun.io"}},e9ff15be73584489ca4a66f64d32c4537711797e30b6660dbcb71ea72a42b1f4:{name:"Exodus",image_id:"4c16cad4-cac9-4643-6726-c696efaf5200",mobile:{universal:"https://exodus.com/m"}},"114efdbef4ce710081c1507f3dbc51f439c96a342cf33397799cd1c84b01a8c5":{name:"S-ONE Wallet",image_id:"b3562637-a407-4035-6fa5-a70ff2050400",mobile:{universal:"https://sonewallet.app"}},"5b8e33346dfb2a532748c247876db8d596734da8977905a27b947ba1e2cf465b":{name:"PREMA Wallet",image_id:"6487869b-1165-4f30-aa3a-115665be8300",mobile:{universal:"https://premanft.com"}},"2cca8c1b0bea04ba37dee4017991d348cdb7b826804ab2bd31073254f345b715":{name:"Bee Wallet",image_id:"f90bc33f-f085-40cf-7538-fae5ae84f900",mobile:{universal:"https://beewallet.app/wc"}},e3787ea98d014ca77e2c3794db97c02ef8bcb39347705f5e79502a55434a1ecf:{name:"TK Finance",image_id:"c4066f68-2247-49bf-ac8a-a677bfa81800",mobile:{universal:"https://trustkeys.network"}},"159b0423ce9075d5662f588f805931d989627affab3e63e4dd7ebc62b9c6738c":{name:"Oxalus Wallet",image_id:"a6e22fcb-6b69-45d2-b52d-a4a347a21e00",mobile:{universal:"https://oxalus.page.link/?apn=io.oxalus.wallet&isi=1620111723&ibi=io.oxalus.wallet&link=https://deeplink.oxalus.io"}},fbea6f68df4e6ce163c144df86da89f24cb244f19b53903e26aea9ab7de6393c:{name:"Klever Wallet",image_id:"8f5bbad8-6a14-4b2c-5343-cc1fca6e4d00",mobile:{universal:"https://klever.page.link"}},"1aedbcfc1f31aade56ca34c38b0a1607b41cccfa3de93c946ef3b4ba2dfab11c":{name:"OneKey",image_id:"12bebb3f-8030-4892-8452-c60a6bac1500",mobile:{universal:"https://app.onekey.so/wc/connect"}},"14e5d957c6eb62d3ee8fc6239703ac2d537d7e3552154836ca0beef775f630bc":{name:"Pitaka",image_id:"691c0716-5213-4b99-e837-079268313800",mobile:{universal:"https://app.pitaka.io"}},"031f0187049b7f96c6f039d1c9c8138ff7a17fd75d38b34350c7182232cc29aa":{name:"Obvious",image_id:"40945cea-9cd2-4acc-5799-ca7fb31f4700",mobile:{universal:"https://wallet.obvious.technology"}},c40b9bcef32fa6ce4e0df98be1420628bbc4957646f742380fe618fcb4ab74f1:{name:"RiceWallet",image_id:"df94578e-19be-4f00-258f-2470343e7b00",mobile:{universal:"https://ricewallet.io"}},b265ce38b94d602957a0946673c59a99a15d69adda4317544fec7298ea2d1387:{name:"SafeMoon",image_id:"ecc31a8e-0ee9-49db-cc59-0876b7c35600",mobile:{universal:"https://safemoon.net/"}},dc5415b6ea8114db518ae91195b027d690a11a1d2bfdd1a904e93c5cb746380e:{name:"SimpleHold",image_id:"a9f1ba96-b658-4d13-f71f-226b6389f000",mobile:{universal:"https://simplehold.io"}},"41f20106359ff63cf732adf1f7dc1a157176c9b02fd266b50da6dcc1e9b86071":{name:"Bitizen",image_id:"75dd1471-77e9-4811-ce57-ec8fc980ec00",mobile:{universal:"https://bitizen.org/wallet"}}},aa=(e,t="md")=>`https://registry.walletconnect.com/v2/logo/${t}/${e}`;function sa(e){return{name:e.name||"",universalLink:e.mobile.universal||"",deepLink:e.mobile.native||""}}function la(e,t){let o=encodeURIComponent(e);return t.universalLink?`${t.universalLink}/wc?uri=${o}`:t.deepLink?`${t.deepLink}${t.deepLink.endsWith(":")?"//":"/"}wc?uri=${e}`:""}function ca(e,t){return mn?e:la(e,sa(po[t]))}var tr=(e,t)=>{if(!e)return;if(mn){ia({name:"Unknown",href:t||"wc:"});return}let o=po[e];if(!o){console.warn("Attempted to set info for unknown wallet",e);return}let r=la(t||"wc:",sa(o));ia({name:(o==null?void 0:o.name)||"",href:r})},da=()=>{!mn||window.open("wc:","_self")};var hn=class extends ye{constructor(o,r,n){super("wallet_connect",r,n);this.proxyProvider=r,this.connectionManager=o}setActive(){return this.walletProvider.walletId&&tr(this.walletProvider.walletId),Promise.resolve(!0)}async connect(o){return o.showPrompt&&await this.promptConnection(),this.getConnectedWallet()}async isConnected(){return this.walletProvider.connected}get walletBranding(){var o,r,n;if(this.walletProvider.walletId){let i=po[this.walletProvider.walletId];return{name:i.name,icon:this.walletProvider.walletId===er?ue:aa(i.image_id)}}return{name:qo(((o=this.walletProvider.walletMeta)==null?void 0:o.name)||"")||"WalletConnect",icon:((n=(r=this.walletProvider.walletMeta)==null?void 0:r.icons)==null?void 0:n[0])||Dt}}async promptConnection(){return new Promise((o,r)=>{this.walletProvider.connector.on("disconnect",(i,a)=>{if(i){r(Ae(i));return}a.params.some(s=>s.message==="Session Rejected")&&(this.setWalletProvider(this.connectionManager.replaceProvider(this,this.walletProvider)),r(new ft)),r(new q("Unknown error during connection"))}),this.walletProvider.qrcode&&this.walletProvider.connector.on("modal_closed",()=>{this.setWalletProvider(this.connectionManager.replaceProvider(this,this.walletProvider)),r(new ft)}),this.walletProvider.connector.on("transport_error",(i,a)=>{r(Ae(i))}),(async()=>{let i="",a=await Promise.race([this.connectionManager.enableProvider(this.walletProvider),dn()]);if(a.length>0&&(i=a[0]),!i||i==="")throw new q("Unable to retrieve address");this.connected=!0,o()})().catch(i=>r(Ae(i)))})}async sign(o){tr(this.walletProvider.walletId),this.walletProvider.connected||await this.connectionManager.enableProvider(this.walletProvider);let r=await this.walletProvider.getWalletConnector();return new Promise(async(n,i)=>{var a;r.signPersonalMessage([o,(a=this.walletProvider.accounts)==null?void 0:a[0]]).then(s=>n(s)),pa&&da()})}disconnect(){this.walletProvider.close().catch(()=>console.warn("Unable to disconnect wallet provider"))}get walletProvider(){return this.proxyProvider.walletProvider}setWalletProvider(o){this.proxyProvider.setWalletProvider(o)}},or=class{constructor(){this._storageIdToProvider={},this.reconnectDelayMs=10,this.reconnectBackoff=2,!(typeof window>"u")&&G.getKeys().forEach(t=>{var o,r;if(t.startsWith("walletconnect")){let n=t.split(":")[2]?t.split(":")[2]:void 0;if(!n){let i=(r=(o=G.get(t))==null?void 0:o.peerMeta)==null?void 0:r.name;if(i){let a=fn(i);a!=null&&a.id&&(n=a.id)}}this.createProviderWithStorageId(t,n)}})}createConnector(t,o,r){let n=this.getProviderForAddress(o,r),i=new hn(this,t,o);return n?n.isConnecting&&(n=this.replaceProvider(i,n)):n=this.createProvider(i,r),i.setWalletProvider(n),i}async disconnect(){await Promise.all(Object.values(this._storageIdToProvider).map(async t=>await t.disconnect()))}getStorageId(t,o){if(!t)return;let r=G.getKeys().filter(i=>i.startsWith("walletconnect"));if(o){let i=r.filter(a=>a.includes(o));if(i){let a=i.find(s=>ln(G.get(s).accounts,t));if(a)return a}}let n=r.find(i=>ln(G.get(i).accounts,t));if(!(n&&o&&!n.includes(o)))return n}getProviderForAddress(t,o){let r=this.getStorageId(t,o);r||(r=`${rn}:${Math.random().toString(36).slice(2)}:${o||""}`);let n=this._storageIdToProvider[r];if(n)return n}createProviderWithStorageId(t,o){let r=o?{qrcode:!1}:{},n=new Bc({infuraId:Me,storageId:t,pollingInterval:Gi,...r});return n.walletId=o,o?n.connector.on("display_uri",(i,a)=>{tr(o);let s=a.params[0],l=ca(s,o);pa?window.open(l):window.open(l,"_self","noopener,noreferrer")}):n.connector.on("connect",()=>{var i,a,s;(i=n.walletMeta)!=null&&i.name&&(n.walletId=(s=fn((a=n.walletMeta)==null?void 0:a.name))==null?void 0:s.id)}),this._storageIdToProvider[t]=n,n}createProvider(t,o){let r=`${rn}:${Math.random().toString(36).slice(2)}:${o||""}`,n=this.createProviderWithStorageId(r,o);return n.connector.on("transport_error",()=>{console.warn("Transport failed. Replacing provider."),setTimeout(()=>{t.setWalletProvider(this.replaceProvider(t,n)),this.reconnectDelayMs*=this.reconnectBackoff},this.reconnectDelayMs)}),n}replaceProvider(t,o){o.close().catch(()=>console.warn("Unable to disconnect provider"));let r=Object.entries(this._storageIdToProvider).find(([n,i])=>i.connector.session.key===o.connector.session.key);return r&&delete this._storageIdToProvider[r[0]],this.createProvider(t,o.walletId)}async enableProvider(t){return t.connected?Promise.resolve(t.accounts):await t.enable()}};var Xi=()=>{if(!window.ethereum)return!1;if(rr(window.ethereum,!0))return!0;if(window.ethereum.providers){for(let e of window.ethereum.providers)if(rr(e,!0))return!0}return!1},gn=()=>{if(!window.ethereum)return!1;if(rr(window.ethereum,!1))return!0;if(window.ethereum.providers){for(let e of window.ethereum.providers)if(rr(e,!1))return!0}return!1},rr=(e,t)=>e.isMetaMask?e.isMetaMask&&!t?!0:!(e.isBraveWallet&&!e._events&&!e._state||e.isApexWallet||e.isAvalanche||e.isBitKeep||e.isBlockWallet||e.isKuCoinWallet||e.isMathWallet||e.isOkxWallet||e.isOKExWallet||e.isOneInchIOSWallet||e.isOneInchAndroidWallet||e.isOpera||e.isPhantom||e.isPortal||e.isRabby||e.isTokenPocket||e.isTokenary||e.isZerion):!1,nt=()=>{var e,t;if("phantom"in window){let o=window;if((t=(e=o==null?void 0:o.phantom)==null?void 0:e.ethereum)!=null&&t.isPhantom)return!0}return!1},Ot=()=>{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},yn=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===Fc(t)).length):!1},ua=()=>{var t;let e=G.get(Vo);return e?(t=e.find(o=>o.active))==null?void 0:t.address:null},uo=class{constructor(){this.getEthereumProvider=()=>{var t;return((t=this.activeWalletConnector)==null?void 0:t.proxyProvider)||new We};this.walletConnectors=[],this.wcConnectionManager=new or,this.initialized=!1}initialize(){this.initialized||(this.load(),this.activeWalletConnector&&this.activeWalletConnector.connect({showPrompt:!1}).catch(t=>console.warn("Unable to reconnect active wallet",t)),this.initialized=!0)}initializeLinkedWallets(t){t.linkedAccounts.forEach(()=>null)}load(){(G.get(Vo)||[]).forEach(o=>{if(o.walletType!=="embedded"){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)&&o.walletType===this.activeWalletConnector.walletType}});G.put(Vo,t)}addEmbeddedWalletConnector(t,o){let r=new $o(t,o),n=new Yo(r,o);this.addWalletConnector(n),this.save()}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){let o=this.walletConnectors.find(r=>r.address===t);o&&o.disconnect(),this.walletConnectors=this.walletConnectors.filter(r=>r.address!==t),this.activeWalletConnector=void 0,this.save()}async activeWalletSign(t){if(!this.activeWalletConnector)throw new q("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.activeWalletConnector&&this.activeWalletConnector.proxyProvider.on("accountsChanged",n=>{var i;n.length===0&&(((i=this.activeWalletConnector)==null?void 0:i.address)===t&&(this.activeWalletConnector=void 0),this.save())}),this.save(),!0}return!1}createWalletConnector(t,o,r){switch(t){case"metamask":return new Qo(new We,o);case"phantom":return new Xo(new We,o);case"coinbase_wallet":return new Zo(new We,o);case"wallet_connect":return this.wcConnectionManager.createConnector(new We,o,r);case"embedded":throw new Error("This method should not be used to create embedded connectors")}}};function Ke(e){return new Date(e*1e3)}function Gc(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:Ke(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:Ke(o.verified_at)};t.push(i);break;case"phone":let a={number:o.phoneNumber,type:o.type,verifiedAt:Ke(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:Ke(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:Ke(o.verified_at)};t.push(l);break;case"discord_oauth":let d={subject:o.subject,username:o.username,email:o.email,type:o.type,verifiedAt:Ke(o.verified_at)};t.push(d);break;case"github_oauth":let f={subject:o.subject,username:o.username,name:o.name,email:o.email,type:o.type,verifiedAt:Ke(o.verified_at)};t.push(f);break;case"apple_oauth":let m={subject:o.subject,email:o.email,type:o.type,verifiedAt:Ke(o.verified_at)};t.push(m);break;default:console.warn(`Unrecognized account type: ${r}. Please consider upgrading the Privy SDK.`)}}return t}function it(e,t){return e.sort((o,r)=>r.verifiedAt.getTime()-o.verifiedAt.getTime()),e.find(o=>o.type===t)}function mo(e){let t=ua();if(!t&&e.wallet)return 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 $=e=>e==null?void 0:e.linkedAccounts.find(t=>t.type==="wallet"&&t.walletClient==="privy");function Ze(e){if(!e)return null;let t=Gc(e.linked_accounts),o=it(t,"wallet"),r=it(t,"email"),n=it(t,"phone"),i=it(t,"google_oauth"),a=it(t,"twitter_oauth"),s=it(t,"discord_oauth"),l=it(t,"github_oauth"),d=it(t,"apple_oauth"),f={id:e.id,createdAt:Ke(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},apple:d&&{subject:d.subject,email:d.email}};return mo(f)}import bn from"axios";var nr=class{constructor(t,o,r){this.appId=t,this.sdkVersion=on,this.client=o,this.defaults=r,this.fallbackApiUrl=o.fallbackApiUrl}async get(t,o,r=!0){try{return await bn.get(t,await this.buildConfig({headers:{"Cache-Control":"no-cache"},...o},r))}catch(n){throw Q(n)}}async post(t,o,r,n=!0){try{return await bn.post(t,o,await this.buildConfig(r,n))}catch(i){throw Q(i)}}async delete(t,o,r=!0){try{return await bn.delete(t,await this.buildConfig(o,r))}catch(n){throw Q(n)}}async buildConfig(t,o=!0){if(t=Object.assign({withCredentials:!0},t||{}),t.headers=t.headers||{},t.headers["privy-app-id"]=this.appId,t.headers["privy-client"]=`react-auth:${this.sdkVersion}`,o){let r=await this.client.getAccessToken();r!==null&&(t.headers.authorization=`Bearer ${r}`)}return{...this.defaults,...t}}};function ma(e){return e instanceof pt?"email":e instanceof ut?"sms":e instanceof ot?"siwe":e instanceof tt?e.meta.provider:null}var at=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 fa from"jose";var Ye=class{static parse(t){try{return new Ye(t)}catch{return null}}constructor(t){this.value=t,this._decoded=fa.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 Hc=30,ir=class{constructor(){this.authenticateOnce=new at(async t=>this._authenticate(t)),this.linkOnce=new at(async t=>this._link(t)),this.refreshOnce=new at(this._refresh.bind(this)),this.destroyOnce=new at(this._destroy.bind(this)),this.forkSessionOnce=new at(this._forkSession.bind(this))}get token(){try{let t=G.get(Wt);return typeof t=="string"?new Ye(t).value:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get refreshToken(){try{let t=G.get(Ho);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get forkedToken(){try{let t=G.get(so);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}hasRefreshCredentials(){return typeof this.token=="string"&&typeof this.refreshToken=="string"}hasRecoveryCredentials(){return typeof this.forkedToken=="string"}hasActiveToken(){let t=Ye.parse(this.token);return t!==null&&!t.isExpired(Hc)}authenticate(t){return this.authenticateOnce.execute(t)}link(t){return this.linkOnce.execute(t)}refresh(){return this.refreshOnce.execute()}forkSession(){return this.forkSessionOnce.execute()}destroy(){return this.destroyOnce.execute()}async _authenticate(t){try{let{token:o,refresh_token:r,user:n,is_new_user:i}=await t.authenticate();this.storeToken(o),this.storeRefreshToken(r);let a=ma(t);return a&&this.client&&this.client.createAnalyticsEvent("sdk_authenticate",{method:a,isNewUser:i}),a==="siwe"&&this.client&&this.client.createAnalyticsEvent("sdk_authenticate_siwe",{walletType:t.meta.walletType,walletName:t.meta.walletName}),{user:Ze(n),isNewUser:i}}catch(o){throw console.warn("Error authenticating session"),Ee(o)}}async _link(t){try{let o=await t.link();return Ze(o)}catch(o){throw console.warn("Error linking account"),Ee(o)}}async _refresh(){if(!this.api)throw new x("Session has no API instance");if(!this.client)throw new x("Session has no PrivyClient instance");await this.client.getAccessToken({disableAutoRefresh:!0});let t=this.token,o=this.refreshToken,r=this.forkedToken;try{let n;if(t&&o)n=await this.api.post(bi(),{refresh_token:o},{headers:{authorization:`Bearer ${t}`}},!1),r&&this.clearForkedToken();else if(r)n=await this.api.post(Ci(),{refresh_token:r},{},!1),this.clearForkedToken();else return null;return this.storeToken(n.data.token),this.storeRefreshToken(n.data.refresh_token),Ze(n.data.user)}catch(n){if(n instanceof Rt&&n.status===400&&n.message==="Invalid auth token")return this.destroyLocalState(),null;throw Ee(n)}}async _destroy(){var t;try{await((t=this.api)==null?void 0:t.post(vi(),{refresh_token:this.refreshToken}))}catch{console.warn("Error destroying session")}this.destroyLocalState()}async _forkSession(){if(!this.api)throw new x("Session has no API instance");let t=this.refreshToken;try{let o=await this.api.post(wi(),{refresh_token:t});return this.storeToken(o.data.token),this.storeRefreshToken(o.data.refresh_token),o.data.new_session_refresh_token}catch(o){throw Ee(o)}}destroyLocalState(){this.storeToken(null),this.storeRefreshToken(null),this.clearForkedToken()}storeToken(t){typeof t=="string"?G.put(Wt,t):G.del(Wt)}storeRefreshToken(t){typeof t=="string"?G.put(Ho,t):G.del(Ho)}clearForkedToken(){G.del(so)}};var vn,fo=class{constructor(t){this.apiUrl=t.apiUrl||Go,this.fallbackApiUrl=this.apiUrl,this.timeout=t.timeout||Fi,this.appId=t.appId,this.clientAnalyticsId=typeof window>"u"?null:crypto.randomUUID(),this.connectors=new uo,vn||(vn=new ir),this.session=vn,this.api=this.generateApi(),this.session.client=this}generateApi(){let t=new nr(this.appId,this,{baseURL:this.apiUrl,timeout:this.timeout});return this.session.api=t,t}updateApiUrl(t){this.apiUrl=t||this.fallbackApiUrl,this.api=this.generateApi()}authenticate(){if(!this.authFlow)throw new x("No auth flow in progress.");return this.session.authenticate(this.authFlow)}link(){if(!this.authFlow)throw new x("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(Ni(),{address:t});return Ze(o.data)}catch(o){throw Ee(o)}}async unlinkPhone(t){try{let o=await this.api.post(Di(),{phoneNumber:t});return Ze(o.data)}catch(o){throw Ee(o)}}async unlinkWallet(t){try{let o=await this.api.post(Mi(),{address:t});return await this.connectors.removeWallet(t),Ze(o.data)}catch(o){throw Ee(o)}}async unlinkOAuth(t,o){try{let r=await this.api.post(Oi(),{provider:t,subject:o});return Ze(r.data)}catch(r){throw Ee(r)}}async createAnalyticsEvent(t,o,r){try{if(!this.clientAnalyticsId)throw new Error("Cannot create analytics event if run in node and not browswer");await this.api.post(Ui(),{event_name:t,client_id:this.clientAnalyticsId,payload:{...o||{},clientTimestamp:r?r.toISOString():new Date().toISOString()}})}catch(n){console.error("Failed to create analytics event",n)}}async getAuthenticatedUser(){return this.session.hasRefreshCredentials()||this.session.hasRecoveryCredentials()?this.session.refresh():null}async getAccessToken(t){var o;return this.session.hasActiveToken()?((o=Ye.parse(this.session.token))==null?void 0:o.audience)!==this.appId?(await this.logout(),null):this.session.token:!(t!=null&&t.disableAutoRefresh)&&this.session.hasRefreshCredentials()?(await this.session.refresh(),this.session.token):null}async getServerConfig(){try{let t=await this.api.get(`/api/v1/apps/${this.appId}`,{baseURL:this.fallbackApiUrl});return{id:t.data.id,name:t.data.name,verificationKey:t.data.verification_key,logoUrl:t.data.logo_url||void 0,accentColor:t.data.accent_color||void 0,showWalletLoginFirst:t.data.show_wallet_login_first,allowlistConfig:{errorTitle:t.data.allowlist_config.error_title,errorDetail:t.data.allowlist_config.error_detail,errorCtaText:t.data.allowlist_config.cta_text,errorCtaLink:t.data.allowlist_config.cta_link},walletAuth:t.data.wallet_auth,emailAuth:t.data.email_auth,smsAuth:t.data.sms_auth,googleOAuth:t.data.google_oauth,twitterOAuth:t.data.twitter_oauth,discordOAuth:t.data.discord_oauth,githubOAuth:t.data.github_oauth,appleOAuth:t.data.apple_oauth,termsAndConditionsUrl:t.data.terms_and_conditions_url,privacyPolicyUrl:t.data.privacy_policy_url,customApiUrl:t.data.custom_api_url,createdAt:new Date(t.data.created_at*1e3),updatedAt:new Date(t.data.updated_at*1e3)}}catch(t){throw Ee(t)}}async getUsdTokenPrice(t){try{return(await this.api.get(`/api/v1/token_price?chainId=${t}`)).data.usd}catch{console.error(`Unable to fetch token price for chain with id ${t}`);return}}async setActiveWallet(t,o){if(!o.linkedAccounts.map(i=>i.type==="wallet"?i.address:null).includes(t))throw new x("Cannot set an unlinked address as active.");if(!await this.connectors.setActiveWallet(t))throw new x("Error setting the active wallet.");return mo(o)}async forkSession(){return await this.session.forkSession()}};import"wicg-inert";import{disableBodyScroll as pm,clearAllBodyScrollLocks as um}from"body-scroll-lock";import{useRef as mm,useCallback as fm}from"react";import{useEffect as ec}from"react";import hm from"react-dom";import hi from"styled-components";import{createContext as Vc,useContext as zc}from"react";var wn=Vc({isLinking:!1,linkingHint:null,activeStatus:null,walletConnectionStatus:null,getAuthMeta:C,getAuthFlow:C,closePrivyModal:C,initLoginWithWallet:C,loginWithWallet:C,loginWithCode:C,initLoginWithEmail:C,initLoginWithSms:C,resendEmailCode:C,resendSmsCode:C,initLoginWithOAuth:C,loginWithOAuth:C,refreshUser:C,walletProxy:null,createAnalyticsEvent:C,getUsdTokenPrice:C}),T=()=>zc(wn);import{createContext as qc,useContext as $c}from"react";var Cn=qc({ready:!1,authenticated:!1,user:null,walletConnectors:null,login:C,linkEmail:C,linkPhone:C,linkWallet:C,linkGoogle:C,linkTwitter:C,linkDiscord:C,linkGithub:C,linkApple:C,logout:C,getAccessToken:C,getEthereumProvider:C,getEthersProvider:C,getWeb3jsProvider:C,unlinkEmail:C,unlinkPhone:C,unlinkWallet:C,unlinkGoogle:C,unlinkTwitter:C,unlinkDiscord:C,unlinkGithub:C,unlinkApple:C,setActiveWallet:C,forkSession:C,createWallet:C,signMessage:C,sendTransaction:C,exportWallet:C}),N=()=>$c(Cn);import An from"styled-components";import go,{css as ha}from"styled-components";import En from"styled-components";import{Fragment as Zc,jsx as xn,jsxs as Yc}from"react/jsx-runtime";var ar=({success:e,fail:t})=>Yc(Zc,{children:[xn(ho,{className:e?"success":t?"fail":""}),xn(jc,{className:e?"success":t?"fail":""})]}),ho=En.span`
|
|
12
|
+
- https://privy.io`;this.wallet=t}get meta(){return{connectorType:this.wallet.connectorType,walletClientType:this.wallet.walletClientType}}async authenticate(){if(!this.api)throw new b("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign(),r=await this.api.post(Wi(),{message:t,signature:o});return{user:r.data.user,token:r.data.token,refresh_token:r.data.refresh_token,is_new_user:r.data.is_new_user}}catch(t){throw Q(t)}}async link(){if(!this.api)throw new b("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign();return(await this.api.post(Ii(),{message:t,signature:o})).data}catch(t){throw Q(t)}}async sign(){if(!this.api)throw new b("Auth flow has no API instance");if(this.preparedMessage||await this.buildSiweMessage(),!this.preparedMessage)throw new b("Could not prepare SIWE message");let t=await this.wallet.sign(this.preparedMessage);return{message:this.preparedMessage,signature:t}}async buildSiweMessage(){if(!this.api)throw new b("Auth flow has no API instance");let t=this.wallet.address,o=this.wallet.chainId.replace("eip155:",""),r=await this.api.post(Ri(),{address:t});return this.preparedMessage=this.prepareMessage(o,t,r.data.nonce),this.preparedMessage}prepareMessage(t,o,r){let n=window.location.host,i=window.location.origin,a="By signing, you are proving you own this wallet and logging in. This does not initiate a transaction or cost any fees.",l=new Date().toISOString();return this.createSiweMessage(t,o,n,i,l,r,a)}};var Ct=class{constructor(t){this.meta={phoneNumber:t}}async authenticate(){if(!this.api)throw new b("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new b("phone number and sms code must be set prior to calling authenticate.");try{let t=Di(),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 Q(t)}}async link(){if(!this.api)throw new b("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new b("phone number and sms code must be set prior to calling authenticate.");try{let t=Ui();return(await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode})).data}catch(t){throw Q(t)}}async sendSmsCode(t){if(!this.api)throw new b("Auth flow has no API instance");if(t&&(this.meta.phoneNumber=t),!this.meta.phoneNumber)throw new b("phone nNumber must be set when initialzing authentication.");try{let o=Oi();return(await this.api.post(o,{phoneNumber:this.meta.phoneNumber})).data}catch(o){throw Q(o)}}};function Ze(e){return new Date(e*1e3)}function bc(e){let t=[];for(let o of e){let r=o.type;switch(o.type){case"wallet":let n={address:o.address,type:o.type,verifiedAt:Ze(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:Ze(o.verified_at)};t.push(i);break;case"phone":let a={number:o.phoneNumber,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(a);break;case"google_oauth":let l={subject:o.subject,email:o.email,name:o.name,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(l);break;case"twitter_oauth":let s={subject:o.subject,username:o.username,name:o.name,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(s);break;case"discord_oauth":let p={subject:o.subject,username:o.username,email:o.email,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(p);break;case"github_oauth":let g={subject:o.subject,username:o.username,name:o.name,email:o.email,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(g);break;case"apple_oauth":let f={subject:o.subject,email:o.email,type:o.type,verifiedAt:Ze(o.verified_at)};t.push(f);break;default:console.warn(`Unrecognized account type: ${r}. Please consider upgrading the Privy SDK.`)}}return t}function lt(e,t){return e.sort((o,r)=>r.verifiedAt.getTime()-o.verifiedAt.getTime()),e.find(o=>o.type===t)}var z=e=>e==null?void 0:e.linkedAccounts.find(t=>t.type==="wallet"&&t.walletClient==="privy");function Qe(e){if(!e)return null;let t=bc(e.linked_accounts),o=lt(t,"wallet"),r=lt(t,"email"),n=lt(t,"phone"),i=lt(t,"google_oauth"),a=lt(t,"twitter_oauth"),l=lt(t,"discord_oauth"),s=lt(t,"github_oauth"),p=lt(t,"apple_oauth");return{id:e.id,createdAt:Ze(e.created_at),linkedAccounts:t,email:r&&{address:r==null?void 0:r.address},phone:n&&{number:n==null?void 0:n.number},wallet:o&&{address:o.address,chainType:o.chainType,chainId:o.chainId,walletClient:o.walletClient},google:i&&{subject:i.subject,email:i.email,name:i.name},twitter:a&&{subject:a.subject,username:a.username,name:a.name},discord:l&&{subject:l.subject,username:l.username,email:l.email},github:s&&{subject:s.subject,username:s.username,name:s.name,email:s.email},apple:p&&{subject:p.subject,email:p.email}}}import{getAddress as va}from"@ethersproject/address";import Kc from"eventemitter3";var ji="1.26.0-beta.1";var Oe="4df5e2316331463a9130964bd6078dfa",or="https://auth.privy.io",Ki=1e4,De=1400,pn=ji;var Gt="privy:token",rr="privy:refresh_token",xo="privy:session_transfer_token";var un="privy:connections",Yi="walletconnect",Zi=3e4,Pe=1;var mn=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)}},hn=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 xc(){return typeof window<"u"&&window.localStorage?new hn:new mn}var H=xc();import{isPossiblePhoneNumber as Ec}from"libphonenumber-js/min";var Qi=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,}))$/),Ji=e=>Ec(String(e),"US"),Xi=(e,t)=>{let o=e.slice(0),r=[];for(;o.length;)r.push(o.splice(0,t));return r},ct=(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}`},Tc=e=>new Promise(t=>setTimeout(t,e)),ea=(e,t={})=>{let o=t.delayMs||40,r=t.maxAttempts||1e3;return new Promise(async(n,i)=>{let a=!1,l=0;for(;!a&&l<r;)e().then(()=>{a=!0,n()},(...s)=>{a=!0,i(...s)}),l+=1,await Tc(o);a||i(new Error("Exceeded max attempts before resolving function"))})},nr=(e,t,o={})=>{let r=new URL(t,e);for(let[n,i]of Object.entries(o))r.searchParams.set(n,i);return r.href};var fn=e=>e.replace(/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g,""),Eo=e=>typeof e=="string"?e:"0x"+e.toString(16);async function ta(e=3e3){let t=!1,o=window;return new Promise(r=>{o.ethereum?n():(window.addEventListener("ethereum#initialized",n,{once:!0}),setTimeout(()=>{n()},e));function n(){if(t)return;t=!0,window.removeEventListener("ethereum#initialized",n);let i=[];ir()&&i.push("metamask"),Ue()&&i.push("phantom"),o.ethereum&&o.ethereum.isBraveWallet&&i.push("brave"),r(i)}})}function gn(e){return`eip155:${String(Number(e))}`}import Dc from"@coinbase/wallet-sdk";import{jsx as oa,jsxs as Pc}from"react/jsx-runtime";var _e=({style:e,...t})=>Pc("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:[oa("rect",{width:"1024",height:"1024",fill:"#0052FF",rx:100,ry:100}),oa("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 dt}from"@ethersproject/address";import{Web3Provider as aa}from"@ethersproject/providers";import{default as Oc}from"eventemitter3";import{isHexString as Wc}from"@ethersproject/bytes";import{InfuraProvider as Ic}from"@ethersproject/providers";import{toUtf8String as Nc}from"@ethersproject/strings";import Lc from"eventemitter3";var _c=["eth_sign","eth_populateTransactionRequest","eth_signTransaction","personal_sign"],ra=e=>_c.includes(e);import{ErrorCode as Ac}from"@ethersproject/logger";var Ht=class extends ${constructor(){super("Wallet timeout");this.type="wallet_error"}},Et=class extends ${constructor(){super("User rejected connection");this.type="wallet_error"}},Ae=e=>{if(e instanceof $)return e;if((e==null?void 0:e.code)&&(e==null?void 0:e.reason)){let t=new Vt(e);return e.code===Ac.ACTION_REJECTED&&(t.details=xt.E4001_USER_REJECTED_REQUEST),t}return e!=null&&e.code?new Vt(e):new $("Unknown connector error",e)},yn=class extends ke{constructor(o,r,n){super(o);this.type="provider_error";this.code=r,this.data=n}},Vt=class extends yn{constructor(o){var i,a,l;let r=o;super(r.message,r.code,r.data);let n=Object.values(xt).find(s=>s.eipCode===r.code);this.details=n||xt.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=xt.E32002_CONNECTION_ALREADY_PENDING:this.details=xt.E32002_REQUEST_ALREADY_PENDING:(l=r.message)!=null&&l.includes("Already processing")&&r.message.includes("eth_requestAccounts")&&(this.details=xt.E32002_WALLET_LOCKED))}},Sc={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}},kc={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}},Rc={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}},xt={UNKNOWN_ERROR:{eipCode:0,message:"Unknown error",detail:"Unknown error",retryable:!0},...Rc,...kc},Je={...Sc,...xt};var Mc=12e4,vn=(e=new Ht,t=Mc)=>new Promise((o,r)=>setTimeout(()=>{r(e)},t)),V=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 $(`A wallet request of type ${t.method} was made before setting a wallet provider.`);return Promise.race([this.walletProvider.request(t),vn()]).catch(o=>{throw Ae(o)})}},Tt=class extends Error{constructor(o,r,n){super(o);this.code=r,this.data=n}},ar=class extends Lc{constructor(o,r,n=1){super();this.walletProxy=o,this.address=r,this.chainId=n,this.infuraProvider=new Ic(n,Oe)}async handleSendTransaction(o){if(!o.params||!Array.isArray(o.params))throw new Tt(`Invalid params for ${o.method}`,4200);let r=o.params[0];if(!await To()||!this.address)throw new Tt("Disconnected",4900);return(await ia(r)).transactionHash}handleSwitchEthereumChain(o){if(!o.params||!Array.isArray(o.params))throw new Tt(`Invalid params for ${o.method}`,4200);let r=o.params[0];this.chainId=Number(r),this.emit("chainChanged",r)}async handlePersonalSign(o){if(!o.params||!Array.isArray(o.params))throw new Error("Invalid params for eth_estimateGas");let r=o.params[0],n=Wc(r)?Nc(r):r;return await na(n)}async handleEstimateGas(o){if(!o.params||!Array.isArray(o.params))throw new Error("Invalid params for eth_estimateGas");let r={...o.params[0],chainId:Eo(this.chainId)};return delete r.from,this.infuraProvider.send("eth_estimateGas",[r])}async request(o){switch(console.debug("Embedded1193Provider.request() called with args",o),o.method){case"eth_accounts":return this.address?[this.address]:[];case"eth_chainId":return Eo(this.chainId);case"eth_estimateGas":return this.handleEstimateGas(o);case"eth_sendTransaction":return this.handleSendTransaction(o);case"wallet_switchEthereumChain":return this.handleSwitchEthereumChain(o);case"personal_sign":return this.handlePersonalSign(o);default:break}if(ra(o.method)){let r=await To();if(!r||!this.address)throw new Tt("Disconnected",4900);try{return(await this.walletProxy.rpc({address:this.address,accessToken:r,request:{method:o.method,params:o.params}})).response.data}catch(n){throw console.error(n),new Tt("Disconnected",4900)}}else return this.infuraProvider.send(o.method,o.params)}async connect(){let o=await To();if(!o||!this.address)return null;try{return(await this.walletProxy.connect({address:this.address,accessToken:o})).address}catch(r){return console.error(r),null}}},Xe=class extends V{constructor(o){super(o)}},Pt=class extends V{constructor(t){super(t)}sendAsync(t,o){throw new Error("sendAsync is no longer supported by EIP-1193. Use the request method instead.")}};var ve=class extends Oc{constructor(o){super();this.onAccountsChanged=o=>{this.syncAccounts()};this.onChainChanged=o=>{this.wallets.forEach(r=>{r.chainId=gn(o)}),this.emit("walletsUpdated")};this.onDisconnect=()=>{this.connected=!1,this.wallets=[],this.emit("walletsUpdated")};this.onConnect=()=>{this.connected=!0,this.syncAccounts()};this.wallets=[],this.walletClientType=o,this.connected=!1,this.initialized=!1}buildConnectedWallet(o,r){let n=async()=>(await this.syncAccounts(),!!this.wallets.find(i=>dt(i.address)===dt(o)));return{address:dt(o),chainId:r,connectedAt:Date.now(),walletClientType:this.walletClientType,connectorType:this.connectorType,isConnected:n,getEthereumProvider:()=>this.proxyProvider,getEthersProvider:()=>new aa(new Xe(this.proxyProvider)),getWeb3jsProvider:()=>new Pt(this.proxyProvider),sign:async i=>{if(!await n())throw new $("Wallet is not currently connected.");return await this.sign(i)},disconnect:()=>{this.disconnect()}}}async syncAccounts(){if(!await this.isConnected())return;this.wallets=[];let o=await this.proxyProvider.request({method:"eth_chainId"}),r=gn(o),n=await this.proxyProvider.request({method:"eth_accounts"});if(Array.isArray(n)&&n.length>0)for(let a of n)this.wallets.find(l=>dt(l.address)===dt(a))||this.wallets.push(this.buildConnectedWallet(dt(a),r));this.emit("walletsUpdated")}async getConnectedWallet(){let o=await this.proxyProvider.request({method:"eth_accounts"});return this.wallets.sort((r,n)=>n.connectedAt-r.connectedAt).find(r=>o.find(n=>dt(n)===dt(r.address)))||null}async isConnected(){let o=await this.proxyProvider.request({method:"eth_accounts"});return o!==void 0&&Array.isArray(o)&&o.length>0}async sign(o){return await this.connect({showPrompt:!1}),new aa(new Xe(this.proxyProvider)).getSigner().signMessage(o)}subscribeListeners(){this.proxyProvider.on("accountsChanged",this.onAccountsChanged),this.proxyProvider.on("chainChanged",this.onChainChanged),this.proxyProvider.on("disconnect",this.onDisconnect),this.proxyProvider.on("connect",this.onConnect)}unsubscribeListeners(){this.proxyProvider.removeListener("accountsChanged",this.onAccountsChanged),this.proxyProvider.removeListener("chainChanged",this.onChainChanged),this.proxyProvider.removeListener("disconnect",this.onDisconnect),this.proxyProvider.removeListener("connect",this.onConnect)}};var Uc=e=>{let t=`https://mainnet.infura.io/v3/${Oe}`,o=1;return e.makeWeb3Provider(t,o)},sr,lr=class extends ve{constructor(){super("coinbase_wallet");this.connectorType="coinbase_wallet";this.proxyProvider=new V,this.subscribeListeners(),sr||(sr=new Dc({appName:"Privy",darkMode:!1,headlessMode:!1})),this.proxyProvider.setWalletProvider(Uc(sr)),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}disconnect(){sr.disconnect()}get walletBranding(){return{name:"Coinbase Wallet",icon:_e}}async promptConnection(){try{if((await this.proxyProvider.request({method:"eth_requestAccounts"})).length===0)throw new $("Unable to retrieve accounts");this.connected=!0,await this.syncAccounts()}catch(o){throw Ae(o)}}};import{jsx as sa}from"react/jsx-runtime";var pt=({style:e,...t})=>sa("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:sa("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.99555 0.929932C-1.12055 1.31799 -0.499722 9.15734 2.17445 8.76915C0.0807959 10.5544 -0.960455 16.6416 6.01654 16.0265C10.6356 15.9489 15.5635 12.2232 15.5635 8.1095C15.5635 2.63748 10.7516 0.929932 7.99555 0.929932ZM9.47052 7.53055C9.47052 8.49933 8.81856 9.28468 8.01433 9.28468C7.2101 9.28468 6.55814 8.49933 6.55814 7.53055C6.55814 6.56176 7.2101 5.77641 8.01433 5.77641C8.81856 5.77641 9.47052 6.56176 9.47052 7.53055ZM12.3171 9.28468C13.1213 9.28468 13.7733 8.49933 13.7733 7.53055C13.7733 6.56176 13.1213 5.77641 12.3171 5.77641C11.5129 5.77641 10.8609 6.56176 10.8609 7.53055C10.8609 8.49933 11.5129 9.28468 12.3171 9.28468Z",fill:t.color||"var(--privy-color-foreground-3)"})});var cr=class extends ve{constructor(o){super("privy");this.connectorType="embedded";this.proxyProvider=o,this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return await this.isConnected()?(await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[Eo((o==null?void 0:o.chainId)||"0x1")]}),this.getConnectedWallet()):null}get walletBranding(){return{name:"Privy Wallet",icon:pt}}disconnect(){this.connected=!1}async promptConnection(){}};import{getAddress as df}from"@ethersproject/address";import{Web3Provider as uf}from"@ethersproject/providers";import{isMobile as Fc}from"react-device-detect";import{jsx as we,jsxs as Bc}from"react/jsx-runtime";var ae=({style:e,...t})=>Bc("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",x:0,y:0,viewBox:"0 0 318.6 318.6",width:"28",height:"28",style:{height:"28px",width:"28px",...e},...t,children:[we("style",{children:".s1{stroke-linecap:round;stroke-linejoin:round}.s2{fill:#e4761b;stroke:#e4761b}.s3{fill:#f6851b;stroke:#f6851b}"}),we("path",{fill:"#e2761b",stroke:"#e2761b",className:"s1",d:"m274.1 35.5-99.5 73.9L193 65.8z"}),we("path",{d:"m44.4 35.5 98.7 74.6-17.5-44.3zm193.9 171.3-26.5 40.6 56.7 15.6 16.3-55.3zm-204.4.9L50.1 263l56.7-15.6-26.5-40.6z",className:"s1 s2"}),we("path",{d:"m103.6 138.2-15.8 23.9 56.3 2.5-2-60.5zm111.3 0-39-34.8-1.3 61.2 56.2-2.5zM106.8 247.4l33.8-16.5-29.2-22.8zm71.1-16.5 33.9 16.5-4.7-39.3z",className:"s1 s2"}),we("path",{fill:"#d7c1b3",stroke:"#d7c1b3",className:"s1",d:"m211.8 247.4-33.9-16.5 2.7 22.1-.3 9.3zm-105 0 31.5 14.9-.2-9.3 2.5-22.1z"}),we("path",{fill:"#233447",stroke:"#233447",className:"s1",d:"m138.8 193.5-28.2-8.3 19.9-9.1zm40.9 0 8.3-17.4 20 9.1z"}),we("path",{fill:"#cd6116",stroke:"#cd6116",className:"s1",d:"m106.8 247.4 4.8-40.6-31.3.9zM207 206.8l4.8 40.6 26.5-39.7zm23.8-44.7-56.2 2.5 5.2 28.9 8.3-17.4 20 9.1zm-120.2 23.1 20-9.1 8.2 17.4 5.3-28.9-56.3-2.5z"}),we("path",{fill:"#e4751f",stroke:"#e4751f",className:"s1",d:"m87.8 162.1 23.6 46-.8-22.9zm120.3 23.1-1 22.9 23.7-46zm-64-20.6-5.3 28.9 6.6 34.1 1.5-44.9zm30.5 0-2.7 18 1.2 45 6.7-34.1z"}),we("path",{d:"m179.8 193.5-6.7 34.1 4.8 3.3 29.2-22.8 1-22.9zm-69.2-8.3.8 22.9 29.2 22.8 4.8-3.3-6.6-34.1z",className:"s3"}),we("path",{fill:"#c0ad9e",stroke:"#c0ad9e",className:"s1",d:"m180.3 262.3.3-9.3-2.5-2.2h-37.7l-2.3 2.2.2 9.3-31.5-14.9 11 9 22.3 15.5h38.3l22.4-15.5 11-9z"}),we("path",{fill:"#161616",stroke:"#161616",className:"s1",d:"m177.9 230.9-4.8-3.3h-27.7l-4.8 3.3-2.5 22.1 2.3-2.2h37.7l2.5 2.2z"}),we("path",{fill:"#763d16",stroke:"#763d16",className:"s1",d:"m278.3 114.2 8.5-40.8-12.7-37.9-96.2 71.4 37 31.3 52.3 15.3 11.6-13.5-5-3.6 8-7.3-6.2-4.8 8-6.1zM31.8 73.4l8.5 40.8-5.4 4 8 6.1-6.1 4.8 8 7.3-5 3.6 11.5 13.5 52.3-15.3 37-31.3-96.2-71.4z"}),we("path",{d:"m267.2 153.5-52.3-15.3 15.9 23.9-23.7 46 31.2-.4h46.5zm-163.6-15.3-52.3 15.3-17.4 54.2h46.4l31.1.4-23.6-46zm71 26.4 3.3-57.7 15.2-41.1h-67.5l15 41.1 3.5 57.7 1.2 18.2.1 44.8h27.7l.2-44.8z",className:"s3"})]});var dr=class extends ve{constructor(){var r;super("metamask");this.connectorType="injected";this.proxyProvider=new V,this.subscribeListeners();let o=window;this.proxyProvider.setWalletProvider(o.ethereum),(r=o.ethereum.providers)==null||r.forEach(n=>{n.isMetaMask&&this.proxyProvider.setWalletProvider(n)}),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}get walletBranding(){return{name:"MetaMask",icon:ae}}disconnect(){console.warn("Metamask does not support programmatic disconnect.")}async promptConnection(){try{!Fc&&ir()&&await this.proxyProvider.request({method:"wallet_requestPermissions",params:[{eth_accounts:{}}]});let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0)throw new $("Unable to retrieve accounts");await this.syncAccounts()}catch(o){throw Ae(o)}}};import{jsx as zt,jsxs as pr}from"react/jsx-runtime";var Be=({style:e,...t})=>pr("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:[zt("rect",{width:"28",height:"28",rx:"6",fill:"url(#paint0_linear_1765_9937)"}),zt("path",{d:"M24.0223 14.1704H21.5542C21.5542 9.14083 17.4627 5.06372 12.4151 5.06372C7.43008 5.06372 3.37717 9.04101 3.27798 13.9845C3.17536 19.0945 7.98653 23.5318 13.1154 23.5318H13.7605C18.2822 23.5318 24.3426 20.0047 25.2895 15.7072C25.4643 14.9151 24.8364 14.1704 24.0223 14.1704ZM8.74752 14.3945C8.74752 15.0671 8.19544 15.6172 7.52045 15.6172C6.84545 15.6172 6.29341 15.0669 6.29341 14.3945V12.4165C6.29341 11.7439 6.84545 11.1938 7.52045 11.1938C8.19544 11.1938 8.74752 11.7439 8.74752 12.4165V14.3945ZM13.0083 14.3945C13.0083 15.0671 12.4563 15.6172 11.7813 15.6172C11.1063 15.6172 10.5543 15.0669 10.5543 14.3945V12.4165C10.5543 11.7439 11.1065 11.1938 11.7813 11.1938C12.4563 11.1938 13.0083 11.7439 13.0083 12.4165V14.3945Z",fill:"url(#paint1_linear_1765_9937)"}),pr("defs",{children:[pr("linearGradient",{id:"paint0_linear_1765_9937",x1:"14",y1:"0",x2:"14",y2:"28",gradientUnits:"userSpaceOnUse",children:[zt("stop",{stopColor:"#534BB1"}),zt("stop",{offset:"1",stopColor:"#551BF9"})]}),pr("linearGradient",{id:"paint1_linear_1765_9937",x1:"14.2976",y1:"5.06372",x2:"14.2976",y2:"23.5318",gradientUnits:"userSpaceOnUse",children:[zt("stop",{stopColor:"white"}),zt("stop",{offset:"1",stopColor:"white",stopOpacity:"0.82"})]})]})]});var ur=class extends ve{constructor(){var r,n;super("phantom");this.connectorType="injected";this.proxyProvider=new V,this.subscribeListeners();let o=window;this.proxyProvider.setWalletProvider(o.phantom.ethereum),(n=(r=o.phantom.ethereum)==null?void 0:r.providers)==null||n.forEach(i=>{i.isPhantom&&this.proxyProvider.setWalletProvider(i)}),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}get walletBranding(){return{name:"Phantom",icon:Be}}disconnect(){console.warn("Phantom does not support programmatic disconnect.")}async promptConnection(){try{await this.proxyProvider.request({method:"eth_requestAccounts"}),await this.syncAccounts()}catch(o){throw Ae(o)}}};import jc from"@walletconnect/web3-provider";import{isAndroid as mr}from"react-device-detect";import{createContext as Hc,useContext as Vc,useEffect as wn,useState as ca}from"react";import{jsx as Gc}from"react/jsx-runtime";function la(e){return Gc("link",{rel:"prefetch",href:e.src})}import{jsx as zc,jsxs as qc}from"react/jsx-runtime";var et="LANDING",da=Hc({ready:!1,app:null,currentScreen:et,lastScreen:et,navigate:T,navigateBack:T,setModalData:T}),pa=e=>{var g,f,u;let t=e.appConfig,o=e.authenticated,r=e.visible,[n,i]=ca(e.initialScreen||et),[a,l]=ca(e.initialScreen||et);wn(()=>{o||i(et)},[o]),wn(()=>{r||(l(et),i(et))},[r]),wn(()=>{e.initialScreen&&n===et&&(i(e.initialScreen),l(e.initialScreen))},[e.initialScreen]);let s=e.initialScreen&&n===et?e.initialScreen:n,p={ready:!!(t!=null&&t.id),app:t,data:e.data,setModalData:e.setModalData,currentScreen:s,lastScreen:a,navigate:w=>{l(n),i(w)},navigateBack:()=>{i(a)}};return qc(da.Provider,{value:p,children:[(typeof((g=t==null?void 0:t.appearance)==null?void 0:g.logo)=="string"||((u=(f=t==null?void 0:t.appearance)==null?void 0:f.logo)==null?void 0:u.type)==="img")&&zc(la,{src:typeof t.appearance.logo=="string"?t.appearance.logo:t.appearance.logo.props.src}),e.children]})},y=()=>Vc(da);import{jsx as qt,jsxs as $c}from"react/jsx-runtime";var $t=({style:e,...t})=>{let{app:o}=y();return $c("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:[qt("rect",{width:"28",height:"28",rx:"3",fill:(o==null?void 0:o.appearance.palette.colorScheme)==="dark"?"#3396ff":"#141414"}),qt("g",{clipPath:"url(#clip0_1765_9946)",children:qt("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"})}),qt("defs",{children:qt("clipPath",{id:"clip0_1765_9946",children:qt("rect",{width:"20",height:"12.2531",fill:"white",transform:"translate(4 8)"})})})]})};import{saveMobileLinkInfo as ua}from"@walletconnect/browser-utils";import{isAndroid as bn}from"react-device-detect";var Po=e=>{let t;try{t=new URL(e).hostname}catch{return}for(let[o,r]of Object.entries(Cn))if(r.hostname===t)return{walletClientType:o,entry:r}};var Cn={rainbow:{id:"1ae92b26df02f0abca6304df07debccd18262fdf5fe82daa81593582dac9a369",displayName:"Rainbow",image_id:"7a33d7f1-3d12-4b5c-f3ee-5cd83cb1b500",hostname:"rainbow.me",mobile:{universal:"https://rnbwapp.com"}},trust:{id:"4622a2b2d6af1c9844944291e5e7351a6aa24cd7b23099efac1b2fd875da31a0",displayName:"Trust",image_id:"0528ee7e-16d1-4089-21e3-bbfb41933100",hostname:"trustwallet.com",mobile:{universal:"https://link.trustwallet.com"}},uniswap:{id:"c03dfee351b6fcc421b4494ea33b9d4b92a984f87aa76d1663bb28705e95034a",displayName:"Uniswap",image_id:"bff9cf1f-df19-42ce-f62a-87f04df13c00",hostname:"uniswap.org",mobile:{universal:"https://uniswap.org/app"}},metamask:{id:"c57ca95b47569778a828d19178114f4db188b89b763c899ba0be274e97267d96",displayName:"MetaMask",image_id:"5195e9db-94d8-4579-6f11-ef553be95100",hostname:"metamask.io",mobile:{native:"metamask:"}},argent:{id:"bc949c5d968ae81310268bf9193f9c9fb7bb4e1283e1284af8f2bd4992535fd6",displayName:"Argent",image_id:"215158d2-614b-49c9-410f-77aa661c3900",hostname:"www.argent.xyz",mobile:{universal:"https://www.argent.xyz/app"}},spot:{id:"74f8092562bd79675e276d8b2062a83601a4106d30202f2d509195e30e19673d",displayName:"Spot",image_id:"1bf33a89-b049-4a1c-d1f6-4dd7419ee400",hostname:"www.spot-wallet.com",mobile:{universal:"https://spot.so"}},zerion:{id:"ecc4036f814562b41a5268adc86270fba1365471402006302e70169465b7ac18",displayName:"Zerion",image_id:"f216b371-96cf-409a-9d88-296392b85800",hostname:"zerion.io",mobile:{universal:"https://wallet.zerion.io"}},bitkeep:{id:"38f5d18bd8522c244bdd70cb4a68e0e718865155811c043f052fb9f1c51de662",displayName:"BitKeep",image_id:"3f7075d0-4ab7-4db5-404d-3e4c05e6fe00",hostname:"bitkeep.com",mobile:{universal:"https://bkapp.vip"}},unstoppable:{id:"7e90b95230bc462869bbb59f952273d89841e1c76bcc5319898e08c9f34bd4cd",displayName:"Unstoppable",image_id:"5c38b22c-adb9-4899-3252-6e3d71458500",hostname:"unstoppable.money",mobile:{universal:"https://unstoppable.money"}},omni:{id:"afbd95522f4041c71dd4f1a065f971fd32372865b416f95a0b1db759ae33f2a7",displayName:"Omni",image_id:"2cd67b4c-282b-4809-e7c0-a88cd5116f00",hostname:"omni.app",mobile:{universal:"https://links.omni.app"}},mathwallet:{id:"7674bb4e353bf52886768a3ddc2a4562ce2f4191c80831291218ebd90f5f5e26",displayName:"MathWallet",image_id:"26a8f588-3231-4411-60ce-5bb6b805a700",hostname:"mathwallet.org",mobile:{universal:"https://www.mathwallet.org"}},bitpay:{id:"ccb714920401f7d008dbe11281ae70e3a4bfb621763b187b9e4a3ce1ab8faa3b",displayName:"BitPay",image_id:"97d4429f-eaf0-4302-87f5-9d26d46fe700",hostname:"bitpay.com",mobile:{universal:"https://link.bitpay.com/wallet"}},"1inch":{id:"2863183c3299d820fb9a4cb8aab4a34f50380c9992e8be871fd60a62e8d36481",displayName:"1inch",image_id:"dce1ee99-403f-44a9-9f94-20de30616500",hostname:"1inch.io",mobile:{universal:"https://wallet.1inch.io"}},eidoo:{id:"efba9ae0a9e0fdd9e3e055ddf3c8e75f294babb8aea3499456eff27f771fda61",displayName:"Eidoo",image_id:"ef5b8bcf-00d5-457d-e161-9911e4788700",hostname:"eidoo.io",mobile:{universal:"https://eidoo.io/crypto-wallet"}},coin98:{id:"b021913ba555948a1c81eb3d89b372be46f8354e926679de648e4fa2938bed3e",displayName:"Coin98",image_id:"dee547be-936a-4c92-9e3f-7a2350a62e00",hostname:"coin98.com",mobile:{universal:"https://coin98.com"}},alphawallet:{id:"138f51c8d00ac7b9ac9d8dc75344d096a7dfe370a568aa167eabc0a21830ed98",displayName:"AlphaWallet",image_id:"5b1cddfb-056e-4e78-029a-54de5d70c500",hostname:"alphawallet.com",mobile:{universal:"https://aw.app"}},rwallet:{id:"b13fcc7e3500a4580c9a5341ed64c49c17d7f864497881048eb160c089be5346",displayName:"RWallet",image_id:"a883229c-26cb-4c19-9b34-1f0ed4012a00",hostname:"rsk.co",mobile:{universal:"https://www.rwallet.app"}},plasmapay:{id:"13c6a06b733edf51784f669f508826b2ab0dc80122a8b5d25d84b17d94bbdf70",displayName:"PlasmaPay",image_id:"466c8fd0-fcec-4621-b94f-e91ce1439f00",hostname:"plasmapay.com",mobile:{universal:"https://plasmapay.com/"}},o3wallet:{id:"0aafbedfb8eb56dae59ecc37c9a5388509cf9c082635e3f752581cc7128a17c0",displayName:"O3Wallet",image_id:"e1c7c6af-c731-463e-55f0-5e686e9f6200",hostname:"o3.network",mobile:{universal:"https://o3.network"}},hashkey_me:{id:"761d3d98fd77bdb06e6c90092ee7071c6001e93401d05dcf2b007c1a6c9c222c",displayName:"HashKey Me",image_id:"72734fac-9500-4c2c-81ba-678f7fc32700",hostname:"me.hashkey.com",mobile:{universal:"https://me.hashkey.com"}},defiant:{id:"1986e7c874bb906f057d5d64a4806c004e021689536e5228c74d64a6058e8bac",displayName:"Defiant",image_id:"11a96ca4-3592-42ae-c781-2b7265ec9200",hostname:"www.defiantapp.tech",mobile:{universal:"https://defiantapp.tech/"}},essentials:{id:"717911f4db0c5eda0e02e76ed179b7940ba1eefffdfb3c9e6540696226860da0",displayName:"Essentials",image_id:"04a6bfed-d80e-4f7b-0516-261f86aa4000",hostname:"elastos.org",mobile:{universal:"https://essentials.elastos.net"}},stasis:{id:"9d6c614d1995741d5313f1f3dbf1f66dcba694de782087d13b8721822502692f",displayName:"Stasis",image_id:"7ae753bc-a754-450c-2d90-2c5521734400",hostname:"stasis.net",mobile:{universal:"https://app.stasis.net"}},julwallet:{id:"a6ffb821a3c32d36fc9d29e29c2ff79a0cd1db0bca453714777846ddf3fdff76",displayName:"JulWallet",image_id:"cabd50de-22fa-487b-ce68-2c63de8bb800",hostname:"justliquidity.org",mobile:{universal:"https://justliquidity.org"}},tangem:{id:"76745388a50e6fea982c4dee2a3ad61a8aa417668be870754689caa8a7506c93",displayName:"Tangem",image_id:"8a5b6e94-e378-458d-bf2e-017cc7958e00",hostname:"tangem.com",mobile:{universal:"https://app.tangem.com"}},secux:{id:"6464873279d46030c0b6b005b33da6be5ed57a752be3ef1f857dc10eaf8028aa",displayName:"SecuX",image_id:"6013a9a1-4a67-45bb-fc24-27c11eb13900",hostname:"secuxtech.com",mobile:{universal:"https://wsweb.secuxtech.com"}},linen:{id:"dd8ee41915d967e547c80266e883d77ee808427405f4e8026a85ac1308104221",displayName:"Linen",image_id:"aff3e4e1-92a9-4066-f48f-3591947cf200",hostname:"linen.app",mobile:{universal:"https://linen.app/"}},ambire:{id:"2c81da3add65899baeac53758a07e652eea46dbb5195b8074772c62a77bbf568",displayName:"Ambire",image_id:"c39b3a16-1a38-4588-f089-cb7aeb584700",hostname:"www.ambire.com",mobile:{universal:"https://mobile.ambire.com"}},obvious:{id:"031f0187049b7f96c6f039d1c9c8138ff7a17fd75d38b34350c7182232cc29aa",displayName:"Obvious",image_id:"61abe2ca-b06d-4a8b-de3e-8326f523e900",hostname:"obvious.technology",mobile:{universal:"https://wallet.obvious.technology"}},easypocket:{id:"244a0d93a45df0d0501a9cb9cdfb4e91aa750cfd4fc88f6e97a54d8455a76f5c",displayName:"EasyPocket",image_id:"a9fcf1d1-3b2c-4226-0fb9-a6c8f2647300",hostname:"easypocket.app",mobile:{universal:"https://wallet.easypocket.app"}},rice_wallet:{id:"c40b9bcef32fa6ce4e0df98be1420628bbc4957646f742380fe618fcb4ab74f1",displayName:"RICE Wallet",image_id:"df94578e-19be-4f00-258f-2470343e7b00",hostname:"ricewallet.io",mobile:{universal:"https://ricewallet.io"}},safemoon:{id:"a0e04f1086aac204d4ebdd5f985c12ed226cd0006323fd8143715f9324da58d1",displayName:"SafeMoon",image_id:"ea0140c7-787c-43a4-838f-d5ab6a342000",hostname:"safemoon.com",mobile:{universal:"https://safemoon.com/wc"}},simplehold:{id:"dc5415b6ea8114db518ae91195b027d690a11a1d2bfdd1a904e93c5cb746380e",displayName:"SimpleHold",image_id:"a9f1ba96-b658-4d13-f71f-226b6389f000",hostname:"simplehold.io",mobile:{universal:"https://simplehold.io"}},bitizen:{id:"41f20106359ff63cf732adf1f7dc1a157176c9b02fd266b50da6dcc1e9b86071",displayName:"Bitizen",image_id:"75dd1471-77e9-4811-ce57-ec8fc980ec00",hostname:"bitizen.org",mobile:{universal:"https://bitizen.org/wallet"}},slavi_wallet:{id:"b823fb0d7228ef8e3c0bc9607df9ed79dae2ab3a2811d33f22ade4f573c18232",displayName:"Slavi Wallet",image_id:"282ce060-0beb-4236-b7b0-1b34cc6c8f00",hostname:"slavi.io",mobile:{universal:"https://www.slaviwallet.io"}},nufinetes:{id:"dccbd717df77b395445cc6080e01fffada9d8b92dacfda312a26c70c2e9af673",displayName:"nufinetes",image_id:"70080bd7-9858-4720-cf74-8f74cd74cb00",hostname:"www.nufinetes.com",mobile:{universal:"https://apple.vimworld.org"}},now_wallet:{id:"c482dfe368d4f004479977fd88e80dc9e81107f3245d706811581a6dfe69c534",displayName:"NOW Wallet",image_id:"b6ee4efc-f53e-475b-927b-a7ded6211700",hostname:"walletnow.app",mobile:{universal:"https://walletnow.app.link"}},blocto:{id:"14e7176536cb3706e221daaa3cfd7b88b7da8c7dfb64d1d241044164802c6bdd",displayName:"Blocto",image_id:"374258d3-c749-4f37-7815-77e61f798c00",hostname:"blocto.io",mobile:{universal:"https://blocto.app"}},timeless:{id:"9751385960bca290c13b443155288f892f62ee920337eda8c5a8874135daaea8",displayName:"Timeless",image_id:"32e89601-0490-42fc-0cc4-8627d62a2000",hostname:"timelesswallet.xyz",mobile:{universal:"https://timelesswallet.xyz"}},arculus_wallet:{id:"0e4915107da5b3408b38e248f7a710f4529d54cd30e9d12ff0eb886d45c18e92",displayName:"Arculus Wallet",image_id:"f78dab27-7165-4a3d-fdb1-fcff06c0a700",hostname:"www.getarculus.com",mobile:{universal:"https://gw.arculus.co/app"}},card:{id:"11c5487e4d8dd8bf32d4c92222363df8296a27307b2531be1e25770365392ecb",displayName:"Card",image_id:"325428cf-c212-4d83-a434-7f48902d2c00",hostname:"cardstack.com",mobile:{universal:"https://wallet.cardstack.com"}},mew_wallet:{id:"f5b4eeb6015d66be3f5940a895cbaa49ef3439e518cd771270e6b553b48f31d2",displayName:"MEW wallet",image_id:"e2024511-2c9b-46d7-3111-52df3d241700",hostname:"mewwallet.com",mobile:{universal:"https://mewwallet.com"}},pltwallet:{id:"576c90ceaea34f29ff0104837cf2b2e23d201be43be1433feeb18d375430e1fd",displayName:"PLTwallet",image_id:"a5d9dd15-8cef-42de-8bed-09e01a8b0200",hostname:"pltwallet.io",mobile:{universal:"https://pltwallet.io/"}},avacus:{id:"94f785c0c8fb8c4f38cd9cd704416430bcaa2137f27e1468782d624bcd155a43",displayName:"Avacus",image_id:"a7106965-91cc-4a73-4688-c5c72ae0ed00",hostname:"avacus.cc",mobile:{universal:"https://avacus.app.link"}},bitski:{id:"3b9f67c2c0887f71e4f9ba1bd2bf5b4eb6cda94419abd3f0c5c12931a60928b0",displayName:"Bitski",image_id:"94d94cb5-a94f-47cf-70e6-fe8d3f1c3700",hostname:"bitski.com",mobile:{universal:"https://wallet.bitski.com/walletconnect/wc"}},hippowallet:{id:"664b505fea4c2117b8a55c054ef209664e0a68ddaafd7534df739f97a293fa1d",displayName:"HippoWallet",image_id:"f9570968-45f7-47c1-3189-98cf60e25c00",hostname:"hippowallet.io",mobile:{universal:"https://hippowallet.io"}},edge:{id:"0c5bba82e70a2b62405871af809020a077d110d765c0798eb660ad5d3131b328",displayName:"Edge",image_id:"f601bc29-4298-422f-dbf7-34dac2884f00",hostname:"edge.app",mobile:{universal:"https://deep.edge.app/wc"}},assure:{id:"792fbacfe787d67595dd4eb38ac308e14b3bbc810393db56f477a92e5ac8764b",displayName:"Assure",image_id:"64db7104-c8b7-44ea-e102-11ce87124200",hostname:"www.assure.pro",mobile:{universal:"https://www.assure.pro/Official"}},enjin_wallet:{id:"bdc9433ffdaee55d31737d83b931caa1f17e30666f5b8e03eea794bac960eb4a",displayName:"Enjin Wallet",image_id:"add9626b-a5fa-4c12-178c-e5584e6dcd00",hostname:"enjin.io",mobile:{universal:"https://deeplink.wallet.enjin.io/"}},slingshot:{id:"d23de318f0f56038c5edb730a083216ff0cce00c1514e619ab32231cc9ec484b",displayName:"Slingshot",image_id:"10c75467-6612-48ad-b97b-63985e922200",hostname:"slingshot.finance",mobile:{universal:"https://app.slingshot.finance"}},coinstats:{id:"7e94e75c90964a69ea375b92214f50c4223dfbfa4913a3733b615444b322f687",displayName:"CoinStats",image_id:"f989ab84-650b-4ad5-c342-77f3334f1b00",hostname:"coinstats.app",mobile:{universal:"https://coinstats.app"}},bitcoincom_wallet:{id:"107bb20463699c4e614d3a2fb7b961e66f48774cb8f6d6c1aee789853280972c",displayName:"Bitcoin.com Wallet",image_id:"0d7938e1-9b3b-4d8b-177b-98188c4cf400",hostname:"www.bitcoin.com",mobile:{universal:"https://wallet.bitcoin.com/"}},binance:{id:"8a0ee50d1f22f6651afcae7eb4253e52a3310b90af5daef78a8c4929a9bb99d4",displayName:"Binance",image_id:"ebac7b39-688c-41e3-7912-a4fefba74600",hostname:"www.binance.com",mobile:{universal:"https://app.binance.com/cedefi"}}},ma=(e,t="md")=>`https://registry.walletconnect.com/v2/logo/${t}/${e}`;function ha(e){return{name:e.displayName||"",universalLink:e.mobile.universal||"",deepLink:e.mobile.native||""}}function fa(e,t){let o=encodeURIComponent(e);return t.universalLink?`${t.universalLink}/wc?uri=${o}`:t.deepLink?`${t.deepLink}${t.deepLink.endsWith(":")?"//":"/"}wc?uri=${e}`:""}function ga(e,t){return bn?e:fa(e,ha(t))}var xn=(e,t)=>{if(!e)return;if(bn){ua({name:"Unknown",href:t||"wc:"});return}let o=fa(t||"wc:",ha(e));ua({name:(e==null?void 0:e.displayName)||"",href:o})},ya=()=>{!bn||window.open("wc:","_self")};var _t=class extends ve{constructor(o,r){super(o||"unknown");this.connectorType="wallet_connect";this.reconnectDelayMs=10;this.reconnectBackoff=2;this.proxyProvider=new V,this.subscribeListeners(),o&&(this.walletEntry=Cn[o]),this.setWalletProvider(this.createOrRestoreProvider(r)),r&&this.promptConnection(),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return o.showPrompt&&await this.promptConnection(),this.getConnectedWallet()}async isConnected(){return this.walletProvider.connected}get walletBranding(){var o,r,n;return this.walletEntry?{name:this.walletEntry.displayName,icon:this.walletClientType==="metamask"?ae:ma(this.walletEntry.image_id)}:{name:fn(((o=this.walletProvider.walletMeta)==null?void 0:o.name)||"")||"WalletConnect",icon:((n=(r=this.walletProvider.walletMeta)==null?void 0:r.icons)==null?void 0:n[0])||$t}}async promptConnection(){return new Promise((o,r)=>{this.walletProvider.connector.on("disconnect",(i,a)=>{if(i){r(Ae(i));return}if(a.params.some(l=>l.message==="Session Rejected")){this.setWalletProvider(this.replaceProvider()),r(new Et);return}r(new $("Unknown error during connection"))}),this.walletProvider.qrcode&&this.walletProvider.connector.on("modal_closed",()=>{this.setWalletProvider(this.replaceProvider()),r(new Et)}),this.walletProvider.connector.on("transport_error",(i,a)=>{r(Ae(i))}),(async()=>{var l;let i="",a=await Promise.race([this.enableProvider(),vn()]);if(a.length>0&&(i=a[0]),!i||i==="")throw new $("Unable to retrieve address");if((l=this.walletProvider.walletMeta)!=null&&l.url){let s=Po(this.walletProvider.walletMeta.url);this.walletEntry=s==null?void 0:s.entry,this.walletClientType=(s==null?void 0:s.walletClientType)||"unknown"}this.connected=!0,await this.syncAccounts(),o()})().catch(i=>r(Ae(i)))})}async sign(o){this.walletEntry&&xn(this.walletEntry),this.walletProvider.connected||await this.enableProvider();let r=await this.walletProvider.getWalletConnector();return new Promise(async(n,i)=>{var a;r.signPersonalMessage([o,(a=this.walletProvider.accounts)==null?void 0:a[0]]).then(l=>n(l)),mr&&ya()})}disconnect(){this.walletProvider.close().catch(()=>console.warn("Unable to disconnect Wallet Connect provider"))}get walletProvider(){return this.proxyProvider.walletProvider}setWalletProvider(o){this.proxyProvider.setWalletProvider(o)}replaceProvider(){return this.walletProvider.close().catch(()=>console.warn("Unable to disconnect provider")),H.getKeys().forEach(o=>{o.startsWith("walletconnect")&&H.get(o).key===this.walletProvider.connector.session.key&&H.del(o)}),this.createOrRestoreProvider()}static generateStorageId(){return`${Yi}:${Math.random().toString(36).slice(2)}`}createOrRestoreProvider(o){o||(o=_t.generateStorageId());let r=this.walletEntry||mr?{qrcode:!1}:{},n=new jc({infuraId:Oe,storageId:o,pollingInterval:Zi,...r}),i=this.walletEntry;return i&&(n.walletId=i.id),i?n.connector.on("display_uri",(a,l)=>{xn(i);let s=l.params[0],p=ga(s,i);mr?window.open(p,"_self"):window.open(p,"_self","noopener,noreferrer")}):mr?n.connector.on("display_uri",(a,l)=>{let s=l.params[0];window.open(s,"_self")}):n.connector.on("connect",()=>{var a,l;if((a=n.walletMeta)!=null&&a.url){let s=Po(n.walletMeta.url);n.walletId=(l=s==null?void 0:s.entry)==null?void 0:l.id,this.walletEntry=s==null?void 0:s.entry,this.walletClientType=(s==null?void 0:s.walletClientType)||"unknown"}}),n.connector.on("transport_error",()=>{console.warn("Transport failed. Replacing provider."),setTimeout(()=>{this.setWalletProvider(this.replaceProvider()),this.reconnectDelayMs*=this.reconnectBackoff},this.reconnectDelayMs)}),n}async enableProvider(){return this.walletProvider.connected?Promise.resolve(this.walletProvider.accounts):await this.walletProvider.enable()}};var ir=()=>{let e=window;if(!e.ethereum)return!1;if(hr(window.ethereum,!0))return!0;if(e.ethereum.providers){for(let t of e.ethereum.providers)if(hr(t,!0))return!0}return!1},En=()=>{let e=window;if(!e.ethereum)return!1;if(hr(window.ethereum,!1))return!0;if(e.ethereum.providers){for(let t of e.ethereum.providers)if(hr(t,!1))return!0}return!1},hr=(e,t)=>e.isMetaMask?e.isMetaMask&&!t?!0:!(e.isBraveWallet&&!e._events&&!e._state||e.isApexWallet||e.isAvalanche||e.isBitKeep||e.isBlockWallet||e.isKuCoinWallet||e.isMathWallet||e.isOkxWallet||e.isOKExWallet||e.isOneInchIOSWallet||e.isOneInchAndroidWallet||e.isOpera||e.isPhantom||e.isPortal||e.isRabby||e.isTokenPocket||e.isTokenary||e.isZerion):!1,Ue=()=>{var e,t;if("phantom"in window){let o=window;if((t=(e=o==null?void 0:o.phantom)==null?void 0:e.ethereum)!=null&&t.isPhantom)return!0}return!1},At=()=>{let e=window;if(!e.ethereum)return!1;if(e.ethereum.isCoinbaseWallet)return!0;if(e.ethereum.providers){for(let t of e.ethereum.providers)if(t.isCoinbaseWallet)return!0}return!1},Tn=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===va(t)).length):!1},_o=class extends Kc{constructor(){super();this.getEthereumProvider=()=>this.wallets[0]?this.wallets[0].getEthereumProvider():new V;this.walletConnectors=[],this.initialized=!1,this.storedConnections=this.loadConnectionHistory()}get wallets(){let o=this.walletConnectors.flatMap(n=>n.wallets).sort((n,i)=>n.connectedAt&&i.connectedAt?i.connectedAt-n.connectedAt:0),r=o.findIndex(n=>n.address===(this.activeWallet?this.activeWallet:"unknown"));return r>=0&&o.unshift(o.splice(r,1)[0]),o}initialize(){this.initialized||(ta().then(o=>o.forEach(r=>{switch(r){case"metamask":this.createWalletConnector("injected","metamask");break;case"phantom":this.createWalletConnector("injected","phantom");break;case"unknown":default:break}})),(At()||H.getKeys().find(o=>o.startsWith("-walletlink")))&&this.createWalletConnector("coinbase_wallet","coinbase_wallet"),this.restoreWalletConnectConnectors(),this.initialized=!0)}restoreWalletConnectConnectors(){typeof window>"u"||H.getKeys().forEach(o=>{var r,n;if(o.startsWith("walletconnect")){let i=(n=(r=H.get(o))==null?void 0:r.peerMeta)==null?void 0:n.url,a;if(i){let s=Po(i);s!=null&&s.walletClientType&&(a=s.walletClientType)}let l=new _t(a,o);this.addWalletConnector(l)}})}findWalletConnector(o,r){return this.walletConnectors.find(n=>n.connectorType===o&&n.walletClientType===r)||null}onInitialized(o){o.wallets.forEach(r=>{let n=this.storedConnections.find(i=>i.address===r.address&&i.connectorType===r.connectorType&&i.walletClientType===r.walletClientType);n&&(r.connectedAt=n.connectedAt)}),this.saveConnectionHistory(),this.emit("walletsUpdated")}onWalletsUpdated(o){o.initialized&&(this.saveConnectionHistory(),this.emit("walletsUpdated"))}addEmbeddedWalletConnector(o,r){if(!this.findWalletConnector("embedded","privy")){let i=new ar(o,r),a=new cr(i);this.addWalletConnector(a)}}removeEmbeddedWalletConnector(){let o=this.findWalletConnector("embedded","privy");if(o){let r=this.walletConnectors.indexOf(o);delete this.walletConnectors[r],this.saveConnectionHistory(),this.emit("walletsUpdated")}}createWalletConnector(o,r){let n=this.findWalletConnector(o,r);if(n&&n.walletClientType!=="unknown")return n;let a=(()=>{switch(o){case"injected":switch(r){case"phantom":return new ur;case"metamask":default:return new dr}case"coinbase_wallet":return new lr;case"wallet_connect":return new _t(r)}})();return a&&this.addWalletConnector(a),a||null}addWalletConnector(o){this.walletConnectors.push(o),o.on("initialized",()=>this.onInitialized(o)),o.on("walletsUpdated",()=>this.onWalletsUpdated(o))}loadConnectionHistory(){let o=a=>a&&typeof a.address=="string"&&typeof a.connectorType=="string"&&typeof a.walletClientType=="string"&&typeof a.connectedAt=="number",r=H.get(un);return r&&Array.isArray(r)&&r.map(a=>o(a)).every(Boolean)?r:[]}saveConnectionHistory(){let r=this.wallets.map(n=>({address:n.address,connectorType:n.connectorType,walletClientType:n.walletClientType,connectedAt:n.connectedAt}));H.put(un,r)}async activeWalletSign(o){let r=this.wallets,n=r.length>0?r[0]:null;return n?n.sign(o):null}setActiveWallet(o){this.activeWallet=va(o),this.emit("walletsUpdated")}};import Pn from"axios";var fr=class{constructor(t,o,r){this.appId=t,this.sdkVersion=pn,this.client=o,this.defaults=r,this.fallbackApiUrl=o.fallbackApiUrl}async get(t,o,r=!0){try{return await Pn.get(t,await this.buildConfig({headers:{"Cache-Control":"no-cache"},...o},r))}catch(n){throw Q(n)}}async post(t,o,r,n=!0){try{return await Pn.post(t,o,await this.buildConfig(r,n))}catch(i){throw Q(i)}}async delete(t,o,r=!0){try{return await Pn.delete(t,await this.buildConfig(o,r))}catch(n){throw Q(n)}}async buildConfig(t,o=!0){if(t=Object.assign({withCredentials:!0},t||{}),t.headers=t.headers||{},t.headers["privy-app-id"]=this.appId,t.headers["privy-client"]=`react-auth:${this.sdkVersion}`,o){let r=await this.client.getAccessToken();r!==null&&(t.headers.authorization=`Bearer ${r}`)}return{...this.defaults,...t}}};function wa(e){return e instanceof bt?"email":e instanceof Ct?"sms":e instanceof Ye?"siwe":e instanceof st?e.meta.provider:null}var ut=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 ba from"jose";var tt=class{static parse(t){try{return new tt(t)}catch{return null}}constructor(t){this.value=t,this._decoded=ba.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 Yc=30,gr=class{constructor(){this.authenticateOnce=new ut(async t=>this._authenticate(t)),this.linkOnce=new ut(async t=>this._link(t)),this.refreshOnce=new ut(this._refresh.bind(this)),this.destroyOnce=new ut(this._destroy.bind(this)),this.forkSessionOnce=new ut(this._forkSession.bind(this))}get token(){try{let t=H.get(Gt);return typeof t=="string"?new tt(t).value:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get refreshToken(){try{let t=H.get(rr);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get forkedToken(){try{let t=H.get(xo);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}hasRefreshCredentials(){return typeof this.token=="string"&&typeof this.refreshToken=="string"}hasRecoveryCredentials(){return typeof this.forkedToken=="string"}hasActiveToken(){let t=tt.parse(this.token);return t!==null&&!t.isExpired(Yc)}authenticate(t){return this.authenticateOnce.execute(t)}link(t){return this.linkOnce.execute(t)}refresh(){return this.refreshOnce.execute()}forkSession(){return this.forkSessionOnce.execute()}destroy(){return this.destroyOnce.execute()}async _authenticate(t){try{let{token:o,refresh_token:r,user:n,is_new_user:i}=await t.authenticate();this.storeToken(o),this.storeRefreshToken(r);let a=wa(t);return a&&this.client&&this.client.createAnalyticsEvent("sdk_authenticate",{method:a,isNewUser:i}),a==="siwe"&&this.client&&this.client.createAnalyticsEvent("sdk_authenticate_siwe",{connectorType:t.meta.connectorType,walletClientType:t.meta.walletClientType}),{user:Qe(n),isNewUser:i}}catch(o){throw console.warn("Error authenticating session"),Te(o)}}async _link(t){try{let o=await t.link();return Qe(o)}catch(o){throw console.warn("Error linking account"),Te(o)}}async _refresh(){if(!this.api)throw new b("Session has no API instance");if(!this.client)throw new b("Session has no PrivyClient instance");await this.client.getAccessToken({disableAutoRefresh:!0});let t=this.token,o=this.refreshToken,r=this.forkedToken;try{let n;if(t&&o)n=await this.api.post(_i(),{refresh_token:o},{headers:{authorization:`Bearer ${t}`}},!1),r&&this.clearForkedToken();else if(r)n=await this.api.post(ki(),{refresh_token:r},{},!1),this.clearForkedToken();else return null;return this.storeToken(n.data.token),this.storeRefreshToken(n.data.refresh_token),Qe(n.data.user)}catch(n){if(n instanceof Ft&&n.status===400&&n.message==="Invalid auth token")return this.destroyLocalState(),null;throw Te(n)}}async _destroy(){var t;try{await((t=this.api)==null?void 0:t.post(Ai(),{refresh_token:this.refreshToken}))}catch{console.warn("Error destroying session")}this.destroyLocalState()}async _forkSession(){if(!this.api)throw new b("Session has no API instance");let t=this.refreshToken;try{let o=await this.api.post(Si(),{refresh_token:t});return this.storeToken(o.data.token),this.storeRefreshToken(o.data.refresh_token),o.data.new_session_refresh_token}catch(o){throw Te(o)}}destroyLocalState(){this.storeToken(null),this.storeRefreshToken(null),this.clearForkedToken()}storeToken(t){typeof t=="string"?H.put(Gt,t):H.del(Gt)}storeRefreshToken(t){typeof t=="string"?H.put(rr,t):H.del(rr)}clearForkedToken(){H.del(xo)}};var _n,Ao=class{constructor(t){this.apiUrl=t.apiUrl||or,this.fallbackApiUrl=this.apiUrl,this.timeout=t.timeout||Ki,this.appId=t.appId,this.clientAnalyticsId=typeof window>"u"?null:crypto.randomUUID(),this.connectors=new _o,_n||(_n=new gr),this.session=_n,this.api=this.generateApi(),this.session.client=this}generateApi(){let t=new fr(this.appId,this,{baseURL:this.apiUrl,timeout:this.timeout});return this.session.api=t,t}updateApiUrl(t){this.apiUrl=t||this.fallbackApiUrl,this.api=this.generateApi()}authenticate(){if(!this.authFlow)throw new b("No auth flow in progress.");return this.session.authenticate(this.authFlow)}link(){if(!this.authFlow)throw new b("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(Vi(),{address:t});return Qe(o.data)}catch(o){throw Te(o)}}async unlinkPhone(t){try{let o=await this.api.post(zi(),{phoneNumber:t});return Qe(o.data)}catch(o){throw Te(o)}}async unlinkWallet(t){try{let o=await this.api.post(Hi(),{address:t});return Qe(o.data)}catch(o){throw Te(o)}}async unlinkOAuth(t,o){try{let r=await this.api.post(qi(),{provider:t,subject:o});return Qe(r.data)}catch(r){throw Te(r)}}async createAnalyticsEvent(t,o,r){try{if(!this.clientAnalyticsId)throw new Error("Cannot create analytics event if run in node and not browswer");await this.api.post($i(),{event_name:t,client_id:this.clientAnalyticsId,payload:{...o||{},clientTimestamp:r?r.toISOString():new Date().toISOString()}})}catch(n){console.error("Failed to create analytics event",n)}}async getAuthenticatedUser(){return this.session.hasRefreshCredentials()||this.session.hasRecoveryCredentials()?this.session.refresh():null}async getAccessToken(t){var o;return this.session.hasActiveToken()?((o=tt.parse(this.session.token))==null?void 0:o.audience)!==this.appId?(await this.logout(),null):this.session.token:!(t!=null&&t.disableAutoRefresh)&&this.session.hasRefreshCredentials()?(await this.session.refresh(),this.session.token):null}async getServerConfig(){try{let t=await this.api.get(`/api/v1/apps/${this.appId}`,{baseURL:this.fallbackApiUrl});return{id:t.data.id,name:t.data.name,verificationKey:t.data.verification_key,logoUrl:t.data.logo_url||void 0,accentColor:t.data.accent_color||void 0,showWalletLoginFirst:t.data.show_wallet_login_first,allowlistConfig:{errorTitle:t.data.allowlist_config.error_title,errorDetail:t.data.allowlist_config.error_detail,errorCtaText:t.data.allowlist_config.cta_text,errorCtaLink:t.data.allowlist_config.cta_link},walletAuth:t.data.wallet_auth,emailAuth:t.data.email_auth,smsAuth:t.data.sms_auth,googleOAuth:t.data.google_oauth,twitterOAuth:t.data.twitter_oauth,discordOAuth:t.data.discord_oauth,githubOAuth:t.data.github_oauth,appleOAuth:t.data.apple_oauth,termsAndConditionsUrl:t.data.terms_and_conditions_url,privacyPolicyUrl:t.data.privacy_policy_url,customApiUrl:t.data.custom_api_url,createdAt:new Date(t.data.created_at*1e3),updatedAt:new Date(t.data.updated_at*1e3)}}catch(t){throw Te(t)}}async getUsdTokenPrice(t){try{return(await this.api.get(`/api/v1/token_price?chainId=${t}`)).data.usd}catch{console.error(`Unable to fetch token price for chain with id ${t}`);return}}async forkSession(){return await this.session.forkSession()}};import"wicg-inert";import{disableBodyScroll as xm,clearAllBodyScrollLocks as Em}from"body-scroll-lock";import{useRef as Tm,useCallback as Pm}from"react";import{useEffect as lc}from"react";import _m from"react-dom";import Ei from"styled-components";import{createContext as Zc,useContext as Qc}from"react";var An=Zc({isLinking:!1,linkingHint:null,walletConnectionStatus:null,getAuthMeta:T,getAuthFlow:T,closePrivyModal:T,connectWallet:T,initLoginWithWallet:T,loginWithWallet:T,loginWithCode:T,initLoginWithEmail:T,initLoginWithSms:T,resendEmailCode:T,resendSmsCode:T,initLoginWithOAuth:T,loginWithOAuth:T,refreshUser:T,walletProxy:null,createAnalyticsEvent:T,getUsdTokenPrice:T}),S=()=>Qc(An);import{createContext as Jc,useContext as Xc}from"react";var Sn=Jc({ready:!1,authenticated:!1,user:null,walletConnectors:null,connectWallet:T,login:T,linkEmail:T,linkPhone:T,linkWallet:T,linkGoogle:T,linkTwitter:T,linkDiscord:T,linkGithub:T,linkApple:T,logout:T,getAccessToken:T,getEthereumProvider:T,getEthersProvider:T,getWeb3jsProvider:T,unlinkEmail:T,unlinkPhone:T,unlinkWallet:T,unlinkGoogle:T,unlinkTwitter:T,unlinkDiscord:T,unlinkGithub:T,unlinkApple:T,setActiveWallet:T,forkSession:T,createWallet:T,signMessage:T,sendTransaction:T,exportWallet:T}),D=()=>Xc(Sn);import Nn from"styled-components";import ko,{css as Ca}from"styled-components";import Rn from"styled-components";import{Fragment as od,jsx as kn,jsxs as rd}from"react/jsx-runtime";var yr=({success:e,fail:t})=>rd(od,{children:[kn(So,{className:e?"success":t?"fail":""}),kn(ed,{className:e?"success":t?"fail":""})]}),So=Rn.span`
|
|
13
13
|
&& {
|
|
14
14
|
width: 82px;
|
|
15
15
|
height: 82px;
|
|
@@ -42,13 +42,13 @@ Resources:
|
|
|
42
42
|
border-color: var(--privy-color-error);
|
|
43
43
|
border-bottom-color: var(--privy-color-error);
|
|
44
44
|
}
|
|
45
|
-
`,
|
|
45
|
+
`,ed=Rn(So)`
|
|
46
46
|
&& {
|
|
47
47
|
border-bottom-color: ${e=>e.color??"var(--privy-color-accent)"};
|
|
48
48
|
animation: none;
|
|
49
49
|
opacity: 0.5;
|
|
50
50
|
}
|
|
51
|
-
`,
|
|
51
|
+
`,Re=e=>kn(td,{color:e.color||"var(--privy-color-background-2)"}),td=Rn(So)`
|
|
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
|
|
60
|
+
`;import{jsx as ot,jsxs as Wn}from"react/jsx-runtime";var xa=ko.button`
|
|
61
61
|
display: flex;
|
|
62
62
|
flex-direction: row;
|
|
63
63
|
align-items: center;
|
|
@@ -79,7 +79,7 @@ Resources:
|
|
|
79
79
|
color: var(--privy-color-foreground-3);
|
|
80
80
|
cursor: not-allowed;
|
|
81
81
|
}
|
|
82
|
-
`,
|
|
82
|
+
`,j=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>ot(Ea,{disabled:t||o,...n,children:t?Wn("span",{children:[ot(Re,{}),r?ot("span",{children:r}):null]}):e}),vr=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>ot(Ea,{as:"a",disabled:t||o,...n,children:t?Wn("span",{children:[ot(Re,{}),r?ot("span",{children:r}):null]}):e}),Ea=ko(xa)`
|
|
83
83
|
&& {
|
|
84
84
|
background-color: ${e=>e.warn?"var(--privy-color-error)":"var(--privy-color-accent)"};
|
|
85
85
|
color: var(--privy-color-foreground-accent);
|
|
@@ -103,7 +103,7 @@ Resources:
|
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
/* If an anchor tag, :disabled isn't a thing, so manually set state */
|
|
106
|
-
${e=>e.disabled?
|
|
106
|
+
${e=>e.disabled?Ca`
|
|
107
107
|
&&&,
|
|
108
108
|
&&&:hover,
|
|
109
109
|
&&&:active {
|
|
@@ -122,7 +122,7 @@ Resources:
|
|
|
122
122
|
opacity: 1;
|
|
123
123
|
animation: fadein 200ms ease;
|
|
124
124
|
}
|
|
125
|
-
`,
|
|
125
|
+
`,Ta=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>ot(nd,{disabled:t||o,...n,children:t?Wn("span",{children:[ot(Re,{}),r?ot("span",{children:r}):null]}):e}),nd=ko(xa)`
|
|
126
126
|
&& {
|
|
127
127
|
border-width: 1px;
|
|
128
128
|
border-color: ${e=>e.warn?"var(--privy-color-error)":"var(--privy-color-foreground-4)"};
|
|
@@ -151,7 +151,7 @@ Resources:
|
|
|
151
151
|
opacity: 1;
|
|
152
152
|
animation: fadein 200ms ease;
|
|
153
153
|
}
|
|
154
|
-
`,
|
|
154
|
+
`,ne=ko.button`
|
|
155
155
|
&& {
|
|
156
156
|
padding: 12px 16px;
|
|
157
157
|
font-weight: 500;
|
|
@@ -164,7 +164,7 @@ Resources:
|
|
|
164
164
|
transition: opacity 200ms ease, background-color 200ms ease, color 200ms ease;
|
|
165
165
|
user-select: none;
|
|
166
166
|
|
|
167
|
-
${e=>e.invisible&&
|
|
167
|
+
${e=>e.invisible&&Ca`
|
|
168
168
|
pointer-events: none;
|
|
169
169
|
`}
|
|
170
170
|
|
|
@@ -182,10 +182,10 @@ Resources:
|
|
|
182
182
|
cursor: not-allowed;
|
|
183
183
|
}
|
|
184
184
|
}
|
|
185
|
-
`,
|
|
185
|
+
`,wr=ko.div`
|
|
186
186
|
/* Set to match height of SoftCtaButton to avoid reflow if conditionally rendered */
|
|
187
187
|
height: 44px;
|
|
188
|
-
`;import
|
|
188
|
+
`;import id from"styled-components";var Pa=id.span`
|
|
189
189
|
&& {
|
|
190
190
|
width: 82px;
|
|
191
191
|
height: 82px;
|
|
@@ -201,7 +201,7 @@ Resources:
|
|
|
201
201
|
border-color: var(--privy-color-accent);
|
|
202
202
|
border-bottom-color: var(--privy-color-accent);
|
|
203
203
|
}
|
|
204
|
-
`;import
|
|
204
|
+
`;import Ra from"styled-components";import{jsx as _a}from"react/jsx-runtime";var Aa=({style:e,...t})=>_a("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:_a("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M10.5 19.5L3 12m0 0l7.5-7.5M3 12h18"})});import{jsx as Sa}from"react/jsx-runtime";var ka=({style:e,...t})=>Sa("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:Sa("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M6 18L18 6M6 6l12 12"})});import{jsx as Fe,jsxs as pd}from"react/jsx-runtime";var ad=()=>Fe("div",{}),sd=({backFn:e})=>Fe("div",{children:Fe(Aa,{onClick:e})}),ld=e=>Fe("div",{children:Fe("div",{children:Fe(ka,{onClick:e.onClose})})});var C=({backFn:e,onClose:t,title:o})=>{let{closePrivyModal:r}=S(),{app:n}=y();return pd(cd,{children:[e?Fe(sd,{backFn:e}):Fe(ad,{}),o&&Fe(dd,{children:o}),n!=null&&n.render.inDialog?Fe(ld,{onClose:t||(()=>r())}):null]})},cd=Ra.div`
|
|
205
205
|
height: 30px;
|
|
206
206
|
display: flex;
|
|
207
207
|
align-items: center;
|
|
@@ -259,12 +259,12 @@ Resources:
|
|
|
259
259
|
height: 30px;
|
|
260
260
|
margin-bottom: 10px;
|
|
261
261
|
}
|
|
262
|
-
`,
|
|
262
|
+
`,dd=Ra.div`
|
|
263
263
|
overflow: hidden;
|
|
264
264
|
white-space: nowrap;
|
|
265
265
|
max-width: 100%;
|
|
266
266
|
text-overflow: ellipsis;
|
|
267
|
-
`;import{jsx as
|
|
267
|
+
`;import{jsx as Wa}from"react/jsx-runtime";var Ia=({style:e,...t})=>Wa("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:Wa("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 In,jsx as Ge,jsxs as br}from"react/jsx-runtime";var Na=()=>{let{navigate:e,app:t}=y(),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 br(In,{children:[Ge(C,{}),br(ud,{children:[Ge(hd,{children:br("div",{children:[Ge(Pa,{}),Ge(Ia,{style:{width:"38px",height:"38px",strokeWidth:"1",stroke:"var(--privy-color-accent)",fill:"var(--privy-color-accent)"}})]})}),br(md,{children:[typeof o=="string"?Ge("h3",{children:o}):Ge(In,{children:o}),typeof r=="string"?Ge("p",{children:r}):Ge(In,{children:r})]}),t!=null&&t.allowlistConfig.errorCtaLink?Ge(ne,{as:"a",href:t.allowlistConfig.errorCtaLink,children:n}):Ge(ne,{onClick:()=>{e("LANDING")},children:n})]})]})},ud=Nn.div`
|
|
268
268
|
display: flex;
|
|
269
269
|
flex-direction: column;
|
|
270
270
|
align-items: center;
|
|
@@ -272,11 +272,11 @@ Resources:
|
|
|
272
272
|
margin-left: 27px;
|
|
273
273
|
margin-right: 27px;
|
|
274
274
|
gap: 24px;
|
|
275
|
-
`,
|
|
275
|
+
`,md=Nn.div`
|
|
276
276
|
display: flex;
|
|
277
277
|
flex-direction: column;
|
|
278
278
|
gap: 8px;
|
|
279
|
-
`,
|
|
279
|
+
`,hd=Nn.div`
|
|
280
280
|
display: flex;
|
|
281
281
|
flex-direction: column;
|
|
282
282
|
justify-content: center;
|
|
@@ -299,7 +299,7 @@ Resources:
|
|
|
299
299
|
left: -19px;
|
|
300
300
|
top: -19px;
|
|
301
301
|
}
|
|
302
|
-
`;import{useEffect as
|
|
302
|
+
`;import{useEffect as Ua,useState as Er}from"react";import{isMobile as bd}from"react-device-detect";import Ro from"styled-components";import Ln from"styled-components";var le=Ln.div`
|
|
303
303
|
display: flex;
|
|
304
304
|
flex-direction: column;
|
|
305
305
|
align-items: flex-start;
|
|
@@ -307,18 +307,18 @@ Resources:
|
|
|
307
307
|
margin-top: auto;
|
|
308
308
|
gap: 16px;
|
|
309
309
|
flex-grow: 100;
|
|
310
|
-
`,
|
|
310
|
+
`,jt=Ln.div`
|
|
311
311
|
display: flex;
|
|
312
312
|
flex-direction: column;
|
|
313
313
|
align-items: center;
|
|
314
314
|
justify-content: center;
|
|
315
315
|
height: 100%;
|
|
316
316
|
width: 100%;
|
|
317
|
-
`,
|
|
317
|
+
`,W2=Ln.div`
|
|
318
318
|
display: flex;
|
|
319
319
|
flex-direction: column;
|
|
320
320
|
width: 100%;
|
|
321
|
-
`;import
|
|
321
|
+
`;import La from"styled-components";import{Fragment as gd,jsx as Kt,jsxs as Ma}from"react/jsx-runtime";var fd=La.div`
|
|
322
322
|
margin-top: 16px;
|
|
323
323
|
font-size: 12px;
|
|
324
324
|
text-align: center;
|
|
@@ -327,7 +327,7 @@ Resources:
|
|
|
327
327
|
&& > a {
|
|
328
328
|
color: var(--privy-color-accent);
|
|
329
329
|
}
|
|
330
|
-
`;function
|
|
330
|
+
`;function Cr(e){let{legal:{privacyPolicyUrl:t,termsAndConditionsUrl:o}}=e.app,r=!!t,n=!!o,i=r&&n;return!r&&!n?null:Ma(fd,{children:["By logging in I agree to the"," ",n&&Kt("a",{href:o,target:"_blank",children:i?"Terms":"Terms of Service"}),i&&" & ",r&&Kt("a",{href:t,target:"_blank",children:"Privacy Policy"})]})}var M=({protectedByPrivy:e})=>Kt(We,{hideOnMobile:e,children:e?Ma(gd,{children:[Kt(pt,{}),Kt("span",{children:Kt("a",{href:"https://www.privy.io/",target:"_blank",children:"Protected by Privy"})})]}):null}),We=La.div`
|
|
331
331
|
height: 20px;
|
|
332
332
|
font-size: 12px;
|
|
333
333
|
display: flex;
|
|
@@ -351,9 +351,9 @@ Resources:
|
|
|
351
351
|
@media (max-width: 440px) {
|
|
352
352
|
display: ${e=>e.hideOnMobile?"none":"inherit"};
|
|
353
353
|
}
|
|
354
|
-
`;import
|
|
354
|
+
`;import xr from"styled-components";import{Fragment as wd,jsx as Yt,jsxs as Da}from"react/jsx-runtime";var te=({title:e,description:t,children:o,...r})=>Yt(Oa,{...r,children:Da(wd,{children:[Yt("h3",{children:e}),typeof t=="string"?Yt("p",{children:t}):t,o]})}),He=xr(te)`
|
|
355
355
|
margin-bottom: 24px;
|
|
356
|
-
`,
|
|
356
|
+
`,mt=({title:e,description:t,icon:o,children:r,...n})=>Da(yd,{...n,children:[o?Yt(vd,{children:o}):null,Yt("h3",{children:e}),typeof t=="string"?Yt("p",{children:t}):null,r]}),Oa=xr.div`
|
|
357
357
|
display: flex;
|
|
358
358
|
flex-direction: column;
|
|
359
359
|
justify-content: flex-start;
|
|
@@ -373,7 +373,7 @@ Resources:
|
|
|
373
373
|
color: var(--privy-color-foreground-2);
|
|
374
374
|
font-size: 14px;
|
|
375
375
|
}
|
|
376
|
-
`,
|
|
376
|
+
`,yd=xr(Oa)`
|
|
377
377
|
align-items: center;
|
|
378
378
|
text-align: center;
|
|
379
379
|
gap: 16px;
|
|
@@ -381,21 +381,21 @@ Resources:
|
|
|
381
381
|
h3 {
|
|
382
382
|
margin-bottom: 24px;
|
|
383
383
|
}
|
|
384
|
-
`,
|
|
384
|
+
`,vd=xr.div`
|
|
385
385
|
padding: 14px;
|
|
386
386
|
border-radius: 50%;
|
|
387
387
|
&& {
|
|
388
388
|
border-color: var(--privy-color-background-2);
|
|
389
389
|
border-width: 1px;
|
|
390
390
|
}
|
|
391
|
-
`;import{Fragment as
|
|
391
|
+
`;import{Fragment as Mn,jsx as be,jsxs as St}from"react/jsx-runtime";var On=6,Ba=new Array(On).fill(""),Cd=1400;var Fa=()=>{var ie,ee,B;let{app:e,data:t,navigate:o,setModalData:r}=y(),{closePrivyModal:n,resendEmailCode:i,resendSmsCode:a,getAuthMeta:l,loginWithCode:s}=S(),{authenticated:p,user:g}=D(),[f,u]=Er(Ba),[w,v]=Er(!1),[m,h]=Er(null),[N,x]=Er(null),R=(ie=l())!=null&&ie.email?0:1,_=e!=null&&e.render.inDialog?De:0,I=e!=null&&e.render.inDialog?_-500:0;Ua(()=>{var U;if(!(p&&w&&g))return;if(((U=t==null?void 0:t.login)==null?void 0:U.promptCreatePrivyWalletFlow)&&!g.wallet){let Z=setTimeout(()=>{r({createWallet:{onSuccess:()=>{},onFailure:Ee=>console.error(Ee),callAuthOnSuccessOnClose:!0}}),o("EMBEDDED_WALLET_SCREEN")},I);return()=>clearTimeout(Z)}else{let Z=setTimeout(n,_);return()=>clearTimeout(Z)}},[p,w,g]),Ua(()=>{if(m&&N===0){let oe=setTimeout(()=>{u(Ba),h(null);let F=document.querySelector("input[name=code-0]");F==null||F.focus()},Cd);return()=>clearTimeout(oe)}},[m]);let O=oe=>{var Ne;let F=oe.currentTarget.value.replace(" ","");if(F==="")return;if(isNaN(Number(F))){h("Code should be numeric"),x(1);return}h(null),x(null);let U=Number((Ne=oe.currentTarget.name)==null?void 0:Ne.charAt(5)),Z=[...F||[""]].slice(0,On-U),Ee=[...f.slice(0,U),...Z,...f.slice(U+Z.length)];u(Ee);let wt=Z.length,re=Math.min(Math.max(U+wt,0),On-1);if(!isNaN(Number(oe.currentTarget.value))){let ue=document.querySelector(`input[name=code-${re}]`);ue==null||ue.focus()}if(Ee.every(ue=>ue&&!isNaN(+ue))){let ue=document.querySelector(`input[name=code-${re}]`);ue==null||ue.blur(),s(Ee.join("")).then(()=>v(!0)).catch(Le=>{(Le==null?void 0:Le.status)===422?h("Invalid or expired verification code"):h("Issue verifying code"),x(0)})}oe.preventDefault()},W=oe=>{N===1&&(h(null),x(null));let F=[...f.slice(0,oe),"",...f.slice(oe+1)];if(u(F),oe>0){let U=document.querySelector(`input[name=code-${oe-1}]`);U==null||U.focus()}},pe=`Verify your ${R==0?"email":"phone"}`,G=R==0?St("p",{children:["Please check ",be(_d,{children:(ee=l())==null?void 0:ee.email})," for an email from privy.io and enter your code below."]}):`Please check ${(B=l())==null?void 0:B.phoneNumber} for a message from ${(e==null?void 0:e.name)||"privy.io"} and enter your code below.`;return St(Mn,{children:[be(C,{},"header"),St(xd,{children:[be(te,{title:pe,description:G}),St(jt,{children:[St(Ed,{children:[be(Td,{fail:!!m,success:w,children:be("span",{children:m||(w?"Success!":"")})}),be("div",{children:f.map((oe,F)=>be("input",{name:`code-${F}`,type:"text",value:f[F],onChange:O,onKeyUp:U=>{U.key==="Backspace"&&W(F)},inputMode:"numeric",autoFocus:F===0,pattern:"[0-9]",className:`${w?"success":""} ${m?"fail":""}`,autoComplete:bd?"one-time-code":"off"},F))})]}),be(Pd,{children:R==0?St(Mn,{children:[be("span",{children:"Didn't get an email?"}),be("button",{onClick:i,children:"Resend Code"})]}):St(Mn,{children:[be("span",{children:"Didn't get a message?"}),be("button",{onClick:a,children:"Resend Code"})]})})]})]}),be(M,{protectedByPrivy:!0})]})},xd=Ro.div`
|
|
392
392
|
display: flex;
|
|
393
393
|
flex-direction: column;
|
|
394
394
|
align-items: flex-start;
|
|
395
395
|
justify-content: flex-end;
|
|
396
396
|
margin: auto;
|
|
397
397
|
gap: 16px;
|
|
398
|
-
`,
|
|
398
|
+
`,Ed=Ro.div`
|
|
399
399
|
display: flex;
|
|
400
400
|
flex-direction: column;
|
|
401
401
|
width: 100%;
|
|
@@ -404,7 +404,7 @@ Resources:
|
|
|
404
404
|
// center just this element.
|
|
405
405
|
margin-top: 70px;
|
|
406
406
|
|
|
407
|
-
${
|
|
407
|
+
${Zt}[data-height='medium'] & {
|
|
408
408
|
/* Aligns this with the input field on the page before on shorter modals */
|
|
409
409
|
margin-top: 22px;
|
|
410
410
|
}
|
|
@@ -463,7 +463,7 @@ Resources:
|
|
|
463
463
|
transform: translate(1px, 0px);
|
|
464
464
|
}
|
|
465
465
|
}
|
|
466
|
-
`,
|
|
466
|
+
`,Td=Ro.div`
|
|
467
467
|
line-height: 20px;
|
|
468
468
|
height: 20px;
|
|
469
469
|
font-size: 13px;
|
|
@@ -471,7 +471,7 @@ Resources:
|
|
|
471
471
|
display: flex;
|
|
472
472
|
justify-content: flex-end;
|
|
473
473
|
width: 100%;
|
|
474
|
-
`,
|
|
474
|
+
`,Pd=Ro.div`
|
|
475
475
|
font-size: 13px;
|
|
476
476
|
color: var(--privy-color-foreground-3);
|
|
477
477
|
display: flex;
|
|
@@ -485,11 +485,121 @@ Resources:
|
|
|
485
485
|
> button {
|
|
486
486
|
text-decoration: underline;
|
|
487
487
|
}
|
|
488
|
-
`,
|
|
488
|
+
`,_d=Ro.span`
|
|
489
489
|
word-break: break-all;
|
|
490
|
-
`;import{useEffect as
|
|
490
|
+
`;import{useEffect as Sd,useState as kd}from"react";import Rd from"styled-components";import{isMobile as Ad}from"react-device-detect";var Ga=e=>{let t=new URL(window.location.href);if(!At()&&Ad)return`https://go.cb-w.com/dapp?cb_url=${encodeURIComponent(`${t.href.replace(/\/$/g,"")}?privy_connector=coinbase_wallet&privy_wallet_client=coinbase_wallet${e?`&privy_token=${e}`:""}`)}`};import{Fragment as Id,jsx as kt,jsxs as Ha}from"react/jsx-runtime";var Va=()=>{let{forkSession:e,ready:t,authenticated:o}=D(),{closePrivyModal:r}=S(),[n,i]=kd("");Sd(()=>{t&&o&&e().then(s=>i(s))},[o,t]);let a=Ga(n),l={title:"Redirecting to Coinbase Wallet",description:"We'll take you to the Coinbase Wallet app to continue your login experience.",footnote:""};return t&&o&&(l.description="For the best experience, we'll automatically log you into the Coinbase Wallet in-app browser.",l.footnote="Once you're done, you can always return here and refresh to view your updated account."),Ha(Id,{children:[kt(C,{},"header"),kt(He,{title:l.title,description:l.description}),Ha(le,{children:[kt(Wd,{children:kt(_e,{style:{width:"72px",height:"72px"}})}),kt(vr,{href:a,onClick:()=>{r()},loading:t&&o&&!n,children:"Continue"}),l.footnote?kt("p",{children:l.footnote}):null]}),kt(M,{protectedByPrivy:!0})]})},Wd=Rd(jt)`
|
|
491
491
|
margin: 16px auto;
|
|
492
|
-
`;import{
|
|
492
|
+
`;import{isMobile as Tr}from"react-device-detect";import qa from"styled-components";import Nd from"styled-components";var za=Nd.span`
|
|
493
|
+
@media (max-width: 440px) {
|
|
494
|
+
display: none;
|
|
495
|
+
}
|
|
496
|
+
`;import{jsx as Se,jsxs as Qt}from"react/jsx-runtime";var ht=({connectOnly:e})=>{let{navigate:t}=y(),{initLoginWithWallet:o,connectWallet:r}=S();return Qt(Ld,{children:[Qt(Pr,{onClick:()=>{En()?e?(r("injected","metamask"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("injected","metamask"),t("AWAITING_CONNECTION")):Tr?e?(r("wallet_connect","metamask"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("wallet_connect","metamask"),t("AWAITING_CONNECTION")):t("INSTALL_METAMASK_SCREEN")},children:[Se(ae,{}),Se("span",{children:"Metamask"}),Se("span",{children:En()?"Connect":"Install"})]}),Qt(Pr,{onClick:()=>{At()?e?(r("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECTION")):Tr?t("COINBASE_INTERSTITIAL_SCREEN"):e?(r("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECTION"))},children:[Se(_e,{}),Qt("span",{children:["Coinbase",Se(za,{children:" Wallet"})]}),Se("span",{children:"Connect"})]}),(Tr||Ue())&&Qt(Pr,{id:"privy-phantom-button",onClick:()=>{Ue()?e?(r("injected","phantom"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("injected","phantom"),t("AWAITING_CONNECTION")):t(Tr?"PHANTOM_INTERSTITIAL_SCREEN":"INSTALL_PHANTOM_SCREEN")},children:[Se(Be,{}),Se("span",{children:"Phantom"}),Se("span",{children:Ue()?"Connect":"Install"})]}),Qt(Pr,{onClick:()=>{e?(r("wallet_connect","unknown"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("wallet_connect","unknown"),t("AWAITING_CONNECTION"))},children:[Se($t,{}),Se("span",{children:"WalletConnect"}),Se("span",{children:"Connect"})]})]})},Ld=qa.div`
|
|
497
|
+
display: flex;
|
|
498
|
+
flex-direction: column;
|
|
499
|
+
align-items: flex-start;
|
|
500
|
+
gap: 8px;
|
|
501
|
+
width: 100%;
|
|
502
|
+
`,Pr=qa.button`
|
|
503
|
+
display: flex;
|
|
504
|
+
flex-direction: row;
|
|
505
|
+
align-items: center;
|
|
506
|
+
gap: 12px;
|
|
507
|
+
width: 100%;
|
|
508
|
+
height: 44px;
|
|
509
|
+
|
|
510
|
+
-webkit-user-select: none;
|
|
511
|
+
-ms-user-select: none;
|
|
512
|
+
user-select: none;
|
|
513
|
+
|
|
514
|
+
font-size: 14px;
|
|
515
|
+
font-weight: 500;
|
|
516
|
+
color: var(--privy-color-foreground);
|
|
517
|
+
|
|
518
|
+
&& {
|
|
519
|
+
font-weight: 600;
|
|
520
|
+
padding: 7px 11px;
|
|
521
|
+
border: 1px solid var(--privy-color-foreground-4);
|
|
522
|
+
border-radius: var(--privy-border-radius-sm);
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
flex: none;
|
|
526
|
+
order: 0;
|
|
527
|
+
align-self: stretch;
|
|
528
|
+
flex-grow: 0;
|
|
529
|
+
|
|
530
|
+
> svg {
|
|
531
|
+
border-radius: var(--privy-border-radius-sm);
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
/* Show "Connect" on hover */
|
|
535
|
+
> :last-child {
|
|
536
|
+
font-weight: 500;
|
|
537
|
+
text-align: right;
|
|
538
|
+
flex: none;
|
|
539
|
+
order: 2;
|
|
540
|
+
flex-grow: 1;
|
|
541
|
+
color: var(--privy-color-accent);
|
|
542
|
+
opacity: 0;
|
|
543
|
+
transition: opacity 0.1s ease-out;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
:hover > :last-child {
|
|
547
|
+
opacity: 1;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
@media (max-width: 440px) {
|
|
551
|
+
> :last-child {
|
|
552
|
+
display: none;
|
|
553
|
+
}
|
|
554
|
+
}
|
|
555
|
+
`;import Md from"styled-components";import{jsx as $a,jsxs as Dd}from"react/jsx-runtime";var ft=()=>{let{navigate:e}=y();return Dd(Od,{children:[$a("span",{children:"Don\u2019t have a wallet? "}),$a("button",{onClick:()=>{e("WALLET_EDUCATION")},children:"Create one now."})]})},Od=Md.div`
|
|
556
|
+
font-size: 13px;
|
|
557
|
+
color: var(--privy-color-foreground-3);
|
|
558
|
+
|
|
559
|
+
> button {
|
|
560
|
+
text-decoration: underline;
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
@media (max-width: 440px) {
|
|
564
|
+
margin-top: 4px;
|
|
565
|
+
}
|
|
566
|
+
`;import{Fragment as Ud,jsx as Wo,jsxs as ja}from"react/jsx-runtime";var Ka=()=>{let{app:e}=y(),t=`Connect a wallet to ${e==null?void 0:e.name}`;return ja(Ud,{children:[Wo(C,{},"header"),Wo(He,{title:"Connect your wallet",description:t}),ja(le,{children:[Wo(ht,{connectOnly:!0}),Wo(ft,{})]}),Wo(M,{protectedByPrivy:!0})]})};import Dn from"styled-components";import Bd from"react";import{jsx as Ya}from"react/jsx-runtime";var _r=()=>{var a;let{app:e}=y(),t=(a=e==null?void 0:e.appearance)==null?void 0:a.logo,o=`${e==null?void 0:e.name} logo`,r={maxHeight:"50px"},n="100%",i="auto";return t?typeof t=="string"?Ya("div",{children:Ya("img",{height:n,width:i,src:t,alt:o,style:r})}):t.type==="svg"||t.type==="img"?Bd.cloneElement(t,{height:n,width:i,alt:o,style:r}):(console.warn("`config.appearance.logo` must be a string, or an SVG / IMG element. Nothing will be rendered."),null):null};import{Fragment as Vd,jsx as rt,jsxs as Za}from"react/jsx-runtime";var Qa=()=>{let{app:e}=y();return Za(Vd,{children:[rt(C,{},"header"),rt(Hd,{hasTerms:!!((e==null?void 0:e.legal.privacyPolicyUrl)||(e==null?void 0:e.legal.termsAndConditionsUrl)),children:rt(_r,{})}),Za(Gd,{children:[rt(Fd,{children:rt("h4",{children:"Connect Wallet"})}),rt(ht,{connectOnly:!0}),rt(ft,{})]}),e&&rt(Cr,{app:e}),rt(M,{protectedByPrivy:!0})]})},Fd=Dn.div`
|
|
567
|
+
font-weight: 600;
|
|
568
|
+
color: 'var(--privy-color-foreground)';
|
|
569
|
+
display: flex;
|
|
570
|
+
justify-content: center;
|
|
571
|
+
align-items: center;
|
|
572
|
+
`,Gd=Dn.div`
|
|
573
|
+
display: flex;
|
|
574
|
+
flex-direction: column;
|
|
575
|
+
align-items: flex-start;
|
|
576
|
+
/* 1px helps with the input ring getting hidden by padding, despite it being
|
|
577
|
+
* annoying that it's not perfectly lined up
|
|
578
|
+
*/
|
|
579
|
+
padding: '1px';
|
|
580
|
+
gap: 12px;
|
|
581
|
+
width: 100%;
|
|
582
|
+
max-height: '400px';
|
|
583
|
+
transition-property: border-color, max-height;
|
|
584
|
+
transition-duration: 0.25s;
|
|
585
|
+
transition-timing-function: ease-in;
|
|
586
|
+
overflow: hidden;
|
|
587
|
+
&& {
|
|
588
|
+
background: var(--privy-color-background);
|
|
589
|
+
border: 'none';
|
|
590
|
+
border-radius: '0';
|
|
591
|
+
}
|
|
592
|
+
cursor: 'inherit';
|
|
593
|
+
`,Hd=Dn.div`
|
|
594
|
+
display: flex;
|
|
595
|
+
flex-direction: column;
|
|
596
|
+
align-items: center;
|
|
597
|
+
height: 100%;
|
|
598
|
+
padding: ${e=>`${80-(e.hasTerms?20:0)}px`} 10px 30px;
|
|
599
|
+
@media (max-width: 440px) {
|
|
600
|
+
padding: 10px 10px 20px;
|
|
601
|
+
}
|
|
602
|
+
`;import{useEffect as ts,useState as os}from"react";import rs from"styled-components";import{useEffect as Un,useState as Io}from"react";import{isMobile as Bn}from"react-device-detect";import Fn from"styled-components";import{Fragment as es,jsx as me,jsxs as Sr}from"react/jsx-runtime";var Ar=2,No={metamask:{name:"MetaMask",component:ae},phantom:{name:"Phantom",component:Be},coinbase_wallet:{name:"Coinbase Wallet",component:_e},wallet_connect:{name:"WalletConnect",component:$t},embedded:{name:"Privy Wallet",component:pt}},Gn=e=>(e==null?void 0:e.privyErrorCode)==="linked_to_another_user"?Je.ERROR_USER_EXISTS:e instanceof Vt&&!e.details.default?e.details:e instanceof Ht?Je.ERROR_TIMED_OUT:e instanceof Et?Je.ERROR_USER_REJECTED_CONNECTION:Je.ERROR_WALLET_CONNECTION,Xa=()=>{var wt,re,Ne,ue,Le,Xo,vo,er,wo,bo,tr;let[e,t]=Io(!1),[o,r]=Io(!1),[n,i]=Io(void 0),{app:a,navigate:l,navigateBack:s,lastScreen:p,currentScreen:g}=y(),{getAuthFlow:f,walletConnectionStatus:u,closePrivyModal:w,loginWithWallet:v}=S(),{walletConnectors:m}=D(),[h,N]=Io(0),{user:x}=D(),[R]=Io((x==null?void 0:x.linkedAccounts.length)||0),_=f(),I=Bn&&((wt=u==null?void 0:u.connector)==null?void 0:wt.connectorType)==="wallet_connect"||Bn&&((re=u==null?void 0:u.connector)==null?void 0:re.connectorType)==="coinbase_wallet"||Bn&&((Ne=u==null?void 0:u.connector)==null?void 0:Ne.connectorType)==="injected"&&((ue=u==null?void 0:u.connector)==null?void 0:ue.walletClientType)==="phantom",O=(u==null?void 0:u.status)==="connected",W=a!=null&&a.render.inDialog?De:0;Un(()=>{if(_&&I&&O&&!_.preparedMessage){_.buildSiweMessage();return}!_||I||!O||(r(!0),i(void 0),G().catch(q=>console.warn("Auto-prompted signature failed",q)).finally(()=>r(!1)))},[h,O]),Un(()=>{if(x&&e){let q=setTimeout(w,W);return()=>clearTimeout(q)}},[x,e]);let pe=q=>{if((q==null?void 0:q.privyErrorCode)==="allowlist_rejected"){l("ALLOWLIST_REJECTION_SCREEN");return}i(Gn(q))};async function G(){try{await v(),t(!0)}catch(q){pe(q)}finally{r(!1)}}Un(()=>{u!=null&&u.connectError&&pe(u==null?void 0:u.connectError)},[u]);let ie=((Le=u==null?void 0:u.connector)==null?void 0:Le.connectorType)||"metamask",ee=((Xo=u==null?void 0:u.connector)==null?void 0:Xo.walletClientType)||"metamask",B=((vo=u==null?void 0:u.connector)==null?void 0:vo.walletBranding.name)||((er=No[ee])==null?void 0:er.name)||"Metamask",oe=((wo=u==null?void 0:u.connector)==null?void 0:wo.walletBranding.icon)||((bo=No[ee])==null?void 0:bo.component)||(q=>me(ae,{...q})),F=e?`Successfully connected with ${B}`:n?n.message:O?"Sign to verify":`Waiting for ${B}`,U="Don\u2019t see your wallet modal? Check your other browser windows.";if(e){let q=(x==null?void 0:x.linkedAccounts.length)||0;R===q?U="Wallet was already linked.":U="You\u2019re good to go!"}else h>=Ar&&n?U="Unable to connect wallet":n?U=n.detail:O&&I?U="Sign the message in your wallet to verify it belongs to you.":ee==="metamask"?U="For the best experience, connect only one wallet at a time.":ie==="wallet_connect"?U="Open your mobile wallet app to continue":ie==="coinbase_wallet"&&(At()||(Tn(x)?U="Continue with the Coinbase app. Not the right wallet? Reset your connection below.":U="Open the Coinbase app on your phone to continue."));let Z=(tr=m==null?void 0:m.walletConnectors)==null?void 0:tr.find(q=>q.walletClientType==="coinbase_wallet"),Ee=ee==="coinbase_wallet"&&(Tn(x)||n===Je.ERROR_USER_EXISTS);return Sr(es,{children:[me(C,{backFn:g===p?void 0:s}),Sr(zd,{children:[me(Hn,{walletLogo:oe,success:e,fail:!!n}),Sr(qd,{children:[me("h3",{children:F}),me("p",{children:U})]}),me(wr,{children:Ee?me(ne,{onClick:()=>Z&&(Z==null?void 0:Z.disconnect()),invisible:e,disabled:e,children:"Use a different wallet"}):n==Je.ERROR_USER_EXISTS?me(ne,{onClick:s,children:"Use a different wallet"}):O&&!e&&I?me(ne,{onClick:()=>{r(!0),G()},disabled:o,children:o?"Signing":"Sign with your wallet"}):!e&&(n==null?void 0:n.retryable)&&h<Ar?me(ne,{onClick:()=>{N(h+1),i(void 0),u==null||u.connectRetry()},invisible:e||!(n!=null&&n.retryable)||h>=Ar,disabled:!e&&(!(n!=null&&n.retryable)||h>=Ar),children:"Retry"}):null})]})]})},zd=Fn.div`
|
|
493
603
|
display: flex;
|
|
494
604
|
flex-direction: column;
|
|
495
605
|
align-items: center;
|
|
@@ -497,14 +607,14 @@ Resources:
|
|
|
497
607
|
margin-left: 27px;
|
|
498
608
|
margin-right: 27px;
|
|
499
609
|
gap: 24px;
|
|
500
|
-
`,
|
|
610
|
+
`,qd=Fn.div`
|
|
501
611
|
display: flex;
|
|
502
612
|
flex-direction: column;
|
|
503
613
|
gap: 8px;
|
|
504
614
|
/* Very specifically chosen to be the height if 2 lines h3 and 1 line p.
|
|
505
615
|
If we then switch to 1 line h3 and 2 lines p, we don't resize. */
|
|
506
616
|
min-height: 76px;
|
|
507
|
-
|
|
617
|
+
`,$d=Fn.div`
|
|
508
618
|
display: flex;
|
|
509
619
|
flex-direction: column;
|
|
510
620
|
justify-content: center;
|
|
@@ -527,17 +637,32 @@ Resources:
|
|
|
527
637
|
left: -19px;
|
|
528
638
|
top: -19px;
|
|
529
639
|
}
|
|
530
|
-
`,
|
|
640
|
+
`,Hn=e=>{let t=e.walletLogo;return me(es,{children:me($d,{children:Sr("div",{children:[me(yr,{success:e.success,fail:e.fail}),typeof t=="string"?me("span",{style:{background:`url('${t}')`,height:"38px",width:"38px",borderRadius:"6px",margin:"auto",backgroundSize:"cover"}}):me(t,{style:{width:"38px",height:"38px"}})]})})})};import{Fragment as Yd,jsx as gt,jsxs as Vn}from"react/jsx-runtime";var kr=2,ns=()=>{var N,x,R,_,I,O;let{navigateBack:e,lastScreen:t,currentScreen:o}=y(),{walletConnectionStatus:r,closePrivyModal:n}=S(),[i,a]=os(void 0),[l,s]=os(0),p=(r==null?void 0:r.status)==="connected";ts(()=>{if(p){let W=setTimeout(n,De);return()=>clearTimeout(W)}},[p]);let g=W=>{a(Gn(W))};ts(()=>{r!=null&&r.connectError&&g(r==null?void 0:r.connectError)},[r]);let f=((N=r==null?void 0:r.connector)==null?void 0:N.connectorType)||"metamask",u=((x=r==null?void 0:r.connector)==null?void 0:x.walletClientType)||"metamask",w=((R=r==null?void 0:r.connector)==null?void 0:R.walletBranding.name)||((_=No[u])==null?void 0:_.name)||"Metamask",v=((I=r==null?void 0:r.connector)==null?void 0:I.walletBranding.icon)||((O=No[u])==null?void 0:O.component)||(W=>gt(ae,{...W})),m=p?`Successfully connected with ${w}`:i?i.message:`Waiting for ${w}`,h="Don\u2019t see your wallet modal? Check your other browser windows.";return p?h="You\u2019re good to go!":l>=kr&&i?h="Unable to connect wallet":i?h=i.detail:u==="metamask"?h="For the best experience, connect only one wallet at a time.":f==="wallet_connect"?h="Open your mobile wallet app to continue":f==="coinbase_wallet"&&(h="Open the Coinbase app on your phone to continue."),Vn(Yd,{children:[gt(C,{backFn:o===t?void 0:e}),Vn(jd,{children:[gt(Hn,{walletLogo:v,success:p,fail:!!i}),Vn(Kd,{children:[gt("h3",{children:m}),gt("p",{children:h})]}),gt(wr,{children:i==Je.ERROR_USER_EXISTS?gt(ne,{onClick:e,children:"Use a different wallet"}):!p&&(i==null?void 0:i.retryable)&&l<kr?gt(ne,{onClick:()=>{s(l+1),a(void 0),r==null||r.connectRetry()},invisible:p||!(i!=null&&i.retryable)||l>=kr,disabled:!p&&(!(i!=null&&i.retryable)||l>=kr),children:"Retry"}):null})]})]})},jd=rs.div`
|
|
641
|
+
display: flex;
|
|
642
|
+
flex-direction: column;
|
|
643
|
+
align-items: center;
|
|
644
|
+
justify-content: center;
|
|
645
|
+
margin-left: 27px;
|
|
646
|
+
margin-right: 27px;
|
|
647
|
+
gap: 24px;
|
|
648
|
+
`,Kd=rs.div`
|
|
649
|
+
display: flex;
|
|
650
|
+
flex-direction: column;
|
|
651
|
+
gap: 8px;
|
|
652
|
+
/* Very specifically chosen to be the height if 2 lines h3 and 1 line p.
|
|
653
|
+
If we then switch to 1 line h3 and 2 lines p, we don't resize. */
|
|
654
|
+
min-height: 76px;
|
|
655
|
+
`;import{useEffect as tp,useMemo as op}from"react";import rp from"styled-components";import Rr from"styled-components";import{jsx as zn,jsxs as ep}from"react/jsx-runtime";var Wr=({children:e})=>zn(Zd,{children:ep(Qd,{children:[e,zn(Jd,{}),zn(Xd,{})]})}),Zd=Rr.div`
|
|
531
656
|
height: 100%;
|
|
532
657
|
display: flex;
|
|
533
658
|
justify-content: center;
|
|
534
659
|
align-items: center;
|
|
535
660
|
flex-grow: 1;
|
|
536
|
-
`,
|
|
661
|
+
`,Qd=Rr.div`
|
|
537
662
|
position: relative;
|
|
538
663
|
height: 160px;
|
|
539
664
|
width: 160px;
|
|
540
|
-
`,
|
|
665
|
+
`,Jd=Rr.div`
|
|
541
666
|
position: absolute;
|
|
542
667
|
top: 0;
|
|
543
668
|
right: 0;
|
|
@@ -550,7 +675,7 @@ Resources:
|
|
|
550
675
|
border: 4px solid var(--privy-color-accent-light);
|
|
551
676
|
border-radius: 50%;
|
|
552
677
|
}
|
|
553
|
-
`,
|
|
678
|
+
`,Xd=Rr.div`
|
|
554
679
|
position: absolute;
|
|
555
680
|
top: 0;
|
|
556
681
|
right: 0;
|
|
@@ -574,12 +699,12 @@ Resources:
|
|
|
574
699
|
transform: rotate(360deg);
|
|
575
700
|
}
|
|
576
701
|
}
|
|
577
|
-
`;var
|
|
702
|
+
`;var is=["error","invalid_request_arguments","wallet_not_on_device","invalid_recovery_pin","insufficient_funds"];var yt=class extends Error{constructor(o,r){super(r);this.type=o}};function qn(e){let t=e.type;return typeof t=="string"&&is.includes(t)}function as(e){return qn(e)&&e.type==="wallet_not_on_device"}function ss(e){return qn(e)&&e.type==="invalid_recovery_pin"}function ls(e){return qn(e)&&e.type==="insufficient_funds"}import{jsx as cs}from"react/jsx-runtime";var Ir=e=>cs("svg",{width:"160",height:"160",viewBox:"0 0 160 160",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e,children:cs("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M68.853 62.127c-5.174.517-8.978 4.95-8.978 10.149v15.336c0 5.248 3.873 9.7 9.098 10.196 3.623.344 7.71.64 11.027.64 5.445 0 12.964-.799 17.098-1.294a3.445 3.445 0 0 0 3.027-3.436v-19.05c0-1.75-1.29-3.228-3.027-3.436-3.657-.438-9.961-1.113-15.136-1.264a66.647 66.647 0 0 0-1.965-.03c-.72 0-1.478.013-2.262.04-3.046.1-6.453.373-9.467.669a1.677 1.677 0 0 1-.174-3.347c3.804-.373 8.282-.717 11.903-.717 4.034 0 9.137.427 13.193.847 1.322.137 2.54.274 3.58.397v-1.582c0-1.734-1.264-3.203-2.983-3.426-3.83-.497-10.563-1.267-15.464-1.267-2.848 0-6.314.26-9.47.575Zm25.399 24.581a2.516 2.516 0 1 0 0-5.031 2.516 2.516 0 0 0 0 5.031Z",fill:"var(--privy-color-accent)"})});import{Fragment as ip,jsx as Lo,jsxs as ps}from"react/jsx-runtime";var ds=1,us=()=>{let{authenticated:e,user:t,getAccessToken:o}=D(),{closePrivyModal:r,walletProxy:n}=S(),{navigate:i,data:a,setModalData:l}=y(),s=op(()=>Date.now(),[]),{onCompleteNavigateTo:p,onFailure:g}=a==null?void 0:a.connectWallet,f=u=>{r({shouldCallAuthOnSuccess:!1}),g(typeof u=="string"?new Error(u):u)};return tp(()=>{let u=z(t),w;return!e||!u?f("User must be authenticated and have a Privy wallet before it can be connected"):n?((async()=>{let m=await o();if(!m)return f("User must be authenticated and have a Privy wallet before it can be connected");try{await n.connect({accessToken:m,address:u.address});let h=(Date.now()-s)/1e3;p==="EMBEDDED_WALLET_KEY_EXPORT_SCREEN"&&h<ds?w=setTimeout(()=>{i(p)},(ds-h)*1e3):i(p)}catch(h){as(h)?(l({...a,recoverWallet:{onCompleteNavigateTo:p,onFailure:g}}),i("EMBEDDED_WALLET_RECOVERY_SCREEN")):f(h)}})(),()=>clearTimeout(w)):void 0},[e,t,n]),ps(ip,{children:[Lo(C,{onClose:()=>f("User exited before wallet could be connected")}),ps(np,{children:[Lo(mt,{title:"Loading your account",description:"Please wait one moment while we load your account information"}),Lo(Wr,{children:Lo(Ir,{})})]}),Lo(M,{protectedByPrivy:!0})]})},np=rp.div`
|
|
578
703
|
display: flex;
|
|
579
704
|
height: 100%;
|
|
580
705
|
flex-direction: column;
|
|
581
706
|
flex-grow: 1;
|
|
582
|
-
`;import
|
|
707
|
+
`;import eo from"styled-components";import{useState as ap}from"react";import sp from"styled-components";import{jsx as ms}from"react/jsx-runtime";var Jt=({style:e,color:t,...o})=>ms("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:ms("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M4.5 12.75l6 6 9-13.5"})});import{jsx as $n}from"react/jsx-runtime";var hs=({color:e,...t})=>$n("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:$n("g",{children:$n("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 fs,jsxs as cp}from"react/jsx-runtime";var Nr=e=>{let[t,o]=ap(!1);return cp(lp,{onClick:()=>{o(!0),navigator.clipboard.writeText(e.text),setTimeout(()=>o(!1),1500)},justCopied:t,children:[t?fs(Jt,{style:{height:"14px",width:"14px"},strokeWidth:"2"}):fs(hs,{style:{height:"14px",width:"14px"}}),t?"Copied":"Copy"," ",e.itemName?e.itemName:"to Clipboard"]})},lp=sp.button`
|
|
583
708
|
display: flex;
|
|
584
709
|
align-items: center;
|
|
585
710
|
gap: 6px;
|
|
@@ -617,7 +742,7 @@ Resources:
|
|
|
617
742
|
width: 14px;
|
|
618
743
|
height: 14px;
|
|
619
744
|
}
|
|
620
|
-
`;import
|
|
745
|
+
`;import dp from"styled-components";import{jsx as k,jsxs as he}from"react/jsx-runtime";var gs=()=>k(pp,{children:he("svg",{width:"332",height:"128",viewBox:"0 0 332 128",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[he("g",{clipPath:"url(#clip0_1269_12970)",children:[k("path",{d:"M183.829 53.8232L203.496 101.003C203.616 101.287 203.706 101.571 203.78 101.87C203.855 102.169 203.9 102.483 203.915 102.797C203.93 103.111 203.915 103.44 203.885 103.769C203.855 104.098 203.78 104.427 203.691 104.756C203.452 105.593 203.033 106.34 202.51 106.983C201.987 107.626 201.314 108.179 200.582 108.583C199.85 108.986 199.043 109.255 198.206 109.375C197.369 109.495 196.532 109.435 195.71 109.196C195.426 109.121 195.157 109.016 194.903 108.897C194.649 108.777 194.41 108.642 194.171 108.493C193.932 108.343 193.722 108.179 193.528 108C193.334 107.82 193.14 107.641 192.975 107.432L159.962 68.3988C160.186 68.6529 160.44 68.8921 160.724 69.1014C161.008 69.3107 161.352 69.4901 161.725 69.6545C162.099 69.819 162.518 69.9386 162.966 70.0283C163.414 70.118 163.907 70.1778 164.445 70.2077C166 70.2824 167.718 70.0283 169.482 69.505C171.245 68.9818 173.098 68.1895 174.832 67.1729C176.566 66.1564 178.195 64.9754 179.599 63.6449C181.004 62.3144 182.14 60.9241 182.947 59.474C183.261 58.9059 183.515 58.3528 183.709 57.8146C183.904 57.2765 184.023 56.7831 184.083 56.3048C184.143 55.8264 184.158 55.3779 184.113 54.9593C184.068 54.5407 183.963 54.152 183.814 53.7933L183.829 53.8232Z",fill:"url(#paint0_linear_1269_12970)"}),k("path",{d:"M161.158 60.267C162.04 59.0561 163.116 57.9199 164.326 56.8734C165.537 55.827 166.852 54.9001 168.227 54.0929C169.602 53.2856 171.066 52.5979 172.531 52.0747C173.995 51.5515 175.505 51.1927 176.94 51.0581C178.374 50.9236 179.689 51.0133 180.736 51.3123C181.782 51.6113 182.678 52.1644 183.261 52.882C183.844 53.5995 184.173 54.5712 184.143 55.6626C184.113 56.7539 183.74 58.0993 182.947 59.5045C182.155 60.9098 180.99 62.3599 179.6 63.6754C178.21 64.9909 176.566 66.2018 174.832 67.2035C173.099 68.2051 171.275 68.9974 169.482 69.5355C167.689 70.0737 166 70.298 164.446 70.2382C162.891 70.1784 161.726 69.8046 160.844 69.2067C159.962 68.6087 159.424 67.8463 159.185 66.9045C158.946 65.9627 158.991 64.9461 159.335 63.8099C159.678 62.6738 160.276 61.5077 161.173 60.2819L161.158 60.267Z",fill:"url(#paint1_linear_1269_12970)"}),k("path",{d:"M326.717 118.136L252.77 127.539L235.18 119.003L310.771 102.693L326.717 118.136Z",fill:"url(#paint2_linear_1269_12970)"}),k("path",{d:"M310.771 102.693L235.18 119.003L242.069 98.9261L313.117 73.3328L310.771 102.693Z",fill:"url(#paint3_linear_1269_12970)"}),k("path",{d:"M327.24 91.1522L326.717 118.136L310.771 102.693L313.117 73.3326L327.24 91.1522Z",fill:"url(#paint4_linear_1269_12970)"}),k("path",{d:"M99.4207 23.895L122.451 47.9336L64.1209 132.801L36.0693 110.093L99.4356 23.895H99.4207Z",fill:"url(#paint5_linear_1269_12970)"}),k("path",{d:"M36.069 110.078L64.1205 132.786L27.7895 117.612L6.02979 100.466L36.0839 110.063L36.069 110.078Z",fill:"url(#paint6_linear_1269_12970)"}),k("path",{d:"M55.7664 36.3777L99.4204 23.895L36.0542 110.093L6 100.496L55.7515 36.3777H55.7664Z",fill:"url(#paint7_linear_1269_12970)"}),k("path",{d:"M106.011 124.25C109.045 126.133 127.188 132.741 135.737 135.806C137.859 136.568 139.622 134.983 139.099 132.801C136.992 123.966 132.449 105.204 130.909 101.975C131.672 104.173 127.472 110.182 121.016 115.953C114.545 121.738 108.118 125.251 106.011 124.25Z",fill:"url(#paint8_linear_1269_12970)"}),k("path",{d:"M105.637 123.981C105.637 123.981 105.697 124.041 105.742 124.071C105.787 124.101 105.832 124.146 105.876 124.176C105.921 124.206 105.966 124.236 106.026 124.265C108.133 125.267 114.559 121.769 121.031 115.969C127.487 110.183 131.686 104.188 130.924 101.991C130.909 101.931 130.879 101.871 130.849 101.841C130.819 101.797 130.79 101.737 130.76 101.692C130.73 101.647 130.715 101.617 130.685 101.587C129.116 99.8232 122.226 103.411 115.307 109.6C108.387 115.789 104.068 122.247 105.637 123.996V123.981Z",fill:"url(#paint9_linear_1269_12970)"}),k("path",{d:"M290.058 16.9137C289.714 21.3537 287.891 25.5844 284.887 29.1573C277.818 37.6335 264.188 42.4323 248.167 37.7083C218.696 29.0227 200.314 19.799 183.964 17.138C179.779 16.4653 178.614 10.919 182.141 8.55704C200.239 -3.59678 237.467 -23.9578 268.014 -10.6529C284.528 -3.46224 290.79 7.22655 290.058 16.9137Z",fill:"url(#paint10_linear_1269_12970)"})]}),he("defs",{children:[he("filter",{id:"filter0_b_1269_12970",x:"-76",y:"-76",width:"485",height:"296",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[k("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),k("feGaussianBlur",{in:"BackgroundImageFix",stdDeviation:"46"}),k("feComposite",{in2:"SourceAlpha",operator:"in",result:"effect1_backgroundBlur_1269_12970"}),k("feBlend",{mode:"normal",in:"SourceGraphic",in2:"effect1_backgroundBlur_1269_12970",result:"shape"})]}),he("linearGradient",{id:"paint0_linear_1269_12970",x1:"187.752",y1:"56.8368",x2:"173.388",y2:"118.391",gradientUnits:"userSpaceOnUse",children:[k("stop",{stopColor:"#2D2068"}),k("stop",{offset:"1",stopColor:"#4F3D9A"})]}),he("linearGradient",{id:"paint1_linear_1269_12970",x1:"162.8",y1:"69.9912",x2:"171.997",y2:"54.1168",gradientUnits:"userSpaceOnUse",children:[k("stop",{stopColor:"#4F3D9A"}),k("stop",{offset:"1",stopColor:"#160B45"})]}),he("linearGradient",{id:"paint2_linear_1269_12970",x1:"248.905",y1:"127.208",x2:"254.292",y2:"100.947",gradientUnits:"userSpaceOnUse",children:[k("stop",{stopColor:"#4F3D9A"}),k("stop",{offset:"1",stopColor:"#160B45"})]}),he("linearGradient",{id:"paint3_linear_1269_12970",x1:"246.866",y1:"118.395",x2:"265.49",y2:"76.3394",gradientUnits:"userSpaceOnUse",children:[k("stop",{stopColor:"#4F3D9A"}),k("stop",{offset:"1",stopColor:"#160B45"})]}),he("linearGradient",{id:"paint4_linear_1269_12970",x1:"321.183",y1:"75.7832",x2:"300.239",y2:"117.542",gradientUnits:"userSpaceOnUse",children:[k("stop",{stopColor:"#2D2068"}),k("stop",{offset:"1",stopColor:"#4F3D9A"})]}),he("linearGradient",{id:"paint5_linear_1269_12970",x1:"90.6781",y1:"29.852",x2:"62.6635",y2:"150.379",gradientUnits:"userSpaceOnUse",children:[k("stop",{stopColor:"#2D2068"}),k("stop",{offset:"1",stopColor:"#4F3D9A"})]}),he("linearGradient",{id:"paint6_linear_1269_12970",x1:"14.7402",y1:"132.356",x2:"27.4597",y2:"102.105",gradientUnits:"userSpaceOnUse",children:[k("stop",{stopColor:"#4F3D9A"}),k("stop",{offset:"1",stopColor:"#160B45"})]}),he("linearGradient",{id:"paint7_linear_1269_12970",x1:"20.0079",y1:"108.945",x2:"64.5521",y2:"45.064",gradientUnits:"userSpaceOnUse",children:[k("stop",{stopColor:"#4F3D9A"}),k("stop",{offset:"1",stopColor:"#160B45"})]}),he("linearGradient",{id:"paint8_linear_1269_12970",x1:"126.988",y1:"103.836",x2:"119.743",y2:"142.156",gradientUnits:"userSpaceOnUse",children:[k("stop",{stopColor:"#2D2068"}),k("stop",{offset:"1",stopColor:"#4F3D9A"})]}),he("linearGradient",{id:"paint9_linear_1269_12970",x1:"109.169",y1:"124.126",x2:"121.134",y2:"106.662",gradientUnits:"userSpaceOnUse",children:[k("stop",{stopColor:"#4F3D9A"}),k("stop",{offset:"1",stopColor:"#160B45"})]}),he("linearGradient",{id:"paint10_linear_1269_12970",x1:"196.556",y1:"38.8404",x2:"216.303",y2:"-13.8631",gradientUnits:"userSpaceOnUse",children:[k("stop",{stopColor:"#4F3D9A"}),k("stop",{offset:"1",stopColor:"#160B45"})]}),k("clipPath",{id:"clip0_1269_12970",children:k("rect",{width:"332",height:"128",fill:"white"})}),k("clipPath",{id:"clip1_1269_12970",children:k("rect",{x:"16",y:"16",width:"301",height:"112",rx:"8",fill:"white"})})]})]})}),pp=dp.div`
|
|
621
746
|
background: linear-gradient(-45deg, #fed8f4, #ffe5d0, #ffcdf3, #d0fcf5);
|
|
622
747
|
background-size: 400% 400%;
|
|
623
748
|
animation: rotating-gradient 5s ease infinite;
|
|
@@ -636,7 +761,7 @@ Resources:
|
|
|
636
761
|
background-position: 0% 50%;
|
|
637
762
|
}
|
|
638
763
|
}
|
|
639
|
-
`;import{Fragment as
|
|
764
|
+
`;import{Fragment as vp,jsx as Ve,jsxs as Xt}from"react/jsx-runtime";var ys=()=>{var f;let{user:e}=D(),{closePrivyModal:t}=S(),{data:o}=y(),r=z(e),{onSuccess:n,onFailure:i,callAuthOnSuccessOnClose:a}=o.createWallet,l=()=>{r?(n(r),t({shouldCallAuthOnSuccess:a})):i(new Error("Failed to create wallet"))},s="Your account",p="You\u2019re all set! This account is tied to a digital wallet. It can only ever be accessed by you.",g=ct(r.address);return Xt(vp,{children:[Ve(C,{onClose:l}),Xt(up,{children:[Xt("div",{children:[Ve(te,{title:s,description:p}),Xt(mp,{children:[Ve(gs,{}),Xt(hp,{children:[Ve("p",{children:((f=e==null?void 0:e.email)==null?void 0:f.address)||""}),Xt(fp,{children:[Ve(gp,{children:g})," ",Ve(pt,{color:"var(--privy-color-foreground)"})]})]})]}),Ve(yp,{children:Ve(Nr,{text:r.address,itemName:"Address"})})]}),Ve(j,{onClick:l,children:"I\u2019m all set"})]}),Ve(M,{protectedByPrivy:!0})]})},up=eo.div`
|
|
640
765
|
display: flex;
|
|
641
766
|
height: 100%;
|
|
642
767
|
flex-direction: column;
|
|
@@ -645,7 +770,7 @@ Resources:
|
|
|
645
770
|
@media (max-width: 440px) {
|
|
646
771
|
gap: 24px;
|
|
647
772
|
}
|
|
648
|
-
`,
|
|
773
|
+
`,mp=eo.div`
|
|
649
774
|
width: 100%;
|
|
650
775
|
background-color: var(--privy-color-background-2);
|
|
651
776
|
border-radius: 8px;
|
|
@@ -654,7 +779,7 @@ Resources:
|
|
|
654
779
|
width: 100%;
|
|
655
780
|
height: auto;
|
|
656
781
|
}
|
|
657
|
-
`,
|
|
782
|
+
`,hp=eo.div`
|
|
658
783
|
display: flex;
|
|
659
784
|
text-align: left;
|
|
660
785
|
flex-direction: column;
|
|
@@ -665,27 +790,27 @@ Resources:
|
|
|
665
790
|
font-size: 14px;
|
|
666
791
|
opacity: 0.65;
|
|
667
792
|
}
|
|
668
|
-
`,
|
|
793
|
+
`,fp=eo.div`
|
|
669
794
|
display: flex;
|
|
670
795
|
justify-content: space-between;
|
|
671
796
|
width: 100%;
|
|
672
|
-
`,
|
|
797
|
+
`,gp=eo.span`
|
|
673
798
|
font-size: 17px;
|
|
674
799
|
color: --var(--privy-color-foreground-1);
|
|
675
|
-
`,
|
|
800
|
+
`,yp=eo.div`
|
|
676
801
|
display: flex;
|
|
677
802
|
justify-content: center;
|
|
678
|
-
`;import{useEffect as
|
|
803
|
+
`;import{useEffect as Cs,useRef as bp,useState as jn}from"react";import nt from"styled-components";import{jsx as ge,jsxs as wp}from"react/jsx-runtime";var vs=({style:e,...t})=>wp("svg",{width:"320",height:"144",viewBox:"0 0 320 144",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{width:320,height:144,...e},...t,children:[ge("rect",{x:"214.681",y:"51.6852",width:"40",height:"40",rx:"20",fill:"var(--privy-color-background-2)"}),ge("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M229.848 64.9512C228.001 65.1452 226.643 66.726 226.643 68.5829V75.414C226.643 77.2883 228.026 78.8767 229.891 79.0615C231.417 79.2127 233.21 79.3518 234.643 79.3518C236.862 79.3518 239.95 79.0176 241.563 78.8225C242.183 78.7474 242.643 78.2196 242.643 77.5948V69.7756C242.643 69.1508 242.183 68.6229 241.563 68.5479C239.955 68.3534 236.883 68.0207 234.665 68.0185L234.643 68.0185L234.622 68.0185C233.219 68.0199 231.475 68.1534 229.975 68.3005C229.636 68.3007 229.346 68.0433 229.312 67.6989C229.277 67.3325 229.544 67.0063 229.911 66.9703C231.423 66.8219 233.203 66.6852 234.643 66.6852C236.246 66.6852 238.275 66.855 239.887 67.0221C240.412 67.0765 240.896 67.1309 241.309 67.1796V66.4289C241.309 65.8099 240.858 65.2851 240.244 65.2046C238.746 65.0083 235.977 64.6852 233.976 64.6852C232.734 64.6852 231.195 64.8098 229.848 64.9512ZM240.309 74.6852C240.862 74.6852 241.309 74.2375 241.309 73.6852C241.309 73.1329 240.862 72.6852 240.309 72.6852C239.757 72.6852 239.309 73.1329 239.309 73.6852C239.309 74.2375 239.757 74.6852 240.309 74.6852Z",fill:"var(--privy-color-accent)"}),ge("path",{d:"M92.6426 74.2969H89.5743M76.6426 74.2969H85.5085M77.5837 78.2687L87.1555 61.6852M84.7273 65.9017L82.2897 61.6852M91.8614 78.2687L86.6849 69.2993",stroke:"var(--privy-color-accent)","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"}),ge("rect",{x:"65.6426",y:"52.6852",width:"38",height:"38",rx:"19",stroke:"var(--privy-color-background-2","stroke-width":"2"}),ge("path",{d:"M103.162 71.6852H213.662",stroke:"var(--privy-color-background-2","stroke-width":"2","stroke-dasharray":"4 4"}),ge("path",{d:"M270.544 116.469C272.146 116.469 273.445 115.175 273.445 113.577C273.445 111.98 272.146 110.685 270.544 110.685C268.942 110.685 267.643 111.98 267.643 113.577C267.643 115.175 268.942 116.469 270.544 116.469Z",fill:"var(--privy-color-accent-light"}),ge("path",{d:"M157.878 48.3615C160.282 48.3615 162.231 46.4193 162.231 44.0234C162.231 41.6274 160.282 39.6852 157.878 39.6852C155.475 39.6852 153.526 41.6274 153.526 44.0234C153.526 46.4193 155.475 48.3615 157.878 48.3615Z",fill:"var(--privy-color-accent-dark)"}),ge("path",{d:"M35.0825 96.1749C36.8852 96.1749 38.3466 94.7182 38.3466 92.9212C38.3466 91.1243 36.8852 89.6676 35.0825 89.6676C33.2797 89.6676 31.8184 91.1243 31.8184 92.9212C31.8184 94.7182 33.2797 96.1749 35.0825 96.1749Z",fill:"var(--privy-color-accent-dark)"}),ge("path",{d:"M164.407 103.673C166.41 103.673 168.034 102.055 168.034 100.058C168.034 98.0616 166.41 96.443 164.407 96.443C162.404 96.443 160.78 98.0616 160.78 100.058C160.78 102.055 162.404 103.673 164.407 103.673Z",fill:"var(--privy-color-accent-light"}),ge("path",{d:"M292.664 33.277C294.267 33.277 295.566 31.9822 295.566 30.3849C295.566 28.7876 294.267 27.4928 292.664 27.4928C291.062 27.4928 289.763 28.7876 289.763 30.3849C289.763 31.9822 291.062 33.277 292.664 33.277Z",fill:"var(--privy-color-accent-light"}),ge("path",{d:"M104 12.6997C105.302 12.6997 106.357 11.6476 106.357 10.3498C106.357 9.05206 105.302 8 104 8C102.698 8 101.643 9.05206 101.643 10.3498C101.643 11.6476 102.698 12.6997 104 12.6997Z",fill:"var(--privy-color-accent-light"}),ge("path",{d:"M7.99998 68.6997C9.30194 68.6997 10.3574 67.6476 10.3574 66.3498C10.3574 65.0521 9.30194 64 7.99998 64C6.69802 64 5.64258 65.0521 5.64258 66.3498C5.64258 67.6476 6.69802 68.6997 7.99998 68.6997Z",fill:"var(--privy-color-accent-light"}),ge("path",{d:"M312 60.6997C313.302 60.6997 314.357 59.6476 314.357 58.3498C314.357 57.0521 313.302 56 312 56C310.698 56 309.643 57.0521 309.643 58.3498C309.643 59.6476 310.698 60.6997 312 60.6997Z",fill:"var(--privy-color-accent-light"}),ge("path",{d:"M35.544 42.4694C37.1464 42.4694 38.4454 41.1746 38.4454 39.5773C38.4454 37.98 37.1464 36.6852 35.544 36.6852C33.9416 36.6852 32.6426 37.98 32.6426 39.5773C32.6426 41.1746 33.9416 42.4694 35.544 42.4694Z",fill:"var(--privy-color-accent-light"})]});import{Fragment as Rp,jsx as J,jsxs as ze}from"react/jsx-runtime";var xs=()=>{var m;let[e,t]=jn(null),{authenticated:o,user:r,getAccessToken:n}=D(),{closePrivyModal:i,createAnalyticsEvent:a}=S(),{data:l}=y(),s=(m=z(r))==null?void 0:m.address,{onFailure:p,onSuccess:g,origin:f,appId:u}=l.keyExport,w=h=>{i({shouldCallAuthOnSuccess:!1}),p(typeof h=="string"?new Error(h):h)},v=()=>{i({shouldCallAuthOnSuccess:!1}),g(),a("embedded_wallet_key_export_completed",{walletAddress:s})};return Cs(()=>{let h=z(r);if(!o||!h)return w("User must be authenticated before exporting their wallet");n().then(t,w)},[o,r]),ze(Rp,{children:[J(C,{onClose:v}),ze(Ep,{children:[J(vs,{}),ze(Tp,{children:[J("h3",{children:"Transfer"}),ze(Sp,{children:[J(xp,{style:{marginRight:6}}),`${s==null?void 0:s.substring(0,4)}...${s==null?void 0:s.substring(s.length-4,s.length-1)}`]})]}),J("p",{children:"You can take your account with you to another site using an external wallet!"}),ze(Pp,{children:[ze(ws,{children:[J(bs,{children:"1"}),ze("span",{children:[J("a",{href:"https://privy-io.notion.site/Transferring-your-account-9dab9e16c6034a7ab1ff7fa479b02828",target:"blank",rel:"noopener noreferrer",children:"Follow the guide"})," ","to transfer your account to your wallet of choice."]})]}),ze(ws,{children:[J(bs,{children:"2"}),J("span",{children:"Copy this key into your other wallet"})]})]}),J("div",{style:{width:"100%"},children:e&&J(Cp,{origin:f,appId:u,accessToken:e,address:s,dimensions:{height:"44px"}})}),ze(kp,{children:[J("h4",{children:"WARNING"}),J("p",{children:"Never share your private key with anyone! It controls your account."})]})]}),J(M,{protectedByPrivy:!0})]})};function Cp(e){let[t,o]=jn(e.dimensions.width),[r,n]=jn(void 0),i=bp(null);return Cs(()=>{if(i.current&&t===void 0){let{width:l}=i.current.getBoundingClientRect();o(l)}let a=getComputedStyle(document.documentElement);n({background2:a.getPropertyValue("--privy-color-background-2"),foreground3:a.getPropertyValue("--privy-color-foreground-3"),foregroundAccent:a.getPropertyValue("--privy-color-foreground-accent"),accent:a.getPropertyValue("--privy-color-accent"),accentDark:a.getPropertyValue("--privy-color-accent-dark"),success:a.getPropertyValue("--privy-color-success")})},[]),J("div",{ref:i,children:t&&ze(_p,{children:[J("iframe",{style:{position:"absolute",zIndex:1},width:t,height:e.dimensions.height,allow:"clipboard-write self *",src:nr(e.origin,`/apps/${e.appId}/embedded-wallets/export`,{token:e.accessToken,address:e.address,width:`${t}px`,...r})}),J(Ap,{children:"Loading..."})]})})}function xp(e){return J("svg",{width:"16",height:"17",viewBox:"0 0 16 17",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:e.style,children:J("path",{d:"M14 8.81335C14 7.98493 13.3284 7.31335 12.5 7.31335H10C10 8.41792 9.10457 9.31335 8 9.31335C6.89543 9.31335 6 8.41792 6 7.31335H3.5C2.67157 7.31335 2 7.98493 2 8.81335M14 8.81335V12.8134C14 13.6418 13.3284 14.3134 12.5 14.3134H3.5C2.67157 14.3134 2 13.6418 2 12.8134V8.81335M14 8.81335V6.81335M2 8.81335V6.81335M14 6.81335C14 5.98493 13.3284 5.31335 12.5 5.31335H3.5C2.67157 5.31335 2 5.98493 2 6.81335M14 6.81335V4.81335C14 3.98493 13.3284 3.31335 12.5 3.31335H3.5C2.67157 3.31335 2 3.98493 2 4.81335V6.81335",stroke:"var(--privy-color-foreground-3)",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})}var Ep=nt.div`
|
|
679
804
|
display: flex;
|
|
680
805
|
height: 100%;
|
|
681
806
|
flex-direction: column;
|
|
682
807
|
text-align: left;
|
|
683
|
-
`,
|
|
808
|
+
`,Tp=nt.div`
|
|
684
809
|
display: flex;
|
|
685
810
|
align-items: center;
|
|
686
811
|
justify-content: space-between;
|
|
687
812
|
margin-bottom: 8px;
|
|
688
|
-
`,
|
|
813
|
+
`,Pp=nt.div`
|
|
689
814
|
display: flex;
|
|
690
815
|
flex-direction: column;
|
|
691
816
|
gap: 24px;
|
|
@@ -693,7 +818,7 @@ Resources:
|
|
|
693
818
|
margin-top: 16px;
|
|
694
819
|
margin-left: 11px;
|
|
695
820
|
border-left: 1px solid var(--privy-color-foreground-4) !important;
|
|
696
|
-
`,
|
|
821
|
+
`,ws=nt.div`
|
|
697
822
|
display: flex;
|
|
698
823
|
align-items: top;
|
|
699
824
|
gap: 8px;
|
|
@@ -704,7 +829,7 @@ Resources:
|
|
|
704
829
|
text-decoration: underline;
|
|
705
830
|
}
|
|
706
831
|
}
|
|
707
|
-
`,
|
|
832
|
+
`,bs=nt.div`
|
|
708
833
|
display: flex;
|
|
709
834
|
align-items: center;
|
|
710
835
|
justify-content: center;
|
|
@@ -718,10 +843,10 @@ Resources:
|
|
|
718
843
|
border-radius: 100%;
|
|
719
844
|
background: var(--privy-color-background);
|
|
720
845
|
color: var(--privy-color-accent);
|
|
721
|
-
`,
|
|
846
|
+
`,_p=nt.div`
|
|
722
847
|
position: relative;
|
|
723
848
|
height: 44px;
|
|
724
|
-
`,
|
|
849
|
+
`,Ap=nt.div`
|
|
725
850
|
position: absolute;
|
|
726
851
|
display: flex;
|
|
727
852
|
align-items: center;
|
|
@@ -733,7 +858,7 @@ Resources:
|
|
|
733
858
|
border-radius: var(--privy-border-radius-md);
|
|
734
859
|
background-color: var(--privy-color-background-2);
|
|
735
860
|
color: var(--privy-color-foreground-3);
|
|
736
|
-
`,
|
|
861
|
+
`,Sp=nt.div`
|
|
737
862
|
display: flex;
|
|
738
863
|
align-items: center;
|
|
739
864
|
padding-top: 1px;
|
|
@@ -745,7 +870,7 @@ Resources:
|
|
|
745
870
|
border-radius: var(--privy-border-radius-md);
|
|
746
871
|
font-size: 12px;
|
|
747
872
|
font-weight: 500;
|
|
748
|
-
`,
|
|
873
|
+
`,kp=nt.div`
|
|
749
874
|
border: 2px solid var(--privy-color-background-2) !important;
|
|
750
875
|
border-radius: var(--privy-border-radius-md);
|
|
751
876
|
padding: 16px;
|
|
@@ -755,13 +880,13 @@ Resources:
|
|
|
755
880
|
&& > h4 {
|
|
756
881
|
color: var(--privy-color-error);
|
|
757
882
|
}
|
|
758
|
-
`;import{useEffect as
|
|
883
|
+
`;import{useEffect as zp,useState as Qn}from"react";import Jn,{css as qp}from"styled-components";import{useEffect as Wp,useState as Mo}from"react";import Zn from"styled-components";import{jsx as Es}from"react/jsx-runtime";var Ts=({style:e,...t})=>Es("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:Es("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 Vp,jsx as to,jsxs as Yn}from"react/jsx-runtime";var oo=6,Ip=new Array(oo).fill("");function Np(e){return e.replace(/\s+/g,"")}function Kn(e){return/^[a-zA-Z0-9]{1}$/.test(e)}function Lp(e){return/^[a-zA-Z]{1}$/.test(e)}function Mp(e){return/^[a-z]{1}$/.test(e)}function Ps(e){return e.length===oo&&e.every(Kn)}function Op(e,t){return e.reduce((o,r)=>o+Number(t(r)),0)}function Dp(){return crypto.getRandomValues(new Uint8Array(1))[0]}function Up(){let e="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789",t=[];for(;t.length<oo;){let o=Dp();o>247||t.push(e.charAt(o%62))}return t.join("")}var Lr=({onChange:e,disabled:t,readOnly:o,disableGeneration:r,errorReasonOverride:n})=>{let[i,a]=Mo(Ip),[l,s]=Mo(null),[p,g]=Mo(null),f=v=>{var ee;let m=Np(v.currentTarget.value);if(m==="")return;let h=Op(i,Kn),N=m.split(""),x=!N.every(Kn),R=N.length+h>oo;if(x){s("Passcode can only be letters and numbers"),g(1);return}if(R){s("Passcode must be exactly 6 letters and numbers"),g(1);return}s(null),g(null);let _=Number((ee=v.currentTarget.name)==null?void 0:ee.charAt(4)),I=[...m||[""]].slice(0,oo-_),O=[...i.slice(0,_),...I,...i.slice(_+I.length)];a(O);let W=I.length,pe=Math.min(Math.max(_+W,0),oo-1),G=document.querySelector(`input[name=pin-${pe}]`),ie=I[I.length-1]||"";if(Lp(ie)&&(Mp(ie)?G.autocapitalize="none":G.autocapitalize="on"),G==null||G.focus(),Ps(O)){let B=document.querySelector(`input[name=pin-${pe}]`);B==null||B.blur(),e(O.join(""))}else e(null);v.preventDefault()},u=v=>{p===1&&(s(null),g(null));let m=[...i.slice(0,v),"",...i.slice(v+1)];if(a(m),v>0){let h=document.querySelector(`input[name=pin-${v-1}]`);h==null||h.focus()}Ps(m)?e(m.join("")):e(null)},w=o||r;return Yn(Vp,{children:[Yn(Bp,{children:[to(Fp,{fail:!!n||!!l,children:n||l||"Passcode can be letters and numbers"}),to("div",{children:i.map((v,m)=>to("input",{name:`pin-${m}`,type:"text",value:i[m],onChange:f,onKeyUp:h=>{h.key==="Backspace"&&u(m)},inputMode:"text",autoFocus:m===0,pattern:"[a-zA-Z0-9]",className:l?"fail":"",autoComplete:"off",disabled:t||o,autoCapitalize:"none"},m))})]}),!w&&to(Gp,{disabled:t,onClick:()=>{let v=Up();a([...v]),e(v)}})]})},Bp=Zn.div`
|
|
759
884
|
display: flex;
|
|
760
885
|
flex-direction: column;
|
|
761
886
|
width: 100%;
|
|
762
887
|
gap: 8px;
|
|
763
888
|
|
|
764
|
-
${
|
|
889
|
+
${Zt}[data-height='medium'] & {
|
|
765
890
|
margin-top: 22px;
|
|
766
891
|
}
|
|
767
892
|
|
|
@@ -822,7 +947,7 @@ Resources:
|
|
|
822
947
|
transform: translate(1px, 0px);
|
|
823
948
|
}
|
|
824
949
|
}
|
|
825
|
-
`,
|
|
950
|
+
`,Fp=Zn.div`
|
|
826
951
|
line-height: 20px;
|
|
827
952
|
height: 20px;
|
|
828
953
|
font-size: 13px;
|
|
@@ -830,7 +955,7 @@ Resources:
|
|
|
830
955
|
display: flex;
|
|
831
956
|
justify-content: flex-end;
|
|
832
957
|
width: 100%;
|
|
833
|
-
`,
|
|
958
|
+
`,Gp=({onClick:e,disabled:t,...o})=>{let[r,n]=Mo(!1),[i,a]=Mo();return Wp(()=>{t&&i&&clearTimeout(i),a(void 0)},[t]),Yn(Hp,{onClick:l=>{i&&clearTimeout(i),n(!0),e==null||e(l),a(setTimeout(()=>n(!1),1e3))},justGenerated:r,disabled:t,...o,children:[r?to(Jt,{style:{height:"14px",width:"14px"},strokeWidth:"2"}):to(Ts,{style:{height:"14px",width:"14px"}}),r?"Generated":"Generate"," passcode"]})},Hp=Zn.button`
|
|
834
959
|
display: flex;
|
|
835
960
|
align-items: center;
|
|
836
961
|
gap: 6px;
|
|
@@ -868,12 +993,12 @@ Resources:
|
|
|
868
993
|
width: 14px;
|
|
869
994
|
height: 14px;
|
|
870
995
|
}
|
|
871
|
-
`;import{Fragment as
|
|
996
|
+
`;import{Fragment as Yp,jsx as Rt,jsxs as Mr}from"react/jsx-runtime";var _s=()=>{let{authenticated:e,getAccessToken:t,user:o}=D(),{walletProxy:r,closePrivyModal:n,createAnalyticsEvent:i}=S(),{navigate:a,data:l}=y(),[s,p]=Qn(null),[g,f]=Qn(""),[u,w]=Qn(!1),{onCompleteNavigateTo:v,onFailure:m}=l.recoverWallet,h=_=>{n({shouldCallAuthOnSuccess:!1}),m(typeof _=="string"?new Error(_):_)};zp(()=>{if(!e||!z(o))return h("User must be authenticated and have a Privy wallet before it can be recovered")},[e,o]);let N=_=>{p(_)},x=z(o);return Mr(Yp,{children:[Rt(C,{onClose:()=>h("User exited before their wallet could be recovered")}),Mr($p,{children:[Mr("div",{children:[Rt(te,{title:"Load your account",description:"We haven't seen this device yet. To continue, please enter your passcode."}),Rt(Lr,{onChange:N,disabled:u,errorReasonOverride:g,disableGeneration:!0})]}),Mr(jp,{children:[Rt("h4",{children:"Why am I doing this?"}),Rt("p",{children:"When you created your account, you entered a passcode\u2014this helps secure your digital wallet and ensure only you can access it."})]}),Rt(Kp,{loading:u||!r,disabled:!s,onClick:async()=>{w(!0);let _=await t();if(_&&x&&s!==null)try{i("embedded_wallet_recovery_started",{walletAddress:x.address}),await(r==null?void 0:r.recover({address:x.address,accessToken:_,recoveryPin:s})),f(""),a(v),i("embedded_wallet_recovery_completed",{walletAddress:x.address})}catch(I){ss(I)?f("Invalid recovery passcode, please try again."):f("An error has occurred, please try again.")}finally{w(!1)}else return h("User must be authenticated and have a Privy wallet before it can be recovered")},warn:!1,hideAnimations:!x&&u,children:"Recover your account"})]}),Rt(M,{protectedByPrivy:!0})]})},$p=Jn.div`
|
|
872
997
|
display: flex;
|
|
873
998
|
height: 100%;
|
|
874
999
|
flex-direction: column;
|
|
875
1000
|
justify-content: space-between;
|
|
876
|
-
`,
|
|
1001
|
+
`,jp=Jn.div`
|
|
877
1002
|
display: flex;
|
|
878
1003
|
flex-direction: column;
|
|
879
1004
|
justify-content: flex-start;
|
|
@@ -898,20 +1023,20 @@ Resources:
|
|
|
898
1023
|
color: var(--light-theme-fg-3);
|
|
899
1024
|
font-size: 14px;
|
|
900
1025
|
}
|
|
901
|
-
`,
|
|
902
|
-
${e=>e.hideAnimations&&
|
|
1026
|
+
`,Kp=Jn(j)`
|
|
1027
|
+
${e=>e.hideAnimations&&qp`
|
|
903
1028
|
&& {
|
|
904
1029
|
// Remove animations because the recoverWallet task on the iframe partially
|
|
905
1030
|
// blocks the renderer, so the animation stutters and doesn't look good
|
|
906
1031
|
transition: none;
|
|
907
1032
|
}
|
|
908
1033
|
`}
|
|
909
|
-
`;import{useEffect as
|
|
1034
|
+
`;import{useEffect as Zp,useState as Xn}from"react";import ei,{css as Qp}from"styled-components";import{Fragment as tu,jsx as it,jsxs as Or}from"react/jsx-runtime";var As=()=>{let{authenticated:e,getAccessToken:t,user:o}=D(),{walletProxy:r,refreshUser:n,closePrivyModal:i,createAnalyticsEvent:a}=S(),{navigate:l,data:s}=y(),[p,g]=Xn(null),[f,u]=Xn(""),[w,v]=Xn(!1),{onFailure:m,callAuthOnSuccessOnClose:h}=s.createWallet;Zp(()=>{e||(l("LANDING"),m(new Error("User must be authenticated before creating a Privy wallet")))},[e]);let N=()=>{m(new Error("User exited before creating a wallet")),i({shouldCallAuthOnSuccess:h})},x=O=>{g(O)},R=z(o),_=R?()=>{v(!0),setTimeout(()=>{v(!1),l("EMBEDDED_WALLET_CREATED_SCREEN")},350)}:async()=>{v(!0);let O=await t();if(O&&p!==null)try{a("embedded_wallet_creation_started");let W=await(r==null?void 0:r.create({accessToken:O,recoveryPin:p}));a("embedded_wallet_creation_completed",{walletAddress:W==null?void 0:W.address}),u(""),await n()}catch(W){u("An error has occurred, please try again."),console.error(W)}finally{v(!1)}},I=!!R;return Or(tu,{children:[it(C,{onClose:N}),Or(Jp,{children:[Or("div",{children:[it(te,{title:I?"Secure your passcode":"Set your passcode",description:I?"Don\u2019t lose this passcode. You\u2019ll need it to access your full account on another device.":"You will need it when you sign in on a different device."}),it(Lr,{onChange:x,disabled:w,readOnly:I,errorReasonOverride:f}),I?it(Nr,{text:p||""}):null]}),Or(Xp,{children:[it("h4",{children:"Why am I doing this?"}),I?it("p",{children:"This passcode allows you to access your account on another device. If you lose it, there is no way to recover your full account."}):it("p",{children:"For your security, your account is tied to this device. Your passcode allows you to access it across devices."})]}),it(eu,{loading:w||!r,disabled:!p,onClick:_,warn:I,hideAnimations:!R&&w,children:I?"I have saved my passcode":"Set passcode"})]}),it(M,{protectedByPrivy:!0})]})},Jp=ei.div`
|
|
910
1035
|
display: flex;
|
|
911
1036
|
height: 100%;
|
|
912
1037
|
flex-direction: column;
|
|
913
1038
|
justify-content: space-between;
|
|
914
|
-
`,
|
|
1039
|
+
`,Xp=ei.div`
|
|
915
1040
|
display: flex;
|
|
916
1041
|
flex-direction: column;
|
|
917
1042
|
justify-content: flex-start;
|
|
@@ -936,26 +1061,26 @@ Resources:
|
|
|
936
1061
|
color: var(--privy-color-foreground-3);
|
|
937
1062
|
font-size: 14px;
|
|
938
1063
|
}
|
|
939
|
-
`,
|
|
940
|
-
${e=>e.hideAnimations&&
|
|
1064
|
+
`,eu=ei(j)`
|
|
1065
|
+
${e=>e.hideAnimations&&Qp`
|
|
941
1066
|
&& {
|
|
942
1067
|
// Remove animations because the createNewWallet task on the iframe partially
|
|
943
1068
|
// blocks the renderer, so the animation stutters and doesn't look good
|
|
944
1069
|
transition: none;
|
|
945
1070
|
}
|
|
946
1071
|
`}
|
|
947
|
-
`;import{useState as
|
|
1072
|
+
`;import{useState as fu}from"react";import*as at from"react-device-detect";import $e from"styled-components";import ti from"styled-components";import{jsx as Ss}from"react/jsx-runtime";var ks=({style:e,...t})=>Ss("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:Ss("path",{strokeLinecap:"round",strokeLinejoin:"round",fillRule:"evenodd",clipRule:"evenodd",d:"M16.5 8.67993C16.5 9.82986 15.853 10.8287 14.9032 11.3322C15.2188 12.3599 14.97 13.5237 14.1569 14.3368C13.3437 15.1499 12.18 15.3987 11.1523 15.0831C10.6488 16.0329 9.64993 16.6799 8.5 16.6799C7.35007 16.6799 6.35126 16.0329 5.84771 15.0831C4.82003 15.3987 3.65627 15.1499 2.84314 14.3368C2.03001 13.5237 1.78124 12.3599 2.09681 11.3322C1.14699 10.8287 0.5 9.82986 0.5 8.67993C0.5 7.53 1.14699 6.53119 2.0968 6.02764C1.78125 4.99996 2.03003 3.83621 2.84315 3.02309C3.65627 2.20997 4.82002 1.96119 5.8477 2.27675C6.35125 1.32692 7.35007 0.679932 8.5 0.679932C9.64992 0.679932 10.6487 1.32691 11.1523 2.27672C12.18 1.96115 13.3437 2.20993 14.1569 3.02305C14.97 3.83618 15.2188 4.99996 14.9032 6.02764C15.853 6.53119 16.5 7.53 16.5 8.67993ZM12.2659 6.68856C12.5654 6.40238 12.5761 5.92763 12.29 5.62818C12.0038 5.32873 11.529 5.31797 11.2296 5.60416C9.73022 7.03711 8.40877 8.65489 7.3018 10.4211L5.78033 8.89963C5.48744 8.60673 5.01256 8.60673 4.71967 8.89963C4.42678 9.19252 4.42678 9.66739 4.71967 9.96029L6.92031 12.1609C7.08544 12.3261 7.31807 12.4048 7.54957 12.374C7.78106 12.3432 7.98499 12.2064 8.1012 12.0038C9.23027 10.0356 10.6362 8.24613 12.2659 6.68856Z",fill:"var(--privy-color-accent)"})});import{jsx as ru,jsxs as nu}from"react/jsx-runtime";var Dr=ti.div`
|
|
948
1073
|
display: flex;
|
|
949
1074
|
flex-direction: column;
|
|
950
1075
|
justify-content: flex-start;
|
|
951
1076
|
gap: 4px;
|
|
952
|
-
`,
|
|
1077
|
+
`,Wt=ti.div`
|
|
953
1078
|
&&& {
|
|
954
1079
|
margin-left: 7px; /* TODO: This is a total hack */
|
|
955
1080
|
border-left: 2px solid var(--privy-color-foreground-4);
|
|
956
1081
|
height: 12px;
|
|
957
1082
|
}
|
|
958
|
-
`,
|
|
1083
|
+
`,qe=({children:e})=>nu(ou,{children:[ru(ks,{style:{width:"16px",height:"16px"}}),e]}),ou=ti.div`
|
|
959
1084
|
display: flex;
|
|
960
1085
|
justify-content: flex-start;
|
|
961
1086
|
justify-items: center;
|
|
@@ -973,7 +1098,7 @@ Resources:
|
|
|
973
1098
|
margin-bottom: auto;
|
|
974
1099
|
}
|
|
975
1100
|
}
|
|
976
|
-
`;import
|
|
1101
|
+
`;import iu from"qrcode";import au from"styled-components";import{Fragment as ro,jsx as fe,jsxs as Is}from"react/jsx-runtime";var Ce=7,oi=(e,t,o,r,n)=>{for(let i=t;i<t+r;i++)for(let a=o;a<o+n;a++){let l=e==null?void 0:e[a];l&&l[i]&&(l[i]=0)}return e},su=e=>{let t=iu.create(e,{errorCorrectionLevel:"high"}).modules,o=Xi(Array.from(t.data),t.size);return o=oi(o,0,0,Ce,Ce),o=oi(o,o.length-Ce,0,Ce,Ce),o=oi(o,0,o.length-Ce,Ce,Ce),o},lu=({x:e,y:t,cellSize:o,bgColor:r,fgColor:n})=>fe(ro,{children:[0,1,2].map(i=>fe("circle",{r:o*(Ce-i*2)/2,cx:e+o*Ce/2,cy:t+o*Ce/2,fill:i%2!==0?r:n},`finder-${e}-${t}-${i}`))}),cu=({cellSize:e,matrixSize:t,bgColor:o,fgColor:r})=>{let n=[[0,0],[(t-Ce)*e,0],[0,(t-Ce)*e]];return fe(ro,{children:n.map(([i,a])=>fe(lu,{x:i,y:a,cellSize:e,bgColor:o,fgColor:r}))})},du=({matrix:e,cellSize:t,color:o})=>fe(ro,{children:e.map((r,n)=>r.map((i,a)=>i?fe("circle",{r:t/2.5,cx:n*t+t/2,cy:a*t+t/2,fill:o},`circle-${n}-${a}`):fe(ro,{})))}),Rs=(e,t)=>e-e%t,pu=({outputSize:e,cellSize:t,element:o,size:r,padding:n,bgColor:i})=>{if(!o)return fe(ro,{});let a=r||40,l=n||4,s=o,p=e/2-a/2-l;return Is(ro,{children:[fe("rect",{x:Rs(p,t),y:Rs(p,t),width:a+l*2+(p%t?t+.5:.5),height:a+l*2+(p%t?t+.5:.5),fill:i}),fe(s,{x:e/2-a/2,y:e/2-a/2,height:a,width:a})]})},uu=e=>{var n;let t=e.outputSize,o=su(e.url),r=t/o.length;return Is("svg",{height:e.outputSize,width:e.outputSize,viewBox:`0 0 ${e.outputSize} ${e.outputSize}`,style:{height:"100%",width:"100%"},children:[fe(du,{matrix:o,cellSize:r,color:e.fgColor}),fe(cu,{cellSize:r,matrixSize:o.length,fgColor:e.fgColor,bgColor:e.bgColor}),fe(pu,{outputSize:e.outputSize,cellSize:r,element:(n=e.logo)==null?void 0:n.element,bgColor:e.bgColor})]})},mu=au.div`
|
|
977
1102
|
display: flex;
|
|
978
1103
|
justify-content: center;
|
|
979
1104
|
align-items: center;
|
|
@@ -988,7 +1113,7 @@ Resources:
|
|
|
988
1113
|
border-color: ${e=>e.fgColor};
|
|
989
1114
|
border-radius: 12px;
|
|
990
1115
|
}
|
|
991
|
-
`,gs=e=>{let t=e.bgColor||"#FFFFFF",o=e.fgColor||"#000000",r=e.size||160;return ce(jp,{size:r,bgColor:t,fgColor:o,children:ce($p,{url:e.url,logo:{element:e.squareLogoElement},outputSize:r,bgColor:t,fgColor:o})})};import{jsx as Kp}from"react/jsx-runtime";var bs=({size:e})=>Kp(gs,{url:"https://coinbase-wallet.onelink.me/q5Sx/fdb9b250",squareLogoElement:Te,size:e,fgColor:"#1F1F1F"});import{jsx as Z,jsxs as xr}from"react/jsx-runtime";var vs=({style:e,...t})=>xr("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:[Z("rect",{x:"198.5",y:"133",width:"50",height:"50",rx:"25",fill:"#E1E7EF"}),Z(ue,{x:"206",y:"140",width:"36",height:"36"}),Z("rect",{x:"192",y:"30",width:"50",height:"50",rx:"25",fill:"#0C5BFF"}),Z("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"}),Z("rect",{x:"39.5",y:"18",width:"50",height:"50",rx:"25",fill:"url(#paint0_linear_428_81)"}),Z("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)"}),Z("rect",{x:"46.5",y:"124",width:"50",height:"50",rx:"25",fill:"#141414"}),Z("g",{clipPath:"url(#clip0_428_81)",children:Z("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"})}),Z("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",fill:"var(--privy-color-foreground-accent)"}),Z(gr,{x:"63",y:"17"}),Z("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",stroke:"#E1E7EF",strokeWidth:"2"}),Z("path",{fill:"var(--privy-color-accent)",d:"M269.405 111c8.865 0 16.052-7.163 16.052-16s-7.187-16-16.052-16c-8.865 0-16.051 7.163-16.051 16s7.186 16 16.051 16ZM133.971 24c6.649 0 12.039-5.373 12.039-12s-5.39-12-12.039-12-12.039 5.373-12.039 12 5.39 12 12.039 12ZM15.592 112c4.986 0 9.029-4.029 9.029-9 0-4.97-4.043-9-9.03-9-4.986 0-9.028 4.03-9.028 9 0 4.971 4.042 9 9.029 9Z"}),Z("path",{fill:"var(--privy-color-accent-light)",d:"M152.029 177c5.541 0 10.032-4.477 10.032-10s-4.491-10-10.032-10-10.032 4.477-10.032 10 4.491 10 10.032 10ZM263.386 21c4.432 0 8.026-3.582 8.026-8s-3.594-8-8.026-8c-4.433 0-8.026 3.582-8.026 8s3.593 8 8.026 8ZM7.064 36c3.602 0 6.521-2.91 6.521-6.5s-2.92-6.5-6.52-6.5C3.462 23 .542 25.91.542 29.5S3.463 36 7.064 36Z"}),xr("defs",{children:[xr("linearGradient",{id:"paint0_linear_428_81",x1:"64.5",y1:"18",x2:"64.5",y2:"68",gradientUnits:"userSpaceOnUse",children:[Z("stop",{stopColor:"#534BB1"}),Z("stop",{offset:"1",stopColor:"#551BF9"})]}),xr("linearGradient",{id:"paint1_linear_428_81",x1:"64.5",y1:"30.9167",x2:"64.5",y2:"55.0834",gradientUnits:"userSpaceOnUse",children:[Z("stop",{stopColor:"white"}),Z("stop",{offset:"1",stopColor:"white",stopOpacity:"0.82"})]}),Z("clipPath",{id:"clip0_428_81",children:Z("rect",{width:"31.6667",height:"19.1667",fill:"white",transform:"translate(55.6667 139.833)"})})]})]});import{Fragment as $n,jsx as P,jsxs as X}from"react/jsx-runtime";var jn=()=>{let{navigate:e}=b(),t="https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn?hl=en";return et.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/ether-metamask/"),X(Yn,{children:[P(ee,{title:"Create a Metamask wallet",description:"Follow the instructions below to get started."}),P(Qn,{children:P(ue,{style:{width:"152px",height:"152px"}})}),X(Cr,{children:[P(Ge,{children:X("div",{children:[P("span",{children:"Install the "}),P("a",{href:t,target:"_blank",children:"MetaMask browser extension"})]})}),P(Ct,{}),P(Ge,{children:"Set up your first wallet"}),P(Ct,{}),P(Ge,{children:"Store your recovery phrase in a safe place!"})]}),P(me,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},Kn=()=>{let{navigate:e}=b(),t="https://chrome.google.com/webstore/detail/phantom/bfnaelmomeimhlpmgjnjophhpkkoljpa?hl=en";return et.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/phantom-app/"),X(Yn,{children:[P(ee,{title:"Create a Phantom wallet",description:"Follow the instructions below to get started."}),P(Qn,{children:P(De,{style:{width:"152px",height:"152px"}})}),X(Cr,{children:[P(Ge,{children:X("div",{children:[P("span",{children:"Install the "}),P("a",{href:t,target:"_blank",children:"Phantom browser extension"})]})}),P(Ct,{}),P(Ge,{children:"Set up your first wallet"}),P(Ct,{}),P(Ge,{children:"Store your recovery phrase in a safe place!"})]}),P(me,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},Zn=()=>{let{navigate:e}=b();return X(Yn,{children:[P(ee,{title:"Create a Coinbase wallet",description:"Follow the instructions below to get started."}),P(Qn,{style:{marginTop:"-24px"},children:P(bs,{size:200})}),X(Cr,{children:[P(Ge,{children:"Scan the QR code with your camera"}),P(Ct,{}),P(Ge,{children:"Set up your first wallet"}),P(Ct,{}),P(Ge,{children:"Store your seed phrase in a safe place!"})]}),P(me,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},xs=()=>{let[e,t]=Zp("WHAT_IS_A_WALLET"),{navigateBack:o}=b();return X($n,{children:[P(E,{backFn:e==="WHAT_IS_A_WALLET"?o:e==="PICK_A_NEW_WALLET"?()=>t("WHAT_IS_A_WALLET"):()=>t("PICK_A_NEW_WALLET")},"header"),X(Yp,{children:[e==="WHAT_IS_A_WALLET"&&X($n,{children:[P(t1,{children:P(vs,{style:{width:"240px",height:"auto",borderRadius:"var(--privy-border-radius-sm)",marginBottom:"32px"}})}),X(lt,{title:"Get started with a new wallet",children:[P("p",{children:"Wallets help you store, send, and receive digital assets and collectibles. They are also a new\xA0way\xA0to\xA0log\xA0in."}),P("p",{children:"Instead of creating new accounts and passwords for every app, you just connect your wallet and bring your\xA0data\xA0with\xA0you."})]}),P(Xp,{children:P(e1,{onClick:()=>{t("PICK_A_NEW_WALLET")},children:"Create a wallet"})})]}),e==="PICK_A_NEW_WALLET"&&P($n,{children:X(Qp,{children:[P(ee,{title:"Create a new wallet",description:"Select one the wallet providers below to get started on your web3 adventure."}),X(Jp,{children:[X(ws,{onClick:()=>{et.isIOS?window.location.href="https://apps.apple.com/us/app/metamask-blockchain-wallet/id1438144202":et.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=io.metamask":t("CREATE_METAMASK_WALLET")},children:[P(ue,{}),X(Cs,{children:[P("h4",{children:"MetaMask"}),P("p",{children:"Get a browser-based wallet"})]})]}),X(ws,{onClick:()=>{et.isIOS?window.location.href="https://apps.apple.com/us/app/coinbase-wallet-nfts-crypto/id1278383455":et.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=org.toshi":t("CREATE_COINBASE_WALLET")},children:[P(Te,{}),X(Cs,{children:[P("h4",{children:"Coinbase Wallet"}),P("p",{children:"Get a mobile app wallet"})]})]})]})]})}),e==="CREATE_COINBASE_WALLET"&&P(Zn,{}),e==="CREATE_METAMASK_WALLET"&&P(jn,{}),e==="CREATE_PHANTOM_WALLET"&&P(Kn,{})]}),X(ve,{children:[P("span",{children:"Still not sure? "}),P("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"}),"."]})]})},Yp=He.div`
|
|
1116
|
+
`,Ws=e=>{let t=e.bgColor||"#FFFFFF",o=e.fgColor||"#000000",r=e.size||160;return fe(mu,{size:r,bgColor:t,fgColor:o,children:fe(uu,{url:e.url,logo:{element:e.squareLogoElement},outputSize:r,bgColor:t,fgColor:o})})};import{jsx as hu}from"react/jsx-runtime";var Ns=({size:e})=>hu(Ws,{url:"https://coinbase-wallet.onelink.me/q5Sx/fdb9b250",squareLogoElement:_e,size:e,fgColor:"#1F1F1F"});import{jsx as K,jsxs as Ur}from"react/jsx-runtime";var Ls=({style:e,...t})=>Ur("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:[K("rect",{x:"198.5",y:"133",width:"50",height:"50",rx:"25",fill:"#E1E7EF"}),K(ae,{x:"206",y:"140",width:"36",height:"36"}),K("rect",{x:"192",y:"30",width:"50",height:"50",rx:"25",fill:"#0C5BFF"}),K("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"}),K("rect",{x:"39.5",y:"18",width:"50",height:"50",rx:"25",fill:"url(#paint0_linear_428_81)"}),K("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)"}),K("rect",{x:"46.5",y:"124",width:"50",height:"50",rx:"25",fill:"#141414"}),K("g",{clipPath:"url(#clip0_428_81)",children:K("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"})}),K("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",fill:"var(--privy-color-foreground-accent)"}),K(Ir,{x:"63",y:"17"}),K("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",stroke:"#E1E7EF",strokeWidth:"2"}),K("path",{fill:"var(--privy-color-accent)",d:"M269.405 111c8.865 0 16.052-7.163 16.052-16s-7.187-16-16.052-16c-8.865 0-16.051 7.163-16.051 16s7.186 16 16.051 16ZM133.971 24c6.649 0 12.039-5.373 12.039-12s-5.39-12-12.039-12-12.039 5.373-12.039 12 5.39 12 12.039 12ZM15.592 112c4.986 0 9.029-4.029 9.029-9 0-4.97-4.043-9-9.03-9-4.986 0-9.028 4.03-9.028 9 0 4.971 4.042 9 9.029 9Z"}),K("path",{fill:"var(--privy-color-accent-light)",d:"M152.029 177c5.541 0 10.032-4.477 10.032-10s-4.491-10-10.032-10-10.032 4.477-10.032 10 4.491 10 10.032 10ZM263.386 21c4.432 0 8.026-3.582 8.026-8s-3.594-8-8.026-8c-4.433 0-8.026 3.582-8.026 8s3.593 8 8.026 8ZM7.064 36c3.602 0 6.521-2.91 6.521-6.5s-2.92-6.5-6.52-6.5C3.462 23 .542 25.91.542 29.5S3.463 36 7.064 36Z"}),Ur("defs",{children:[Ur("linearGradient",{id:"paint0_linear_428_81",x1:"64.5",y1:"18",x2:"64.5",y2:"68",gradientUnits:"userSpaceOnUse",children:[K("stop",{stopColor:"#534BB1"}),K("stop",{offset:"1",stopColor:"#551BF9"})]}),Ur("linearGradient",{id:"paint1_linear_428_81",x1:"64.5",y1:"30.9167",x2:"64.5",y2:"55.0834",gradientUnits:"userSpaceOnUse",children:[K("stop",{stopColor:"white"}),K("stop",{offset:"1",stopColor:"white",stopOpacity:"0.82"})]}),K("clipPath",{id:"clip0_428_81",children:K("rect",{width:"31.6667",height:"19.1667",fill:"white",transform:"translate(55.6667 139.833)"})})]})]});import{Fragment as ri,jsx as P,jsxs as X}from"react/jsx-runtime";var ni=()=>{let{navigate:e}=y(),t="https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn?hl=en";return at.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/ether-metamask/"),X(si,{children:[P(te,{title:"Create a Metamask wallet",description:"Follow the instructions below to get started."}),P(li,{children:P(ae,{style:{width:"152px",height:"152px"}})}),X(Dr,{children:[P(qe,{children:X("div",{children:[P("span",{children:"Install the "}),P("a",{href:t,target:"_blank",children:"MetaMask browser extension"})]})}),P(Wt,{}),P(qe,{children:"Set up your first wallet"}),P(Wt,{}),P(qe,{children:"Store your recovery phrase in a safe place!"})]}),P(ne,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},ii=()=>{let{navigate:e}=y(),t="https://chrome.google.com/webstore/detail/phantom/bfnaelmomeimhlpmgjnjophhpkkoljpa?hl=en";return at.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/phantom-app/"),X(si,{children:[P(te,{title:"Create a Phantom wallet",description:"Follow the instructions below to get started."}),P(li,{children:P(Be,{style:{width:"152px",height:"152px"}})}),X(Dr,{children:[P(qe,{children:X("div",{children:[P("span",{children:"Install the "}),P("a",{href:t,target:"_blank",children:"Phantom browser extension"})]})}),P(Wt,{}),P(qe,{children:"Set up your first wallet"}),P(Wt,{}),P(qe,{children:"Store your recovery phrase in a safe place!"})]}),P(ne,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},ai=()=>{let{navigate:e}=y();return X(si,{children:[P(te,{title:"Create a Coinbase wallet",description:"Follow the instructions below to get started."}),P(li,{style:{marginTop:"-24px"},children:P(Ns,{size:200})}),X(Dr,{children:[P(qe,{children:"Scan the QR code with your camera"}),P(Wt,{}),P(qe,{children:"Set up your first wallet"}),P(Wt,{}),P(qe,{children:"Store your seed phrase in a safe place!"})]}),P(ne,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},Ds=()=>{let[e,t]=fu("WHAT_IS_A_WALLET"),{navigateBack:o}=y();return X(ri,{children:[P(C,{backFn:e==="WHAT_IS_A_WALLET"?o:e==="PICK_A_NEW_WALLET"?()=>t("WHAT_IS_A_WALLET"):()=>t("PICK_A_NEW_WALLET")},"header"),X(gu,{children:[e==="WHAT_IS_A_WALLET"&&X(ri,{children:[P(Cu,{children:P(Ls,{style:{width:"240px",height:"auto",borderRadius:"var(--privy-border-radius-sm)",marginBottom:"32px"}})}),X(mt,{title:"Get started with a new wallet",children:[P("p",{children:"Wallets help you store, send, and receive digital assets and collectibles. They are also a new\xA0way\xA0to\xA0log\xA0in."}),P("p",{children:"Instead of creating new accounts and passwords for every app, you just connect your wallet and bring your\xA0data\xA0with\xA0you."})]}),P(wu,{children:P(bu,{onClick:()=>{t("PICK_A_NEW_WALLET")},children:"Create a wallet"})})]}),e==="PICK_A_NEW_WALLET"&&P(ri,{children:X(yu,{children:[P(te,{title:"Create a new wallet",description:"Select one the wallet providers below to get started on your web3 adventure."}),X(vu,{children:[X(Ms,{onClick:()=>{at.isIOS?window.location.href="https://apps.apple.com/us/app/metamask-blockchain-wallet/id1438144202":at.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=io.metamask":t("CREATE_METAMASK_WALLET")},children:[P(ae,{}),X(Os,{children:[P("h4",{children:"MetaMask"}),P("p",{children:"Get a browser-based wallet"})]})]}),X(Ms,{onClick:()=>{at.isIOS?window.location.href="https://apps.apple.com/us/app/coinbase-wallet-nfts-crypto/id1278383455":at.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=org.toshi":t("CREATE_COINBASE_WALLET")},children:[P(_e,{}),X(Os,{children:[P("h4",{children:"Coinbase Wallet"}),P("p",{children:"Get a mobile app wallet"})]})]})]})]})}),e==="CREATE_COINBASE_WALLET"&&P(ai,{}),e==="CREATE_METAMASK_WALLET"&&P(ni,{}),e==="CREATE_PHANTOM_WALLET"&&P(ii,{})]}),X(We,{children:[P("span",{children:"Still not sure? "}),P("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"}),"."]})]})},gu=$e.div`
|
|
992
1117
|
display: flex;
|
|
993
1118
|
flex-direction: column;
|
|
994
1119
|
height: 100%;
|
|
@@ -999,19 +1124,19 @@ Resources:
|
|
|
999
1124
|
display: none;
|
|
1000
1125
|
}
|
|
1001
1126
|
}
|
|
1002
|
-
`,
|
|
1127
|
+
`,yu=$e.div`
|
|
1003
1128
|
display: flex;
|
|
1004
1129
|
flex-direction: column;
|
|
1005
1130
|
align-items: flex-start;
|
|
1006
1131
|
justify-content: flex-start;
|
|
1007
1132
|
text-align: left;
|
|
1008
1133
|
gap: 20px;
|
|
1009
|
-
`,
|
|
1134
|
+
`,vu=$e.div`
|
|
1010
1135
|
display: flex;
|
|
1011
1136
|
flex-direction: column;
|
|
1012
1137
|
width: 100%;
|
|
1013
1138
|
gap: 8px;
|
|
1014
|
-
`,
|
|
1139
|
+
`,Ms=$e.button`
|
|
1015
1140
|
display: flex;
|
|
1016
1141
|
flex-direction: row;
|
|
1017
1142
|
align-items: center;
|
|
@@ -1044,24 +1169,24 @@ Resources:
|
|
|
1044
1169
|
:hover {
|
|
1045
1170
|
border: 1px solid var(--privy-color-accent-light);
|
|
1046
1171
|
}
|
|
1047
|
-
`,
|
|
1172
|
+
`,Os=$e.div`
|
|
1048
1173
|
text-align: left;
|
|
1049
1174
|
|
|
1050
1175
|
p {
|
|
1051
1176
|
font-style: italic;
|
|
1052
1177
|
font-size: 12px;
|
|
1053
1178
|
}
|
|
1054
|
-
`,
|
|
1179
|
+
`,wu=$e.div`
|
|
1055
1180
|
margin-top: auto;
|
|
1056
1181
|
display: flex;
|
|
1057
1182
|
align-items: flex-end;
|
|
1058
1183
|
flex-grow: 1;
|
|
1059
1184
|
width: 100%;
|
|
1060
|
-
`,
|
|
1185
|
+
`,bu=$e(j)`
|
|
1061
1186
|
&& {
|
|
1062
1187
|
margin-top: 14px;
|
|
1063
1188
|
}
|
|
1064
|
-
`,
|
|
1189
|
+
`,si=$e.div`
|
|
1065
1190
|
display: flex;
|
|
1066
1191
|
flex-direction: column;
|
|
1067
1192
|
align-items: center;
|
|
@@ -1073,17 +1198,17 @@ Resources:
|
|
|
1073
1198
|
> :first-child > svg {
|
|
1074
1199
|
margin-top: 20px;
|
|
1075
1200
|
}
|
|
1076
|
-
`,
|
|
1201
|
+
`,li=$e.div`
|
|
1077
1202
|
display: flex;
|
|
1078
1203
|
flex-direction: column;
|
|
1079
1204
|
align-items: center;
|
|
1080
1205
|
justify-content: center;
|
|
1081
1206
|
width: 100%;
|
|
1082
|
-
`,
|
|
1207
|
+
`,Cu=$e.div`
|
|
1083
1208
|
display: flex;
|
|
1084
1209
|
justify-content: center;
|
|
1085
1210
|
flex-grow: 1;
|
|
1086
|
-
`;import{Fragment as
|
|
1211
|
+
`;import{Fragment as xu,jsx as Br,jsxs as Us}from"react/jsx-runtime";var Bs=()=>{let{navigateBack:e}=y();return Us(xu,{children:[Br(C,{backFn:e},"header"),Br(ai,{}),Us(We,{children:[Br("span",{children:"Still not sure? "}),Br("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"})]})]})};import{Fragment as Eu,jsx as Fr,jsxs as Fs}from"react/jsx-runtime";var Gs=()=>{let{navigateBack:e}=y();return Fs(Eu,{children:[Fr(C,{backFn:e},"header"),Fr(ni,{}),Fs(We,{children:[Fr("span",{children:"Still not sure? "}),Fr("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"})]})]})};import{Fragment as Tu,jsx as Gr,jsxs as Hs}from"react/jsx-runtime";var Vs=()=>{let{navigateBack:e}=y();return Hs(Tu,{children:[Gr(C,{backFn:e},"header"),Gr(ii,{}),Hs(We,{children:[Gr("span",{children:"Still not sure? "}),Gr("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"})]})]})};import{useState as Hu}from"react";import{isMobile as Qs}from"react-device-detect";import ao from"styled-components";import{useEffect as Pu,useState as ci}from"react";import Vr from"styled-components";import{jsx as zs}from"react/jsx-runtime";var Hr=({style:e,...t})=>zs("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:zs("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 Ru,jsx as no,jsxs as di}from"react/jsx-runtime";var zr=e=>{let[t,o]=ci(""),[r,n]=ci(!1),[i,a]=ci(null),{isLinking:l,initLoginWithEmail:s}=S(),{app:p,navigate:g}=y(),f=(p==null?void 0:p.loginMethods.wallet)??!1;Pu(()=>{let m=document.querySelector("#email-input");m==null||m.focus()},[]);let u=Qi(t),w=()=>{n(!0),s(t).then(()=>{g("AWAITING_PASSWORDLESS_CODE")}).catch(m=>{(m==null?void 0:m.status)===422?a(m.message):(m==null?void 0:m.privyErrorCode)==="allowlist_rejected"?g("ALLOWLIST_REJECTION_SCREEN"):a("Issue submitting email"),n(!1)})},v="Get started without a wallet.";return i?v=i:l?v="Easily connect an email":f||(v="Get started quickly with email"),di(Ru,{children:[di(_u,{stacked:e.stacked,children:[di(Su,{standalone:e.stacked,children:[no(Hr,{}),no("input",{id:"email-input",type:"email",placeholder:"your@email.com",onChange:m=>o(m.target.value),onKeyUp:m=>{m.key==="Enter"&&w()},value:t,autoComplete:"email"})]}),e.stacked?null:no(Au,{disabled:r||!u,onClick:w,children:r?no(Re,{}):"Submit"})]}),no(ku,{fail:!!i,children:v}),e.stacked?no(j,{loading:r,loadingText:null,disabled:r||!u,onClick:w,children:"Submit"}):null]})},_u=Vr.div`
|
|
1087
1212
|
width: 100%;
|
|
1088
1213
|
height: ${e=>e.stacked?"100%":"auto"};
|
|
1089
1214
|
|
|
@@ -1095,7 +1220,7 @@ Resources:
|
|
|
1095
1220
|
@media (max-width: 440px) {
|
|
1096
1221
|
margin-top: 20px;
|
|
1097
1222
|
}
|
|
1098
|
-
`,
|
|
1223
|
+
`,Au=Vr.button`
|
|
1099
1224
|
display: flex;
|
|
1100
1225
|
flex-direction: row;
|
|
1101
1226
|
align-items: center;
|
|
@@ -1126,7 +1251,7 @@ Resources:
|
|
|
1126
1251
|
color: var(--privy-color-foreground-3);
|
|
1127
1252
|
cursor: not-allowed;
|
|
1128
1253
|
}
|
|
1129
|
-
`,
|
|
1254
|
+
`,Su=Vr.label`
|
|
1130
1255
|
display: flex;
|
|
1131
1256
|
flex-direction: row;
|
|
1132
1257
|
align-items: center;
|
|
@@ -1163,7 +1288,7 @@ Resources:
|
|
|
1163
1288
|
line-height: 24px;
|
|
1164
1289
|
}
|
|
1165
1290
|
}
|
|
1166
|
-
`,
|
|
1291
|
+
`,ku=Vr.div`
|
|
1167
1292
|
line-height: 20px;
|
|
1168
1293
|
height: 20px;
|
|
1169
1294
|
font-size: 13px;
|
|
@@ -1176,7 +1301,7 @@ Resources:
|
|
|
1176
1301
|
> a {
|
|
1177
1302
|
text-decoration: underline;
|
|
1178
1303
|
}
|
|
1179
|
-
`;import{useEffect as
|
|
1304
|
+
`;import{useEffect as Wu,useState as pi}from"react";import $r from"styled-components";import{jsx as qs}from"react/jsx-runtime";var qr=({style:e,...t})=>qs("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:qs("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 Ou,jsx as io,jsxs as ui}from"react/jsx-runtime";var jr=e=>{let[t,o]=pi(""),[r,n]=pi(!1),[i,a]=pi(null),{isLinking:l,initLoginWithSms:s}=S(),{app:p,navigate:g}=y(),f=(p==null?void 0:p.loginMethods.wallet)??!1;Wu(()=>{let m=document.querySelector("#phone-number-input");m==null||m.focus()},[]);let u=Ji(t),w=()=>{n(!0),s(t).then(()=>{g("AWAITING_PASSWORDLESS_CODE")}).catch(m=>{(m==null?void 0:m.status)===422?a(m.message):(m==null?void 0:m.privyErrorCode)==="allowlist_rejected"?g("ALLOWLIST_REJECTION_SCREEN"):a("Issue submitting phone number"),n(!1)})},v="Get started without a wallet.";return i?v=i:l?v="Easily connect a phone number":f||(v="Get started quickly with your phone"),ui(Ou,{children:[ui(Iu,{stacked:e.stacked,children:[ui(Lu,{standalone:e.stacked,children:[io(qr,{}),io("input",{id:"phone-number-input",type:"tel",placeholder:"555 555 5555",onChange:m=>{o(m.target.value)},onKeyUp:m=>{m.key==="Enter"&&w()},value:t,autoComplete:"tel"})]}),e.stacked?null:io(Nu,{disabled:r||!u,onClick:w,children:r?io(Re,{}):"Submit"})]}),io(Mu,{fail:!!i,children:v}),e.stacked?io(j,{loading:r,loadingText:null,disabled:r||!u,onClick:w,children:"Submit"}):null]})},Iu=$r.div`
|
|
1180
1305
|
display: flex;
|
|
1181
1306
|
border: 1px solid var(--privy-color-foreground-4);
|
|
1182
1307
|
width: 100%;
|
|
@@ -1190,7 +1315,7 @@ Resources:
|
|
|
1190
1315
|
@media (max-width: 440px) {
|
|
1191
1316
|
margin-top: 20px;
|
|
1192
1317
|
}
|
|
1193
|
-
`,
|
|
1318
|
+
`,Nu=$r.button`
|
|
1194
1319
|
display: flex;
|
|
1195
1320
|
flex-direction: row;
|
|
1196
1321
|
align-items: center;
|
|
@@ -1221,7 +1346,7 @@ Resources:
|
|
|
1221
1346
|
color: var(--privy-color-foreground-3);
|
|
1222
1347
|
cursor: not-allowed;
|
|
1223
1348
|
}
|
|
1224
|
-
`,
|
|
1349
|
+
`,Lu=$r.label`
|
|
1225
1350
|
display: flex;
|
|
1226
1351
|
flex-direction: row;
|
|
1227
1352
|
align-items: center;
|
|
@@ -1258,7 +1383,7 @@ Resources:
|
|
|
1258
1383
|
line-height: 24px;
|
|
1259
1384
|
}
|
|
1260
1385
|
}
|
|
1261
|
-
`,
|
|
1386
|
+
`,Mu=$r.div`
|
|
1262
1387
|
line-height: 20px;
|
|
1263
1388
|
height: 20px;
|
|
1264
1389
|
font-size: 13px;
|
|
@@ -1271,12 +1396,12 @@ Resources:
|
|
|
1271
1396
|
> a {
|
|
1272
1397
|
text-decoration: underline;
|
|
1273
1398
|
}
|
|
1274
|
-
`;import
|
|
1399
|
+
`;import Ys from"styled-components";import{jsx as $s,jsxs as Du}from"react/jsx-runtime";var Kr=({style:e,...t})=>Du("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 24 24",style:{height:"24px",...e},...t,children:[$s("path",{d:"M17.0722 11.6888C17.0471 8.90571 19.3263 7.56847 19.429 7.50274C18.1466 5.60938 16.153 5.35154 15.4417 5.3212C13.7461 5.14678 12.1306 6.32982 11.269 6.32982C10.4074 6.32982 9.08004 5.34648 7.67246 5.37429C5.82158 5.40209 4.11595 6.45874 3.16171 8.13218C1.24068 11.4942 2.6708 16.4817 4.54423 19.2143C5.46091 20.549 6.55041 22.0531 7.98554 21.9975C9.36803 21.9419 9.88905 21.095 11.5571 21.095C13.2251 21.095 13.696 21.9975 15.1537 21.9697C16.6389 21.9393 17.5806 20.6046 18.4897 19.2648C19.5392 17.7153 19.9725 16.2137 19.9975 16.1354C19.965 16.1228 17.1022 15.0155 17.0722 11.6888Z",fill:"currentColor"}),$s("path",{d:"M14.3295 3.51373C15.0909 2.58347 15.6043 1.28921 15.4641 0C14.3671 0.0455014 13.0396 0.738135 12.2532 1.66838C11.5494 2.48994 10.9307 3.80695 11.0986 5.07089C12.3183 5.16694 13.5681 4.44145 14.3295 3.51373Z",fill:"currentColor"})]});import{jsx as Oo,jsxs as Uu}from"react/jsx-runtime";var Yr=({style:e,...t})=>Uu("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 71 55",style:{height:"24px",...e},...t,children:[Oo("g",{clipPath:"url(#clip0)",children:Oo("path",{d:"M60.1045 4.8978C55.5792 2.8214 50.7265 1.2916 45.6527 0.41542C45.5603 0.39851 45.468 0.440769 45.4204 0.525289C44.7963 1.6353 44.105 3.0834 43.6209 4.2216C38.1637 3.4046 32.7345 3.4046 27.3892 4.2216C26.905 3.0581 26.1886 1.6353 25.5617 0.525289C25.5141 0.443589 25.4218 0.40133 25.3294 0.41542C20.2584 1.2888 15.4057 2.8186 10.8776 4.8978C10.8384 4.9147 10.8048 4.9429 10.7825 4.9795C1.57795 18.7309 -0.943561 32.1443 0.293408 45.3914C0.299005 45.4562 0.335386 45.5182 0.385761 45.5576C6.45866 50.0174 12.3413 52.7249 18.1147 54.5195C18.2071 54.5477 18.305 54.5139 18.3638 54.4378C19.7295 52.5728 20.9469 50.6063 21.9907 48.5383C22.0523 48.4172 21.9935 48.2735 21.8676 48.2256C19.9366 47.4931 18.0979 46.6 16.3292 45.5858C16.1893 45.5041 16.1781 45.304 16.3068 45.2082C16.679 44.9293 17.0513 44.6391 17.4067 44.3461C17.471 44.2926 17.5606 44.2813 17.6362 44.3151C29.2558 49.6202 41.8354 49.6202 53.3179 44.3151C53.3935 44.2785 53.4831 44.2898 53.5502 44.3433C53.9057 44.6363 54.2779 44.9293 54.6529 45.2082C54.7816 45.304 54.7732 45.5041 54.6333 45.5858C52.8646 46.6197 51.0259 47.4931 49.0921 48.2228C48.9662 48.2707 48.9102 48.4172 48.9718 48.5383C50.038 50.6034 51.2554 52.5699 52.5959 54.435C52.6519 54.5139 52.7526 54.5477 52.845 54.5195C58.6464 52.7249 64.529 50.0174 70.6019 45.5576C70.6551 45.5182 70.6887 45.459 70.6943 45.3942C72.1747 30.0791 68.2147 16.7757 60.1968 4.9823C60.1772 4.9429 60.1437 4.9147 60.1045 4.8978ZM23.7259 37.3253C20.2276 37.3253 17.3451 34.1136 17.3451 30.1693C17.3451 26.225 20.1717 23.0133 23.7259 23.0133C27.308 23.0133 30.1626 26.2532 30.1066 30.1693C30.1066 34.1136 27.28 37.3253 23.7259 37.3253ZM47.3178 37.3253C43.8196 37.3253 40.9371 34.1136 40.9371 30.1693C40.9371 26.225 43.7636 23.0133 47.3178 23.0133C50.9 23.0133 53.7545 26.2532 53.6986 30.1693C53.6986 34.1136 50.9 37.3253 47.3178 37.3253Z",fill:"#5865F2"})}),Oo("defs",{children:Oo("clipPath",{id:"clip0",children:Oo("rect",{width:"71",height:"55",fill:"white"})})})]});import{jsx as js}from"react/jsx-runtime";var Zr=({style:e,...t})=>js("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"24",y:"24",viewBox:"0 0 98 96",style:{height:"24px",...e},...t,children:js("path",{d:"M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z",fill:"currentColor"})});import{jsx as Qr,jsxs as Bu}from"react/jsx-runtime";var Jr=({style:e,...t})=>Bu("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:[Qr("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"}),Qr("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"}),Qr("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"}),Qr("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 Ks}from"react/jsx-runtime";var Xr=({style:e,...t})=>Ks("svg",{width:"24",height:"20",viewBox:"0 0 24 20",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"26px",width:"26px",...e},...t,children:Ks("path",{d:"M7.54311 19.7551C16.5973 19.7551 21.5516 12.2467 21.5516 5.74656C21.5516 5.53533 21.5516 5.32409 21.542 5.11286C22.5021 4.42156 23.3375 3.54783 24 2.55888C23.1166 2.95254 22.1661 3.21178 21.1675 3.3366C22.1853 2.73171 22.963 1.76196 23.3375 0.609788C22.3869 1.17627 21.3308 1.57953 20.2074 1.80037C19.3049 0.840223 18.0279 0.244934 16.6165 0.244934C13.8993 0.244934 11.6909 2.45326 11.6909 5.17047C11.6909 5.55453 11.7389 5.92898 11.8157 6.29384C7.72554 6.09221 4.09619 4.12391 1.66703 1.14747C1.24457 1.87718 1.00453 2.72211 1.00453 3.62464C1.00453 5.3337 1.87826 6.84112 3.19366 7.72445C2.38714 7.69565 1.62862 7.47481 0.966125 7.10996C0.966125 7.12916 0.966125 7.14837 0.966125 7.17717C0.966125 9.55833 2.66558 11.5554 4.91232 12.0067C4.49945 12.1219 4.06739 12.1795 3.61612 12.1795C3.29927 12.1795 2.99203 12.1507 2.69438 12.0931C3.31848 14.0518 5.14275 15.4728 7.29347 15.5112C5.60362 16.8362 3.4817 17.6235 1.17736 17.6235C0.783698 17.6235 0.390039 17.6043 0.00598145 17.5563C2.17591 18.9389 4.76829 19.7551 7.54311 19.7551Z",fill:"#1da1f2"})});import{jsx as je,jsxs as Gu}from"react/jsx-runtime";var Zs=({showGoogle:e,showTwitter:t,showDiscord:o,showGithub:r,showApple:n})=>{let{initLoginWithOAuth:i}=S(),{app:a}=y(),l=a==null?void 0:a.appearance.palette.colorScheme;return Gu(Fu,{children:[e&&je(Do,{onClick:()=>{i("google")},children:je(Jr,{})}),t&&je(Do,{onClick:()=>{i("twitter")},children:je(Xr,{})}),o&&je(Do,{onClick:()=>{i("discord")},children:je(Yr,{})}),r&&je(Do,{onClick:()=>{i("github")},children:je(Zr,{style:{color:l==="light"?"#000":"#fff"}})}),n&&je(Do,{onClick:()=>{i("apple")},children:je(Kr,{style:{color:l==="light"?"#000":"#fff"}})})]})},Fu=Ys.div`
|
|
1275
1400
|
display: flex;
|
|
1276
1401
|
justify-content: space-between;
|
|
1277
1402
|
width: 100%;
|
|
1278
1403
|
gap: 4px;
|
|
1279
|
-
`,
|
|
1404
|
+
`,Do=Ys.div`
|
|
1280
1405
|
border-radius: var(--privy-border-radius-sm);
|
|
1281
1406
|
cursor: pointer;
|
|
1282
1407
|
height: 44px;
|
|
@@ -1290,87 +1415,13 @@ Resources:
|
|
|
1290
1415
|
&:hover {
|
|
1291
1416
|
background-color: var(--privy-color-background-2);
|
|
1292
1417
|
}
|
|
1293
|
-
`;import{
|
|
1294
|
-
@media (max-width: 440px) {
|
|
1295
|
-
display: none;
|
|
1296
|
-
}
|
|
1297
|
-
`;import{jsx as _e,jsxs as Yt}from"react/jsx-runtime";var Fr=()=>{let{navigate:e}=b(),{initLoginWithWallet:t}=T();return Yt(P1,{children:[Yt(Br,{onClick:()=>{gn()?(t("metamask"),e("AWAITING_CONNECTION")):Ur?(t("wallet_connect",er),e("AWAITING_CONNECTION")):e("INSTALL_METAMASK_SCREEN")},children:[_e(ue,{}),_e("span",{children:"Metamask"}),_e("span",{children:gn()?"Connect":"Install"})]}),Yt(Br,{onClick:()=>{Ot()?(t("coinbase_wallet"),e("AWAITING_CONNECTION")):Ur?e("COINBASE_INTERSTITIAL_SCREEN"):(t("coinbase_wallet"),e("AWAITING_CONNECTION"))},children:[_e(Te,{}),Yt("span",{children:["Coinbase",_e(Us,{children:" Wallet"})]}),_e("span",{children:"Connect"})]}),(Ur||nt())&&Yt(Br,{id:"privy-phantom-button",onClick:()=>{nt()?(t("phantom"),e("AWAITING_CONNECTION")):e(Ur?"PHANTOM_INTERSTITIAL_SCREEN":"INSTALL_PHANTOM_SCREEN")},children:[_e(De,{}),_e("span",{children:"Phantom"}),_e("span",{children:nt()?"Connect":"Install"})]}),Yt(Br,{onClick:()=>{t("wallet_connect"),e("AWAITING_CONNECTION")},children:[_e(Dt,{}),_e("span",{children:"WalletConnect"}),_e("span",{children:"Connect"})]})]})},P1=Bs.div`
|
|
1298
|
-
display: flex;
|
|
1299
|
-
flex-direction: column;
|
|
1300
|
-
align-items: flex-start;
|
|
1301
|
-
gap: 8px;
|
|
1302
|
-
width: 100%;
|
|
1303
|
-
`,Br=Bs.button`
|
|
1304
|
-
display: flex;
|
|
1305
|
-
flex-direction: row;
|
|
1306
|
-
align-items: center;
|
|
1307
|
-
gap: 12px;
|
|
1308
|
-
width: 100%;
|
|
1309
|
-
height: 44px;
|
|
1310
|
-
|
|
1311
|
-
-webkit-user-select: none;
|
|
1312
|
-
-ms-user-select: none;
|
|
1313
|
-
user-select: none;
|
|
1314
|
-
|
|
1315
|
-
font-size: 14px;
|
|
1316
|
-
font-weight: 500;
|
|
1317
|
-
color: var(--privy-color-foreground);
|
|
1318
|
-
|
|
1319
|
-
&& {
|
|
1320
|
-
font-weight: 600;
|
|
1321
|
-
padding: 7px 11px;
|
|
1322
|
-
border: 1px solid var(--privy-color-foreground-4);
|
|
1323
|
-
border-radius: var(--privy-border-radius-sm);
|
|
1324
|
-
}
|
|
1325
|
-
|
|
1326
|
-
flex: none;
|
|
1327
|
-
order: 0;
|
|
1328
|
-
align-self: stretch;
|
|
1329
|
-
flex-grow: 0;
|
|
1330
|
-
|
|
1331
|
-
> svg {
|
|
1332
|
-
border-radius: var(--privy-border-radius-sm);
|
|
1333
|
-
}
|
|
1334
|
-
|
|
1335
|
-
/* Show "Connect" on hover */
|
|
1336
|
-
> :last-child {
|
|
1337
|
-
font-weight: 500;
|
|
1338
|
-
text-align: right;
|
|
1339
|
-
flex: none;
|
|
1340
|
-
order: 2;
|
|
1341
|
-
flex-grow: 1;
|
|
1342
|
-
color: var(--privy-color-accent);
|
|
1343
|
-
opacity: 0;
|
|
1344
|
-
transition: opacity 0.1s ease-out;
|
|
1345
|
-
}
|
|
1346
|
-
|
|
1347
|
-
:hover > :last-child {
|
|
1348
|
-
opacity: 1;
|
|
1349
|
-
}
|
|
1350
|
-
|
|
1351
|
-
@media (max-width: 440px) {
|
|
1352
|
-
> :last-child {
|
|
1353
|
-
display: none;
|
|
1354
|
-
}
|
|
1355
|
-
}
|
|
1356
|
-
`;import T1 from"styled-components";import{jsx as Fs,jsxs as _1}from"react/jsx-runtime";var Gr=()=>{let{navigate:e}=b();return _1(A1,{children:[Fs("span",{children:"Don\u2019t have a wallet? "}),Fs("button",{onClick:()=>{e("WALLET_EDUCATION")},children:"Create one now."})]})},A1=T1.div`
|
|
1357
|
-
font-size: 13px;
|
|
1358
|
-
color: var(--privy-color-foreground-3);
|
|
1359
|
-
|
|
1360
|
-
> button {
|
|
1361
|
-
text-decoration: underline;
|
|
1362
|
-
}
|
|
1363
|
-
|
|
1364
|
-
@media (max-width: 440px) {
|
|
1365
|
-
margin-top: 4px;
|
|
1366
|
-
}
|
|
1367
|
-
`;import{Fragment as oi,jsx as Y,jsxs as xt}from"react/jsx-runtime";var Vs=()=>{let{app:e}=b(),t=(e==null?void 0:e.loginMethods.email)??!1,o=(e==null?void 0:e.loginMethods.sms)??!1,r=(e==null?void 0:e.loginMethods.wallet)??!1,n=(e==null?void 0:e.loginMethods.google)??!1,i=(e==null?void 0:e.loginMethods.twitter)??!1,a=(e==null?void 0:e.loginMethods.discord)??!1,s=(e==null?void 0:e.loginMethods.github)??!1,l=(e==null?void 0:e.loginMethods.apple)??!1,d=r&&(e==null?void 0:e.appearance.showWalletLoginFirst)?0:1,[f,m]=S1(d),v=f==0,y=f==1,h=r,u=t||o,g=h!==u;return xt(oi,{children:[Y(E,{},"header"),e!=null&&e.appearance.logo?Y(L1,{hasOnlyOneSection:g,hasTerms:!!((e==null?void 0:e.legal.privacyPolicyUrl)||(e==null?void 0:e.legal.termsAndConditionsUrl)),children:Y(Rs,{})}):null,xt(M1,{reverse:!(e!=null&&e.appearance.showWalletLoginFirst),children:[h&&Y(k1,{active:v||g,onClick:()=>m(0),isOnlySection:!u}),u&&Y(R1,{active:y||g,onClick:()=>m(1),email:t,sms:o,google:n,twitter:i,discord:a,github:s,apple:l,isOnlySection:!h})]}),e&&Y(Ra,{app:e}),Y(O,{protectedByPrivy:!0})]})};function k1(e){return xt(qs,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,children:[Y(zs,{active:e.active,children:Y("h4",{children:"Connect Wallet"})}),e.active&&xt(oi,{children:[Y(Fr,{}),Y(Gr,{})]})]})}function R1(e){let t=e.google||e.discord||e.github||e.twitter&&!Gs||e.apple,o=e.email?"Email":"Phone";return xt(qs,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,children:[e.isOnlySection?null:Y(zs,{active:e.active,children:Y("h4",{children:t?`${o} & Social`:o})}),e.active&&e.email&&Y(Sr,{}),e.active&&e.sms&&!e.email&&Y(Wr,{}),e.active&&t&&Y(W1,{google:e.google,twitter:e.twitter&&!Gs,discord:e.discord,github:e.github,apple:e.apple})]})}function W1(e){return xt(oi,{children:[xt(I1,{children:[Y(Hs,{}),Y("p",{children:" Or "}),Y(Hs,{})]}),Y(Os,{showGoogle:e.google,showDiscord:e.discord,showGithub:e.github,showTwitter:e.twitter,showApple:e.apple})]})}var zs=Qt.div`
|
|
1418
|
+
`;import{Fragment as mi,jsx as Y,jsxs as It}from"react/jsx-runtime";var Xs=()=>{let{app:e}=y(),t=(e==null?void 0:e.loginMethods.email)??!1,o=(e==null?void 0:e.loginMethods.sms)??!1,r=(e==null?void 0:e.loginMethods.wallet)??!1,n=(e==null?void 0:e.loginMethods.google)??!1,i=(e==null?void 0:e.loginMethods.twitter)??!1,a=(e==null?void 0:e.loginMethods.discord)??!1,l=(e==null?void 0:e.loginMethods.github)??!1,s=(e==null?void 0:e.loginMethods.apple)??!1,p=r&&(e==null?void 0:e.appearance.showWalletLoginFirst)?0:1,[g,f]=Hu(p),u=g==0,w=g==1,v=r,m=t||o,h=v!==m;return It(mi,{children:[Y(C,{},"header"),e!=null&&e.appearance.logo?Y(ju,{hasOnlyOneSection:h,hasTerms:!!((e==null?void 0:e.legal.privacyPolicyUrl)||(e==null?void 0:e.legal.termsAndConditionsUrl)),children:Y(_r,{})}):null,It(Ku,{reverse:!(e!=null&&e.appearance.showWalletLoginFirst),children:[v&&Y(Vu,{active:u||h,connectOnly:!1,onClick:()=>f(0),isOnlySection:!m}),m&&Y(zu,{active:w||h,onClick:()=>f(1),email:t,sms:o,google:n,twitter:i,discord:a,github:l,apple:s,isOnlySection:!v})]}),e&&Y(Cr,{app:e}),Y(M,{protectedByPrivy:!0})]})};function Vu(e){return It(tl,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,children:[Y(el,{active:e.active,children:Y("h4",{children:"Connect Wallet"})}),e.active&&It(mi,{children:[Y(ht,{connectOnly:e.connectOnly}),Y(ft,{})]})]})}function zu(e){let t=e.google||e.discord||e.github||e.twitter&&!Qs||e.apple,o=e.email?"Email":"Phone";return It(tl,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,children:[e.isOnlySection?null:Y(el,{active:e.active,children:Y("h4",{children:t?`${o} & Social`:o})}),e.active&&e.email&&Y(zr,{}),e.active&&e.sms&&!e.email&&Y(jr,{}),e.active&&t&&Y(qu,{google:e.google,twitter:e.twitter&&!Qs,discord:e.discord,github:e.github,apple:e.apple})]})}function qu(e){return It(mi,{children:[It($u,{children:[Y(Js,{}),Y("p",{children:" Or "}),Y(Js,{})]}),Y(Zs,{showGoogle:e.google,showDiscord:e.discord,showGithub:e.github,showTwitter:e.twitter,showApple:e.apple})]})}var el=ao.div`
|
|
1368
1419
|
font-weight: ${e=>e.active?600:500};
|
|
1369
1420
|
color: ${e=>e.active?"var(--privy-color-foreground)":"var(--privy-color-foreground-2)"};
|
|
1370
1421
|
display: flex;
|
|
1371
1422
|
justify-content: center;
|
|
1372
1423
|
align-items: center;
|
|
1373
|
-
`,
|
|
1424
|
+
`,tl=ao.div`
|
|
1374
1425
|
display: flex;
|
|
1375
1426
|
flex-direction: column;
|
|
1376
1427
|
align-items: flex-start;
|
|
@@ -1395,7 +1446,7 @@ Resources:
|
|
|
1395
1446
|
}
|
|
1396
1447
|
|
|
1397
1448
|
cursor: ${e=>e.active?"inherit":"pointer"};
|
|
1398
|
-
|
|
1449
|
+
`,$u=ao.div`
|
|
1399
1450
|
display: flex;
|
|
1400
1451
|
justify-content: center;
|
|
1401
1452
|
align-items: center;
|
|
@@ -1404,13 +1455,13 @@ Resources:
|
|
|
1404
1455
|
&& > p {
|
|
1405
1456
|
color: var(--privy-color-foreground-3);
|
|
1406
1457
|
}
|
|
1407
|
-
`,
|
|
1458
|
+
`,Js=ao.hr`
|
|
1408
1459
|
width: 50%;
|
|
1409
1460
|
&& {
|
|
1410
1461
|
border-top: 1px solid var(--privy-color-background-2);
|
|
1411
1462
|
margin: 0px 8px;
|
|
1412
1463
|
}
|
|
1413
|
-
`,
|
|
1464
|
+
`,ju=ao.div`
|
|
1414
1465
|
display: flex;
|
|
1415
1466
|
flex-direction: column;
|
|
1416
1467
|
align-items: center;
|
|
@@ -1421,9 +1472,9 @@ Resources:
|
|
|
1421
1472
|
@media (max-width: 440px) {
|
|
1422
1473
|
padding: 10px 10px 20px;
|
|
1423
1474
|
}
|
|
1424
|
-
`,
|
|
1475
|
+
`,Ku=ao(le)`
|
|
1425
1476
|
flex-direction: ${e=>e.reverse?"column-reverse":"column"};
|
|
1426
|
-
`;import{Fragment as
|
|
1477
|
+
`;import{Fragment as Yu,jsx as so,jsxs as Zu}from"react/jsx-runtime";var ol=()=>{let{app:e}=y();return Zu(Yu,{children:[so(C,{},"header"),so(mt,{title:"Connect your email",description:`Add your email to your ${e==null?void 0:e.name} account`,icon:so(Hr,{})}),so(le,{children:so(zr,{stacked:!0})}),so(M,{protectedByPrivy:!0})]})};import{Fragment as Qu,jsx as lo,jsxs as Ju}from"react/jsx-runtime";var rl=()=>{let{app:e}=y();return Ju(Qu,{children:[lo(C,{},"header"),lo(mt,{title:"Connect your phone",description:`Add your number to your ${e==null?void 0:e.name} account`,icon:lo(qr,{})}),lo(le,{children:lo(jr,{stacked:!0})}),lo(M,{protectedByPrivy:!0})]})};import{Fragment as Xu,jsx as Uo,jsxs as nl}from"react/jsx-runtime";var il=()=>{let{linkingHint:e}=S(),{app:t}=y(),o=e?`Select the wallet with ${ct(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 nl(Xu,{children:[Uo(C,{},"header"),Uo(He,{title:`${e?"Reconnect":"Connect"} your wallet`,description:o}),nl(le,{children:[Uo(ht,{connectOnly:!1}),Uo(ft,{})]}),Uo(M,{protectedByPrivy:!0})]})};import{jsx as al,jsxs as e1}from"react/jsx-runtime";var sl=({style:e,...t})=>e1("svg",{width:"164",height:"164",viewBox:"0 0 164 164",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"26px",width:"26px",...e},...t,children:[al("circle",{cx:"82",cy:"82",r:"80",stroke:"#EC6351","stroke-width":"4","stroke-linecap":"round"}),al("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M81.9999 100.788C93.3288 100.788 102.513 91.6043 102.513 80.2754C102.513 68.9465 93.3288 59.7626 81.9999 59.7626C70.671 59.7626 61.4871 68.9465 61.4871 80.2754C61.4871 91.6043 70.671 100.788 81.9999 100.788ZM88.3236 71.8304C88.9093 71.2446 89.8591 71.2446 90.4449 71.8304C91.0307 72.4161 91.0307 73.3659 90.4449 73.9517L84.121 80.2756L90.445 86.5996C91.0308 87.1854 91.0308 88.1351 90.445 88.7209C89.8592 89.3067 88.9095 89.3067 88.3237 88.7209L81.9997 82.3969L75.6756 88.7209C75.0899 89.3067 74.1401 89.3067 73.5543 88.7209C72.9685 88.1351 72.9685 87.1854 73.5543 86.5996L79.8783 80.2756L73.5544 73.9517C72.9686 73.3659 72.9686 72.4161 73.5544 71.8304C74.1402 71.2446 75.09 71.2446 75.6758 71.8304L81.9997 78.1543L88.3236 71.8304Z",fill:"#EC6351"})]});import{Fragment as t1,jsx as co,jsxs as ll}from"react/jsx-runtime";var cl=()=>{let{closePrivyModal:e}=S(),{navigate:t}=y();return ll(t1,{children:[co(C,{},"header"),co(sl,{style:{width:"160px",height:"160px",margin:"0 auto 20px"}}),co(He,{title:"Could not connect with wallet",description:"Please check that Phantom multichain is enabled and try again.",style:{display:"flex",flexDirection:"column",alignItems:"center",justifyContent:"center",textAlign:"center"}}),ll(le,{children:[co(j,{onClick:()=>t("LANDING"),children:"Try again"}),co(Ta,{onClick:()=>e(),children:"Cancel"})]}),co(M,{protectedByPrivy:!0})]})};import{useEffect as dl,useState as pl}from"react";import fi from"styled-components";import{Fragment as a1,jsx as Nt,jsxs as en}from"react/jsx-runtime";var ul={google:{name:"Google",component:Jr},discord:{name:"Discord",component:Yr},github:{name:"Github",component:Zr},twitter:{name:"Twitter",component:Xr},apple:{name:"Apple",component:Kr}},o1=e=>e.charAt(0).toUpperCase()+e.slice(1),hi=()=>{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)},ml=()=>{var I;let{ready:e,user:t,authenticated:o}=D(),{app:r,data:n,setModalData:i,navigate:a}=y(),{getAuthMeta:l,initLoginWithOAuth:s,loginWithOAuth:p,closePrivyModal:g}=S(),[f,u]=pl(!1),[w,v]=pl(void 0),m=((I=l())==null?void 0:I.provider)||"google",h=ul[m].name,N=ul[m].component,x=r!=null&&r.render.inDialog?De:0;dl(()=>{!e||p().then(()=>{hi(),u(!0)}).catch(O=>{let W={retryable:!1,message:"Authentication failed."};O.message.includes("Another user has already linked this")?W.detail="This account has already been linked to another user.":O.message==="Invalid code during oauth flow."?(W.retryable=!0,W.detail="Something went wrong. Try again."):O.message==="User denied confirmation during OAuth flow"&&(W.detail=`Retry and check ${o1(m)} to finish connecting your account.`,W.retryable=!0),hi(),v(W)})},[e]),dl(()=>{var pe;if(!(o&&f&&t))return;if(((pe=n==null?void 0:n.login)==null?void 0:pe.promptCreatePrivyWalletFlow)&&!t.wallet){let G=setTimeout(()=>{i({createWallet:{onSuccess:()=>{},onFailure:ie=>console.error(ie),callAuthOnSuccessOnClose:!0}}),console.log("Navigating to wallet creation flow"),a("EMBEDDED_WALLET_SCREEN")},x);return()=>clearTimeout(G)}else{let G=setTimeout(g,x);return()=>clearTimeout(G)}},[o,f,t]);let R=f?`Successfully connected with ${h}`:w?w.message:`Verifying connection to ${h}`,_="";return f?_="You\u2019re good to go!":w?_=w.detail:_="Just a few moments more",en(a1,{children:[Nt(C,{}),en(r1,{children:[Nt(i1,{children:en("div",{children:[Nt(yr,{success:f,fail:!!w}),Nt(N,{style:{width:"38px",height:"38px"}})]})}),en(n1,{children:[Nt("h3",{children:R}),Nt("p",{children:_})]}),Nt(ne,{onClick:()=>{hi(),s(m),v(void 0)},invisible:f||!(w!=null&&w.retryable),disabled:!f&&!(w!=null&&w.retryable),children:"Retry"})]})]})},r1=fi.div`
|
|
1427
1478
|
display: flex;
|
|
1428
1479
|
flex-direction: column;
|
|
1429
1480
|
align-items: center;
|
|
@@ -1431,11 +1482,11 @@ Resources:
|
|
|
1431
1482
|
margin-left: 27px;
|
|
1432
1483
|
margin-right: 27px;
|
|
1433
1484
|
gap: 24px;
|
|
1434
|
-
`,
|
|
1485
|
+
`,n1=fi.div`
|
|
1435
1486
|
display: flex;
|
|
1436
1487
|
flex-direction: column;
|
|
1437
1488
|
gap: 8px;
|
|
1438
|
-
`,
|
|
1489
|
+
`,i1=fi.div`
|
|
1439
1490
|
display: flex;
|
|
1440
1491
|
flex-direction: column;
|
|
1441
1492
|
justify-content: center;
|
|
@@ -1458,9 +1509,9 @@ Resources:
|
|
|
1458
1509
|
left: -19px;
|
|
1459
1510
|
top: -19px;
|
|
1460
1511
|
}
|
|
1461
|
-
`;import{useEffect as
|
|
1512
|
+
`;import{useEffect as l1,useState as fl}from"react";import c1 from"styled-components";import{isMobile as s1}from"react-device-detect";var hl=(e,t)=>{let o=new URL(window.location.href),r=encodeURIComponent(o.href.replace(/\/$/g,"")+`?privy_token=${e}&privy_connector=injected&privy_wallet_client=phantom`);if(!Ue()&&s1)return`${t?"phantom://":"https://phantom.app/ul/"}browse/${r}?ref=${r}`};import{Fragment as p1,jsx as Lt,jsxs as gl}from"react/jsx-runtime";var yl=()=>{let{forkSession:e,ready:t,authenticated:o}=D(),[r,n]=fl(""),[i,a]=fl(!1);l1(()=>{t&&o&&e().then(n)},[t,o]);let l=hl(r,!i),s={title:"Redirecting to Phantom Mobile Wallet",description:"We'll take you to the Phantom Mobile Wallet app to continue your login experience.",footnote:""};return t&&(s.description="For the best experience, we'll automatically log you into the Phantom Mobile Wallet in-app browser.",s.footnote="Once you're done, you can always return here and refresh to view your updated account."),i&&(s.title="Still here?",s.description="You may need to install the Phantom mobile app.",s.footnote="Once you're done, you can return here or connect via Phantom's in-app browser."),gl(p1,{children:[Lt(C,{},"header"),Lt(He,{title:s.title,description:s.description}),gl(le,{children:[Lt(d1,{children:Lt(Be,{style:{width:"72px",height:"72px"}})}),Lt(vr,{href:l,onClick:()=>{setTimeout(()=>a(!0),1e3)},loading:t&&!l,children:i?"Go to App Store":"Continue"}),s.footnote?Lt("p",{children:s.footnote}):null]}),Lt(M,{protectedByPrivy:!0})]})},d1=c1(jt)`
|
|
1462
1513
|
margin: 16px auto;
|
|
1463
|
-
`;import{useEffect as
|
|
1514
|
+
`;import{useEffect as Xl,useState as jo}from"react";import mo from"styled-components";import Ol from"styled-components";import wl from"styled-components";import{jsx as vl,jsxs as h1}from"react/jsx-runtime";var Bo=({label:e,children:t,valueStyles:o})=>h1(u1,{children:[vl("div",{children:e}),vl(m1,{style:{...o},children:t})]}),u1=wl.div`
|
|
1464
1515
|
display: flex;
|
|
1465
1516
|
align-items: center;
|
|
1466
1517
|
justify-content: space-between;
|
|
@@ -1475,27 +1526,27 @@ Resources:
|
|
|
1475
1526
|
color: var(--privy-color-foreground-2);
|
|
1476
1527
|
text-align: right;
|
|
1477
1528
|
}
|
|
1478
|
-
`,
|
|
1529
|
+
`,m1=wl.div`
|
|
1479
1530
|
display: flex;
|
|
1480
1531
|
align-items: center;
|
|
1481
1532
|
justify-content: center;
|
|
1482
1533
|
border-radius: var(--privy-border-radius-md);
|
|
1483
1534
|
background-color: var(--privy-color-background-2);
|
|
1484
1535
|
padding: 4px 8px;
|
|
1485
|
-
`;import{BigNumber as
|
|
1536
|
+
`;import{BigNumber as v1}from"@ethersproject/bignumber";import{BigNumber as f1}from"@ethersproject/bignumber";import{isHexString as g1}from"@ethersproject/bytes";import{getNetwork as y1}from"@ethersproject/providers";import{formatEther as bl}from"@ethersproject/units";var tn=(e,t)=>(t*parseFloat(bl(e))).toFixed(2),Mt=(e,t=8)=>parseFloat(bl(e)).toFixed(t).replace(/0+$/,"").replace(/\.$/,""),Cl=(e,t)=>{g1(e)&&(e=Number(e));let o=y1(e);return`https://${o.name==="homestead"?"www":o.name}.etherscan.io/address/${t}`},xe=e=>f1.from(e);import{Fragment as w1,jsx as b1}from"react/jsx-runtime";var Fo=({weiQuantities:e,tokenPrice:t})=>{let o=e.map(xe).reduce((n,i)=>n.add(i),v1.from(0)),r=tn(o.toHexString(),t);return b1(w1,{children:r==="0.00"?"< USD $0.01":`USD $${r}`})};import po from"styled-components";import{jsx as Ie,jsxs as Go}from"react/jsx-runtime";var _l=({transactionData:e,displayFee:t=!1,gas:o,tokenPrice:r,isLoading:n=!1})=>Go(C1,{children:[Ie(x1,{"data-open":t,children:Go(xl,{children:[Go(El,{children:[Ie(Pl,{children:"Est. Fees"}),Ie("div",{children:n?Ie(Re,{color:"var(--privy-color-accent)"}):Ie(Fo,{weiQuantities:[o],tokenPrice:r})})]}),Ie(Tl,{children:`ETH ${Mt(xe(o).toHexString())}`})]})}),Go(xl,{children:[Go(El,{children:[Ie(Pl,{children:"Total (including fees)"}),Ie("div",{children:n||!e.value?Ie(Re,{color:"var(--privy-color-accent)"}):Ie(Fo,{weiQuantities:[e.value,o],tokenPrice:r})})]}),Ie(Tl,{children:e.value?`ETH ${Mt(xe(e.value).add(xe(o)).toHexString())}`:null})]})]}),C1=po.div`
|
|
1486
1537
|
display: flex;
|
|
1487
1538
|
flex-direction: column;
|
|
1488
1539
|
gap: 4px;
|
|
1489
|
-
`,
|
|
1540
|
+
`,xl=po.div`
|
|
1490
1541
|
display: flex;
|
|
1491
1542
|
flex-direction: column;
|
|
1492
1543
|
gap: 2px;
|
|
1493
|
-
`,
|
|
1544
|
+
`,El=po.div`
|
|
1494
1545
|
display: flex;
|
|
1495
1546
|
flex-direction: row;
|
|
1496
1547
|
justify-content: space-between;
|
|
1497
1548
|
align-items: center;
|
|
1498
|
-
`,
|
|
1549
|
+
`,Tl=po.div`
|
|
1499
1550
|
display: flex;
|
|
1500
1551
|
flex-direction: row-reverse;
|
|
1501
1552
|
height: 12px;
|
|
@@ -1504,11 +1555,11 @@ Resources:
|
|
|
1504
1555
|
line-height: 12px;
|
|
1505
1556
|
color: var(--privy-color-foreground-3);
|
|
1506
1557
|
font-weight: 400;
|
|
1507
|
-
`,
|
|
1558
|
+
`,Pl=po.div`
|
|
1508
1559
|
font-size: 14px;
|
|
1509
1560
|
line-height: 22.4px;
|
|
1510
1561
|
font-weight: 400;
|
|
1511
|
-
`,
|
|
1562
|
+
`,x1=po.div`
|
|
1512
1563
|
position: relative;
|
|
1513
1564
|
overflow: hidden;
|
|
1514
1565
|
transition: max-height 0.35s ease-in-out;
|
|
@@ -1520,12 +1571,12 @@ Resources:
|
|
|
1520
1571
|
&[data-open='false'] {
|
|
1521
1572
|
max-height: 0;
|
|
1522
1573
|
}
|
|
1523
|
-
`;import{useContext as
|
|
1574
|
+
`;import{useContext as Ot,useState as E1}from"react";import Dt from"styled-components";import{jsx as Al}from"react/jsx-runtime";var Sl=({style:e,...t})=>Al("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:Al("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M19.5 8.25l-7.5 7.5-7.5-7.5"})});import{createContext as kl,useContext as k7}from"react";var uo=kl(void 0);var Ho=kl(void 0);import{jsx as Ke,jsxs as R1}from"react/jsx-runtime";var Rl=({defaultValue:e,children:t})=>{let[o,r]=E1(e||null),n=i=>{r(o===i?null:i)};return Ke(uo.Provider,{value:{activePanel:o,togglePanel:n},children:Ke(T1,{children:t})})},Wl=({value:e,children:t})=>{let{activePanel:o,togglePanel:r}=Ot(uo),n=o===e;return Ke(Ho.Provider,{value:{onToggle:()=>r(e),value:e},children:Ke(A1,{isActive:n,"data-open":n,children:t})})},Il=({children:e})=>{let{activePanel:t}=Ot(uo),{onToggle:o,value:r}=Ot(Ho),n=t===r;return R1(P1,{onClick:o,"data-open":n,children:[Ke(_1,{children:e}),Ke(k1,{isactive:n,children:Ke(Sl,{})})]})},Nl=({children:e})=>{let{activePanel:t}=Ot(uo),{value:o}=Ot(Ho);return Ke(S1,{"data-open":t===o,children:Ke(Ml,{children:e})})},Ll=({children:e})=>{let{activePanel:t}=Ot(uo),{value:o}=Ot(Ho);return Ke(Ml,{children:typeof e=="function"?e({isActive:t===o}):e})},T1=Dt.div`
|
|
1524
1575
|
display: flex;
|
|
1525
1576
|
flex-direction: column;
|
|
1526
1577
|
width: 100%;
|
|
1527
1578
|
gap: 8px;
|
|
1528
|
-
`,
|
|
1579
|
+
`,P1=Dt.div`
|
|
1529
1580
|
display: flex;
|
|
1530
1581
|
justify-content: space-between;
|
|
1531
1582
|
align-items: center;
|
|
@@ -1537,13 +1588,13 @@ Resources:
|
|
|
1537
1588
|
border-bottom: 1px solid;
|
|
1538
1589
|
border-color: var(--privy-color-foreground-4);
|
|
1539
1590
|
}
|
|
1540
|
-
`,
|
|
1591
|
+
`,_1=Dt.div`
|
|
1541
1592
|
font-size: 14px;
|
|
1542
1593
|
font-weight: 500;
|
|
1543
1594
|
line-height: 19.6px;
|
|
1544
1595
|
width: 100%;
|
|
1545
1596
|
padding-right: 8px;
|
|
1546
|
-
`,
|
|
1597
|
+
`,A1=Dt.div`
|
|
1547
1598
|
display: flex;
|
|
1548
1599
|
flex-direction: column;
|
|
1549
1600
|
width: 100%;
|
|
@@ -1555,7 +1606,7 @@ Resources:
|
|
|
1555
1606
|
border-color: var(--privy-color-foreground-4);
|
|
1556
1607
|
border-radius: var(--privy-border-radius-md);
|
|
1557
1608
|
}
|
|
1558
|
-
`,
|
|
1609
|
+
`,S1=Dt.div`
|
|
1559
1610
|
position: relative;
|
|
1560
1611
|
overflow: hidden;
|
|
1561
1612
|
transition: max-height 0.35s ease-in-out;
|
|
@@ -1567,37 +1618,37 @@ Resources:
|
|
|
1567
1618
|
&[data-open='false'] {
|
|
1568
1619
|
max-height: 0;
|
|
1569
1620
|
}
|
|
1570
|
-
`,
|
|
1621
|
+
`,Ml=Dt.div`
|
|
1571
1622
|
display: flex;
|
|
1572
1623
|
flex-direction: column;
|
|
1573
1624
|
gap: 12px;
|
|
1574
1625
|
flex: 1 1 auto;
|
|
1575
1626
|
min-height: 1px;
|
|
1576
1627
|
padding-top: 8px;
|
|
1577
|
-
`,
|
|
1628
|
+
`,k1=Dt.div`
|
|
1578
1629
|
transform: ${e=>e.isactive?"rotate(180deg)":"rotate(0deg)"};
|
|
1579
|
-
`;import
|
|
1630
|
+
`;import W1 from"styled-components";import{jsx as N1}from"react/jsx-runtime";var gi=({walletAddress:e,chainId:t=Pe})=>N1(I1,{href:Cl(t,e),target:"_blank",children:ct(e)}),I1=W1.a`
|
|
1580
1631
|
&:hover {
|
|
1581
1632
|
text-decoration: underline;
|
|
1582
1633
|
}
|
|
1583
|
-
`;import{Fragment as
|
|
1634
|
+
`;import{Fragment as O1,jsx as ye,jsxs as yi}from"react/jsx-runtime";var on=e=>{var o,r,n;let t=!!((o=e.txn)!=null&&o.value);return ye(Rl,{children:yi(Wl,{value:"details",children:[ye(Il,{children:yi(L1,{children:[ye("div",{children:((r=e.transactionInfo)==null?void 0:r.actionDescription)||"Details"}),((n=e.txn)==null?void 0:n.value)&&e.tokenPrice?ye(M1,{children:ye(Fo,{weiQuantities:[e.txn.value],tokenPrice:e.tokenPrice})}):null]})}),yi(Nl,{children:[ye(Bo,{label:"From",children:ye(gi,{walletAddress:e.from,chainId:e.txn.chainId||Pe})}),ye(Bo,{label:"To",children:ye(gi,{walletAddress:e.to,chainId:e.txn.chainId||Pe})}),t&&e.transactionInfo&&e.transactionInfo.action&&ye(Bo,{label:"Action",children:e.transactionInfo.action})]}),ye(Ll,{children:({isActive:i})=>t?ye(_l,{transactionData:e.txn,displayFee:i,gas:e.gas,tokenPrice:e.tokenPrice}):ye(O1,{children:e.transactionInfo&&e.transactionInfo.action&&ye(Bo,{label:"Action",children:e.transactionInfo.action})})})]})})},L1=Ol.div`
|
|
1584
1635
|
display: flex;
|
|
1585
1636
|
flex-direction: row;
|
|
1586
1637
|
justify-content: space-between;
|
|
1587
|
-
`,
|
|
1638
|
+
`,M1=Ol.div`
|
|
1588
1639
|
flex-shrink: 0;
|
|
1589
1640
|
padding-left: 8px;
|
|
1590
|
-
`;import
|
|
1641
|
+
`;import zo from"styled-components";import{jsx as Vo,jsxs as H1}from"react/jsx-runtime";var Dl=({partyInfo:e})=>H1(D1,{children:[e.imgUrl&&Vo(U1,{size:e.imgSize||"sm",src:e.imgUrl,alt:e.imgAltText||`${e.name} image`}),Vo(B1,{children:Vo("a",{href:e.url,target:"_blank",rel:"noopener noreferrer",children:e.url.replace(/^(https?:\/\/)(www\.)?/,"")})}),Vo(F1,{children:e.name}),Vo(G1,{children:e.actionText})]}),D1=zo.div`
|
|
1591
1642
|
display: flex;
|
|
1592
1643
|
flex-direction: column;
|
|
1593
1644
|
align-items: center;
|
|
1594
1645
|
margin-bottom: 20px;
|
|
1595
|
-
`,
|
|
1646
|
+
`,U1=zo.img`
|
|
1596
1647
|
height: ${e=>e.size==="sm"?"65px":"140px"};
|
|
1597
1648
|
width: ${e=>e.size==="sm"?"65px":"140px"};
|
|
1598
1649
|
border-radius: 16px;
|
|
1599
1650
|
margin-bottom: 20px;
|
|
1600
|
-
`,
|
|
1651
|
+
`,B1=zo.div`
|
|
1601
1652
|
margin-bottom: 8px;
|
|
1602
1653
|
> a {
|
|
1603
1654
|
font-size: 12px;
|
|
@@ -1609,7 +1660,7 @@ Resources:
|
|
|
1609
1660
|
text-decoration: underline;
|
|
1610
1661
|
}
|
|
1611
1662
|
}
|
|
1612
|
-
`,
|
|
1663
|
+
`,F1=zo.div`
|
|
1613
1664
|
font-size: 18px;
|
|
1614
1665
|
line-height: 18px;
|
|
1615
1666
|
font-weight: 500;
|
|
@@ -1617,7 +1668,7 @@ Resources:
|
|
|
1617
1668
|
white-space: nowrap;
|
|
1618
1669
|
max-width: 275px;
|
|
1619
1670
|
text-overflow: ellipsis;
|
|
1620
|
-
`,
|
|
1671
|
+
`,G1=zo.div`
|
|
1621
1672
|
font-size: 16px;
|
|
1622
1673
|
line-height: 22.4px;
|
|
1623
1674
|
font-weight: 500;
|
|
@@ -1626,7 +1677,7 @@ Resources:
|
|
|
1626
1677
|
white-space: nowrap;
|
|
1627
1678
|
max-width: 275px;
|
|
1628
1679
|
text-overflow: ellipsis;
|
|
1629
|
-
`;import{useState as
|
|
1680
|
+
`;import{useState as ql,useEffect as j1}from"react";import bi from"styled-components";import{EtherscanProvider as r9,InfuraProvider as vi}from"@ethersproject/providers";async function Ul(e,t,o,r){return r=Object.assign({chainId:Pe},r),r.chainId=Number(r.chainId),Hl(r),(await o.rpc({address:t,accessToken:e,request:{method:"eth_populateTransactionRequest",params:[r]}})).response.data}async function Bl(e,t,o,r){r=Object.assign({chainId:Pe},r),Hl(r);let i=(await o.rpc({address:t,accessToken:e,request:{method:"eth_signTransaction",params:[r]}})).response.data,l=await(await V1(r.chainId,i)).wait();return $1(l)}function V1(e,t){return new vi(e,Oe).sendTransaction(t)}async function Fl(e,t=Pe){return await new vi(t,Oe).getBalance(e)}async function Gl(e){return delete e.from,await new vi(Number(e.chainId)||Pe,Oe).estimateGas(e)}function Hl(e){let t=["gasLimit","gasPrice","value","maxPriorityFeePerGas","maxFeePerGas"];for(let o of t){let r=e[o];if(!(typeof r>"u")&&!z1(r))throw new Error(`Transaction request property '${o}' must be a valid number, bigint, or hex string representing a quantity`)}if(typeof e.chainId!="number")throw new Error("Transaction request property 'chainId' must be a number")}function z1(e){let t=typeof e=="number",o=typeof e=="bigint",r=typeof e=="string"&&q1(e);return t||o||r}function q1(e){return/^-?0x[a-f0-9]+$/i.test(e)}function $1(e){return{to:e.to,from:e.from,contractAddress:e.contractAddress,transactionIndex:e.transactionIndex,root:e.root,logsBloom:e.logsBloom,blockHash:e.blockHash,transactionHash:e.transactionHash,logs:e.logs,blockNumber:e.blockNumber,confirmations:e.confirmations,byzantium:e.byzantium,type:e.type,status:e.status,gasUsed:e.gasUsed.toHexString(),cumulativeGasUsed:e.cumulativeGasUsed.toHexString(),effectiveGasPrice:e.effectiveGasPrice.toHexString()}}import{jsx as Vl}from"react/jsx-runtime";var zl=({style:e,...t})=>Vl("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:Vl("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M21 12a2.25 2.25 0 00-2.25-2.25H15a3 3 0 11-6 0H5.25A2.25 2.25 0 003 12m18 0v6a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 18v-6m18 0V9M3 12V9m18 0a2.25 2.25 0 00-2.25-2.25H5.25A2.25 2.25 0 003 9m18 0V6a2.25 2.25 0 00-2.25-2.25H5.25A2.25 2.25 0 003 6v3"})});import{jsx as $l,jsxs as wi}from"react/jsx-runtime";var jl=({wallet:e,txnValue:t,chainId:o})=>{let[r,n]=ql(),[i,a]=ql(!1);return j1(()=>{(async s=>{try{let p=await Fl(s,o);t&&p.sub(xe(t)).isNegative()&&a(!0),n(p.toHexString())}catch(p){console.log(p)}})(e.address)},[e,t]),wi(K1,{children:[wi(Y1,{children:[$l(zl,{style:{height:"12px",width:"12px"}}),$l("div",{children:ct(e==null?void 0:e.address)})]}),wi(Z1,{displayBalanceColor:!!t,hasFunds:!i,children:[r?Mt(r):0," ETH"]})]})},K1=bi.div`
|
|
1630
1681
|
display: flex;
|
|
1631
1682
|
flex-direction: row;
|
|
1632
1683
|
justify-content: space-between;
|
|
@@ -1638,12 +1689,12 @@ Resources:
|
|
|
1638
1689
|
border: 1px solid var(--privy-color-foreground-4);
|
|
1639
1690
|
border-radius: var(--privy-border-radius-sm);
|
|
1640
1691
|
}
|
|
1641
|
-
`,
|
|
1692
|
+
`,Y1=bi.div`
|
|
1642
1693
|
display: flex;
|
|
1643
1694
|
flex-direction: row;
|
|
1644
1695
|
align-items: center;
|
|
1645
1696
|
gap: 8px;
|
|
1646
|
-
`,
|
|
1697
|
+
`,Z1=bi.div`
|
|
1647
1698
|
display: flex;
|
|
1648
1699
|
align-items: center;
|
|
1649
1700
|
justify-content: center;
|
|
@@ -1651,25 +1702,25 @@ Resources:
|
|
|
1651
1702
|
background-color: var(--privy-color-background-2);
|
|
1652
1703
|
padding: 4px 12px;
|
|
1653
1704
|
color: ${e=>e.displayBalanceColor?e.hasFunds?"green":"red":"inherit"};
|
|
1654
|
-
`;import
|
|
1705
|
+
`;import nn from"styled-components";import{useState as qo,useEffect as Kl}from"react";var rn=e=>{let{getUsdTokenPrice:t}=S(),[o,r]=qo(!1),[n,i]=qo(!1),[a,l]=qo(void 0),[s,p]=qo(void 0),[g,f]=qo(null);return Kl(()=>{let u=e.chainId||Pe;(async()=>{try{r(!0);let v=await t(u);p(v)}catch(v){l(v)}finally{r(!1)}})()},[]),Kl(()=>{(async()=>{try{i(!0);let w=await Gl(e);f(w.toBigInt())}catch(w){l(w)}finally{i(!1)}})()},[e]),{tokenPrice:s,estimatedGas:g,isLoading:o||n,error:a}};import{jsx as tm,jsxs as Ci}from"react/jsx-runtime";var Yl=e=>{var o,r;let{tokenPrice:t}=rn(e.txn);return Ci(Q1,{children:[Ci(J1,{children:["$",((o=e.txn)==null?void 0:o.value)&&t?tn(xe(e.txn.value).toHexString(),t):"--"]}),Ci(X1,{children:[(r=e.txn)!=null&&r.value?Mt(xe(e.txn.value).toHexString()):"--"," ","ETH"]}),tm(em,{children:e.description})]})},Q1=nn.div`
|
|
1655
1706
|
display: flex;
|
|
1656
1707
|
flex-direction: column;
|
|
1657
1708
|
align-items: center;
|
|
1658
1709
|
margin-bottom: 20px;
|
|
1659
|
-
`,
|
|
1710
|
+
`,J1=nn.h2`
|
|
1660
1711
|
&& {
|
|
1661
1712
|
font-size: 48px;
|
|
1662
1713
|
line-height: 48px;
|
|
1663
1714
|
margin: 8px auto;
|
|
1664
1715
|
}
|
|
1665
|
-
`,
|
|
1716
|
+
`,X1=nn.p`
|
|
1666
1717
|
margin-bottom: 12px;
|
|
1667
1718
|
&& {
|
|
1668
1719
|
font-size: 17px;
|
|
1669
1720
|
line-height: 17px;
|
|
1670
1721
|
color: var(--privy-color-foreground-3);
|
|
1671
1722
|
}
|
|
1672
|
-
`,
|
|
1723
|
+
`,em=nn.div`
|
|
1673
1724
|
font-size: 16px;
|
|
1674
1725
|
line-height: 22.4px;
|
|
1675
1726
|
font-weight: 400;
|
|
@@ -1677,64 +1728,52 @@ Resources:
|
|
|
1677
1728
|
white-space: nowrap;
|
|
1678
1729
|
max-width: 275px;
|
|
1679
1730
|
text-overflow: ellipsis;
|
|
1680
|
-
`;function
|
|
1731
|
+
`;function Zl(e){return e.to&&e.data?"CONTRACT_CALL":e.to&&e.value?"SEND_ETH":"UNKNOWN"}import Ql from"styled-components";import{Fragment as nm,jsx as $o,jsxs as xi}from"react/jsx-runtime";var Jl=({txn:e,receipt:t,transactionInfo:o,onClose:r,tokenPrice:n})=>xi(nm,{children:[$o(C,{onClose:r}),xi(om,{children:[xi("div",{children:[$o(te,{title:"Transaction complete!",description:"You're all set."}),$o(on,{tokenPrice:n,from:t.from,to:t.to,gas:t.gasUsed,txn:e,transactionInfo:o})]}),$o("div",{children:$o(rm,{loading:!1,onClick:r,children:"All Done"})})]})]}),om=Ql.div`
|
|
1681
1732
|
display: flex;
|
|
1682
1733
|
height: 100%;
|
|
1683
1734
|
flex-direction: column;
|
|
1684
1735
|
justify-content: space-between;
|
|
1685
1736
|
flex-grow: 1;
|
|
1686
|
-
`,
|
|
1737
|
+
`,rm=Ql(j)`
|
|
1687
1738
|
transition: color 350ms ease, background-color 350ms ease;
|
|
1688
|
-
`;import{Fragment as
|
|
1739
|
+
`;import{Fragment as an,jsx as ce,jsxs as Ko}from"react/jsx-runtime";var im=e=>{var t;switch(e.txnFamily){case"SEND_ETH":return ce(an,{children:ce(Yl,{description:((t=e.uiOptions.transactionInfo)==null?void 0:t.description)||"",txn:e.txn})});case"CONTRACT_CALL":return ce(an,{children:e.uiOptions.senderInfo&&ce(Dl,{partyInfo:e.uiOptions.senderInfo})});default:return ce("div",{children:"Unsupported transaction."})}},tc=()=>{let{authenticated:e,getAccessToken:t,user:o}=D(),{walletProxy:r,closePrivyModal:n}=S(),{navigate:i,data:a}=y(),{transactionRequest:l,onSuccess:s,onFailure:p,uiOptions:g}=a.sendTransaction,[f,u]=jo(null),[w,v]=jo(""),[m,h]=jo(!0),[N,x]=jo(!1),[R,_]=jo(l),{tokenPrice:I,estimatedGas:O}=rn(R);Xl(()=>{e||(i("LANDING"),p(new Error("User must be authenticated before transacting with a Privy wallet")))},[e]);let W=z(o);Xl(()=>{async function ee(){let B=await t();return!B||!r||!W?R:Ul(B,W.address,r,R)}ee().then(B=>{h(!1),_(B)},B=>{h(!0),ls(B)?v(B.message):(v("There was an error preparing transaction"),console.error(B))})},[r]);let pe=Zl(R),G={modalTitle:g.modalTitle||"Review transaction",title:g.title||pe==="SEND_ETH"?"Send ETH":"Submit transaction",description:g.description||"Confirm the details of the transaction",buttonText:g.buttonText||"Submit"},ie=()=>{N||(f?s(f):p(new Error(w||"User exited the modal before submitting the transaction")),n({shouldCallAuthOnSuccess:!1}))};return I===void 0||O===null?Ko(an,{children:[ce(C,{title:G.modalTitle,onClose:ie}),ce(ec,{children:ce(Wr,{})})]}):f!==null?ce(Jl,{txn:R,onClose:ie,receipt:f,transactionInfo:g.transactionInfo,tokenPrice:I}):Ko(an,{children:[ce(C,{title:G.modalTitle,onClose:ie}),Ko(ec,{children:[Ko(cm,{children:[ce(im,{txn:R,txnFamily:pe,uiOptions:g}),W?ce(on,{from:W.address,to:R.to,txn:R,transactionInfo:g.transactionInfo,gas:xe(O).toHexString(),tokenPrice:I}):null]}),Ko(dm,{children:[ce(am,{children:w}),W?ce(jl,{txnValue:R.value,wallet:W,chainId:Number(R.chainId)}):null,ce(sm,{children:ce(lm,{disabled:m||N,loading:!r||N,loadingText:N?"Submitting (may take a few minutes)...":"Loading...",onClick:async()=>{x(!0);let ee=await t();if(ee&&!N&&W)try{let B=await Bl(ee,W.address,r,R);u(B),v("")}catch(B){v(B.reason||"An error has occurred, please try again.")}finally{x(!1)}},children:G.buttonText})})]})]})]})},ec=mo.div`
|
|
1689
1740
|
display: flex;
|
|
1690
1741
|
height: 100%;
|
|
1691
1742
|
flex-direction: column;
|
|
1692
1743
|
justify-content: space-between;
|
|
1693
1744
|
flex-grow: 1;
|
|
1694
|
-
|
|
1745
|
+
`,am=mo.div`
|
|
1695
1746
|
line-height: 20px;
|
|
1696
1747
|
height: 20px;
|
|
1697
1748
|
font-size: 13px;
|
|
1698
1749
|
color: var(--privy-color-error);
|
|
1699
1750
|
width: 100%;
|
|
1700
1751
|
margin-top: 4px;
|
|
1701
|
-
`,
|
|
1752
|
+
`,sm=mo.div`
|
|
1702
1753
|
display: flex;
|
|
1703
1754
|
direction: row;
|
|
1704
1755
|
justify-content: space-between;
|
|
1705
1756
|
align-items: center;
|
|
1706
1757
|
gap: 8px;
|
|
1707
|
-
`,
|
|
1758
|
+
`,lm=mo(j)`
|
|
1708
1759
|
transition: color 350ms ease, background-color 350ms ease;
|
|
1709
|
-
`,
|
|
1760
|
+
`,cm=mo.div`
|
|
1710
1761
|
height: 100%;
|
|
1711
1762
|
display: flex;
|
|
1712
1763
|
flex-direction: column;
|
|
1713
1764
|
justify-content: space-evenly;
|
|
1714
1765
|
flex-grow: 1;
|
|
1715
|
-
`,
|
|
1766
|
+
`,dm=mo.div`
|
|
1716
1767
|
display: flex;
|
|
1717
1768
|
flex-direction: column;
|
|
1718
1769
|
gap: 8px;
|
|
1719
|
-
`;import{useEffect as
|
|
1720
|
-
color: var(--privy-color-error);
|
|
1721
|
-
`,Xu=fi.div`
|
|
1722
|
-
display: flex;
|
|
1723
|
-
flex-direction: column;
|
|
1724
|
-
margin: 24px 27px 24px 27px;
|
|
1725
|
-
gap: 8px;
|
|
1726
|
-
`,mi=fi.p`
|
|
1727
|
-
&& span {
|
|
1728
|
-
font-weight: 600;
|
|
1729
|
-
font-size: 14px;
|
|
1730
|
-
}
|
|
1731
|
-
`;import{useEffect as em,useState as Kl}from"react";import Do,{css as tm}from"styled-components";import{Fragment as sm,jsx as dt,jsxs as Kr}from"react/jsx-runtime";var Zl=()=>{let{authenticated:e,getAccessToken:t,user:o}=N(),{walletProxy:r,closePrivyModal:n,createAnalyticsEvent:i}=T(),{navigate:a,data:s}=b(),[l,d]=Kl(!1),[f,m]=Kl("");em(()=>{e||(a("LANDING"),h(new Error("User must be authenticated before signing with a Privy wallet")))},[e]);let{message:v,onSuccess:y,onFailure:h,uiOptions:u}=s.signMessage,g=$(o),R=!r,w={title:u.title||"Sign message",description:u.description||"Signing this message will not cost you any fees.",buttonText:u.buttonText||"Sign and continue"};return Kr(sm,{children:[dt(E,{onClose:()=>n({shouldCallAuthOnSuccess:!1})}),Kr(om,{children:[Kr("div",{children:[dt(ee,{title:w.title,description:w.description}),dt(rm,{children:v}),dt(nm,{fail:!0,children:f})]}),dt(am,{success:l,loading:R,disabled:l,onClick:async()=>{let A=await t();if(A&&!R&&g)try{i("embedded_wallet_sign_message_started",{walletAddress:g.address});let{response:k}=await r.rpc({accessToken:A,address:g==null?void 0:g.address,request:{method:"eth_sign",params:[g.address,v]}}),I=k.data;m(""),y(I),i("embedded_wallet_sign_message_completed",{walletAddress:g.address}),d(!0),setTimeout(()=>{n({shouldCallAuthOnSuccess:!1})},Ne)}catch(k){m("An error has occurred, please try again."),h(k)}},children:l?Kr(im,{children:[dt(Ht,{style:{height:"0.9rem",width:"0.9rem"},strokeWidth:2})," ",dt("span",{children:"Success"})]}):w.buttonText})]}),dt(O,{protectedByPrivy:!0})]})},om=Do.div`
|
|
1770
|
+
`;import{useEffect as pm,useState as oc}from"react";import Yo,{css as um}from"styled-components";import{Fragment as vm,jsx as vt,jsxs as sn}from"react/jsx-runtime";var rc=()=>{let{authenticated:e,getAccessToken:t,user:o}=D(),{walletProxy:r,closePrivyModal:n,createAnalyticsEvent:i}=S(),{navigate:a,data:l}=y(),[s,p]=oc(!1),[g,f]=oc("");pm(()=>{e||(a("LANDING"),v(new Error("User must be authenticated before signing with a Privy wallet")))},[e]);let{message:u,onSuccess:w,onFailure:v,uiOptions:m}=l.signMessage,h=z(o),N=!r,x={title:m.title||"Sign message",description:m.description||"Signing this message will not cost you any fees.",buttonText:m.buttonText||"Sign and continue"};return sn(vm,{children:[vt(C,{onClose:()=>n({shouldCallAuthOnSuccess:!1})}),sn(mm,{children:[sn("div",{children:[vt(te,{title:x.title,description:x.description}),vt(hm,{children:u}),vt(fm,{fail:!0,children:g})]}),vt(ym,{success:s,loading:N,disabled:s,onClick:async()=>{let R=await t();if(R&&!N&&h)try{i("embedded_wallet_sign_message_started",{walletAddress:h.address});let{response:_}=await r.rpc({accessToken:R,address:h==null?void 0:h.address,request:{method:"eth_sign",params:[h.address,u]}}),I=_.data;f(""),w(I),i("embedded_wallet_sign_message_completed",{walletAddress:h.address}),p(!0),setTimeout(()=>{n({shouldCallAuthOnSuccess:!1})},De)}catch(_){f("An error has occurred, please try again."),v(_)}},children:s?sn(gm,{children:[vt(Jt,{style:{height:"0.9rem",width:"0.9rem"},strokeWidth:2})," ",vt("span",{children:"Success"})]}):x.buttonText})]}),vt(M,{protectedByPrivy:!0})]})},mm=Yo.div`
|
|
1732
1771
|
display: flex;
|
|
1733
1772
|
height: 100%;
|
|
1734
1773
|
flex-direction: column;
|
|
1735
1774
|
justify-content: space-between;
|
|
1736
1775
|
flex-grow: 1;
|
|
1737
|
-
`,
|
|
1776
|
+
`,hm=Yo.div`
|
|
1738
1777
|
background-color: var(--privy-color-background-2);
|
|
1739
1778
|
border-radius: 8px;
|
|
1740
1779
|
padding: 12px;
|
|
@@ -1750,7 +1789,7 @@ Resources:
|
|
|
1750
1789
|
&::-webkit-scrollbar {
|
|
1751
1790
|
display: none; /* Safari and Chrome */
|
|
1752
1791
|
}
|
|
1753
|
-
`,
|
|
1792
|
+
`,fm=Yo.div`
|
|
1754
1793
|
line-height: 20px;
|
|
1755
1794
|
height: 20px;
|
|
1756
1795
|
font-size: 13px;
|
|
@@ -1759,20 +1798,20 @@ Resources:
|
|
|
1759
1798
|
justify-content: flex-start;
|
|
1760
1799
|
width: 100%;
|
|
1761
1800
|
margin-top: 4px;
|
|
1762
|
-
`,
|
|
1801
|
+
`,gm=Yo.span`
|
|
1763
1802
|
display: flex;
|
|
1764
1803
|
align-items: center;
|
|
1765
1804
|
gap: 8px;
|
|
1766
|
-
`,
|
|
1805
|
+
`,ym=Yo(j)`
|
|
1767
1806
|
transition: color 350ms ease, background-color 350ms ease;
|
|
1768
1807
|
|
|
1769
|
-
${e=>e.success&&
|
|
1808
|
+
${e=>e.success&&um`
|
|
1770
1809
|
&&&& {
|
|
1771
1810
|
background-color: var(--privy-color-success);
|
|
1772
1811
|
color: #ffffff;
|
|
1773
1812
|
}
|
|
1774
1813
|
`}
|
|
1775
|
-
`;import
|
|
1814
|
+
`;import bm,{createGlobalStyle as Cm}from"styled-components";var wm=`
|
|
1776
1815
|
*,
|
|
1777
1816
|
::before,
|
|
1778
1817
|
::after {
|
|
@@ -2002,7 +2041,7 @@ Resources:
|
|
|
2002
2041
|
[hidden] {
|
|
2003
2042
|
display: none;
|
|
2004
2043
|
}
|
|
2005
|
-
`,
|
|
2044
|
+
`,nc=wm;var ic=Cm`
|
|
2006
2045
|
:root {
|
|
2007
2046
|
// Borders
|
|
2008
2047
|
--privy-border-radius-sm: 6px;
|
|
@@ -2027,10 +2066,10 @@ Resources:
|
|
|
2027
2066
|
--privy-color-success: ${e=>e.theme.success};
|
|
2028
2067
|
--privy-color-error: ${e=>e.theme.error};
|
|
2029
2068
|
};
|
|
2030
|
-
`,
|
|
2069
|
+
`,ac=bm.div`
|
|
2031
2070
|
// css normalize only the privy application to avoid conflicts
|
|
2032
2071
|
// with consuming application
|
|
2033
|
-
${
|
|
2072
|
+
${nc}
|
|
2034
2073
|
|
|
2035
2074
|
// Privy styles
|
|
2036
2075
|
color: var(--privy-color-foreground-2);
|
|
@@ -2089,7 +2128,7 @@ Resources:
|
|
|
2089
2128
|
opacity: 1;
|
|
2090
2129
|
}
|
|
2091
2130
|
}
|
|
2092
|
-
`;import{jsx as
|
|
2131
|
+
`;import{jsx as L,jsxs as sc}from"react/jsx-runtime";var Am=()=>{let{ready:e}=D(),{isLinking:t}=S(),{ready:o,currentScreen:r,app:n}=y(),i=!!(n!=null&&n.loginMethods.wallet),a=!!((n==null?void 0:n.loginMethods.email)||(n==null?void 0:n.loginMethods.sms)),l=i!==a,s;return["AWAITING_CONNECTION","AWAITING_CONNECT_ONLY_CONNECTION","CONNECT_ONLY_LANDING_SCREEN","AWAITING_OAUTH_SCREEN","ALLOWLIST_REJECTION_SCREEN"].includes(r)||l&&r==="LANDING"?s="compact":"WALLET_EDUCATION"===r?s="full":t&&r!=="EMBEDDED_WALLET_SIGN_REQUEST_SCREEN"?s="medium":s="full",!e||!o?sc(Zt,{"data-height":s,children:[L(C,{}),L(Rm,{children:L(So,{})}),L(We,{})]}):sc(Zt,{"data-height":s,children:[r==="LANDING"&&L(Xs,{}),r==="AWAITING_PASSWORDLESS_CODE"&&L(Fa,{}),r==="WALLET_EDUCATION"&&L(Ds,{}),r==="AWAITING_CONNECTION"&&L(Xa,{}),r==="AWAITING_CONNECT_ONLY_CONNECTION"&&L(ns,{}),r==="COINBASE_INTERSTITIAL_SCREEN"&&L(Va,{}),r==="PHANTOM_INTERSTITIAL_SCREEN"&&L(yl,{}),r==="LOGIN_FAILED_SCREEN"&&L(cl,{}),r==="AWAITING_OAUTH_SCREEN"&&L(ml,{}),r==="ALLOWLIST_REJECTION_SCREEN"&&L(Na,{}),r==="INSTALL_METAMASK_SCREEN"&&L(Gs,{}),r==="INSTALL_PHANTOM_SCREEN"&&L(Vs,{}),r==="INSTALL_COINBASE_WALLET_SCREEN"&&L(Bs,{}),r==="LINK_EMAIL_SCREEN"&&L(ol,{}),r==="LINK_PHONE_SCREEN"&&L(rl,{}),r==="LINK_WALLET_SCREEN"&&L(il,{}),r==="CONNECT_ONLY_LANDING_SCREEN"&&L(Qa,{}),r==="CONNECT_ONLY_AUTHENTICATED_SCREEN"&&L(Ka,{}),r==="EMBEDDED_WALLET_SCREEN"&&L(As,{}),r==="EMBEDDED_WALLET_CREATED_SCREEN"&&L(ys,{}),r==="EMBEDDED_WALLET_CONNECTING_SCREEN"&&L(us,{}),r==="EMBEDDED_WALLET_RECOVERY_SCREEN"&&L(_s,{}),r==="EMBEDDED_WALLET_KEY_EXPORT_SCREEN"&&L(xs,{}),r==="EMBEDDED_WALLET_SIGN_REQUEST_SCREEN"&&L(rc,{}),r==="EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN"&&L(tc,{})]})},cc=()=>{let{closePrivyModal:e}=S(),{app:t}=y(),o=Pm(i=>{i.key==="Escape"&&(t==null?void 0:t.render.inDialog)&&e()},[t==null?void 0:t.render.inDialog]);lc(()=>(document.addEventListener("keydown",o,!1),()=>{document.removeEventListener("keydown",o,!1)}),[o]);let r=L(ac,{onClick:i=>i.stopPropagation(),children:L(Am,{})}),n=t!=null&&t.render.inDialog?L(km,{id:"privy-dialog",onClick:()=>e(),children:r}):r;return _m.createPortal(n,t!=null&&t.render.inParentNodeId&&document.getElementById(t.render.inParentNodeId)||document.body)},Sm=({children:e,...t})=>{let o=Tm(null);return lc(()=>{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"),xm(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"),Em())}},[t.open,t.onClose]),L("dialog",{open:!0,role:"dialog",...t,ref:o,children:e})},km=Ei(Sm)`
|
|
2093
2132
|
position: fixed;
|
|
2094
2133
|
top: 0;
|
|
2095
2134
|
left: 0;
|
|
@@ -2104,7 +2143,7 @@ Resources:
|
|
|
2104
2143
|
z-index: 999999;
|
|
2105
2144
|
-webkit-backdrop-filter: blur(3px);
|
|
2106
2145
|
backdrop-filter: blur(3px);
|
|
2107
|
-
`,
|
|
2146
|
+
`,Zt=Ei.div`
|
|
2108
2147
|
display: flex;
|
|
2109
2148
|
flex-direction: column;
|
|
2110
2149
|
text-align: center;
|
|
@@ -2141,10 +2180,10 @@ Resources:
|
|
|
2141
2180
|
min-height: 0;
|
|
2142
2181
|
}
|
|
2143
2182
|
}
|
|
2144
|
-
`,
|
|
2183
|
+
`,Rm=Ei.div`
|
|
2145
2184
|
display: flex;
|
|
2146
2185
|
flex-direction: column;
|
|
2147
2186
|
align-items: center;
|
|
2148
2187
|
justify-content: center;
|
|
2149
2188
|
height: 100%;
|
|
2150
|
-
`;import no from"tinycolor2";var oc="#FFFFFF",wm="#000000",Cm=oc,xm="#1E1E1D";function Em(e){return e<.8&&e>.2&&console.warn("Background color is not light or dark enough, which could lead to accessibility issues."),e>.5?"light":"dark"}function St(e,t){let o=Math.max(0,Math.min(1,e.toHsl().l+t));return no({...e.toHsl(),l:o})}function rc({backgroundTheme:e,accentHex:t,successHex:o="#51BA81",errorHex:r="#EC6351",whiteHex:n=oc,blackHex:i=wm}){let a;switch(e){case"light":a=Cm;break;case"dark":a=xm;break;default:a=e;break}let s=no(a),l=no(t),d=no(o),f=no(r),m=Em(s.getLuminance()),v=St(s,m==="light"?-.04:.11),y=St(s,m==="light"?-.88:.87),h=St(s,m==="light"?-.77:.75),u=St(s,m==="light"?-.43:.45).desaturate(m==="light"?60:20),g=St(s,m==="light"?-.13:.25).desaturate(m==="light"?60:20),R=St(l,.15),w=St(l,-.06),A=no(l.getLuminance()>.5?i:n);return{colorScheme:m,background:s.toHslString(),background2:v.toHslString(),foreground:y.toHslString(),foreground2:h.toHslString(),foreground3:u.toHslString(),foreground4:g.toHslString(),accent:l.toHslString(),accentLight:R.toHslString(),accentDark:w.toHslString(),foregroundAccent:A.toHslString(),success:d.toHslString(),error:f.toHslString()}}var nc={appearance:{theme:"light",accentColor:"#676FFF"}};function gi(e,t){var m,v,y,h,u,g,R,w;let o,r,n,i,a,s,l,d;if(t!=null&&t.loginMethods?(o=t.loginMethods.includes("email"),r=t.loginMethods.includes("sms"),n=t.loginMethods.includes("wallet"),i=t.loginMethods.includes("google"),a=t.loginMethods.includes("twitter"),s=t.loginMethods.includes("discord"),l=t.loginMethods.includes("github"),d=t.loginMethods.includes("apple")):(o=e.emailAuth,r=e.smsAuth,n=e.walletAuth,i=e.googleOAuth,a=e.twitterOAuth,s=e.discordOAuth,l=e.githubOAuth,d=e.appleOAuth),o&&r&&(console.warn("Enabling both email and SMS passwordless is not currently supported. Disabling SMS."),r=!1),!o&&!r&&[i,a,s,l,d].some(A=>A))throw new Error("To enable social logins you must also enable either SMS or Email login");if(![o,r,n,i,a,s,l,d].some(A=>A))throw new Error("You must enable at least one login method");return{id:e.id,name:e.name,allowlistConfig:e.allowlistConfig,appearance:{logo:((m=t==null?void 0:t.appearance)==null?void 0:m.logo)??e.logoUrl,palette:rc({backgroundTheme:((v=t==null?void 0:t.appearance)==null?void 0:v.theme)??nc.appearance.theme,accentHex:((y=t==null?void 0:t.appearance)==null?void 0:y.accentColor)??e.accentColor??nc.appearance.accentColor}),showWalletLoginFirst:((h=t==null?void 0:t.appearance)==null?void 0:h.showWalletLoginFirst)??e.showWalletLoginFirst},loginMethods:{wallet:n,email:o,sms:r,google:i,twitter:a,discord:s,github:l,apple:d},legal:{termsAndConditionsUrl:((u=t==null?void 0:t.legal)==null?void 0:u.termsAndConditionsUrl)??e.termsAndConditionsUrl,privacyPolicyUrl:((g=t==null?void 0:t.legal)==null?void 0:g.privacyPolicyUrl)??e.privacyPolicyUrl},render:{inDialog:((R=t==null?void 0:t._render)==null?void 0:R.inDialog)??!0,inParentNodeId:((w=t==null?void 0:t._render)==null?void 0:w.inParentNodeId)??null}}}import{useRef as Pm,useEffect as Tm}from"react";var Zr=class{constructor(){this.callbacks={}}enqueue(t,o){this.callbacks[t]=o}dequeue(t,o){let r=this.callbacks[o];if(!r)throw new Error(`cannot dequeue ${t} event: no event found for id ${o}`);switch(delete this.callbacks[o],t){case"privy:iframe:ready":return r;case"privy:wallet:create":return r;case"privy:wallet:connect":return r;case"privy:wallet:recover":return r;case"privy:wallet:rpc":return r;default:throw new Error(`invalid wallet event type ${t}`)}}};import{jsx as km}from"react/jsx-runtime";var Am=function(e){return()=>`id-${e++}`}(0);function _m(e){return typeof e.event=="string"&&/^privy:.+/.test(e.event)}function Oo(e){return e.error!==void 0}var io=new Zr;function Uo(e,t,o){let r=o.contentWindow;if(!r)throw new Error("iframe not initialized");return new Promise((n,i)=>{let a=Am();io.enqueue(a,{resolve:n,reject:i}),r.postMessage({id:a,event:e,data:t},"*")})}function Sm(e){switch(e.event){case"privy:iframe:ready":let t=io.dequeue(e.event,e.id);return Oo(e)?t.reject(new ct(e.error.type,e.error.message)):t.resolve(e.data);case"privy:wallet:create":let o=io.dequeue(e.event,e.id);return Oo(e)?o.reject(new ct(e.error.type,e.error.message)):o.resolve(e.data);case"privy:wallet:connect":let r=io.dequeue(e.event,e.id);return Oo(e)?r.reject(new ct(e.error.type,e.error.message)):r.resolve(e.data);case"privy:wallet:recover":let n=io.dequeue(e.event,e.id);return Oo(e)?n.reject(new ct(e.error.type,e.error.message)):n.resolve(e.data);case"privy:wallet:rpc":let i=io.dequeue(e.event,e.id);return Oo(e)?i.reject(new ct(e.error.type,e.error.message)):i.resolve(e.data)}}function ic(e){let t=Pm(null);return Tm(()=>{let o=t.current;if(!o)return;function r(s){s&&s.origin===e.origin&&_m(s.data)&&Sm(s.data)}let n={create(s){return Uo("privy:wallet:create",s,o)},connect(s){return Uo("privy:wallet:connect",s,o)},recover(s){return Uo("privy:wallet:recover",s,o)},rpc(s){return Uo("privy:wallet:rpc",s,o)}};window.addEventListener("message",r);let i=()=>e.onLoad(n),a=(...s)=>{console.error("privy iframe failed to load: ",...s),e.onLoadFailed()};return ji(()=>Uo("privy:iframe:ready",{},o)).then(i,a),()=>window.removeEventListener("message",r)},[t.current]),km("iframe",{ref:t,width:"0",height:"0",style:{display:"none",height:"0px",width:"0px"},src:zo(e.origin,`/apps/${e.appId}/embedded-wallets`)})}import{jsx as Bo,jsxs as ac}from"react/jsx-runtime";function Wm(e){return typeof e=="string"&&e.length===25}var Fo;function co(){if(!Fo){let e=G.get(Wt);return Promise.resolve(e||null)}return Fo.getAccessToken()}var sc,Ki=(e,t)=>sc(e,t),lc,Zi=(e,t)=>lc(e,t),Im=()=>{let t=new URLSearchParams(window.location.search).get("privy_token");if(!t)return;G.put(so,t);let o=new URL(window.location.href);o.searchParams.delete("privy_token"),window.history.pushState({},"",o)},Lm=e=>{if(!Wm(e.appId))throw new x("Cannot initialize the Privy provider with an invalid Privy app ID");return Fo||(Fo=new fo({appId:e.appId,apiUrl:e.apiUrl||Go})),Bo(Mm,{...e,client:Fo})},Mm=e=>{let t=e.client,[o,r]=ne(!1),[n,i]=ne(!1),[a,s]=ne(!1),[l,d]=ne(null),[f,m]=ne(!1),[v,y]=ne(null),[h,u]=ne(!1),[g,R]=ne(null),[w,A]=ne({status:"disconnected",connectError:null,connectRetry:C}),[k,I]=ne(null),[U,M]=ne(null),[V,j]=ne({showWalletLoginFirst:!0,allowlistConfig:{errorTitle:null,errorDetail:null,errorCtaText:null,errorCtaLink:null},walletAuth:!0,emailAuth:!0,smsAuth:!1,googleOAuth:!1,twitterOAuth:!1,discordOAuth:!1,githubOAuth:!1,appleOAuth:!1,termsAndConditionsUrl:null,privacyPolicyUrl:null}),[te,de]=ne(gi(V,e.config)),[L,B]=ne(!0),[K,F]=ne({}),[ie,Se]=ne(null),ae=p=>{p&&y(p),r(!0),t.createAnalyticsEvent("modal_open",{initialScreen:p})},$e=p=>{let c=e.createPrivyWalletOnLogin===!0;F({login:{promptCreatePrivyWalletFlow:c}}),c&&B(!0),ae(p)};Yr(()=>{if(!U||!l)return;let p=l==null?void 0:l.linkedAccounts.filter(c=>c.type==="wallet"&&c.walletClient==="privy");if(p&&p.length>0){let c=p[0].address;t.connectors.addEmbeddedWalletConnector(U,c)}},[U,l]),Yr(()=>{async function p(){let c=await t.getServerConfig();j(c),c.customApiUrl&&t.updateApiUrl(c.customApiUrl),t.connectors.initialize();let S=z();Im();let W=await t.getAuthenticatedUser();s(!!W),d(W),i(!0),ie==null||ie(),S&&W&&u(!0),ao()}p()},[t,ie,n]),Yr(()=>{let p=gi(V,e.config);de(p)},[e.config,V]);let z=()=>{let p=new URLSearchParams(window.location.search),c=p.get("privy_oauth_code"),S=p.get("privy_oauth_state"),W=p.get("privy_oauth_provider");return c&&S&&W?(t.startAuthFlow(new tt(W,c,S)),$e("AWAITING_OAUTH_SCREEN"),!0):!1},pe=p=>{A(c=>({...c,status:"connecting",connectError:null})),p.promptConnect().then(()=>{A(c=>({...c,status:"connected",connectError:null}))}).catch(c=>{c instanceof ke?console.error(c.cause?c.cause:c.message):console.error(c),A(S=>({...S,status:"disconnected",connectError:c}))})},ao=()=>{let c=new URLSearchParams(window.location.search).get("privy_wallet_client");if(!c)return;if(c==="phantom"&&!nt()&&$e("LOGIN_FAILED_SCREEN"),!t.connectors)throw new x("Connector not initialized");let S=new ot(t.connectors,c);t.startAuthFlow(S),pe(S),ae("AWAITING_CONNECTION");let W=new URL(window.location.href);W.searchParams.delete("privy_wallet_client"),window.history.pushState({},"",W)};Yr(()=>{n&&a&&l===null&&t.getAuthenticatedUser().then(d)},[n,a,l,t]);let Qr=()=>{u(!0),ae("LINK_WALLET_SCREEN")},yi=async(p,c)=>{let S=t.connectors.getConnectorByAddress(c);if(!S)return I(c),Qr(),p;R({address:c,walletType:S.walletType,walletBranding:S.walletBranding,success:!1}),ae("SETTING_ACTIVE_WALLET");try{let W=await t.setActiveWallet(c,p);return R({address:c,walletType:S.walletType,walletBranding:S.walletBranding,success:!0}),W}catch(W){W instanceof x&&W.message==="Error setting the active wallet."&&(I(c),Qr()),R({address:c,walletType:S.walletType,walletBranding:S.walletBranding,success:!1,error:W.message})}return p},Jr={ready:n,authenticated:a,user:l,walletConnectors:t.connectors,linkWallet:Qr,linkEmail:()=>{u(!0),ae("LINK_EMAIL_SCREEN")},linkPhone:()=>{u(!0),ae("LINK_PHONE_SCREEN")},linkGoogle:async()=>{await kt.initLoginWithOAuth("google")},linkTwitter:async()=>{await kt.initLoginWithOAuth("twitter")},linkDiscord:async()=>{await kt.initLoginWithOAuth("discord")},linkGithub:async()=>{await kt.initLoginWithOAuth("github")},linkApple:async()=>{await kt.initLoginWithOAuth("apple")},login:async()=>{if(n||(await new Promise(p=>{Se(()=>p)}),Se(null)),a){console.warn("Attempted to log in, but user is already logged in. Use a `link` helper instead.");return}$e()},logout:async()=>{await t.logout(),d(null),s(!1),y(null),u(!1),r(!1)},getAccessToken:()=>t.getAccessToken(),getEthereumProvider:()=>t.connectors.getEthereumProvider(),getEthersProvider:()=>new Rm(new yt(t.connectors.getEthereumProvider())),getWeb3jsProvider:()=>new jo(t.connectors.getEthereumProvider()),unlinkWallet:async p=>{let c=await t.unlinkWallet(p);d(c);let S=c.linkedAccounts.filter(W=>W.type==="wallet");if(c&&S&&S.length>0){let W=S[0];c=await yi(c,W.address)}return d(c),c},unlinkEmail:async p=>{let c=await t.unlinkEmail(p);return d(c),c},unlinkPhone:async p=>{let c=await t.unlinkPhone(p);return d(c),c},unlinkGoogle:async p=>{let c=await t.unlinkOAuth("google",p);return d(c),c},unlinkTwitter:async p=>{let c=await t.unlinkOAuth("twitter",p);return d(c),c},unlinkDiscord:async p=>{let c=await t.unlinkOAuth("discord",p);return d(c),c},unlinkGithub:async p=>{let c=await t.unlinkOAuth("github",p);return d(c),c},unlinkApple:async p=>{let c=await t.unlinkOAuth("apple",p);return d(c),c},setActiveWallet:async p=>{if(!l)return;let c=await yi(l,p);c&&d(c)},forkSession:()=>t.forkSession(),createWallet:()=>new Promise((p,c)=>{if(!a||!l){c(new Error("User must be authenticated before creating a Privy wallet"));return}if($(l)){c(new Error("Only one Privy wallet per user is currently allowed"));return}B(!0),F({createWallet:{onSuccess:p,onFailure:c,callAuthOnSuccessOnClose:!1}}),ae("EMBEDDED_WALLET_SCREEN")}),signMessage:(p,c)=>new Promise((S,W)=>{if(!a||!l){W(new Error("User must be authenticated before signing with a Privy wallet"));return}if(!$(l)){W(new Error("Must have a Privy wallet before signing"));return}if(typeof p!="string"||p.length<1){W(new Error("Message must be a non-empty string"));return}B(!0);let en={message:p,onSuccess:S,onFailure:W,uiOptions:c||{}},tn={onCompleteNavigateTo:"EMBEDDED_WALLET_SIGN_REQUEST_SCREEN",onFailure:W};F({signMessage:en,connectWallet:tn}),ae("EMBEDDED_WALLET_CONNECTING_SCREEN")}),sendTransaction:(p,c)=>new Promise(async(S,W)=>{if(!a||!l){W(new Error("User must be authenticated before signing with a Privy wallet"));return}if(!$(l)){W(new Error("Must have a Privy wallet before signing"));return}B(!0);let en={transactionRequest:p,onSuccess:S,onFailure:W,uiOptions:c||{}},tn={onCompleteNavigateTo:"EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN",onFailure:W};F({connectWallet:tn,sendTransaction:en}),ae("EMBEDDED_WALLET_CONNECTING_SCREEN")}),exportWallet:()=>new Promise((p,c)=>{if(!a||!l){c(new Error("User must be authenticated before exporting their Privy wallet"));return}if(!$(l)){c(new Error("Must have a Privy wallet before exporting"));return}B(!0);let W={onCompleteNavigateTo:"EMBEDDED_WALLET_KEY_EXPORT_SCREEN",onFailure:c},Xr={appId:e.appId,origin:t.apiUrl,onSuccess:p,onFailure:c};F({keyExport:Xr,connectWallet:W}),ae("EMBEDDED_WALLET_CONNECTING_SCREEN")})};sc=Jr.signMessage,lc=Jr.sendTransaction;let kt=(()=>({isLinking:h,linkingHint:k,activeStatus:g,walletConnectionStatus:w,getAuthFlow:()=>t.authFlow,getAuthMeta:()=>{var p;return(p=t.authFlow)==null?void 0:p.meta},closePrivyModal:(p={shouldCallAuthOnSuccess:!0})=>{var S;let c=n&&a&&l;p.shouldCallAuthOnSuccess&&c&&((S=e.onSuccess)==null||S.call(e,l,f)),t.authFlow=void 0,I(null),y(null),u(!1),R(null),m(!1),r(!1),t.createAnalyticsEvent("modal_closed")},initLoginWithWallet:(p,c)=>{if(!t.connectors)throw new x("Connector not initialized");p||(p="metamask");let S=new ot(t.connectors,p,c);t.startAuthFlow(S),A({status:"connecting",connectError:null,connectRetry:()=>{pe(S)}}),pe(S)},loginWithWallet:async()=>{if(!(t.authFlow instanceof ot))throw new x("Must initialize SIWE flow first.");let p,c;h?(p=await t.link(),p&&(p=mo(p))):{user:p,isNewUser:c}=await t.authenticate(),d(p||l||null),m(c||!1),s(!0)},initLoginWithOAuth:async p=>{t.startAuthFlow(new tt(p));let c=await t.authFlow.getAuthorizationUrl();c&&c.url&&window.location.assign(c.url)},loginWithOAuth:async()=>{if(!(t.authFlow instanceof tt))throw new x("Must initialize OAuth flow before calling loginWithOAuth");let p,c;n&&a?p=await t.link():{user:p,isNewUser:c}=await t.authenticate(),d(p),m(c||!1),s(!0)},initLoginWithEmail:async p=>{let c=new pt(p);t.startAuthFlow(c),await c.sendCodeEmail()},initLoginWithSms:async p=>{let c=new ut(p);t.startAuthFlow(c),await c.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 pt)t.authFlow.meta.emailCode=p.trim();else if(t.authFlow instanceof ut)t.authFlow.meta.smsCode=p.trim();else throw new x("Must initialize a passwordless code flow first");let c,S;h?c=await t.link():{user:c,isNewUser:S}=await t.authenticate(),d(c||l||null),m(S||!1),s(!0)},refreshUser:async()=>{let p=await t.getAuthenticatedUser();return d(p),p},walletProxy:U,createAnalyticsEvent:(p,c,S)=>t.createAnalyticsEvent(p,c,S),getUsdTokenPrice:p=>t.getUsdTokenPrice(p)}))();return ac(Cn.Provider,{value:Jr,children:[e.children,ac(wn.Provider,{value:kt,children:[Bo(Ql,{theme:{...te.appearance.palette||{}}}),Bo(na,{appConfig:te,data:K,setModalData:F,initialScreen:v,visible:o,authenticated:a,children:o&&Bo(tc,{})}),L&&Bo(ic,{appId:e.appId,origin:t.apiUrl,onLoad:M,onLoadFailed:()=>null})]})]})};export{yt as AsExternalProvider,uo as ConnectorManager,fo as PrivyClient,Lm as PrivyProvider,We as PrivyProxyProvider,on as VERSION,ye as WalletConnector,co as getAccessToken,N as usePrivy};
|
|
2189
|
+
`;import ho from"tinycolor2";var dc="#FFFFFF",Wm="#000000",Im=dc,Nm="#1E1E1D";function Lm(e){return e<.8&&e>.2&&console.warn("Background color is not light or dark enough, which could lead to accessibility issues."),e>.5?"light":"dark"}function Ut(e,t){let o=Math.max(0,Math.min(1,e.toHsl().l+t));return ho({...e.toHsl(),l:o})}function pc({backgroundTheme:e,accentHex:t,successHex:o="#51BA81",errorHex:r="#EC6351",whiteHex:n=dc,blackHex:i=Wm}){let a;switch(e){case"light":a=Im;break;case"dark":a=Nm;break;default:a=e;break}let l=ho(a),s=ho(t),p=ho(o),g=ho(r),f=Lm(l.getLuminance()),u=Ut(l,f==="light"?-.04:.11),w=Ut(l,f==="light"?-.88:.87),v=Ut(l,f==="light"?-.77:.75),m=Ut(l,f==="light"?-.43:.45).desaturate(f==="light"?60:20),h=Ut(l,f==="light"?-.13:.25).desaturate(f==="light"?60:20),N=Ut(s,.15),x=Ut(s,-.06),R=ho(s.getLuminance()>.5?i:n);return{colorScheme:f,background:l.toHslString(),background2:u.toHslString(),foreground:w.toHslString(),foreground2:v.toHslString(),foreground3:m.toHslString(),foreground4:h.toHslString(),accent:s.toHslString(),accentLight:N.toHslString(),accentDark:x.toHslString(),foregroundAccent:R.toHslString(),success:p.toHslString(),error:g.toHslString()}}var uc={appearance:{theme:"light",accentColor:"#676FFF"}};function Ti(e,t){var f,u,w,v,m,h,N,x;let o,r,n,i,a,l,s,p;if(t!=null&&t.loginMethods?(o=t.loginMethods.includes("email"),r=t.loginMethods.includes("sms"),n=t.loginMethods.includes("wallet"),i=t.loginMethods.includes("google"),a=t.loginMethods.includes("twitter"),l=t.loginMethods.includes("discord"),s=t.loginMethods.includes("github"),p=t.loginMethods.includes("apple")):(o=e.emailAuth,r=e.smsAuth,n=e.walletAuth,i=e.googleOAuth,a=e.twitterOAuth,l=e.discordOAuth,s=e.githubOAuth,p=e.appleOAuth),o&&r&&(console.warn("Enabling both email and SMS passwordless is not currently supported. Disabling SMS."),r=!1),!o&&!r&&[i,a,l,s,p].some(R=>R))throw new Error("To enable social logins you must also enable either SMS or Email login");if(![o,r,n,i,a,l,s,p].some(R=>R))throw new Error("You must enable at least one login method");return{id:e.id,name:e.name,allowlistConfig:e.allowlistConfig,appearance:{logo:((f=t==null?void 0:t.appearance)==null?void 0:f.logo)??e.logoUrl,palette:pc({backgroundTheme:((u=t==null?void 0:t.appearance)==null?void 0:u.theme)??uc.appearance.theme,accentHex:((w=t==null?void 0:t.appearance)==null?void 0:w.accentColor)??e.accentColor??uc.appearance.accentColor}),showWalletLoginFirst:((v=t==null?void 0:t.appearance)==null?void 0:v.showWalletLoginFirst)??e.showWalletLoginFirst},loginMethods:{wallet:n,email:o,sms:r,google:i,twitter:a,discord:l,github:s,apple:p},legal:{termsAndConditionsUrl:((m=t==null?void 0:t.legal)==null?void 0:m.termsAndConditionsUrl)??e.termsAndConditionsUrl,privacyPolicyUrl:((h=t==null?void 0:t.legal)==null?void 0:h.privacyPolicyUrl)??e.privacyPolicyUrl},render:{inDialog:((N=t==null?void 0:t._render)==null?void 0:N.inDialog)??!0,inParentNodeId:((x=t==null?void 0:t._render)==null?void 0:x.inParentNodeId)??null}}}import{useRef as Mm,useEffect as Om}from"react";var ln=class{constructor(){this.callbacks={}}enqueue(t,o){this.callbacks[t]=o}dequeue(t,o){let r=this.callbacks[o];if(!r)throw new Error(`cannot dequeue ${t} event: no event found for id ${o}`);switch(delete this.callbacks[o],t){case"privy:iframe:ready":return r;case"privy:wallet:create":return r;case"privy:wallet:connect":return r;case"privy:wallet:recover":return r;case"privy:wallet:rpc":return r;default:throw new Error(`invalid wallet event type ${t}`)}}};import{jsx as Fm}from"react/jsx-runtime";var Dm=function(e){return()=>`id-${e++}`}(0);function Um(e){return typeof e.event=="string"&&/^privy:.+/.test(e.event)}function Zo(e){return e.error!==void 0}var fo=new ln;function Qo(e,t,o){let r=o.contentWindow;if(!r)throw new Error("iframe not initialized");return new Promise((n,i)=>{let a=Dm();fo.enqueue(a,{resolve:n,reject:i}),r.postMessage({id:a,event:e,data:t},"*")})}function Bm(e){switch(e.event){case"privy:iframe:ready":let t=fo.dequeue(e.event,e.id);return Zo(e)?t.reject(new yt(e.error.type,e.error.message)):t.resolve(e.data);case"privy:wallet:create":let o=fo.dequeue(e.event,e.id);return Zo(e)?o.reject(new yt(e.error.type,e.error.message)):o.resolve(e.data);case"privy:wallet:connect":let r=fo.dequeue(e.event,e.id);return Zo(e)?r.reject(new yt(e.error.type,e.error.message)):r.resolve(e.data);case"privy:wallet:recover":let n=fo.dequeue(e.event,e.id);return Zo(e)?n.reject(new yt(e.error.type,e.error.message)):n.resolve(e.data);case"privy:wallet:rpc":let i=fo.dequeue(e.event,e.id);return Zo(e)?i.reject(new yt(e.error.type,e.error.message)):i.resolve(e.data)}}function mc(e){let t=Mm(null);return Om(()=>{let o=t.current;if(!o)return;function r(l){l&&l.origin===e.origin&&Um(l.data)&&Bm(l.data)}let n={create(l){return Qo("privy:wallet:create",l,o)},connect(l){return Qo("privy:wallet:connect",l,o)},recover(l){return Qo("privy:wallet:recover",l,o)},rpc(l){return Qo("privy:wallet:rpc",l,o)}};window.addEventListener("message",r);let i=()=>e.onLoad(n),a=(...l)=>{console.error("privy iframe failed to load: ",...l),e.onLoadFailed()};return ea(()=>Qo("privy:iframe:ready",{},o)).then(i,a),()=>window.removeEventListener("message",r)},[t.current]),Fm("iframe",{ref:t,width:"0",height:"0",style:{display:"none",height:"0px",width:"0px"},src:nr(e.origin,`/apps/${e.appId}/embedded-wallets`)})}import{createContext as Gm,useContext as Hm}from"react";var Pi=Gm({wallets:[]});function Vm(){return Hm(Pi)}import{jsx as yo,jsxs as fc}from"react/jsx-runtime";function $m(e){return typeof e=="string"&&e.length===25}var Jo;function To(){if(!Jo){let e=H.get(Gt);return Promise.resolve(e||null)}return Jo.getAccessToken()}var gc,na=(e,t)=>gc(e,t),yc,ia=(e,t)=>yc(e,t),jm=()=>{let t=new URLSearchParams(window.location.search).get("privy_token");if(!t)return;H.put(xo,t);let o=new URL(window.location.href);o.searchParams.delete("privy_token"),window.history.pushState({},"",o)},Km=e=>{if(!$m(e.appId))throw new b("Cannot initialize the Privy provider with an invalid Privy app ID");return Jo||(Jo=new Ao({appId:e.appId,apiUrl:e.apiUrl||or})),yo(Ym,{...e,client:Jo})},Ym=e=>{let t=e.client,[o,r]=de(!1),[n,i]=de(!1),[a,l]=de(!1),[s,p]=de(null),[g,f]=de([]),u=qm(g),[w,v]=de(!1),[m,h]=de(null),[N,x]=de(!1),[R,_]=de({status:"disconnected",connectError:null,connector:null,connectRetry:T}),[I,O]=de(null),[W,pe]=de(null),[G,ie]=de({showWalletLoginFirst:!0,allowlistConfig:{errorTitle:null,errorDetail:null,errorCtaText:null,errorCtaLink:null},walletAuth:!0,emailAuth:!0,smsAuth:!1,googleOAuth:!1,twitterOAuth:!1,discordOAuth:!1,githubOAuth:!1,appleOAuth:!1,termsAndConditionsUrl:null,privacyPolicyUrl:null}),[ee,B]=de(Ti(G,e.config)),[oe,F]=de(!0),[U,Z]=de({}),[Ee,wt]=de(null),re=c=>{c&&h(c),r(!0),t.createAnalyticsEvent("modal_open",{initialScreen:c})},Ne=c=>{let d=e.createPrivyWalletOnLogin===!0;Z({login:{promptCreatePrivyWalletFlow:d}}),d&&F(!0),re(c)};go(()=>{if(!W||!s){t.connectors.removeEmbeddedWalletConnector();return}let c=s==null?void 0:s.linkedAccounts.filter(d=>d.type==="wallet"&&d.walletClient==="privy");if(c&&c.length>0){let d=c[0].address;t.connectors.addEmbeddedWalletConnector(W,d)}},[W,s]),go(()=>{async function c(){let d=await t.getServerConfig();ie(d),d.customApiUrl&&t.updateApiUrl(d.customApiUrl),t.connectors.initialize();let A=ue();jm();let E=await t.getAuthenticatedUser();l(!!E),p(E),i(!0),Ee==null||Ee(),A&&E&&x(!0),Xo()}c()},[t,Ee,n]),go(()=>{let c=Ti(G,e.config);B(c)},[e.config,G]);let ue=()=>{let c=new URLSearchParams(window.location.search),d=c.get("privy_oauth_code"),A=c.get("privy_oauth_state"),E=c.get("privy_oauth_provider");return d&&A&&E?(t.startAuthFlow(new st(E,d,A)),Ne("AWAITING_OAUTH_SCREEN"),!0):!1},Le=async(c,d)=>{let A=t.connectors.createWalletConnector(c,d);return A?(_(E=>({...E,connector:A,status:"connecting",connectError:null})),await A.connect({showPrompt:!0}).then(E=>(_(Me=>({...Me,status:"connected",connectError:null})),E)).catch(E=>(E instanceof ke?console.error(E.cause?E.cause:E.message):console.error(E),_(Me=>({...Me,status:"disconnected",connectError:E})),null))):(_(E=>({...E,status:"disconnected",connectError:new $("Unable to connect to wallet.")})),null)},Xo=()=>{let c=new URLSearchParams(window.location.search),d=c.get("privy_connector"),A=c.get("privy_wallet_client");if(!d||!A)return;if(A==="phantom"&&!Ue()&&Ne("LOGIN_FAILED_SCREEN"),!t.connectors)throw new b("Connector not initialized");re("AWAITING_CONNECTION");let E=new URL(window.location.href);E.searchParams.delete("privy_connector"),E.searchParams.delete("privy_wallet_client"),window.history.pushState({},"",E),Le(d,A).then(Me=>{if(Me!==null){let Co=new Ye(Me);t.startAuthFlow(Co)}})};go(()=>{n&&a&&s===null&&t.getAuthenticatedUser().then(p)},[n,a,s,t]);let vo=()=>{x(!0),re("LINK_WALLET_SCREEN")},er=c=>{if(!a||!s)return!1;for(let d of s.linkedAccounts)if(d.type==="wallet"&&d.address===c.address)return!0;return!1},wo=async c=>{if(await c.isConnected()){if(!t.connectors)throw new b("Connector not initialized");x(!!a),_(d=>({...d,connector:t.connectors.findWalletConnector(c.connectorType,c.walletClientType)||null,status:"connected",connectError:null})),t.startAuthFlow(new Ye(c)),Ne("AWAITING_CONNECTION")}else throw new b("Wallet is not connected")},bo=()=>{f(t.connectors.wallets.map(c=>({...c,linked:er(c),link:async()=>{if(!a)throw new b("User is not authenticated. Use wallet.login()");if(!await c.isConnected())throw new b("Wallet is not connected");wo(c)},unlink:async()=>{if(!a)throw new b("User is not authenticated.");let d=await t.unlinkWallet(c.address);p(d)},login:async()=>{if(a)throw new b("User is already authenticated. Use wallet.link()");if(!await c.isConnected())throw new b("Wallet is not connected");wo(c)}})))};go(()=>{bo()},[s==null?void 0:s.linkedAccounts]),t.connectors.on("walletsUpdated",bo);let tr=()=>{re(a?"CONNECT_ONLY_AUTHENTICATED_SCREEN":"CONNECT_ONLY_LANDING_SCREEN")};go(()=>{if(!g[0])return;let c=g[0],d=u.current.find(E=>E.address===c.address),A=s==null?void 0:s.linkedAccounts.find(E=>E.type==="wallet"&&E.address===c.address);if(!d&&A){let E=Object.assign({},s);E.wallet=A&&{address:A.address,chainType:A.chainType,chainId:A.chainId,walletClient:A.walletClient},p(E)}u.current=g},[g]);let q={ready:n,authenticated:a,user:s,walletConnectors:t.connectors,connectWallet:tr,linkWallet:vo,linkEmail:()=>{x(!0),re("LINK_EMAIL_SCREEN")},linkPhone:()=>{x(!0),re("LINK_PHONE_SCREEN")},linkGoogle:async()=>{await Bt.initLoginWithOAuth("google")},linkTwitter:async()=>{await Bt.initLoginWithOAuth("twitter")},linkDiscord:async()=>{await Bt.initLoginWithOAuth("discord")},linkGithub:async()=>{await Bt.initLoginWithOAuth("github")},linkApple:async()=>{await Bt.initLoginWithOAuth("apple")},login:async()=>{if(n||(await new Promise(c=>{wt(()=>c)}),wt(null)),a){console.warn("Attempted to log in, but user is already logged in. Use a `link` helper instead.");return}Ne()},logout:async()=>{await t.logout(),p(null),l(!1),h(null),x(!1),r(!1)},getAccessToken:()=>t.getAccessToken(),getEthereumProvider:()=>{if(!s||!s.wallet)return new V;let c=g.find(d=>s.wallet&&d.address===s.wallet.address);return c?c.getEthereumProvider():new V},getEthersProvider:()=>{if(!s||!s.wallet)return new hc(new Xe(new V));let c=g.find(d=>s.wallet&&d.address===s.wallet.address);return c?c.getEthersProvider():new hc(new Xe(new V))},getWeb3jsProvider:()=>{if(!s||!s.wallet)return new Pt(new V);let c=g.find(d=>s.wallet&&d.address===s.wallet.address);return c?c==null?void 0:c.getWeb3jsProvider():new Pt(new V)},unlinkWallet:async c=>{let d=await t.unlinkWallet(c);return p(d),d},unlinkEmail:async c=>{let d=await t.unlinkEmail(c);return p(d),d},unlinkPhone:async c=>{let d=await t.unlinkPhone(c);return p(d),d},unlinkGoogle:async c=>{let d=await t.unlinkOAuth("google",c);return p(d),d},unlinkTwitter:async c=>{let d=await t.unlinkOAuth("twitter",c);return p(d),d},unlinkDiscord:async c=>{let d=await t.unlinkOAuth("discord",c);return p(d),d},unlinkGithub:async c=>{let d=await t.unlinkOAuth("github",c);return p(d),d},unlinkApple:async c=>{let d=await t.unlinkOAuth("apple",c);return p(d),d},setActiveWallet:async c=>{let d=g.find(E=>cn(E.address)===cn(c)),A=s==null?void 0:s.linkedAccounts.find(E=>E.type==="wallet"&&cn(E.address)===cn(c));if(!d||!await d.isConnected()||!A)O(c),vo();else if(!d.linked)d.link();else{let E=Object.assign({},s);E.wallet=A&&{address:A.address,chainType:A.chainType,chainId:A.chainId,walletClient:A.walletClient},p(E)}},forkSession:()=>t.forkSession(),createWallet:()=>new Promise((c,d)=>{if(!a||!s){d(new Error("User must be authenticated before creating a Privy wallet"));return}if(z(s)){d(new Error("Only one Privy wallet per user is currently allowed"));return}F(!0),Z({createWallet:{onSuccess:c,onFailure:d,callAuthOnSuccessOnClose:!1}}),re("EMBEDDED_WALLET_SCREEN")}),signMessage:(c,d)=>new Promise((A,E)=>{if(!a||!s){E(new Error("User must be authenticated before signing with a Privy wallet"));return}if(!z(s)){E(new Error("Must have a Privy wallet before signing"));return}if(typeof c!="string"||c.length<1){E(new Error("Message must be a non-empty string"));return}F(!0);let Co={message:c,onSuccess:A,onFailure:E,uiOptions:d||{}},dn={onCompleteNavigateTo:"EMBEDDED_WALLET_SIGN_REQUEST_SCREEN",onFailure:E};Z({signMessage:Co,connectWallet:dn}),re("EMBEDDED_WALLET_CONNECTING_SCREEN")}),sendTransaction:(c,d)=>new Promise(async(A,E)=>{if(!a||!s){E(new Error("User must be authenticated before signing with a Privy wallet"));return}if(!z(s)){E(new Error("Must have a Privy wallet before signing"));return}F(!0);let Co={transactionRequest:c,onSuccess:A,onFailure:E,uiOptions:d||{}},dn={onCompleteNavigateTo:"EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN",onFailure:E};Z({connectWallet:dn,sendTransaction:Co}),re("EMBEDDED_WALLET_CONNECTING_SCREEN")}),exportWallet:()=>new Promise((c,d)=>{if(!a||!s){d(new Error("User must be authenticated before exporting their Privy wallet"));return}if(!z(s)){d(new Error("Must have a Privy wallet before exporting"));return}F(!0);let E={onCompleteNavigateTo:"EMBEDDED_WALLET_KEY_EXPORT_SCREEN",onFailure:d},Me={appId:e.appId,origin:t.apiUrl,onSuccess:c,onFailure:d};Z({keyExport:Me,connectWallet:E}),re("EMBEDDED_WALLET_CONNECTING_SCREEN")})};gc=q.signMessage,yc=q.sendTransaction;let Bt=(()=>({isLinking:N,linkingHint:I,walletConnectionStatus:R,getAuthFlow:()=>t.authFlow,getAuthMeta:()=>{var c;return(c=t.authFlow)==null?void 0:c.meta},closePrivyModal:(c={shouldCallAuthOnSuccess:!0})=>{var A;let d=n&&a&&s;c.shouldCallAuthOnSuccess&&d&&((A=e.onSuccess)==null||A.call(e,s,w)),t.authFlow=void 0,O(null),h(null),x(!1),v(!1),r(!1),t.createAnalyticsEvent("modal_closed")},connectWallet:Le,initLoginWithWallet:(c,d)=>{if(!t.connectors)throw new b("Connector not initialized");(!c||!d)&&(c="injected",d="metamask"),x(!!a),Le(c,d).then(A=>{if(A===null)throw new b("Error connecting to wallet.");t.startAuthFlow(new Ye(A))})},loginWithWallet:async()=>{if(!(t.authFlow instanceof Ye))throw new b("Must initialize SIWE flow first.");let c,d;N?c=await t.link():{user:c,isNewUser:d}=await t.authenticate(),p(c||s||null),v(d||!1),l(!0)},initLoginWithOAuth:async c=>{t.startAuthFlow(new st(c));let d=await t.authFlow.getAuthorizationUrl();d&&d.url&&window.location.assign(d.url)},loginWithOAuth:async()=>{if(!(t.authFlow instanceof st))throw new b("Must initialize OAuth flow before calling loginWithOAuth");let c,d;n&&a?c=await t.link():{user:c,isNewUser:d}=await t.authenticate(),p(c),v(d||!1),l(!0)},initLoginWithEmail:async c=>{let d=new bt(c);t.startAuthFlow(d),await d.sendCodeEmail()},initLoginWithSms:async c=>{let d=new Ct(c);t.startAuthFlow(d),await d.sendSmsCode()},resendEmailCode:async()=>{var c;await((c=t.authFlow)==null?void 0:c.sendCodeEmail())},resendSmsCode:async()=>{var c;await((c=t.authFlow)==null?void 0:c.sendSmsCode())},loginWithCode:async c=>{if(t.authFlow instanceof bt)t.authFlow.meta.emailCode=c.trim();else if(t.authFlow instanceof Ct)t.authFlow.meta.smsCode=c.trim();else throw new b("Must initialize a passwordless code flow first");let d,A;N?d=await t.link():{user:d,isNewUser:A}=await t.authenticate(),p(d||s||null),v(A||!1),l(!0)},refreshUser:async()=>{let c=await t.getAuthenticatedUser();return p(c),c},walletProxy:W,createAnalyticsEvent:(c,d,A)=>t.createAnalyticsEvent(c,d,A),getUsdTokenPrice:c=>t.getUsdTokenPrice(c)}))(),vc=zm(()=>({wallets:g}),[g]);return yo(Sn.Provider,{value:q,children:fc(Pi.Provider,{value:vc,children:[e.children,fc(An.Provider,{value:Bt,children:[yo(ic,{theme:{...ee.appearance.palette||{}}}),yo(pa,{appConfig:ee,data:U,setModalData:Z,initialScreen:m,visible:o,authenticated:a,children:o&&yo(cc,{})}),oe&&yo(mc,{appId:e.appId,origin:t.apiUrl,onLoad:pe,onLoadFailed:()=>null})]})]})})};export{Xe as AsExternalProvider,_o as ConnectorManager,Ao as PrivyClient,Km as PrivyProvider,V as PrivyProxyProvider,pn as VERSION,ve as WalletConnector,To as getAccessToken,D as usePrivy,Vm as useWallets};
|