@privy-io/react-auth 1.25.1-beta.1 → 1.25.1-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/index.js +134 -133
- package/dist/index.js +118 -117
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";var pc=Object.create;var cr=Object.defineProperty;var uc=Object.getOwnPropertyDescriptor;var mc=Object.getOwnPropertyNames;var fc=Object.getPrototypeOf,hc=Object.prototype.hasOwnProperty;var gc=(e,t)=>{for(var o in t)cr(e,o,{get:t[o],enumerable:!0})},Oi=(e,t,o,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of mc(t))!hc.call(e,n)&&n!==o&&cr(e,n,{get:()=>t[n],enumerable:!(r=uc(t,n))||r.enumerable});return e};var x=(e,t,o)=>(o=e!=null?pc(fc(e)):{},Oi(t||!e||!e.__esModule?cr(o,"default",{value:e,enumerable:!0}):o,e)),yc=e=>Oi(cr({},"__esModule",{value:!0}),e);var _p={};gc(_p,{AsExternalProvider:()=>Lt,ConnectorManager:()=>fo,PrivyClient:()=>go,PrivyProvider:()=>cc,PrivyProxyProvider:()=>He,VERSION:()=>pr,WalletConnector:()=>Ce,getAccessToken:()=>uo,usePrivy:()=>F});module.exports=yc(_p);var ac=require("@ethersproject/providers"),Q=require("react");var P=()=>{throw new Error("You need to wrap your application with the <PrivyProvider> initialized with your app id.")};var Ui=x(require("axios")),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}]`:""}`}},so=class extends Ke{constructor(o,r,n,i,a){super(n,i,a);this.type=o;this.status=r}},T=class extends Ke{constructor(o,r,n){super(o,r,n);this.type="client_error"}};var X=class extends Ke{constructor(o,r,n){super(o,r,n);this.type="connector_error"}},ae=e=>{if(e instanceof Ke)return e;if(!Ui.default.isAxiosError(e))return Oe(e);if(!e.response)return new so("api_error",null,e.message,e);let{type:t,message:o,error:r,code:n}=e.response.data;return new so(t||"ApiError",e.response.status,o||r,e,n)},Oe=e=>e instanceof Ke?e:e instanceof Error?new T(e.message,e):new T(`Internal error: ${e}`);var Bi=()=>"/api/v1/sessions",Fi=()=>"/api/v1/sessions/logout",Gi=()=>"/api/v1/sessions/fork",Hi=()=>"/api/v1/sessions/fork/recover",Vi=()=>"/api/v1/siwe/init",qi=()=>"/api/v1/siwe/authenticate",$i=()=>"/api/v1/siwe/link",zi=()=>"/api/v1/passwordless/init",Zi=()=>"/api/v1/passwordless/authenticate",ji=()=>"/api/v1/passwordless/link",Ki=()=>"/api/v1/passwordless_sms/init",Yi=()=>"/api/v1/passwordless_sms/authenticate",Qi=()=>"/api/v1/passwordless_sms/link",Ji=()=>"/api/v1/oauth/init",Xi=()=>"/api/v1/oauth/authenticate",ea=()=>"/api/v1/oauth/link",ta=()=>"/api/v1/siwe/unlink",oa=()=>"/api/v1/passwordless/unlink",ra=()=>"/api/v1/passwordless_sms/unlink",na=()=>"/api/v1/oauth/unlink",ia=()=>"/api/v1/analytics_events";var qt=class{constructor(t){this.meta={email:t}}async authenticate(){if(!this.api)throw new T("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new T("Email and email code must be set prior to calling authenticate.");try{let t=Zi(),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 ae(t)}}async link(){if(!this.api)throw new T("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new T("Email and email code must be set prior to calling authenticate.");try{let t=ji();return(await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode})).data}catch(t){throw ae(t)}}async sendCodeEmail(t){if(!this.api)throw new T("Auth flow has no API instance");if(t&&(this.meta.email=t),!this.meta.email)throw new T("Email must be set when initialzing authentication.");try{let o=zi();return(await this.api.post(o,{email:this.meta.email})).data}catch(o){throw ae(o)}}};var _t=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 T("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new T("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling authenticate.");if(this.meta.authorizationCode==="undefined")throw new T("User denied confirmation during OAuth flow");try{let t=Xi(),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 ae(t)}}async link(){if(!this.api)throw new T("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new T("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling link.");if(this.meta.authorizationCode==="undefined")throw new T("User denied confirmation during OAuth flow");try{let t=ea();return(await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode})).data}catch(t){throw ae(t)}}async getAuthorizationUrl(){var t;if(!this.api)throw new T("Auth flow has no API instance");if(!this.meta.provider)throw new T("Provider must be set when initialzing OAuth authentication.");try{let o=Ji();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 ae(o)}}};var St=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 T("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign(),r=await this.api.post(qi(),{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 ae(t)}}async link(){if(!this.api)throw new T("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign(),r=await this.api.post($i(),{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 ae(t)}}async promptConnect(){if(!this.api)throw new T("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 T("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 T("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 T("Auth flow has no API instance");let o=t.address,r=t.chainId,n=await this.api.post(Vi(),{address:o});return this.preparedMessage=this.walletConnector.prepareMessage(r,o,n.data.nonce),this.preparedMessage}};var $t=class{constructor(t){this.meta={phoneNumber:t}}async authenticate(){if(!this.api)throw new T("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new T("phone number and sms code must be set prior to calling authenticate.");try{let t=Yi(),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 ae(t)}}async link(){if(!this.api)throw new T("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new T("phone number and sms code must be set prior to calling authenticate.");try{let t=Qi();return(await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode})).data}catch(t){throw ae(t)}}async sendSmsCode(t){if(!this.api)throw new T("Auth flow has no API instance");if(t&&(this.meta.phoneNumber=t),!this.meta.phoneNumber)throw new T("phone nNumber must be set when initialzing authentication.");try{let o=Ki();return(await this.api.post(o,{phoneNumber:this.meta.phoneNumber})).data}catch(o){throw ae(o)}}};var Fa=require("@ethersproject/address");var aa="1.25.1-beta.1";var nt="4df5e2316331463a9130964bd6078dfa",dr="https://auth.privy.io",sa=1e4,Ue=1400,pr=aa;var lo="privy:token",ur="privy:refresh_token",No="privy:session_transfer_token",mr="privy:connectors",Wn="walletconnect",la=3e4,Be=1;var In=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)}},Mn=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 vc(){return typeof window<"u"&&window.localStorage?new Mn:new In}var K=vc();var Pa=x(require("@coinbase/wallet-sdk")),Ta=require("@ethersproject/address");var Do=require("react/jsx-runtime"),Fe=({style:e,...t})=>(0,Do.jsxs)("svg",{width:"1024",height:"1024",viewBox:"0 0 1024 1024",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"28px",width:"28px",...e},...t,children:[(0,Do.jsx)("rect",{width:"1024",height:"1024",fill:"#0052FF",rx:100,ry:100}),(0,Do.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M152 512C152 710.823 313.177 872 512 872C710.823 872 872 710.823 872 512C872 313.177 710.823 152 512 152C313.177 152 152 313.177 152 512ZM420 396C406.745 396 396 406.745 396 420V604C396 617.255 406.745 628 420 628H604C617.255 628 628 617.255 628 604V420C628 406.745 617.255 396 604 396H420Z",fill:"white"})]});var xa=require("@ethersproject/address"),Ea=require("@ethersproject/providers");var ga=require("@ethersproject/bytes"),ya=require("@ethersproject/providers"),ba=require("@ethersproject/strings"),va=x(require("eventemitter3"));var wc=["eth_sign","eth_populateTransactionRequest","eth_signTransaction","personal_sign"],ca=e=>wc.includes(e);var da=require("libphonenumber-js/min");var pa=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,}))$/),ua=e=>(0,da.isPossiblePhoneNumber)(String(e),"US"),ma=(e,t)=>{let o=e.slice(0),r=[];for(;o.length;)r.push(o.splice(0,t));return r},Ye=(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}`},Nn=e=>new Promise(t=>setTimeout(t,e)),fa=(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 Nn(o);a||i(new Error("Exceeded max attempts before resolving function"))})},fr=(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},Cc=(e,t)=>e.toLowerCase()===t.toLowerCase(),Dn=(e,t)=>{for(let o of e)if(Cc(o,t))return!0;return!1},hr=e=>e.replace(/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g,""),Oo=e=>typeof e=="string"?e:"0x"+e.toString(16);var ha=require("@ethersproject/logger");var co=class extends X{constructor(){super("Wallet timeout");this.type="wallet_error"}},Zt=class extends X{constructor(){super("User rejected connection");this.type="wallet_error"}},Ge=e=>{if(e instanceof X)return e;if((e==null?void 0:e.code)&&(e==null?void 0:e.reason)){let t=new po(e);return e.code===ha.ErrorCode.ACTION_REJECTED&&(t.details=zt.E4001_USER_REJECTED_REQUEST),t}return e!=null&&e.code?new po(e):new X("Unknown connector error",e)},On=class extends Ke{constructor(o,r,n){super(o);this.type="provider_error";this.code=r,this.data=n}},po=class extends On{constructor(o){var i,a,s;let r=o;super(r.message,r.code,r.data);let n=Object.values(zt).find(l=>l.eipCode===r.code);this.details=n||zt.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=zt.E32002_CONNECTION_ALREADY_PENDING:this.details=zt.E32002_REQUEST_ALREADY_PENDING:(s=r.message)!=null&&s.includes("Already processing")&&r.message.includes("eth_requestAccounts")&&(this.details=zt.E32002_WALLET_LOCKED))}},xc={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}},Ec={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}},Pc={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}},zt={UNKNOWN_ERROR:{eipCode:0,message:"Unknown error",detail:"Unknown error",retryable:!0},...Pc,...Ec},jt={...xc,...zt};var Tc=12e4,Un=(e=new co,t=Tc)=>new Promise((o,r)=>setTimeout(()=>{r(e)},t)),He=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 X(`A wallet request of type ${t.method} was made before setting a wallet provider.`);return Promise.race([this.walletProvider.request(t),Un()]).catch(o=>{throw Ge(o)})}},Kt=class extends Error{constructor(o,r,n){super(o);this.code=r,this.data=n}},gr=class extends va.default{constructor(o,r,n=1){super();this.walletProxy=o,this.address=r,this.chainId=n,this.infuraProvider=new ya.InfuraProvider(n,nt)}async handleSendTransaction(o){if(!o.params||!Array.isArray(o.params))throw new Kt(`Invalid params for ${o.method}`,4200);let r=o.params[0];if(!await uo()||!this.address)throw new Kt("Disconnected",4900);return(await Ca(r)).transactionHash}handleSwitchEthereumChain(o){if(!o.params||!Array.isArray(o.params))throw new Kt(`Invalid params for ${o.method}`,4200);let r=o.params[0];this.chainId=Number(r),this.emit("chainChanged",r)}async handlePersonalSign(o){if(!o.params||!Array.isArray(o.params))throw new Error("Invalid params for eth_estimateGas");let r=o.params[0],n=(0,ga.isHexString)(r)?(0,ba.toUtf8String)(r):r;return await wa(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:Oo(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 Oo(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(ca(o.method)){let r=await uo();if(!r||!this.address)throw new Kt("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 Kt("Disconnected",4900)}}else return this.infuraProvider.send(o.method,o.params)}async connect(){let o=await uo();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}}},Lt=class extends He{constructor(o){super(o)}},yr=class extends He{constructor(t){super(t)}sendAsync(t,o){throw new Error("sendAsync is no longer supported by EIP-1193. Use the request method instead.")}};var Ce=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
|
+
"use strict";var pc=Object.create;var cr=Object.defineProperty;var uc=Object.getOwnPropertyDescriptor;var mc=Object.getOwnPropertyNames;var fc=Object.getPrototypeOf,hc=Object.prototype.hasOwnProperty;var gc=(e,t)=>{for(var o in t)cr(e,o,{get:t[o],enumerable:!0})},Ui=(e,t,o,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of mc(t))!hc.call(e,n)&&n!==o&&cr(e,n,{get:()=>t[n],enumerable:!(r=uc(t,n))||r.enumerable});return e};var x=(e,t,o)=>(o=e!=null?pc(fc(e)):{},Ui(t||!e||!e.__esModule?cr(o,"default",{value:e,enumerable:!0}):o,e)),yc=e=>Ui(cr({},"__esModule",{value:!0}),e);var _1={};gc(_1,{AsExternalProvider:()=>kt,ConnectorManager:()=>fo,PrivyClient:()=>go,PrivyProvider:()=>cc,PrivyProxyProvider:()=>Ve,VERSION:()=>pr,WalletConnector:()=>Ce,getAccessToken:()=>uo,usePrivy:()=>B});module.exports=yc(_1);var ac=require("@ethersproject/providers"),Q=require("react");var P=()=>{throw new Error("You need to wrap your application with the <PrivyProvider> initialized with your app id.")};var Bi=x(require("axios")),Ze=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}]`:""}`}},so=class extends Ze{constructor(o,r,n,i,a){super(n,i,a);this.type=o;this.status=r}},T=class extends Ze{constructor(o,r,n){super(o,r,n);this.type="client_error"}};var X=class extends Ze{constructor(o,r,n){super(o,r,n);this.type="connector_error"}},ae=e=>{if(e instanceof Ze)return e;if(!Bi.default.isAxiosError(e))return Ue(e);if(!e.response)return new so("api_error",null,e.message,e);let{type:t,message:o,error:r,code:n}=e.response.data;return new so(t||"ApiError",e.response.status,o||r,e,n)},Ue=e=>e instanceof Ze?e:e instanceof Error?new T(e.message,e):new T(`Internal error: ${e}`);var Fi=()=>"/api/v1/sessions",Gi=()=>"/api/v1/sessions/logout",Hi=()=>"/api/v1/sessions/fork",Vi=()=>"/api/v1/sessions/fork/recover",zi=()=>"/api/v1/siwe/init",qi=()=>"/api/v1/siwe/authenticate",$i=()=>"/api/v1/siwe/link",ji=()=>"/api/v1/passwordless/init",Ki=()=>"/api/v1/passwordless/authenticate",Zi=()=>"/api/v1/passwordless/link",Yi=()=>"/api/v1/passwordless_sms/init",Qi=()=>"/api/v1/passwordless_sms/authenticate",Ji=()=>"/api/v1/passwordless_sms/link",Xi=()=>"/api/v1/oauth/init",ea=()=>"/api/v1/oauth/authenticate",ta=()=>"/api/v1/oauth/link",oa=()=>"/api/v1/siwe/unlink",ra=()=>"/api/v1/passwordless/unlink",na=()=>"/api/v1/passwordless_sms/unlink",ia=()=>"/api/v1/oauth/unlink",aa=()=>"/api/v1/analytics_events";var zt=class{constructor(t){this.meta={email:t}}async authenticate(){if(!this.api)throw new T("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new T("Email and email code must be set prior to calling authenticate.");try{let t=Ki(),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 ae(t)}}async link(){if(!this.api)throw new T("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new T("Email and email code must be set prior to calling authenticate.");try{let t=Zi();return(await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode})).data}catch(t){throw ae(t)}}async sendCodeEmail(t){if(!this.api)throw new T("Auth flow has no API instance");if(t&&(this.meta.email=t),!this.meta.email)throw new T("Email must be set when initialzing authentication.");try{let o=ji();return(await this.api.post(o,{email:this.meta.email})).data}catch(o){throw ae(o)}}};var _t=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 T("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new T("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling authenticate.");if(this.meta.authorizationCode==="undefined")throw new T("User denied confirmation during OAuth flow");try{let t=ea(),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 ae(t)}}async link(){if(!this.api)throw new T("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new T("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling link.");if(this.meta.authorizationCode==="undefined")throw new T("User denied confirmation during OAuth flow");try{let t=ta();return(await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode})).data}catch(t){throw ae(t)}}async getAuthorizationUrl(){var t;if(!this.api)throw new T("Auth flow has no API instance");if(!this.meta.provider)throw new T("Provider must be set when initialzing OAuth authentication.");try{let o=Xi();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 ae(o)}}};var St=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 T("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign(),r=await this.api.post(qi(),{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 ae(t)}}async link(){if(!this.api)throw new T("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign(),r=await this.api.post($i(),{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 ae(t)}}async promptConnect(){if(!this.api)throw new T("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 T("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 T("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 T("Auth flow has no API instance");let o=t.address,r=t.chainId,n=await this.api.post(zi(),{address:o});return this.preparedMessage=this.walletConnector.prepareMessage(r,o,n.data.nonce),this.preparedMessage}};var qt=class{constructor(t){this.meta={phoneNumber:t}}async authenticate(){if(!this.api)throw new T("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new T("phone number and sms code must be set prior to calling authenticate.");try{let t=Qi(),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 ae(t)}}async link(){if(!this.api)throw new T("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new T("phone number and sms code must be set prior to calling authenticate.");try{let t=Ji();return(await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode})).data}catch(t){throw ae(t)}}async sendSmsCode(t){if(!this.api)throw new T("Auth flow has no API instance");if(t&&(this.meta.phoneNumber=t),!this.meta.phoneNumber)throw new T("phone nNumber must be set when initialzing authentication.");try{let o=Yi();return(await this.api.post(o,{phoneNumber:this.meta.phoneNumber})).data}catch(o){throw ae(o)}}};var Ga=require("@ethersproject/address");var sa="1.25.1-beta.3";var nt="4df5e2316331463a9130964bd6078dfa",dr="https://auth.privy.io",la=1e4,Be=1400,pr=sa;var lo="privy:token",ur="privy:refresh_token",No="privy:session_transfer_token",mr="privy:connectors",Ln="walletconnect",ca=3e4,Fe=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)}},Nn=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 vc(){return typeof window<"u"&&window.localStorage?new Nn:new Mn}var Z=vc();var Ta=x(require("@coinbase/wallet-sdk")),Aa=require("@ethersproject/address");var Do=require("react/jsx-runtime"),Ge=({style:e,...t})=>(0,Do.jsxs)("svg",{width:"1024",height:"1024",viewBox:"0 0 1024 1024",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"28px",width:"28px",...e},...t,children:[(0,Do.jsx)("rect",{width:"1024",height:"1024",fill:"#0052FF",rx:100,ry:100}),(0,Do.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M152 512C152 710.823 313.177 872 512 872C710.823 872 872 710.823 872 512C872 313.177 710.823 152 512 152C313.177 152 152 313.177 152 512ZM420 396C406.745 396 396 406.745 396 420V604C396 617.255 406.745 628 420 628H604C617.255 628 628 617.255 628 604V420C628 406.745 617.255 396 604 396H420Z",fill:"white"})]});var Ea=require("@ethersproject/address"),Pa=require("@ethersproject/providers");var ya=require("@ethersproject/bytes"),ba=require("@ethersproject/providers"),va=require("@ethersproject/strings"),wa=x(require("eventemitter3"));var wc=["eth_sign","eth_populateTransactionRequest","eth_signTransaction","personal_sign"],da=e=>wc.includes(e);var pa=require("libphonenumber-js/min");var ua=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,}))$/),ma=e=>(0,pa.isPossiblePhoneNumber)(String(e),"US"),fa=(e,t)=>{let o=e.slice(0),r=[];for(;o.length;)r.push(o.splice(0,t));return r},Ye=(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}`},Dn=e=>new Promise(t=>setTimeout(t,e)),ha=(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 Dn(o);a||i(new Error("Exceeded max attempts before resolving function"))})},fr=(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},Cc=(e,t)=>e.toLowerCase()===t.toLowerCase(),On=(e,t)=>{for(let o of e)if(Cc(o,t))return!0;return!1},hr=e=>e.replace(/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g,""),Oo=e=>typeof e=="string"?e:"0x"+e.toString(16);var ga=require("@ethersproject/logger");var co=class extends X{constructor(){super("Wallet timeout");this.type="wallet_error"}},jt=class extends X{constructor(){super("User rejected connection");this.type="wallet_error"}},He=e=>{if(e instanceof X)return e;if((e==null?void 0:e.code)&&(e==null?void 0:e.reason)){let t=new po(e);return e.code===ga.ErrorCode.ACTION_REJECTED&&(t.details=$t.E4001_USER_REJECTED_REQUEST),t}return e!=null&&e.code?new po(e):new X("Unknown connector error",e)},Un=class extends Ze{constructor(o,r,n){super(o);this.type="provider_error";this.code=r,this.data=n}},po=class extends Un{constructor(o){var i,a,s;let r=o;super(r.message,r.code,r.data);let n=Object.values($t).find(l=>l.eipCode===r.code);this.details=n||$t.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=$t.E32002_CONNECTION_ALREADY_PENDING:this.details=$t.E32002_REQUEST_ALREADY_PENDING:(s=r.message)!=null&&s.includes("Already processing")&&r.message.includes("eth_requestAccounts")&&(this.details=$t.E32002_WALLET_LOCKED))}},xc={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}},Ec={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}},Pc={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}},$t={UNKNOWN_ERROR:{eipCode:0,message:"Unknown error",detail:"Unknown error",retryable:!0},...Pc,...Ec},Kt={...xc,...$t};var Tc=12e4,Bn=(e=new co,t=Tc)=>new Promise((o,r)=>setTimeout(()=>{r(e)},t)),Ve=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 X(`A wallet request of type ${t.method} was made before setting a wallet provider.`);return Promise.race([this.walletProvider.request(t),Bn()]).catch(o=>{throw He(o)})}},Zt=class extends Error{constructor(o,r,n){super(o);this.code=r,this.data=n}},gr=class extends wa.default{constructor(o,r,n=1){super();this.walletProxy=o,this.address=r,this.chainId=n,this.infuraProvider=new ba.InfuraProvider(n,nt)}async handleSendTransaction(o){if(!o.params||!Array.isArray(o.params))throw new Zt(`Invalid params for ${o.method}`,4200);let r=o.params[0];if(!await uo()||!this.address)throw new Zt("Disconnected",4900);return(await xa(r)).transactionHash}handleSwitchEthereumChain(o){if(!o.params||!Array.isArray(o.params))throw new Zt(`Invalid params for ${o.method}`,4200);let r=o.params[0];this.chainId=Number(r),this.emit("chainChanged",r)}async handlePersonalSign(o){if(!o.params||!Array.isArray(o.params))throw new Error("Invalid params for eth_estimateGas");let r=o.params[0],n=(0,ya.isHexString)(r)?(0,va.toUtf8String)(r):r;return await Ca(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:Oo(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 Oo(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(da(o.method)){let r=await uo();if(!r||!this.address)throw new Zt("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 Zt("Disconnected",4900)}}else return this.infuraProvider.send(o.method,o.params)}async connect(){let o=await uo();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}}},kt=class extends Ve{constructor(o){super(o)}},yr=class extends Ve{constructor(t){super(t)}sendAsync(t,o){throw new Error("sendAsync is no longer supported by EIP-1193. Use the request method instead.")}};var Ce=class{constructor(t,o,r){this.createSiweMessage=(t,o,r,n,i,a,s)=>`${r} wants you to sign in with your Ethereum account:
|
|
2
2
|
${o}
|
|
3
3
|
|
|
4
4
|
${s}
|
|
@@ -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=(0,xa.getAddress)(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 Ea.Web3Provider(new Lt(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 Ac=e=>{let t=`https://mainnet.infura.io/v3/${nt}`,o=1;return e.makeWeb3Provider(t,o)},br,vr=class extends Ce{constructor(o,r){super("coinbase_wallet",o,r);this.proxyProvider=o,br||(br=new Pa.default({appName:"Privy",darkMode:!1,headlessMode:!1}))}async connect(o){return this.proxyProvider.setWalletProvider(Ac(br)),o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}disconnect(){br.disconnect()}async isConnected(){return await this.fetchAddress()!==null}get walletBranding(){return{name:"Coinbase Wallet",icon:Fe}}async promptConnection(){try{let o="",r=await this.proxyProvider.request({method:"eth_requestAccounts"});if(r.length>0&&(o=(0,Ta.getAddress)(r[0])),!o||o==="")throw new X("Unable to retrieve address");this.connected=!0}catch(o){throw Ge(o)}}};var Bn=require("react/jsx-runtime"),kt=({style:e,...t})=>(0,Bn.jsx)("svg",{width:"16",height:"17",viewBox:"0 0 16 17",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"1.25rem",width:"1.25rem",...e},...t,children:(0,Bn.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.99555 0.929932C-1.12055 1.31799 -0.499722 9.15734 2.17445 8.76915C0.0807959 10.5544 -0.960455 16.6416 6.01654 16.0265C10.6356 15.9489 15.5635 12.2232 15.5635 8.1095C15.5635 2.63748 10.7516 0.929932 7.99555 0.929932ZM9.47052 7.53055C9.47052 8.49933 8.81856 9.28468 8.01433 9.28468C7.2101 9.28468 6.55814 8.49933 6.55814 7.53055C6.55814 6.56176 7.2101 5.77641 8.01433 5.77641C8.81856 5.77641 9.47052 6.56176 9.47052 7.53055ZM12.3171 9.28468C13.1213 9.28468 13.7733 8.49933 13.7733 7.53055C13.7733 6.56176 13.1213 5.77641 12.3171 5.77641C11.5129 5.77641 10.8609 6.56176 10.8609 7.53055C10.8609 8.49933 11.5129 9.28468 12.3171 9.28468Z",fill:t.color||"var(--privy-color-foreground-3)"})});var wr=class extends Ce{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=Oo(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:kt}}disconnect(){this.connected=!1}async promptConnection(){}};var Cr=require("@ethersproject/address"),Fn=require("@ethersproject/providers"),Aa=require("react-device-detect");var fe=require("react/jsx-runtime"),Ve=({style:e,...t})=>(0,fe.jsxs)("svg",{width:"28",height:"28",viewBox:"0 0 28 28",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"28px",width:"28px",...e},...t,children:[(0,fe.jsx)("rect",{width:"28",height:"28",rx:"3",fill:"white"}),(0,fe.jsx)("path",{d:"M23.0126 5L15.1958 10.7823L16.6533 7.37359L23.0126 5Z",fill:"#E17726",stroke:"#E17726",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,fe.jsx)("path",{d:"M4.98753 5L12.7329 10.8299L11.3468 7.37954L4.98753 5ZM20.1987 18.4027L18.1166 21.5794L22.5723 22.8049L23.8454 18.4741L20.1987 18.4027ZM4.16064 18.4741L5.42775 22.8049L9.87153 21.5794L7.80133 18.4027L4.16064 18.4741Z",fill:"#E27625",stroke:"#E27625",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,fe.jsx)("path",{d:"M9.6336 13.0369L8.39624 14.9049L12.7984 15.1071L12.6556 10.3659L9.6336 13.0429V13.0369ZM18.3665 13.0429L15.2969 10.3064L15.1958 15.1071L19.5979 14.9049L18.3665 13.0429ZM9.87155 21.5794L12.5426 20.2945L10.2463 18.5098L9.87155 21.5794ZM15.4635 20.2886L18.1166 21.5794L17.7597 18.5039L15.4635 20.2886Z",fill:"#E27625",stroke:"#E27625",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,fe.jsx)("path",{d:"M18.1167 21.5794L15.4635 20.2944L15.6776 22.0196L15.6539 22.7513L18.1167 21.5794ZM9.87158 21.5794L12.3463 22.7513L12.3285 22.0196L12.5426 20.2944L9.87158 21.5794Z",fill:"#D5BFB2",stroke:"#D5BFB2",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,fe.jsx)("path",{d:"M12.3878 17.3616L10.1868 16.7191L11.7454 16.0052L12.3938 17.3616H12.3878ZM15.6062 17.3616L16.2605 15.9993L17.8251 16.7131L15.6062 17.3675V17.3616Z",fill:"#233447",stroke:"#233447",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,fe.jsx)("path",{d:"M9.87147 21.5794L10.2581 18.4027L7.80127 18.4741L9.87147 21.5794ZM17.7418 18.4027L18.1166 21.5794L20.1987 18.4741L17.7418 18.4027ZM19.6038 14.9048L15.2016 15.107L15.6061 17.3676L16.2605 15.9994L17.8251 16.7132L19.6038 14.9048ZM10.1868 16.7192L11.7454 16.0053L12.3938 17.3617L12.8042 15.1011L8.4021 14.9048L10.1868 16.7192Z",fill:"#CC6228",stroke:"#CC6228",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,fe.jsx)("path",{d:"M8.4021 14.9048L10.2462 18.5038L10.1868 16.7192L8.4021 14.9048ZM17.8251 16.7192L17.7537 18.5038L19.5978 14.9048L17.8251 16.7192ZM12.8042 15.107L12.3878 17.3676L12.9113 20.0327L13.0303 16.5169L12.8042 15.107ZM15.1957 15.107L14.9815 16.511L15.0886 20.0327L15.6061 17.3617L15.1957 15.1011V15.107Z",fill:"#E27525",stroke:"#E27525",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,fe.jsx)("path",{d:"M15.6062 17.3617L15.0887 20.0327L15.4635 20.2945L17.7538 18.5098L17.8252 16.7192L15.6062 17.3617ZM10.1869 16.7192L10.2463 18.5039L12.5426 20.2885L12.9114 20.0327L12.3939 17.3617L10.1809 16.7192H10.1869Z",fill:"#F5841F",stroke:"#F5841F",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,fe.jsx)("path",{d:"M15.6598 22.7513L15.6776 22.0196L15.4754 21.853H12.5248L12.3285 22.0196L12.3463 22.7513L9.87158 21.5793L10.7401 22.2932L12.495 23.5008H15.4992L17.26 22.2873L18.1167 21.5793L15.6539 22.7513H15.6598Z",fill:"#C0AC9D",stroke:"#C0AC9D",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,fe.jsx)("path",{d:"M15.4634 20.2885L15.0886 20.0327H12.9114L12.5425 20.2945L12.3284 22.0196L12.5247 21.8531H15.4753L15.6776 22.0196L15.4634 20.2945V20.2885Z",fill:"#161616",stroke:"#161616",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,fe.jsx)("path",{d:"M23.3456 11.1571L24 7.97442L23.0125 5L15.4575 10.5919L18.3664 13.0369L22.4711 14.2326L23.3754 13.1797L22.9827 12.8941L23.6074 12.323L23.1315 11.9542L23.7561 11.4783L23.3397 11.1571H23.3456ZM4 7.96847L4.66627 11.1571L4.23795 11.4723L4.87448 11.9482L4.39857 12.323L5.01725 12.8941L4.62463 13.1797L5.52885 14.2326L9.63355 13.0428L12.5425 10.586L4.98751 5L4 7.96847Z",fill:"#763E1A",stroke:"#763E1A",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"}),(0,fe.jsx)("path",{d:"M22.4712 14.2325L18.3665 13.0428L19.6038 14.9048L17.7597 18.5038L20.1987 18.4741H23.8454L22.4712 14.2325ZM9.63358 13.0368L5.52888 14.2325L4.16064 18.4741H7.80728L10.2463 18.5038L8.40217 14.9048L9.63953 13.0368H9.63358ZM15.1957 15.107L15.4634 10.5859L16.6532 7.37354H11.3468L12.5366 10.5859L12.8043 15.107L12.9054 16.5229V20.0327H15.0887L15.1006 16.5229L15.1957 15.107Z",fill:"#F5841F",stroke:"#F5841F",strokeWidth:"0.25",strokeLinecap:"round",strokeLinejoin:"round"})]});var _a=async()=>{let t=await new Fn.Web3Provider(window.ethereum).listAccounts();return t.length===0?null:(0,Cr.getAddress)(t[0])},xr=class extends Ce{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 Fn.Web3Provider(this.proxyProvider).listAccounts();return r.length===0?null:(0,Cr.getAddress)(r[0])}get walletBranding(){return{name:"MetaMask",icon:Ve}}disconnect(){console.warn("Metamask does not support programmatic disconnect.")}async promptConnection(){try{let o="";if(!Aa.isMobile&&Sa()&&(await this.proxyProvider.request({method:"wallet_requestPermissions",params:[{eth_accounts:{}}]}),this.address&&!await this.isConnected()))throw new X("Selected the wrong wallet in MetaMask");let r=await this.proxyProvider.request({method:"eth_requestAccounts"});if(r.length>0&&(o=(0,Cr.getAddress)(r[0])),!o||o==="")throw new X("Unable to retrieve address");if(this.address&&o!==this.address)return;this.connected=!0,this.address=o}catch(o){throw Ge(o)}}async setActive(){if(await this.connectedMetamaskAddress()===this.address)return this.connected=!0,!0;for(;!await this.isConnected();)await Nn(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})}};var Gn=require("@ethersproject/address"),La=require("@ethersproject/providers");var qe=require("react/jsx-runtime"),it=({style:e,...t})=>(0,qe.jsxs)("svg",{width:"28",height:"28",viewBox:"0 0 28 28",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"28px",width:"28px",...e},...t,children:[(0,qe.jsx)("rect",{width:"28",height:"28",rx:"6",fill:"url(#paint0_linear_1765_9937)"}),(0,qe.jsx)("path",{d:"M24.0223 14.1704H21.5542C21.5542 9.14083 17.4627 5.06372 12.4151 5.06372C7.43008 5.06372 3.37717 9.04101 3.27798 13.9845C3.17536 19.0945 7.98653 23.5318 13.1154 23.5318H13.7605C18.2822 23.5318 24.3426 20.0047 25.2895 15.7072C25.4643 14.9151 24.8364 14.1704 24.0223 14.1704ZM8.74752 14.3945C8.74752 15.0671 8.19544 15.6172 7.52045 15.6172C6.84545 15.6172 6.29341 15.0669 6.29341 14.3945V12.4165C6.29341 11.7439 6.84545 11.1938 7.52045 11.1938C8.19544 11.1938 8.74752 11.7439 8.74752 12.4165V14.3945ZM13.0083 14.3945C13.0083 15.0671 12.4563 15.6172 11.7813 15.6172C11.1063 15.6172 10.5543 15.0669 10.5543 14.3945V12.4165C10.5543 11.7439 11.1065 11.1938 11.7813 11.1938C12.4563 11.1938 13.0083 11.7439 13.0083 12.4165V14.3945Z",fill:"url(#paint1_linear_1765_9937)"}),(0,qe.jsxs)("defs",{children:[(0,qe.jsxs)("linearGradient",{id:"paint0_linear_1765_9937",x1:"14",y1:"0",x2:"14",y2:"28",gradientUnits:"userSpaceOnUse",children:[(0,qe.jsx)("stop",{stopColor:"#534BB1"}),(0,qe.jsx)("stop",{offset:"1",stopColor:"#551BF9"})]}),(0,qe.jsxs)("linearGradient",{id:"paint1_linear_1765_9937",x1:"14.2976",y1:"5.06372",x2:"14.2976",y2:"23.5318",gradientUnits:"userSpaceOnUse",children:[(0,qe.jsx)("stop",{stopColor:"white"}),(0,qe.jsx)("stop",{offset:"1",stopColor:"white",stopOpacity:"0.82"})]})]})]});var Er=class extends Ce{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 La.Web3Provider(this.proxyProvider).listAccounts();return r.length===0?null:(0,Gn.getAddress)(r[0])}get walletBranding(){return{name:"Phantom",icon:it}}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=(0,Gn.getAddress)(r[0])),!o||o==="")throw new X("Unable to retrieve address");this.connected=!0,this.address=o}catch(o){throw Ge(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})}};var Ba=x(require("@walletconnect/web3-provider")),$n=require("react-device-detect");var Qe=require("react");var Ra=require("react/jsx-runtime");function ka(e){return(0,Ra.jsx)("link",{rel:"prefetch",href:e.src})}var Pr=require("react/jsx-runtime"),ht="LANDING",Wa=(0,Qe.createContext)({ready:!1,app:null,currentScreen:ht,lastScreen:ht,navigate:P,navigateBack:P,setModalData:P}),Ia=e=>{var m,g,b;let t=e.appConfig,o=e.authenticated,r=e.visible,[n,i]=(0,Qe.useState)(e.initialScreen||ht),[a,s]=(0,Qe.useState)(e.initialScreen||ht);(0,Qe.useEffect)(()=>{o||i(ht)},[o]),(0,Qe.useEffect)(()=>{r||(s(ht),i(ht))},[r]),(0,Qe.useEffect)(()=>{e.initialScreen&&n===ht&&(i(e.initialScreen),s(e.initialScreen))},[e.initialScreen]);let l=e.initialScreen&&n===ht?e.initialScreen:n,d={ready:!!(t!=null&&t.id),app:t,data:e.data,setModalData:e.setModalData,currentScreen:l,lastScreen:a,navigate:w=>{s(n),i(w)},navigateBack:()=>{i(a)}};return(0,Pr.jsxs)(Wa.Provider,{value:d,children:[(typeof((m=t==null?void 0:t.appearance)==null?void 0:m.logo)=="string"||((b=(g=t==null?void 0:t.appearance)==null?void 0:g.logo)==null?void 0:b.type)==="img")&&(0,Pr.jsx)(ka,{src:typeof t.appearance.logo=="string"?t.appearance.logo:t.appearance.logo.props.src}),e.children]})},v=()=>(0,Qe.useContext)(Wa);var gt=require("react/jsx-runtime"),mo=({style:e,...t})=>{let{app:o}=v();return(0,gt.jsxs)("svg",{width:"28",height:"28",viewBox:"0 0 28 28",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"28px",width:"28px",...e},...t,children:[(0,gt.jsx)("rect",{width:"28",height:"28",rx:"3",fill:(o==null?void 0:o.appearance.palette.colorScheme)==="dark"?"#3396ff":"#141414"}),(0,gt.jsx)("g",{clipPath:"url(#clip0_1765_9946)",children:(0,gt.jsx)("path",{d:"M8.09448 10.3941C11.3558 7.20196 16.6442 7.20196 19.9055 10.3941L20.2982 10.7782C20.3369 10.8157 20.3677 10.8606 20.3887 10.9102C20.4097 10.9599 20.4206 11.0132 20.4206 11.0671C20.4206 11.121 20.4097 11.1744 20.3887 11.224C20.3677 11.2737 20.3369 11.3186 20.2982 11.3561L18.9554 12.6702C18.9158 12.7086 18.8628 12.7301 18.8077 12.7301C18.7526 12.7301 18.6996 12.7086 18.66 12.6702L18.1198 12.1415C15.8448 9.91503 12.1557 9.91503 9.88015 12.1415L9.30167 12.7075C9.26207 12.7459 9.20909 12.7673 9.15395 12.7673C9.0988 12.7673 9.04582 12.7459 9.00622 12.7075L7.66346 11.3934C7.62475 11.3559 7.59397 11.3109 7.57295 11.2613C7.55193 11.2117 7.5411 11.1583 7.5411 11.1044C7.5411 11.0505 7.55193 10.9971 7.57295 10.9475C7.59397 10.8979 7.62475 10.8529 7.66346 10.8154L8.09448 10.3941ZM22.6829 13.1115L23.8776 14.2814C23.9163 14.319 23.9471 14.3639 23.9681 14.4135C23.9892 14.4632 24 14.5165 24 14.5704C24 14.6243 23.9892 14.6777 23.9681 14.7273C23.9471 14.777 23.9163 14.8219 23.8776 14.8594L18.4893 20.1332C18.4102 20.2101 18.3042 20.2531 18.1938 20.2531C18.0835 20.2531 17.9775 20.2101 17.8984 20.1332L14.0743 16.3901C14.0545 16.3708 14.0279 16.36 14.0003 16.36C13.9726 16.36 13.9461 16.3708 13.9263 16.3901L10.1021 20.1332C10.023 20.2101 9.91703 20.2531 9.8067 20.2531C9.69636 20.2531 9.59038 20.2101 9.51124 20.1332L4.12236 14.8594C4.08365 14.8219 4.05287 14.777 4.03185 14.7273C4.01083 14.6777 4 14.6243 4 14.5704C4 14.5165 4.01083 14.4632 4.03185 14.4135C4.05287 14.3639 4.08365 14.319 4.12236 14.2814L5.31767 13.1115C5.39678 13.0348 5.50265 12.9919 5.61285 12.9919C5.72305 12.9919 5.82892 13.0348 5.90803 13.1115L9.73216 16.8546C9.75194 16.874 9.7785 16.8848 9.80616 16.8848C9.83381 16.8848 9.86037 16.874 9.88015 16.8546L13.7043 13.1115C13.7834 13.0346 13.8894 12.9916 13.9997 12.9916C14.1101 12.9916 14.216 13.0346 14.2952 13.1115L18.1198 16.8546C18.1396 16.874 18.1662 16.8848 18.1938 16.8848C18.2215 16.8848 18.2481 16.874 18.2678 16.8546L22.092 13.1115C22.1711 13.0346 22.2771 12.9916 22.3874 12.9916C22.4977 12.9916 22.6037 13.0346 22.6829 13.1115Z",fill:"white"})}),(0,gt.jsx)("defs",{children:(0,gt.jsx)("clipPath",{id:"clip0_1765_9946",children:(0,gt.jsx)("rect",{width:"20",height:"12.2531",fill:"white",transform:"translate(4 8)"})})})]})};var Hn=require("@walletconnect/browser-utils"),Tr=require("react-device-detect");var Ar="c57ca95b47569778a828d19178114f4db188b89b763c899ba0be274e97267d96",Vn=e=>{let t=hr(e).trim().toLowerCase();for(let[o,r]of Object.entries(Uo))if(r.name.toLowerCase()===t)return{id:o,entry:r}},Uo={"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"}}},Ma=(e,t="md")=>`https://registry.walletconnect.com/v2/logo/${t}/${e}`;function Na(e){return{name:e.name||"",universalLink:e.mobile.universal||"",deepLink:e.mobile.native||""}}function Da(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 Oa(e,t){return Tr.isAndroid?e:Da(e,Na(Uo[t]))}var _r=(e,t)=>{if(!e)return;if(Tr.isAndroid){(0,Hn.saveMobileLinkInfo)({name:"Unknown",href:t||"wc:"});return}let o=Uo[e];if(!o){console.warn("Attempted to set info for unknown wallet",e);return}let r=Da(t||"wc:",Na(o));(0,Hn.saveMobileLinkInfo)({name:(o==null?void 0:o.name)||"",href:r})},Ua=()=>{!Tr.isAndroid||window.open("wc:","_self")};var qn=class extends Ce{constructor(o,r,n){super("wallet_connect",r,n);this.proxyProvider=r,this.connectionManager=o}setActive(){return this.walletProvider.walletId&&_r(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=Uo[this.walletProvider.walletId];return{name:i.name,icon:this.walletProvider.walletId===Ar?Ve:Ma(i.image_id)}}return{name:hr(((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])||mo}}async promptConnection(){return new Promise((o,r)=>{this.walletProvider.connector.on("disconnect",(i,a)=>{if(i){r(Ge(i));return}a.params.some(s=>s.message==="Session Rejected")&&(this.setWalletProvider(this.connectionManager.replaceProvider(this,this.walletProvider)),r(new Zt)),r(new X("Unknown error during connection"))}),this.walletProvider.qrcode&&this.walletProvider.connector.on("modal_closed",()=>{this.setWalletProvider(this.connectionManager.replaceProvider(this,this.walletProvider)),r(new Zt)}),this.walletProvider.connector.on("transport_error",(i,a)=>{r(Ge(i))}),(async()=>{let i="",a=await Promise.race([this.connectionManager.enableProvider(this.walletProvider),Un()]);if(a.length>0&&(i=a[0]),!i||i==="")throw new X("Unable to retrieve address");this.connected=!0,o()})().catch(i=>r(Ge(i)))})}async sign(o){_r(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)),$n.isAndroid&&Ua()})}disconnect(){this.walletProvider.close().catch(()=>console.warn("Unable to disconnect wallet provider"))}get walletProvider(){return this.proxyProvider.walletProvider}setWalletProvider(o){this.proxyProvider.setWalletProvider(o)}},Sr=class{constructor(){this._storageIdToProvider={},this.reconnectDelayMs=10,this.reconnectBackoff=2,!(typeof window>"u")&&K.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=K.get(t))==null?void 0:o.peerMeta)==null?void 0:r.name;if(i){let a=Vn(i);a!=null&&a.id&&(n=a.id)}}this.createProviderWithStorageId(t,n)}})}createConnector(t,o,r){let n=this.getProviderForAddress(o,r),i=new qn(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=K.getKeys().filter(i=>i.startsWith("walletconnect"));if(o){let i=r.filter(a=>a.includes(o));if(i){let a=i.find(s=>Dn(K.get(s).accounts,t));if(a)return a}}let n=r.find(i=>Dn(K.get(i).accounts,t));if(!(n&&o&&!n.includes(o)))return n}getProviderForAddress(t,o){let r=this.getStorageId(t,o);r||(r=`${Wn}:${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 Ba.default({infuraId:nt,storageId:t,pollingInterval:la,...r});return n.walletId=o,o?n.connector.on("display_uri",(i,a)=>{_r(o);let s=a.params[0],l=Oa(s,o);$n.isAndroid?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=Vn((a=n.walletMeta)==null?void 0:a.name))==null?void 0:s.id)}),this._storageIdToProvider[t]=n,n}createProvider(t,o){let r=`${Wn}:${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 Sa=()=>{if(!window.ethereum)return!1;if(Lr(window.ethereum,!0))return!0;if(window.ethereum.providers){for(let e of window.ethereum.providers)if(Lr(e,!0))return!0}return!1},zn=()=>{if(!window.ethereum)return!1;if(Lr(window.ethereum,!1))return!0;if(window.ethereum.providers){for(let e of window.ethereum.providers)if(Lr(e,!1))return!0}return!1},Lr=(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,Rt=()=>{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},ho=()=>{if(!window.ethereum)return!1;if(window.ethereum.isCoinbaseWallet)return!0;if(window.ethereum.providers){for(let e of window.ethereum.providers)if(e.isCoinbaseWallet)return!0}return!1},Zn=e=>{let t=localStorage.getItem("-walletlink:https://www.walletlink.org:Addresses");return t?!!(e==null?void 0:e.linkedAccounts.filter(r=>r.type=="wallet"&&r.address===(0,Fa.getAddress)(t)).length):!1},Ga=()=>{var t;let e=K.get(mr);return e?(t=e.find(o=>o.active))==null?void 0:t.address:null},fo=class{constructor(){this.getEthereumProvider=()=>{var t;return((t=this.activeWalletConnector)==null?void 0:t.proxyProvider)||new He};this.walletConnectors=[],this.wcConnectionManager=new Sr,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(){(K.get(mr)||[]).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}});K.put(mr,t)}addEmbeddedWalletConnector(t,o){let r=new gr(t,o),n=new wr(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 X("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 xr(new He,o);case"phantom":return new Er(new He,o);case"coinbase_wallet":return new vr(new He,o);case"wallet_connect":return this.wcConnectionManager.createConnector(new He,o,r);case"embedded":throw new Error("This method should not be used to create embedded connectors")}}};function yt(e){return new Date(e*1e3)}function _c(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:yt(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:yt(o.verified_at)};t.push(i);break;case"phone":let a={number:o.phoneNumber,type:o.type,verifiedAt:yt(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:yt(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:yt(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:yt(o.verified_at)};t.push(d);break;case"github_oauth":let m={subject:o.subject,username:o.username,name:o.name,email:o.email,type:o.type,verifiedAt:yt(o.verified_at)};t.push(m);break;case"apple_oauth":let g={subject:o.subject,email:o.email,type:o.type,verifiedAt:yt(o.verified_at)};t.push(g);break;default:console.warn(`Unrecognized account type: ${r}. Please consider upgrading the Privy SDK.`)}}return t}function Wt(e,t){return e.sort((o,r)=>r.verifiedAt.getTime()-o.verifiedAt.getTime()),e.find(o=>o.type===t)}function Bo(e){let t=Ga();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 ee=e=>e==null?void 0:e.linkedAccounts.find(t=>t.type==="wallet"&&t.walletClient==="privy");function bt(e){if(!e)return null;let t=_c(e.linked_accounts),o=Wt(t,"wallet"),r=Wt(t,"email"),n=Wt(t,"phone"),i=Wt(t,"google_oauth"),a=Wt(t,"twitter_oauth"),s=Wt(t,"discord_oauth"),l=Wt(t,"github_oauth"),d=Wt(t,"apple_oauth"),m={id:e.id,createdAt:yt(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 Bo(m)}var kr=x(require("axios"));var Rr=class{constructor(t,o,r){this.appId=t,this.sdkVersion=pr,this.client=o,this.defaults=r,this.fallbackApiUrl=o.fallbackApiUrl}async get(t,o,r=!0){try{return await kr.default.get(t,await this.buildConfig({headers:{"Cache-Control":"no-cache"},...o},r))}catch(n){throw ae(n)}}async post(t,o,r,n=!0){try{return await kr.default.post(t,o,await this.buildConfig(r,n))}catch(i){throw ae(i)}}async delete(t,o,r=!0){try{return await kr.default.delete(t,await this.buildConfig(o,r))}catch(n){throw ae(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 Ha(e){return e instanceof qt?"email":e instanceof $t?"sms":e instanceof St?"siwe":e instanceof _t?e.meta.provider:null}var It=class{constructor(t){this.promise=null;this.fn=t}execute(t){return this.promise===null&&(this.promise=(async()=>{try{return await this.fn(t)}finally{this.promise=null}})()),this.promise}};var Va=x(require("jose")),vt=class{static parse(t){try{return new vt(t)}catch{return null}}constructor(t){this.value=t,this._decoded=Va.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 Sc=30,Wr=class{constructor(){this.authenticateOnce=new It(async t=>this._authenticate(t)),this.linkOnce=new It(async t=>this._link(t)),this.refreshOnce=new It(this._refresh.bind(this)),this.destroyOnce=new It(this._destroy.bind(this)),this.forkSessionOnce=new It(this._forkSession.bind(this))}get token(){try{let t=K.get(lo);return typeof t=="string"?new vt(t).value:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get refreshToken(){try{let t=K.get(ur);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get forkedToken(){try{let t=K.get(No);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=vt.parse(this.token);return t!==null&&!t.isExpired(Sc)}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=Ha(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:bt(n),isNewUser:i}}catch(o){throw console.warn("Error authenticating session"),Oe(o)}}async _link(t){try{let o=await t.link();return bt(o)}catch(o){throw console.warn("Error linking account"),Oe(o)}}async _refresh(){if(!this.api)throw new T("Session has no API instance");if(!this.client)throw new T("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(Hi(),{refresh_token:r},{},!1),this.clearForkedToken();else return null;return this.storeToken(n.data.token),this.storeRefreshToken(n.data.refresh_token),bt(n.data.user)}catch(n){if(n instanceof so&&n.status===400&&n.message==="Invalid auth token")return this.destroyLocalState(),null;throw Oe(n)}}async _destroy(){var t;try{await((t=this.api)==null?void 0:t.post(Fi(),{refresh_token:this.refreshToken}))}catch{console.warn("Error destroying session")}this.destroyLocalState()}async _forkSession(){if(!this.api)throw new T("Session has no API instance");let t=this.refreshToken;try{let o=await this.api.post(Gi(),{refresh_token:t});return this.storeToken(o.data.token),this.storeRefreshToken(o.data.refresh_token),o.data.new_session_refresh_token}catch(o){throw Oe(o)}}destroyLocalState(){this.storeToken(null),this.storeRefreshToken(null),this.clearForkedToken()}storeToken(t){typeof t=="string"?K.put(lo,t):K.del(lo)}storeRefreshToken(t){typeof t=="string"?K.put(ur,t):K.del(ur)}clearForkedToken(){K.del(No)}};var jn,go=class{constructor(t){this.apiUrl=t.apiUrl||dr,this.fallbackApiUrl=this.apiUrl,this.timeout=t.timeout||sa,this.appId=t.appId,this.clientAnalyticsId=typeof window>"u"?null:crypto.randomUUID(),this.connectors=new fo,jn||(jn=new Wr),this.session=jn,this.api=this.generateApi(),this.session.client=this}generateApi(){let t=new Rr(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 T("No auth flow in progress.");return this.session.authenticate(this.authFlow)}link(){if(!this.authFlow)throw new T("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(oa(),{address:t});return bt(o.data)}catch(o){throw Oe(o)}}async unlinkPhone(t){try{let o=await this.api.post(ra(),{phoneNumber:t});return bt(o.data)}catch(o){throw Oe(o)}}async unlinkWallet(t){try{let o=await this.api.post(ta(),{address:t});return await this.connectors.removeWallet(t),bt(o.data)}catch(o){throw Oe(o)}}async unlinkOAuth(t,o){try{let r=await this.api.post(na(),{provider:t,subject:o});return bt(r.data)}catch(r){throw Oe(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(ia(),{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=vt.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 Oe(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 T("Cannot set an unlinked address as active.");if(!await this.connectors.setActiveWallet(t))throw new T("Error setting the active wallet.");return Bo(o)}async forkSession(){return await this.session.forkSession()}};var m6=require("wicg-inert"),Cn=require("body-scroll-lock"),xn=require("react"),Mi=require("react"),Xl=x(require("react-dom")),En=x(require("styled-components"));var Ir=require("react");var Kn=(0,Ir.createContext)({isLinking:!1,linkingHint:null,activeStatus:null,walletConnectionStatus:null,getAuthMeta:P,getAuthFlow:P,closePrivyModal:P,initLoginWithWallet:P,loginWithWallet:P,loginWithCode:P,initLoginWithEmail:P,initLoginWithSms:P,resendEmailCode:P,resendSmsCode:P,initLoginWithOAuth:P,loginWithOAuth:P,refreshUser:P,walletProxy:null,createAnalyticsEvent:P,getUsdTokenPrice:P}),_=()=>(0,Ir.useContext)(Kn);var Mr=require("react");var Yn=(0,Mr.createContext)({ready:!1,authenticated:!1,user:null,walletConnectors:null,login:P,linkEmail:P,linkPhone:P,linkWallet:P,linkGoogle:P,linkTwitter:P,linkDiscord:P,linkGithub:P,linkApple:P,logout:P,getAccessToken:P,getEthereumProvider:P,getEthersProvider:P,getWeb3jsProvider:P,unlinkEmail:P,unlinkPhone:P,unlinkWallet:P,unlinkGoogle:P,unlinkTwitter:P,unlinkDiscord:P,unlinkGithub:P,unlinkApple:P,setActiveWallet:P,forkSession:P,createWallet:P,signMessage:P,sendTransaction:P,exportWallet:P}),F=()=>(0,Mr.useContext)(Yn);var Ur=x(require("styled-components"));var wt=x(require("styled-components"));var Nr=x(require("styled-components")),Mt=require("react/jsx-runtime"),Dr=({success:e,fail:t})=>(0,Mt.jsxs)(Mt.Fragment,{children:[(0,Mt.jsx)(Fo,{className:e?"success":t?"fail":""}),(0,Mt.jsx)(Lc,{className:e?"success":t?"fail":""})]}),Fo=Nr.default.span`
|
|
12
|
+
- https://privy.io`;this.proxyProvider=o,this.walletType=t,this.address=r,this.chain=null,this.connected=!1}async fetchAddress(){if(!this.address){let t=await this.proxyProvider.request({method:"eth_accounts"});Array.isArray(t)&&t.length>0&&(this.address=(0,Ea.getAddress)(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 Pa.Web3Provider(new kt(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 Ac=e=>{let t=`https://mainnet.infura.io/v3/${nt}`,o=1;return e.makeWeb3Provider(t,o)},br,vr=class extends Ce{constructor(o,r){super("coinbase_wallet",o,r);this.proxyProvider=o,br||(br=new Ta.default({appName:"Privy",darkMode:!1,headlessMode:!1}))}async connect(o){return this.proxyProvider.setWalletProvider(Ac(br)),o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}disconnect(){br.disconnect()}async isConnected(){return await this.fetchAddress()!==null}get walletBranding(){return{name:"Coinbase Wallet",icon:Ge}}async promptConnection(){try{let o="",r=await this.proxyProvider.request({method:"eth_requestAccounts"});if(r.length>0&&(o=(0,Aa.getAddress)(r[0])),!o||o==="")throw new X("Unable to retrieve address");this.connected=!0}catch(o){throw He(o)}}};var Fn=require("react/jsx-runtime"),Rt=({style:e,...t})=>(0,Fn.jsx)("svg",{width:"16",height:"17",viewBox:"0 0 16 17",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"1.25rem",width:"1.25rem",...e},...t,children:(0,Fn.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.99555 0.929932C-1.12055 1.31799 -0.499722 9.15734 2.17445 8.76915C0.0807959 10.5544 -0.960455 16.6416 6.01654 16.0265C10.6356 15.9489 15.5635 12.2232 15.5635 8.1095C15.5635 2.63748 10.7516 0.929932 7.99555 0.929932ZM9.47052 7.53055C9.47052 8.49933 8.81856 9.28468 8.01433 9.28468C7.2101 9.28468 6.55814 8.49933 6.55814 7.53055C6.55814 6.56176 7.2101 5.77641 8.01433 5.77641C8.81856 5.77641 9.47052 6.56176 9.47052 7.53055ZM12.3171 9.28468C13.1213 9.28468 13.7733 8.49933 13.7733 7.53055C13.7733 6.56176 13.1213 5.77641 12.3171 5.77641C11.5129 5.77641 10.8609 6.56176 10.8609 7.53055C10.8609 8.49933 11.5129 9.28468 12.3171 9.28468Z",fill:t.color||"var(--privy-color-foreground-3)"})});var wr=class extends Ce{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=Oo(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(){}};var Cr=require("@ethersproject/address"),Gn=require("@ethersproject/providers"),_a=require("react-device-detect");var fe=require("react/jsx-runtime"),xe=({style:e,...t})=>(0,fe.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",x:0,y:0,viewBox:"0 0 318.6 318.6",width:"28",height:"28",style:{height:"28px",width:"28px",...e},...t,children:[(0,fe.jsx)("style",{children:".s1{stroke-linecap:round;stroke-linejoin:round}.s2{fill:#e4761b;stroke:#e4761b}.s3{fill:#f6851b;stroke:#f6851b}"}),(0,fe.jsx)("path",{fill:"#e2761b",stroke:"#e2761b",className:"s1",d:"m274.1 35.5-99.5 73.9L193 65.8z"}),(0,fe.jsx)("path",{d:"m44.4 35.5 98.7 74.6-17.5-44.3zm193.9 171.3-26.5 40.6 56.7 15.6 16.3-55.3zm-204.4.9L50.1 263l56.7-15.6-26.5-40.6z",className:"s1 s2"}),(0,fe.jsx)("path",{d:"m103.6 138.2-15.8 23.9 56.3 2.5-2-60.5zm111.3 0-39-34.8-1.3 61.2 56.2-2.5zM106.8 247.4l33.8-16.5-29.2-22.8zm71.1-16.5 33.9 16.5-4.7-39.3z",className:"s1 s2"}),(0,fe.jsx)("path",{fill:"#d7c1b3",stroke:"#d7c1b3",className:"s1",d:"m211.8 247.4-33.9-16.5 2.7 22.1-.3 9.3zm-105 0 31.5 14.9-.2-9.3 2.5-22.1z"}),(0,fe.jsx)("path",{fill:"#233447",stroke:"#233447",className:"s1",d:"m138.8 193.5-28.2-8.3 19.9-9.1zm40.9 0 8.3-17.4 20 9.1z"}),(0,fe.jsx)("path",{fill:"#cd6116",stroke:"#cd6116",className:"s1",d:"m106.8 247.4 4.8-40.6-31.3.9zM207 206.8l4.8 40.6 26.5-39.7zm23.8-44.7-56.2 2.5 5.2 28.9 8.3-17.4 20 9.1zm-120.2 23.1 20-9.1 8.2 17.4 5.3-28.9-56.3-2.5z"}),(0,fe.jsx)("path",{fill:"#e4751f",stroke:"#e4751f",className:"s1",d:"m87.8 162.1 23.6 46-.8-22.9zm120.3 23.1-1 22.9 23.7-46zm-64-20.6-5.3 28.9 6.6 34.1 1.5-44.9zm30.5 0-2.7 18 1.2 45 6.7-34.1z"}),(0,fe.jsx)("path",{d:"m179.8 193.5-6.7 34.1 4.8 3.3 29.2-22.8 1-22.9zm-69.2-8.3.8 22.9 29.2 22.8 4.8-3.3-6.6-34.1z",className:"s3"}),(0,fe.jsx)("path",{fill:"#c0ad9e",stroke:"#c0ad9e",className:"s1",d:"m180.3 262.3.3-9.3-2.5-2.2h-37.7l-2.3 2.2.2 9.3-31.5-14.9 11 9 22.3 15.5h38.3l22.4-15.5 11-9z"}),(0,fe.jsx)("path",{fill:"#161616",stroke:"#161616",className:"s1",d:"m177.9 230.9-4.8-3.3h-27.7l-4.8 3.3-2.5 22.1 2.3-2.2h37.7l2.5 2.2z"}),(0,fe.jsx)("path",{fill:"#763d16",stroke:"#763d16",className:"s1",d:"m278.3 114.2 8.5-40.8-12.7-37.9-96.2 71.4 37 31.3 52.3 15.3 11.6-13.5-5-3.6 8-7.3-6.2-4.8 8-6.1zM31.8 73.4l8.5 40.8-5.4 4 8 6.1-6.1 4.8 8 7.3-5 3.6 11.5 13.5 52.3-15.3 37-31.3-96.2-71.4z"}),(0,fe.jsx)("path",{d:"m267.2 153.5-52.3-15.3 15.9 23.9-23.7 46 31.2-.4h46.5zm-163.6-15.3-52.3 15.3-17.4 54.2h46.4l31.1.4-23.6-46zm71 26.4 3.3-57.7 15.2-41.1h-67.5l15 41.1 3.5 57.7 1.2 18.2.1 44.8h27.7l.2-44.8z",className:"s3"})]});var Sa=async()=>{let t=await new Gn.Web3Provider(window.ethereum).listAccounts();return t.length===0?null:(0,Cr.getAddress)(t[0])},xr=class extends Ce{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 Gn.Web3Provider(this.proxyProvider).listAccounts();return r.length===0?null:(0,Cr.getAddress)(r[0])}get walletBranding(){return{name:"MetaMask",icon:xe}}disconnect(){console.warn("Metamask does not support programmatic disconnect.")}async promptConnection(){try{let o="";if(!_a.isMobile&&ka()&&(await this.proxyProvider.request({method:"wallet_requestPermissions",params:[{eth_accounts:{}}]}),this.address&&!await this.isConnected()))throw new X("Selected the wrong wallet in MetaMask");let r=await this.proxyProvider.request({method:"eth_requestAccounts"});if(r.length>0&&(o=(0,Cr.getAddress)(r[0])),!o||o==="")throw new X("Unable to retrieve address");if(this.address&&o!==this.address)return;this.connected=!0,this.address=o}catch(o){throw He(o)}}async setActive(){if(await this.connectedMetamaskAddress()===this.address)return this.connected=!0,!0;for(;!await this.isConnected();)await Dn(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})}};var Hn=require("@ethersproject/address"),Ra=require("@ethersproject/providers");var ze=require("react/jsx-runtime"),it=({style:e,...t})=>(0,ze.jsxs)("svg",{width:"28",height:"28",viewBox:"0 0 28 28",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"28px",width:"28px",...e},...t,children:[(0,ze.jsx)("rect",{width:"28",height:"28",rx:"6",fill:"url(#paint0_linear_1765_9937)"}),(0,ze.jsx)("path",{d:"M24.0223 14.1704H21.5542C21.5542 9.14083 17.4627 5.06372 12.4151 5.06372C7.43008 5.06372 3.37717 9.04101 3.27798 13.9845C3.17536 19.0945 7.98653 23.5318 13.1154 23.5318H13.7605C18.2822 23.5318 24.3426 20.0047 25.2895 15.7072C25.4643 14.9151 24.8364 14.1704 24.0223 14.1704ZM8.74752 14.3945C8.74752 15.0671 8.19544 15.6172 7.52045 15.6172C6.84545 15.6172 6.29341 15.0669 6.29341 14.3945V12.4165C6.29341 11.7439 6.84545 11.1938 7.52045 11.1938C8.19544 11.1938 8.74752 11.7439 8.74752 12.4165V14.3945ZM13.0083 14.3945C13.0083 15.0671 12.4563 15.6172 11.7813 15.6172C11.1063 15.6172 10.5543 15.0669 10.5543 14.3945V12.4165C10.5543 11.7439 11.1065 11.1938 11.7813 11.1938C12.4563 11.1938 13.0083 11.7439 13.0083 12.4165V14.3945Z",fill:"url(#paint1_linear_1765_9937)"}),(0,ze.jsxs)("defs",{children:[(0,ze.jsxs)("linearGradient",{id:"paint0_linear_1765_9937",x1:"14",y1:"0",x2:"14",y2:"28",gradientUnits:"userSpaceOnUse",children:[(0,ze.jsx)("stop",{stopColor:"#534BB1"}),(0,ze.jsx)("stop",{offset:"1",stopColor:"#551BF9"})]}),(0,ze.jsxs)("linearGradient",{id:"paint1_linear_1765_9937",x1:"14.2976",y1:"5.06372",x2:"14.2976",y2:"23.5318",gradientUnits:"userSpaceOnUse",children:[(0,ze.jsx)("stop",{stopColor:"white"}),(0,ze.jsx)("stop",{offset:"1",stopColor:"white",stopOpacity:"0.82"})]})]})]});var Er=class extends Ce{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 Ra.Web3Provider(this.proxyProvider).listAccounts();return r.length===0?null:(0,Hn.getAddress)(r[0])}get walletBranding(){return{name:"Phantom",icon:it}}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=(0,Hn.getAddress)(r[0])),!o||o==="")throw new X("Unable to retrieve address");this.connected=!0,this.address=o}catch(o){throw He(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})}};var Fa=x(require("@walletconnect/web3-provider")),$n=require("react-device-detect");var Qe=require("react");var Ia=require("react/jsx-runtime");function Wa(e){return(0,Ia.jsx)("link",{rel:"prefetch",href:e.src})}var Pr=require("react/jsx-runtime"),ht="LANDING",La=(0,Qe.createContext)({ready:!1,app:null,currentScreen:ht,lastScreen:ht,navigate:P,navigateBack:P,setModalData:P}),Ma=e=>{var m,g,b;let t=e.appConfig,o=e.authenticated,r=e.visible,[n,i]=(0,Qe.useState)(e.initialScreen||ht),[a,s]=(0,Qe.useState)(e.initialScreen||ht);(0,Qe.useEffect)(()=>{o||i(ht)},[o]),(0,Qe.useEffect)(()=>{r||(s(ht),i(ht))},[r]),(0,Qe.useEffect)(()=>{e.initialScreen&&n===ht&&(i(e.initialScreen),s(e.initialScreen))},[e.initialScreen]);let l=e.initialScreen&&n===ht?e.initialScreen:n,d={ready:!!(t!=null&&t.id),app:t,data:e.data,setModalData:e.setModalData,currentScreen:l,lastScreen:a,navigate:w=>{s(n),i(w)},navigateBack:()=>{i(a)}};return(0,Pr.jsxs)(La.Provider,{value:d,children:[(typeof((m=t==null?void 0:t.appearance)==null?void 0:m.logo)=="string"||((b=(g=t==null?void 0:t.appearance)==null?void 0:g.logo)==null?void 0:b.type)==="img")&&(0,Pr.jsx)(Wa,{src:typeof t.appearance.logo=="string"?t.appearance.logo:t.appearance.logo.props.src}),e.children]})},v=()=>(0,Qe.useContext)(La);var gt=require("react/jsx-runtime"),mo=({style:e,...t})=>{let{app:o}=v();return(0,gt.jsxs)("svg",{width:"28",height:"28",viewBox:"0 0 28 28",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"28px",width:"28px",...e},...t,children:[(0,gt.jsx)("rect",{width:"28",height:"28",rx:"3",fill:(o==null?void 0:o.appearance.palette.colorScheme)==="dark"?"#3396ff":"#141414"}),(0,gt.jsx)("g",{clipPath:"url(#clip0_1765_9946)",children:(0,gt.jsx)("path",{d:"M8.09448 10.3941C11.3558 7.20196 16.6442 7.20196 19.9055 10.3941L20.2982 10.7782C20.3369 10.8157 20.3677 10.8606 20.3887 10.9102C20.4097 10.9599 20.4206 11.0132 20.4206 11.0671C20.4206 11.121 20.4097 11.1744 20.3887 11.224C20.3677 11.2737 20.3369 11.3186 20.2982 11.3561L18.9554 12.6702C18.9158 12.7086 18.8628 12.7301 18.8077 12.7301C18.7526 12.7301 18.6996 12.7086 18.66 12.6702L18.1198 12.1415C15.8448 9.91503 12.1557 9.91503 9.88015 12.1415L9.30167 12.7075C9.26207 12.7459 9.20909 12.7673 9.15395 12.7673C9.0988 12.7673 9.04582 12.7459 9.00622 12.7075L7.66346 11.3934C7.62475 11.3559 7.59397 11.3109 7.57295 11.2613C7.55193 11.2117 7.5411 11.1583 7.5411 11.1044C7.5411 11.0505 7.55193 10.9971 7.57295 10.9475C7.59397 10.8979 7.62475 10.8529 7.66346 10.8154L8.09448 10.3941ZM22.6829 13.1115L23.8776 14.2814C23.9163 14.319 23.9471 14.3639 23.9681 14.4135C23.9892 14.4632 24 14.5165 24 14.5704C24 14.6243 23.9892 14.6777 23.9681 14.7273C23.9471 14.777 23.9163 14.8219 23.8776 14.8594L18.4893 20.1332C18.4102 20.2101 18.3042 20.2531 18.1938 20.2531C18.0835 20.2531 17.9775 20.2101 17.8984 20.1332L14.0743 16.3901C14.0545 16.3708 14.0279 16.36 14.0003 16.36C13.9726 16.36 13.9461 16.3708 13.9263 16.3901L10.1021 20.1332C10.023 20.2101 9.91703 20.2531 9.8067 20.2531C9.69636 20.2531 9.59038 20.2101 9.51124 20.1332L4.12236 14.8594C4.08365 14.8219 4.05287 14.777 4.03185 14.7273C4.01083 14.6777 4 14.6243 4 14.5704C4 14.5165 4.01083 14.4632 4.03185 14.4135C4.05287 14.3639 4.08365 14.319 4.12236 14.2814L5.31767 13.1115C5.39678 13.0348 5.50265 12.9919 5.61285 12.9919C5.72305 12.9919 5.82892 13.0348 5.90803 13.1115L9.73216 16.8546C9.75194 16.874 9.7785 16.8848 9.80616 16.8848C9.83381 16.8848 9.86037 16.874 9.88015 16.8546L13.7043 13.1115C13.7834 13.0346 13.8894 12.9916 13.9997 12.9916C14.1101 12.9916 14.216 13.0346 14.2952 13.1115L18.1198 16.8546C18.1396 16.874 18.1662 16.8848 18.1938 16.8848C18.2215 16.8848 18.2481 16.874 18.2678 16.8546L22.092 13.1115C22.1711 13.0346 22.2771 12.9916 22.3874 12.9916C22.4977 12.9916 22.6037 13.0346 22.6829 13.1115Z",fill:"white"})}),(0,gt.jsx)("defs",{children:(0,gt.jsx)("clipPath",{id:"clip0_1765_9946",children:(0,gt.jsx)("rect",{width:"20",height:"12.2531",fill:"white",transform:"translate(4 8)"})})})]})};var Vn=require("@walletconnect/browser-utils"),Tr=require("react-device-detect");var Ar="c57ca95b47569778a828d19178114f4db188b89b763c899ba0be274e97267d96",zn=e=>{let t=hr(e).trim().toLowerCase();for(let[o,r]of Object.entries(Uo))if(r.name.toLowerCase()===t)return{id:o,entry:r}},Uo={"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"}}},Na=(e,t="md")=>`https://registry.walletconnect.com/v2/logo/${t}/${e}`;function Da(e){return{name:e.name||"",universalLink:e.mobile.universal||"",deepLink:e.mobile.native||""}}function Oa(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 Ua(e,t){return Tr.isAndroid?e:Oa(e,Da(Uo[t]))}var _r=(e,t)=>{if(!e)return;if(Tr.isAndroid){(0,Vn.saveMobileLinkInfo)({name:"Unknown",href:t||"wc:"});return}let o=Uo[e];if(!o){console.warn("Attempted to set info for unknown wallet",e);return}let r=Oa(t||"wc:",Da(o));(0,Vn.saveMobileLinkInfo)({name:(o==null?void 0:o.name)||"",href:r})},Ba=()=>{!Tr.isAndroid||window.open("wc:","_self")};var qn=class extends Ce{constructor(o,r,n){super("wallet_connect",r,n);this.proxyProvider=r,this.connectionManager=o}setActive(){return this.walletProvider.walletId&&_r(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=Uo[this.walletProvider.walletId];return{name:i.name,icon:this.walletProvider.walletId===Ar?xe:Na(i.image_id)}}return{name:hr(((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])||mo}}async promptConnection(){return new Promise((o,r)=>{this.walletProvider.connector.on("disconnect",(i,a)=>{if(i){r(He(i));return}a.params.some(s=>s.message==="Session Rejected")&&(this.setWalletProvider(this.connectionManager.replaceProvider(this,this.walletProvider)),r(new jt)),r(new X("Unknown error during connection"))}),this.walletProvider.qrcode&&this.walletProvider.connector.on("modal_closed",()=>{this.setWalletProvider(this.connectionManager.replaceProvider(this,this.walletProvider)),r(new jt)}),this.walletProvider.connector.on("transport_error",(i,a)=>{r(He(i))}),(async()=>{let i="",a=await Promise.race([this.connectionManager.enableProvider(this.walletProvider),Bn()]);if(a.length>0&&(i=a[0]),!i||i==="")throw new X("Unable to retrieve address");this.connected=!0,o()})().catch(i=>r(He(i)))})}async sign(o){_r(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)),$n.isAndroid&&Ba()})}disconnect(){this.walletProvider.close().catch(()=>console.warn("Unable to disconnect wallet provider"))}get walletProvider(){return this.proxyProvider.walletProvider}setWalletProvider(o){this.proxyProvider.setWalletProvider(o)}},Sr=class{constructor(){this._storageIdToProvider={},this.reconnectDelayMs=10,this.reconnectBackoff=2,!(typeof window>"u")&&Z.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=Z.get(t))==null?void 0:o.peerMeta)==null?void 0:r.name;if(i){let a=zn(i);a!=null&&a.id&&(n=a.id)}}this.createProviderWithStorageId(t,n)}})}createConnector(t,o,r){let n=this.getProviderForAddress(o,r),i=new qn(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=Z.getKeys().filter(i=>i.startsWith("walletconnect"));if(o){let i=r.filter(a=>a.includes(o));if(i){let a=i.find(s=>On(Z.get(s).accounts,t));if(a)return a}}let n=r.find(i=>On(Z.get(i).accounts,t));if(!(n&&o&&!n.includes(o)))return n}getProviderForAddress(t,o){let r=this.getStorageId(t,o);r||(r=`${Ln}:${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 Fa.default({infuraId:nt,storageId:t,pollingInterval:ca,...r});return n.walletId=o,o?n.connector.on("display_uri",(i,a)=>{_r(o);let s=a.params[0],l=Ua(s,o);$n.isAndroid?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=zn((a=n.walletMeta)==null?void 0:a.name))==null?void 0:s.id)}),this._storageIdToProvider[t]=n,n}createProvider(t,o){let r=`${Ln}:${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 ka=()=>{if(!window.ethereum)return!1;if(kr(window.ethereum,!0))return!0;if(window.ethereum.providers){for(let e of window.ethereum.providers)if(kr(e,!0))return!0}return!1},jn=()=>{if(!window.ethereum)return!1;if(kr(window.ethereum,!1))return!0;if(window.ethereum.providers){for(let e of window.ethereum.providers)if(kr(e,!1))return!0}return!1},kr=(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,Wt=()=>{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},ho=()=>{if(!window.ethereum)return!1;if(window.ethereum.isCoinbaseWallet)return!0;if(window.ethereum.providers){for(let e of window.ethereum.providers)if(e.isCoinbaseWallet)return!0}return!1},Kn=e=>{let t=localStorage.getItem("-walletlink:https://www.walletlink.org:Addresses");return t?!!(e==null?void 0:e.linkedAccounts.filter(r=>r.type=="wallet"&&r.address===(0,Ga.getAddress)(t)).length):!1},Ha=()=>{var t;let e=Z.get(mr);return e?(t=e.find(o=>o.active))==null?void 0:t.address:null},fo=class{constructor(){this.getEthereumProvider=()=>{var t;return((t=this.activeWalletConnector)==null?void 0:t.proxyProvider)||new Ve};this.walletConnectors=[],this.wcConnectionManager=new Sr,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(){(Z.get(mr)||[]).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}});Z.put(mr,t)}addEmbeddedWalletConnector(t,o){let r=new gr(t,o),n=new wr(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 X("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 xr(new Ve,o);case"phantom":return new Er(new Ve,o);case"coinbase_wallet":return new vr(new Ve,o);case"wallet_connect":return this.wcConnectionManager.createConnector(new Ve,o,r);case"embedded":throw new Error("This method should not be used to create embedded connectors")}}};function yt(e){return new Date(e*1e3)}function _c(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:yt(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:yt(o.verified_at)};t.push(i);break;case"phone":let a={number:o.phoneNumber,type:o.type,verifiedAt:yt(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:yt(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:yt(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:yt(o.verified_at)};t.push(d);break;case"github_oauth":let m={subject:o.subject,username:o.username,name:o.name,email:o.email,type:o.type,verifiedAt:yt(o.verified_at)};t.push(m);break;case"apple_oauth":let g={subject:o.subject,email:o.email,type:o.type,verifiedAt:yt(o.verified_at)};t.push(g);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 Bo(e){let t=Ha();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 ee=e=>e==null?void 0:e.linkedAccounts.find(t=>t.type==="wallet"&&t.walletClient==="privy");function bt(e){if(!e)return null;let t=_c(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"),m={id:e.id,createdAt:yt(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 Bo(m)}var Rr=x(require("axios"));var Wr=class{constructor(t,o,r){this.appId=t,this.sdkVersion=pr,this.client=o,this.defaults=r,this.fallbackApiUrl=o.fallbackApiUrl}async get(t,o,r=!0){try{return await Rr.default.get(t,await this.buildConfig({headers:{"Cache-Control":"no-cache"},...o},r))}catch(n){throw ae(n)}}async post(t,o,r,n=!0){try{return await Rr.default.post(t,o,await this.buildConfig(r,n))}catch(i){throw ae(i)}}async delete(t,o,r=!0){try{return await Rr.default.delete(t,await this.buildConfig(o,r))}catch(n){throw ae(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 Va(e){return e instanceof zt?"email":e instanceof qt?"sms":e instanceof St?"siwe":e instanceof _t?e.meta.provider:null}var Lt=class{constructor(t){this.promise=null;this.fn=t}execute(t){return this.promise===null&&(this.promise=(async()=>{try{return await this.fn(t)}finally{this.promise=null}})()),this.promise}};var za=x(require("jose")),vt=class{static parse(t){try{return new vt(t)}catch{return null}}constructor(t){this.value=t,this._decoded=za.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 Sc=30,Ir=class{constructor(){this.authenticateOnce=new Lt(async t=>this._authenticate(t)),this.linkOnce=new Lt(async t=>this._link(t)),this.refreshOnce=new Lt(this._refresh.bind(this)),this.destroyOnce=new Lt(this._destroy.bind(this)),this.forkSessionOnce=new Lt(this._forkSession.bind(this))}get token(){try{let t=Z.get(lo);return typeof t=="string"?new vt(t).value:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get refreshToken(){try{let t=Z.get(ur);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get forkedToken(){try{let t=Z.get(No);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=vt.parse(this.token);return t!==null&&!t.isExpired(Sc)}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=Va(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:bt(n),isNewUser:i}}catch(o){throw console.warn("Error authenticating session"),Ue(o)}}async _link(t){try{let o=await t.link();return bt(o)}catch(o){throw console.warn("Error linking account"),Ue(o)}}async _refresh(){if(!this.api)throw new T("Session has no API instance");if(!this.client)throw new T("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(Fi(),{refresh_token:o},{headers:{authorization:`Bearer ${t}`}},!1),r&&this.clearForkedToken();else if(r)n=await this.api.post(Vi(),{refresh_token:r},{},!1),this.clearForkedToken();else return null;return this.storeToken(n.data.token),this.storeRefreshToken(n.data.refresh_token),bt(n.data.user)}catch(n){if(n instanceof so&&n.status===400&&n.message==="Invalid auth token")return this.destroyLocalState(),null;throw Ue(n)}}async _destroy(){var t;try{await((t=this.api)==null?void 0:t.post(Gi(),{refresh_token:this.refreshToken}))}catch{console.warn("Error destroying session")}this.destroyLocalState()}async _forkSession(){if(!this.api)throw new T("Session has no API instance");let t=this.refreshToken;try{let o=await this.api.post(Hi(),{refresh_token:t});return this.storeToken(o.data.token),this.storeRefreshToken(o.data.refresh_token),o.data.new_session_refresh_token}catch(o){throw Ue(o)}}destroyLocalState(){this.storeToken(null),this.storeRefreshToken(null),this.clearForkedToken()}storeToken(t){typeof t=="string"?Z.put(lo,t):Z.del(lo)}storeRefreshToken(t){typeof t=="string"?Z.put(ur,t):Z.del(ur)}clearForkedToken(){Z.del(No)}};var Zn,go=class{constructor(t){this.apiUrl=t.apiUrl||dr,this.fallbackApiUrl=this.apiUrl,this.timeout=t.timeout||la,this.appId=t.appId,this.clientAnalyticsId=typeof window>"u"?null:crypto.randomUUID(),this.connectors=new fo,Zn||(Zn=new Ir),this.session=Zn,this.api=this.generateApi(),this.session.client=this}generateApi(){let t=new Wr(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 T("No auth flow in progress.");return this.session.authenticate(this.authFlow)}link(){if(!this.authFlow)throw new T("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(ra(),{address:t});return bt(o.data)}catch(o){throw Ue(o)}}async unlinkPhone(t){try{let o=await this.api.post(na(),{phoneNumber:t});return bt(o.data)}catch(o){throw Ue(o)}}async unlinkWallet(t){try{let o=await this.api.post(oa(),{address:t});return await this.connectors.removeWallet(t),bt(o.data)}catch(o){throw Ue(o)}}async unlinkOAuth(t,o){try{let r=await this.api.post(ia(),{provider:t,subject:o});return bt(r.data)}catch(r){throw Ue(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(aa(),{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=vt.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 Ue(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 T("Cannot set an unlinked address as active.");if(!await this.connectors.setActiveWallet(t))throw new T("Error setting the active wallet.");return Bo(o)}async forkSession(){return await this.session.forkSession()}};var hg=require("wicg-inert"),xn=require("body-scroll-lock"),En=require("react"),Ni=require("react"),Xl=x(require("react-dom")),Pn=x(require("styled-components"));var Lr=require("react");var Yn=(0,Lr.createContext)({isLinking:!1,linkingHint:null,activeStatus:null,walletConnectionStatus:null,getAuthMeta:P,getAuthFlow:P,closePrivyModal:P,initLoginWithWallet:P,loginWithWallet:P,loginWithCode:P,initLoginWithEmail:P,initLoginWithSms:P,resendEmailCode:P,resendSmsCode:P,initLoginWithOAuth:P,loginWithOAuth:P,refreshUser:P,walletProxy:null,createAnalyticsEvent:P,getUsdTokenPrice:P}),_=()=>(0,Lr.useContext)(Yn);var Mr=require("react");var Qn=(0,Mr.createContext)({ready:!1,authenticated:!1,user:null,walletConnectors:null,login:P,linkEmail:P,linkPhone:P,linkWallet:P,linkGoogle:P,linkTwitter:P,linkDiscord:P,linkGithub:P,linkApple:P,logout:P,getAccessToken:P,getEthereumProvider:P,getEthersProvider:P,getWeb3jsProvider:P,unlinkEmail:P,unlinkPhone:P,unlinkWallet:P,unlinkGoogle:P,unlinkTwitter:P,unlinkDiscord:P,unlinkGithub:P,unlinkApple:P,setActiveWallet:P,forkSession:P,createWallet:P,signMessage:P,sendTransaction:P,exportWallet:P}),B=()=>(0,Mr.useContext)(Qn);var Ur=x(require("styled-components"));var wt=x(require("styled-components"));var Nr=x(require("styled-components")),Mt=require("react/jsx-runtime"),Dr=({success:e,fail:t})=>(0,Mt.jsxs)(Mt.Fragment,{children:[(0,Mt.jsx)(Fo,{className:e?"success":t?"fail":""}),(0,Mt.jsx)(kc,{className:e?"success":t?"fail":""})]}),Fo=Nr.default.span`
|
|
13
13
|
&& {
|
|
14
14
|
width: 82px;
|
|
15
15
|
height: 82px;
|
|
@@ -42,13 +42,13 @@ Resources:
|
|
|
42
42
|
border-color: var(--privy-color-error);
|
|
43
43
|
border-bottom-color: var(--privy-color-error);
|
|
44
44
|
}
|
|
45
|
-
`,
|
|
45
|
+
`,kc=(0,Nr.default)(Fo)`
|
|
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
|
-
`,Je=e=>(0,Mt.jsx)(
|
|
51
|
+
`,Je=e=>(0,Mt.jsx)(Rc,{color:e.color||"var(--privy-color-background-2)"}),Rc=(0,Nr.default)(Fo)`
|
|
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
|
-
`;var
|
|
60
|
+
`;var Ee=require("react/jsx-runtime"),qa=wt.default.button`
|
|
61
61
|
display: flex;
|
|
62
62
|
flex-direction: row;
|
|
63
63
|
align-items: center;
|
|
@@ -79,7 +79,7 @@ Resources:
|
|
|
79
79
|
color: var(--privy-color-foreground-3);
|
|
80
80
|
cursor: not-allowed;
|
|
81
81
|
}
|
|
82
|
-
`,Y=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>(0,
|
|
82
|
+
`,Y=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>(0,Ee.jsx)($a,{disabled:t||o,...n,children:t?(0,Ee.jsxs)("span",{children:[(0,Ee.jsx)(Je,{}),r?(0,Ee.jsx)("span",{children:r}):null]}):e}),Or=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>(0,Ee.jsx)($a,{as:"a",disabled:t||o,...n,children:t?(0,Ee.jsxs)("span",{children:[(0,Ee.jsx)(Je,{}),r?(0,Ee.jsx)("span",{children:r}):null]}):e}),$a=(0,wt.default)(qa)`
|
|
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);
|
|
@@ -122,7 +122,7 @@ Resources:
|
|
|
122
122
|
opacity: 1;
|
|
123
123
|
animation: fadein 200ms ease;
|
|
124
124
|
}
|
|
125
|
-
`,
|
|
125
|
+
`,ja=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>(0,Ee.jsx)(Wc,{disabled:t||o,...n,children:t?(0,Ee.jsxs)("span",{children:[(0,Ee.jsx)(Je,{}),r?(0,Ee.jsx)("span",{children:r}):null]}):e}),Wc=(0,wt.default)(qa)`
|
|
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
|
+
`,Pe=wt.default.button`
|
|
155
155
|
&& {
|
|
156
156
|
padding: 12px 16px;
|
|
157
157
|
font-weight: 500;
|
|
@@ -182,10 +182,10 @@ Resources:
|
|
|
182
182
|
cursor: not-allowed;
|
|
183
183
|
}
|
|
184
184
|
}
|
|
185
|
-
`,
|
|
185
|
+
`,Ka=wt.default.div`
|
|
186
186
|
/* Set to match height of SoftCtaButton to avoid reflow if conditionally rendered */
|
|
187
187
|
height: 44px;
|
|
188
|
-
`;var
|
|
188
|
+
`;var Za=x(require("styled-components")),Ya=Za.default.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
|
-
`;var
|
|
204
|
+
`;var ei=x(require("styled-components"));var Jn=require("react/jsx-runtime"),Qa=({style:e,...t})=>(0,Jn.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"currentColor",style:{height:"1.5rem",width:"1.5rem",...e},...t,children:(0,Jn.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M10.5 19.5L3 12m0 0l7.5-7.5M3 12h18"})});var Xn=require("react/jsx-runtime"),Ja=({style:e,...t})=>(0,Xn.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"currentColor",style:{height:"1.5rem",width:"1.5rem",...e},...t,children:(0,Xn.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M6 18L18 6M6 6l12 12"})});var Ae=require("react/jsx-runtime"),Ic=()=>(0,Ae.jsx)("div",{}),Lc=({backFn:e})=>(0,Ae.jsx)("div",{children:(0,Ae.jsx)(Qa,{onClick:e})}),Mc=e=>(0,Ae.jsx)("div",{children:(0,Ae.jsx)("div",{children:(0,Ae.jsx)(Ja,{onClick:e.onClose})})});var A=({backFn:e,onClose:t,title:o})=>{let{closePrivyModal:r}=_(),{app:n}=v();return(0,Ae.jsxs)(Nc,{children:[e?(0,Ae.jsx)(Lc,{backFn:e}):(0,Ae.jsx)(Ic,{}),o&&(0,Ae.jsx)(Dc,{children:o}),n!=null&&n.render.inDialog?(0,Ae.jsx)(Mc,{onClose:t||(()=>r())}):null]})},Nc=ei.default.div`
|
|
205
205
|
height: 30px;
|
|
206
206
|
display: flex;
|
|
207
207
|
align-items: center;
|
|
@@ -259,12 +259,12 @@ Resources:
|
|
|
259
259
|
height: 30px;
|
|
260
260
|
margin-bottom: 10px;
|
|
261
261
|
}
|
|
262
|
-
`,Dc=
|
|
262
|
+
`,Dc=ei.default.div`
|
|
263
263
|
overflow: hidden;
|
|
264
264
|
white-space: nowrap;
|
|
265
265
|
max-width: 100%;
|
|
266
266
|
text-overflow: ellipsis;
|
|
267
|
-
`;var
|
|
267
|
+
`;var ti=require("react/jsx-runtime"),Xa=({style:e,...t})=>(0,ti.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"currentColor",style:{height:"1.5rem",width:"1.5rem",...e},...t,children:(0,ti.jsx)("path",{fillRule:"evenodd",d:"M12 1.5a5.25 5.25 0 00-5.25 5.25v3a3 3 0 00-3 3v6.75a3 3 0 003 3h10.5a3 3 0 003-3v-6.75a3 3 0 00-3-3v-3c0-2.9-2.35-5.25-5.25-5.25zm3.75 8.25v-3a3.75 3.75 0 10-7.5 0v3h7.5z",clipRule:"evenodd"})});var oe=require("react/jsx-runtime"),es=()=>{let{navigate:e,app:t}=v(),o=(t==null?void 0:t.allowlistConfig.errorTitle)||"You don't have access to this app",r=(t==null?void 0:t.allowlistConfig.errorDetail)||"Have you been invited?",n=(t==null?void 0:t.allowlistConfig.errorCtaText)||"Try another account";return(0,oe.jsxs)(oe.Fragment,{children:[(0,oe.jsx)(A,{}),(0,oe.jsxs)(Oc,{children:[(0,oe.jsx)(Bc,{children:(0,oe.jsxs)("div",{children:[(0,oe.jsx)(Ya,{}),(0,oe.jsx)(Xa,{style:{width:"38px",height:"38px",strokeWidth:"1",stroke:"var(--privy-color-accent)",fill:"var(--privy-color-accent)"}})]})}),(0,oe.jsxs)(Uc,{children:[typeof o=="string"?(0,oe.jsx)("h3",{children:o}):(0,oe.jsx)(oe.Fragment,{children:o}),typeof r=="string"?(0,oe.jsx)("p",{children:r}):(0,oe.jsx)(oe.Fragment,{children:r})]}),t!=null&&t.allowlistConfig.errorCtaLink?(0,oe.jsx)(Pe,{as:"a",href:t.allowlistConfig.errorCtaLink,children:n}):(0,oe.jsx)(Pe,{onClick:()=>{e("LANDING")},children:n})]})]})},Oc=Ur.default.div`
|
|
268
268
|
display: flex;
|
|
269
269
|
flex-direction: column;
|
|
270
270
|
align-items: center;
|
|
@@ -299,7 +299,7 @@ Resources:
|
|
|
299
299
|
left: -19px;
|
|
300
300
|
top: -19px;
|
|
301
301
|
}
|
|
302
|
-
`;var Ot=require("react"),
|
|
302
|
+
`;var Ot=require("react"),ns=require("react-device-detect"),bo=x(require("styled-components"));var Br=x(require("styled-components")),Te=Br.default.div`
|
|
303
303
|
display: flex;
|
|
304
304
|
flex-direction: column;
|
|
305
305
|
align-items: flex-start;
|
|
@@ -314,11 +314,11 @@ Resources:
|
|
|
314
314
|
justify-content: center;
|
|
315
315
|
height: 100%;
|
|
316
316
|
width: 100%;
|
|
317
|
-
`,
|
|
317
|
+
`,mf=Br.default.div`
|
|
318
318
|
display: flex;
|
|
319
319
|
flex-direction: column;
|
|
320
320
|
width: 100%;
|
|
321
|
-
`;var
|
|
321
|
+
`;var oi=x(require("styled-components"));var qe=require("react/jsx-runtime"),Fc=oi.default.div`
|
|
322
322
|
margin-top: 16px;
|
|
323
323
|
font-size: 12px;
|
|
324
324
|
text-align: center;
|
|
@@ -327,7 +327,7 @@ Resources:
|
|
|
327
327
|
&& > a {
|
|
328
328
|
color: var(--privy-color-accent);
|
|
329
329
|
}
|
|
330
|
-
`;function
|
|
330
|
+
`;function ts(e){let{legal:{privacyPolicyUrl:t,termsAndConditionsUrl:o}}=e.app,r=!!t,n=!!o,i=r&&n;return!r&&!n?null:(0,qe.jsxs)(Fc,{children:["By logging in I agree to the"," ",n&&(0,qe.jsx)("a",{href:o,target:"_blank",children:i?"Terms":"Terms of Service"}),i&&" & ",r&&(0,qe.jsx)("a",{href:t,target:"_blank",children:"Privacy Policy"})]})}var H=({protectedByPrivy:e})=>(0,qe.jsx)(_e,{hideOnMobile:e,children:e?(0,qe.jsxs)(qe.Fragment,{children:[(0,qe.jsx)(Rt,{}),(0,qe.jsx)("span",{children:(0,qe.jsx)("a",{href:"https://www.privy.io/",target:"_blank",children:"Protected by Privy"})})]}):null}),_e=oi.default.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
|
-
`;var Go=x(require("styled-components"))
|
|
354
|
+
`;var Go=x(require("styled-components")),$e=require("react/jsx-runtime"),se=({title:e,description:t,children:o,...r})=>(0,$e.jsx)(os,{...r,children:(0,$e.jsxs)($e.Fragment,{children:[(0,$e.jsx)("h3",{children:e}),typeof t=="string"?(0,$e.jsx)("p",{children:t}):t,o]})}),Nt=(0,Go.default)(se)`
|
|
355
355
|
margin-bottom: 24px;
|
|
356
|
-
`,Dt=({title:e,description:t,icon:o,children:r,...n})=>(0
|
|
356
|
+
`,Dt=({title:e,description:t,icon:o,children:r,...n})=>(0,$e.jsxs)(Gc,{...n,children:[o?(0,$e.jsx)(Hc,{children:o}):null,(0,$e.jsx)("h3",{children:e}),typeof t=="string"?(0,$e.jsx)("p",{children:t}):null,r]}),os=Go.default.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
|
-
`,Gc=(0,Go.default)(
|
|
376
|
+
`,Gc=(0,Go.default)(os)`
|
|
377
377
|
align-items: center;
|
|
378
378
|
text-align: center;
|
|
379
379
|
gap: 16px;
|
|
@@ -388,14 +388,14 @@ Resources:
|
|
|
388
388
|
border-color: var(--privy-color-background-2);
|
|
389
389
|
border-width: 1px;
|
|
390
390
|
}
|
|
391
|
-
`;var
|
|
391
|
+
`;var z=require("react/jsx-runtime"),ri=6,rs=new Array(ri).fill(""),Vc=1400;var is=()=>{var ce,ue,we;let{app:e,data:t,navigate:o,setModalData:r}=v(),{closePrivyModal:n,resendEmailCode:i,resendSmsCode:a,getAuthMeta:s,loginWithCode:l}=_(),{authenticated:d,user:m}=B(),[g,b]=(0,Ot.useState)(rs),[w,h]=(0,Ot.useState)(!1),[u,y]=(0,Ot.useState)(null),[I,E]=(0,Ot.useState)(null),S=(ce=s())!=null&&ce.email?0:1;(0,Ot.useEffect)(()=>{var J;if(!(d&&w&&m))return;if(((J=t==null?void 0:t.login)==null?void 0:J.promptCreatePrivyWalletFlow)&&!m.wallet){let Oe=setTimeout(()=>{r({createWallet:{onSuccess:()=>{},onFailure:ye=>console.error(ye),callAuthOnSuccessOnClose:!0}}),o("EMBEDDED_WALLET_SCREEN")},Be-500);return()=>clearTimeout(Oe)}else{let Oe=setTimeout(n,Be);return()=>clearTimeout(Oe)}},[d,w,m]),(0,Ot.useEffect)(()=>{if(u&&I===0){let N=setTimeout(()=>{b(rs),y(null);let k=document.querySelector("input[name=code-0]");k==null||k.focus()},Vc);return()=>clearTimeout(N)}},[u]);let L=N=>{var me;let k=N.currentTarget.value.replace(" ","");if(k==="")return;if(isNaN(Number(k))){y("Code should be numeric"),E(1);return}y(null),E(null);let J=Number((me=N.currentTarget.name)==null?void 0:me.charAt(5)),Oe=[...k||[""]].slice(0,ri-J),ye=[...g.slice(0,J),...Oe,...g.slice(J+Oe.length)];b(ye);let ft=Oe.length,At=Math.min(Math.max(J+ft,0),ri-1);if(!isNaN(Number(N.currentTarget.value))){let G=document.querySelector(`input[name=code-${At}]`);G==null||G.focus()}if(ye.every(G=>G&&!isNaN(+G))){let G=document.querySelector(`input[name=code-${At}]`);G==null||G.blur(),l(ye.join("")).then(()=>h(!0)).catch(Mo=>{(Mo==null?void 0:Mo.status)===422?y("Invalid or expired verification code"):y("Issue verifying code"),E(0)})}N.preventDefault()},W=N=>{I===1&&(y(null),E(null));let k=[...g.slice(0,N),"",...g.slice(N+1)];if(b(k),N>0){let J=document.querySelector(`input[name=code-${N-1}]`);J==null||J.focus()}},j=`Verify your ${S==0?"email":"phone"}`,F=S==0?(0,z.jsxs)("p",{children:["Please check ",(0,z.jsx)(Kc,{children:(ue=s())==null?void 0:ue.email})," for an email from privy.io and enter your code below."]}):`Please check ${(we=s())==null?void 0:we.phoneNumber} for a message from ${(e==null?void 0:e.name)||"privy.io"} and enter your code below.`;return(0,z.jsxs)(z.Fragment,{children:[(0,z.jsx)(A,{},"header"),(0,z.jsxs)(zc,{children:[(0,z.jsx)(se,{title:j,description:F}),(0,z.jsxs)(yo,{children:[(0,z.jsxs)(qc,{children:[(0,z.jsx)($c,{fail:!!u,success:w,children:(0,z.jsx)("span",{children:u||(w?"Success!":"")})}),(0,z.jsx)("div",{children:g.map((N,k)=>(0,z.jsx)("input",{name:`code-${k}`,type:"text",value:g[k],onChange:L,onKeyUp:J=>{J.key==="Backspace"&&W(k)},inputMode:"numeric",autoFocus:k===0,pattern:"[0-9]",className:`${w?"success":""} ${u?"fail":""}`,autoComplete:ns.isMobile?"one-time-code":"off"},k))})]}),(0,z.jsx)(jc,{children:S==0?(0,z.jsxs)(z.Fragment,{children:[(0,z.jsx)("span",{children:"Didn't get an email?"}),(0,z.jsx)("button",{onClick:i,children:"Resend Code"})]}):(0,z.jsxs)(z.Fragment,{children:[(0,z.jsx)("span",{children:"Didn't get a message?"}),(0,z.jsx)("button",{onClick:a,children:"Resend Code"})]})})]})]}),(0,z.jsx)(H,{protectedByPrivy:!0})]})},zc=bo.default.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
|
+
`,qc=bo.default.div`
|
|
399
399
|
display: flex;
|
|
400
400
|
flex-direction: column;
|
|
401
401
|
width: 100%;
|
|
@@ -463,7 +463,7 @@ Resources:
|
|
|
463
463
|
transform: translate(1px, 0px);
|
|
464
464
|
}
|
|
465
465
|
}
|
|
466
|
-
|
|
466
|
+
`,$c=bo.default.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
|
+
`,jc=bo.default.div`
|
|
475
475
|
font-size: 13px;
|
|
476
476
|
color: var(--privy-color-foreground-3);
|
|
477
477
|
display: flex;
|
|
@@ -485,11 +485,11 @@ Resources:
|
|
|
485
485
|
> button {
|
|
486
486
|
text-decoration: underline;
|
|
487
487
|
}
|
|
488
|
-
`,
|
|
488
|
+
`,Kc=bo.default.span`
|
|
489
489
|
word-break: break-all;
|
|
490
|
-
`;var Fr=require("react"),
|
|
490
|
+
`;var Fr=require("react"),ls=x(require("styled-components"));var as=require("react-device-detect");var ss=e=>{let t=new URL(window.location.href);if(!ho()&&as.isMobile)return`https://go.cb-w.com/dapp?cb_url=${encodeURIComponent(`${t.href.replace(/\/$/g,"")}?privy_wallet_client=coinbase_wallet${e?`&privy_token=${e}`:""}`)}`};var Se=require("react/jsx-runtime"),cs=()=>{let{forkSession:e,ready:t,authenticated:o}=B(),{closePrivyModal:r}=_(),[n,i]=(0,Fr.useState)("");(0,Fr.useEffect)(()=>{t&&o&&e().then(l=>i(l))},[o,t]);let a=ss(n),s={title:"Redirecting to Coinbase Wallet",description:"We'll take you to the Coinbase Wallet app to continue your login experience.",footnote:""};return t&&o&&(s.description="For the best experience, we'll automatically log you into the Coinbase Wallet in-app browser.",s.footnote="Once you're done, you can always return here and refresh to view your updated account."),(0,Se.jsxs)(Se.Fragment,{children:[(0,Se.jsx)(A,{},"header"),(0,Se.jsx)(Nt,{title:s.title,description:s.description}),(0,Se.jsxs)(Te,{children:[(0,Se.jsx)(Zc,{children:(0,Se.jsx)(Ge,{style:{width:"72px",height:"72px"}})}),(0,Se.jsx)(Or,{href:a,onClick:()=>{r()},loading:t&&o&&!n,children:"Continue"}),s.footnote?(0,Se.jsx)("p",{children:s.footnote}):null]}),(0,Se.jsx)(H,{protectedByPrivy:!0})]})},Zc=(0,ls.default)(yo)`
|
|
491
491
|
margin: 16px auto;
|
|
492
|
-
`;var at=require("react"),
|
|
492
|
+
`;var at=require("react"),ni=require("react-device-detect"),Vr=x(require("styled-components"));var K=require("react/jsx-runtime"),Gr=2,Hr={metamask:{name:"MetaMask",component:xe},phantom:{name:"Phantom",component:it},coinbase_wallet:{name:"Coinbase Wallet",component:Ge},wallet_connect:{name:"WalletConnect",component:mo},embedded:{name:"Privy Wallet",component:Rt}},Yc=e=>(e==null?void 0:e.privyErrorCode)==="linked_to_another_user"?Kt.ERROR_USER_EXISTS:e instanceof po&&!e.details.default?e.details:e instanceof co?Kt.ERROR_TIMED_OUT:e instanceof jt?Kt.ERROR_USER_REJECTED_CONNECTION:Kt.ERROR_WALLET_CONNECTION,ps=()=>{var Oe,ye,ft,At,me;let[e,t]=(0,at.useState)(!1),[o,r]=(0,at.useState)(!1),[n,i]=(0,at.useState)(void 0),{app:a,navigate:s,navigateBack:l}=v(),{getAuthFlow:d,walletConnectionStatus:m,closePrivyModal:g,loginWithWallet:b}=_(),{walletConnectors:w}=B(),[h,u]=(0,at.useState)(0),{user:y}=B(),[I]=(0,at.useState)((y==null?void 0:y.linkedAccounts.length)||0),E=d(),S=ni.isMobile&&(E==null?void 0:E.meta.walletType)==="wallet_connect"||ni.isMobile&&(E==null?void 0:E.meta.walletType)==="coinbase_wallet",L=(m==null?void 0:m.status)==="connected";(0,at.useEffect)(()=>{!E||S||!L||(r(!0),i(void 0),j().catch(G=>console.warn("Auto-prompted signature failed",G)).finally(()=>r(!1)))},[h,L]),(0,at.useEffect)(()=>{if(y&&e)if(a!=null&&a.render.inDialog){let G=setTimeout(g,Be);return()=>clearTimeout(G)}else{g();return}},[y,e]);let W=G=>{if((G==null?void 0:G.privyErrorCode)==="allowlist_rejected"){s("ALLOWLIST_REJECTION_SCREEN");return}i(Yc(G))};async function j(){try{await b(),t(!0)}catch(G){W(G)}finally{r(!1)}}(0,at.useEffect)(()=>{m!=null&&m.connectError&&W(m==null?void 0:m.connectError)},[m]);let F=(E==null?void 0:E.meta.walletType)||"metamask",ce=((Oe=E==null?void 0:E.meta)==null?void 0:Oe.walletName)||((ye=Hr[F])==null?void 0:ye.name)||"Metamask",ue=((ft=E==null?void 0:E.meta)==null?void 0:ft.walletIcon)||((At=Hr[F])==null?void 0:At.component)||(G=>(0,K.jsx)(xe,{...G})),we=e?`Successfully connected with ${ce}`:n?n.message:L?"Sign to verify":`Waiting for ${ce}`,N="Don\u2019t see your wallet modal? Check your other browser windows.";if(e){let G=(y==null?void 0:y.linkedAccounts.length)||0;I===G?N="Wallet was already linked.":N="You\u2019re good to go!"}else h>=Gr&&n?N="Unable to connect wallet":n?N=n.detail:L&&S?N="Sign the message in your wallet to verify it belongs to you.":F==="metamask"?N="For the best experience, connect only one wallet at a time.":F==="wallet_connect"?N="Open your mobile wallet app to continue":F==="coinbase_wallet"&&(ho()||(Kn(y)?N="Continue with the Coinbase app. Not the right wallet? Reset your connection below.":N="Open the Coinbase app on your phone to continue."));let k=(me=w==null?void 0:w.walletConnectors)==null?void 0:me.find(G=>G.walletType==="coinbase_wallet"),J=F==="coinbase_wallet"&&(Kn(y)||n===Kt.ERROR_USER_EXISTS);return(0,K.jsxs)(K.Fragment,{children:[(0,K.jsx)(A,{backFn:l}),(0,K.jsxs)(Qc,{children:[(0,K.jsx)(ii,{walletLogo:ue,success:e,fail:!!n}),(0,K.jsxs)(Jc,{children:[(0,K.jsx)("h3",{children:we}),(0,K.jsx)("p",{children:N})]}),(0,K.jsx)(Ka,{children:J?(0,K.jsx)(Pe,{onClick:()=>k&&(k==null?void 0:k.disconnect()),invisible:e,disabled:e,children:"Use a different wallet"}):n==Kt.ERROR_USER_EXISTS?(0,K.jsx)(Pe,{onClick:l,children:"Use a different wallet"}):L&&!e&&S?(0,K.jsx)(Pe,{onClick:()=>{r(!0),j()},disabled:o,children:o?"Signing":"Sign with your wallet"}):!e&&(n==null?void 0:n.retryable)&&h<Gr?(0,K.jsx)(Pe,{onClick:()=>{u(h+1),i(void 0),m==null||m.connectRetry()},invisible:e||!(n!=null&&n.retryable)||h>=Gr,disabled:!e&&(!(n!=null&&n.retryable)||h>=Gr),children:"Retry"}):null})]})]})},Qc=Vr.default.div`
|
|
493
493
|
display: flex;
|
|
494
494
|
flex-direction: column;
|
|
495
495
|
align-items: center;
|
|
@@ -527,7 +527,7 @@ Resources:
|
|
|
527
527
|
left: -19px;
|
|
528
528
|
top: -19px;
|
|
529
529
|
}
|
|
530
|
-
`,
|
|
530
|
+
`,ii=e=>{let t=e.walletLogo;return(0,K.jsx)(K.Fragment,{children:(0,K.jsx)(Xc,{children:(0,K.jsxs)("div",{children:[(0,K.jsx)(Dr,{success:e.success,fail:e.fail}),typeof t=="string"?(0,K.jsx)("span",{style:{background:`url('${t}')`,height:"38px",width:"38px",borderRadius:"6px",margin:"auto",backgroundSize:"cover"}}):(0,K.jsx)(t,{style:{width:"38px",height:"38px"}})]})})})};var $r=require("react"),ys=x(require("styled-components"));var Ho=x(require("styled-components")),wo=require("react/jsx-runtime"),zr=({children:e})=>(0,wo.jsx)(ed,{children:(0,wo.jsxs)(td,{children:[e,(0,wo.jsx)(od,{}),(0,wo.jsx)(rd,{})]})}),ed=Ho.default.div`
|
|
531
531
|
height: 100%;
|
|
532
532
|
display: flex;
|
|
533
533
|
justify-content: center;
|
|
@@ -574,12 +574,12 @@ Resources:
|
|
|
574
574
|
transform: rotate(360deg);
|
|
575
575
|
}
|
|
576
576
|
}
|
|
577
|
-
`;var
|
|
577
|
+
`;var us=["error","invalid_request_arguments","wallet_not_on_device","invalid_recovery_pin","insufficient_funds"];var Ut=class extends Error{constructor(o,r){super(r);this.type=o}};function ai(e){let t=e.type;return typeof t=="string"&&us.includes(t)}function ms(e){return ai(e)&&e.type==="wallet_not_on_device"}function fs(e){return ai(e)&&e.type==="invalid_recovery_pin"}function hs(e){return ai(e)&&e.type==="insufficient_funds"}var si=require("react/jsx-runtime"),qr=e=>(0,si.jsx)("svg",{width:"160",height:"160",viewBox:"0 0 160 160",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e,children:(0,si.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M68.853 62.127c-5.174.517-8.978 4.95-8.978 10.149v15.336c0 5.248 3.873 9.7 9.098 10.196 3.623.344 7.71.64 11.027.64 5.445 0 12.964-.799 17.098-1.294a3.445 3.445 0 0 0 3.027-3.436v-19.05c0-1.75-1.29-3.228-3.027-3.436-3.657-.438-9.961-1.113-15.136-1.264a66.647 66.647 0 0 0-1.965-.03c-.72 0-1.478.013-2.262.04-3.046.1-6.453.373-9.467.669a1.677 1.677 0 0 1-.174-3.347c3.804-.373 8.282-.717 11.903-.717 4.034 0 9.137.427 13.193.847 1.322.137 2.54.274 3.58.397v-1.582c0-1.734-1.264-3.203-2.983-3.426-3.83-.497-10.563-1.267-15.464-1.267-2.848 0-6.314.26-9.47.575Zm25.399 24.581a2.516 2.516 0 1 0 0-5.031 2.516 2.516 0 0 0 0 5.031Z",fill:"var(--privy-color-accent)"})});var Xe=require("react/jsx-runtime"),gs=1,bs=()=>{let{authenticated:e,user:t,getAccessToken:o}=B(),{closePrivyModal:r,walletProxy:n}=_(),{navigate:i,data:a,setModalData:s}=v(),l=(0,$r.useMemo)(()=>Date.now(),[]),{onCompleteNavigateTo:d,onFailure:m}=a==null?void 0:a.connectWallet,g=b=>{r({shouldCallAuthOnSuccess:!1}),m(typeof b=="string"?new Error(b):b)};return(0,$r.useEffect)(()=>{let b=ee(t),w;return!e||!b?g("User must be authenticated and have a Privy wallet before it can be connected"):n?((async()=>{let u=await o();if(!u)return g("User must be authenticated and have a Privy wallet before it can be connected");try{await n.connect({accessToken:u,address:b.address});let y=(Date.now()-l)/1e3;d==="EMBEDDED_WALLET_KEY_EXPORT_SCREEN"&&y<gs?w=setTimeout(()=>{i(d)},(gs-y)*1e3):i(d)}catch(y){ms(y)?(s({...a,recoverWallet:{onCompleteNavigateTo:d,onFailure:m}}),i("EMBEDDED_WALLET_RECOVERY_SCREEN")):g(y)}})(),()=>clearTimeout(w)):void 0},[e,t,n]),(0,Xe.jsxs)(Xe.Fragment,{children:[(0,Xe.jsx)(A,{onClose:()=>g("User exited before wallet could be connected")}),(0,Xe.jsxs)(nd,{children:[(0,Xe.jsx)(Dt,{title:"Loading your account",description:"Please wait one moment while we load your account information"}),(0,Xe.jsx)(zr,{children:(0,Xe.jsx)(qr,{})})]}),(0,Xe.jsx)(H,{protectedByPrivy:!0})]})},nd=ys.default.div`
|
|
578
578
|
display: flex;
|
|
579
579
|
height: 100%;
|
|
580
580
|
flex-direction: column;
|
|
581
581
|
flex-grow: 1;
|
|
582
|
-
`;var Yt=x(require("styled-components"));var ws=require("react"),Cs=x(require("styled-components"));var
|
|
582
|
+
`;var Yt=x(require("styled-components"));var ws=require("react"),Cs=x(require("styled-components"));var li=require("react/jsx-runtime"),Co=({style:e,color:t,...o})=>(0,li.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:t||"currentColor",style:{height:"1.5rem",width:"1.5rem",...e},...o,children:(0,li.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M4.5 12.75l6 6 9-13.5"})});var jr=require("react/jsx-runtime"),vs=({color:e,...t})=>(0,jr.jsx)("svg",{version:"1.1",id:"Layer_1",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",x:"0px",y:"0px",viewBox:"0 0 115.77 122.88",xmlSpace:"preserve",...t,children:(0,jr.jsx)("g",{children:(0,jr.jsx)("path",{fill:e||"currentColor",className:"st0",d:"M89.62,13.96v7.73h12.19h0.01v0.02c3.85,0.01,7.34,1.57,9.86,4.1c2.5,2.51,4.06,5.98,4.07,9.82h0.02v0.02 v73.27v0.01h-0.02c-0.01,3.84-1.57,7.33-4.1,9.86c-2.51,2.5-5.98,4.06-9.82,4.07v0.02h-0.02h-61.7H40.1v-0.02 c-3.84-0.01-7.34-1.57-9.86-4.1c-2.5-2.51-4.06-5.98-4.07-9.82h-0.02v-0.02V92.51H13.96h-0.01v-0.02c-3.84-0.01-7.34-1.57-9.86-4.1 c-2.5-2.51-4.06-5.98-4.07-9.82H0v-0.02V13.96v-0.01h0.02c0.01-3.85,1.58-7.34,4.1-9.86c2.51-2.5,5.98-4.06,9.82-4.07V0h0.02h61.7 h0.01v0.02c3.85,0.01,7.34,1.57,9.86,4.1c2.5,2.51,4.06,5.98,4.07,9.82h0.02V13.96L89.62,13.96z M79.04,21.69v-7.73v-0.02h0.02 c0-0.91-0.39-1.75-1.01-2.37c-0.61-0.61-1.46-1-2.37-1v0.02h-0.01h-61.7h-0.02v-0.02c-0.91,0-1.75,0.39-2.37,1.01 c-0.61,0.61-1,1.46-1,2.37h0.02v0.01v64.59v0.02h-0.02c0,0.91,0.39,1.75,1.01,2.37c0.61,0.61,1.46,1,2.37,1v-0.02h0.01h12.19V35.65 v-0.01h0.02c0.01-3.85,1.58-7.34,4.1-9.86c2.51-2.5,5.98-4.06,9.82-4.07v-0.02h0.02H79.04L79.04,21.69z M105.18,108.92V35.65v-0.02 h0.02c0-0.91-0.39-1.75-1.01-2.37c-0.61-0.61-1.46-1-2.37-1v0.02h-0.01h-61.7h-0.02v-0.02c-0.91,0-1.75,0.39-2.37,1.01 c-0.61,0.61-1,1.46-1,2.37h0.02v0.01v73.27v0.02h-0.02c0,0.91,0.39,1.75,1.01,2.37c0.61,0.61,1.46,1,2.37,1v-0.02h0.01h61.7h0.02 v0.02c0.91,0,1.75-0.39,2.37-1.01c0.61-0.61,1-1.46,1-2.37h-0.02V108.92L105.18,108.92z"})})});var Vo=require("react/jsx-runtime"),Kr=e=>{let[t,o]=(0,ws.useState)(!1);return(0,Vo.jsxs)(id,{onClick:()=>{o(!0),navigator.clipboard.writeText(e.text),setTimeout(()=>o(!1),1500)},justCopied:t,children:[t?(0,Vo.jsx)(Co,{style:{height:"14px",width:"14px"},strokeWidth:"2"}):(0,Vo.jsx)(vs,{style:{height:"14px",width:"14px"}}),t?"Copied":"Copy"," ",e.itemName?e.itemName:"to Clipboard"]})},id=Cs.default.button`
|
|
583
583
|
display: flex;
|
|
584
584
|
align-items: center;
|
|
585
585
|
gap: 6px;
|
|
@@ -636,7 +636,7 @@ Resources:
|
|
|
636
636
|
background-position: 0% 50%;
|
|
637
637
|
}
|
|
638
638
|
}
|
|
639
|
-
`;var re=require("react/jsx-runtime"),Ps=()=>{var g;let{user:e}=
|
|
639
|
+
`;var re=require("react/jsx-runtime"),Ps=()=>{var g;let{user:e}=B(),{closePrivyModal:t}=_(),{data:o}=v(),r=ee(e),{onSuccess:n,onFailure:i,callAuthOnSuccessOnClose:a}=o.createWallet,s=()=>{r?(n(r),t({shouldCallAuthOnSuccess:a})):i(new Error("Failed to create wallet"))},l="Your account",d="You\u2019re all set! This account is tied to a digital wallet. It can only ever be accessed by you.",m=Ye(r.address);return(0,re.jsxs)(re.Fragment,{children:[(0,re.jsx)(A,{onClose:s}),(0,re.jsxs)(sd,{children:[(0,re.jsxs)("div",{children:[(0,re.jsx)(se,{title:l,description:d}),(0,re.jsxs)(ld,{children:[(0,re.jsx)(Es,{}),(0,re.jsxs)(cd,{children:[(0,re.jsx)("p",{children:((g=e==null?void 0:e.email)==null?void 0:g.address)||""}),(0,re.jsxs)(dd,{children:[(0,re.jsx)(pd,{children:m})," ",(0,re.jsx)(Rt,{color:"var(--privy-color-foreground)"})]})]})]}),(0,re.jsx)(ud,{children:(0,re.jsx)(Kr,{text:r.address,itemName:"Address"})})]}),(0,re.jsx)(Y,{onClick:s,children:"I\u2019m all set"})]}),(0,re.jsx)(H,{protectedByPrivy:!0})]})},sd=Yt.default.div`
|
|
640
640
|
display: flex;
|
|
641
641
|
height: 100%;
|
|
642
642
|
flex-direction: column;
|
|
@@ -675,7 +675,7 @@ Resources:
|
|
|
675
675
|
`,ud=Yt.default.div`
|
|
676
676
|
display: flex;
|
|
677
677
|
justify-content: center;
|
|
678
|
-
`;var Ct=require("react"),st=x(require("styled-components"));var de=require("react/jsx-runtime"),Ts=({style:e,...t})=>(0,de.jsxs)("svg",{width:"320",height:"144",viewBox:"0 0 320 144",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{width:320,height:144,...e},...t,children:[(0,de.jsx)("rect",{x:"214.681",y:"51.6852",width:"40",height:"40",rx:"20",fill:"var(--privy-color-background-2)"}),(0,de.jsx)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M229.848 64.9512C228.001 65.1452 226.643 66.726 226.643 68.5829V75.414C226.643 77.2883 228.026 78.8767 229.891 79.0615C231.417 79.2127 233.21 79.3518 234.643 79.3518C236.862 79.3518 239.95 79.0176 241.563 78.8225C242.183 78.7474 242.643 78.2196 242.643 77.5948V69.7756C242.643 69.1508 242.183 68.6229 241.563 68.5479C239.955 68.3534 236.883 68.0207 234.665 68.0185L234.643 68.0185L234.622 68.0185C233.219 68.0199 231.475 68.1534 229.975 68.3005C229.636 68.3007 229.346 68.0433 229.312 67.6989C229.277 67.3325 229.544 67.0063 229.911 66.9703C231.423 66.8219 233.203 66.6852 234.643 66.6852C236.246 66.6852 238.275 66.855 239.887 67.0221C240.412 67.0765 240.896 67.1309 241.309 67.1796V66.4289C241.309 65.8099 240.858 65.2851 240.244 65.2046C238.746 65.0083 235.977 64.6852 233.976 64.6852C232.734 64.6852 231.195 64.8098 229.848 64.9512ZM240.309 74.6852C240.862 74.6852 241.309 74.2375 241.309 73.6852C241.309 73.1329 240.862 72.6852 240.309 72.6852C239.757 72.6852 239.309 73.1329 239.309 73.6852C239.309 74.2375 239.757 74.6852 240.309 74.6852Z",fill:"var(--privy-color-accent)"}),(0,de.jsx)("path",{d:"M92.6426 74.2969H89.5743M76.6426 74.2969H85.5085M77.5837 78.2687L87.1555 61.6852M84.7273 65.9017L82.2897 61.6852M91.8614 78.2687L86.6849 69.2993",stroke:"var(--privy-color-accent)","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"}),(0,de.jsx)("rect",{x:"65.6426",y:"52.6852",width:"38",height:"38",rx:"19",stroke:"var(--privy-color-background-2","stroke-width":"2"}),(0,de.jsx)("path",{d:"M103.162 71.6852H213.662",stroke:"var(--privy-color-background-2","stroke-width":"2","stroke-dasharray":"4 4"}),(0,de.jsx)("path",{d:"M270.544 116.469C272.146 116.469 273.445 115.175 273.445 113.577C273.445 111.98 272.146 110.685 270.544 110.685C268.942 110.685 267.643 111.98 267.643 113.577C267.643 115.175 268.942 116.469 270.544 116.469Z",fill:"var(--privy-color-accent-light"}),(0,de.jsx)("path",{d:"M157.878 48.3615C160.282 48.3615 162.231 46.4193 162.231 44.0234C162.231 41.6274 160.282 39.6852 157.878 39.6852C155.475 39.6852 153.526 41.6274 153.526 44.0234C153.526 46.4193 155.475 48.3615 157.878 48.3615Z",fill:"var(--privy-color-accent-dark)"}),(0,de.jsx)("path",{d:"M35.0825 96.1749C36.8852 96.1749 38.3466 94.7182 38.3466 92.9212C38.3466 91.1243 36.8852 89.6676 35.0825 89.6676C33.2797 89.6676 31.8184 91.1243 31.8184 92.9212C31.8184 94.7182 33.2797 96.1749 35.0825 96.1749Z",fill:"var(--privy-color-accent-dark)"}),(0,de.jsx)("path",{d:"M164.407 103.673C166.41 103.673 168.034 102.055 168.034 100.058C168.034 98.0616 166.41 96.443 164.407 96.443C162.404 96.443 160.78 98.0616 160.78 100.058C160.78 102.055 162.404 103.673 164.407 103.673Z",fill:"var(--privy-color-accent-light"}),(0,de.jsx)("path",{d:"M292.664 33.277C294.267 33.277 295.566 31.9822 295.566 30.3849C295.566 28.7876 294.267 27.4928 292.664 27.4928C291.062 27.4928 289.763 28.7876 289.763 30.3849C289.763 31.9822 291.062 33.277 292.664 33.277Z",fill:"var(--privy-color-accent-light"}),(0,de.jsx)("path",{d:"M104 12.6997C105.302 12.6997 106.357 11.6476 106.357 10.3498C106.357 9.05206 105.302 8 104 8C102.698 8 101.643 9.05206 101.643 10.3498C101.643 11.6476 102.698 12.6997 104 12.6997Z",fill:"var(--privy-color-accent-light"}),(0,de.jsx)("path",{d:"M7.99998 68.6997C9.30194 68.6997 10.3574 67.6476 10.3574 66.3498C10.3574 65.0521 9.30194 64 7.99998 64C6.69802 64 5.64258 65.0521 5.64258 66.3498C5.64258 67.6476 6.69802 68.6997 7.99998 68.6997Z",fill:"var(--privy-color-accent-light"}),(0,de.jsx)("path",{d:"M312 60.6997C313.302 60.6997 314.357 59.6476 314.357 58.3498C314.357 57.0521 313.302 56 312 56C310.698 56 309.643 57.0521 309.643 58.3498C309.643 59.6476 310.698 60.6997 312 60.6997Z",fill:"var(--privy-color-accent-light"}),(0,de.jsx)("path",{d:"M35.544 42.4694C37.1464 42.4694 38.4454 41.1746 38.4454 39.5773C38.4454 37.98 37.1464 36.6852 35.544 36.6852C33.9416 36.6852 32.6426 37.98 32.6426 39.5773C32.6426 41.1746 33.9416 42.4694 35.544 42.4694Z",fill:"var(--privy-color-accent-light"})]});var
|
|
678
|
+
`;var Ct=require("react"),st=x(require("styled-components"));var de=require("react/jsx-runtime"),Ts=({style:e,...t})=>(0,de.jsxs)("svg",{width:"320",height:"144",viewBox:"0 0 320 144",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{width:320,height:144,...e},...t,children:[(0,de.jsx)("rect",{x:"214.681",y:"51.6852",width:"40",height:"40",rx:"20",fill:"var(--privy-color-background-2)"}),(0,de.jsx)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M229.848 64.9512C228.001 65.1452 226.643 66.726 226.643 68.5829V75.414C226.643 77.2883 228.026 78.8767 229.891 79.0615C231.417 79.2127 233.21 79.3518 234.643 79.3518C236.862 79.3518 239.95 79.0176 241.563 78.8225C242.183 78.7474 242.643 78.2196 242.643 77.5948V69.7756C242.643 69.1508 242.183 68.6229 241.563 68.5479C239.955 68.3534 236.883 68.0207 234.665 68.0185L234.643 68.0185L234.622 68.0185C233.219 68.0199 231.475 68.1534 229.975 68.3005C229.636 68.3007 229.346 68.0433 229.312 67.6989C229.277 67.3325 229.544 67.0063 229.911 66.9703C231.423 66.8219 233.203 66.6852 234.643 66.6852C236.246 66.6852 238.275 66.855 239.887 67.0221C240.412 67.0765 240.896 67.1309 241.309 67.1796V66.4289C241.309 65.8099 240.858 65.2851 240.244 65.2046C238.746 65.0083 235.977 64.6852 233.976 64.6852C232.734 64.6852 231.195 64.8098 229.848 64.9512ZM240.309 74.6852C240.862 74.6852 241.309 74.2375 241.309 73.6852C241.309 73.1329 240.862 72.6852 240.309 72.6852C239.757 72.6852 239.309 73.1329 239.309 73.6852C239.309 74.2375 239.757 74.6852 240.309 74.6852Z",fill:"var(--privy-color-accent)"}),(0,de.jsx)("path",{d:"M92.6426 74.2969H89.5743M76.6426 74.2969H85.5085M77.5837 78.2687L87.1555 61.6852M84.7273 65.9017L82.2897 61.6852M91.8614 78.2687L86.6849 69.2993",stroke:"var(--privy-color-accent)","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"}),(0,de.jsx)("rect",{x:"65.6426",y:"52.6852",width:"38",height:"38",rx:"19",stroke:"var(--privy-color-background-2","stroke-width":"2"}),(0,de.jsx)("path",{d:"M103.162 71.6852H213.662",stroke:"var(--privy-color-background-2","stroke-width":"2","stroke-dasharray":"4 4"}),(0,de.jsx)("path",{d:"M270.544 116.469C272.146 116.469 273.445 115.175 273.445 113.577C273.445 111.98 272.146 110.685 270.544 110.685C268.942 110.685 267.643 111.98 267.643 113.577C267.643 115.175 268.942 116.469 270.544 116.469Z",fill:"var(--privy-color-accent-light"}),(0,de.jsx)("path",{d:"M157.878 48.3615C160.282 48.3615 162.231 46.4193 162.231 44.0234C162.231 41.6274 160.282 39.6852 157.878 39.6852C155.475 39.6852 153.526 41.6274 153.526 44.0234C153.526 46.4193 155.475 48.3615 157.878 48.3615Z",fill:"var(--privy-color-accent-dark)"}),(0,de.jsx)("path",{d:"M35.0825 96.1749C36.8852 96.1749 38.3466 94.7182 38.3466 92.9212C38.3466 91.1243 36.8852 89.6676 35.0825 89.6676C33.2797 89.6676 31.8184 91.1243 31.8184 92.9212C31.8184 94.7182 33.2797 96.1749 35.0825 96.1749Z",fill:"var(--privy-color-accent-dark)"}),(0,de.jsx)("path",{d:"M164.407 103.673C166.41 103.673 168.034 102.055 168.034 100.058C168.034 98.0616 166.41 96.443 164.407 96.443C162.404 96.443 160.78 98.0616 160.78 100.058C160.78 102.055 162.404 103.673 164.407 103.673Z",fill:"var(--privy-color-accent-light"}),(0,de.jsx)("path",{d:"M292.664 33.277C294.267 33.277 295.566 31.9822 295.566 30.3849C295.566 28.7876 294.267 27.4928 292.664 27.4928C291.062 27.4928 289.763 28.7876 289.763 30.3849C289.763 31.9822 291.062 33.277 292.664 33.277Z",fill:"var(--privy-color-accent-light"}),(0,de.jsx)("path",{d:"M104 12.6997C105.302 12.6997 106.357 11.6476 106.357 10.3498C106.357 9.05206 105.302 8 104 8C102.698 8 101.643 9.05206 101.643 10.3498C101.643 11.6476 102.698 12.6997 104 12.6997Z",fill:"var(--privy-color-accent-light"}),(0,de.jsx)("path",{d:"M7.99998 68.6997C9.30194 68.6997 10.3574 67.6476 10.3574 66.3498C10.3574 65.0521 9.30194 64 7.99998 64C6.69802 64 5.64258 65.0521 5.64258 66.3498C5.64258 67.6476 6.69802 68.6997 7.99998 68.6997Z",fill:"var(--privy-color-accent-light"}),(0,de.jsx)("path",{d:"M312 60.6997C313.302 60.6997 314.357 59.6476 314.357 58.3498C314.357 57.0521 313.302 56 312 56C310.698 56 309.643 57.0521 309.643 58.3498C309.643 59.6476 310.698 60.6997 312 60.6997Z",fill:"var(--privy-color-accent-light"}),(0,de.jsx)("path",{d:"M35.544 42.4694C37.1464 42.4694 38.4454 41.1746 38.4454 39.5773C38.4454 37.98 37.1464 36.6852 35.544 36.6852C33.9416 36.6852 32.6426 37.98 32.6426 39.5773C32.6426 41.1746 33.9416 42.4694 35.544 42.4694Z",fill:"var(--privy-color-accent-light"})]});var O=require("react/jsx-runtime"),Ss=()=>{var u;let[e,t]=(0,Ct.useState)(null),{authenticated:o,user:r,getAccessToken:n}=B(),{closePrivyModal:i,createAnalyticsEvent:a}=_(),{data:s}=v(),l=(u=ee(r))==null?void 0:u.address,{onFailure:d,onSuccess:m,origin:g,appId:b}=s.keyExport,w=y=>{i({shouldCallAuthOnSuccess:!1}),d(typeof y=="string"?new Error(y):y)},h=()=>{i({shouldCallAuthOnSuccess:!1}),m(),a("embedded_wallet_key_export_completed",{walletAddress:l})};return(0,Ct.useEffect)(()=>{let y=ee(r);if(!o||!y)return w("User must be authenticated before exporting their wallet");n().then(t,w)},[o,r]),(0,O.jsxs)(O.Fragment,{children:[(0,O.jsx)(A,{onClose:h}),(0,O.jsxs)(hd,{children:[(0,O.jsx)(Ts,{}),(0,O.jsxs)(gd,{children:[(0,O.jsx)("h3",{children:"Transfer"}),(0,O.jsxs)(wd,{children:[(0,O.jsx)(fd,{style:{marginRight:6}}),`${l==null?void 0:l.substring(0,4)}...${l==null?void 0:l.substring(l.length-4,l.length-1)}`]})]}),(0,O.jsx)("p",{children:"You can take your account with you to another site using an external wallet!"}),(0,O.jsxs)(yd,{children:[(0,O.jsxs)(As,{children:[(0,O.jsx)(_s,{children:"1"}),(0,O.jsxs)("span",{children:[(0,O.jsx)("a",{href:"https://privy-io.notion.site/Transferring-your-account-9dab9e16c6034a7ab1ff7fa479b02828",target:"blank",rel:"noopener noreferrer",children:"Follow the guide"})," ","to transfer your account to your wallet of choice."]})]}),(0,O.jsxs)(As,{children:[(0,O.jsx)(_s,{children:"2"}),(0,O.jsx)("span",{children:"Copy this key into your other wallet"})]})]}),(0,O.jsx)("div",{style:{width:"100%"},children:e&&(0,O.jsx)(md,{origin:g,appId:b,accessToken:e,address:l,dimensions:{height:"44px"}})}),(0,O.jsxs)(Cd,{children:[(0,O.jsx)("h4",{children:"WARNING"}),(0,O.jsx)("p",{children:"Never share your private key with anyone! It controls your account."})]})]}),(0,O.jsx)(H,{protectedByPrivy:!0})]})};function md(e){let[t,o]=(0,Ct.useState)(e.dimensions.width),[r,n]=(0,Ct.useState)(void 0),i=(0,Ct.useRef)(null);return(0,Ct.useEffect)(()=>{if(i.current&&t===void 0){let{width:s}=i.current.getBoundingClientRect();o(s)}let a=getComputedStyle(document.documentElement);n({background2:a.getPropertyValue("--privy-color-background-2"),foreground3:a.getPropertyValue("--privy-color-foreground-3"),foregroundAccent:a.getPropertyValue("--privy-color-foreground-accent"),accent:a.getPropertyValue("--privy-color-accent"),accentDark:a.getPropertyValue("--privy-color-accent-dark"),success:a.getPropertyValue("--privy-color-success")})},[]),(0,O.jsx)("div",{ref:i,children:t&&(0,O.jsxs)(bd,{children:[(0,O.jsx)("iframe",{style:{position:"absolute",zIndex:1},width:t,height:e.dimensions.height,allow:"clipboard-write self *",src:fr(e.origin,`/apps/${e.appId}/embedded-wallets/export`,{token:e.accessToken,address:e.address,width:`${t}px`,...r})}),(0,O.jsx)(vd,{children:"Loading..."})]})})}function fd(e){return(0,O.jsx)("svg",{width:"16",height:"17",viewBox:"0 0 16 17",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:e.style,children:(0,O.jsx)("path",{d:"M14 8.81335C14 7.98493 13.3284 7.31335 12.5 7.31335H10C10 8.41792 9.10457 9.31335 8 9.31335C6.89543 9.31335 6 8.41792 6 7.31335H3.5C2.67157 7.31335 2 7.98493 2 8.81335M14 8.81335V12.8134C14 13.6418 13.3284 14.3134 12.5 14.3134H3.5C2.67157 14.3134 2 13.6418 2 12.8134V8.81335M14 8.81335V6.81335M2 8.81335V6.81335M14 6.81335C14 5.98493 13.3284 5.31335 12.5 5.31335H3.5C2.67157 5.31335 2 5.98493 2 6.81335M14 6.81335V4.81335C14 3.98493 13.3284 3.31335 12.5 3.31335H3.5C2.67157 3.31335 2 3.98493 2 4.81335V6.81335",stroke:"var(--privy-color-foreground-3)",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})}var hd=st.default.div`
|
|
679
679
|
display: flex;
|
|
680
680
|
height: 100%;
|
|
681
681
|
flex-direction: column;
|
|
@@ -755,7 +755,7 @@ Resources:
|
|
|
755
755
|
&& > h4 {
|
|
756
756
|
color: var(--privy-color-error);
|
|
757
757
|
}
|
|
758
|
-
`;var Eo=require("react"),Po=x(require("styled-components"));var Bt=require("react"),
|
|
758
|
+
`;var Eo=require("react"),Po=x(require("styled-components"));var Bt=require("react"),Zr=x(require("styled-components"));var ci=require("react/jsx-runtime"),ks=({style:e,...t})=>(0,ci.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"currentColor",style:{height:"1.5rem",width:"1.5rem",...e},...t,children:(0,ci.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M16.023 9.348h4.992v-.001M2.985 19.644v-4.992m0 0h4.992m-4.993 0l3.181 3.183a8.25 8.25 0 0013.803-3.7M4.031 9.865a8.25 8.25 0 0113.803-3.7l3.181 3.182m0-4.991v4.99"})});var ke=require("react/jsx-runtime"),xo=6,xd=new Array(xo).fill("");function Ed(e){return e.replace(/\s+/g,"")}function di(e){return/^[a-zA-Z0-9]{1}$/.test(e)}function Pd(e){return/^[a-zA-Z]{1}$/.test(e)}function Td(e){return/^[a-z]{1}$/.test(e)}function Rs(e){return e.length===xo&&e.every(di)}function Ad(e,t){return e.reduce((o,r)=>o+Number(t(r)),0)}function _d(){return crypto.getRandomValues(new Uint8Array(1))[0]}function Sd(){let e="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789",t=[];for(;t.length<xo;){let o=_d();o>247||t.push(e.charAt(o%62))}return t.join("")}var Yr=({onChange:e,disabled:t,readOnly:o,disableGeneration:r,errorReasonOverride:n})=>{let[i,a]=(0,Bt.useState)(xd),[s,l]=(0,Bt.useState)(null),[d,m]=(0,Bt.useState)(null),g=h=>{var N;let u=Ed(h.currentTarget.value);if(u==="")return;let y=Ad(i,di),I=u.split(""),E=!I.every(di),S=I.length+y>xo;if(E){l("Passcode can only be letters and numbers"),m(1);return}if(S){l("Passcode must be exactly 6 letters and numbers"),m(1);return}l(null),m(null);let L=Number((N=h.currentTarget.name)==null?void 0:N.charAt(4)),W=[...u||[""]].slice(0,xo-L),j=[...i.slice(0,L),...W,...i.slice(L+W.length)];a(j);let F=W.length,ce=Math.min(Math.max(L+F,0),xo-1),ue=document.querySelector(`input[name=pin-${ce}]`),we=W[W.length-1]||"";if(Pd(we)&&(Td(we)?ue.autocapitalize="none":ue.autocapitalize="on"),ue==null||ue.focus(),Rs(j)){let k=document.querySelector(`input[name=pin-${ce}]`);k==null||k.blur(),e(j.join(""))}else e(null);h.preventDefault()},b=h=>{d===1&&(l(null),m(null));let u=[...i.slice(0,h),"",...i.slice(h+1)];if(a(u),h>0){let y=document.querySelector(`input[name=pin-${h-1}]`);y==null||y.focus()}Rs(u)?e(u.join("")):e(null)},w=o||r;return(0,ke.jsxs)(ke.Fragment,{children:[(0,ke.jsxs)(kd,{children:[(0,ke.jsx)(Rd,{fail:!!n||!!s,children:n||s||"Passcode can be letters and numbers"}),(0,ke.jsx)("div",{children:i.map((h,u)=>(0,ke.jsx)("input",{name:`pin-${u}`,type:"text",value:i[u],onChange:g,onKeyUp:y=>{y.key==="Backspace"&&b(u)},inputMode:"text",autoFocus:u===0,pattern:"[a-zA-Z0-9]",className:s?"fail":"",autoComplete:"off",disabled:t||o,autoCapitalize:"none"},u))})]}),!w&&(0,ke.jsx)(Wd,{disabled:t,onClick:()=>{let h=Sd();a([...h]),e(h)}})]})},kd=Zr.default.div`
|
|
759
759
|
display: flex;
|
|
760
760
|
flex-direction: column;
|
|
761
761
|
width: 100%;
|
|
@@ -822,7 +822,7 @@ Resources:
|
|
|
822
822
|
transform: translate(1px, 0px);
|
|
823
823
|
}
|
|
824
824
|
}
|
|
825
|
-
`,
|
|
825
|
+
`,Rd=Zr.default.div`
|
|
826
826
|
line-height: 20px;
|
|
827
827
|
height: 20px;
|
|
828
828
|
font-size: 13px;
|
|
@@ -830,7 +830,7 @@ Resources:
|
|
|
830
830
|
display: flex;
|
|
831
831
|
justify-content: flex-end;
|
|
832
832
|
width: 100%;
|
|
833
|
-
`,
|
|
833
|
+
`,Wd=({onClick:e,disabled:t,...o})=>{let[r,n]=(0,Bt.useState)(!1),[i,a]=(0,Bt.useState)();return(0,Bt.useEffect)(()=>{t&&i&&clearTimeout(i),a(void 0)},[t]),(0,ke.jsxs)(Id,{onClick:s=>{i&&clearTimeout(i),n(!0),e==null||e(s),a(setTimeout(()=>n(!1),1e3))},justGenerated:r,disabled:t,...o,children:[r?(0,ke.jsx)(Co,{style:{height:"14px",width:"14px"},strokeWidth:"2"}):(0,ke.jsx)(ks,{style:{height:"14px",width:"14px"}}),r?"Generated":"Generate"," passcode"]})},Id=Zr.default.button`
|
|
834
834
|
display: flex;
|
|
835
835
|
align-items: center;
|
|
836
836
|
gap: 6px;
|
|
@@ -868,7 +868,7 @@ Resources:
|
|
|
868
868
|
width: 14px;
|
|
869
869
|
height: 14px;
|
|
870
870
|
}
|
|
871
|
-
`;var be=require("react/jsx-runtime"),
|
|
871
|
+
`;var be=require("react/jsx-runtime"),Ws=()=>{let{authenticated:e,getAccessToken:t,user:o}=B(),{walletProxy:r,closePrivyModal:n,createAnalyticsEvent:i}=_(),{navigate:a,data:s}=v(),[l,d]=(0,Eo.useState)(null),[m,g]=(0,Eo.useState)(""),[b,w]=(0,Eo.useState)(!1),{onCompleteNavigateTo:h,onFailure:u}=s.recoverWallet,y=L=>{n({shouldCallAuthOnSuccess:!1}),u(typeof L=="string"?new Error(L):L)};(0,Eo.useEffect)(()=>{if(!e||!ee(o))return y("User must be authenticated and have a Privy wallet before it can be recovered")},[e,o]);let I=L=>{d(L)},E=ee(o);return(0,be.jsxs)(be.Fragment,{children:[(0,be.jsx)(A,{onClose:()=>y("User exited before their wallet could be recovered")}),(0,be.jsxs)(Ld,{children:[(0,be.jsxs)("div",{children:[(0,be.jsx)(se,{title:"Load your account",description:"We haven't seen this device yet. To continue, please enter your passcode."}),(0,be.jsx)(Yr,{onChange:I,disabled:b,errorReasonOverride:m,disableGeneration:!0})]}),(0,be.jsxs)(Md,{children:[(0,be.jsx)("h4",{children:"Why am I doing this?"}),(0,be.jsx)("p",{children:"When you created your account, you entered a passcode\u2014this helps secure your digital wallet and ensure only you can access it."})]}),(0,be.jsx)(Nd,{loading:b||!r,disabled:!l,onClick:async()=>{w(!0);let L=await t();if(L&&E&&l!==null)try{i("embedded_wallet_recovery_started",{walletAddress:E.address}),await(r==null?void 0:r.recover({address:E.address,accessToken:L,recoveryPin:l})),g(""),a(h),i("embedded_wallet_recovery_completed",{walletAddress:E.address})}catch(W){fs(W)?g("Invalid recovery passcode, please try again."):g("An error has occurred, please try again.")}finally{w(!1)}else return y("User must be authenticated and have a Privy wallet before it can be recovered")},warn:!1,hideAnimations:!E&&b,children:"Recover your account"})]}),(0,be.jsx)(H,{protectedByPrivy:!0})]})},Ld=Po.default.div`
|
|
872
872
|
display: flex;
|
|
873
873
|
height: 100%;
|
|
874
874
|
flex-direction: column;
|
|
@@ -906,7 +906,7 @@ Resources:
|
|
|
906
906
|
transition: none;
|
|
907
907
|
}
|
|
908
908
|
`}
|
|
909
|
-
`;var To=require("react"),Ao=x(require("styled-components"));var pe=require("react/jsx-runtime"),
|
|
909
|
+
`;var To=require("react"),Ao=x(require("styled-components"));var pe=require("react/jsx-runtime"),Is=()=>{let{authenticated:e,getAccessToken:t,user:o}=B(),{walletProxy:r,refreshUser:n,closePrivyModal:i,createAnalyticsEvent:a}=_(),{navigate:s,data:l}=v(),[d,m]=(0,To.useState)(null),[g,b]=(0,To.useState)(""),[w,h]=(0,To.useState)(!1),{onFailure:u,callAuthOnSuccessOnClose:y}=l.createWallet;(0,To.useEffect)(()=>{e||(s("LANDING"),u(new Error("User must be authenticated before creating a Privy wallet")))},[e]);let I=()=>{u(new Error("User exited before creating a wallet")),i({shouldCallAuthOnSuccess:y})},E=j=>{m(j)},S=ee(o),L=S?()=>{h(!0),setTimeout(()=>{h(!1),s("EMBEDDED_WALLET_CREATED_SCREEN")},350)}:async()=>{h(!0);let j=await t();if(j&&d!==null)try{a("embedded_wallet_creation_started");let F=await(r==null?void 0:r.create({accessToken:j,recoveryPin:d}));a("embedded_wallet_creation_completed",{walletAddress:F==null?void 0:F.address}),b(""),await n()}catch(F){b("An error has occurred, please try again."),console.error(F)}finally{h(!1)}},W=!!S;return(0,pe.jsxs)(pe.Fragment,{children:[(0,pe.jsx)(A,{onClose:I}),(0,pe.jsxs)(Dd,{children:[(0,pe.jsxs)("div",{children:[(0,pe.jsx)(se,{title:W?"Secure your passcode":"Set your passcode",description:W?"Don\u2019t lose this passcode. You\u2019ll need it to access your full account on another device.":"You will need it when you sign in on a different device."}),(0,pe.jsx)(Yr,{onChange:E,disabled:w,readOnly:W,errorReasonOverride:g}),W?(0,pe.jsx)(Kr,{text:d||""}):null]}),(0,pe.jsxs)(Od,{children:[(0,pe.jsx)("h4",{children:"Why am I doing this?"}),W?(0,pe.jsx)("p",{children:"This passcode allows you to access your account on another device. If you lose it, there is no way to recover your full account."}):(0,pe.jsx)("p",{children:"For your security, your account is tied to this device. Your passcode allows you to access it across devices."})]}),(0,pe.jsx)(Ud,{loading:w||!r,disabled:!d,onClick:L,warn:W,hideAnimations:!S&&w,children:W?"I have saved my passcode":"Set passcode"})]}),(0,pe.jsx)(H,{protectedByPrivy:!0})]})},Dd=Ao.default.div`
|
|
910
910
|
display: flex;
|
|
911
911
|
height: 100%;
|
|
912
912
|
flex-direction: column;
|
|
@@ -944,18 +944,18 @@ Resources:
|
|
|
944
944
|
transition: none;
|
|
945
945
|
}
|
|
946
946
|
`}
|
|
947
|
-
`;var Vs=require("react"),xt=x(require("react-device-detect")),et=x(require("styled-components"));var
|
|
947
|
+
`;var Vs=require("react"),xt=x(require("react-device-detect")),et=x(require("styled-components"));var Qr=x(require("styled-components"));var pi=require("react/jsx-runtime"),Ls=({style:e,...t})=>(0,pi.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",width:"17",height:"17",viewBox:"0 0 17 17",style:{height:"1.25rem",width:"1.25rem",...e},...t,children:(0,pi.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",fillRule:"evenodd",clipRule:"evenodd",d:"M16.5 8.67993C16.5 9.82986 15.853 10.8287 14.9032 11.3322C15.2188 12.3599 14.97 13.5237 14.1569 14.3368C13.3437 15.1499 12.18 15.3987 11.1523 15.0831C10.6488 16.0329 9.64993 16.6799 8.5 16.6799C7.35007 16.6799 6.35126 16.0329 5.84771 15.0831C4.82003 15.3987 3.65627 15.1499 2.84314 14.3368C2.03001 13.5237 1.78124 12.3599 2.09681 11.3322C1.14699 10.8287 0.5 9.82986 0.5 8.67993C0.5 7.53 1.14699 6.53119 2.0968 6.02764C1.78125 4.99996 2.03003 3.83621 2.84315 3.02309C3.65627 2.20997 4.82002 1.96119 5.8477 2.27675C6.35125 1.32692 7.35007 0.679932 8.5 0.679932C9.64992 0.679932 10.6487 1.32691 11.1523 2.27672C12.18 1.96115 13.3437 2.20993 14.1569 3.02305C14.97 3.83618 15.2188 4.99996 14.9032 6.02764C15.853 6.53119 16.5 7.53 16.5 8.67993ZM12.2659 6.68856C12.5654 6.40238 12.5761 5.92763 12.29 5.62818C12.0038 5.32873 11.529 5.31797 11.2296 5.60416C9.73022 7.03711 8.40877 8.65489 7.3018 10.4211L5.78033 8.89963C5.48744 8.60673 5.01256 8.60673 4.71967 8.89963C4.42678 9.19252 4.42678 9.66739 4.71967 9.96029L6.92031 12.1609C7.08544 12.3261 7.31807 12.4048 7.54957 12.374C7.78106 12.3432 7.98499 12.2064 8.1012 12.0038C9.23027 10.0356 10.6362 8.24613 12.2659 6.68856Z",fill:"var(--privy-color-accent)"})});var Xr=require("react/jsx-runtime"),Jr=Qr.default.div`
|
|
948
948
|
display: flex;
|
|
949
949
|
flex-direction: column;
|
|
950
950
|
justify-content: flex-start;
|
|
951
951
|
gap: 4px;
|
|
952
|
-
`,Qt=
|
|
952
|
+
`,Qt=Qr.default.div`
|
|
953
953
|
&&& {
|
|
954
954
|
margin-left: 7px; /* TODO: This is a total hack */
|
|
955
955
|
border-left: 2px solid var(--privy-color-foreground-4);
|
|
956
956
|
height: 12px;
|
|
957
957
|
}
|
|
958
|
-
`,lt=({children:e})=>(0,
|
|
958
|
+
`,lt=({children:e})=>(0,Xr.jsxs)(Bd,{children:[(0,Xr.jsx)(Ls,{style:{width:"16px",height:"16px"}}),e]}),Bd=Qr.default.div`
|
|
959
959
|
display: flex;
|
|
960
960
|
justify-content: flex-start;
|
|
961
961
|
justify-items: center;
|
|
@@ -973,7 +973,7 @@ Resources:
|
|
|
973
973
|
margin-bottom: auto;
|
|
974
974
|
}
|
|
975
975
|
}
|
|
976
|
-
`;var Ns=x(require("qrcode")),Ds=x(require("styled-components"));var
|
|
976
|
+
`;var Ns=x(require("qrcode")),Ds=x(require("styled-components"));var q=require("react/jsx-runtime"),Re=7,ui=(e,t,o,r,n)=>{for(let i=t;i<t+r;i++)for(let a=o;a<o+n;a++){let s=e==null?void 0:e[a];s&&s[i]&&(s[i]=0)}return e},Fd=e=>{let t=Ns.default.create(e,{errorCorrectionLevel:"high"}).modules,o=fa(Array.from(t.data),t.size);return o=ui(o,0,0,Re,Re),o=ui(o,o.length-Re,0,Re,Re),o=ui(o,0,o.length-Re,Re,Re),o},Gd=({x:e,y:t,cellSize:o,bgColor:r,fgColor:n})=>(0,q.jsx)(q.Fragment,{children:[0,1,2].map(i=>(0,q.jsx)("circle",{r:o*(Re-i*2)/2,cx:e+o*Re/2,cy:t+o*Re/2,fill:i%2!==0?r:n},`finder-${e}-${t}-${i}`))}),Hd=({cellSize:e,matrixSize:t,bgColor:o,fgColor:r})=>{let n=[[0,0],[(t-Re)*e,0],[0,(t-Re)*e]];return(0,q.jsx)(q.Fragment,{children:n.map(([i,a])=>(0,q.jsx)(Gd,{x:i,y:a,cellSize:e,bgColor:o,fgColor:r}))})},Vd=({matrix:e,cellSize:t,color:o})=>(0,q.jsx)(q.Fragment,{children:e.map((r,n)=>r.map((i,a)=>i?(0,q.jsx)("circle",{r:t/2.5,cx:n*t+t/2,cy:a*t+t/2,fill:o},`circle-${n}-${a}`):(0,q.jsx)(q.Fragment,{})))}),Ms=(e,t)=>e-e%t,zd=({outputSize:e,cellSize:t,element:o,size:r,padding:n,bgColor:i})=>{if(!o)return(0,q.jsx)(q.Fragment,{});let a=r||40,s=n||4,l=o,d=e/2-a/2-s;return(0,q.jsxs)(q.Fragment,{children:[(0,q.jsx)("rect",{x:Ms(d,t),y:Ms(d,t),width:a+s*2+(d%t?t+.5:.5),height:a+s*2+(d%t?t+.5:.5),fill:i}),(0,q.jsx)(l,{x:e/2-a/2,y:e/2-a/2,height:a,width:a})]})},qd=e=>{var n;let t=e.outputSize,o=Fd(e.url),r=t/o.length;return(0,q.jsxs)("svg",{height:e.outputSize,width:e.outputSize,viewBox:`0 0 ${e.outputSize} ${e.outputSize}`,style:{height:"100%",width:"100%"},children:[(0,q.jsx)(Vd,{matrix:o,cellSize:r,color:e.fgColor}),(0,q.jsx)(Hd,{cellSize:r,matrixSize:o.length,fgColor:e.fgColor,bgColor:e.bgColor}),(0,q.jsx)(zd,{outputSize:e.outputSize,cellSize:r,element:(n=e.logo)==null?void 0:n.element,bgColor:e.bgColor})]})},$d=Ds.default.div`
|
|
977
977
|
display: flex;
|
|
978
978
|
justify-content: center;
|
|
979
979
|
align-items: center;
|
|
@@ -988,7 +988,7 @@ Resources:
|
|
|
988
988
|
border-color: ${e=>e.fgColor};
|
|
989
989
|
border-radius: 12px;
|
|
990
990
|
}
|
|
991
|
-
`,Os=e=>{let t=e.bgColor||"#FFFFFF",o=e.fgColor||"#000000",r=e.size||160;return(0,z.jsx)(zd,{size:r,bgColor:t,fgColor:o,children:(0,z.jsx)($d,{url:e.url,logo:{element:e.squareLogoElement},outputSize:r,bgColor:t,fgColor:o})})};var Bs=require("react/jsx-runtime"),Us=({size:e})=>(0,Bs.jsx)(Os,{url:"https://coinbase-wallet.onelink.me/q5Sx/fdb9b250",squareLogoElement:Fe,size:e,fgColor:"#1F1F1F"});var L=require("react/jsx-runtime"),Fs=({style:e,...t})=>(0,L.jsxs)("svg",{width:"286",height:"183",viewBox:"0 0 286 183",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"1.25rem",width:"1.25rem",...e},...t,children:[(0,L.jsx)("rect",{x:"198.5",y:"133",width:"50",height:"50",rx:"25",fill:"#E1E7EF"}),(0,L.jsx)("path",{d:"M236.373 144.791L225.206 153.052L227.289 148.181L236.373 144.791Z",fill:"#E17726",stroke:"#E17726",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),(0,L.jsx)("path",{d:"M210.627 144.791L221.692 153.116L219.711 148.187L210.627 144.785V144.791ZM232.353 163.933L229.377 168.47L235.738 170.219L237.557 164.036L232.347 163.933H232.353ZM209.448 164.036L211.257 170.219L217.602 168.47L214.647 163.933L209.448 164.036Z",fill:"#E27625",stroke:"#E27625",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),(0,L.jsx)("path",{d:"M217.262 156.27L215.497 158.939L221.783 159.23L221.579 152.46L217.262 156.281V156.27V156.27ZM229.737 156.281L225.351 152.374L225.206 159.23L231.492 158.939L229.732 156.281H229.737ZM217.602 168.475L221.417 166.64L218.14 164.089L217.607 168.475H217.602ZM225.588 166.63L229.377 168.475L228.865 164.084L225.588 166.635V166.63Z",fill:"#E27625",stroke:"#E27625",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),(0,L.jsx)("path",{d:"M229.377 168.47L225.588 166.635L225.895 169.1L225.862 170.144L229.382 168.47H229.377ZM217.602 168.47L221.137 170.144L221.11 169.1L221.417 166.635L217.602 168.47V168.47Z",fill:"#D5BFB2",stroke:"#D5BFB2",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),(0,L.jsx)("path",{d:"M221.197 162.448L218.054 161.533L220.282 160.516L221.207 162.453H221.197V162.448ZM225.793 162.448L226.729 160.505L228.962 161.522L225.793 162.459V162.448Z",fill:"#233447",stroke:"#233447",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),(0,L.jsx)("path",{d:"M217.602 168.47L218.156 163.933L214.647 164.035L217.602 168.47V168.47ZM228.844 163.933L229.377 168.47L232.353 164.035L228.844 163.933V163.933ZM231.503 158.939L225.217 159.23L225.793 162.459L226.729 160.505L228.962 161.522L231.503 158.939V158.939ZM218.054 161.533L220.282 160.516L221.207 162.453L221.794 159.224L215.508 158.944L218.059 161.538L218.054 161.533Z",fill:"#CC6228",stroke:"#CC6228",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),(0,L.jsx)("path",{d:"M215.503 158.939L218.134 164.078L218.048 161.528L215.497 158.934L215.503 158.939ZM228.962 161.533L228.86 164.084L231.492 158.944L228.957 161.538L228.962 161.533ZM221.794 159.23L221.196 162.459L221.945 166.263L222.117 161.242L221.794 159.23ZM225.211 159.23L224.904 161.237L225.055 166.269L225.792 162.453L225.206 159.224V159.235L225.211 159.23Z",fill:"#E27525",stroke:"#E27525",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),(0,L.jsx)("path",{d:"M225.793 162.448L225.055 166.263L225.588 166.635L228.86 164.084L228.962 161.528L225.793 162.448V162.448ZM218.054 161.528L218.14 164.078L221.417 166.629L221.945 166.263L221.207 162.448L218.048 161.528H218.059H218.054Z",fill:"#F5841F",stroke:"#F5841F",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),(0,L.jsx)("path",{d:"M225.868 170.144L225.895 169.1L225.604 168.863H221.39L221.11 169.1L221.137 170.144L217.602 168.47L218.845 169.487L221.353 171.215H225.642L228.155 169.482L229.377 168.47L225.857 170.144H225.868V170.144Z",fill:"#C0AC9D",stroke:"#C0AC9D",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),(0,L.jsx)("path",{d:"M225.588 166.63L225.055 166.264H221.945L221.417 166.635L221.11 169.1L221.39 168.863H225.604L225.895 169.1L225.588 166.635V166.624V166.63Z",fill:"#161616",stroke:"#161616",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),(0,L.jsx)("path",{d:"M236.846 153.585L237.783 149.037L236.373 144.791L225.583 152.777L229.737 156.27L235.598 157.976L236.889 156.475L236.33 156.066L237.223 155.248L236.545 154.72L237.438 154.042L236.846 153.585H236.857H236.846ZM209.217 149.032L210.17 153.585L209.556 154.037L210.466 154.715L209.787 155.248L210.67 156.066L210.11 156.475L211.402 157.976L217.263 156.275L221.417 152.767L210.627 144.791L209.217 149.032V149.032Z",fill:"#763E1A",stroke:"#763E1A",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),(0,L.jsx)("path",{d:"M235.598 157.976L229.737 156.275L231.502 158.934L228.871 164.073L232.353 164.03H237.562L235.598 157.97V157.976ZM217.263 156.27L211.402 157.976L209.448 164.035H214.658L218.14 164.079L215.508 158.939L217.273 156.27H217.263V156.27ZM225.206 159.224L225.588 152.766L227.289 148.176H219.711L221.412 152.766L221.794 159.224L221.939 161.248V166.263H225.055L225.071 161.248L225.206 159.224V159.224Z",fill:"#F5841F",stroke:"#F5841F",strokeWidth:"0.47",strokeLinecap:"round",strokeLinejoin:"round"}),(0,L.jsx)("rect",{x:"192",y:"30",width:"50",height:"50",rx:"25",fill:"#0C5BFF"}),(0,L.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M205 55C205 61.6274 210.373 67 217 67C223.627 67 229 61.6274 229 55C229 48.3726 223.627 43 217 43C210.373 43 205 48.3726 205 55ZM213.933 51.1333C213.491 51.1333 213.133 51.4915 213.133 51.9333V58.0667C213.133 58.5085 213.491 58.8667 213.933 58.8667H220.067C220.508 58.8667 220.867 58.5085 220.867 58.0667V51.9333C220.867 51.4915 220.508 51.1333 220.067 51.1333H213.933Z",fill:"white"}),(0,L.jsx)("rect",{x:"39.5",y:"18",width:"50",height:"50",rx:"25",fill:"url(#paint0_linear_428_81)"}),(0,L.jsx)("path",{d:"M77.3677 42.8335H74.102C74.102 36.2519 68.6881 30.9167 62.0091 30.9167C55.4129 30.9167 50.0501 36.1213 49.9189 42.5901C49.7831 49.2769 56.1492 55.0834 62.9357 55.0834H63.7893C69.7724 55.0834 77.7916 50.468 79.0445 44.8444C79.2758 43.8079 78.445 42.8335 77.3677 42.8335ZM57.1562 43.1267C57.1562 44.0068 56.4257 44.7267 55.5325 44.7267C54.6394 44.7267 53.9089 44.0065 53.9089 43.1267V40.5383C53.9089 39.6582 54.6394 38.9383 55.5325 38.9383C56.4257 38.9383 57.1562 39.6582 57.1562 40.5383V43.1267ZM62.794 43.1267C62.794 44.0068 62.0636 44.7267 61.1705 44.7267C60.2773 44.7267 59.5468 44.0065 59.5468 43.1267V40.5383C59.5468 39.6582 60.2776 38.9383 61.1705 38.9383C62.0636 38.9383 62.794 39.6582 62.794 40.5383V43.1267Z",fill:"url(#paint1_linear_428_81)"}),(0,L.jsx)("rect",{x:"46.5",y:"124",width:"50",height:"50",rx:"25",fill:"#141414"}),(0,L.jsx)("g",{clipPath:"url(#clip0_428_81)",children:(0,L.jsx)("path",{d:"M62.1497 143.578C67.3134 138.585 75.6867 138.585 80.8505 143.578L81.4722 144.179C81.5335 144.238 81.5822 144.308 81.6155 144.386C81.6488 144.463 81.666 144.547 81.666 144.631C81.666 144.715 81.6488 144.799 81.6155 144.876C81.5822 144.954 81.5335 145.024 81.4722 145.083L79.3462 147.139C79.2835 147.199 79.1996 147.232 79.1123 147.232C79.025 147.232 78.9411 147.199 78.8784 147.139L78.0232 146.311C74.421 142.829 68.58 142.829 64.977 146.311L64.0611 147.197C63.9984 147.257 63.9145 147.29 63.8272 147.29C63.7399 147.29 63.656 147.257 63.5933 147.197L61.4672 145.141C61.4059 145.083 61.3572 145.012 61.3239 144.935C61.2906 144.857 61.2735 144.774 61.2735 144.689C61.2735 144.605 61.2906 144.521 61.3239 144.444C61.3572 144.366 61.4059 144.296 61.4672 144.237L62.1497 143.578ZM85.248 147.829L87.1397 149.659C87.201 149.718 87.2497 149.788 87.283 149.865C87.3163 149.943 87.3334 150.027 87.3334 150.111C87.3334 150.195 87.3163 150.279 87.283 150.356C87.2497 150.434 87.201 150.504 87.1397 150.563L78.6081 158.812C78.4828 158.933 78.315 159 78.1403 159C77.9656 159 77.7978 158.933 77.6725 158.812L71.6177 152.957C71.5864 152.927 71.5443 152.91 71.5005 152.91C71.4567 152.91 71.4147 152.927 71.3833 152.957L65.3285 158.812C65.2032 158.933 65.0354 159 64.8607 159C64.686 159 64.5182 158.933 64.3929 158.812L55.8605 150.563C55.7992 150.504 55.7505 150.434 55.7172 150.356C55.6839 150.279 55.6667 150.195 55.6667 150.111C55.6667 150.027 55.6839 149.943 55.7172 149.865C55.7505 149.788 55.7992 149.718 55.8605 149.659L57.7531 147.829C57.8783 147.709 58.0459 147.642 58.2204 147.642C58.3949 147.642 58.5625 147.709 58.6878 147.829L64.7427 153.684C64.774 153.714 64.816 153.731 64.8598 153.731C64.9036 153.731 64.9457 153.714 64.977 153.684L71.0319 147.829C71.1572 147.709 71.325 147.641 71.4997 147.641C71.6743 147.641 71.8422 147.709 71.9675 147.829L78.0232 153.684C78.0545 153.714 78.0965 153.731 78.1403 153.731C78.1841 153.731 78.2262 153.714 78.2575 153.684L84.3124 147.829C84.4377 147.709 84.6055 147.641 84.7802 147.641C84.9549 147.641 85.1227 147.709 85.248 147.829Z",fill:"white"})}),(0,L.jsx)("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",fill:"var(--privy-color-foreground-accent)"}),(0,L.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M131.626 83.0058C128.674 83.3405 126.5 85.8652 126.5 88.8363V92.0779V103.277V105.099C126.5 108.098 128.713 110.636 131.695 110.952C134.982 111.301 139.216 111.667 142.5 111.667C147.147 111.667 153.695 110.934 156.773 110.555C157.765 110.433 158.5 109.588 158.5 108.589V92.0779C158.5 91.0782 157.765 90.2337 156.773 90.1115C153.705 89.7336 147.189 89.0046 142.545 88.9999L142.5 88.9999L142.46 88.9999C139.655 89.0025 136.165 89.2695 133.166 89.564C132.488 89.5642 131.907 89.0495 131.84 88.3608C131.768 87.6279 132.304 86.9755 133.037 86.9036C136.061 86.6067 139.621 86.3333 142.5 86.3333C145.707 86.3333 149.764 86.6728 152.989 87.007C154.039 87.1159 155.006 87.2247 155.833 87.3221V85.3898C155.833 84.3995 155.112 83.56 154.131 83.4288C151.262 83.0454 145.367 82.3333 141.167 82.3333C138.276 82.3333 134.583 82.6705 131.626 83.0058ZM153.833 102.333C154.938 102.333 155.833 101.438 155.833 100.333C155.833 99.2287 154.938 98.3333 153.833 98.3333C152.729 98.3333 151.833 99.2287 151.833 100.333C151.833 101.438 152.729 102.333 153.833 102.333Z",fill:"var(--privy-color-accent-dark)"}),(0,L.jsx)("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",stroke:"#E1E7EF",strokeWidth:"2"}),(0,L.jsx)("path",{d:"M269.405 111C278.27 111 285.457 103.837 285.457 95C285.457 86.1634 278.27 79 269.405 79C260.54 79 253.354 86.1634 253.354 95C253.354 103.837 260.54 111 269.405 111Z",fill:"var(--privy-color-accent)"}),(0,L.jsx)("path",{d:"M133.971 24C140.62 24 146.01 18.6274 146.01 12C146.01 5.37258 140.62 0 133.971 0C127.322 0 121.932 5.37258 121.932 12C121.932 18.6274 127.322 24 133.971 24Z",fill:"var(--privy-color-accent)"}),(0,L.jsx)("path",{d:"M15.5917 112C20.5782 112 24.6206 107.971 24.6206 103C24.6206 98.0294 20.5782 94 15.5917 94C10.6051 94 6.56274 98.0294 6.56274 103C6.56274 107.971 10.6051 112 15.5917 112Z",fill:"var(--privy-color-accent)"}),(0,L.jsx)("path",{d:"M152.029 177C157.57 177 162.061 172.523 162.061 167C162.061 161.477 157.57 157 152.029 157C146.488 157 141.997 161.477 141.997 167C141.997 172.523 146.488 177 152.029 177Z",fill:"var(--privy-color-accent-light)"}),(0,L.jsx)("path",{d:"M263.386 21C267.818 21 271.412 17.4183 271.412 13C271.412 8.58172 267.818 5 263.386 5C258.953 5 255.36 8.58172 255.36 13C255.36 17.4183 258.953 21 263.386 21Z",fill:"var(--privy-color-accent-light)"}),(0,L.jsx)("path",{d:"M7.06436 36C10.6658 36 13.5853 33.0899 13.5853 29.5C13.5853 25.9101 10.6658 23 7.06436 23C3.46296 23 0.543457 25.9101 0.543457 29.5C0.543457 33.0899 3.46296 36 7.06436 36Z",fill:"var(--privy-color-accent-light)"}),(0,L.jsxs)("defs",{children:[(0,L.jsxs)("linearGradient",{id:"paint0_linear_428_81",x1:"64.5",y1:"18",x2:"64.5",y2:"68",gradientUnits:"userSpaceOnUse",children:[(0,L.jsx)("stop",{stopColor:"#534BB1"}),(0,L.jsx)("stop",{offset:"1",stopColor:"#551BF9"})]}),(0,L.jsxs)("linearGradient",{id:"paint1_linear_428_81",x1:"64.5",y1:"30.9167",x2:"64.5",y2:"55.0834",gradientUnits:"userSpaceOnUse",children:[(0,L.jsx)("stop",{stopColor:"white"}),(0,L.jsx)("stop",{offset:"1",stopColor:"white",stopOpacity:"0.82"})]}),(0,L.jsx)("clipPath",{id:"clip0_428_81",children:(0,L.jsx)("rect",{width:"31.6667",height:"19.1667",fill:"white",transform:"translate(55.6667 139.833)"})})]})]});var f=require("react/jsx-runtime");var ui=()=>{let{navigate:e}=v(),t="https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn?hl=en";return xt.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/ether-metamask/"),(0,f.jsxs)(hi,{children:[(0,f.jsx)(se,{title:"Create a Metamask wallet",description:"Follow the instructions below to get started."}),(0,f.jsx)(gi,{children:(0,f.jsx)(Ve,{style:{width:"152px",height:"152px"}})}),(0,f.jsxs)(Qr,{children:[(0,f.jsx)(lt,{children:(0,f.jsxs)("div",{children:[(0,f.jsx)("span",{children:"Install the "}),(0,f.jsx)("a",{href:t,target:"_blank",children:"MetaMask browser extension"})]})}),(0,f.jsx)(Qt,{}),(0,f.jsx)(lt,{children:"Set up your first wallet"}),(0,f.jsx)(Qt,{}),(0,f.jsx)(lt,{children:"Store your recovery phrase in a safe place!"})]}),(0,f.jsx)(Ee,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},mi=()=>{let{navigate:e}=v(),t="https://chrome.google.com/webstore/detail/phantom/bfnaelmomeimhlpmgjnjophhpkkoljpa?hl=en";return xt.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/phantom-app/"),(0,f.jsxs)(hi,{children:[(0,f.jsx)(se,{title:"Create a Phantom wallet",description:"Follow the instructions below to get started."}),(0,f.jsx)(gi,{children:(0,f.jsx)(it,{style:{width:"152px",height:"152px"}})}),(0,f.jsxs)(Qr,{children:[(0,f.jsx)(lt,{children:(0,f.jsxs)("div",{children:[(0,f.jsx)("span",{children:"Install the "}),(0,f.jsx)("a",{href:t,target:"_blank",children:"Phantom browser extension"})]})}),(0,f.jsx)(Qt,{}),(0,f.jsx)(lt,{children:"Set up your first wallet"}),(0,f.jsx)(Qt,{}),(0,f.jsx)(lt,{children:"Store your recovery phrase in a safe place!"})]}),(0,f.jsx)(Ee,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},fi=()=>{let{navigate:e}=v();return(0,f.jsxs)(hi,{children:[(0,f.jsx)(se,{title:"Create a Coinbase wallet",description:"Follow the instructions below to get started."}),(0,f.jsx)(gi,{style:{marginTop:"-24px"},children:(0,f.jsx)(Us,{size:200})}),(0,f.jsxs)(Qr,{children:[(0,f.jsx)(lt,{children:"Scan the QR code with your camera"}),(0,f.jsx)(Qt,{}),(0,f.jsx)(lt,{children:"Set up your first wallet"}),(0,f.jsx)(Qt,{}),(0,f.jsx)(lt,{children:"Store your seed phrase in a safe place!"})]}),(0,f.jsx)(Ee,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},qs=()=>{let[e,t]=(0,Vs.useState)("WHAT_IS_A_WALLET"),{navigateBack:o}=v();return(0,f.jsxs)(f.Fragment,{children:[(0,f.jsx)(A,{backFn:e==="WHAT_IS_A_WALLET"?o:e==="PICK_A_NEW_WALLET"?()=>t("WHAT_IS_A_WALLET"):()=>t("PICK_A_NEW_WALLET")},"header"),(0,f.jsxs)(Zd,{children:[e==="WHAT_IS_A_WALLET"&&(0,f.jsxs)(f.Fragment,{children:[(0,f.jsx)(Jd,{children:(0,f.jsx)(Fs,{style:{width:"240px",height:"auto",borderRadius:"var(--privy-border-radius-sm)",marginBottom:"32px"}})}),(0,f.jsxs)(Dt,{title:"Get started with a new wallet",children:[(0,f.jsx)("p",{children:"Wallets help you store, send, and receive digital assets and collectibles. They are also a new\xA0way\xA0to\xA0log\xA0in."}),(0,f.jsx)("p",{children:"Instead of creating new accounts and passwords for every app, you just connect your wallet and bring your\xA0data\xA0with\xA0you."})]}),(0,f.jsx)(Yd,{children:(0,f.jsx)(Qd,{onClick:()=>{t("PICK_A_NEW_WALLET")},children:"Create a wallet"})})]}),e==="PICK_A_NEW_WALLET"&&(0,f.jsx)(f.Fragment,{children:(0,f.jsxs)(jd,{children:[(0,f.jsx)(se,{title:"Create a new wallet",description:"Select one the wallet providers below to get started on your web3 adventure."}),(0,f.jsxs)(Kd,{children:[(0,f.jsxs)(Gs,{onClick:()=>{xt.isIOS?window.location.href="https://apps.apple.com/us/app/metamask-blockchain-wallet/id1438144202":xt.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=io.metamask":t("CREATE_METAMASK_WALLET")},children:[(0,f.jsx)(Ve,{}),(0,f.jsxs)(Hs,{children:[(0,f.jsx)("h4",{children:"MetaMask"}),(0,f.jsx)("p",{children:"Get a browser-based wallet"})]})]}),(0,f.jsxs)(Gs,{onClick:()=>{xt.isIOS?window.location.href="https://apps.apple.com/us/app/coinbase-wallet-nfts-crypto/id1278383455":xt.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=org.toshi":t("CREATE_COINBASE_WALLET")},children:[(0,f.jsx)(Fe,{}),(0,f.jsxs)(Hs,{children:[(0,f.jsx)("h4",{children:"Coinbase Wallet"}),(0,f.jsx)("p",{children:"Get a mobile app wallet"})]})]})]})]})}),e==="CREATE_COINBASE_WALLET"&&(0,f.jsx)(fi,{}),e==="CREATE_METAMASK_WALLET"&&(0,f.jsx)(ui,{}),e==="CREATE_PHANTOM_WALLET"&&(0,f.jsx)(mi,{})]}),(0,f.jsxs)(Ae,{children:[(0,f.jsx)("span",{children:"Still not sure? "}),(0,f.jsx)("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"}),"."]})]})},Zd=et.default.div`
|
|
991
|
+
`,Os=e=>{let t=e.bgColor||"#FFFFFF",o=e.fgColor||"#000000",r=e.size||160;return(0,q.jsx)($d,{size:r,bgColor:t,fgColor:o,children:(0,q.jsx)(qd,{url:e.url,logo:{element:e.squareLogoElement},outputSize:r,bgColor:t,fgColor:o})})};var Bs=require("react/jsx-runtime"),Us=({size:e})=>(0,Bs.jsx)(Os,{url:"https://coinbase-wallet.onelink.me/q5Sx/fdb9b250",squareLogoElement:Ge,size:e,fgColor:"#1F1F1F"});var $=require("react/jsx-runtime"),Fs=({style:e,...t})=>(0,$.jsxs)("svg",{width:"286",height:"183",viewBox:"0 0 286 183",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"1.25rem",width:"1.25rem",...e},...t,children:[(0,$.jsx)("rect",{x:"198.5",y:"133",width:"50",height:"50",rx:"25",fill:"#E1E7EF"}),(0,$.jsx)(xe,{x:"206",y:"140",width:"36",height:"36"}),(0,$.jsx)("rect",{x:"192",y:"30",width:"50",height:"50",rx:"25",fill:"#0C5BFF"}),(0,$.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M205 55C205 61.6274 210.373 67 217 67C223.627 67 229 61.6274 229 55C229 48.3726 223.627 43 217 43C210.373 43 205 48.3726 205 55ZM213.933 51.1333C213.491 51.1333 213.133 51.4915 213.133 51.9333V58.0667C213.133 58.5085 213.491 58.8667 213.933 58.8667H220.067C220.508 58.8667 220.867 58.5085 220.867 58.0667V51.9333C220.867 51.4915 220.508 51.1333 220.067 51.1333H213.933Z",fill:"white"}),(0,$.jsx)("rect",{x:"39.5",y:"18",width:"50",height:"50",rx:"25",fill:"url(#paint0_linear_428_81)"}),(0,$.jsx)("path",{d:"M77.3677 42.8335H74.102C74.102 36.2519 68.6881 30.9167 62.0091 30.9167C55.4129 30.9167 50.0501 36.1213 49.9189 42.5901C49.7831 49.2769 56.1492 55.0834 62.9357 55.0834H63.7893C69.7724 55.0834 77.7916 50.468 79.0445 44.8444C79.2758 43.8079 78.445 42.8335 77.3677 42.8335ZM57.1562 43.1267C57.1562 44.0068 56.4257 44.7267 55.5325 44.7267C54.6394 44.7267 53.9089 44.0065 53.9089 43.1267V40.5383C53.9089 39.6582 54.6394 38.9383 55.5325 38.9383C56.4257 38.9383 57.1562 39.6582 57.1562 40.5383V43.1267ZM62.794 43.1267C62.794 44.0068 62.0636 44.7267 61.1705 44.7267C60.2773 44.7267 59.5468 44.0065 59.5468 43.1267V40.5383C59.5468 39.6582 60.2776 38.9383 61.1705 38.9383C62.0636 38.9383 62.794 39.6582 62.794 40.5383V43.1267Z",fill:"url(#paint1_linear_428_81)"}),(0,$.jsx)("rect",{x:"46.5",y:"124",width:"50",height:"50",rx:"25",fill:"#141414"}),(0,$.jsx)("g",{clipPath:"url(#clip0_428_81)",children:(0,$.jsx)("path",{d:"M62.1497 143.578C67.3134 138.585 75.6867 138.585 80.8505 143.578L81.4722 144.179C81.5335 144.238 81.5822 144.308 81.6155 144.386C81.6488 144.463 81.666 144.547 81.666 144.631C81.666 144.715 81.6488 144.799 81.6155 144.876C81.5822 144.954 81.5335 145.024 81.4722 145.083L79.3462 147.139C79.2835 147.199 79.1996 147.232 79.1123 147.232C79.025 147.232 78.9411 147.199 78.8784 147.139L78.0232 146.311C74.421 142.829 68.58 142.829 64.977 146.311L64.0611 147.197C63.9984 147.257 63.9145 147.29 63.8272 147.29C63.7399 147.29 63.656 147.257 63.5933 147.197L61.4672 145.141C61.4059 145.083 61.3572 145.012 61.3239 144.935C61.2906 144.857 61.2735 144.774 61.2735 144.689C61.2735 144.605 61.2906 144.521 61.3239 144.444C61.3572 144.366 61.4059 144.296 61.4672 144.237L62.1497 143.578ZM85.248 147.829L87.1397 149.659C87.201 149.718 87.2497 149.788 87.283 149.865C87.3163 149.943 87.3334 150.027 87.3334 150.111C87.3334 150.195 87.3163 150.279 87.283 150.356C87.2497 150.434 87.201 150.504 87.1397 150.563L78.6081 158.812C78.4828 158.933 78.315 159 78.1403 159C77.9656 159 77.7978 158.933 77.6725 158.812L71.6177 152.957C71.5864 152.927 71.5443 152.91 71.5005 152.91C71.4567 152.91 71.4147 152.927 71.3833 152.957L65.3285 158.812C65.2032 158.933 65.0354 159 64.8607 159C64.686 159 64.5182 158.933 64.3929 158.812L55.8605 150.563C55.7992 150.504 55.7505 150.434 55.7172 150.356C55.6839 150.279 55.6667 150.195 55.6667 150.111C55.6667 150.027 55.6839 149.943 55.7172 149.865C55.7505 149.788 55.7992 149.718 55.8605 149.659L57.7531 147.829C57.8783 147.709 58.0459 147.642 58.2204 147.642C58.3949 147.642 58.5625 147.709 58.6878 147.829L64.7427 153.684C64.774 153.714 64.816 153.731 64.8598 153.731C64.9036 153.731 64.9457 153.714 64.977 153.684L71.0319 147.829C71.1572 147.709 71.325 147.641 71.4997 147.641C71.6743 147.641 71.8422 147.709 71.9675 147.829L78.0232 153.684C78.0545 153.714 78.0965 153.731 78.1403 153.731C78.1841 153.731 78.2262 153.714 78.2575 153.684L84.3124 147.829C84.4377 147.709 84.6055 147.641 84.7802 147.641C84.9549 147.641 85.1227 147.709 85.248 147.829Z",fill:"white"})}),(0,$.jsx)("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",fill:"var(--privy-color-foreground-accent)"}),(0,$.jsx)(qr,{x:"63",y:"17"}),(0,$.jsx)("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",stroke:"#E1E7EF",strokeWidth:"2"}),(0,$.jsx)("path",{fill:"var(--privy-color-accent)",d:"M269.405 111c8.865 0 16.052-7.163 16.052-16s-7.187-16-16.052-16c-8.865 0-16.051 7.163-16.051 16s7.186 16 16.051 16ZM133.971 24c6.649 0 12.039-5.373 12.039-12s-5.39-12-12.039-12-12.039 5.373-12.039 12 5.39 12 12.039 12ZM15.592 112c4.986 0 9.029-4.029 9.029-9 0-4.97-4.043-9-9.03-9-4.986 0-9.028 4.03-9.028 9 0 4.971 4.042 9 9.029 9Z"}),(0,$.jsx)("path",{fill:"var(--privy-color-accent-light)",d:"M152.029 177c5.541 0 10.032-4.477 10.032-10s-4.491-10-10.032-10-10.032 4.477-10.032 10 4.491 10 10.032 10ZM263.386 21c4.432 0 8.026-3.582 8.026-8s-3.594-8-8.026-8c-4.433 0-8.026 3.582-8.026 8s3.593 8 8.026 8ZM7.064 36c3.602 0 6.521-2.91 6.521-6.5s-2.92-6.5-6.52-6.5C3.462 23 .542 25.91.542 29.5S3.463 36 7.064 36Z"}),(0,$.jsxs)("defs",{children:[(0,$.jsxs)("linearGradient",{id:"paint0_linear_428_81",x1:"64.5",y1:"18",x2:"64.5",y2:"68",gradientUnits:"userSpaceOnUse",children:[(0,$.jsx)("stop",{stopColor:"#534BB1"}),(0,$.jsx)("stop",{offset:"1",stopColor:"#551BF9"})]}),(0,$.jsxs)("linearGradient",{id:"paint1_linear_428_81",x1:"64.5",y1:"30.9167",x2:"64.5",y2:"55.0834",gradientUnits:"userSpaceOnUse",children:[(0,$.jsx)("stop",{stopColor:"white"}),(0,$.jsx)("stop",{offset:"1",stopColor:"white",stopOpacity:"0.82"})]}),(0,$.jsx)("clipPath",{id:"clip0_428_81",children:(0,$.jsx)("rect",{width:"31.6667",height:"19.1667",fill:"white",transform:"translate(55.6667 139.833)"})})]})]});var f=require("react/jsx-runtime");var mi=()=>{let{navigate:e}=v(),t="https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn?hl=en";return xt.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/ether-metamask/"),(0,f.jsxs)(gi,{children:[(0,f.jsx)(se,{title:"Create a Metamask wallet",description:"Follow the instructions below to get started."}),(0,f.jsx)(yi,{children:(0,f.jsx)(xe,{style:{width:"152px",height:"152px"}})}),(0,f.jsxs)(Jr,{children:[(0,f.jsx)(lt,{children:(0,f.jsxs)("div",{children:[(0,f.jsx)("span",{children:"Install the "}),(0,f.jsx)("a",{href:t,target:"_blank",children:"MetaMask browser extension"})]})}),(0,f.jsx)(Qt,{}),(0,f.jsx)(lt,{children:"Set up your first wallet"}),(0,f.jsx)(Qt,{}),(0,f.jsx)(lt,{children:"Store your recovery phrase in a safe place!"})]}),(0,f.jsx)(Pe,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},fi=()=>{let{navigate:e}=v(),t="https://chrome.google.com/webstore/detail/phantom/bfnaelmomeimhlpmgjnjophhpkkoljpa?hl=en";return xt.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/phantom-app/"),(0,f.jsxs)(gi,{children:[(0,f.jsx)(se,{title:"Create a Phantom wallet",description:"Follow the instructions below to get started."}),(0,f.jsx)(yi,{children:(0,f.jsx)(it,{style:{width:"152px",height:"152px"}})}),(0,f.jsxs)(Jr,{children:[(0,f.jsx)(lt,{children:(0,f.jsxs)("div",{children:[(0,f.jsx)("span",{children:"Install the "}),(0,f.jsx)("a",{href:t,target:"_blank",children:"Phantom browser extension"})]})}),(0,f.jsx)(Qt,{}),(0,f.jsx)(lt,{children:"Set up your first wallet"}),(0,f.jsx)(Qt,{}),(0,f.jsx)(lt,{children:"Store your recovery phrase in a safe place!"})]}),(0,f.jsx)(Pe,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},hi=()=>{let{navigate:e}=v();return(0,f.jsxs)(gi,{children:[(0,f.jsx)(se,{title:"Create a Coinbase wallet",description:"Follow the instructions below to get started."}),(0,f.jsx)(yi,{style:{marginTop:"-24px"},children:(0,f.jsx)(Us,{size:200})}),(0,f.jsxs)(Jr,{children:[(0,f.jsx)(lt,{children:"Scan the QR code with your camera"}),(0,f.jsx)(Qt,{}),(0,f.jsx)(lt,{children:"Set up your first wallet"}),(0,f.jsx)(Qt,{}),(0,f.jsx)(lt,{children:"Store your seed phrase in a safe place!"})]}),(0,f.jsx)(Pe,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},zs=()=>{let[e,t]=(0,Vs.useState)("WHAT_IS_A_WALLET"),{navigateBack:o}=v();return(0,f.jsxs)(f.Fragment,{children:[(0,f.jsx)(A,{backFn:e==="WHAT_IS_A_WALLET"?o:e==="PICK_A_NEW_WALLET"?()=>t("WHAT_IS_A_WALLET"):()=>t("PICK_A_NEW_WALLET")},"header"),(0,f.jsxs)(jd,{children:[e==="WHAT_IS_A_WALLET"&&(0,f.jsxs)(f.Fragment,{children:[(0,f.jsx)(Jd,{children:(0,f.jsx)(Fs,{style:{width:"240px",height:"auto",borderRadius:"var(--privy-border-radius-sm)",marginBottom:"32px"}})}),(0,f.jsxs)(Dt,{title:"Get started with a new wallet",children:[(0,f.jsx)("p",{children:"Wallets help you store, send, and receive digital assets and collectibles. They are also a new\xA0way\xA0to\xA0log\xA0in."}),(0,f.jsx)("p",{children:"Instead of creating new accounts and passwords for every app, you just connect your wallet and bring your\xA0data\xA0with\xA0you."})]}),(0,f.jsx)(Yd,{children:(0,f.jsx)(Qd,{onClick:()=>{t("PICK_A_NEW_WALLET")},children:"Create a wallet"})})]}),e==="PICK_A_NEW_WALLET"&&(0,f.jsx)(f.Fragment,{children:(0,f.jsxs)(Kd,{children:[(0,f.jsx)(se,{title:"Create a new wallet",description:"Select one the wallet providers below to get started on your web3 adventure."}),(0,f.jsxs)(Zd,{children:[(0,f.jsxs)(Gs,{onClick:()=>{xt.isIOS?window.location.href="https://apps.apple.com/us/app/metamask-blockchain-wallet/id1438144202":xt.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=io.metamask":t("CREATE_METAMASK_WALLET")},children:[(0,f.jsx)(xe,{}),(0,f.jsxs)(Hs,{children:[(0,f.jsx)("h4",{children:"MetaMask"}),(0,f.jsx)("p",{children:"Get a browser-based wallet"})]})]}),(0,f.jsxs)(Gs,{onClick:()=>{xt.isIOS?window.location.href="https://apps.apple.com/us/app/coinbase-wallet-nfts-crypto/id1278383455":xt.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=org.toshi":t("CREATE_COINBASE_WALLET")},children:[(0,f.jsx)(Ge,{}),(0,f.jsxs)(Hs,{children:[(0,f.jsx)("h4",{children:"Coinbase Wallet"}),(0,f.jsx)("p",{children:"Get a mobile app wallet"})]})]})]})]})}),e==="CREATE_COINBASE_WALLET"&&(0,f.jsx)(hi,{}),e==="CREATE_METAMASK_WALLET"&&(0,f.jsx)(mi,{}),e==="CREATE_PHANTOM_WALLET"&&(0,f.jsx)(fi,{})]}),(0,f.jsxs)(_e,{children:[(0,f.jsx)("span",{children:"Still not sure? "}),(0,f.jsx)("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"}),"."]})]})},jd=et.default.div`
|
|
992
992
|
display: flex;
|
|
993
993
|
flex-direction: column;
|
|
994
994
|
height: 100%;
|
|
@@ -999,14 +999,14 @@ Resources:
|
|
|
999
999
|
display: none;
|
|
1000
1000
|
}
|
|
1001
1001
|
}
|
|
1002
|
-
`,
|
|
1002
|
+
`,Kd=et.default.div`
|
|
1003
1003
|
display: flex;
|
|
1004
1004
|
flex-direction: column;
|
|
1005
1005
|
align-items: flex-start;
|
|
1006
1006
|
justify-content: flex-start;
|
|
1007
1007
|
text-align: left;
|
|
1008
1008
|
gap: 20px;
|
|
1009
|
-
`,
|
|
1009
|
+
`,Zd=et.default.div`
|
|
1010
1010
|
display: flex;
|
|
1011
1011
|
flex-direction: column;
|
|
1012
1012
|
width: 100%;
|
|
@@ -1061,7 +1061,7 @@ Resources:
|
|
|
1061
1061
|
&& {
|
|
1062
1062
|
margin-top: 14px;
|
|
1063
1063
|
}
|
|
1064
|
-
`,
|
|
1064
|
+
`,gi=et.default.div`
|
|
1065
1065
|
display: flex;
|
|
1066
1066
|
flex-direction: column;
|
|
1067
1067
|
align-items: center;
|
|
@@ -1073,7 +1073,7 @@ Resources:
|
|
|
1073
1073
|
> :first-child > svg {
|
|
1074
1074
|
margin-top: 20px;
|
|
1075
1075
|
}
|
|
1076
|
-
`,
|
|
1076
|
+
`,yi=et.default.div`
|
|
1077
1077
|
display: flex;
|
|
1078
1078
|
flex-direction: column;
|
|
1079
1079
|
align-items: center;
|
|
@@ -1083,7 +1083,7 @@ Resources:
|
|
|
1083
1083
|
display: flex;
|
|
1084
1084
|
justify-content: center;
|
|
1085
1085
|
flex-grow: 1;
|
|
1086
|
-
`;var ct=require("react/jsx-runtime")
|
|
1086
|
+
`;var ct=require("react/jsx-runtime"),qs=()=>{let{navigateBack:e}=v();return(0,ct.jsxs)(ct.Fragment,{children:[(0,ct.jsx)(A,{backFn:e},"header"),(0,ct.jsx)(hi,{}),(0,ct.jsxs)(_e,{children:[(0,ct.jsx)("span",{children:"Still not sure? "}),(0,ct.jsx)("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"})]})]})};var dt=require("react/jsx-runtime"),$s=()=>{let{navigateBack:e}=v();return(0,dt.jsxs)(dt.Fragment,{children:[(0,dt.jsx)(A,{backFn:e},"header"),(0,dt.jsx)(mi,{}),(0,dt.jsxs)(_e,{children:[(0,dt.jsx)("span",{children:"Still not sure? "}),(0,dt.jsx)("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"})]})]})};var pt=require("react/jsx-runtime"),js=()=>{let{navigateBack:e}=v();return(0,pt.jsxs)(pt.Fragment,{children:[(0,pt.jsx)(A,{backFn:e},"header"),(0,pt.jsx)(fi,{}),(0,pt.jsxs)(_e,{children:[(0,pt.jsx)("span",{children:"Still not sure? "}),(0,pt.jsx)("a",{target:"_blank",href:"https://join.tell.ie/blog/explaining-web3-wallets",children:"Learn more"})]})]})};var tl=require("react"),Ti=require("react-device-detect"),Xt=x(require("styled-components"));var Ks=x(require("react"));var bi=require("react/jsx-runtime"),Zs=()=>{var a;let{app:e}=v(),t=(a=e==null?void 0:e.appearance)==null?void 0:a.logo,o=`${e==null?void 0:e.name} logo`,r={maxHeight:"50px"},n="100%",i="auto";return t?typeof t=="string"?(0,bi.jsx)("div",{children:(0,bi.jsx)("img",{height:n,width:i,src:t,alt:o,style:r})}):t.type==="svg"||t.type==="img"?Ks.default.cloneElement(t,{height:n,width:i,alt:o,style:r}):(console.warn("`config.appearance.logo` must be a string, or an SVG / IMG element. Nothing will be rendered."),null):null};var _o=require("react"),zo=x(require("styled-components"));var vi=require("react/jsx-runtime"),en=({style:e,...t})=>(0,vi.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"currentColor",style:{height:"1.5rem",width:"1.5rem",...e},...t,children:(0,vi.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M21.75 6.75v10.5a2.25 2.25 0 01-2.25 2.25h-15a2.25 2.25 0 01-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0019.5 4.5h-15a2.25 2.25 0 00-2.25 2.25m19.5 0v.243a2.25 2.25 0 01-1.07 1.916l-7.5 4.615a2.25 2.25 0 01-2.36 0L3.32 8.91a2.25 2.25 0 01-1.07-1.916V6.75"})});var We=require("react/jsx-runtime"),tn=e=>{let[t,o]=(0,_o.useState)(""),[r,n]=(0,_o.useState)(!1),[i,a]=(0,_o.useState)(null),{isLinking:s,initLoginWithEmail:l}=_(),{app:d,navigate:m}=v(),g=(d==null?void 0:d.loginMethods.wallet)??!1;(0,_o.useEffect)(()=>{let u=document.querySelector("#email-input");u==null||u.focus()},[]);let b=ua(t),w=()=>{n(!0),l(t).then(()=>{m("AWAITING_PASSWORDLESS_CODE")}).catch(u=>{(u==null?void 0:u.status)===422?a(u.message):(u==null?void 0:u.privyErrorCode)==="allowlist_rejected"?m("ALLOWLIST_REJECTION_SCREEN"):a("Issue submitting email"),n(!1)})},h="Get started without a wallet.";return i?h=i:s?h="Easily connect an email":g||(h="Get started quickly with email"),(0,We.jsxs)(We.Fragment,{children:[(0,We.jsxs)(Xd,{stacked:e.stacked,children:[(0,We.jsxs)(tp,{standalone:e.stacked,children:[(0,We.jsx)(en,{}),(0,We.jsx)("input",{id:"email-input",type:"email",placeholder:"your@email.com",onChange:u=>o(u.target.value),onKeyUp:u=>{u.key==="Enter"&&w()},value:t,autoComplete:"email"})]}),e.stacked?null:(0,We.jsx)(ep,{disabled:r||!b,onClick:w,children:r?(0,We.jsx)(Je,{}):"Submit"})]}),(0,We.jsx)(op,{fail:!!i,children:h}),e.stacked?(0,We.jsx)(Y,{loading:r,loadingText:null,disabled:r||!b,onClick:w,children:"Submit"}):null]})},Xd=zo.default.div`
|
|
1087
1087
|
width: 100%;
|
|
1088
1088
|
height: ${e=>e.stacked?"100%":"auto"};
|
|
1089
1089
|
|
|
@@ -1095,7 +1095,7 @@ Resources:
|
|
|
1095
1095
|
@media (max-width: 440px) {
|
|
1096
1096
|
margin-top: 20px;
|
|
1097
1097
|
}
|
|
1098
|
-
`,
|
|
1098
|
+
`,ep=zo.default.button`
|
|
1099
1099
|
display: flex;
|
|
1100
1100
|
flex-direction: row;
|
|
1101
1101
|
align-items: center;
|
|
@@ -1126,7 +1126,7 @@ Resources:
|
|
|
1126
1126
|
color: var(--privy-color-foreground-3);
|
|
1127
1127
|
cursor: not-allowed;
|
|
1128
1128
|
}
|
|
1129
|
-
`,
|
|
1129
|
+
`,tp=zo.default.label`
|
|
1130
1130
|
display: flex;
|
|
1131
1131
|
flex-direction: row;
|
|
1132
1132
|
align-items: center;
|
|
@@ -1163,7 +1163,7 @@ Resources:
|
|
|
1163
1163
|
line-height: 24px;
|
|
1164
1164
|
}
|
|
1165
1165
|
}
|
|
1166
|
-
`,
|
|
1166
|
+
`,op=zo.default.div`
|
|
1167
1167
|
line-height: 20px;
|
|
1168
1168
|
height: 20px;
|
|
1169
1169
|
font-size: 13px;
|
|
@@ -1176,7 +1176,7 @@ Resources:
|
|
|
1176
1176
|
> a {
|
|
1177
1177
|
text-decoration: underline;
|
|
1178
1178
|
}
|
|
1179
|
-
`;var So=require("react")
|
|
1179
|
+
`;var So=require("react"),qo=x(require("styled-components"));var wi=require("react/jsx-runtime"),on=({style:e,...t})=>(0,wi.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 20 20",strokeWidth:1.5,stroke:"currentColor",style:{height:"1.5rem",width:"1.5rem",...e},...t,children:(0,wi.jsx)("path",{d:"M2.5 4.16667C2.5 3.72464 2.67559 3.30072 2.98816 2.98816C3.30072 2.67559 3.72464 2.5 4.16667 2.5H6.9C7.07483 2.50013 7.24519 2.55525 7.38696 2.65754C7.52874 2.75984 7.63475 2.90413 7.69 3.07L8.93833 6.81417C9.00158 7.00445 8.9941 7.21116 8.91726 7.39637C8.84042 7.58158 8.69938 7.73288 8.52 7.8225L6.63917 8.76417C7.5611 10.8046 9.19538 12.4389 11.2358 13.3608L12.1775 11.48C12.2671 11.3006 12.4184 11.1596 12.6036 11.0827C12.7888 11.0059 12.9956 10.9984 13.1858 11.0617L16.93 12.31C17.096 12.3653 17.2404 12.4714 17.3427 12.6134C17.445 12.7553 17.5 12.9259 17.5 13.1008V15.8333C17.5 16.2754 17.3244 16.6993 17.0118 17.0118C16.6993 17.3244 16.2754 17.5 15.8333 17.5H15C8.09667 17.5 2.5 11.9033 2.5 5V4.16667Z",strokeLinecap:"round",strokeLinejoin:"round"})});var Ie=require("react/jsx-runtime"),rn=e=>{let[t,o]=(0,So.useState)(""),[r,n]=(0,So.useState)(!1),[i,a]=(0,So.useState)(null),{isLinking:s,initLoginWithSms:l}=_(),{app:d,navigate:m}=v(),g=(d==null?void 0:d.loginMethods.wallet)??!1;(0,So.useEffect)(()=>{let u=document.querySelector("#phone-number-input");u==null||u.focus()},[]);let b=ma(t),w=()=>{n(!0),l(t).then(()=>{m("AWAITING_PASSWORDLESS_CODE")}).catch(u=>{(u==null?void 0:u.status)===422?a(u.message):(u==null?void 0:u.privyErrorCode)==="allowlist_rejected"?m("ALLOWLIST_REJECTION_SCREEN"):a("Issue submitting phone number"),n(!1)})},h="Get started without a wallet.";return i?h=i:s?h="Easily connect a phone number":g||(h="Get started quickly with your phone"),(0,Ie.jsxs)(Ie.Fragment,{children:[(0,Ie.jsxs)(rp,{stacked:e.stacked,children:[(0,Ie.jsxs)(ip,{standalone:e.stacked,children:[(0,Ie.jsx)(on,{}),(0,Ie.jsx)("input",{id:"phone-number-input",type:"tel",placeholder:"555 555 5555",onChange:u=>{o(u.target.value)},onKeyUp:u=>{u.key==="Enter"&&w()},value:t,autoComplete:"tel"})]}),e.stacked?null:(0,Ie.jsx)(np,{disabled:r||!b,onClick:w,children:r?(0,Ie.jsx)(Je,{}):"Submit"})]}),(0,Ie.jsx)(ap,{fail:!!i,children:h}),e.stacked?(0,Ie.jsx)(Y,{loading:r,loadingText:null,disabled:r||!b,onClick:w,children:"Submit"}):null]})},rp=qo.default.div`
|
|
1180
1180
|
display: flex;
|
|
1181
1181
|
border: 1px solid var(--privy-color-foreground-4);
|
|
1182
1182
|
width: 100%;
|
|
@@ -1190,7 +1190,7 @@ Resources:
|
|
|
1190
1190
|
@media (max-width: 440px) {
|
|
1191
1191
|
margin-top: 20px;
|
|
1192
1192
|
}
|
|
1193
|
-
`,
|
|
1193
|
+
`,np=qo.default.button`
|
|
1194
1194
|
display: flex;
|
|
1195
1195
|
flex-direction: row;
|
|
1196
1196
|
align-items: center;
|
|
@@ -1221,7 +1221,7 @@ Resources:
|
|
|
1221
1221
|
color: var(--privy-color-foreground-3);
|
|
1222
1222
|
cursor: not-allowed;
|
|
1223
1223
|
}
|
|
1224
|
-
`,
|
|
1224
|
+
`,ip=qo.default.label`
|
|
1225
1225
|
display: flex;
|
|
1226
1226
|
flex-direction: row;
|
|
1227
1227
|
align-items: center;
|
|
@@ -1258,7 +1258,7 @@ Resources:
|
|
|
1258
1258
|
line-height: 24px;
|
|
1259
1259
|
}
|
|
1260
1260
|
}
|
|
1261
|
-
`,
|
|
1261
|
+
`,ap=qo.default.div`
|
|
1262
1262
|
line-height: 20px;
|
|
1263
1263
|
height: 20px;
|
|
1264
1264
|
font-size: 13px;
|
|
@@ -1271,12 +1271,12 @@ Resources:
|
|
|
1271
1271
|
> a {
|
|
1272
1272
|
text-decoration: underline;
|
|
1273
1273
|
}
|
|
1274
|
-
`;var
|
|
1274
|
+
`;var Ei=x(require("styled-components"));var $o=require("react/jsx-runtime"),nn=({style:e,...t})=>(0,$o.jsxs)("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 24 24",style:{height:"24px",...e},...t,children:[(0,$o.jsx)("path",{d:"M17.0722 11.6888C17.0471 8.90571 19.3263 7.56847 19.429 7.50274C18.1466 5.60938 16.153 5.35154 15.4417 5.3212C13.7461 5.14678 12.1306 6.32982 11.269 6.32982C10.4074 6.32982 9.08004 5.34648 7.67246 5.37429C5.82158 5.40209 4.11595 6.45874 3.16171 8.13218C1.24068 11.4942 2.6708 16.4817 4.54423 19.2143C5.46091 20.549 6.55041 22.0531 7.98554 21.9975C9.36803 21.9419 9.88905 21.095 11.5571 21.095C13.2251 21.095 13.696 21.9975 15.1537 21.9697C16.6389 21.9393 17.5806 20.6046 18.4897 19.2648C19.5392 17.7153 19.9725 16.2137 19.9975 16.1354C19.965 16.1228 17.1022 15.0155 17.0722 11.6888Z",fill:"currentColor"}),(0,$o.jsx)("path",{d:"M14.3295 3.51373C15.0909 2.58347 15.6043 1.28921 15.4641 0C14.3671 0.0455014 13.0396 0.738135 12.2532 1.66838C11.5494 2.48994 10.9307 3.80695 11.0986 5.07089C12.3183 5.16694 13.5681 4.44145 14.3295 3.51373Z",fill:"currentColor"})]});var Ft=require("react/jsx-runtime"),an=({style:e,...t})=>(0,Ft.jsxs)("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 71 55",style:{height:"24px",...e},...t,children:[(0,Ft.jsx)("g",{clipPath:"url(#clip0)",children:(0,Ft.jsx)("path",{d:"M60.1045 4.8978C55.5792 2.8214 50.7265 1.2916 45.6527 0.41542C45.5603 0.39851 45.468 0.440769 45.4204 0.525289C44.7963 1.6353 44.105 3.0834 43.6209 4.2216C38.1637 3.4046 32.7345 3.4046 27.3892 4.2216C26.905 3.0581 26.1886 1.6353 25.5617 0.525289C25.5141 0.443589 25.4218 0.40133 25.3294 0.41542C20.2584 1.2888 15.4057 2.8186 10.8776 4.8978C10.8384 4.9147 10.8048 4.9429 10.7825 4.9795C1.57795 18.7309 -0.943561 32.1443 0.293408 45.3914C0.299005 45.4562 0.335386 45.5182 0.385761 45.5576C6.45866 50.0174 12.3413 52.7249 18.1147 54.5195C18.2071 54.5477 18.305 54.5139 18.3638 54.4378C19.7295 52.5728 20.9469 50.6063 21.9907 48.5383C22.0523 48.4172 21.9935 48.2735 21.8676 48.2256C19.9366 47.4931 18.0979 46.6 16.3292 45.5858C16.1893 45.5041 16.1781 45.304 16.3068 45.2082C16.679 44.9293 17.0513 44.6391 17.4067 44.3461C17.471 44.2926 17.5606 44.2813 17.6362 44.3151C29.2558 49.6202 41.8354 49.6202 53.3179 44.3151C53.3935 44.2785 53.4831 44.2898 53.5502 44.3433C53.9057 44.6363 54.2779 44.9293 54.6529 45.2082C54.7816 45.304 54.7732 45.5041 54.6333 45.5858C52.8646 46.6197 51.0259 47.4931 49.0921 48.2228C48.9662 48.2707 48.9102 48.4172 48.9718 48.5383C50.038 50.6034 51.2554 52.5699 52.5959 54.435C52.6519 54.5139 52.7526 54.5477 52.845 54.5195C58.6464 52.7249 64.529 50.0174 70.6019 45.5576C70.6551 45.5182 70.6887 45.459 70.6943 45.3942C72.1747 30.0791 68.2147 16.7757 60.1968 4.9823C60.1772 4.9429 60.1437 4.9147 60.1045 4.8978ZM23.7259 37.3253C20.2276 37.3253 17.3451 34.1136 17.3451 30.1693C17.3451 26.225 20.1717 23.0133 23.7259 23.0133C27.308 23.0133 30.1626 26.2532 30.1066 30.1693C30.1066 34.1136 27.28 37.3253 23.7259 37.3253ZM47.3178 37.3253C43.8196 37.3253 40.9371 34.1136 40.9371 30.1693C40.9371 26.225 43.7636 23.0133 47.3178 23.0133C50.9 23.0133 53.7545 26.2532 53.6986 30.1693C53.6986 34.1136 50.9 37.3253 47.3178 37.3253Z",fill:"#5865F2"})}),(0,Ft.jsx)("defs",{children:(0,Ft.jsx)("clipPath",{id:"clip0",children:(0,Ft.jsx)("rect",{width:"71",height:"55",fill:"white"})})})]});var Ci=require("react/jsx-runtime"),sn=({style:e,...t})=>(0,Ci.jsx)("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"24",y:"24",viewBox:"0 0 98 96",style:{height:"24px",...e},...t,children:(0,Ci.jsx)("path",{d:"M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z",fill:"currentColor"})});var Jt=require("react/jsx-runtime"),ln=({style:e,...t})=>(0,Jt.jsxs)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"26px",width:"26px",...e},...t,children:[(0,Jt.jsx)("path",{d:"M22.56 12.25C22.56 11.47 22.49 10.72 22.36 10H12V14.255H17.92C17.665 15.63 16.89 16.795 15.725 17.575V20.335H19.28C21.36 18.42 22.56 15.6 22.56 12.25Z",fill:"#4285F4"}),(0,Jt.jsx)("path",{d:"M12 23C14.97 23 17.46 22.015 19.28 20.335L15.725 17.575C14.74 18.235 13.48 18.625 12 18.625C9.13504 18.625 6.71004 16.69 5.84504 14.09H2.17004V16.94C3.98004 20.535 7.70004 23 12 23Z",fill:"#34A853"}),(0,Jt.jsx)("path",{d:"M5.845 14.09C5.625 13.43 5.5 12.725 5.5 12C5.5 11.275 5.625 10.57 5.845 9.91V7.06H2.17C1.4 8.59286 0.999321 10.2846 1 12C1 13.775 1.425 15.455 2.17 16.94L5.845 14.09Z",fill:"#FBBC05"}),(0,Jt.jsx)("path",{d:"M12 5.375C13.615 5.375 15.065 5.93 16.205 7.02L19.36 3.865C17.455 2.09 14.965 1 12 1C7.70004 1 3.98004 3.465 2.17004 7.06L5.84504 9.91C6.71004 7.31 9.13504 5.375 12 5.375Z",fill:"#EA4335"})]});var xi=require("react/jsx-runtime"),cn=({style:e,...t})=>(0,xi.jsx)("svg",{width:"24",height:"20",viewBox:"0 0 24 20",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"26px",width:"26px",...e},...t,children:(0,xi.jsx)("path",{d:"M7.54311 19.7551C16.5973 19.7551 21.5516 12.2467 21.5516 5.74656C21.5516 5.53533 21.5516 5.32409 21.542 5.11286C22.5021 4.42156 23.3375 3.54783 24 2.55888C23.1166 2.95254 22.1661 3.21178 21.1675 3.3366C22.1853 2.73171 22.963 1.76196 23.3375 0.609788C22.3869 1.17627 21.3308 1.57953 20.2074 1.80037C19.3049 0.840223 18.0279 0.244934 16.6165 0.244934C13.8993 0.244934 11.6909 2.45326 11.6909 5.17047C11.6909 5.55453 11.7389 5.92898 11.8157 6.29384C7.72554 6.09221 4.09619 4.12391 1.66703 1.14747C1.24457 1.87718 1.00453 2.72211 1.00453 3.62464C1.00453 5.3337 1.87826 6.84112 3.19366 7.72445C2.38714 7.69565 1.62862 7.47481 0.966125 7.10996C0.966125 7.12916 0.966125 7.14837 0.966125 7.17717C0.966125 9.55833 2.66558 11.5554 4.91232 12.0067C4.49945 12.1219 4.06739 12.1795 3.61612 12.1795C3.29927 12.1795 2.99203 12.1507 2.69438 12.0931C3.31848 14.0518 5.14275 15.4728 7.29347 15.5112C5.60362 16.8362 3.4817 17.6235 1.17736 17.6235C0.783698 17.6235 0.390039 17.6043 0.00598145 17.5563C2.17591 18.9389 4.76829 19.7551 7.54311 19.7551Z",fill:"#1da1f2"})});var Le=require("react/jsx-runtime"),Ys=({showGoogle:e,showTwitter:t,showDiscord:o,showGithub:r,showApple:n})=>{let{initLoginWithOAuth:i}=_(),{app:a}=v(),s=a==null?void 0:a.appearance.palette.colorScheme;return(0,Le.jsxs)(sp,{children:[e&&(0,Le.jsx)(jo,{onClick:()=>{i("google")},children:(0,Le.jsx)(ln,{})}),t&&(0,Le.jsx)(jo,{onClick:()=>{i("twitter")},children:(0,Le.jsx)(cn,{})}),o&&(0,Le.jsx)(jo,{onClick:()=>{i("discord")},children:(0,Le.jsx)(an,{})}),r&&(0,Le.jsx)(jo,{onClick:()=>{i("github")},children:(0,Le.jsx)(sn,{style:{color:s==="light"?"#000":"#fff"}})}),n&&(0,Le.jsx)(jo,{onClick:()=>{i("apple")},children:(0,Le.jsx)(nn,{style:{color:s==="light"?"#000":"#fff"}})})]})},sp=Ei.default.div`
|
|
1275
1275
|
display: flex;
|
|
1276
1276
|
justify-content: space-between;
|
|
1277
1277
|
width: 100%;
|
|
1278
1278
|
gap: 4px;
|
|
1279
|
-
`,
|
|
1279
|
+
`,jo=Ei.default.div`
|
|
1280
1280
|
border-radius: var(--privy-border-radius-sm);
|
|
1281
1281
|
cursor: pointer;
|
|
1282
1282
|
height: 44px;
|
|
@@ -1290,17 +1290,17 @@ Resources:
|
|
|
1290
1290
|
&:hover {
|
|
1291
1291
|
background-color: var(--privy-color-background-2);
|
|
1292
1292
|
}
|
|
1293
|
-
`;var
|
|
1293
|
+
`;var Ko=require("react-device-detect"),Pi=x(require("styled-components"));var Qs=x(require("styled-components")),Js=Qs.default.span`
|
|
1294
1294
|
@media (max-width: 440px) {
|
|
1295
1295
|
display: none;
|
|
1296
1296
|
}
|
|
1297
|
-
`;var ne=require("react/jsx-runtime"),
|
|
1297
|
+
`;var ne=require("react/jsx-runtime"),pn=()=>{let{navigate:e}=v(),{initLoginWithWallet:t}=_();return(0,ne.jsxs)(lp,{children:[(0,ne.jsxs)(dn,{onClick:()=>{jn()?(t("metamask"),e("AWAITING_CONNECTION")):Ko.isMobile?(t("wallet_connect",Ar),e("AWAITING_CONNECTION")):e("INSTALL_METAMASK_SCREEN")},children:[(0,ne.jsx)(xe,{}),(0,ne.jsx)("span",{children:"Metamask"}),(0,ne.jsx)("span",{children:jn()?"Connect":"Install"})]}),(0,ne.jsxs)(dn,{onClick:()=>{ho()?(t("coinbase_wallet"),e("AWAITING_CONNECTION")):Ko.isMobile?e("COINBASE_INTERSTITIAL_SCREEN"):(t("coinbase_wallet"),e("AWAITING_CONNECTION"))},children:[(0,ne.jsx)(Ge,{}),(0,ne.jsxs)("span",{children:["Coinbase",(0,ne.jsx)(Js,{children:" Wallet"})]}),(0,ne.jsx)("span",{children:"Connect"})]}),(Ko.isMobile||Wt())&&(0,ne.jsxs)(dn,{onClick:()=>{Wt()?(t("phantom"),e("AWAITING_CONNECTION")):e(Ko.isMobile?"PHANTOM_INTERSTITIAL_SCREEN":"INSTALL_PHANTOM_SCREEN")},children:[(0,ne.jsx)(it,{}),(0,ne.jsx)("span",{children:"Phantom"}),(0,ne.jsx)("span",{children:Wt()?"Connect":"Install"})]}),(0,ne.jsxs)(dn,{onClick:()=>{t("wallet_connect"),e("AWAITING_CONNECTION")},children:[(0,ne.jsx)(mo,{}),(0,ne.jsx)("span",{children:"WalletConnect"}),(0,ne.jsx)("span",{children:"Connect"})]})]})},lp=Pi.default.div`
|
|
1298
1298
|
display: flex;
|
|
1299
1299
|
flex-direction: column;
|
|
1300
1300
|
align-items: flex-start;
|
|
1301
1301
|
gap: 8px;
|
|
1302
1302
|
width: 100%;
|
|
1303
|
-
`,
|
|
1303
|
+
`,dn=Pi.default.button`
|
|
1304
1304
|
display: flex;
|
|
1305
1305
|
flex-direction: row;
|
|
1306
1306
|
align-items: center;
|
|
@@ -1353,7 +1353,7 @@ Resources:
|
|
|
1353
1353
|
display: none;
|
|
1354
1354
|
}
|
|
1355
1355
|
}
|
|
1356
|
-
`;var Xs=x(require("styled-components"));var
|
|
1356
|
+
`;var Xs=x(require("styled-components"));var Zo=require("react/jsx-runtime"),un=()=>{let{navigate:e}=v();return(0,Zo.jsxs)(cp,{children:[(0,Zo.jsx)("span",{children:"Don\u2019t have a wallet? "}),(0,Zo.jsx)("button",{onClick:()=>{e("WALLET_EDUCATION")},children:"Create one now."})]})},cp=Xs.default.div`
|
|
1357
1357
|
font-size: 13px;
|
|
1358
1358
|
color: var(--privy-color-foreground-3);
|
|
1359
1359
|
|
|
@@ -1364,7 +1364,7 @@ Resources:
|
|
|
1364
1364
|
@media (max-width: 440px) {
|
|
1365
1365
|
margin-top: 4px;
|
|
1366
1366
|
}
|
|
1367
|
-
`;var
|
|
1367
|
+
`;var U=require("react/jsx-runtime");var ol=()=>{let{app:e}=v(),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,[m,g]=(0,tl.useState)(d),b=m==0,w=m==1,h=r,u=t||o,y=h!==u;return(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(A,{},"header"),e!=null&&e.appearance.logo?(0,U.jsx)(fp,{hasOnlyOneSection:y,hasTerms:!!((e==null?void 0:e.legal.privacyPolicyUrl)||(e==null?void 0:e.legal.termsAndConditionsUrl)),children:(0,U.jsx)(Zs,{})}):null,(0,U.jsxs)(hp,{reverse:!(e!=null&&e.appearance.showWalletLoginFirst),children:[h&&(0,U.jsx)(dp,{active:b||y,onClick:()=>g(0),isOnlySection:!u}),u&&(0,U.jsx)(pp,{active:w||y,onClick:()=>g(1),email:t,sms:o,google:n,twitter:i,discord:a,github:s,apple:l,isOnlySection:!h})]}),e&&(0,U.jsx)(ts,{app:e}),(0,U.jsx)(H,{protectedByPrivy:!0})]})};function dp(e){return(0,U.jsxs)(nl,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,children:[(0,U.jsx)(rl,{active:e.active,children:(0,U.jsx)("h4",{children:"Connect Wallet"})}),e.active&&(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(pn,{}),(0,U.jsx)(un,{})]})]})}function pp(e){let t=e.google||e.discord||e.github||e.twitter&&!Ti.isMobile||e.apple,o=e.email?"Email":"Phone";return(0,U.jsxs)(nl,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,children:[e.isOnlySection?null:(0,U.jsx)(rl,{active:e.active,children:(0,U.jsx)("h4",{children:t?`${o} & Social`:o})}),e.active&&e.email&&(0,U.jsx)(tn,{}),e.active&&e.sms&&!e.email&&(0,U.jsx)(rn,{}),e.active&&t&&(0,U.jsx)(up,{google:e.google,twitter:e.twitter&&!Ti.isMobile,discord:e.discord,github:e.github,apple:e.apple})]})}function up(e){return(0,U.jsxs)(U.Fragment,{children:[(0,U.jsxs)(mp,{children:[(0,U.jsx)(el,{}),(0,U.jsx)("p",{children:" Or "}),(0,U.jsx)(el,{})]}),(0,U.jsx)(Ys,{showGoogle:e.google,showDiscord:e.discord,showGithub:e.github,showTwitter:e.twitter,showApple:e.apple})]})}var rl=Xt.default.div`
|
|
1368
1368
|
font-weight: ${e=>e.active?600:500};
|
|
1369
1369
|
color: ${e=>e.active?"var(--privy-color-foreground)":"var(--privy-color-foreground-2)"};
|
|
1370
1370
|
display: flex;
|
|
@@ -1395,7 +1395,7 @@ Resources:
|
|
|
1395
1395
|
}
|
|
1396
1396
|
|
|
1397
1397
|
cursor: ${e=>e.active?"inherit":"pointer"};
|
|
1398
|
-
`,
|
|
1398
|
+
`,mp=Xt.default.div`
|
|
1399
1399
|
display: flex;
|
|
1400
1400
|
justify-content: center;
|
|
1401
1401
|
align-items: center;
|
|
@@ -1410,7 +1410,7 @@ Resources:
|
|
|
1410
1410
|
border-top: 1px solid var(--privy-color-background-2);
|
|
1411
1411
|
margin: 0px 8px;
|
|
1412
1412
|
}
|
|
1413
|
-
`,
|
|
1413
|
+
`,fp=Xt.default.div`
|
|
1414
1414
|
display: flex;
|
|
1415
1415
|
flex-direction: column;
|
|
1416
1416
|
align-items: center;
|
|
@@ -1421,9 +1421,9 @@ Resources:
|
|
|
1421
1421
|
@media (max-width: 440px) {
|
|
1422
1422
|
padding: 10px 10px 20px;
|
|
1423
1423
|
}
|
|
1424
|
-
`,
|
|
1424
|
+
`,hp=(0,Xt.default)(Te)`
|
|
1425
1425
|
flex-direction: ${e=>e.reverse?"column-reverse":"column"};
|
|
1426
|
-
`;var tt=require("react/jsx-runtime"),il=()=>{let{app:e}=v();return(0,tt.jsxs)(tt.Fragment,{children:[(0,tt.jsx)(A,{},"header"),(0,tt.jsx)(Dt,{title:"Connect your email",description:`Add your email to your ${e==null?void 0:e.name} account`,icon:(0,tt.jsx)(
|
|
1426
|
+
`;var tt=require("react/jsx-runtime"),il=()=>{let{app:e}=v();return(0,tt.jsxs)(tt.Fragment,{children:[(0,tt.jsx)(A,{},"header"),(0,tt.jsx)(Dt,{title:"Connect your email",description:`Add your email to your ${e==null?void 0:e.name} account`,icon:(0,tt.jsx)(en,{})}),(0,tt.jsx)(Te,{children:(0,tt.jsx)(tn,{stacked:!0})}),(0,tt.jsx)(H,{protectedByPrivy:!0})]})};var ot=require("react/jsx-runtime"),al=()=>{let{app:e}=v();return(0,ot.jsxs)(ot.Fragment,{children:[(0,ot.jsx)(A,{},"header"),(0,ot.jsx)(Dt,{title:"Connect your phone",description:`Add your number to your ${e==null?void 0:e.name} account`,icon:(0,ot.jsx)(on,{})}),(0,ot.jsx)(Te,{children:(0,ot.jsx)(rn,{stacked:!0})}),(0,ot.jsx)(H,{protectedByPrivy:!0})]})};var rt=require("react/jsx-runtime"),sl=()=>{let{linkingHint:e}=_(),{app:t}=v(),o=e?`Select the wallet with ${Ye(e)} and follow the instructions to reconnect your wallet${t!=null&&t.name?` to ${t.name}.`:"."}`:`Link a wallet to your ${t==null?void 0:t.name} account`;return(0,rt.jsxs)(rt.Fragment,{children:[(0,rt.jsx)(A,{},"header"),(0,rt.jsx)(Nt,{title:`${e?"Reconnect":"Connect"} your wallet`,description:o}),(0,rt.jsxs)(Te,{children:[(0,rt.jsx)(pn,{}),(0,rt.jsx)(un,{})]}),(0,rt.jsx)(H,{protectedByPrivy:!0})]})};var Yo=require("react/jsx-runtime"),ll=({style:e,...t})=>(0,Yo.jsxs)("svg",{width:"164",height:"164",viewBox:"0 0 164 164",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"26px",width:"26px",...e},...t,children:[(0,Yo.jsx)("circle",{cx:"82",cy:"82",r:"80",stroke:"#EC6351","stroke-width":"4","stroke-linecap":"round"}),(0,Yo.jsx)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M81.9999 100.788C93.3288 100.788 102.513 91.6043 102.513 80.2754C102.513 68.9465 93.3288 59.7626 81.9999 59.7626C70.671 59.7626 61.4871 68.9465 61.4871 80.2754C61.4871 91.6043 70.671 100.788 81.9999 100.788ZM88.3236 71.8304C88.9093 71.2446 89.8591 71.2446 90.4449 71.8304C91.0307 72.4161 91.0307 73.3659 90.4449 73.9517L84.121 80.2756L90.445 86.5996C91.0308 87.1854 91.0308 88.1351 90.445 88.7209C89.8592 89.3067 88.9095 89.3067 88.3237 88.7209L81.9997 82.3969L75.6756 88.7209C75.0899 89.3067 74.1401 89.3067 73.5543 88.7209C72.9685 88.1351 72.9685 87.1854 73.5543 86.5996L79.8783 80.2756L73.5544 73.9517C72.9686 73.3659 72.9686 72.4161 73.5544 71.8304C74.1402 71.2446 75.09 71.2446 75.6758 71.8304L81.9997 78.1543L88.3236 71.8304Z",fill:"#EC6351"})]});var je=require("react/jsx-runtime"),cl=()=>{let{closePrivyModal:e}=_(),{navigate:t}=v();return(0,je.jsxs)(je.Fragment,{children:[(0,je.jsx)(A,{},"header"),(0,je.jsx)(ll,{style:{width:"160px",height:"160px",margin:"0 auto 20px"}}),(0,je.jsx)(Nt,{title:"Could not connect with wallet",description:"Please check that Phantom multichain is enabled and try again.",style:{display:"flex",flexDirection:"column",alignItems:"center",justifyContent:"center",textAlign:"center"}}),(0,je.jsxs)(Te,{children:[(0,je.jsx)(Y,{onClick:()=>t("LANDING"),children:"Try again"}),(0,je.jsx)(ja,{onClick:()=>e(),children:"Cancel"})]}),(0,je.jsx)(H,{protectedByPrivy:!0})]})};var ko=require("react"),mn=x(require("styled-components"));var ve=require("react/jsx-runtime"),dl={google:{name:"Google",component:ln},discord:{name:"Discord",component:an},github:{name:"Github",component:sn},twitter:{name:"Twitter",component:cn},apple:{name:"Apple",component:nn}},gp=e=>e.charAt(0).toUpperCase()+e.slice(1),Ai=()=>{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)},pl=()=>{var S;let{ready:e,user:t,authenticated:o}=B(),{data:r,setModalData:n,navigate:i}=v(),{getAuthMeta:a,initLoginWithOAuth:s,loginWithOAuth:l,closePrivyModal:d}=_(),[m,g]=(0,ko.useState)(!1),[b,w]=(0,ko.useState)(void 0),h=((S=a())==null?void 0:S.provider)||"google",u=dl[h].name,y=dl[h].component;(0,ko.useEffect)(()=>{!e||l().then(()=>{Ai(),g(!0)}).catch(L=>{let W={retryable:!1,message:"Authentication failed."};L.message.includes("Another user has already linked this")?W.detail="This account has already been linked to another user.":L.message==="Invalid code during oauth flow."?(W.retryable=!0,W.detail="Something went wrong. Try again."):L.message==="User denied confirmation during OAuth flow"&&(W.detail=`Retry and check ${gp(h)} to finish connecting your account.`,W.retryable=!0),Ai(),w(W)})},[e]),(0,ko.useEffect)(()=>{var j;if(!(o&&m&&t))return;if(((j=r==null?void 0:r.login)==null?void 0:j.promptCreatePrivyWalletFlow)&&!t.wallet){let F=setTimeout(()=>{n({createWallet:{onSuccess:()=>{},onFailure:ce=>console.error(ce),callAuthOnSuccessOnClose:!0}}),i("EMBEDDED_WALLET_SCREEN")},Be-500);return()=>clearTimeout(F)}else{let F=setTimeout(d,Be);return()=>clearTimeout(F)}},[o,m,t]);let I=m?`Successfully connected with ${u}`:b?b.message:`Verifying connection to ${u}`,E="";return m?E="You\u2019re good to go!":b?E=b.detail:E="Just a few moments more",(0,ve.jsxs)(ve.Fragment,{children:[(0,ve.jsx)(A,{}),(0,ve.jsxs)(yp,{children:[(0,ve.jsx)(vp,{children:(0,ve.jsxs)("div",{children:[(0,ve.jsx)(Dr,{success:m,fail:!!b}),(0,ve.jsx)(y,{style:{width:"38px",height:"38px"}})]})}),(0,ve.jsxs)(bp,{children:[(0,ve.jsx)("h3",{children:I}),(0,ve.jsx)("p",{children:E})]}),(0,ve.jsx)(Pe,{onClick:()=>{Ai(),s(h),w(void 0)},invisible:m||!(b!=null&&b.retryable),disabled:!m&&!(b!=null&&b.retryable),children:"Retry"})]})]})},yp=mn.default.div`
|
|
1427
1427
|
display: flex;
|
|
1428
1428
|
flex-direction: column;
|
|
1429
1429
|
align-items: center;
|
|
@@ -1431,11 +1431,11 @@ Resources:
|
|
|
1431
1431
|
margin-left: 27px;
|
|
1432
1432
|
margin-right: 27px;
|
|
1433
1433
|
gap: 24px;
|
|
1434
|
-
`,
|
|
1434
|
+
`,bp=mn.default.div`
|
|
1435
1435
|
display: flex;
|
|
1436
1436
|
flex-direction: column;
|
|
1437
1437
|
gap: 8px;
|
|
1438
|
-
`,
|
|
1438
|
+
`,vp=mn.default.div`
|
|
1439
1439
|
display: flex;
|
|
1440
1440
|
flex-direction: column;
|
|
1441
1441
|
justify-content: center;
|
|
@@ -1458,9 +1458,9 @@ Resources:
|
|
|
1458
1458
|
left: -19px;
|
|
1459
1459
|
top: -19px;
|
|
1460
1460
|
}
|
|
1461
|
-
`;var Qo=require("react"),fl=x(require("styled-components"));var ul=require("react-device-detect");var ml=(e,t)=>{let o=new URL(window.location.href),r=encodeURIComponent(o.href.replace(/\/$/g,"")+`?privy_token=${e}&privy_wallet_client=phantom`);if(!
|
|
1461
|
+
`;var Qo=require("react"),fl=x(require("styled-components"));var ul=require("react-device-detect");var ml=(e,t)=>{let o=new URL(window.location.href),r=encodeURIComponent(o.href.replace(/\/$/g,"")+`?privy_token=${e}&privy_wallet_client=phantom`);if(!Wt()&&ul.isMobile)return`${t?"phantom://":"https://phantom.app/ul/"}browse/${r}?ref=${r}`};var Me=require("react/jsx-runtime"),hl=()=>{let{forkSession:e,ready:t,authenticated:o}=B(),[r,n]=(0,Qo.useState)(""),[i,a]=(0,Qo.useState)(!1);(0,Qo.useEffect)(()=>{t&&o&&e().then(n)},[t,o]);let s=ml(r,!i),l={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&&(l.description="For the best experience, we'll automatically log you into the Phantom Mobile Wallet in-app browser.",l.footnote="Once you're done, you can always return here and refresh to view your updated account."),i&&(l.title="Still here?",l.description="You may need to install the Phantom mobile app.",l.footnote="Once you're done, you can return here or connect via Phantom's in-app browser."),(0,Me.jsxs)(Me.Fragment,{children:[(0,Me.jsx)(A,{},"header"),(0,Me.jsx)(Nt,{title:l.title,description:l.description}),(0,Me.jsxs)(Te,{children:[(0,Me.jsx)(wp,{children:(0,Me.jsx)(it,{style:{width:"72px",height:"72px"}})}),(0,Me.jsx)(Or,{href:s,onClick:()=>{setTimeout(()=>a(!0),1e3)},loading:t&&!s,children:i?"Go to App Store":"Continue"}),l.footnote?(0,Me.jsx)("p",{children:l.footnote}):null]}),(0,Me.jsx)(H,{protectedByPrivy:!0})]})},wp=(0,fl.default)(yo)`
|
|
1462
1462
|
margin: 16px auto;
|
|
1463
|
-
`;var Pt=require("react"),ro=x(require("styled-components"));var
|
|
1463
|
+
`;var Pt=require("react"),ro=x(require("styled-components"));var Wi=x(require("styled-components"));var _i=x(require("styled-components")),Jo=require("react/jsx-runtime"),Xo=({label:e,children:t,valueStyles:o})=>(0,Jo.jsxs)(Cp,{children:[(0,Jo.jsx)("div",{children:e}),(0,Jo.jsx)(xp,{style:{...o},children:t})]}),Cp=_i.default.div`
|
|
1464
1464
|
display: flex;
|
|
1465
1465
|
align-items: center;
|
|
1466
1466
|
justify-content: space-between;
|
|
@@ -1475,14 +1475,14 @@ Resources:
|
|
|
1475
1475
|
color: var(--privy-color-foreground-2);
|
|
1476
1476
|
text-align: right;
|
|
1477
1477
|
}
|
|
1478
|
-
`,
|
|
1478
|
+
`,xp=_i.default.div`
|
|
1479
1479
|
display: flex;
|
|
1480
1480
|
align-items: center;
|
|
1481
1481
|
justify-content: center;
|
|
1482
1482
|
border-radius: var(--privy-border-radius-md);
|
|
1483
1483
|
background-color: var(--privy-color-background-2);
|
|
1484
1484
|
padding: 4px 8px;
|
|
1485
|
-
`;var wl=require("@ethersproject/bignumber");var gl=require("@ethersproject/bignumber"),yl=require("@ethersproject/bytes"),bl=require("@ethersproject/providers"),
|
|
1485
|
+
`;var wl=require("@ethersproject/bignumber");var gl=require("@ethersproject/bignumber"),yl=require("@ethersproject/bytes"),bl=require("@ethersproject/providers"),Si=require("@ethersproject/units"),fn=(e,t)=>(t*parseFloat((0,Si.formatEther)(e))).toFixed(2),eo=(e,t=8)=>parseFloat((0,Si.formatEther)(e)).toFixed(t).replace(/0+$/,"").replace(/\.$/,""),vl=(e,t)=>{(0,yl.isHexString)(e)&&(e=Number(e));let o=(0,bl.getNetwork)(e);return`https://${o.name==="homestead"?"www":o.name}.etherscan.io/address/${t}`},Ne=e=>gl.BigNumber.from(e);var hn=require("react/jsx-runtime"),er=({weiQuantities:e,tokenPrice:t})=>{let o=e.map(Ne).reduce((n,i)=>n.add(i),wl.BigNumber.from(0)),r=fn(o.toHexString(),t);return(0,hn.jsx)(hn.Fragment,{children:r==="0.00"?"< USD $0.01":`USD $${r}`})};var to=x(require("styled-components"));var le=require("react/jsx-runtime"),Tl=({transactionData:e,displayFee:t=!1,gas:o,tokenPrice:r,isLoading:n=!1})=>(0,le.jsxs)(Ep,{children:[(0,le.jsx)(Pp,{"data-open":t,children:(0,le.jsxs)(Cl,{children:[(0,le.jsxs)(xl,{children:[(0,le.jsx)(Pl,{children:"Est. Fees"}),(0,le.jsx)("div",{children:n?(0,le.jsx)(Je,{color:"var(--privy-color-accent)"}):(0,le.jsx)(er,{weiQuantities:[o],tokenPrice:r})})]}),(0,le.jsx)(El,{children:`ETH ${eo(Ne(o).toHexString())}`})]})}),(0,le.jsxs)(Cl,{children:[(0,le.jsxs)(xl,{children:[(0,le.jsx)(Pl,{children:"Total (including fees)"}),(0,le.jsx)("div",{children:n||!e.value?(0,le.jsx)(Je,{color:"var(--privy-color-accent)"}):(0,le.jsx)(er,{weiQuantities:[e.value,o],tokenPrice:r})})]}),(0,le.jsx)(El,{children:e.value?`ETH ${eo(Ne(e.value).add(Ne(o)).toHexString())}`:null})]})]}),Ep=to.default.div`
|
|
1486
1486
|
display: flex;
|
|
1487
1487
|
flex-direction: column;
|
|
1488
1488
|
gap: 4px;
|
|
@@ -1508,7 +1508,7 @@ Resources:
|
|
|
1508
1508
|
font-size: 14px;
|
|
1509
1509
|
line-height: 22.4px;
|
|
1510
1510
|
font-weight: 400;
|
|
1511
|
-
`,
|
|
1511
|
+
`,Pp=to.default.div`
|
|
1512
1512
|
position: relative;
|
|
1513
1513
|
overflow: hidden;
|
|
1514
1514
|
transition: max-height 0.35s ease-in-out;
|
|
@@ -1520,12 +1520,12 @@ Resources:
|
|
|
1520
1520
|
&[data-open='false'] {
|
|
1521
1521
|
max-height: 0;
|
|
1522
1522
|
}
|
|
1523
|
-
`;var ut=require("react"),Gt=x(require("styled-components"));var
|
|
1523
|
+
`;var ut=require("react"),Gt=x(require("styled-components"));var ki=require("react/jsx-runtime"),Al=({style:e,...t})=>(0,ki.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor",style:{height:"1.5rem",width:"1.5rem",...e},...t,children:(0,ki.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M19.5 8.25l-7.5 7.5-7.5-7.5"})});var gn=require("react"),Ro=(0,gn.createContext)(void 0);var tr=(0,gn.createContext)(void 0);var De=require("react/jsx-runtime"),_l=({defaultValue:e,children:t})=>{let[o,r]=(0,ut.useState)(e||null),n=i=>{r(o===i?null:i)};return(0,De.jsx)(Ro.Provider,{value:{activePanel:o,togglePanel:n},children:(0,De.jsx)(Tp,{children:t})})},Sl=({value:e,children:t})=>{let{activePanel:o,togglePanel:r}=(0,ut.useContext)(Ro),n=o===e;return(0,De.jsx)(tr.Provider,{value:{onToggle:()=>r(e),value:e},children:(0,De.jsx)(Sp,{isActive:n,"data-open":n,children:t})})},kl=({children:e})=>{let{activePanel:t}=(0,ut.useContext)(Ro),{onToggle:o,value:r}=(0,ut.useContext)(tr),n=t===r;return(0,De.jsxs)(Ap,{onClick:o,"data-open":n,children:[(0,De.jsx)(_p,{children:e}),(0,De.jsx)(Rp,{isactive:n,children:(0,De.jsx)(Al,{})})]})},Rl=({children:e})=>{let{activePanel:t}=(0,ut.useContext)(Ro),{value:o}=(0,ut.useContext)(tr);return(0,De.jsx)(kp,{"data-open":t===o,children:(0,De.jsx)(Il,{children:e})})},Wl=({children:e})=>{let{activePanel:t}=(0,ut.useContext)(Ro),{value:o}=(0,ut.useContext)(tr);return(0,De.jsx)(Il,{children:typeof e=="function"?e({isActive:t===o}):e})},Tp=Gt.default.div`
|
|
1524
1524
|
display: flex;
|
|
1525
1525
|
flex-direction: column;
|
|
1526
1526
|
width: 100%;
|
|
1527
1527
|
gap: 8px;
|
|
1528
|
-
`,
|
|
1528
|
+
`,Ap=Gt.default.div`
|
|
1529
1529
|
display: flex;
|
|
1530
1530
|
justify-content: space-between;
|
|
1531
1531
|
align-items: center;
|
|
@@ -1537,13 +1537,13 @@ Resources:
|
|
|
1537
1537
|
border-bottom: 1px solid;
|
|
1538
1538
|
border-color: var(--privy-color-foreground-4);
|
|
1539
1539
|
}
|
|
1540
|
-
`,
|
|
1540
|
+
`,_p=Gt.default.div`
|
|
1541
1541
|
font-size: 14px;
|
|
1542
1542
|
font-weight: 500;
|
|
1543
1543
|
line-height: 19.6px;
|
|
1544
1544
|
width: 100%;
|
|
1545
1545
|
padding-right: 8px;
|
|
1546
|
-
`,
|
|
1546
|
+
`,Sp=Gt.default.div`
|
|
1547
1547
|
display: flex;
|
|
1548
1548
|
flex-direction: column;
|
|
1549
1549
|
width: 100%;
|
|
@@ -1555,7 +1555,7 @@ Resources:
|
|
|
1555
1555
|
border-color: var(--privy-color-foreground-4);
|
|
1556
1556
|
border-radius: var(--privy-border-radius-md);
|
|
1557
1557
|
}
|
|
1558
|
-
`,
|
|
1558
|
+
`,kp=Gt.default.div`
|
|
1559
1559
|
position: relative;
|
|
1560
1560
|
overflow: hidden;
|
|
1561
1561
|
transition: max-height 0.35s ease-in-out;
|
|
@@ -1567,37 +1567,37 @@ Resources:
|
|
|
1567
1567
|
&[data-open='false'] {
|
|
1568
1568
|
max-height: 0;
|
|
1569
1569
|
}
|
|
1570
|
-
`,
|
|
1570
|
+
`,Il=Gt.default.div`
|
|
1571
1571
|
display: flex;
|
|
1572
1572
|
flex-direction: column;
|
|
1573
1573
|
gap: 12px;
|
|
1574
1574
|
flex: 1 1 auto;
|
|
1575
1575
|
min-height: 1px;
|
|
1576
1576
|
padding-top: 8px;
|
|
1577
|
-
`,
|
|
1577
|
+
`,Rp=Gt.default.div`
|
|
1578
1578
|
transform: ${e=>e.isactive?"rotate(180deg)":"rotate(0deg)"};
|
|
1579
|
-
`;var
|
|
1579
|
+
`;var Ll=x(require("styled-components"));var Ml=require("react/jsx-runtime"),Ri=({walletAddress:e,chainId:t=Fe})=>(0,Ml.jsx)(Wp,{href:vl(t,e),target:"_blank",children:Ye(e)}),Wp=Ll.default.a`
|
|
1580
1580
|
&:hover {
|
|
1581
1581
|
text-decoration: underline;
|
|
1582
1582
|
}
|
|
1583
|
-
`;var te=require("react/jsx-runtime"),
|
|
1583
|
+
`;var te=require("react/jsx-runtime"),yn=e=>{var o,r,n;let t=!!((o=e.txn)!=null&&o.value);return(0,te.jsx)(_l,{children:(0,te.jsxs)(Sl,{value:"details",children:[(0,te.jsx)(kl,{children:(0,te.jsxs)(Ip,{children:[(0,te.jsx)("div",{children:((r=e.transactionInfo)==null?void 0:r.actionDescription)||"Details"}),((n=e.txn)==null?void 0:n.value)&&e.tokenPrice?(0,te.jsx)(Lp,{children:(0,te.jsx)(er,{weiQuantities:[e.txn.value],tokenPrice:e.tokenPrice})}):null]})}),(0,te.jsxs)(Rl,{children:[(0,te.jsx)(Xo,{label:"From",children:(0,te.jsx)(Ri,{walletAddress:e.from,chainId:e.txn.chainId||Fe})}),(0,te.jsx)(Xo,{label:"To",children:(0,te.jsx)(Ri,{walletAddress:e.to,chainId:e.txn.chainId||Fe})}),t&&e.transactionInfo&&e.transactionInfo.action&&(0,te.jsx)(Xo,{label:"Action",children:e.transactionInfo.action})]}),(0,te.jsx)(Wl,{children:({isActive:i})=>t?(0,te.jsx)(Tl,{transactionData:e.txn,displayFee:i,gas:e.gas,tokenPrice:e.tokenPrice}):(0,te.jsx)(te.Fragment,{children:e.transactionInfo&&e.transactionInfo.action&&(0,te.jsx)(Xo,{label:"Action",children:e.transactionInfo.action})})})]})})},Ip=Wi.default.div`
|
|
1584
1584
|
display: flex;
|
|
1585
1585
|
flex-direction: row;
|
|
1586
1586
|
justify-content: space-between;
|
|
1587
|
-
`,
|
|
1587
|
+
`,Lp=Wi.default.div`
|
|
1588
1588
|
flex-shrink: 0;
|
|
1589
1589
|
padding-left: 8px;
|
|
1590
|
-
`;var
|
|
1590
|
+
`;var Wo=x(require("styled-components")),Ht=require("react/jsx-runtime"),Nl=({partyInfo:e})=>(0,Ht.jsxs)(Mp,{children:[e.imgUrl&&(0,Ht.jsx)(Np,{size:e.imgSize||"sm",src:e.imgUrl,alt:e.imgAltText||`${e.name} image`}),(0,Ht.jsx)(Dp,{children:(0,Ht.jsx)("a",{href:e.url,target:"_blank",rel:"noopener noreferrer",children:e.url.replace(/^(https?:\/\/)(www\.)?/,"")})}),(0,Ht.jsx)(Op,{children:e.name}),(0,Ht.jsx)(Up,{children:e.actionText})]}),Mp=Wo.default.div`
|
|
1591
1591
|
display: flex;
|
|
1592
1592
|
flex-direction: column;
|
|
1593
1593
|
align-items: center;
|
|
1594
1594
|
margin-bottom: 20px;
|
|
1595
|
-
`,
|
|
1595
|
+
`,Np=Wo.default.img`
|
|
1596
1596
|
height: ${e=>e.size==="sm"?"65px":"140px"};
|
|
1597
1597
|
width: ${e=>e.size==="sm"?"65px":"140px"};
|
|
1598
1598
|
border-radius: 16px;
|
|
1599
1599
|
margin-bottom: 20px;
|
|
1600
|
-
`,
|
|
1600
|
+
`,Dp=Wo.default.div`
|
|
1601
1601
|
margin-bottom: 8px;
|
|
1602
1602
|
> a {
|
|
1603
1603
|
font-size: 12px;
|
|
@@ -1609,7 +1609,7 @@ Resources:
|
|
|
1609
1609
|
text-decoration: underline;
|
|
1610
1610
|
}
|
|
1611
1611
|
}
|
|
1612
|
-
`,
|
|
1612
|
+
`,Op=Wo.default.div`
|
|
1613
1613
|
font-size: 18px;
|
|
1614
1614
|
line-height: 18px;
|
|
1615
1615
|
font-weight: 500;
|
|
@@ -1617,7 +1617,7 @@ Resources:
|
|
|
1617
1617
|
white-space: nowrap;
|
|
1618
1618
|
max-width: 275px;
|
|
1619
1619
|
text-overflow: ellipsis;
|
|
1620
|
-
`,
|
|
1620
|
+
`,Up=Wo.default.div`
|
|
1621
1621
|
font-size: 16px;
|
|
1622
1622
|
line-height: 22.4px;
|
|
1623
1623
|
font-weight: 500;
|
|
@@ -1626,7 +1626,7 @@ Resources:
|
|
|
1626
1626
|
white-space: nowrap;
|
|
1627
1627
|
max-width: 275px;
|
|
1628
1628
|
text-overflow: ellipsis;
|
|
1629
|
-
`;var rr=require("react"),
|
|
1629
|
+
`;var rr=require("react"),bn=x(require("styled-components"));var or=require("@ethersproject/providers");async function Dl(e,t,o,r){return r=Object.assign({chainId:Fe},r),r.chainId=Number(r.chainId),Fl(r),(await o.rpc({address:t,accessToken:e,request:{method:"eth_populateTransactionRequest",params:[r]}})).response.data}async function Ol(e,t,o,r){r=Object.assign({chainId:Fe},r),Fl(r);let i=(await o.rpc({address:t,accessToken:e,request:{method:"eth_signTransaction",params:[r]}})).response.data,s=await(await Bp(r.chainId,i)).wait();return Hp(s)}function Bp(e,t){return new or.InfuraProvider(e,nt).sendTransaction(t)}async function Ul(e,t=Fe){return await new or.InfuraProvider(t,nt).getBalance(e)}async function Bl(e){return delete e.from,await new or.InfuraProvider(Number(e.chainId)||Fe,nt).estimateGas(e)}function Fl(e){let t=["gasLimit","gasPrice","value","maxPriorityFeePerGas","maxFeePerGas"];for(let o of t){let r=e[o];if(!(typeof r>"u")&&!Fp(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 Fp(e){let t=typeof e=="number",o=typeof e=="bigint",r=typeof e=="string"&&Gp(e);return t||o||r}function Gp(e){return/^-?0x[a-f0-9]+$/i.test(e)}function Hp(e){return{to:e.to,from:e.from,contractAddress:e.contractAddress,transactionIndex:e.transactionIndex,root:e.root,logsBloom:e.logsBloom,blockHash:e.blockHash,transactionHash:e.transactionHash,logs:e.logs,blockNumber:e.blockNumber,confirmations:e.confirmations,byzantium:e.byzantium,type:e.type,status:e.status,gasUsed:e.gasUsed.toHexString(),cumulativeGasUsed:e.cumulativeGasUsed.toHexString(),effectiveGasPrice:e.effectiveGasPrice.toHexString()}}var Ii=require("react/jsx-runtime"),Gl=({style:e,...t})=>(0,Ii.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"currentColor",style:{height:"1.5rem",width:"1.5rem",...e},...t,children:(0,Ii.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M21 12a2.25 2.25 0 00-2.25-2.25H15a3 3 0 11-6 0H5.25A2.25 2.25 0 003 12m18 0v6a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 18v-6m18 0V9M3 12V9m18 0a2.25 2.25 0 00-2.25-2.25H5.25A2.25 2.25 0 003 9m18 0V6a2.25 2.25 0 00-2.25-2.25H5.25A2.25 2.25 0 003 6v3"})});var oo=require("react/jsx-runtime"),Hl=({wallet:e,txnValue:t,chainId:o})=>{let[r,n]=(0,rr.useState)(),[i,a]=(0,rr.useState)(!1);return(0,rr.useEffect)(()=>{(async l=>{try{let d=await Ul(l,o);t&&d.sub(Ne(t)).isNegative()&&a(!0),n(d.toHexString())}catch(d){console.log(d)}})(e.address)},[e,t]),(0,oo.jsxs)(Vp,{children:[(0,oo.jsxs)(zp,{children:[(0,oo.jsx)(Gl,{style:{height:"12px",width:"12px"}}),(0,oo.jsx)("div",{children:Ye(e==null?void 0:e.address)})]}),(0,oo.jsxs)(qp,{displayBalanceColor:!!t,hasFunds:!i,children:[r?eo(r):0," ETH"]})]})},Vp=bn.default.div`
|
|
1630
1630
|
display: flex;
|
|
1631
1631
|
flex-direction: row;
|
|
1632
1632
|
justify-content: space-between;
|
|
@@ -1638,12 +1638,12 @@ Resources:
|
|
|
1638
1638
|
border: 1px solid var(--privy-color-foreground-4);
|
|
1639
1639
|
border-radius: var(--privy-border-radius-sm);
|
|
1640
1640
|
}
|
|
1641
|
-
`,
|
|
1641
|
+
`,zp=bn.default.div`
|
|
1642
1642
|
display: flex;
|
|
1643
1643
|
flex-direction: row;
|
|
1644
1644
|
align-items: center;
|
|
1645
1645
|
gap: 8px;
|
|
1646
|
-
|
|
1646
|
+
`,qp=bn.default.div`
|
|
1647
1647
|
display: flex;
|
|
1648
1648
|
align-items: center;
|
|
1649
1649
|
justify-content: center;
|
|
@@ -1651,25 +1651,25 @@ Resources:
|
|
|
1651
1651
|
background-color: var(--privy-color-background-2);
|
|
1652
1652
|
padding: 4px 12px;
|
|
1653
1653
|
color: ${e=>e.displayBalanceColor?e.hasFunds?"green":"red":"inherit"};
|
|
1654
|
-
`;var nr=x(require("styled-components"));var Et=require("react");var
|
|
1654
|
+
`;var nr=x(require("styled-components"));var Et=require("react");var vn=e=>{let{getUsdTokenPrice:t}=_(),[o,r]=(0,Et.useState)(!1),[n,i]=(0,Et.useState)(!1),[a,s]=(0,Et.useState)(void 0),[l,d]=(0,Et.useState)(void 0),[m,g]=(0,Et.useState)(null);return(0,Et.useEffect)(()=>{let b=e.chainId||Fe;(async()=>{try{r(!0);let h=await t(b);d(h)}catch(h){s(h)}finally{r(!1)}})()},[]),(0,Et.useEffect)(()=>{(async()=>{try{i(!0);let w=await Bl(e);g(w.toBigInt())}catch(w){s(w)}finally{i(!1)}})()},[e]),{tokenPrice:l,estimatedGas:m,isLoading:o||n,error:a}};var Io=require("react/jsx-runtime"),Vl=e=>{var o,r;let{tokenPrice:t}=vn(e.txn);return(0,Io.jsxs)($p,{children:[(0,Io.jsxs)(jp,{children:["$",((o=e.txn)==null?void 0:o.value)&&t?fn(Ne(e.txn.value).toHexString(),t):"--"]}),(0,Io.jsxs)(Kp,{children:[(r=e.txn)!=null&&r.value?eo(Ne(e.txn.value).toHexString()):"--"," ","ETH"]}),(0,Io.jsx)(Zp,{children:e.description})]})},$p=nr.default.div`
|
|
1655
1655
|
display: flex;
|
|
1656
1656
|
flex-direction: column;
|
|
1657
1657
|
align-items: center;
|
|
1658
1658
|
margin-bottom: 20px;
|
|
1659
|
-
`,
|
|
1659
|
+
`,jp=nr.default.h2`
|
|
1660
1660
|
&& {
|
|
1661
1661
|
font-size: 48px;
|
|
1662
1662
|
line-height: 48px;
|
|
1663
1663
|
margin: 8px auto;
|
|
1664
1664
|
}
|
|
1665
|
-
`,
|
|
1665
|
+
`,Kp=nr.default.p`
|
|
1666
1666
|
margin-bottom: 12px;
|
|
1667
1667
|
&& {
|
|
1668
1668
|
font-size: 17px;
|
|
1669
1669
|
line-height: 17px;
|
|
1670
1670
|
color: var(--privy-color-foreground-3);
|
|
1671
1671
|
}
|
|
1672
|
-
`,
|
|
1672
|
+
`,Zp=nr.default.div`
|
|
1673
1673
|
font-size: 16px;
|
|
1674
1674
|
line-height: 22.4px;
|
|
1675
1675
|
font-weight: 400;
|
|
@@ -1677,70 +1677,71 @@ Resources:
|
|
|
1677
1677
|
white-space: nowrap;
|
|
1678
1678
|
max-width: 275px;
|
|
1679
1679
|
text-overflow: ellipsis;
|
|
1680
|
-
`;function
|
|
1680
|
+
`;function zl(e){return e.to&&e.data?"CONTRACT_CALL":e.to&&e.value?"SEND_ETH":"UNKNOWN"}var Li=x(require("styled-components"));var Ke=require("react/jsx-runtime"),ql=({txn:e,receipt:t,transactionInfo:o,onClose:r,tokenPrice:n})=>(0,Ke.jsxs)(Ke.Fragment,{children:[(0,Ke.jsx)(A,{onClose:r}),(0,Ke.jsxs)(Yp,{children:[(0,Ke.jsxs)("div",{children:[(0,Ke.jsx)(se,{title:"Transaction complete!",description:"You're all set."}),(0,Ke.jsx)(yn,{tokenPrice:n,from:t.from,to:t.to,gas:t.gasUsed,txn:e,transactionInfo:o})]}),(0,Ke.jsx)("div",{children:(0,Ke.jsx)(Qp,{loading:!1,onClick:r,children:"All Done"})})]})]}),Yp=Li.default.div`
|
|
1681
1681
|
display: flex;
|
|
1682
1682
|
height: 100%;
|
|
1683
1683
|
flex-direction: column;
|
|
1684
1684
|
justify-content: space-between;
|
|
1685
1685
|
flex-grow: 1;
|
|
1686
|
-
`,
|
|
1686
|
+
`,Qp=(0,Li.default)(Y)`
|
|
1687
1687
|
transition: color 350ms ease, background-color 350ms ease;
|
|
1688
|
-
`;var
|
|
1688
|
+
`;var V=require("react/jsx-runtime"),Jp=e=>{var t;switch(e.txnFamily){case"SEND_ETH":return(0,V.jsx)(V.Fragment,{children:(0,V.jsx)(Vl,{description:((t=e.uiOptions.transactionInfo)==null?void 0:t.description)||"",txn:e.txn})});case"CONTRACT_CALL":return(0,V.jsx)(V.Fragment,{children:e.uiOptions.senderInfo&&(0,V.jsx)(Nl,{partyInfo:e.uiOptions.senderInfo})});default:return(0,V.jsx)("div",{children:"Unsupported transaction."})}},jl=()=>{let{authenticated:e,getAccessToken:t,user:o}=B(),{walletProxy:r,closePrivyModal:n}=_(),{navigate:i,data:a}=v(),{transactionRequest:s,onSuccess:l,onFailure:d,uiOptions:m}=a.sendTransaction,[g,b]=(0,Pt.useState)(null),[w,h]=(0,Pt.useState)(""),[u,y]=(0,Pt.useState)(!0),[I,E]=(0,Pt.useState)(!1),[S,L]=(0,Pt.useState)(s),{tokenPrice:W,estimatedGas:j}=vn(S);(0,Pt.useEffect)(()=>{e||(i("LANDING"),d(new Error("User must be authenticated before transacting with a Privy wallet")))},[e]);let F=ee(o);(0,Pt.useEffect)(()=>{async function N(){let k=await t();return!k||!r||!F?S:Dl(k,F.address,r,S)}N().then(k=>{y(!1),L(k)},k=>{y(!0),hs(k)?h(k.message):(h("There was an error preparing transaction"),console.error(k))})},[r]);let ce=zl(S),ue={modalTitle:m.modalTitle||"Review transaction",title:m.title||ce==="SEND_ETH"?"Send ETH":"Submit transaction",description:m.description||"Confirm the details of the transaction",buttonText:m.buttonText||"Submit"},we=()=>{I||(g?l(g):d(new Error(w||"User exited the modal before submitting the transaction")),n({shouldCallAuthOnSuccess:!1}))};return W===void 0||j===null?(0,V.jsxs)(V.Fragment,{children:[(0,V.jsx)(A,{title:ue.modalTitle,onClose:we}),(0,V.jsx)($l,{children:(0,V.jsx)(zr,{})})]}):g!==null?(0,V.jsx)(ql,{txn:S,onClose:we,receipt:g,transactionInfo:m.transactionInfo,tokenPrice:W}):(0,V.jsxs)(V.Fragment,{children:[(0,V.jsx)(A,{title:ue.modalTitle,onClose:we}),(0,V.jsxs)($l,{children:[(0,V.jsxs)(o1,{children:[(0,V.jsx)(Jp,{txn:S,txnFamily:ce,uiOptions:m}),F?(0,V.jsx)(yn,{from:F.address,to:S.to,txn:S,transactionInfo:m.transactionInfo,gas:Ne(j).toHexString(),tokenPrice:W}):null]}),(0,V.jsxs)(r1,{children:[(0,V.jsx)(Xp,{children:w}),F?(0,V.jsx)(Hl,{txnValue:S.value,wallet:F,chainId:Number(S.chainId)}):null,(0,V.jsx)(e1,{children:(0,V.jsx)(t1,{disabled:u||I,loading:!r||I,loadingText:I?"Submitting (may take a few minutes)...":"Loading...",onClick:async()=>{E(!0);let N=await t();if(N&&!I&&F)try{let k=await Ol(N,F.address,r,S);b(k),h("")}catch(k){h(k.reason||"An error has occurred, please try again.")}finally{E(!1)}},children:ue.buttonText})})]})]})]})},$l=ro.default.div`
|
|
1689
1689
|
display: flex;
|
|
1690
1690
|
height: 100%;
|
|
1691
1691
|
flex-direction: column;
|
|
1692
1692
|
justify-content: space-between;
|
|
1693
1693
|
flex-grow: 1;
|
|
1694
|
-
`,
|
|
1694
|
+
`,Xp=ro.default.div`
|
|
1695
1695
|
line-height: 20px;
|
|
1696
1696
|
height: 20px;
|
|
1697
1697
|
font-size: 13px;
|
|
1698
1698
|
color: var(--privy-color-error);
|
|
1699
1699
|
width: 100%;
|
|
1700
1700
|
margin-top: 4px;
|
|
1701
|
-
`,
|
|
1701
|
+
`,e1=ro.default.div`
|
|
1702
1702
|
display: flex;
|
|
1703
1703
|
direction: row;
|
|
1704
1704
|
justify-content: space-between;
|
|
1705
1705
|
align-items: center;
|
|
1706
1706
|
gap: 8px;
|
|
1707
|
-
`,
|
|
1707
|
+
`,t1=(0,ro.default)(Y)`
|
|
1708
1708
|
transition: color 350ms ease, background-color 350ms ease;
|
|
1709
|
-
`,
|
|
1709
|
+
`,o1=ro.default.div`
|
|
1710
1710
|
height: 100%;
|
|
1711
1711
|
display: flex;
|
|
1712
1712
|
flex-direction: column;
|
|
1713
1713
|
justify-content: space-evenly;
|
|
1714
1714
|
flex-grow: 1;
|
|
1715
|
-
`,
|
|
1715
|
+
`,r1=ro.default.div`
|
|
1716
1716
|
display: flex;
|
|
1717
1717
|
flex-direction: column;
|
|
1718
1718
|
gap: 8px;
|
|
1719
|
-
`;var mt=require("react"),
|
|
1719
|
+
`;var mt=require("react"),wn=x(require("styled-components"));var ie=require("react/jsx-runtime"),n1=({setTitle:e,setError:t})=>{let{walletConnectors:o}=B(),{activeStatus:r}=_();return(0,ie.jsxs)(ie.Fragment,{children:[(0,ie.jsx)(Y,{onClick:()=>{if(!o||!r)return;t(!1),e("Update your active wallet");let n=o.walletConnectors.find(i=>i.address===r.address);n&&(n.connect({showPrompt:!0}).catch(i=>{console.error(i)}),n.proxyProvider.on("accountsChanged",i=>{i.length>0&&i[0]!==r.address&&(e("You selected the wrong wallet"),t(!0))}))},children:"Open MetaMask"})," "]})},Kl=()=>{var u,y;let[e,t]=(0,mt.useState)(!1),[o,r]=(0,mt.useState)(""),[n,i]=(0,mt.useState)(!1),[a,s]=(0,mt.useState)("Update your active wallet"),{walletConnectors:l}=B(),{activeStatus:d,closePrivyModal:m}=_(),[g,b]=(0,mt.useState)(!1);(0,mt.useEffect)(()=>{(async()=>await Sa())().then(async E=>{E||b(!0)}),setTimeout(()=>{b(!0)},3e4)},[g]),(0,mt.useEffect)(()=>{var E;if(!d)return;let I=(E=l==null?void 0:l.activeWalletConnector)==null?void 0:E.address;d.error?r(d.error):d.success&&d.address===I&&(r(""),t(!0))},[d]),(0,mt.useEffect)(()=>{if(e){s("Wallet updated successfully");let I=setTimeout(m,Be);return()=>clearTimeout(I)}},[e]);let w=()=>e?(0,ie.jsxs)(Mi,{children:[(0,ie.jsx)("span",{children:Ye(d==null?void 0:d.address)})," is now active."]}):d!=null&&d.address?(0,ie.jsxs)(Mi,{children:["Please connect and select the wallet"," ",(0,ie.jsx)("span",{children:Ye(d.address)})," in MetaMask."]}):(0,ie.jsx)(Mi,{children:"Please connect and select the right wallet in MetaMask"}),h=((u=d==null?void 0:d.walletBranding)==null?void 0:u.icon)||((y=Hr[(d==null?void 0:d.walletType)||"metamask"])==null?void 0:y.component)||"";return(0,ie.jsxs)(ie.Fragment,{children:[(0,ie.jsx)(A,{},"header"),(0,ie.jsx)(ii,{walletLogo:h,success:e,fail:!!o||n}),(0,ie.jsxs)(a1,{children:[(0,ie.jsx)("h3",{children:a}),o&&(0,ie.jsx)(i1,{children:o}),w()]}),g&&(0,ie.jsx)(n1,{setTitle:s,setError:i}),!g&&(0,ie.jsx)(_e,{})]})},i1=wn.default.div`
|
|
1720
1720
|
color: var(--privy-color-error);
|
|
1721
|
-
`,
|
|
1721
|
+
`,a1=wn.default.div`
|
|
1722
1722
|
display: flex;
|
|
1723
1723
|
flex-direction: column;
|
|
1724
1724
|
margin: 24px 27px 24px 27px;
|
|
1725
1725
|
gap: 8px;
|
|
1726
|
-
`,
|
|
1726
|
+
`,Mi=wn.default.p`
|
|
1727
1727
|
&& span {
|
|
1728
1728
|
font-weight: 600;
|
|
1729
1729
|
font-size: 14px;
|
|
1730
1730
|
}
|
|
1731
|
-
`;var ir=require("react"),Vt=x(require("styled-components"));var ge=require("react/jsx-runtime"),
|
|
1731
|
+
`;var ir=require("react"),Vt=x(require("styled-components"));var ge=require("react/jsx-runtime"),Zl=()=>{let{authenticated:e,getAccessToken:t,user:o}=B(),{walletProxy:r,closePrivyModal:n,createAnalyticsEvent:i}=_(),{navigate:a,data:s}=v(),[l,d]=(0,ir.useState)(!1),[m,g]=(0,ir.useState)("");(0,ir.useEffect)(()=>{e||(a("LANDING"),h(new Error("User must be authenticated before signing with a Privy wallet")))},[e]);let{message:b,onSuccess:w,onFailure:h,uiOptions:u}=s.signMessage,y=ee(o),I=!r,E={title:u.title||"Sign message",description:u.description||"Signing this message will not cost you any fees.",buttonText:u.buttonText||"Sign and continue"};return(0,ge.jsxs)(ge.Fragment,{children:[(0,ge.jsx)(A,{onClose:()=>n({shouldCallAuthOnSuccess:!1})}),(0,ge.jsxs)(s1,{children:[(0,ge.jsxs)("div",{children:[(0,ge.jsx)(se,{title:E.title,description:E.description}),(0,ge.jsx)(l1,{children:b}),(0,ge.jsx)(c1,{fail:!0,children:m})]}),(0,ge.jsx)(p1,{success:l,loading:I,disabled:l,onClick:async()=>{let S=await t();if(S&&!I&&y)try{i("embedded_wallet_sign_message_started",{walletAddress:y.address});let{response:L}=await r.rpc({accessToken:S,address:y==null?void 0:y.address,request:{method:"eth_sign",params:[y.address,b]}}),W=L.data;g(""),w(W),i("embedded_wallet_sign_message_completed",{walletAddress:y.address}),d(!0),setTimeout(()=>{n({shouldCallAuthOnSuccess:!1})},Be)}catch(L){g("An error has occurred, please try again."),h(L)}},children:l?(0,ge.jsxs)(d1,{children:[(0,ge.jsx)(Co,{style:{height:"0.9rem",width:"0.9rem"},strokeWidth:2})," ",(0,ge.jsx)("span",{children:"Success"})]}):E.buttonText})]}),(0,ge.jsx)(H,{protectedByPrivy:!0})]})},s1=Vt.default.div`
|
|
1732
1732
|
display: flex;
|
|
1733
1733
|
height: 100%;
|
|
1734
1734
|
flex-direction: column;
|
|
1735
1735
|
justify-content: space-between;
|
|
1736
1736
|
flex-grow: 1;
|
|
1737
|
-
`,
|
|
1737
|
+
`,l1=Vt.default.div`
|
|
1738
1738
|
background-color: var(--privy-color-background-2);
|
|
1739
1739
|
border-radius: 8px;
|
|
1740
1740
|
padding: 12px;
|
|
1741
1741
|
text-align: left;
|
|
1742
1742
|
max-height: 310px;
|
|
1743
1743
|
overflow: scroll;
|
|
1744
|
+
white-space: pre-wrap;
|
|
1744
1745
|
|
|
1745
1746
|
// hide the scrollbars
|
|
1746
1747
|
-ms-overflow-style: none; /* Internet Explorer 10+ */
|
|
@@ -1749,7 +1750,7 @@ Resources:
|
|
|
1749
1750
|
&::-webkit-scrollbar {
|
|
1750
1751
|
display: none; /* Safari and Chrome */
|
|
1751
1752
|
}
|
|
1752
|
-
`,
|
|
1753
|
+
`,c1=Vt.default.div`
|
|
1753
1754
|
line-height: 20px;
|
|
1754
1755
|
height: 20px;
|
|
1755
1756
|
font-size: 13px;
|
|
@@ -1758,11 +1759,11 @@ Resources:
|
|
|
1758
1759
|
justify-content: flex-start;
|
|
1759
1760
|
width: 100%;
|
|
1760
1761
|
margin-top: 4px;
|
|
1761
|
-
`,
|
|
1762
|
+
`,d1=Vt.default.span`
|
|
1762
1763
|
display: flex;
|
|
1763
1764
|
align-items: center;
|
|
1764
1765
|
gap: 8px;
|
|
1765
|
-
`,
|
|
1766
|
+
`,p1=(0,Vt.default)(Y)`
|
|
1766
1767
|
transition: color 350ms ease, background-color 350ms ease;
|
|
1767
1768
|
|
|
1768
1769
|
${e=>e.success&&Vt.css`
|
|
@@ -1771,7 +1772,7 @@ Resources:
|
|
|
1771
1772
|
color: #ffffff;
|
|
1772
1773
|
}
|
|
1773
1774
|
`}
|
|
1774
|
-
`;var
|
|
1775
|
+
`;var Cn=x(require("styled-components"));var u1=`
|
|
1775
1776
|
*,
|
|
1776
1777
|
::before,
|
|
1777
1778
|
::after {
|
|
@@ -2001,7 +2002,7 @@ Resources:
|
|
|
2001
2002
|
[hidden] {
|
|
2002
2003
|
display: none;
|
|
2003
2004
|
}
|
|
2004
|
-
`,Yl=
|
|
2005
|
+
`,Yl=u1;var Ql=Cn.createGlobalStyle`
|
|
2005
2006
|
:root {
|
|
2006
2007
|
// Borders
|
|
2007
2008
|
--privy-border-radius-sm: 6px;
|
|
@@ -2026,7 +2027,7 @@ Resources:
|
|
|
2026
2027
|
--privy-color-success: ${e=>e.theme.success};
|
|
2027
2028
|
--privy-color-error: ${e=>e.theme.error};
|
|
2028
2029
|
};
|
|
2029
|
-
`,Jl=
|
|
2030
|
+
`,Jl=Cn.default.div`
|
|
2030
2031
|
// css normalize only the privy application to avoid conflicts
|
|
2031
2032
|
// with consuming application
|
|
2032
2033
|
${Yl}
|
|
@@ -2088,7 +2089,7 @@ Resources:
|
|
|
2088
2089
|
opacity: 1;
|
|
2089
2090
|
}
|
|
2090
2091
|
}
|
|
2091
|
-
`;var
|
|
2092
|
+
`;var M=require("react/jsx-runtime"),m1=()=>{let{ready:e}=B(),{isLinking:t}=_(),{ready:o,currentScreen:r,app:n}=v(),i=!!(n!=null&&n.loginMethods.wallet),a=!!((n==null?void 0:n.loginMethods.email)||(n==null?void 0:n.loginMethods.sms)),s=i!==a,l;return["AWAITING_CONNECTION","AWAITING_OAUTH_SCREEN","ALLOWLIST_REJECTION_SCREEN","SETTING_ACTIVE_WALLET"].includes(r)||s&&r==="LANDING"?l="compact":"WALLET_EDUCATION"===r?l="full":t&&r!=="EMBEDDED_WALLET_SIGN_REQUEST_SCREEN"?l="medium":l="full",!e||!o?(0,M.jsxs)(vo,{"data-height":l,children:[(0,M.jsx)(A,{}),(0,M.jsx)(g1,{children:(0,M.jsx)(Fo,{})}),(0,M.jsx)(_e,{})]}):(0,M.jsxs)(vo,{"data-height":l,children:[r==="LANDING"&&(0,M.jsx)(ol,{}),r==="AWAITING_PASSWORDLESS_CODE"&&(0,M.jsx)(is,{}),r==="SETTING_ACTIVE_WALLET"&&(0,M.jsx)(Kl,{}),r==="WALLET_EDUCATION"&&(0,M.jsx)(zs,{}),r==="AWAITING_CONNECTION"&&(0,M.jsx)(ps,{}),r==="COINBASE_INTERSTITIAL_SCREEN"&&(0,M.jsx)(cs,{}),r==="PHANTOM_INTERSTITIAL_SCREEN"&&(0,M.jsx)(hl,{}),r==="LOGIN_FAILED_SCREEN"&&(0,M.jsx)(cl,{}),r==="AWAITING_OAUTH_SCREEN"&&(0,M.jsx)(pl,{}),r==="ALLOWLIST_REJECTION_SCREEN"&&(0,M.jsx)(es,{}),r==="INSTALL_METAMASK_SCREEN"&&(0,M.jsx)($s,{}),r==="INSTALL_PHANTOM_SCREEN"&&(0,M.jsx)(js,{}),r==="INSTALL_COINBASE_WALLET_SCREEN"&&(0,M.jsx)(qs,{}),r==="LINK_EMAIL_SCREEN"&&(0,M.jsx)(il,{}),r==="LINK_PHONE_SCREEN"&&(0,M.jsx)(al,{}),r==="LINK_WALLET_SCREEN"&&(0,M.jsx)(sl,{}),r==="EMBEDDED_WALLET_SCREEN"&&(0,M.jsx)(Is,{}),r==="EMBEDDED_WALLET_CREATED_SCREEN"&&(0,M.jsx)(Ps,{}),r==="EMBEDDED_WALLET_CONNECTING_SCREEN"&&(0,M.jsx)(bs,{}),r==="EMBEDDED_WALLET_RECOVERY_SCREEN"&&(0,M.jsx)(Ws,{}),r==="EMBEDDED_WALLET_KEY_EXPORT_SCREEN"&&(0,M.jsx)(Ss,{}),r==="EMBEDDED_WALLET_SIGN_REQUEST_SCREEN"&&(0,M.jsx)(Zl,{}),r==="EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN"&&(0,M.jsx)(jl,{})]})},ec=()=>{let{closePrivyModal:e}=_(),{app:t}=v(),o=(0,En.useCallback)(i=>{i.key==="Escape"&&(t==null?void 0:t.render.inDialog)&&e()},[t==null?void 0:t.render.inDialog]);(0,Ni.useEffect)(()=>(document.addEventListener("keydown",o,!1),()=>{document.removeEventListener("keydown",o,!1)}),[o]);let r=(0,M.jsx)(Jl,{onClick:i=>i.stopPropagation(),children:(0,M.jsx)(m1,{})}),n=t!=null&&t.render.inDialog?(0,M.jsx)(h1,{id:"privy-dialog",onClick:()=>e(),children:r}):r;return Xl.default.createPortal(n,t!=null&&t.render.inParentNodeId&&document.getElementById(t.render.inParentNodeId)||document.body)},f1=({children:e,...t})=>{let o=(0,En.useRef)(null);return(0,Ni.useEffect)(()=>{var n;(n=document==null?void 0:document.activeElement)==null||n.blur();let r=(document==null?void 0:document.getElementById("root"))||(document==null?void 0:document.getElementById("__next"));if(!!r)return r.setAttribute("inert","true"),(0,xn.disableBodyScroll)(o==null?void 0:o.current),()=>{let i=(document==null?void 0:document.getElementById("root"))||(document==null?void 0:document.getElementById("__next"));!i||(i.removeAttribute("inert"),(0,xn.clearAllBodyScrollLocks)())}},[t.open,t.onClose]),(0,M.jsx)("dialog",{open:!0,role:"dialog",...t,ref:o,children:e})},h1=(0,Pn.default)(f1)`
|
|
2092
2093
|
position: fixed;
|
|
2093
2094
|
top: 0;
|
|
2094
2095
|
left: 0;
|
|
@@ -2103,7 +2104,7 @@ Resources:
|
|
|
2103
2104
|
z-index: 999999;
|
|
2104
2105
|
-webkit-backdrop-filter: blur(3px);
|
|
2105
2106
|
backdrop-filter: blur(3px);
|
|
2106
|
-
`,vo=
|
|
2107
|
+
`,vo=Pn.default.div`
|
|
2107
2108
|
display: flex;
|
|
2108
2109
|
flex-direction: column;
|
|
2109
2110
|
text-align: center;
|
|
@@ -2140,10 +2141,10 @@ Resources:
|
|
|
2140
2141
|
min-height: 0;
|
|
2141
2142
|
}
|
|
2142
2143
|
}
|
|
2143
|
-
`,
|
|
2144
|
+
`,g1=Pn.default.div`
|
|
2144
2145
|
display: flex;
|
|
2145
2146
|
flex-direction: column;
|
|
2146
2147
|
align-items: center;
|
|
2147
2148
|
justify-content: center;
|
|
2148
2149
|
height: 100%;
|
|
2149
|
-
`;var io=x(require("tinycolor2")),tc="#FFFFFF",yp="#000000",bp=tc,vp="#1E1E1D";function wp(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 no(e,t){let o=Math.max(0,Math.min(1,e.toHsl().l+t));return(0,io.default)({...e.toHsl(),l:o})}function oc({backgroundTheme:e,accentHex:t,successHex:o="#51BA81",errorHex:r="#EC6351",whiteHex:n=tc,blackHex:i=yp}){let a;switch(e){case"light":a=bp;break;case"dark":a=vp;break;default:a=e;break}let s=(0,io.default)(a),l=(0,io.default)(t),d=(0,io.default)(o),m=(0,io.default)(r),g=wp(s.getLuminance()),b=no(s,g==="light"?-.04:.11),w=no(s,g==="light"?-.88:.87),h=no(s,g==="light"?-.77:.75),u=no(s,g==="light"?-.43:.45).desaturate(g==="light"?60:20),y=no(s,g==="light"?-.13:.25).desaturate(g==="light"?60:20),I=no(l,.15),E=no(l,-.06),S=(0,io.default)(l.getLuminance()>.5?i:n);return{colorScheme:g,background:s.toHslString(),background2:b.toHslString(),foreground:w.toHslString(),foreground2:h.toHslString(),foreground3:u.toHslString(),foreground4:y.toHslString(),accent:l.toHslString(),accentLight:I.toHslString(),accentDark:E.toHslString(),foregroundAccent:S.toHslString(),success:d.toHslString(),error:m.toHslString()}}var rc={appearance:{theme:"light",accentColor:"#676FFF"}};function Ni(e,t){var g,b,w,h,u,y,I,E;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(S=>S))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(S=>S))throw new Error("You must enable at least one login method");return{id:e.id,name:e.name,allowlistConfig:e.allowlistConfig,appearance:{logo:((g=t==null?void 0:t.appearance)==null?void 0:g.logo)??e.logoUrl,palette:oc({backgroundTheme:((b=t==null?void 0:t.appearance)==null?void 0:b.theme)??rc.appearance.theme,accentHex:((w=t==null?void 0:t.appearance)==null?void 0:w.accentColor)??e.accentColor??rc.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:((y=t==null?void 0:t.legal)==null?void 0:y.privacyPolicyUrl)??e.privacyPolicyUrl},render:{inDialog:((I=t==null?void 0:t._render)==null?void 0:I.inDialog)??!0,inParentNodeId:((E=t==null?void 0:t._render)==null?void 0:E.inParentNodeId)??null}}}var Tn=require("react");var Pn=class{constructor(){this.callbacks={}}enqueue(t,o){this.callbacks[t]=o}dequeue(t,o){let r=this.callbacks[o];if(!r)throw new Error(`cannot dequeue ${t} event: no event found for id ${o}`);switch(delete this.callbacks[o],t){case"privy:iframe:ready":return r;case"privy:wallet:create":return r;case"privy:wallet:connect":return r;case"privy:wallet:recover":return r;case"privy:wallet:rpc":return r;default:throw new Error(`invalid wallet event type ${t}`)}}};var ic=require("react/jsx-runtime"),Cp=function(e){return()=>`id-${e++}`}(0);function xp(e){return typeof e.event=="string"&&/^privy:.+/.test(e.event)}function ar(e){return e.error!==void 0}var Io=new Pn;function sr(e,t,o){let r=o.contentWindow;if(!r)throw new Error("iframe not initialized");return new Promise((n,i)=>{let a=Cp();Io.enqueue(a,{resolve:n,reject:i}),r.postMessage({id:a,event:e,data:t},"*")})}function Ep(e){switch(e.event){case"privy:iframe:ready":let t=Io.dequeue(e.event,e.id);return ar(e)?t.reject(new Ut(e.error.type,e.error.message)):t.resolve(e.data);case"privy:wallet:create":let o=Io.dequeue(e.event,e.id);return ar(e)?o.reject(new Ut(e.error.type,e.error.message)):o.resolve(e.data);case"privy:wallet:connect":let r=Io.dequeue(e.event,e.id);return ar(e)?r.reject(new Ut(e.error.type,e.error.message)):r.resolve(e.data);case"privy:wallet:recover":let n=Io.dequeue(e.event,e.id);return ar(e)?n.reject(new Ut(e.error.type,e.error.message)):n.resolve(e.data);case"privy:wallet:rpc":let i=Io.dequeue(e.event,e.id);return ar(e)?i.reject(new Ut(e.error.type,e.error.message)):i.resolve(e.data)}}function nc(e){let t=(0,Tn.useRef)(null);return(0,Tn.useEffect)(()=>{let o=t.current;if(!o)return;function r(s){s&&s.origin===e.origin&&xp(s.data)&&Ep(s.data)}let n={create(s){return sr("privy:wallet:create",s,o)},connect(s){return sr("privy:wallet:connect",s,o)},recover(s){return sr("privy:wallet:recover",s,o)},rpc(s){return sr("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 fa(()=>sr("privy:iframe:ready",{},o)).then(i,a),()=>window.removeEventListener("message",r)},[t.current]),(0,ic.jsx)("iframe",{ref:t,width:"0",height:"0",style:{display:"none",height:"0px",width:"0px"},src:fr(e.origin,`/apps/${e.appId}/embedded-wallets`)})}var Tt=require("react/jsx-runtime");function Pp(e){return typeof e=="string"&&e.length===25}var lr;function uo(){if(!lr){let e=K.get(lo);return Promise.resolve(e||null)}return lr.getAccessToken()}var sc,wa=(e,t)=>sc(e,t),lc,Ca=(e,t)=>lc(e,t),Tp=()=>{let t=new URLSearchParams(window.location.search).get("privy_token");if(!t)return;K.put(No,t);let o=new URL(window.location.href);o.searchParams.delete("privy_token"),window.history.pushState({},"",o)},cc=e=>{if(!Pp(e.appId))throw new T("Cannot initialize the Privy provider with an invalid Privy app ID");return lr||(lr=new go({appId:e.appId,apiUrl:e.apiUrl||dr})),(0,Tt.jsx)(Ap,{...e,client:lr})},Ap=e=>{let t=e.client,[o,r]=(0,Q.useState)(!1),[n,i]=(0,Q.useState)(!1),[a,s]=(0,Q.useState)(!1),[l,d]=(0,Q.useState)(null),[m,g]=(0,Q.useState)(!1),[b,w]=(0,Q.useState)(null),[h,u]=(0,Q.useState)(!1),[y,I]=(0,Q.useState)(null),[E,S]=(0,Q.useState)({status:"disconnected",connectError:null,connectRetry:P}),[M,W]=(0,Q.useState)(null),[Z,G]=(0,Q.useState)(null),[ce,ue]=(0,Q.useState)({showWalletLoginFirst:!0,allowlistConfig:{errorTitle:null,errorDetail:null,errorCtaText:null,errorCtaLink:null},walletAuth:!0,emailAuth:!0,smsAuth:!1,googleOAuth:!1,twitterOAuth:!1,discordOAuth:!1,githubOAuth:!1,appleOAuth:!1,termsAndConditionsUrl:null,privacyPolicyUrl:null}),[we,D]=(0,Q.useState)(Ni(ce,e.config)),[k,J]=(0,Q.useState)(!0),[De,ye]=(0,Q.useState)({}),[ft,At]=(0,Q.useState)(null),me=p=>{p&&w(p),r(!0),t.createAnalyticsEvent("modal_open",{initialScreen:p})},H=p=>{let c=e.createPrivyWalletOnLogin===!0;ye({login:{promptCreatePrivyWalletFlow:c}}),c&&J(!0),me(p)};(0,Q.useEffect)(()=>{if(!Z||!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(Z,c)}},[Z,l]),(0,Q.useEffect)(()=>{async function p(){let c=await t.getServerConfig();ue(c),c.customApiUrl&&t.updateApiUrl(c.customApiUrl),t.connectors.initialize();let R=Mo();Tp();let O=await t.getAuthenticatedUser();s(!!O),d(O),i(!0),ft==null||ft(),R&&O&&u(!0),dc()}p()},[t,ft,n]),(0,Q.useEffect)(()=>{let p=Ni(ce,e.config);D(p)},[e.config,ce]);let Mo=()=>{let p=new URLSearchParams(window.location.search),c=p.get("privy_oauth_code"),R=p.get("privy_oauth_state"),O=p.get("privy_oauth_provider");return c&&R&&O?(t.startAuthFlow(new _t(O,c,R)),H("AWAITING_OAUTH_SCREEN"),!0):!1},An=p=>{S(c=>({...c,status:"connecting",connectError:null})),p.promptConnect().then(()=>{S(c=>({...c,status:"connected",connectError:null}))}).catch(c=>{c instanceof Ke?console.error(c.cause?c.cause:c.message):console.error(c),S(R=>({...R,status:"disconnected",connectError:c}))})},dc=()=>{let c=new URLSearchParams(window.location.search).get("privy_wallet_client");if(!c)return;if(c==="phantom"&&!Rt()&&H("LOGIN_FAILED_SCREEN"),!t.connectors)throw new T("Connector not initialized");let R=new St(t.connectors,c);t.startAuthFlow(R),An(R),me("AWAITING_CONNECTION");let O=new URL(window.location.href);O.searchParams.delete("privy_wallet_client"),window.history.pushState({},"",O)};(0,Q.useEffect)(()=>{n&&a&&l===null&&t.getAuthenticatedUser().then(d)},[n,a,l,t]);let _n=()=>{u(!0),me("LINK_WALLET_SCREEN")},Di=async(p,c)=>{let R=t.connectors.getConnectorByAddress(c);if(!R)return W(c),_n(),p;I({address:c,walletType:R.walletType,walletBranding:R.walletBranding,success:!1}),me("SETTING_ACTIVE_WALLET");try{let O=await t.setActiveWallet(c,p);return I({address:c,walletType:R.walletType,walletBranding:R.walletBranding,success:!0}),O}catch(O){O instanceof T&&O.message==="Error setting the active wallet."&&(W(c),_n()),I({address:c,walletType:R.walletType,walletBranding:R.walletBranding,success:!1,error:O.message})}return p},Sn={ready:n,authenticated:a,user:l,walletConnectors:t.connectors,linkWallet:_n,linkEmail:()=>{u(!0),me("LINK_EMAIL_SCREEN")},linkPhone:()=>{u(!0),me("LINK_PHONE_SCREEN")},linkGoogle:async()=>{await ao.initLoginWithOAuth("google")},linkTwitter:async()=>{await ao.initLoginWithOAuth("twitter")},linkDiscord:async()=>{await ao.initLoginWithOAuth("discord")},linkGithub:async()=>{await ao.initLoginWithOAuth("github")},linkApple:async()=>{await ao.initLoginWithOAuth("apple")},login:async()=>{if(n||(await new Promise(p=>{At(()=>p)}),At(null)),a){console.warn("Attempted to log in, but user is already logged in. Use a `link` helper instead.");return}H()},logout:async()=>{await t.logout(),d(null),s(!1),w(null),u(!1),r(!1)},getAccessToken:()=>t.getAccessToken(),getEthereumProvider:()=>t.connectors.getEthereumProvider(),getEthersProvider:()=>new ac.Web3Provider(new Lt(t.connectors.getEthereumProvider())),getWeb3jsProvider:()=>new yr(t.connectors.getEthereumProvider()),unlinkWallet:async p=>{let c=await t.unlinkWallet(p);d(c);let R=c.linkedAccounts.filter(O=>O.type==="wallet");if(c&&R&&R.length>0){let O=R[0];c=await Di(c,O.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 Di(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(ee(l)){c(new Error("Only one Privy wallet per user is currently allowed"));return}J(!0),ye({createWallet:{onSuccess:p,onFailure:c,callAuthOnSuccessOnClose:!1}}),me("EMBEDDED_WALLET_SCREEN")}),signMessage:(p,c)=>new Promise((R,O)=>{if(!a||!l){O(new Error("User must be authenticated before signing with a Privy wallet"));return}if(!ee(l)){O(new Error("Must have a Privy wallet before signing"));return}if(typeof p!="string"||p.length<1){O(new Error("Message must be a non-empty string"));return}J(!0);let kn={message:p,onSuccess:R,onFailure:O,uiOptions:c||{}},Rn={onCompleteNavigateTo:"EMBEDDED_WALLET_SIGN_REQUEST_SCREEN",onFailure:O};ye({signMessage:kn,connectWallet:Rn}),me("EMBEDDED_WALLET_CONNECTING_SCREEN")}),sendTransaction:(p,c)=>new Promise(async(R,O)=>{if(!a||!l){O(new Error("User must be authenticated before signing with a Privy wallet"));return}if(!ee(l)){O(new Error("Must have a Privy wallet before signing"));return}J(!0);let kn={transactionRequest:p,onSuccess:R,onFailure:O,uiOptions:c||{}},Rn={onCompleteNavigateTo:"EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN",onFailure:O};ye({connectWallet:Rn,sendTransaction:kn}),me("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(!ee(l)){c(new Error("Must have a Privy wallet before exporting"));return}J(!0);let O={onCompleteNavigateTo:"EMBEDDED_WALLET_KEY_EXPORT_SCREEN",onFailure:c},Ln={appId:e.appId,origin:t.apiUrl,onSuccess:p,onFailure:c};ye({keyExport:Ln,connectWallet:O}),me("EMBEDDED_WALLET_CONNECTING_SCREEN")})};sc=Sn.signMessage,lc=Sn.sendTransaction;let ao=(()=>({isLinking:h,linkingHint:M,activeStatus:y,walletConnectionStatus:E,getAuthFlow:()=>t.authFlow,getAuthMeta:()=>{var p;return(p=t.authFlow)==null?void 0:p.meta},closePrivyModal:(p={shouldCallAuthOnSuccess:!0})=>{var R;let c=n&&a&&l;p.shouldCallAuthOnSuccess&&c&&((R=e.onSuccess)==null||R.call(e,l,m)),t.authFlow=void 0,W(null),w(null),u(!1),I(null),g(!1),r(!1),t.createAnalyticsEvent("modal_closed")},initLoginWithWallet:(p,c)=>{if(!t.connectors)throw new T("Connector not initialized");p||(p="metamask");let R=new St(t.connectors,p,c);t.startAuthFlow(R),S({status:"connecting",connectError:null,connectRetry:()=>{An(R)}}),An(R)},loginWithWallet:async()=>{if(!(t.authFlow instanceof St))throw new T("Must initialize SIWE flow first.");let p,c;h?(p=await t.link(),p&&(p=Bo(p))):{user:p,isNewUser:c}=await t.authenticate(),d(p||l||null),g(c||!1),s(!0)},initLoginWithOAuth:async p=>{t.startAuthFlow(new _t(p));let c=await t.authFlow.getAuthorizationUrl();c&&c.url&&window.location.assign(c.url)},loginWithOAuth:async()=>{if(!(t.authFlow instanceof _t))throw new T("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),g(c||!1),s(!0)},initLoginWithEmail:async p=>{let c=new qt(p);t.startAuthFlow(c),await c.sendCodeEmail()},initLoginWithSms:async p=>{let c=new $t(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 qt)t.authFlow.meta.emailCode=p.trim();else if(t.authFlow instanceof $t)t.authFlow.meta.smsCode=p.trim();else throw new T("Must initialize a passwordless code flow first");let c,R;h?c=await t.link():{user:c,isNewUser:R}=await t.authenticate(),d(c||l||null),g(R||!1),s(!0)},refreshUser:async()=>{let p=await t.getAuthenticatedUser();return d(p),p},walletProxy:Z,createAnalyticsEvent:(p,c,R)=>t.createAnalyticsEvent(p,c,R),getUsdTokenPrice:p=>t.getUsdTokenPrice(p)}))();return(0,Tt.jsxs)(Yn.Provider,{value:Sn,children:[e.children,(0,Tt.jsxs)(Kn.Provider,{value:ao,children:[(0,Tt.jsx)(Ql,{theme:{...we.appearance.palette||{}}}),(0,Tt.jsx)(Ia,{appConfig:we,data:De,setModalData:ye,initialScreen:b,visible:o,authenticated:a,children:o&&(0,Tt.jsx)(ec,{})}),k&&(0,Tt.jsx)(nc,{appId:e.appId,origin:t.apiUrl,onLoad:G,onLoadFailed:()=>null})]})]})};0&&(module.exports={AsExternalProvider,ConnectorManager,PrivyClient,PrivyProvider,PrivyProxyProvider,VERSION,WalletConnector,getAccessToken,usePrivy});
|
|
2150
|
+
`;var io=x(require("tinycolor2")),tc="#FFFFFF",y1="#000000",b1=tc,v1="#1E1E1D";function w1(e){return e<.8&&e>.2&&console.warn("Background color is not light or dark enough, which could lead to accessibility issues."),e>.5?"light":"dark"}function no(e,t){let o=Math.max(0,Math.min(1,e.toHsl().l+t));return(0,io.default)({...e.toHsl(),l:o})}function oc({backgroundTheme:e,accentHex:t,successHex:o="#51BA81",errorHex:r="#EC6351",whiteHex:n=tc,blackHex:i=y1}){let a;switch(e){case"light":a=b1;break;case"dark":a=v1;break;default:a=e;break}let s=(0,io.default)(a),l=(0,io.default)(t),d=(0,io.default)(o),m=(0,io.default)(r),g=w1(s.getLuminance()),b=no(s,g==="light"?-.04:.11),w=no(s,g==="light"?-.88:.87),h=no(s,g==="light"?-.77:.75),u=no(s,g==="light"?-.43:.45).desaturate(g==="light"?60:20),y=no(s,g==="light"?-.13:.25).desaturate(g==="light"?60:20),I=no(l,.15),E=no(l,-.06),S=(0,io.default)(l.getLuminance()>.5?i:n);return{colorScheme:g,background:s.toHslString(),background2:b.toHslString(),foreground:w.toHslString(),foreground2:h.toHslString(),foreground3:u.toHslString(),foreground4:y.toHslString(),accent:l.toHslString(),accentLight:I.toHslString(),accentDark:E.toHslString(),foregroundAccent:S.toHslString(),success:d.toHslString(),error:m.toHslString()}}var rc={appearance:{theme:"light",accentColor:"#676FFF"}};function Di(e,t){var g,b,w,h,u,y,I,E;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(S=>S))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(S=>S))throw new Error("You must enable at least one login method");return{id:e.id,name:e.name,allowlistConfig:e.allowlistConfig,appearance:{logo:((g=t==null?void 0:t.appearance)==null?void 0:g.logo)??e.logoUrl,palette:oc({backgroundTheme:((b=t==null?void 0:t.appearance)==null?void 0:b.theme)??rc.appearance.theme,accentHex:((w=t==null?void 0:t.appearance)==null?void 0:w.accentColor)??e.accentColor??rc.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:((y=t==null?void 0:t.legal)==null?void 0:y.privacyPolicyUrl)??e.privacyPolicyUrl},render:{inDialog:((I=t==null?void 0:t._render)==null?void 0:I.inDialog)??!0,inParentNodeId:((E=t==null?void 0:t._render)==null?void 0:E.inParentNodeId)??null}}}var An=require("react");var Tn=class{constructor(){this.callbacks={}}enqueue(t,o){this.callbacks[t]=o}dequeue(t,o){let r=this.callbacks[o];if(!r)throw new Error(`cannot dequeue ${t} event: no event found for id ${o}`);switch(delete this.callbacks[o],t){case"privy:iframe:ready":return r;case"privy:wallet:create":return r;case"privy:wallet:connect":return r;case"privy:wallet:recover":return r;case"privy:wallet:rpc":return r;default:throw new Error(`invalid wallet event type ${t}`)}}};var ic=require("react/jsx-runtime"),C1=function(e){return()=>`id-${e++}`}(0);function x1(e){return typeof e.event=="string"&&/^privy:.+/.test(e.event)}function ar(e){return e.error!==void 0}var Lo=new Tn;function sr(e,t,o){let r=o.contentWindow;if(!r)throw new Error("iframe not initialized");return new Promise((n,i)=>{let a=C1();Lo.enqueue(a,{resolve:n,reject:i}),r.postMessage({id:a,event:e,data:t},"*")})}function E1(e){switch(e.event){case"privy:iframe:ready":let t=Lo.dequeue(e.event,e.id);return ar(e)?t.reject(new Ut(e.error.type,e.error.message)):t.resolve(e.data);case"privy:wallet:create":let o=Lo.dequeue(e.event,e.id);return ar(e)?o.reject(new Ut(e.error.type,e.error.message)):o.resolve(e.data);case"privy:wallet:connect":let r=Lo.dequeue(e.event,e.id);return ar(e)?r.reject(new Ut(e.error.type,e.error.message)):r.resolve(e.data);case"privy:wallet:recover":let n=Lo.dequeue(e.event,e.id);return ar(e)?n.reject(new Ut(e.error.type,e.error.message)):n.resolve(e.data);case"privy:wallet:rpc":let i=Lo.dequeue(e.event,e.id);return ar(e)?i.reject(new Ut(e.error.type,e.error.message)):i.resolve(e.data)}}function nc(e){let t=(0,An.useRef)(null);return(0,An.useEffect)(()=>{let o=t.current;if(!o)return;function r(s){s&&s.origin===e.origin&&x1(s.data)&&E1(s.data)}let n={create(s){return sr("privy:wallet:create",s,o)},connect(s){return sr("privy:wallet:connect",s,o)},recover(s){return sr("privy:wallet:recover",s,o)},rpc(s){return sr("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 ha(()=>sr("privy:iframe:ready",{},o)).then(i,a),()=>window.removeEventListener("message",r)},[t.current]),(0,ic.jsx)("iframe",{ref:t,width:"0",height:"0",style:{display:"none",height:"0px",width:"0px"},src:fr(e.origin,`/apps/${e.appId}/embedded-wallets`)})}var Tt=require("react/jsx-runtime");function P1(e){return typeof e=="string"&&e.length===25}var lr;function uo(){if(!lr){let e=Z.get(lo);return Promise.resolve(e||null)}return lr.getAccessToken()}var sc,Ca=(e,t)=>sc(e,t),lc,xa=(e,t)=>lc(e,t),T1=()=>{let t=new URLSearchParams(window.location.search).get("privy_token");if(!t)return;Z.put(No,t);let o=new URL(window.location.href);o.searchParams.delete("privy_token"),window.history.pushState({},"",o)},cc=e=>{if(!P1(e.appId))throw new T("Cannot initialize the Privy provider with an invalid Privy app ID");return lr||(lr=new go({appId:e.appId,apiUrl:e.apiUrl||dr})),(0,Tt.jsx)(A1,{...e,client:lr})},A1=e=>{let t=e.client,[o,r]=(0,Q.useState)(!1),[n,i]=(0,Q.useState)(!1),[a,s]=(0,Q.useState)(!1),[l,d]=(0,Q.useState)(null),[m,g]=(0,Q.useState)(!1),[b,w]=(0,Q.useState)(null),[h,u]=(0,Q.useState)(!1),[y,I]=(0,Q.useState)(null),[E,S]=(0,Q.useState)({status:"disconnected",connectError:null,connectRetry:P}),[L,W]=(0,Q.useState)(null),[j,F]=(0,Q.useState)(null),[ce,ue]=(0,Q.useState)({showWalletLoginFirst:!0,allowlistConfig:{errorTitle:null,errorDetail:null,errorCtaText:null,errorCtaLink:null},walletAuth:!0,emailAuth:!0,smsAuth:!1,googleOAuth:!1,twitterOAuth:!1,discordOAuth:!1,githubOAuth:!1,appleOAuth:!1,termsAndConditionsUrl:null,privacyPolicyUrl:null}),[we,N]=(0,Q.useState)(Di(ce,e.config)),[k,J]=(0,Q.useState)(!0),[Oe,ye]=(0,Q.useState)({}),[ft,At]=(0,Q.useState)(null),me=p=>{p&&w(p),r(!0),t.createAnalyticsEvent("modal_open",{initialScreen:p})},G=p=>{let c=e.createPrivyWalletOnLogin===!0;ye({login:{promptCreatePrivyWalletFlow:c}}),c&&J(!0),me(p)};(0,Q.useEffect)(()=>{if(!j||!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(j,c)}},[j,l]),(0,Q.useEffect)(()=>{async function p(){let c=await t.getServerConfig();ue(c),c.customApiUrl&&t.updateApiUrl(c.customApiUrl),t.connectors.initialize();let R=Mo();T1();let D=await t.getAuthenticatedUser();s(!!D),d(D),i(!0),ft==null||ft(),R&&D&&u(!0),dc()}p()},[t,ft,n]),(0,Q.useEffect)(()=>{let p=Di(ce,e.config);N(p)},[e.config,ce]);let Mo=()=>{let p=new URLSearchParams(window.location.search),c=p.get("privy_oauth_code"),R=p.get("privy_oauth_state"),D=p.get("privy_oauth_provider");return c&&R&&D?(t.startAuthFlow(new _t(D,c,R)),G("AWAITING_OAUTH_SCREEN"),!0):!1},_n=p=>{S(c=>({...c,status:"connecting",connectError:null})),p.promptConnect().then(()=>{S(c=>({...c,status:"connected",connectError:null}))}).catch(c=>{c instanceof Ze?console.error(c.cause?c.cause:c.message):console.error(c),S(R=>({...R,status:"disconnected",connectError:c}))})},dc=()=>{let c=new URLSearchParams(window.location.search).get("privy_wallet_client");if(!c)return;if(c==="phantom"&&!Wt()&&G("LOGIN_FAILED_SCREEN"),!t.connectors)throw new T("Connector not initialized");let R=new St(t.connectors,c);t.startAuthFlow(R),_n(R),me("AWAITING_CONNECTION");let D=new URL(window.location.href);D.searchParams.delete("privy_wallet_client"),window.history.pushState({},"",D)};(0,Q.useEffect)(()=>{n&&a&&l===null&&t.getAuthenticatedUser().then(d)},[n,a,l,t]);let Sn=()=>{u(!0),me("LINK_WALLET_SCREEN")},Oi=async(p,c)=>{let R=t.connectors.getConnectorByAddress(c);if(!R)return W(c),Sn(),p;I({address:c,walletType:R.walletType,walletBranding:R.walletBranding,success:!1}),me("SETTING_ACTIVE_WALLET");try{let D=await t.setActiveWallet(c,p);return I({address:c,walletType:R.walletType,walletBranding:R.walletBranding,success:!0}),D}catch(D){D instanceof T&&D.message==="Error setting the active wallet."&&(W(c),Sn()),I({address:c,walletType:R.walletType,walletBranding:R.walletBranding,success:!1,error:D.message})}return p},kn={ready:n,authenticated:a,user:l,walletConnectors:t.connectors,linkWallet:Sn,linkEmail:()=>{u(!0),me("LINK_EMAIL_SCREEN")},linkPhone:()=>{u(!0),me("LINK_PHONE_SCREEN")},linkGoogle:async()=>{await ao.initLoginWithOAuth("google")},linkTwitter:async()=>{await ao.initLoginWithOAuth("twitter")},linkDiscord:async()=>{await ao.initLoginWithOAuth("discord")},linkGithub:async()=>{await ao.initLoginWithOAuth("github")},linkApple:async()=>{await ao.initLoginWithOAuth("apple")},login:async()=>{if(n||(await new Promise(p=>{At(()=>p)}),At(null)),a){console.warn("Attempted to log in, but user is already logged in. Use a `link` helper instead.");return}G()},logout:async()=>{await t.logout(),d(null),s(!1),w(null),u(!1),r(!1)},getAccessToken:()=>t.getAccessToken(),getEthereumProvider:()=>t.connectors.getEthereumProvider(),getEthersProvider:()=>new ac.Web3Provider(new kt(t.connectors.getEthereumProvider())),getWeb3jsProvider:()=>new yr(t.connectors.getEthereumProvider()),unlinkWallet:async p=>{let c=await t.unlinkWallet(p);d(c);let R=c.linkedAccounts.filter(D=>D.type==="wallet");if(c&&R&&R.length>0){let D=R[0];c=await Oi(c,D.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 Oi(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(ee(l)){c(new Error("Only one Privy wallet per user is currently allowed"));return}J(!0),ye({createWallet:{onSuccess:p,onFailure:c,callAuthOnSuccessOnClose:!1}}),me("EMBEDDED_WALLET_SCREEN")}),signMessage:(p,c)=>new Promise((R,D)=>{if(!a||!l){D(new Error("User must be authenticated before signing with a Privy wallet"));return}if(!ee(l)){D(new Error("Must have a Privy wallet before signing"));return}if(typeof p!="string"||p.length<1){D(new Error("Message must be a non-empty string"));return}J(!0);let Wn={message:p,onSuccess:R,onFailure:D,uiOptions:c||{}},In={onCompleteNavigateTo:"EMBEDDED_WALLET_SIGN_REQUEST_SCREEN",onFailure:D};ye({signMessage:Wn,connectWallet:In}),me("EMBEDDED_WALLET_CONNECTING_SCREEN")}),sendTransaction:(p,c)=>new Promise(async(R,D)=>{if(!a||!l){D(new Error("User must be authenticated before signing with a Privy wallet"));return}if(!ee(l)){D(new Error("Must have a Privy wallet before signing"));return}J(!0);let Wn={transactionRequest:p,onSuccess:R,onFailure:D,uiOptions:c||{}},In={onCompleteNavigateTo:"EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN",onFailure:D};ye({connectWallet:In,sendTransaction:Wn}),me("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(!ee(l)){c(new Error("Must have a Privy wallet before exporting"));return}J(!0);let D={onCompleteNavigateTo:"EMBEDDED_WALLET_KEY_EXPORT_SCREEN",onFailure:c},Rn={appId:e.appId,origin:t.apiUrl,onSuccess:p,onFailure:c};ye({keyExport:Rn,connectWallet:D}),me("EMBEDDED_WALLET_CONNECTING_SCREEN")})};sc=kn.signMessage,lc=kn.sendTransaction;let ao=(()=>({isLinking:h,linkingHint:L,activeStatus:y,walletConnectionStatus:E,getAuthFlow:()=>t.authFlow,getAuthMeta:()=>{var p;return(p=t.authFlow)==null?void 0:p.meta},closePrivyModal:(p={shouldCallAuthOnSuccess:!0})=>{var R;let c=n&&a&&l;p.shouldCallAuthOnSuccess&&c&&((R=e.onSuccess)==null||R.call(e,l,m)),t.authFlow=void 0,W(null),w(null),u(!1),I(null),g(!1),r(!1),t.createAnalyticsEvent("modal_closed")},initLoginWithWallet:(p,c)=>{if(!t.connectors)throw new T("Connector not initialized");p||(p="metamask");let R=new St(t.connectors,p,c);t.startAuthFlow(R),S({status:"connecting",connectError:null,connectRetry:()=>{_n(R)}}),_n(R)},loginWithWallet:async()=>{if(!(t.authFlow instanceof St))throw new T("Must initialize SIWE flow first.");let p,c;h?(p=await t.link(),p&&(p=Bo(p))):{user:p,isNewUser:c}=await t.authenticate(),d(p||l||null),g(c||!1),s(!0)},initLoginWithOAuth:async p=>{t.startAuthFlow(new _t(p));let c=await t.authFlow.getAuthorizationUrl();c&&c.url&&window.location.assign(c.url)},loginWithOAuth:async()=>{if(!(t.authFlow instanceof _t))throw new T("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),g(c||!1),s(!0)},initLoginWithEmail:async p=>{let c=new zt(p);t.startAuthFlow(c),await c.sendCodeEmail()},initLoginWithSms:async p=>{let c=new qt(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 zt)t.authFlow.meta.emailCode=p.trim();else if(t.authFlow instanceof qt)t.authFlow.meta.smsCode=p.trim();else throw new T("Must initialize a passwordless code flow first");let c,R;h?c=await t.link():{user:c,isNewUser:R}=await t.authenticate(),d(c||l||null),g(R||!1),s(!0)},refreshUser:async()=>{let p=await t.getAuthenticatedUser();return d(p),p},walletProxy:j,createAnalyticsEvent:(p,c,R)=>t.createAnalyticsEvent(p,c,R),getUsdTokenPrice:p=>t.getUsdTokenPrice(p)}))();return(0,Tt.jsxs)(Qn.Provider,{value:kn,children:[e.children,(0,Tt.jsxs)(Yn.Provider,{value:ao,children:[(0,Tt.jsx)(Ql,{theme:{...we.appearance.palette||{}}}),(0,Tt.jsx)(Ma,{appConfig:we,data:Oe,setModalData:ye,initialScreen:b,visible:o,authenticated:a,children:o&&(0,Tt.jsx)(ec,{})}),k&&(0,Tt.jsx)(nc,{appId:e.appId,origin:t.apiUrl,onLoad:F,onLoadFailed:()=>null})]})]})};0&&(module.exports={AsExternalProvider,ConnectorManager,PrivyClient,PrivyProvider,PrivyProxyProvider,VERSION,WalletConnector,getAccessToken,usePrivy});
|