@privy-io/react-auth 1.43.3 → 1.43.4
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 +169 -169
- package/dist/index.d.ts +35 -12
- package/dist/index.js +149 -149
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var
|
|
1
|
+
var _u=(e,t,o)=>{if(!t.has(e))throw TypeError("Cannot "+o)};var ms=(e,t,o)=>{if(t.has(e))throw TypeError("Cannot add the same private member more than once");t instanceof WeakSet?t.add(e):t.set(e,o)};var hs=(e,t,o)=>(_u(e,t,"access private method"),o);import{getAddress as Pi}from"@ethersproject/address";import{StaticJsonRpcProvider as kv,Web3Provider as ss}from"@ethersproject/providers";import{useEffect as Pt,useMemo as Rv,useRef as pu,useState as Q}from"react";import{FetchError as Su}from"ofetch";var tt=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}]`:""}`}},Ho=class extends tt{constructor(o,r,n,i,a){super(n,i,a);this.type=o;this.status=r}},C=class extends tt{constructor(o,r,n){super(o,r,n);this.type="client_error"}},en=class extends C{constructor(){super("Request timed out",void 0,"client_request_timeout")}};var F=class extends tt{constructor(o,r,n){super(o,r,n);this.type="connector_error"}},ee=e=>{if(e instanceof tt)return e;if(!(e instanceof Su))return Me(e);if(!e.response)return new Ho("api_error",null,e.message,e);let{type:t,message:o,error:r,code:n}=e.data;return new Ho(t||"ApiError",e.response.status,o||r,e,n)},Me=e=>e instanceof tt?e:e instanceof Error?new C(e.message,e):new C(`Internal error: ${e}`);var vr=class extends C{constructor(){super("Method called before `ready`. Ensure you wait until `ready` is true before calling.")}},Oe=class extends C{constructor(t="Embedded wallet error",o){super(t,o,"unknown_embedded_wallet_error")}},tn=class extends C{constructor(t="User must be authenticated"){super(t,void 0,"must_be_authenticated")}};var on=()=>"/api/v1/sessions",fs=()=>"/api/v1/sessions/logout",ys=()=>"/api/v1/sessions/fork",rn=()=>"/api/v1/sessions/fork/recover",gs=()=>"/api/v1/siwe/init",vs=()=>"/api/v1/siwe/authenticate",ws=()=>"/api/v1/siwe/link",Cs=()=>"/api/v1/passwordless/init",bs=()=>"/api/v1/passwordless/authenticate",Es=()=>"/api/v1/passwordless/link",xs=()=>"/api/v1/passwordless_sms/init",Ts=()=>"/api/v1/passwordless_sms/authenticate",Ps=()=>"/api/v1/passwordless_sms/link",_s=()=>"/api/v1/oauth/init",Ss=()=>"/api/v1/oauth/authenticate",As=()=>"/api/v1/oauth/link",ks=()=>"/api/v1/siwe/unlink",Rs=()=>"/api/v1/passwordless/unlink",Ws=()=>"/api/v1/passwordless_sms/unlink",Is=()=>"/api/v1/oauth/unlink",Ns=()=>"/api/v1/analytics_events",Ls=()=>"/api/v1/plugins/moonpay_on_ramp/sign",Os=()=>"/api/v1/custom_jwt_account/authenticate";var Go=class{constructor(t){this.meta={token:t}}async authenticate(){if(!this.api)throw new C("Auth flow has no API instance");try{let t=Os(),o=await this.api.post(t,{token:this.meta.token});return{user:o.user,token:o.token,refresh_token:o.refresh_token,is_new_user:o.is_new_user}}catch(t){throw ee(t)}}async link(){throw new Error("Unimplemented")}};var go=class{constructor(t,o){this.meta={email:t,captchaToken:o}}async authenticate(){if(!this.api)throw new C("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new C("Email and email code must be set prior to calling authenticate.");try{let t=bs(),o=await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode});return{user:o.user,token:o.token,refresh_token:o.refresh_token,is_new_user:o.is_new_user}}catch(t){throw ee(t)}}async link(){if(!this.api)throw new C("Auth flow has no API instance");if(!this.meta.email||!this.meta.emailCode)throw new C("Email and email code must be set prior to calling authenticate.");try{let t=Es();return await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode})}catch(t){throw ee(t)}}async sendCodeEmail(t,o){if(!this.api)throw new C("Auth flow has no API instance");if(t&&(this.meta.email=t),o&&(this.meta.captchaToken=o),!this.meta.email)throw new C("Email must be set when initialzing authentication.");try{let r=Cs();return await this.api.post(r,{email:this.meta.email,token:this.meta.captchaToken})}catch(r){throw ee(r)}}};var Gt=class{constructor(t,o,r){this.meta={provider:t},this.meta.authorizationCode=o,this.meta.stateCode=r}isActive(){return!!(this.meta.authorizationCode&&this.meta.stateCode&&this.meta.provider)}async authenticate(){if(!this.api)throw new C("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new C("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling authenticate.");if(this.meta.authorizationCode==="undefined")throw new C("User denied confirmation during OAuth flow");try{let t=Ss(),o=await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode});return{user:o.user,token:o.token,refresh_token:o.refresh_token,is_new_user:o.is_new_user}}catch(t){let o=ee(t);throw o.privyErrorCode?new C(o.message||"Invalid code during OAuth flow.",void 0,o.privyErrorCode):o.message==="User denied confirmation during OAuth flow"?new C("Invalid code during oauth flow.",void 0,"oauth_user_denied"):new C("Invalid code during OAuth flow.",void 0,"unknown_auth_error")}}async link(){if(!this.api)throw new C("Auth flow has no API instance");if(!this.meta.authorizationCode||!this.meta.stateCode)throw new C("[OAuth AuthFlow] Authorization and state codes code must be set prior to calling link.");if(this.meta.authorizationCode==="undefined")throw new C("User denied confirmation during OAuth flow");try{let t=As();return await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode})}catch(t){throw ee(t)}}async getAuthorizationUrl(){if(!this.api)throw new C("Auth flow has no API instance");if(!this.meta.provider)throw new C("Provider must be set when initialzing OAuth authentication.");try{let t=_s();return await this.api.post(t,{provider:this.meta.provider,redirect_to:window.location.href},{baseURL:this.api?.fallbackApiUrl})}catch(t){throw ee(t)}}};var $e=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 vo=class{constructor(t){this.createSiweMessage=(t,o,r,n,i,a,l)=>`${r} wants you to sign in with your Ethereum account:
|
|
2
2
|
${o}
|
|
3
3
|
|
|
4
4
|
${l}
|
|
@@ -9,7 +9,7 @@ Chain ID: ${t}
|
|
|
9
9
|
Nonce: ${a}
|
|
10
10
|
Issued At: ${i}
|
|
11
11
|
Resources:
|
|
12
|
-
- https://privy.io`;this.getNonceOnce=new $e(this._getNonceOnce.bind(this)),this.wallet=t}get meta(){return{connectorType:this.wallet.connectorType,walletClientType:this.wallet.walletClientType}}async authenticate(){if(!this.api)throw new C("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign(),r=await this.api.post(gs(),{message:t,signature:o,chainId:this.wallet.chainId,walletClientType:this.wallet.walletClientType,connectorType:this.wallet.connectorType});return{user:r.user,token:r.token,refresh_token:r.refresh_token,is_new_user:r.is_new_user}}catch(t){throw ee(t)}}async link(){if(!this.api)throw new C("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign();return await this.api.post(vs(),{message:t,signature:o,chainId:this.wallet.chainId,walletClientType:this.wallet.walletClientType,connectorType:this.wallet.connectorType})}catch(t){throw ee(t)}}async sign(){if(!this.api)throw new C("Auth flow has no API instance");if(await this.buildSiweMessage(),!this.preparedMessage)throw new C("Could not prepare SIWE message");let t=await this.wallet.sign(this.preparedMessage);return{message:this.preparedMessage,signature:t}}async _getNonceOnce(){if(!this.api)throw new C("Auth flow has no API instance");let t=this.wallet.address;return(await this.api.post(ys(),{address:t})).nonce}async buildSiweMessage(){if(!this.api)throw new C("Auth flow has no API instance");let t=this.wallet.address,o=this.wallet.chainId.replace("eip155:","");return this.nonce||(this.nonce=await this.getNonceOnce.execute()),this.preparedMessage=this.prepareMessage(o,t,this.nonce),this.preparedMessage}prepareMessage(t,o,r){let n=window.location.host,i=window.location.origin,a="By signing, you are proving you own this wallet and logging in. This does not initiate a transaction or cost any fees.",l=new Date().toISOString();return this.createSiweMessage(t,o,n,i,l,r,a)}};var wo=class{constructor(t,o){this.meta={phoneNumber:t,captchaToken:o}}async authenticate(){if(!this.api)throw new C("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new C("phone number and sms code must be set prior to calling authenticate.");try{let t=xs(),o=await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode});return{user:o.user,token:o.token,refresh_token:o.refresh_token,is_new_user:o.is_new_user}}catch(t){throw ee(t)}}async link(){if(!this.api)throw new C("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new C("phone number and sms code must be set prior to calling authenticate.");try{let t=Ps();return await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode})}catch(t){throw ee(t)}}async sendSmsCode(t,o){if(!this.api)throw new C("Auth flow has no API instance");if(t&&(this.meta.phoneNumber=t),o&&(this.meta.captchaToken=o),!this.meta.phoneNumber)throw new C("phone nNumber must be set when initialzing authentication.");try{let r=Es();return await this.api.post(r,{phoneNumber:this.meta.phoneNumber,token:this.meta.captchaToken})}catch(r){throw ee(r)}}};import{v4 as hm}from"uuid";function Ve(e){return new Date(e*1e3)}function Su(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:Ve(o.verified_at),chainType:"ethereum",chainId:o.chain_id,walletClient:o.wallet_client_type==="privy"?"privy":"unknown",walletClientType:o.wallet_client_type,connectorType:o.connector_type,recoveryMethod:o.recovery_method};t.push(n);break;case"email":let i={address:o.address,type:o.type,verifiedAt:Ve(o.verified_at)};t.push(i);break;case"phone":let a={number:o.phoneNumber,type:o.type,verifiedAt:Ve(o.verified_at)};t.push(a);break;case"google_oauth":let l={subject:o.subject,email:o.email,name:o.name,type:o.type,verifiedAt:Ve(o.verified_at)};t.push(l);break;case"twitter_oauth":let s={subject:o.subject,username:o.username,name:o.name,type:o.type,verifiedAt:Ve(o.verified_at)};t.push(s);break;case"discord_oauth":let c={subject:o.subject,username:o.username,email:o.email,type:o.type,verifiedAt:Ve(o.verified_at)};t.push(c);break;case"github_oauth":let h={subject:o.subject,username:o.username,name:o.name,email:o.email,type:o.type,verifiedAt:Ve(o.verified_at)};t.push(h);break;case"tiktok_oauth":let m={subject:o.subject,username:o.username,type:o.type,verifiedAt:Ve(o.verified_at)};t.push(m);break;case"linkedin_oauth":let w={subject:o.subject,name:o.name,email:o.email,type:o.type,verifiedAt:Ve(o.verified_at)};t.push(w);break;case"apple_oauth":let f={subject:o.subject,email:o.email,type:o.type,verifiedAt:Ve(o.verified_at)};t.push(f);break;case"custom_auth":t.push({type:o.type,customUserId:o.custom_user_id,verifiedAt:Ve(o.verified_at)});break;default:console.warn(`Unrecognized account type: ${r}. Please consider upgrading the Privy SDK.`)}}return t}function ct(e,t){return e.sort((o,r)=>r.verifiedAt.getTime()-o.verifiedAt.getTime()),e.find(o=>o.type===t)}var Z=e=>e?.linkedAccounts.find(t=>t.type==="wallet"&&t.walletClientType==="privy")||null,Au=e=>e.linkedAccounts.filter(t=>t.type==="wallet"),Gt=(e,t)=>t==="all-users"&&!Z(e)||t==="users-without-wallets"&&!Au(e)?.length;function _t(e){if(!e)return null;let t=Su(e.linked_accounts),o=ct(t,"wallet"),r=ct(t,"email"),n=ct(t,"phone"),i=ct(t,"google_oauth"),a=ct(t,"twitter_oauth"),l=ct(t,"discord_oauth"),s=ct(t,"github_oauth"),c=ct(t,"tiktok_oauth"),h=ct(t,"linkedin_oauth"),m=ct(t,"apple_oauth");return{id:e.id,createdAt:Ve(e.created_at),linkedAccounts:t,email:r&&{address:r?.address},phone:n&&{number:n?.number},wallet:o&&{address:o.address,chainType:o.chainType,chainId:o.chainId,walletClient:o.walletClient,walletClientType:o.walletClientType,connectorType:o.connectorType,recoveryMethod:o.recoveryMethod},google:i&&{subject:i.subject,email:i.email,name:i.name},twitter:a&&{subject:a.subject,username:a.username,name:a.name},discord:l&&{subject:l.subject,username:l.username,email:l.email},github:s&&{subject:s.subject,username:s.username,name:s.name,email:s.email},tiktok:c&&{subject:c.subject,username:c.username},linkedin:h&&{subject:h.subject,name:h.name},apple:m&&{subject:m.subject,email:m.email}}}import{getAddress as wl}from"@ethersproject/address";import cm from"eventemitter3";var Os="1.43.3";var on="4df5e2316331463a9130964bd6078dfa",Ms="fe9c30fc-3bc5-4064-91e2-6ab5887f8f4d",Ds="34357d3c125c2bcf2ce2bc3309d98715",Us="0x4AAAAAAAJFhr_rDU7HKpyw",rn="https://auth.privy.io",Fs=2e4,De=1400,Bs=2500,Si=Os;var $o="privy:token",Ai="privy-token",nn="privy:refresh_token",ki="privy-refresh-token",Hs="privy-session",vr="privy:session_transfer_token",Ru="privy:wallet",wr="privy:caid",an=e=>`${Ru}:${e}`,Ri="privy:connectors",Wi="privy:connections";var dt=1,Ii="0x1",sn=3e4,Gs="https://api.moonpay.com/v1",zs="https://api.moonpay.com/v1",$s="pk_live_hirbpu0cVcLHrjktC9l7fbc9ctjv0SL",Vs="pk_test_fqWjXZMSFwloh7orvJsRfjiUHXJqFzI";var Ni=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)}},Li=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 Wu(){return typeof window<"u"&&window.localStorage?new Li:new Ni}var $=Wu();import{isPossiblePhoneNumber as Iu}from"libphonenumber-js/min";var ln=()=>{let e=window;if(!e.ethereum)return!1;if(Cr(window.ethereum,!0))return!0;if(e.ethereum.providers){for(let t of e.ethereum.providers)if(Cr(t,!0))return!0}return!1},br=()=>{let e=window;if(!e.ethereum)return!1;if(Cr(window.ethereum,!1))return!0;if(e.ethereum.providers){for(let t of e.ethereum.providers)if(Cr(t,!1))return!0}return!!window.ethereum.isZerion},Cr=(e,t)=>{if(!e.isMetaMask)return!1;if(e.isMetaMask&&!t)return!0;if(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.isRainbow||e.isTokenPocket||e.isTokenary||e.isZerion)return!1;if(e.providers){for(let o of e.providers)if(!Cr(o))return!1}return!0},qe=()=>!!("phantom"in window&&window?.phantom?.ethereum?.isPhantom),cn=()=>{let e=window;if(!e.ethereum)return!1;if(e.ethereum.isCoinbaseWallet)return!0;if(e.ethereum.providers){for(let t of e.ethereum.providers)if(t.isCoinbaseWallet)return!0}return!1};var qs=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,}))$/),js=e=>Iu(String(e),"US"),Ks=(e,t)=>{let o=e.slice(0),r=[];for(;o.length;)r.push(o.splice(0,t));return r},zt=(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}`},Oi=e=>new Promise(t=>setTimeout(t,e)),Ys=(e,t={})=>{let o=t.delayMs||150,r=t.maxAttempts||270;return new Promise(async(n,i)=>{let a=!1,l=0;for(;!a&&l<r;){if(t.abortSignal?.aborted)return;e().then(()=>{a=!0,n()},(...s)=>{a=!0,i(...s)}),l+=1,await Oi(o)}a||i(new Error("Exceeded max attempts before resolving function"))})},dn=(e,t,o={})=>{let r=new URL(t,e);for(let[n,i]of Object.entries(o))r.searchParams.set(n,i);return r.href};var Mi=e=>e.replace(/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g,""),Er=e=>typeof e=="string"?e:"0x"+e.toString(16);async function Js(e=3e3){let t=!1,o=window;return new Promise(r=>{o.ethereum?n():(window.addEventListener("ethereum#initialized",n,{once:!0}),setTimeout(()=>{n()},e));function n(){if(t)return;t=!0,window.removeEventListener("ethereum#initialized",n);let i=[];ln()&&i.push("metamask"),qe()&&i.push("phantom"),o.ethereum&&o.ethereum.isBraveWallet&&i.push("brave"),r(i)}})}function pn(e){return`eip155:${String(Number(e))}`}var ot=(e,t,o)=>{let r=Number(e),n=t.find(a=>a.id===r);if(!n)throw new F(`Unsupported chainId ${e}`,4901);let i;if(o.rpcUrls[r]?i=o.rpcUrls[r]:n.rpcUrls.infura?.http[0]?i=n.rpcUrls.infura.http[0]+"/"+on:n.rpcUrls.blast?.http[0]?i=n.rpcUrls.blast.http[0]+"/"+Ms:i=n.rpcUrls.default?.http[0],!i)throw new F(`No RPC url found for ${e}`);return i},Qs=(e,t)=>{let o=Number(e),r=t.find(n=>n.id===o);if(!r)throw new F(`Unsupported chainId ${e}`,4901);return r.blockExplorers?.default.url};import zu from"@coinbase/wallet-sdk";import{jsx as Zs,jsxs as Nu}from"react/jsx-runtime";var pt=({style:e,...t})=>Nu("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:[Zs("rect",{width:"1024",height:"1024",fill:"#0052FF",rx:100,ry:100}),Zs("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M152 512C152 710.823 313.177 872 512 872C710.823 872 872 710.823 872 512C872 313.177 710.823 152 512 152C313.177 152 152 313.177 152 512ZM420 396C406.745 396 396 406.745 396 420V604C396 617.255 406.745 628 420 628H604C617.255 628 628 617.255 628 604V420C628 406.745 617.255 396 604 396H420Z",fill:"white"})]});import{getAddress as ft}from"@ethersproject/address";import{Web3Provider as nl}from"@ethersproject/providers";import{default as Hu}from"eventemitter3";import{StaticJsonRpcProvider as el}from"@ethersproject/providers";import Fu from"eventemitter3";var Lu=["eth_sign","eth_populateTransactionRequest","eth_signTransaction","personal_sign","eth_signTypedData_v4"],Xs=e=>Lu.includes(e);import{ErrorCode as Ou}from"@ethersproject/logger";var Vo=class extends F{constructor(){super("Wallet timeout");this.type="wallet_error"}},qo=class extends F{constructor(){super("User rejected connection");this.type="wallet_error"}},mt=e=>{if(e instanceof F)return e;if(e?.code&&e?.reason){let t=new xe(e);return e.code===Ou.ACTION_REJECTED&&(t.details=Ae.E4001_USER_REJECTED_REQUEST),t}return e?.code?new xe(e):new F("Unknown connector error",e)},ut=class extends tt{constructor(o,r,n){super(o);this.type="provider_error";this.code=r,this.data=n}},xe=class extends ut{constructor(o){let r=o;super(r.message,r.code,r.data);let n=Object.values(Ae).find(i=>i.eipCode===r.code);this.details=n||Ae.UNKNOWN_ERROR,r.code===-32002&&(r.message?.includes("already pending for origin")?r.message?.includes("wallet_requestPermissions")?this.details=Ae.E32002_CONNECTION_ALREADY_PENDING:this.details=Ae.E32002_REQUEST_ALREADY_PENDING:r.message?.includes("Already processing")&&r.message.includes("eth_requestAccounts")&&(this.details=Ae.E32002_WALLET_LOCKED))}},Mu={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}},Du={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}},Uu={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}},Ae={UNKNOWN_ERROR:{eipCode:0,message:"Unknown error",detail:"Unknown error",retryable:!0},...Uu,...Du},St={...Mu,...Ae};var Bu=12e4,Di=(e=new Vo,t=Bu)=>new Promise((o,r)=>setTimeout(()=>{r(e)},t)),X=class{constructor(t){this.removeListener=(t,o)=>{if(this.walletProvider)try{return this.walletProvider.removeListener(t,o)}catch{console.warn("Unable to remove wallet provider listener")}};this.setWalletProvider=t=>{this.walletProvider&&this._subscriptions.forEach(o=>{this.removeListener(o.eventName,o.listener)}),this.walletProvider=t,this._subscriptions.forEach(o=>{this.walletProvider?.on(o.eventName,o.listener)})};this.walletProvider=t,this._subscriptions=[]}on(t,o){if(this.walletProvider)return this.walletProvider.on(t,o);this._subscriptions.push({eventName:t,listener:o})}async request(t){if(!this.walletProvider)throw new F(`A wallet request of type ${t.method} was made before setting a wallet provider.`);return Promise.race([this.walletProvider.request(t),Di()]).catch(o=>{throw mt(o)})}},$t=class extends Error{constructor(o,r,n){super(o);this.code=r,this.data=n}},un=class extends Fu{constructor(o,r,n,i,a=1){super();this.walletProxy=o,this.address=r,this.chainId=a,this.rpcConfig=n,this.chains=i,this.provider=new el(ot(a,this.chains,n))}async handleSendTransaction(o){if(!o.params||!Array.isArray(o.params))throw new $t(`Invalid params for ${o.method}`,4200);let r=o.params[0];if(!await At()||!this.address)throw new $t("Disconnected",4900);return(await ol(r)).transactionHash}handleSwitchEthereumChain(o){if(!o.params||!Array.isArray(o.params))throw new $t(`Invalid params for ${o.method}`,4200);let r;if(typeof o.params[0]=="string")r=o.params[0];else if("chainId"in o.params[0]&&typeof o.params[0].chainId=="string")r=o.params[0].chainId;else throw new $t(`Invalid params for ${o.method}`,4200);this.chainId=Number(r),this.provider=new el(ot(this.chainId,this.chains,this.rpcConfig)),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];return await tl(r)}async handleEstimateGas(o){if(!o.params||!Array.isArray(o.params))throw new Error("Invalid params for eth_estimateGas");delete o.params[0].gasPrice,delete o.params[0].maxFeePerGas,delete o.params[0].maxPriorityFeePerGas;let r={...o.params[0],chainId:Er(this.chainId)};try{return await this.provider.send("eth_estimateGas",[r])}catch{return delete r.from,await this.provider.send("eth_estimateGas",[r])}}async request(o){switch(console.debug("Embedded1193Provider.request() called with args",o),o.method){case"eth_accounts":case"eth_requestAccounts":return this.address?[this.address]:[];case"eth_chainId":return Er(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(Xs(o.method)){let r=await At();if(await rl(),!r||!this.address)throw new $t("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 $t("Disconnected",4900)}}else return this.provider.send(o.method,o.params)}async connect(){let o=await At();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}}},ht=class extends X{constructor(o){super(o)}},Vt=class extends X{constructor(t){super(t)}sendAsync(t,o){throw new Error("sendAsync is no longer supported by EIP-1193. Use the request method instead.")}};var Gu=(e,t)=>{switch(t){case"coinbase_wallet":return e.message.includes("addEthereumChain");default:return e.code===4902||e.message?.includes("4902")}},Ue=class extends Hu{constructor(o,r,n){super();this.onAccountsChanged=o=>{o.length===0?this.onDisconnect():this.syncAccounts(o)};this.onChainChanged=o=>{this.wallets.forEach(r=>{r.chainId=pn(o),this.walletClientType==="privy"&&$.put(an(r.address),o)}),this.emit("walletsUpdated")};this.onDisconnect=()=>{this.connected=!1,this.wallets=[],this.emit("walletsUpdated")};this.onConnect=()=>{this.connected=!0,this.syncAccounts()};this.wallets=[],this.walletClientType=o,this.chains=r,this.defaultChain=n,this.connected=!1,this.initialized=!1}buildConnectedWallet(o,r){let n=async()=>!!this.wallets.find(i=>ft(i.address)===ft(o));return{address:ft(o),chainId:r,switchChain:async i=>{if(!n)throw new F("Wallet is not currently connected.");let a=this.wallets.find(m=>ft(m.address)===ft(o))?.chainId;if(!a)throw new F("Unable to determine current chainId.");let l,s;if(typeof i=="number"?(l=`0x${i.toString(16)}`,s=i):(l=i,s=Number(i)),a===pn(l))return;let c=this.chains.find(m=>m.id===s);if(!c)throw new F(`Unsupported chainId: ${i}`);let h=async()=>{await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[{chainId:l}]})};try{return await h()}catch(m){if(Gu(m,this.walletClientType))return await this.proxyProvider.request({method:"wallet_addEthereumChain",params:[{chainId:l,chainName:c.name,nativeCurrency:c.nativeCurrency,rpcUrls:[c.rpcUrls.public?.http[0]??""],blockExplorerUrls:[c.blockExplorers?.default.url??""]}]}),h();throw this.walletClientType==="rainbow"&&m.message?.includes("wallet_switchEthereumChain")?new F(`Rainbow does not support the chainId ${r}`):m}},connectedAt:Date.now(),walletClientType:this.walletClientType,connectorType:this.connectorType,isConnected:n,getEthereumProvider:async()=>{if(!await n())throw new F("Wallet is not currently connected.");return this.proxyProvider},getEthersProvider:async()=>{if(!await n())throw new F("Wallet is not currently connected.");return new nl(new ht(this.proxyProvider))},getWeb3jsProvider:async()=>{if(!await n())throw new F("Wallet is not currently connected.");return new Vt(this.proxyProvider)},sign:async i=>{if(!await n())throw new F("Wallet is not currently connected.");return await this.sign(i)},disconnect:()=>{this.disconnect()}}}async syncAccounts(o){let r=o;if(r===void 0){let c=await this.proxyProvider.request({method:"eth_accounts"});Array.isArray(c)&&(r=c)}if(!r||!Array.isArray(r)||r.length<=0||!r[0])return;let n=r[0],i=ft(n),a=[],l;if(this.walletClientType==="privy"){let c=$.get(an(i));this.chains.find(h=>h.id===Number(c))||($.del(an(i)),c=null),l=c||`0x${this.defaultChain.id.toString(16)}`;try{await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[{chainId:l}]})}catch{console.warn(`Unable to switch embedded wallet to chain ID ${l} on initialization`)}}else try{let c=await this.proxyProvider.request({method:"eth_chainId"});if(typeof c=="string")l=c;else if(typeof c=="number")l=`0x${c.toString(16)}`;else throw new Error("Invalid chainId returned from provider")}catch(c){console.warn(`Failed to get chainId from provider, defaulting to ${Ii}`,c),l=Ii}let s=pn(l);a.find(c=>ft(c.address)===i)||a.push(this.buildConnectedWallet(ft(n),s)),mn(a,this.wallets)||(this.wallets=a,this.emit("walletsUpdated"))}async getConnectedWallet(){let o=await this.proxyProvider.request({method:"eth_accounts"});return this.wallets.sort((r,n)=>n.connectedAt-r.connectedAt).find(r=>o.find(n=>ft(n)===ft(r.address)))||null}async isConnected(){let o=await this.proxyProvider.request({method:"eth_accounts"});return Array.isArray(o)&&o.length>0}async sign(o){return await this.connect({showPrompt:!1}),new nl(new ht(this.proxyProvider)).getSigner().signMessage(o)}subscribeListeners(){this.proxyProvider.on("accountsChanged",this.onAccountsChanged),this.proxyProvider.on("chainChanged",this.onChainChanged),this.proxyProvider.on("disconnect",this.onDisconnect),this.proxyProvider.on("connect",this.onConnect)}unsubscribeListeners(){this.proxyProvider.removeListener("accountsChanged",this.onAccountsChanged),this.proxyProvider.removeListener("chainChanged",this.onChainChanged),this.proxyProvider.removeListener("disconnect",this.onDisconnect),this.proxyProvider.removeListener("connect",this.onConnect)}};var $u=e=>{let t=`https://mainnet.infura.io/v3/${on}`,o=1;return e.makeWeb3Provider(t,o)},hn,fn=class extends Ue{constructor(o,r){super("coinbase_wallet",o,r);this.connectorType="coinbase_wallet";this.proxyProvider=new X,this.subscribeListeners(),hn||(hn=new zu({appName:"Privy",darkMode:!1,headlessMode:!1,enableMobileWalletLink:!0})),this.proxyProvider.setWalletProvider($u(hn)),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}disconnect(){hn.disconnect()}get walletBranding(){return{name:"Coinbase Wallet",icon:pt}}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new F("Unable to retrieve accounts");this.connected=!0,await this.syncAccounts([o[0]])}catch(o){throw mt(o)}}};import{jsx as il}from"react/jsx-runtime";var jo=({...e})=>il("svg",{width:"15",height:"15",viewBox:"0 0 15 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e,children:il("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.37126 11.0323C2.37126 12.696 3.90598 13.4421 5.40654 13.4468C8.91753 13.4468 12.8021 11.2897 12.7819 7.67984C12.7673 5.07728 10.3748 2.86167 7.54357 2.88296C4.8495 2.88296 2.21821 4.6411 2.21803 7.03628C2.21803 7.67951 2.58722 8.30178 3.55231 8.37184C2.74763 9.16826 2.37126 10.1225 2.37126 11.0323ZM7.55283 8.68012C8.11562 8.68012 8.57186 8.13217 8.57186 7.45624C8.57186 6.78032 8.11562 6.23237 7.55283 6.23237C6.99003 6.23237 6.53379 6.78032 6.53379 7.45624C6.53379 8.13217 6.99003 8.68012 7.55283 8.68012ZM10.4747 8.68012C11.0375 8.68012 11.4937 8.13217 11.4937 7.45625C11.4937 6.78032 11.0375 6.23237 10.4747 6.23237C9.91186 6.23237 9.45562 6.78032 9.45562 7.45625C9.45562 8.13217 9.91186 8.68012 10.4747 8.68012Z",fill:e.color||"var(--privy-color-foreground-3)"})});var yn=class extends Ue{constructor(o,r,n){super("privy",r,n);this.connectorType="embedded";this.proxyProvider=o,this.subscribeListeners(),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return await this.isConnected()?(await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[Er(o?.chainId||"0x1")]}),this.getConnectedWallet()):null}get walletBranding(){return{name:"Privy Wallet",icon:jo}}disconnect(){this.connected=!1}async promptConnection(){}};import{getAddress as dC}from"@ethersproject/address";import{Web3Provider as uC}from"@ethersproject/providers";import{isMobile as qu}from"react-device-detect";import{jsx as Fe,jsxs as Vu}from"react/jsx-runtime";var we=({style:e,...t})=>Vu("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:[Fe("style",{children:".s1{stroke-linecap:round;stroke-linejoin:round}.s2{fill:#e4761b;stroke:#e4761b}.s3{fill:#f6851b;stroke:#f6851b}"}),Fe("path",{fill:"#e2761b",stroke:"#e2761b",className:"s1",d:"m274.1 35.5-99.5 73.9L193 65.8z"}),Fe("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"}),Fe("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"}),Fe("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"}),Fe("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"}),Fe("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"}),Fe("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"}),Fe("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"}),Fe("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"}),Fe("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"}),Fe("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"}),Fe("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 gn=class extends Ue{constructor(o,r){super("metamask",o,r);this.connectorType="injected";this.proxyProvider=new X,this.subscribeListeners();let n=window,i=n.ethereum,a=n.ethereum.providers||[];for(let l of a)if(l.isMetaMask){i=l;break}this.proxyProvider.setWalletProvider(i),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}get walletBranding(){return{name:"MetaMask",icon:we}}disconnect(){console.warn("Metamask does not support programmatic disconnect.")}async promptConnection(){try{!qu&&ln()&&await this.proxyProvider.request({method:"wallet_requestPermissions",params:[{eth_accounts:{}}]});let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new F("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw mt(o)}}};import{jsx as al,jsxs as ju}from"react/jsx-runtime";var je=({style:e,...t})=>ju("svg",{xmlns:"http://www.w3.org/2000/svg",width:"108",height:"108",viewBox:"0 0 108 108",fill:"none",style:{height:"28px",width:"28px",...e},...t,children:[al("rect",{width:"108",height:"108",rx:"23",fill:"#AB9FF2"}),al("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M46.5267 69.9229C42.0054 76.8509 34.4292 85.6182 24.348 85.6182C19.5824 85.6182 15 83.6563 15 75.1342C15 53.4305 44.6326 19.8327 72.1268 19.8327C87.768 19.8327 94 30.6846 94 43.0079C94 58.8258 83.7355 76.9122 73.5321 76.9122C70.2939 76.9122 68.7053 75.1342 68.7053 72.314C68.7053 71.5783 68.8275 70.7812 69.0719 69.9229C65.5893 75.8699 58.8685 81.3878 52.5754 81.3878C47.993 81.3878 45.6713 78.5063 45.6713 74.4598C45.6713 72.9884 45.9768 71.4556 46.5267 69.9229ZM83.6761 42.5794C83.6761 46.1704 81.5575 47.9658 79.1875 47.9658C76.7816 47.9658 74.6989 46.1704 74.6989 42.5794C74.6989 38.9885 76.7816 37.1931 79.1875 37.1931C81.5575 37.1931 83.6761 38.9885 83.6761 42.5794ZM70.2103 42.5795C70.2103 46.1704 68.0916 47.9658 65.7216 47.9658C63.3157 47.9658 61.233 46.1704 61.233 42.5795C61.233 38.9885 63.3157 37.1931 65.7216 37.1931C68.0916 37.1931 70.2103 38.9885 70.2103 42.5795Z",fill:"#FFFDF8"})]});var vn=class extends Ue{constructor(o,r){super("phantom",o,r);this.connectorType="injected";this.proxyProvider=new X,this.subscribeListeners(),this.proxyProvider.setWalletProvider(window.phantom.ethereum),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}get walletBranding(){return{name:"Phantom",icon:je}}disconnect(){console.warn("Phantom does not support programmatic disconnect.")}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new F("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw mt(o)}}};import{EthereumProvider as nm,OPTIONAL_EVENTS as im,OPTIONAL_METHODS as am}from"@walletconnect/ethereum-provider";import Bi from"@walletconnect/qrcode-modal";import{isAndroid as sm,isMobile as lm}from"react-device-detect";import{createContext as Yu,useContext as Ju,useEffect as Ui,useRef as Qu,useState as ll}from"react";import{jsx as Ku}from"react/jsx-runtime";function sl(e){return Ku("link",{rel:"prefetch",href:e.src})}var x=()=>{throw new Error("You need to wrap your application with the <PrivyProvider> initialized with your app id.")};import{jsx as Zu,jsxs as Xu}from"react/jsx-runtime";var rt="LANDING",cl=Yu({ready:!1,app:null,currentScreen:rt,lastScreen:rt,navigate:x,navigateBack:x,resetNavigation:x,setModalData:x,outerClickRef:null}),dl=e=>{let t=e.appConfig,o=e.authenticated,r=e.visible,[n,i]=ll(e.initialScreen||rt),[a,l]=ll(e.initialScreen||rt);Ui(()=>{o||i(rt)},[o]),Ui(()=>{r||(l(rt),i(rt))},[r]),Ui(()=>{e.initialScreen&&n===rt&&(i(e.initialScreen),l(e.initialScreen))},[e.initialScreen]);let s=e.initialScreen&&n===rt?e.initialScreen:n,c=Qu(null),h={ready:!!t?.id,app:t,data:e.data,setModalData:e.setModalData,currentScreen:s,lastScreen:a,navigate:m=>{l(n),i(m)},navigateBack:()=>{i(a)},resetNavigation:()=>{e.setInitialScreen(null),l(rt),i(rt)},outerClickRef:c};return Xu(cl.Provider,{value:h,children:[(typeof t?.appearance?.logo=="string"||t?.appearance?.logo?.type==="img")&&Zu(sl,{src:typeof t.appearance.logo=="string"?t.appearance.logo:t.appearance.logo.props.src}),e.children]})},v=()=>Ju(cl);import{jsx as Ko,jsxs as em}from"react/jsx-runtime";var Yo=({style:e,...t})=>{let{app:o}=v();return em("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:[Ko("rect",{width:"28",height:"28",rx:"3",fill:o?.appearance.palette.colorScheme==="dark"?"#3396ff":"#141414"}),Ko("g",{clipPath:"url(#clip0_1765_9946)",children:Ko("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"})}),Ko("defs",{children:Ko("clipPath",{id:"clip0_1765_9946",children:Ko("rect",{width:"20",height:"12.2531",fill:"white",transform:"translate(4 8)"})})})]})};import{isAndroid as ul,isDesktop as tm,isMobileOnly as om}from"react-device-detect";var wn=e=>{let t;try{t=new URL(e).hostname}catch{return}for(let[o,r]of Object.entries(ml))if(r.hostname===t)return{walletClientType:o,entry:r}};var ml={metamask:{id:"c57ca95b47569778a828d19178114f4db188b89b763c899ba0be274e97267d96",displayName:"MetaMask",image_id:"5195e9db-94d8-4579-6f11-ef553be95100",hostname:"metamask.io",mobile:{native:"metamask:"}},trust:{id:"4622a2b2d6af1c9844944291e5e7351a6aa24cd7b23099efac1b2fd875da31a0",displayName:"Trust",image_id:"0528ee7e-16d1-4089-21e3-bbfb41933100",hostname:"trustwallet.com",mobile:{universal:"https://link.trustwallet.com"}},safe:{id:"225affb176778569276e484e1b92637ad061b01e13a048b35a9d280c3b58970f",displayName:"Safe",image_id:"a1cb2777-f8f9-49b0-53fd-443d20ee0b00",hostname:"safe.global",mobile:{universal:"https://app.safe.global/"}},rainbow:{id:"1ae92b26df02f0abca6304df07debccd18262fdf5fe82daa81593582dac9a369",displayName:"Rainbow",image_id:"7a33d7f1-3d12-4b5c-f3ee-5cd83cb1b500",hostname:"rainbow.me",mobile:{universal:"https://rnbwapp.com"}},uniswap:{id:"c03dfee351b6fcc421b4494ea33b9d4b92a984f87aa76d1663bb28705e95034a",displayName:"Uniswap",image_id:"bff9cf1f-df19-42ce-f62a-87f04df13c00",hostname:"uniswap.org",mobile:{universal:"https://uniswap.org/app"}},zerion:{id:"ecc4036f814562b41a5268adc86270fba1365471402006302e70169465b7ac18",displayName:"Zerion",image_id:"f216b371-96cf-409a-9d88-296392b85800",hostname:"zerion.io",mobile:{universal:"https://wallet.zerion.io"}},argent:{id:"bc949c5d968ae81310268bf9193f9c9fb7bb4e1283e1284af8f2bd4992535fd6",displayName:"Argent",image_id:"215158d2-614b-49c9-410f-77aa661c3900",hostname:"www.argent.xyz",mobile:{universal:"https://www.argent.xyz/app"}},spot:{id:"74f8092562bd79675e276d8b2062a83601a4106d30202f2d509195e30e19673d",displayName:"Spot",image_id:"1bf33a89-b049-4a1c-d1f6-4dd7419ee400",hostname:"www.spot-wallet.com",mobile:{universal:"https://spot.so"}},omni:{id:"afbd95522f4041c71dd4f1a065f971fd32372865b416f95a0b1db759ae33f2a7",displayName:"Omni",image_id:"2cd67b4c-282b-4809-e7c0-a88cd5116f00",hostname:"omni.app",mobile:{universal:"https://links.omni.app"}},cryptocom:{id:"f2436c67184f158d1beda5df53298ee84abfc367581e4505134b5bcf5f46697d",displayName:"Crypto.com",image_id:"7c5ff577-a68d-49c5-02cd-3d83637b0b00",hostname:"crypto.com",mobile:{universal:"https://wallet.crypto.com"}},blockchain:{id:"84b43e8ddfcd18e5fcb5d21e7277733f9cccef76f7d92c836d0e481db0c70c04",displayName:"Blockchain",image_id:"6f913b80-86c0-46f9-61ca-cc90a1805900",hostname:"www.blockchain.com",mobile:{universal:"https://www.blockchain.com"}},safepal:{id:"0b415a746fb9ee99cce155c2ceca0c6f6061b1dbca2d722b3ba16381d0562150",displayName:"SafePal",image_id:"252753e7-b783-4e03-7f77-d39864530900",hostname:"safepal.com",mobile:{universal:"https://link.safepal.io"}},bitkeep:{id:"38f5d18bd8522c244bdd70cb4a68e0e718865155811c043f052fb9f1c51de662",displayName:"BitKeep",image_id:"3f7075d0-4ab7-4db5-404d-3e4c05e6fe00",hostname:"bitkeep.com",mobile:{universal:"https://bkapp.vip"}},zengo:{id:"9414d5a85c8f4eabc1b5b15ebe0cd399e1a2a9d35643ab0ad22a6e4a32f596f0",displayName:"ZenGo",image_id:"cfc07342-23ea-4f3f-f071-ec9d2cd86b00",hostname:"zengo.com",mobile:{universal:"https://get.zengo.com/"}},"1inch":{id:"c286eebc742a537cd1d6818363e9dc53b21759a1e8e5d9b263d0c03ec7703576",displayName:"1inch",image_id:"52b1da3c-9e72-40ae-5dac-6142addd9c00",hostname:"wallet.1inch.io",mobile:{universal:"https://wallet.1inch.io/wc/"}},binance:{id:"8a0ee50d1f22f6651afcae7eb4253e52a3310b90af5daef78a8c4929a9bb99d4",displayName:"Binance",image_id:"ebac7b39-688c-41e3-7912-a4fefba74600",hostname:"www.binance.com",mobile:{universal:"https://app.binance.com/cedefi"}},exodus:{id:"e9ff15be73584489ca4a66f64d32c4537711797e30b6660dbcb71ea72a42b1f4",displayName:"Exodus",image_id:"4c16cad4-cac9-4643-6726-c696efaf5200",hostname:"exodus.com",mobile:{universal:"https://exodus.com/m"}},mew_wallet:{id:"f5b4eeb6015d66be3f5940a895cbaa49ef3439e518cd771270e6b553b48f31d2",displayName:"MEW wallet",image_id:"e2024511-2c9b-46d7-3111-52df3d241700",hostname:"mewwallet.com",mobile:{universal:"https://mewwallet.com"}},alphawallet:{id:"138f51c8d00ac7b9ac9d8dc75344d096a7dfe370a568aa167eabc0a21830ed98",displayName:"AlphaWallet",image_id:"5b1cddfb-056e-4e78-029a-54de5d70c500",hostname:"alphawallet.com",mobile:{universal:"https://aw.app"}},keyring_pro:{id:"47bb07617af518642f3413a201ec5859faa63acb1dd175ca95085d35d38afb83",displayName:"KEYRING PRO",image_id:"dda0f0fb-34e8-4a57-dcea-b008e7d1ff00",hostname:"keyring.app",mobile:{universal:"https://keyring.app/"}},mathwallet:{id:"7674bb4e353bf52886768a3ddc2a4562ce2f4191c80831291218ebd90f5f5e26",displayName:"MathWallet",image_id:"26a8f588-3231-4411-60ce-5bb6b805a700",hostname:"mathwallet.org",mobile:{universal:"https://www.mathwallet.org"}},unstoppable:{id:"8308656f4548bb81b3508afe355cfbb7f0cb6253d1cc7f998080601f838ecee3",displayName:"Unstoppable",image_id:"4725dda0-4471-4d0f-7adf-6bbe8b929c00",hostname:"unstoppabledomains.com",mobile:{universal:"https://unstoppabledomains.com/mobile"}},obvious:{id:"031f0187049b7f96c6f039d1c9c8138ff7a17fd75d38b34350c7182232cc29aa",displayName:"Obvious",image_id:"61abe2ca-b06d-4a8b-de3e-8326f523e900",hostname:"obvious.technology",mobile:{universal:"https://wallet.obvious.technology"}},ambire:{id:"2c81da3add65899baeac53758a07e652eea46dbb5195b8074772c62a77bbf568",displayName:"Ambire",image_id:"c39b3a16-1a38-4588-f089-cb7aeb584700",hostname:"www.ambire.com",mobile:{universal:"https://mobile.ambire.com"}},internet_money_wallet:{id:"dd43441a6368ec9046540c46c5fdc58f79926d17ce61a176444568ca7c970dcd",displayName:"Internet Money Wallet",image_id:"204b2240-5ce4-4996-6ec4-f06a22726900",hostname:"internetmoney.io",mobile:{universal:"https://internetmoney.io"}},coin98:{id:"2a3c89040ac3b723a1972a33a125b1db11e258a6975d3a61252cd64e6ea5ea01",displayName:"Coin98",image_id:"fc460647-ea95-447a-99f0-1bff8fa4be00",hostname:"coin98.com",mobile:{universal:"https://coin98.services"}},abc_wallet:{id:"b956da9052132e3dabdcd78feb596d5194c99b7345d8c4bd7a47cabdcb69a25f",displayName:"ABC Wallet",image_id:"f9854c79-14ba-4987-42e1-4a82abbf5700",hostname:"myabcwallet.io",mobile:{universal:"https://abcwalletconnect.page.link"}},arculus_wallet:{id:"0e4915107da5b3408b38e248f7a710f4529d54cd30e9d12ff0eb886d45c18e92",displayName:"Arculus Wallet",image_id:"f78dab27-7165-4a3d-fdb1-fcff06c0a700",hostname:"www.getarculus.com",mobile:{universal:"https://gw.arculus.co/app"}},haha:{id:"719bd888109f5e8dd23419b20e749900ce4d2fc6858cf588395f19c82fd036b3",displayName:"HaHa",image_id:"79285c9f-2630-451e-0680-c71b42fb7400",hostname:"www.haha.me",mobile:{universal:"https://haha.me"}},cling_wallet:{id:"942d0e22a7e6b520b0a03abcafc4dbe156a1fc151876e3c4a842f914277278ef",displayName:"Cling Wallet",image_id:"2d8006c3-852b-458a-d6b0-916c5ba76800",hostname:"clingon.io",mobile:{universal:"https://cling.carrieverse.com/apple-app-site-association"}},broearn:{id:"8ff6eccefefa7506339201bc33346f92a43118d6ff7d6e71d499d8187a1c56a2",displayName:"Broearn",image_id:"339b9e9d-e2a7-46eb-4ed3-272321257a00",hostname:"www.broearn.com",mobile:{universal:"https://www.broearn.com/link/wallet/"}},copiosa:{id:"07f99a5d9849bb049d74830012b286f8b238e72b0337933ef22b84947409db80",displayName:"Copiosa",image_id:"cae1be94-9f53-4eba-b915-f6e381d5a500",hostname:"copiosa.io",mobile:{universal:"https://copiosa.io/action/"}},burrito_wallet:{id:"8821748c25de9dbc4f72a691b25a6ddad9d7df12fa23333fd9c8b5fdc14cc819",displayName:"Burrito Wallet",image_id:"7eec7187-3f48-4fda-53bb-b0ad55749a00",hostname:"burritowallet.com",mobile:{universal:"https://burritowallet.com/wc?uri="}},enjin_wallet:{id:"bdc9433ffdaee55d31737d83b931caa1f17e30666f5b8e03eea794bac960eb4a",displayName:"Enjin Wallet",image_id:"add9626b-a5fa-4c12-178c-e5584e6dcd00",hostname:"enjin.io",mobile:{universal:"https://deeplink.wallet.enjin.io/"}},plasma_wallet:{id:"cbe13eb482c76f1fa401ff4c84d9acd0b8bc9af311ca0620a0b192fb28359b4e",displayName:"Plasma Wallet",image_id:"c268e78d-ffb0-4c8b-5cad-04c3add48500",hostname:"plasma-wallet.com",mobile:{universal:"https://plasma-wallet.com"}},avacus:{id:"94f785c0c8fb8c4f38cd9cd704416430bcaa2137f27e1468782d624bcd155a43",displayName:"Avacus",image_id:"a7106965-91cc-4a73-4688-c5c72ae0ed00",hostname:"avacus.cc",mobile:{universal:"https://avacus.app.link"}},bee:{id:"2cca8c1b0bea04ba37dee4017991d348cdb7b826804ab2bd31073254f345b715",displayName:"Bee",image_id:"f90bc33f-f085-40cf-7538-fae5ae84f900",hostname:"www.beewallet.app",mobile:{universal:"https://beewallet.app/wc"}},pitaka:{id:"14e5d957c6eb62d3ee8fc6239703ac2d537d7e3552154836ca0beef775f630bc",displayName:"Pitaka",image_id:"691c0716-5213-4b99-e837-079268313800",hostname:"pitaka.io",mobile:{universal:"https://app.pitaka.io"}},pltwallet:{id:"576c90ceaea34f29ff0104837cf2b2e23d201be43be1433feeb18d375430e1fd",displayName:"PLTwallet",image_id:"a5d9dd15-8cef-42de-8bed-09e01a8b0200",hostname:"pltwallet.io",mobile:{universal:"https://pltwallet.io/"}},minerva:{id:"49bb9d698dbdf2c3d4627d66f99dd9fe90bba1eec84b143f56c64a51473c60bd",displayName:"Minerva",image_id:"b57b2163-1bd8-4f6b-3311-470767e6d200",hostname:"minerva.digital",mobile:{universal:"https://minerva.digital"}},kryptogo:{id:"19418ecfd44963883e4d6abca1adeb2036f3b5ffb9bee0ec61f267a9641f878b",displayName:"KryptoGO",image_id:"3ccbd966-97e8-45a0-1ceb-6141a8978e00",hostname:"kryptogo.com",mobile:{universal:"https://kryptogo.page.link"}},prema:{id:"5b8e33346dfb2a532748c247876db8d596734da8977905a27b947ba1e2cf465b",displayName:"PREMA",image_id:"6487869b-1165-4f30-aa3a-115665be8300",hostname:"premanft.com",mobile:{universal:"https://premanft.com"}},slingshot:{id:"d23de318f0f56038c5edb730a083216ff0cce00c1514e619ab32231cc9ec484b",displayName:"Slingshot",image_id:"10c75467-6612-48ad-b97b-63985e922200",hostname:"slingshot.finance",mobile:{universal:"https://app.slingshot.finance"}},kriptonio:{id:"50df7da345f84e5a79aaf617df5167335a4b6751626df2e8a38f07029b3dde7b",displayName:"Kriptonio",image_id:"363fae03-882a-4d81-a721-6e6f6e9ac500",hostname:"kriptonio.com",mobile:{universal:"https://app.kriptonio.com/mobile"}},timeless:{id:"9751385960bca290c13b443155288f892f62ee920337eda8c5a8874135daaea8",displayName:"Timeless",image_id:"32e89601-0490-42fc-0cc4-8627d62a2000",hostname:"timelesswallet.xyz",mobile:{universal:"https://timelesswallet.xyz"}},secux:{id:"6464873279d46030c0b6b005b33da6be5ed57a752be3ef1f857dc10eaf8028aa",displayName:"SecuX",image_id:"98183be0-3125-45ee-a6b6-fbd47ebefd00",hostname:"secuxtech.com",mobile:{universal:"https://wsweb.secuxtech.com"}},bitizen:{id:"41f20106359ff63cf732adf1f7dc1a157176c9b02fd266b50da6dcc1e9b86071",displayName:"Bitizen",image_id:"75dd1471-77e9-4811-ce57-ec8fc980ec00",hostname:"bitizen.org",mobile:{universal:"https://bitizen.org/wallet"}},blocto:{id:"14e7176536cb3706e221daaa3cfd7b88b7da8c7dfb64d1d241044164802c6bdd",displayName:"Blocto",image_id:"374258d3-c749-4f37-7815-77e61f798c00",hostname:"blocto.io",mobile:{universal:"https://blocto.app"}},safemoon:{id:"a0e04f1086aac204d4ebdd5f985c12ed226cd0006323fd8143715f9324da58d1",displayName:"SafeMoon",image_id:"ea0140c7-787c-43a4-838f-d5ab6a342000",hostname:"safemoon.com",mobile:{universal:"https://safemoon.com/wc"}}},hl=(e,t="md")=>`https://registry.walletconnect.com/v2/logo/${t}/${e}`;function Fi(e){return{name:e.displayName||"",universalLink:e.mobile.universal||"",deepLink:e.mobile.native||""}}function rm(e){let t="mobile";return Object.values(e).filter(o=>!!o[t].universal||!!o[t].native).map(o=>Fi(o))}function fl(){return rm(ml)}function yl(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 gl(e,t){return ul?e:yl(e,Fi(t))}var vl="WALLETCONNECT_DEEPLINK_CHOICE";function pl(e){let t=e.href.split("?")[0];$.put(vl,{...e,href:t})}var xr=(e,t)=>{if(!e||tm){$.del(vl);return}if(ul){pl({name:"Unknown",href:t||"wc:"});return}else if(om){let o=yl(t||"wc:",Fi(e));pl({name:e?.displayName||"",href:o})}};var Pr=class extends Ue{constructor(o,r,n,i,a){super(a||"unknown",n,i);this.connectorType="wallet_connect_v2";this.walletConnectCloudProjectId=o,this.rpcConfig=r,this.proxyProvider=new X,this.createProvider().then(l=>{if(this.provider=l,this.proxyProvider.setWalletProvider(l),this.subscribeListeners(),l.session){if(this.walletProvider.session?.peer.metadata.url){let s=wn(this.walletProvider.session?.peer.metadata.url);this.walletEntry=s?.entry,this.walletClientType=s?.walletClientType||"unknown",xr(this.walletEntry)}this.connected=!0,this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}else this.emit("initialized"),this.initialized=!0})}async connect(o){return o.showPrompt&&await this.promptConnection(),this.getConnectedWallet()}async isConnected(){return this.walletProvider.connected}get walletBranding(){return this.walletEntry?{name:this.walletEntry.displayName,icon:this.walletClientType==="metamask"?we:hl(this.walletEntry.image_id)}:{name:Mi(this.walletProvider.session?.peer.metadata.name||"")||"WalletConnect",icon:this.walletProvider.session?.peer.metadata.icons?.[0]||Yo}}resetConnection(){this.walletProvider&&this.walletProvider.connected&&(this.walletProvider.signer.session=void 0,this.walletEntry=void 0,xr(void 0),this.onDisconnect())}async promptConnection(){if(this.provider)return new Promise((o,r)=>{let n=()=>{r(new qo)};this.onQrModalClosed=n,(async()=>{let a="",l=await Promise.race([this.walletProvider.enable(),Di()]);if(l.length>0&&(a=l[0]),!a||a==="")throw new F("Unable to retrieve address");if(this.walletProvider.session?.peer.metadata.url){let s=wn(this.walletProvider.session?.peer.metadata.url);this.walletEntry=s?.entry,this.walletClientType=s?.walletClientType||"unknown"}this.connected=!0,await this.syncAccounts(l),o()})().catch(a=>{if(a){r(mt(a));return}r(new F("Unknown error during connection"))}).finally(()=>Bi.close())})}disconnect(){this.walletProvider.disconnect().then(()=>this.onDisconnect()).catch(()=>console.warn("Unable to disconnect Wallet Connect provider"))}get walletProvider(){return this.proxyProvider.walletProvider}setWalletProvider(o){this.proxyProvider.setWalletProvider(o)}async createProvider(){let o={};for(let n of this.chains){let i=ot(n.id,this.chains,this.rpcConfig);i&&(o[n.id]=i)}let r=await nm.init({projectId:this.walletConnectCloudProjectId,chains:[this.defaultChain.id],optionalChains:this.chains.map(n=>n.id),optionalEvents:im,optionalMethods:am,rpcMap:o,showQrModal:!1});return r.on("display_uri",n=>{if(sm)window.open(n,"_self");else if(lm&&this.walletEntry){xr(this.walletEntry,n);let a=gl(n,this.walletEntry);window.open(a,"_self","noopener,noreferrer")}else Bi.open(n,()=>{this.onQrModalClosed&&this.onQrModalClosed()},{mobileLinks:fl().map(i=>i.name)})}),r.on("connect",()=>{if(Bi.close(),r.session?.peer.metadata.url){let n=wn(r.session?.peer.metadata.url);this.walletEntry=n?.entry,this.walletClientType=n?.walletClientType||"unknown",xr(this.walletEntry)}}),r}async enableProvider(){return this.walletProvider.connected?Promise.resolve(this.walletProvider.accounts):await this.walletProvider.enable()}};var Hi=e=>{let t=localStorage.getItem("-walletlink:https://www.walletlink.org:Addresses");return t?!!e?.linkedAccounts.filter(r=>r.type=="wallet"&&r.address===wl(t)).length:!1},Tr=class extends cm{constructor(o,r,n,i){super();this.getEthereumProvider=()=>{let o=this.wallets[0],r=this.walletConnectors.find(n=>n.wallets.find(i=>i.address===o?.address));return!o||!r?new X:r.proxyProvider};this.walletConnectCloudProjectId=o,this.rpcConfig=r,this.chains=n,this.defaultChain=i,this.walletConnectors=[],this.initialized=!1,this.storedConnections=this.loadConnectionHistory()}get wallets(){let o=new Set,r=this.walletConnectors.flatMap(i=>i.wallets).sort((i,a)=>i.connectedAt&&a.connectedAt?a.connectedAt-i.connectedAt:0).filter(i=>{let a=`${i.address}${i.walletClientType}${i.connectorType}`;return o.has(a)?!1:(o.add(a),!0)}),n=r.findIndex(i=>i.address===(this.activeWallet?this.activeWallet:"unknown"));return n>=0&&r.unshift(r.splice(n,1)[0]),r}initialize(){this.initialized||($.get(Ri)&&($.getKeys().forEach(o=>{o.startsWith("walletconnect")&&$.del(o)}),$.del(Ri)),Js().then(o=>o.forEach(r=>{switch(r){case"metamask":this.createWalletConnector("injected","metamask");break;case"phantom":this.createWalletConnector("injected","phantom");break;case"unknown":default:break}})),(cn()||$.getKeys().find(o=>o.startsWith("-walletlink")))&&this.createWalletConnector("coinbase_wallet","coinbase_wallet"),this.createWalletConnector("wallet_connect_v2","unknown"),this.initialized=!0)}findWalletConnector(o,r){return o==="wallet_connect_v2"?this.walletConnectors.find(n=>n.connectorType===o)||null:this.walletConnectors.find(n=>n.connectorType===o&&n.walletClientType===r)||null}onInitialized(o){o.wallets.forEach(r=>{let n=this.storedConnections.find(i=>i.address===r.address&&i.connectorType===r.connectorType&&i.walletClientType===r.walletClientType);n&&(r.connectedAt=n.connectedAt)}),this.saveConnectionHistory(),this.emit("walletsUpdated")}onWalletsUpdated(o){o.initialized&&(this.saveConnectionHistory(),this.emit("walletsUpdated"))}addEmbeddedWalletConnector(o,r,n){if(!this.findWalletConnector("embedded","privy")){let a=new un(o,r,this.rpcConfig,this.chains,n.id),l=new yn(a,this.chains,n);this.addWalletConnector(l)}}removeEmbeddedWalletConnector(){let o=this.findWalletConnector("embedded","privy");if(o){let r=this.walletConnectors.indexOf(o);this.walletConnectors.splice(r,1),this.saveConnectionHistory(),this.emit("walletsUpdated")}}async createWalletConnector(o,r){let n=this.findWalletConnector(o,r);if(n)return n instanceof Pr&&n.resetConnection(),n;let a=(()=>{switch(o){case"injected":switch(r){case"phantom":return qe()?new vn(this.chains,this.defaultChain):null;case"metamask":default:return br()?new gn(this.chains,this.defaultChain):null}case"coinbase_wallet":return new fn(this.chains,this.defaultChain);case"wallet_connect_v2":return new Pr(this.walletConnectCloudProjectId,this.rpcConfig,this.chains,this.defaultChain)}})();return a&&this.addWalletConnector(a),a||null}addWalletConnector(o){this.walletConnectors.push(o),o.on("initialized",()=>this.onInitialized(o)),o.on("walletsUpdated",()=>this.onWalletsUpdated(o))}loadConnectionHistory(){let o=a=>a&&typeof a.address=="string"&&typeof a.connectorType=="string"&&typeof a.walletClientType=="string"&&typeof a.connectedAt=="number",r=$.get(Wi);return r&&Array.isArray(r)&&r.map(a=>o(a)).every(Boolean)?r:[]}saveConnectionHistory(){let o=this.wallets.map(r=>({address:r.address,connectorType:r.connectorType,walletClientType:r.walletClientType,connectedAt:r.connectedAt}));$.put(Wi,o)}async activeWalletSign(o){let r=this.wallets,n=r.length>0?r[0]:null;return n?n.sign(o):null}setActiveWallet(o){this.activeWallet=wl(o),this.emit("walletsUpdated")}};function mn(e,t){if(e.length!==t.length)return!1;for(let o=0;o<e.length;o++){let r=e[o],n=t[o];if(r?.address!==n?.address||r?.chainId!==n?.chainId||r?.connectorType!==n?.connectorType||r?.connectedAt!==n?.connectedAt||r?.walletClientType!==n?.walletClientType||r?.isConnected!==n?.isConnected||r?.linked!==n?.linked)return!1}return!0}import{ofetch as dm}from"ofetch";var pm=[en(),tn()],um=e=>{let t=new AbortController;return setTimeout(()=>t.abort(),e),t.signal},Cn=class{constructor(t,o,r){this.appId=t,this.clientAnalyticsId=o.clientAnalyticsId,this.sdkVersion=Si,this.client=o,this.defaults=r,this.fallbackApiUrl=o.fallbackApiUrl,this.baseFetch=dm.create({baseURL:this.defaults.baseURL,retry:3,retryDelay:500,credentials:"include",onRequest:async({request:n,options:i})=>{let a=new Headers(i.headers);a.set("privy-app-id",this.appId),a.set("privy-ca-id",this.clientAnalyticsId||""),a.set("privy-client",`react-auth:${this.sdkVersion}`);let l=!pm.includes(n.toString());if(!a.has("authorization")&&l){let s=await this.client.getAccessToken();s!==null&&a.set("authorization",`Bearer ${s}`)}i.headers=a,i.signal||(i.signal=um(this.defaults.timeout))},onRequestError:({error:n})=>{if(n instanceof DOMException&&n.name==="AbortError")throw new Zr}})}async get(t,o){try{return await this.baseFetch(t,o)}catch(r){throw ee(r)}}async post(t,o,r){try{return await this.baseFetch(t,{method:"POST",...o?{body:o}:{},...r})}catch(n){throw ee(n)}}async delete(t,o){try{return await this.baseFetch(t,{method:"DELETE",...o})}catch(r){throw ee(r)}}};import _r from"js-cookie";function Cl(e){return e instanceof go?"email":e instanceof wo?"sms":e instanceof vo?"siwe":e instanceof Go?"custom_auth":e instanceof Ht?e.meta.provider:null}import*as bl from"jose";var yt=class{static parse(t){try{return new yt(t)}catch{return null}}constructor(t){this.value=t,this._decoded=bl.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 mm=30,bn=class{constructor(){this.authenticateOnce=new $e(async t=>this._authenticate(t)),this.linkOnce=new $e(async t=>this._link(t)),this.refreshOnce=new $e(this._refresh.bind(this)),this.destroyOnce=new $e(this._destroy.bind(this)),this.forkSessionOnce=new $e(this._forkSession.bind(this))}get token(){try{let t=$.get($o);return typeof t=="string"?new yt(t).value:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get refreshToken(){try{let t=$.get(nn);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get forkedToken(){try{let t=$.get(vr);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get mightHaveServerCookies(){try{let t=_r.get(Hs);return t!==void 0&&t.length>0}catch(t){console.error(t)}return!1}hasRefreshCredentials(){return this.mightHaveServerCookies||typeof this.token=="string"&&typeof this.refreshToken=="string"}hasRecoveryCredentials(){return typeof this.forkedToken=="string"}hasActiveToken(){let t=yt.parse(this.token);return t!==null&&!t.isExpired(mm)}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=Cl(t);return a&&this.client&&this.client.createAnalyticsEvent("sdk_authenticate",{method:a,isNewUser:i}),a==="siwe"&&this.client&&this.client.createAnalyticsEvent("sdk_authenticate_siwe",{connectorType:t.meta.connectorType,walletClientType:t.meta.walletClientType}),{user:_t(n),isNewUser:i}}catch(o){throw console.warn("Error authenticating session"),Me(o)}}async _link(t){try{let o=await t.link();return _t(o)}catch(o){throw console.warn("Error linking account"),Me(o)}}async _refresh(){if(!this.api)throw new C("Session has no API instance");if(!this.client)throw new C("Session has no PrivyClient instance");await this.client.getAccessToken({disableAutoRefresh:!0});let t=this.token,o=this.refreshToken,r=this.forkedToken;try{let n;if(t&&o||this.mightHaveServerCookies){let i={};t&&(i.authorization=`Bearer ${t}`);let a=o?{refresh_token:o}:{};n=await this.api.post(en(),a,{headers:i}),r&&this.clearForkedToken()}else if(r)n=await this.api.post(tn(),{refresh_token:r}),this.clearForkedToken();else return null;return this.storeToken(n.token),this.storeRefreshToken(n.refresh_token),_t(n.user)}catch(n){if(n instanceof Ho&&n.privyErrorCode==="missing_or_invalid_token")return console.warn("Unable to refresh tokens - token is missing or no longer valid"),this.destroyLocalState(),null;throw Me(n)}}async _destroy(){try{await this.api?.post(hs(),{refresh_token:this.refreshToken})}catch{console.warn("Error destroying session")}this.destroyLocalState()}async _forkSession(){if(!this.api)throw new C("Session has no API instance");let t=this.refreshToken;try{let o=await this.api.post(fs(),{refresh_token:t});return this.storeToken(o.token),this.storeRefreshToken(o.refresh_token),o.new_session_refresh_token}catch(o){throw Me(o)}}destroyLocalState(){this.storeToken(null),this.storeRefreshToken(null),this.clearForkedToken()}storeToken(t){if(typeof t=="string"){if($.put($o,t),!this.client?.useServerCookies){let o=yt.parse(t)?.expiration;_r.set(Ai,t,{sameSite:"Strict",secure:!0,expires:o?new Date(o*1e3):void 0})}}else $.del($o),_r.remove(Ai)}storeRefreshToken(t){typeof t=="string"?($.put(nn,t),this.client?.useServerCookies||_r.set(ki,t,{sameSite:"Strict",secure:!0,expires:30})):($.del(nn),_r.remove(ki))}clearForkedToken(){$.del(vr)}};var Gi,En,El,Sr=class{constructor(t){us(this,En);this.apiUrl=t.apiUrl||rn,this.fallbackApiUrl=this.apiUrl,this.useServerCookies=!1,this.timeout=t.timeout||Fs,this.appId=t.appId,this.clientAnalyticsId=ms(this,En,El).call(this),Gi||(Gi=new bn),this.session=Gi,this.api=this.generateApi(),this.session.client=this}initializeConnectorManager(t,o,r,n){this.connectors||(this.connectors=new Tr(t,o,r,n))}generateApi(){let t=new Cn(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(),t&&(this.useServerCookies=!0)}authenticate(){if(!this.authFlow)throw new C("No auth flow in progress.");return this.session.authenticate(this.authFlow)}link(){if(!this.authFlow)throw new C("No auth flow in progress.");return this.session.link(this.authFlow)}async logout(){await this.session.destroy(),this.authFlow=void 0}startAuthFlow(t){t.api=this.api,this.authFlow=t}async unlinkEmail(t){try{let o=await this.api.post(ks(),{address:t});return _t(o)}catch(o){throw Me(o)}}async unlinkPhone(t){try{let o=await this.api.post(Rs(),{phoneNumber:t});return _t(o)}catch(o){throw Me(o)}}async unlinkWallet(t){try{let o=await this.api.post(As(),{address:t});return _t(o)}catch(o){throw Me(o)}}async unlinkOAuth(t,o){try{let r=await this.api.post(Ws(),{provider:t,subject:o});return _t(r)}catch(r){throw Me(r)}}async createAnalyticsEvent(t,o,r){if(!(typeof window>"u"))try{this.clientAnalyticsId||console.warn("No client analytics id set, refusing to send analytics event"),await this.api.post(Is(),{event_name:t,client_id:this.clientAnalyticsId,payload:{...o||{},clientTimestamp:r?r.toISOString():new Date().toISOString()}})}catch{}}async signMoonpayOnRampUrl(t){try{return this.api.post(Ns(),t)}catch(o){throw Me(o)}}async getAuthenticatedUser(){return this.session.hasRefreshCredentials()||this.session.hasRecoveryCredentials()?this.session.refresh():null}async getAccessToken(t){return this.session.hasActiveToken()?yt.parse(this.session.token)?.audience!==this.appId?(await this.logout(),null):this.session.token:!t?.disableAutoRefresh&&this.session.hasRefreshCredentials()?(await this.session.refresh(),this.session.token):null}async getServerConfig(){try{let t=await this.api.get(`/api/v1/apps/${this.appId}`,{baseURL:this.fallbackApiUrl});return{id:t.id,name:t.name,verificationKey:t.verification_key,logoUrl:t.logo_url||void 0,accentColor:t.accent_color||void 0,showWalletLoginFirst:t.show_wallet_login_first,allowlistConfig:{errorTitle:t.allowlist_config.error_title,errorDetail:t.allowlist_config.error_detail,errorCtaText:t.allowlist_config.cta_text,errorCtaLink:t.allowlist_config.cta_link},walletAuth:t.wallet_auth,emailAuth:t.email_auth,smsAuth:t.sms_auth,googleOAuth:t.google_oauth,twitterOAuth:t.twitter_oauth,discordOAuth:t.discord_oauth,githubOAuth:t.github_oauth,tiktokOAuth:t.tiktok_oauth,linkedinOAuth:t.linkedin_oauth,appleOAuth:t.apple_oauth,termsAndConditionsUrl:t.terms_and_conditions_url,embeddedWalletConfig:{createOnLogin:t.embedded_wallet_config?.create_on_login,requireUserPasswordOnCreate:t.embedded_wallet_config?.require_user_password_on_create},privacyPolicyUrl:t.privacy_policy_url,customApiUrl:t.custom_api_url,walletConnectCloudProjectId:t.wallet_connect_cloud_project_id,fiatOnRampEnabled:t.fiat_on_ramp_enabled,captchaEnabled:t.captcha_enabled,twitterOAuthOnMobileEnabled:t.twitter_oauth_on_mobile_enabled,createdAt:new Date(t.created_at*1e3),updatedAt:new Date(t.updated_at*1e3)}}catch(t){throw Me(t)}}async getUsdTokenPrice(t){try{return(await this.api.get(`/api/v1/token_price?chainId=${t.id}&tokenSymbol=${t.nativeCurrency.symbol}`)).usd}catch{console.error(`Unable to fetch token price for chain with id ${t.id}`);return}}async forkSession(){return await this.session.forkSession()}};En=new WeakSet,El=function(){if(typeof window>"u")return null;try{let o=$.get(wr);if(typeof o=="string"&&o.length>0)return o}catch{}let t=hm();try{return $.put(wr,t),t}catch{return t}};import"wicg-inert";import{disableBodyScroll as Y1,clearAllBodyScrollLocks as J1}from"body-scroll-lock";import{useRef as Q1,useCallback as Z1}from"react";import{useEffect as Bp}from"react";import X1 from"react-dom";import rs from"styled-components";import{createContext as fm,useContext as ym}from"react";var zi=fm({isNewUserThisSession:!1,isLinking:!1,linkingHint:null,walletConnectionStatus:null,rpcConfig:{rpcUrls:{}},chains:[],clientAnalyticsId:null,nativeTokenSymbolForChainId:x,captchaData:{enabled:!1,ready:!1,execute:x,remove:x,token:void 0,error:void 0},initializeWalletProxy:x,getAuthMeta:x,getAuthFlow:x,closePrivyModal:x,connectWallet:x,initLoginWithWallet:x,loginWithWallet:x,loginWithCode:x,initLoginWithEmail:x,initLoginWithSms:x,resendEmailCode:x,resendSmsCode:x,initLoginWithOAuth:x,loginWithOAuth:x,refreshUser:x,walletProxy:null,createAnalyticsEvent:x,getUsdTokenPrice:x,recoverEmbeddedWallet:x,getFiatOnRampConfig:x,updateWallets:x}),A=()=>ym(zi);import{createContext as gm,useContext as vm}from"react";var nt=gm({ready:!1,authenticated:!1,user:null,walletConnectors:null,connectWallet:x,login:x,linkEmail:x,linkPhone:x,linkWallet:x,linkGoogle:x,linkTwitter:x,linkDiscord:x,linkGithub:x,linkTiktok:x,linkLinkedIn:x,linkApple:x,logout:x,getAccessToken:x,getEthereumProvider:x,getEthersProvider:x,getWeb3jsProvider:x,unlinkEmail:x,unlinkPhone:x,unlinkWallet:x,unlinkGoogle:x,unlinkTwitter:x,unlinkDiscord:x,unlinkGithub:x,unlinkTiktok:x,unlinkLinkedIn:x,unlinkApple:x,setActiveWallet:x,forkSession:x,createWallet:x,signMessage:x,sendTransaction:x,exportWallet:x,setWalletPassword:x}),V=()=>vm(nt);import Qi from"styled-components";import jt,{css as ji}from"styled-components";import Vi from"styled-components";import{Fragment as Cm,jsx as $i,jsxs as bm}from"react/jsx-runtime";var xn=({success:e,fail:t})=>bm(Cm,{children:[$i(Co,{className:e?"success":t?"fail":""}),$i(qi,{className:e?"success":t?"fail":""})]}),Co=Vi.span`
|
|
12
|
+
- https://privy.io`;this.getNonceOnce=new $e(this._getNonceOnce.bind(this)),this.wallet=t}get meta(){return{connectorType:this.wallet.connectorType,walletClientType:this.wallet.walletClientType}}async authenticate(){if(!this.api)throw new C("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign(),r=await this.api.post(vs(),{message:t,signature:o,chainId:this.wallet.chainId,walletClientType:this.wallet.walletClientType,connectorType:this.wallet.connectorType});return{user:r.user,token:r.token,refresh_token:r.refresh_token,is_new_user:r.is_new_user}}catch(t){throw ee(t)}}async link(){if(!this.api)throw new C("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign();return await this.api.post(ws(),{message:t,signature:o,chainId:this.wallet.chainId,walletClientType:this.wallet.walletClientType,connectorType:this.wallet.connectorType})}catch(t){throw ee(t)}}async sign(){if(!this.api)throw new C("Auth flow has no API instance");if(await this.buildSiweMessage(),!this.preparedMessage)throw new C("Could not prepare SIWE message");let t=await this.wallet.sign(this.preparedMessage);return{message:this.preparedMessage,signature:t}}async _getNonceOnce(){if(!this.api)throw new C("Auth flow has no API instance");let t=this.wallet.address;return(await this.api.post(gs(),{address:t})).nonce}async buildSiweMessage(){if(!this.api)throw new C("Auth flow has no API instance");let t=this.wallet.address,o=this.wallet.chainId.replace("eip155:","");return this.nonce||(this.nonce=await this.getNonceOnce.execute()),this.preparedMessage=this.prepareMessage(o,t,this.nonce),this.preparedMessage}prepareMessage(t,o,r){let n=window.location.host,i=window.location.origin,a="By signing, you are proving you own this wallet and logging in. This does not initiate a transaction or cost any fees.",l=new Date().toISOString();return this.createSiweMessage(t,o,n,i,l,r,a)}};var wo=class{constructor(t,o){this.meta={phoneNumber:t,captchaToken:o}}async authenticate(){if(!this.api)throw new C("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new C("phone number and sms code must be set prior to calling authenticate.");try{let t=Ts(),o=await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode});return{user:o.user,token:o.token,refresh_token:o.refresh_token,is_new_user:o.is_new_user}}catch(t){throw ee(t)}}async link(){if(!this.api)throw new C("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new C("phone number and sms code must be set prior to calling authenticate.");try{let t=Ps();return await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode})}catch(t){throw ee(t)}}async sendSmsCode(t,o){if(!this.api)throw new C("Auth flow has no API instance");if(t&&(this.meta.phoneNumber=t),o&&(this.meta.captchaToken=o),!this.meta.phoneNumber)throw new C("phone nNumber must be set when initialzing authentication.");try{let r=xs();return await this.api.post(r,{phoneNumber:this.meta.phoneNumber,token:this.meta.captchaToken})}catch(r){throw ee(r)}}};import{v4 as hm}from"uuid";function Ve(e){return new Date(e*1e3)}function Au(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:Ve(o.verified_at),chainType:"ethereum",chainId:o.chain_id,walletClient:o.wallet_client_type==="privy"?"privy":"unknown",walletClientType:o.wallet_client_type,connectorType:o.connector_type,recoveryMethod:o.recovery_method};t.push(n);break;case"email":let i={address:o.address,type:o.type,verifiedAt:Ve(o.verified_at)};t.push(i);break;case"phone":let a={number:o.phoneNumber,type:o.type,verifiedAt:Ve(o.verified_at)};t.push(a);break;case"google_oauth":let l={subject:o.subject,email:o.email,name:o.name,type:o.type,verifiedAt:Ve(o.verified_at)};t.push(l);break;case"twitter_oauth":let s={subject:o.subject,username:o.username,name:o.name,type:o.type,verifiedAt:Ve(o.verified_at)};t.push(s);break;case"discord_oauth":let c={subject:o.subject,username:o.username,email:o.email,type:o.type,verifiedAt:Ve(o.verified_at)};t.push(c);break;case"github_oauth":let h={subject:o.subject,username:o.username,name:o.name,email:o.email,type:o.type,verifiedAt:Ve(o.verified_at)};t.push(h);break;case"tiktok_oauth":let m={subject:o.subject,username:o.username,type:o.type,verifiedAt:Ve(o.verified_at)};t.push(m);break;case"linkedin_oauth":let w={subject:o.subject,name:o.name,email:o.email,type:o.type,verifiedAt:Ve(o.verified_at)};t.push(w);break;case"apple_oauth":let f={subject:o.subject,email:o.email,type:o.type,verifiedAt:Ve(o.verified_at)};t.push(f);break;case"custom_auth":t.push({type:o.type,customUserId:o.custom_user_id,verifiedAt:Ve(o.verified_at)});break;default:console.warn(`Unrecognized account type: ${r}. Please consider upgrading the Privy SDK.`)}}return t}function ct(e,t){return e.sort((o,r)=>r.verifiedAt.getTime()-o.verifiedAt.getTime()),e.find(o=>o.type===t)}var Z=e=>e?.linkedAccounts.find(t=>t.type==="wallet"&&t.walletClientType==="privy")||null,ku=e=>e.linkedAccounts.filter(t=>t.type==="wallet"),zt=(e,t)=>t==="all-users"&&!Z(e)||t==="users-without-wallets"&&!ku(e)?.length;function _t(e){if(!e)return null;let t=Au(e.linked_accounts),o=ct(t,"wallet"),r=ct(t,"email"),n=ct(t,"phone"),i=ct(t,"google_oauth"),a=ct(t,"twitter_oauth"),l=ct(t,"discord_oauth"),s=ct(t,"github_oauth"),c=ct(t,"tiktok_oauth"),h=ct(t,"linkedin_oauth"),m=ct(t,"apple_oauth");return{id:e.id,createdAt:Ve(e.created_at),linkedAccounts:t,email:r&&{address:r?.address},phone:n&&{number:n?.number},wallet:o&&{address:o.address,chainType:o.chainType,chainId:o.chainId,walletClient:o.walletClient,walletClientType:o.walletClientType,connectorType:o.connectorType,recoveryMethod:o.recoveryMethod},google:i&&{subject:i.subject,email:i.email,name:i.name},twitter:a&&{subject:a.subject,username:a.username,name:a.name},discord:l&&{subject:l.subject,username:l.username,email:l.email},github:s&&{subject:s.subject,username:s.username,name:s.name,email:s.email},tiktok:c&&{subject:c.subject,username:c.username},linkedin:h&&{subject:h.subject,name:h.name},apple:m&&{subject:m.subject,email:m.email}}}import{getAddress as Cl}from"@ethersproject/address";import cm from"eventemitter3";var Ms="1.43.4";var nn="4df5e2316331463a9130964bd6078dfa",Ds="fe9c30fc-3bc5-4064-91e2-6ab5887f8f4d",Us="34357d3c125c2bcf2ce2bc3309d98715",Fs="0x4AAAAAAAJFhr_rDU7HKpyw",an="https://auth.privy.io",Bs=2e4,De=1400,Hs=2500,ki=Ms;var $o="privy:token",Ri="privy-token",sn="privy:refresh_token",Wi="privy-refresh-token",Gs="privy-session",wr="privy:session_transfer_token",Wu="privy:wallet",Cr="privy:caid",ln=e=>`${Wu}:${e}`,Ii="privy:connectors",Ni="privy:connections";var br=12e4,dt=1,Li="0x1",cn=3e4,zs="https://api.moonpay.com/v1",$s="https://api.moonpay.com/v1",Vs="pk_live_hirbpu0cVcLHrjktC9l7fbc9ctjv0SL",qs="pk_test_fqWjXZMSFwloh7orvJsRfjiUHXJqFzI";var Oi=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)}},Mi=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 Iu(){return typeof window<"u"&&window.localStorage?new Mi:new Oi}var $=Iu();import{isPossiblePhoneNumber as Nu}from"libphonenumber-js/min";var dn=()=>{let e=window;if(!e.ethereum)return!1;if(Er(window.ethereum,!0))return!0;if(e.ethereum.providers){for(let t of e.ethereum.providers)if(Er(t,!0))return!0}return!1},xr=()=>{let e=window;if(!e.ethereum)return!1;if(Er(window.ethereum,!1))return!0;if(e.ethereum.providers){for(let t of e.ethereum.providers)if(Er(t,!1))return!0}return!!window.ethereum.isZerion},Er=(e,t)=>{if(!e.isMetaMask)return!1;if(e.isMetaMask&&!t)return!0;if(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.isRainbow||e.isTokenPocket||e.isTokenary||e.isZerion)return!1;if(e.providers){for(let o of e.providers)if(!Er(o))return!1}return!0},qe=()=>!!("phantom"in window&&window?.phantom?.ethereum?.isPhantom),pn=()=>{let e=window;if(!e.ethereum)return!1;if(e.ethereum.isCoinbaseWallet)return!0;if(e.ethereum.providers){for(let t of e.ethereum.providers)if(t.isCoinbaseWallet)return!0}return!1};var js=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,}))$/),Ks=e=>Nu(String(e),"US"),Ys=(e,t)=>{let o=e.slice(0),r=[];for(;o.length;)r.push(o.splice(0,t));return r},$t=(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}`},Di=e=>new Promise(t=>setTimeout(t,e)),Js=(e,t={})=>{let o=t.delayMs||150,r=t.maxAttempts||270;return new Promise(async(n,i)=>{let a=!1,l=0;for(;!a&&l<r;){if(t.abortSignal?.aborted)return;e().then(()=>{a=!0,n()},(...s)=>{a=!0,i(...s)}),l+=1,await Di(o)}a||i(new Error("Exceeded max attempts before resolving function"))})},un=(e,t,o={})=>{let r=new URL(t,e);for(let[n,i]of Object.entries(o))r.searchParams.set(n,i);return r.href};var Ui=e=>e.replace(/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g,""),Tr=e=>typeof e=="string"?e:"0x"+e.toString(16);async function Qs(e=3e3){let t=!1,o=window;return new Promise(r=>{o.ethereum?n():(window.addEventListener("ethereum#initialized",n,{once:!0}),setTimeout(()=>{n()},e));function n(){if(t)return;t=!0,window.removeEventListener("ethereum#initialized",n);let i=[];dn()&&i.push("metamask"),qe()&&i.push("phantom"),o.ethereum&&o.ethereum.isBraveWallet&&i.push("brave"),r(i)}})}function mn(e){return`eip155:${String(Number(e))}`}var ot=(e,t,o)=>{let r=Number(e),n=t.find(a=>a.id===r);if(!n)throw new F(`Unsupported chainId ${e}`,4901);let i;if(o.rpcUrls&&o.rpcUrls[r]?i=o.rpcUrls[r]:n.rpcUrls.infura?.http[0]?i=n.rpcUrls.infura.http[0]+"/"+nn:n.rpcUrls.blast?.http[0]?i=n.rpcUrls.blast.http[0]+"/"+Ds:i=n.rpcUrls.default?.http[0],!i)throw new F(`No RPC url found for ${e}`);return i},Zs=(e,t)=>{let o=Number(e),r=t.find(n=>n.id===o);if(!r)throw new F(`Unsupported chainId ${e}`,4901);return r.blockExplorers?.default.url};import zu from"@coinbase/wallet-sdk";import{jsx as Xs,jsxs as Lu}from"react/jsx-runtime";var pt=({style:e,...t})=>Lu("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:[Xs("rect",{width:"1024",height:"1024",fill:"#0052FF",rx:100,ry:100}),Xs("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M152 512C152 710.823 313.177 872 512 872C710.823 872 872 710.823 872 512C872 313.177 710.823 152 512 152C313.177 152 152 313.177 152 512ZM420 396C406.745 396 396 406.745 396 420V604C396 617.255 406.745 628 420 628H604C617.255 628 628 617.255 628 604V420C628 406.745 617.255 396 604 396H420Z",fill:"white"})]});import{getAddress as ft}from"@ethersproject/address";import{Web3Provider as il}from"@ethersproject/providers";import{default as Hu}from"eventemitter3";import{StaticJsonRpcProvider as tl}from"@ethersproject/providers";import Bu from"eventemitter3";var Ou=["eth_sign","eth_populateTransactionRequest","eth_signTransaction","personal_sign","eth_signTypedData_v4"],el=e=>Ou.includes(e);import{ErrorCode as Mu}from"@ethersproject/logger";var Vo=class extends F{constructor(){super("Wallet timeout");this.type="wallet_error"}},qo=class extends F{constructor(){super("User rejected connection");this.type="wallet_error"}},mt=e=>{if(e instanceof F)return e;if(e?.code&&e?.reason){let t=new xe(e);return e.code===Mu.ACTION_REJECTED&&(t.details=Ae.E4001_USER_REJECTED_REQUEST),t}return e?.code?new xe(e):new F("Unknown connector error",e)},ut=class extends tt{constructor(o,r,n){super(o);this.type="provider_error";this.code=r,this.data=n}},xe=class extends ut{constructor(o){let r=o;super(r.message,r.code,r.data);let n=Object.values(Ae).find(i=>i.eipCode===r.code);this.details=n||Ae.UNKNOWN_ERROR,r.code===-32002&&(r.message?.includes("already pending for origin")?r.message?.includes("wallet_requestPermissions")?this.details=Ae.E32002_CONNECTION_ALREADY_PENDING:this.details=Ae.E32002_REQUEST_ALREADY_PENDING:r.message?.includes("Already processing")&&r.message.includes("eth_requestAccounts")&&(this.details=Ae.E32002_WALLET_LOCKED))}},Du={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}},Uu={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}},Fu={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}},Ae={UNKNOWN_ERROR:{eipCode:0,message:"Unknown error",detail:"Unknown error",retryable:!0},...Fu,...Uu},St={...Du,...Ae};var X=class{constructor(t,o){this.removeListener=(t,o)=>{if(this.walletProvider)try{return this.walletProvider.removeListener(t,o)}catch{console.warn("Unable to remove wallet provider listener")}};this.walletTimeout=(t=new Vo,o=this.rpcTimeoutDuration)=>new Promise((r,n)=>setTimeout(()=>{n(t)},o));this.setWalletProvider=t=>{this.walletProvider&&this._subscriptions.forEach(o=>{this.removeListener(o.eventName,o.listener)}),this.walletProvider=t,this._subscriptions.forEach(o=>{this.walletProvider?.on(o.eventName,o.listener)})};this.walletProvider=t,this.rpcTimeoutDuration=o||br,this._subscriptions=[]}on(t,o){if(this.walletProvider)return this.walletProvider.on(t,o);this._subscriptions.push({eventName:t,listener:o})}async request(t){if(!this.walletProvider)throw new F(`A wallet request of type ${t.method} was made before setting a wallet provider.`);return Promise.race([this.walletProvider.request(t),this.walletTimeout()]).catch(o=>{throw mt(o)})}},Vt=class extends Error{constructor(o,r,n){super(o);this.code=r,this.data=n}},hn=class extends Bu{constructor(o,r,n,i,a=1){super();this.walletProxy=o,this.address=r,this.chainId=a,this.rpcConfig=n,this.chains=i,this.provider=new tl(ot(a,this.chains,n)),this.rpcTimeoutDuration=jo(n,"privy")}async handleSendTransaction(o){if(!o.params||!Array.isArray(o.params))throw new Vt(`Invalid params for ${o.method}`,4200);let r=o.params[0];if(!await At()||!this.address)throw new Vt("Disconnected",4900);return(await rl(r)).transactionHash}handleSwitchEthereumChain(o){if(!o.params||!Array.isArray(o.params))throw new Vt(`Invalid params for ${o.method}`,4200);let r;if(typeof o.params[0]=="string")r=o.params[0];else if("chainId"in o.params[0]&&typeof o.params[0].chainId=="string")r=o.params[0].chainId;else throw new Vt(`Invalid params for ${o.method}`,4200);this.chainId=Number(r),this.provider=new tl(ot(this.chainId,this.chains,this.rpcConfig)),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];return await ol(r)}async handleEstimateGas(o){if(!o.params||!Array.isArray(o.params))throw new Error("Invalid params for eth_estimateGas");delete o.params[0].gasPrice,delete o.params[0].maxFeePerGas,delete o.params[0].maxPriorityFeePerGas;let r={...o.params[0],chainId:Tr(this.chainId)};try{return await this.provider.send("eth_estimateGas",[r])}catch{return delete r.from,await this.provider.send("eth_estimateGas",[r])}}async request(o){switch(console.debug("Embedded1193Provider.request() called with args",o),o.method){case"eth_accounts":case"eth_requestAccounts":return this.address?[this.address]:[];case"eth_chainId":return Tr(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(el(o.method)){let r=await At();if(await nl(),!r||!this.address)throw new Vt("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 Vt("Disconnected",4900)}}else return this.provider.send(o.method,o.params)}async connect(){let o=await At();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}}},ht=class extends X{constructor(o){super(o,o.rpcTimeoutDuration)}},qt=class extends X{constructor(t){super(t,t.rpcTimeoutDuration)}sendAsync(t,o){throw new Error("sendAsync is no longer supported by EIP-1193. Use the request method instead.")}};var Gu=(e,t)=>{switch(t){case"coinbase_wallet":return e.message.includes("addEthereumChain");default:return e.code===4902||e.message?.includes("4902")}},Ue=class extends Hu{constructor(o,r,n,i){super();this.onAccountsChanged=o=>{o.length===0?this.onDisconnect():this.syncAccounts(o)};this.onChainChanged=o=>{this.wallets.forEach(r=>{r.chainId=mn(o),this.walletClientType==="privy"&&$.put(ln(r.address),o)}),this.emit("walletsUpdated")};this.onDisconnect=()=>{this.connected=!1,this.wallets=[],this.emit("walletsUpdated")};this.onConnect=()=>{this.connected=!0,this.syncAccounts()};this.wallets=[],this.walletClientType=o,this.chains=r,this.defaultChain=n,this.rpcConfig=i,this.rpcTimeoutDuration=jo(i,o),this.connected=!1,this.initialized=!1}buildConnectedWallet(o,r){let n=async()=>!!this.wallets.find(i=>ft(i.address)===ft(o));return{address:ft(o),chainId:r,switchChain:async i=>{if(!n)throw new F("Wallet is not currently connected.");let a=this.wallets.find(m=>ft(m.address)===ft(o))?.chainId;if(!a)throw new F("Unable to determine current chainId.");let l,s;if(typeof i=="number"?(l=`0x${i.toString(16)}`,s=i):(l=i,s=Number(i)),a===mn(l))return;let c=this.chains.find(m=>m.id===s);if(!c)throw new F(`Unsupported chainId: ${i}`);let h=async()=>{await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[{chainId:l}]})};try{return await h()}catch(m){if(Gu(m,this.walletClientType))return await this.proxyProvider.request({method:"wallet_addEthereumChain",params:[{chainId:l,chainName:c.name,nativeCurrency:c.nativeCurrency,rpcUrls:[c.rpcUrls.public?.http[0]??""],blockExplorerUrls:[c.blockExplorers?.default.url??""]}]}),h();throw this.walletClientType==="rainbow"&&m.message?.includes("wallet_switchEthereumChain")?new F(`Rainbow does not support the chainId ${r}`):m}},connectedAt:Date.now(),walletClientType:this.walletClientType,connectorType:this.connectorType,isConnected:n,getEthereumProvider:async()=>{if(!await n())throw new F("Wallet is not currently connected.");return this.proxyProvider},getEthersProvider:async()=>{if(!await n())throw new F("Wallet is not currently connected.");return new il(new ht(this.proxyProvider))},getWeb3jsProvider:async()=>{if(!await n())throw new F("Wallet is not currently connected.");return new qt(this.proxyProvider)},sign:async i=>{if(!await n())throw new F("Wallet is not currently connected.");return await this.sign(i)},disconnect:()=>{this.disconnect()}}}async syncAccounts(o){let r=o;if(r===void 0){let c=await this.proxyProvider.request({method:"eth_accounts"});Array.isArray(c)&&(r=c)}if(!r||!Array.isArray(r)||r.length<=0||!r[0])return;let n=r[0],i=ft(n),a=[],l;if(this.walletClientType==="privy"){let c=$.get(ln(i));this.chains.find(h=>h.id===Number(c))||($.del(ln(i)),c=null),l=c||`0x${this.defaultChain.id.toString(16)}`;try{await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[{chainId:l}]})}catch{console.warn(`Unable to switch embedded wallet to chain ID ${l} on initialization`)}}else try{let c=await this.proxyProvider.request({method:"eth_chainId"});if(typeof c=="string")l=c;else if(typeof c=="number")l=`0x${c.toString(16)}`;else throw new Error("Invalid chainId returned from provider")}catch(c){console.warn(`Failed to get chainId from provider, defaulting to ${Li}`,c),l=Li}let s=mn(l);a.find(c=>ft(c.address)===i)||a.push(this.buildConnectedWallet(ft(n),s)),fn(a,this.wallets)||(this.wallets=a,this.emit("walletsUpdated"))}async getConnectedWallet(){let o=await this.proxyProvider.request({method:"eth_accounts"});return this.wallets.sort((r,n)=>n.connectedAt-r.connectedAt).find(r=>o.find(n=>ft(n)===ft(r.address)))||null}async isConnected(){let o=await this.proxyProvider.request({method:"eth_accounts"});return Array.isArray(o)&&o.length>0}async sign(o){return await this.connect({showPrompt:!1}),new il(new ht(this.proxyProvider)).getSigner().signMessage(o)}subscribeListeners(){this.proxyProvider.on("accountsChanged",this.onAccountsChanged),this.proxyProvider.on("chainChanged",this.onChainChanged),this.proxyProvider.on("disconnect",this.onDisconnect),this.proxyProvider.on("connect",this.onConnect)}unsubscribeListeners(){this.proxyProvider.removeListener("accountsChanged",this.onAccountsChanged),this.proxyProvider.removeListener("chainChanged",this.onChainChanged),this.proxyProvider.removeListener("disconnect",this.onDisconnect),this.proxyProvider.removeListener("connect",this.onConnect)}};var $u=e=>{let t=`https://mainnet.infura.io/v3/${nn}`,o=1;return e.makeWeb3Provider(t,o)},yn,gn=class extends Ue{constructor(o,r,n){super("coinbase_wallet",o,r,n);this.connectorType="coinbase_wallet";this.proxyProvider=new X(void 0,this.rpcTimeoutDuration),this.subscribeListeners(),yn||(yn=new zu({appName:"Privy",darkMode:!1,headlessMode:!1,enableMobileWalletLink:!0})),this.proxyProvider.setWalletProvider($u(yn)),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}disconnect(){yn.disconnect()}get walletBranding(){return{name:"Coinbase Wallet",icon:pt}}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new F("Unable to retrieve accounts");this.connected=!0,await this.syncAccounts([o[0]])}catch(o){throw mt(o)}}};import{jsx as al}from"react/jsx-runtime";var Ko=({...e})=>al("svg",{width:"15",height:"15",viewBox:"0 0 15 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e,children:al("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.37126 11.0323C2.37126 12.696 3.90598 13.4421 5.40654 13.4468C8.91753 13.4468 12.8021 11.2897 12.7819 7.67984C12.7673 5.07728 10.3748 2.86167 7.54357 2.88296C4.8495 2.88296 2.21821 4.6411 2.21803 7.03628C2.21803 7.67951 2.58722 8.30178 3.55231 8.37184C2.74763 9.16826 2.37126 10.1225 2.37126 11.0323ZM7.55283 8.68012C8.11562 8.68012 8.57186 8.13217 8.57186 7.45624C8.57186 6.78032 8.11562 6.23237 7.55283 6.23237C6.99003 6.23237 6.53379 6.78032 6.53379 7.45624C6.53379 8.13217 6.99003 8.68012 7.55283 8.68012ZM10.4747 8.68012C11.0375 8.68012 11.4937 8.13217 11.4937 7.45625C11.4937 6.78032 11.0375 6.23237 10.4747 6.23237C9.91186 6.23237 9.45562 6.78032 9.45562 7.45625C9.45562 8.13217 9.91186 8.68012 10.4747 8.68012Z",fill:e.color||"var(--privy-color-foreground-3)"})});var vn=class extends Ue{constructor(o,r,n,i){super("privy",r,n,i);this.connectorType="embedded";this.proxyProvider=o,this.subscribeListeners(),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return await this.isConnected()?(await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[Tr(o?.chainId||"0x1")]}),this.getConnectedWallet()):null}get walletBranding(){return{name:"Privy Wallet",icon:Ko}}disconnect(){this.connected=!1}async promptConnection(){}};import{getAddress as uC}from"@ethersproject/address";import{Web3Provider as hC}from"@ethersproject/providers";import{isMobile as qu}from"react-device-detect";import{jsx as Fe,jsxs as Vu}from"react/jsx-runtime";var we=({style:e,...t})=>Vu("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:[Fe("style",{children:".s1{stroke-linecap:round;stroke-linejoin:round}.s2{fill:#e4761b;stroke:#e4761b}.s3{fill:#f6851b;stroke:#f6851b}"}),Fe("path",{fill:"#e2761b",stroke:"#e2761b",className:"s1",d:"m274.1 35.5-99.5 73.9L193 65.8z"}),Fe("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"}),Fe("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"}),Fe("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"}),Fe("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"}),Fe("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"}),Fe("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"}),Fe("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"}),Fe("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"}),Fe("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"}),Fe("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"}),Fe("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 wn=class extends Ue{constructor(o,r,n){super("metamask",o,r,n);this.connectorType="injected";this.proxyProvider=new X(void 0,this.rpcTimeoutDuration),this.subscribeListeners();let i=window,a=i.ethereum,l=i.ethereum.providers||[];for(let s of l)if(s.isMetaMask){a=s;break}this.proxyProvider.setWalletProvider(a),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}get walletBranding(){return{name:"MetaMask",icon:we}}disconnect(){console.warn("Metamask does not support programmatic disconnect.")}async promptConnection(){try{!qu&&dn()&&await this.proxyProvider.request({method:"wallet_requestPermissions",params:[{eth_accounts:{}}]});let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new F("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw mt(o)}}};import{jsx as sl,jsxs as ju}from"react/jsx-runtime";var je=({style:e,...t})=>ju("svg",{xmlns:"http://www.w3.org/2000/svg",width:"108",height:"108",viewBox:"0 0 108 108",fill:"none",style:{height:"28px",width:"28px",...e},...t,children:[sl("rect",{width:"108",height:"108",rx:"23",fill:"#AB9FF2"}),sl("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M46.5267 69.9229C42.0054 76.8509 34.4292 85.6182 24.348 85.6182C19.5824 85.6182 15 83.6563 15 75.1342C15 53.4305 44.6326 19.8327 72.1268 19.8327C87.768 19.8327 94 30.6846 94 43.0079C94 58.8258 83.7355 76.9122 73.5321 76.9122C70.2939 76.9122 68.7053 75.1342 68.7053 72.314C68.7053 71.5783 68.8275 70.7812 69.0719 69.9229C65.5893 75.8699 58.8685 81.3878 52.5754 81.3878C47.993 81.3878 45.6713 78.5063 45.6713 74.4598C45.6713 72.9884 45.9768 71.4556 46.5267 69.9229ZM83.6761 42.5794C83.6761 46.1704 81.5575 47.9658 79.1875 47.9658C76.7816 47.9658 74.6989 46.1704 74.6989 42.5794C74.6989 38.9885 76.7816 37.1931 79.1875 37.1931C81.5575 37.1931 83.6761 38.9885 83.6761 42.5794ZM70.2103 42.5795C70.2103 46.1704 68.0916 47.9658 65.7216 47.9658C63.3157 47.9658 61.233 46.1704 61.233 42.5795C61.233 38.9885 63.3157 37.1931 65.7216 37.1931C68.0916 37.1931 70.2103 38.9885 70.2103 42.5795Z",fill:"#FFFDF8"})]});var Cn=class extends Ue{constructor(o,r,n){super("phantom",o,r,n);this.connectorType="injected";this.proxyProvider=new X(void 0,this.rpcTimeoutDuration),this.subscribeListeners(),this.proxyProvider.setWalletProvider(window.phantom.ethereum),this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}async connect(o){return o.showPrompt&&await this.promptConnection(),await this.isConnected()?this.getConnectedWallet():null}get walletBranding(){return{name:"Phantom",icon:je}}disconnect(){console.warn("Phantom does not support programmatic disconnect.")}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new F("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw mt(o)}}};import{EthereumProvider as nm,OPTIONAL_EVENTS as im,OPTIONAL_METHODS as am}from"@walletconnect/ethereum-provider";import Hi from"@walletconnect/qrcode-modal";import{isAndroid as sm,isMobile as lm}from"react-device-detect";import{createContext as Yu,useContext as Ju,useEffect as Fi,useRef as Qu,useState as cl}from"react";import{jsx as Ku}from"react/jsx-runtime";function ll(e){return Ku("link",{rel:"prefetch",href:e.src})}var x=()=>{throw new Error("You need to wrap your application with the <PrivyProvider> initialized with your app id.")};import{jsx as Zu,jsxs as Xu}from"react/jsx-runtime";var rt="LANDING",dl=Yu({ready:!1,app:null,currentScreen:rt,lastScreen:rt,navigate:x,navigateBack:x,resetNavigation:x,setModalData:x,outerClickRef:null}),pl=e=>{let t=e.appConfig,o=e.authenticated,r=e.visible,[n,i]=cl(e.initialScreen||rt),[a,l]=cl(e.initialScreen||rt);Fi(()=>{o||i(rt)},[o]),Fi(()=>{r||(l(rt),i(rt))},[r]),Fi(()=>{e.initialScreen&&n===rt&&(i(e.initialScreen),l(e.initialScreen))},[e.initialScreen]);let s=e.initialScreen&&n===rt?e.initialScreen:n,c=Qu(null),h={ready:!!t?.id,app:t,data:e.data,setModalData:e.setModalData,currentScreen:s,lastScreen:a,navigate:m=>{l(n),i(m)},navigateBack:()=>{i(a)},resetNavigation:()=>{e.setInitialScreen(null),l(rt),i(rt)},outerClickRef:c};return Xu(dl.Provider,{value:h,children:[(typeof t?.appearance?.logo=="string"||t?.appearance?.logo?.type==="img")&&Zu(ll,{src:typeof t.appearance.logo=="string"?t.appearance.logo:t.appearance.logo.props.src}),e.children]})},v=()=>Ju(dl);import{jsx as Yo,jsxs as em}from"react/jsx-runtime";var Jo=({style:e,...t})=>{let{app:o}=v();return em("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:[Yo("rect",{width:"28",height:"28",rx:"3",fill:o?.appearance.palette.colorScheme==="dark"?"#3396ff":"#141414"}),Yo("g",{clipPath:"url(#clip0_1765_9946)",children:Yo("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"})}),Yo("defs",{children:Yo("clipPath",{id:"clip0_1765_9946",children:Yo("rect",{width:"20",height:"12.2531",fill:"white",transform:"translate(4 8)"})})})]})};import{isAndroid as ml,isDesktop as tm,isMobileOnly as om}from"react-device-detect";var bn=e=>{let t;try{t=new URL(e).hostname}catch{return}for(let[o,r]of Object.entries(hl))if(t.includes(r.hostname))return{walletClientType:o,entry:r}};var hl={metamask:{id:"c57ca95b47569778a828d19178114f4db188b89b763c899ba0be274e97267d96",displayName:"MetaMask",image_id:"5195e9db-94d8-4579-6f11-ef553be95100",hostname:"metamask.io",mobile:{native:"metamask:"}},trust:{id:"4622a2b2d6af1c9844944291e5e7351a6aa24cd7b23099efac1b2fd875da31a0",displayName:"Trust",image_id:"0528ee7e-16d1-4089-21e3-bbfb41933100",hostname:"trustwallet.com",mobile:{universal:"https://link.trustwallet.com"}},safe:{id:"225affb176778569276e484e1b92637ad061b01e13a048b35a9d280c3b58970f",displayName:"Safe",image_id:"3913df81-63c2-4413-d60b-8ff83cbed500",hostname:"safe.global",mobile:{universal:"https://app.safe.global/"}},rainbow:{id:"1ae92b26df02f0abca6304df07debccd18262fdf5fe82daa81593582dac9a369",displayName:"Rainbow",image_id:"7a33d7f1-3d12-4b5c-f3ee-5cd83cb1b500",hostname:"rainbow.me",mobile:{universal:"https://rnbwapp.com"}},uniswap:{id:"c03dfee351b6fcc421b4494ea33b9d4b92a984f87aa76d1663bb28705e95034a",displayName:"Uniswap",image_id:"bff9cf1f-df19-42ce-f62a-87f04df13c00",hostname:"uniswap.org",mobile:{universal:"https://uniswap.org/app"}},zerion:{id:"ecc4036f814562b41a5268adc86270fba1365471402006302e70169465b7ac18",displayName:"Zerion",image_id:"f216b371-96cf-409a-9d88-296392b85800",hostname:"zerion.io",mobile:{universal:"https://wallet.zerion.io"}},argent:{id:"bc949c5d968ae81310268bf9193f9c9fb7bb4e1283e1284af8f2bd4992535fd6",displayName:"Argent",image_id:"215158d2-614b-49c9-410f-77aa661c3900",hostname:"www.argent.xyz",mobile:{universal:"https://www.argent.xyz/app"}},spot:{id:"74f8092562bd79675e276d8b2062a83601a4106d30202f2d509195e30e19673d",displayName:"Spot",image_id:"1bf33a89-b049-4a1c-d1f6-4dd7419ee400",hostname:"www.spot-wallet.com",mobile:{universal:"https://spot.so"}},omni:{id:"afbd95522f4041c71dd4f1a065f971fd32372865b416f95a0b1db759ae33f2a7",displayName:"Omni",image_id:"2cd67b4c-282b-4809-e7c0-a88cd5116f00",hostname:"omni.app",mobile:{universal:"https://links.omni.app"}},cryptocom:{id:"f2436c67184f158d1beda5df53298ee84abfc367581e4505134b5bcf5f46697d",displayName:"Crypto.com",image_id:"7c5ff577-a68d-49c5-02cd-3d83637b0b00",hostname:"crypto.com",mobile:{universal:"https://wallet.crypto.com"}},blockchain:{id:"84b43e8ddfcd18e5fcb5d21e7277733f9cccef76f7d92c836d0e481db0c70c04",displayName:"Blockchain",image_id:"6f913b80-86c0-46f9-61ca-cc90a1805900",hostname:"www.blockchain.com",mobile:{universal:"https://www.blockchain.com"}},safepal:{id:"0b415a746fb9ee99cce155c2ceca0c6f6061b1dbca2d722b3ba16381d0562150",displayName:"SafePal",image_id:"252753e7-b783-4e03-7f77-d39864530900",hostname:"safepal.com",mobile:{universal:"https://link.safepal.io"}},bitkeep:{id:"38f5d18bd8522c244bdd70cb4a68e0e718865155811c043f052fb9f1c51de662",displayName:"BitKeep",image_id:"3f7075d0-4ab7-4db5-404d-3e4c05e6fe00",hostname:"bitkeep.com",mobile:{universal:"https://bkapp.vip"}},zengo:{id:"9414d5a85c8f4eabc1b5b15ebe0cd399e1a2a9d35643ab0ad22a6e4a32f596f0",displayName:"ZenGo",image_id:"cfc07342-23ea-4f3f-f071-ec9d2cd86b00",hostname:"zengo.com",mobile:{universal:"https://get.zengo.com/"}},"1inch":{id:"c286eebc742a537cd1d6818363e9dc53b21759a1e8e5d9b263d0c03ec7703576",displayName:"1inch",image_id:"52b1da3c-9e72-40ae-5dac-6142addd9c00",hostname:"wallet.1inch.io",mobile:{universal:"https://wallet.1inch.io/wc/"}},binance:{id:"8a0ee50d1f22f6651afcae7eb4253e52a3310b90af5daef78a8c4929a9bb99d4",displayName:"Binance",image_id:"ebac7b39-688c-41e3-7912-a4fefba74600",hostname:"www.binance.com",mobile:{universal:"https://app.binance.com/cedefi"}},exodus:{id:"e9ff15be73584489ca4a66f64d32c4537711797e30b6660dbcb71ea72a42b1f4",displayName:"Exodus",image_id:"4c16cad4-cac9-4643-6726-c696efaf5200",hostname:"exodus.com",mobile:{universal:"https://exodus.com/m"}},mew_wallet:{id:"f5b4eeb6015d66be3f5940a895cbaa49ef3439e518cd771270e6b553b48f31d2",displayName:"MEW wallet",image_id:"e2024511-2c9b-46d7-3111-52df3d241700",hostname:"mewwallet.com",mobile:{universal:"https://mewwallet.com"}},alphawallet:{id:"138f51c8d00ac7b9ac9d8dc75344d096a7dfe370a568aa167eabc0a21830ed98",displayName:"AlphaWallet",image_id:"5b1cddfb-056e-4e78-029a-54de5d70c500",hostname:"alphawallet.com",mobile:{universal:"https://aw.app"}},keyring_pro:{id:"47bb07617af518642f3413a201ec5859faa63acb1dd175ca95085d35d38afb83",displayName:"KEYRING PRO",image_id:"dda0f0fb-34e8-4a57-dcea-b008e7d1ff00",hostname:"keyring.app",mobile:{universal:"https://keyring.app/"}},mathwallet:{id:"7674bb4e353bf52886768a3ddc2a4562ce2f4191c80831291218ebd90f5f5e26",displayName:"MathWallet",image_id:"26a8f588-3231-4411-60ce-5bb6b805a700",hostname:"mathwallet.org",mobile:{universal:"https://www.mathwallet.org"}},unstoppable:{id:"8308656f4548bb81b3508afe355cfbb7f0cb6253d1cc7f998080601f838ecee3",displayName:"Unstoppable",image_id:"4725dda0-4471-4d0f-7adf-6bbe8b929c00",hostname:"unstoppabledomains.com",mobile:{universal:"https://unstoppabledomains.com/mobile"}},obvious:{id:"031f0187049b7f96c6f039d1c9c8138ff7a17fd75d38b34350c7182232cc29aa",displayName:"Obvious",image_id:"61abe2ca-b06d-4a8b-de3e-8326f523e900",hostname:"obvious.technology",mobile:{universal:"https://wallet.obvious.technology"}},ambire:{id:"2c81da3add65899baeac53758a07e652eea46dbb5195b8074772c62a77bbf568",displayName:"Ambire",image_id:"c39b3a16-1a38-4588-f089-cb7aeb584700",hostname:"www.ambire.com",mobile:{universal:"https://mobile.ambire.com"}},internet_money_wallet:{id:"dd43441a6368ec9046540c46c5fdc58f79926d17ce61a176444568ca7c970dcd",displayName:"Internet Money Wallet",image_id:"204b2240-5ce4-4996-6ec4-f06a22726900",hostname:"internetmoney.io",mobile:{universal:"https://internetmoney.io"}},coin98:{id:"2a3c89040ac3b723a1972a33a125b1db11e258a6975d3a61252cd64e6ea5ea01",displayName:"Coin98",image_id:"fc460647-ea95-447a-99f0-1bff8fa4be00",hostname:"coin98.com",mobile:{universal:"https://coin98.services"}},abc_wallet:{id:"b956da9052132e3dabdcd78feb596d5194c99b7345d8c4bd7a47cabdcb69a25f",displayName:"ABC Wallet",image_id:"f9854c79-14ba-4987-42e1-4a82abbf5700",hostname:"myabcwallet.io",mobile:{universal:"https://abcwalletconnect.page.link"}},arculus_wallet:{id:"0e4915107da5b3408b38e248f7a710f4529d54cd30e9d12ff0eb886d45c18e92",displayName:"Arculus Wallet",image_id:"f78dab27-7165-4a3d-fdb1-fcff06c0a700",hostname:"www.getarculus.com",mobile:{universal:"https://gw.arculus.co/app"}},haha:{id:"719bd888109f5e8dd23419b20e749900ce4d2fc6858cf588395f19c82fd036b3",displayName:"HaHa",image_id:"79285c9f-2630-451e-0680-c71b42fb7400",hostname:"www.haha.me",mobile:{universal:"https://haha.me"}},cling_wallet:{id:"942d0e22a7e6b520b0a03abcafc4dbe156a1fc151876e3c4a842f914277278ef",displayName:"Cling Wallet",image_id:"2d8006c3-852b-458a-d6b0-916c5ba76800",hostname:"clingon.io",mobile:{universal:"https://cling.carrieverse.com/apple-app-site-association"}},broearn:{id:"8ff6eccefefa7506339201bc33346f92a43118d6ff7d6e71d499d8187a1c56a2",displayName:"Broearn",image_id:"339b9e9d-e2a7-46eb-4ed3-272321257a00",hostname:"www.broearn.com",mobile:{universal:"https://www.broearn.com/link/wallet/"}},copiosa:{id:"07f99a5d9849bb049d74830012b286f8b238e72b0337933ef22b84947409db80",displayName:"Copiosa",image_id:"cae1be94-9f53-4eba-b915-f6e381d5a500",hostname:"copiosa.io",mobile:{universal:"https://copiosa.io/action/"}},burrito_wallet:{id:"8821748c25de9dbc4f72a691b25a6ddad9d7df12fa23333fd9c8b5fdc14cc819",displayName:"Burrito Wallet",image_id:"7eec7187-3f48-4fda-53bb-b0ad55749a00",hostname:"burritowallet.com",mobile:{universal:"https://burritowallet.com/wc?uri="}},enjin_wallet:{id:"bdc9433ffdaee55d31737d83b931caa1f17e30666f5b8e03eea794bac960eb4a",displayName:"Enjin Wallet",image_id:"add9626b-a5fa-4c12-178c-e5584e6dcd00",hostname:"enjin.io",mobile:{universal:"https://deeplink.wallet.enjin.io/"}},plasma_wallet:{id:"cbe13eb482c76f1fa401ff4c84d9acd0b8bc9af311ca0620a0b192fb28359b4e",displayName:"Plasma Wallet",image_id:"c268e78d-ffb0-4c8b-5cad-04c3add48500",hostname:"plasma-wallet.com",mobile:{universal:"https://plasma-wallet.com"}},avacus:{id:"94f785c0c8fb8c4f38cd9cd704416430bcaa2137f27e1468782d624bcd155a43",displayName:"Avacus",image_id:"a7106965-91cc-4a73-4688-c5c72ae0ed00",hostname:"avacus.cc",mobile:{universal:"https://avacus.app.link"}},bee:{id:"2cca8c1b0bea04ba37dee4017991d348cdb7b826804ab2bd31073254f345b715",displayName:"Bee",image_id:"f90bc33f-f085-40cf-7538-fae5ae84f900",hostname:"www.beewallet.app",mobile:{universal:"https://beewallet.app/wc"}},pitaka:{id:"14e5d957c6eb62d3ee8fc6239703ac2d537d7e3552154836ca0beef775f630bc",displayName:"Pitaka",image_id:"691c0716-5213-4b99-e837-079268313800",hostname:"pitaka.io",mobile:{universal:"https://app.pitaka.io"}},pltwallet:{id:"576c90ceaea34f29ff0104837cf2b2e23d201be43be1433feeb18d375430e1fd",displayName:"PLTwallet",image_id:"a5d9dd15-8cef-42de-8bed-09e01a8b0200",hostname:"pltwallet.io",mobile:{universal:"https://pltwallet.io/"}},minerva:{id:"49bb9d698dbdf2c3d4627d66f99dd9fe90bba1eec84b143f56c64a51473c60bd",displayName:"Minerva",image_id:"b57b2163-1bd8-4f6b-3311-470767e6d200",hostname:"minerva.digital",mobile:{universal:"https://minerva.digital"}},kryptogo:{id:"19418ecfd44963883e4d6abca1adeb2036f3b5ffb9bee0ec61f267a9641f878b",displayName:"KryptoGO",image_id:"3ccbd966-97e8-45a0-1ceb-6141a8978e00",hostname:"kryptogo.com",mobile:{universal:"https://kryptogo.page.link"}},prema:{id:"5b8e33346dfb2a532748c247876db8d596734da8977905a27b947ba1e2cf465b",displayName:"PREMA",image_id:"6487869b-1165-4f30-aa3a-115665be8300",hostname:"premanft.com",mobile:{universal:"https://premanft.com"}},slingshot:{id:"d23de318f0f56038c5edb730a083216ff0cce00c1514e619ab32231cc9ec484b",displayName:"Slingshot",image_id:"10c75467-6612-48ad-b97b-63985e922200",hostname:"slingshot.finance",mobile:{universal:"https://app.slingshot.finance"}},kriptonio:{id:"50df7da345f84e5a79aaf617df5167335a4b6751626df2e8a38f07029b3dde7b",displayName:"Kriptonio",image_id:"363fae03-882a-4d81-a721-6e6f6e9ac500",hostname:"kriptonio.com",mobile:{universal:"https://app.kriptonio.com/mobile"}},timeless:{id:"9751385960bca290c13b443155288f892f62ee920337eda8c5a8874135daaea8",displayName:"Timeless",image_id:"32e89601-0490-42fc-0cc4-8627d62a2000",hostname:"timelesswallet.xyz",mobile:{universal:"https://timelesswallet.xyz"}},secux:{id:"6464873279d46030c0b6b005b33da6be5ed57a752be3ef1f857dc10eaf8028aa",displayName:"SecuX",image_id:"98183be0-3125-45ee-a6b6-fbd47ebefd00",hostname:"secuxtech.com",mobile:{universal:"https://wsweb.secuxtech.com"}},bitizen:{id:"41f20106359ff63cf732adf1f7dc1a157176c9b02fd266b50da6dcc1e9b86071",displayName:"Bitizen",image_id:"75dd1471-77e9-4811-ce57-ec8fc980ec00",hostname:"bitizen.org",mobile:{universal:"https://bitizen.org/wallet"}},blocto:{id:"14e7176536cb3706e221daaa3cfd7b88b7da8c7dfb64d1d241044164802c6bdd",displayName:"Blocto",image_id:"374258d3-c749-4f37-7815-77e61f798c00",hostname:"blocto.io",mobile:{universal:"https://blocto.app"}},safemoon:{id:"a0e04f1086aac204d4ebdd5f985c12ed226cd0006323fd8143715f9324da58d1",displayName:"SafeMoon",image_id:"ea0140c7-787c-43a4-838f-d5ab6a342000",hostname:"safemoon.com",mobile:{universal:"https://safemoon.com/wc"}}},fl=(e,t="md")=>`https://registry.walletconnect.com/v2/logo/${t}/${e}`;function Bi(e){return{name:e.displayName||"",universalLink:e.mobile.universal||"",deepLink:e.mobile.native||""}}function rm(e){let t="mobile";return Object.values(e).filter(o=>!!o[t].universal||!!o[t].native).map(o=>Bi(o))}function yl(){return rm(hl)}function gl(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 vl(e,t){return ml?e:gl(e,Bi(t))}var wl="WALLETCONNECT_DEEPLINK_CHOICE";function ul(e){let t=e.href.split("?")[0];$.put(wl,{...e,href:t})}var Pr=(e,t)=>{if(!e||tm){$.del(wl);return}if(ml){ul({name:"Unknown",href:t||"wc:"});return}else if(om){let o=gl(t||"wc:",Bi(e));ul({name:e?.displayName||"",href:o})}};var _r=class extends Ue{constructor(o,r,n,i,a){super(a||"unknown",n,i,r);this.connectorType="wallet_connect_v2";this.walletConnectCloudProjectId=o,this.rpcConfig=r,this.proxyProvider=new X(void 0,this.rpcTimeoutDuration),this.createProvider().then(l=>{if(this.provider=l,this.proxyProvider.setWalletProvider(l),this.subscribeListeners(),l.session){if(this.walletProvider.session?.peer.metadata.url){let s=bn(this.walletProvider.session?.peer.metadata.url);this.walletEntry=s?.entry,this.walletClientType=s?.walletClientType||"unknown",Pr(this.walletEntry)}this.connected=!0,this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}else this.emit("initialized"),this.initialized=!0})}async connect(o){return o.showPrompt&&await this.promptConnection(),this.getConnectedWallet()}async isConnected(){return this.walletProvider.connected}get walletBranding(){return this.walletEntry?{name:this.walletEntry.displayName,icon:this.walletClientType==="metamask"?we:fl(this.walletEntry.image_id)}:{name:Ui(this.walletProvider.session?.peer.metadata.name||"")||"WalletConnect",icon:this.walletProvider.session?.peer.metadata.icons?.[0]||Jo}}resetConnection(){this.walletProvider&&this.walletProvider.connected&&(this.walletProvider.signer.session=void 0,this.walletEntry=void 0,Pr(void 0),this.onDisconnect())}async promptConnection(){if(this.provider)return new Promise((o,r)=>{let n=()=>{r(new qo)};this.onQrModalClosed=n,(async()=>{let a="",l=await Promise.race([this.walletProvider.enable(),this.proxyProvider.walletTimeout()]);if(l.length>0&&(a=l[0]),!a||a==="")throw new F("Unable to retrieve address");if(this.walletProvider.session?.peer.metadata.url){let s=bn(this.walletProvider.session?.peer.metadata.url);this.walletEntry=s?.entry,this.walletClientType=s?.walletClientType||"unknown",this.proxyProvider.rpcTimeoutDuration=jo(this.rpcConfig,this.walletClientType)}this.connected=!0,await this.syncAccounts(l),o()})().catch(a=>{if(a){r(mt(a));return}r(new F("Unknown error during connection"))}).finally(()=>Hi.close())})}disconnect(){this.walletProvider.disconnect().then(()=>this.onDisconnect()).catch(()=>console.warn("Unable to disconnect Wallet Connect provider"))}get walletProvider(){return this.proxyProvider.walletProvider}setWalletProvider(o){this.proxyProvider.setWalletProvider(o)}async createProvider(){let o={};for(let n of this.chains){let i=ot(n.id,this.chains,this.rpcConfig);i&&(o[n.id]=i)}let r=await nm.init({projectId:this.walletConnectCloudProjectId,chains:[this.defaultChain.id],optionalChains:this.chains.map(n=>n.id),optionalEvents:im,optionalMethods:am,rpcMap:o,showQrModal:!1});return r.on("display_uri",n=>{if(sm)window.open(n,"_self");else if(lm&&this.walletEntry){Pr(this.walletEntry,n);let a=vl(n,this.walletEntry);window.open(a,"_self","noopener,noreferrer")}else Hi.open(n,()=>{this.onQrModalClosed&&this.onQrModalClosed()},{mobileLinks:yl().map(i=>i.name)})}),r.on("connect",()=>{if(Hi.close(),r.session?.peer.metadata.url){let n=bn(r.session?.peer.metadata.url);this.walletEntry=n?.entry,this.walletClientType=n?.walletClientType||"unknown",Pr(this.walletEntry)}}),r}async enableProvider(){return this.walletProvider.connected?Promise.resolve(this.walletProvider.accounts):await this.walletProvider.enable()}};var Gi=e=>{let t=localStorage.getItem("-walletlink:https://www.walletlink.org:Addresses");return t?!!e?.linkedAccounts.filter(r=>r.type=="wallet"&&r.address===Cl(t)).length:!1},jo=(e,t)=>e.rpcTimeouts?e.rpcTimeouts[t]||br:br,Sr=class extends cm{constructor(o,r,n,i){super();this.getEthereumProvider=()=>{let o=this.wallets[0],r=this.walletConnectors.find(n=>n.wallets.find(i=>i.address===o?.address));return!o||!r?new X:r.proxyProvider};this.walletConnectCloudProjectId=o,this.rpcConfig=r,this.chains=n,this.defaultChain=i,this.walletConnectors=[],this.initialized=!1,this.storedConnections=this.loadConnectionHistory()}get wallets(){let o=new Set,r=this.walletConnectors.flatMap(i=>i.wallets).sort((i,a)=>i.connectedAt&&a.connectedAt?a.connectedAt-i.connectedAt:0).filter(i=>{let a=`${i.address}${i.walletClientType}${i.connectorType}`;return o.has(a)?!1:(o.add(a),!0)}),n=r.findIndex(i=>i.address===(this.activeWallet?this.activeWallet:"unknown"));return n>=0&&r.unshift(r.splice(n,1)[0]),r}initialize(){this.initialized||($.get(Ii)&&($.getKeys().forEach(o=>{o.startsWith("walletconnect")&&$.del(o)}),$.del(Ii)),Qs().then(o=>o.forEach(r=>{switch(r){case"metamask":this.createWalletConnector("injected","metamask");break;case"phantom":this.createWalletConnector("injected","phantom");break;case"unknown":default:break}})),(pn()||$.getKeys().find(o=>o.startsWith("-walletlink")))&&this.createWalletConnector("coinbase_wallet","coinbase_wallet"),this.createWalletConnector("wallet_connect_v2","unknown"),this.initialized=!0)}findWalletConnector(o,r){return o==="wallet_connect_v2"?this.walletConnectors.find(n=>n.connectorType===o)||null:this.walletConnectors.find(n=>n.connectorType===o&&n.walletClientType===r)||null}onInitialized(o){o.wallets.forEach(r=>{let n=this.storedConnections.find(i=>i.address===r.address&&i.connectorType===r.connectorType&&i.walletClientType===r.walletClientType);n&&(r.connectedAt=n.connectedAt)}),this.saveConnectionHistory(),this.emit("walletsUpdated")}onWalletsUpdated(o){o.initialized&&(this.saveConnectionHistory(),this.emit("walletsUpdated"))}addEmbeddedWalletConnector(o,r,n){if(!this.findWalletConnector("embedded","privy")){let a=new hn(o,r,this.rpcConfig,this.chains,n.id),l=new vn(a,this.chains,n,this.rpcConfig);this.addWalletConnector(l)}}removeEmbeddedWalletConnector(){let o=this.findWalletConnector("embedded","privy");if(o){let r=this.walletConnectors.indexOf(o);this.walletConnectors.splice(r,1),this.saveConnectionHistory(),this.emit("walletsUpdated")}}async createWalletConnector(o,r){let n=this.findWalletConnector(o,r);if(n)return n instanceof _r&&n.resetConnection(),n;let a=(()=>{switch(o){case"injected":switch(r){case"phantom":return qe()?new Cn(this.chains,this.defaultChain,this.rpcConfig):null;case"metamask":default:return xr()?new wn(this.chains,this.defaultChain,this.rpcConfig):null}case"coinbase_wallet":return new gn(this.chains,this.defaultChain,this.rpcConfig);case"wallet_connect_v2":return new _r(this.walletConnectCloudProjectId,this.rpcConfig,this.chains,this.defaultChain)}})();return a&&this.addWalletConnector(a),a||null}addWalletConnector(o){this.walletConnectors.push(o),o.on("initialized",()=>this.onInitialized(o)),o.on("walletsUpdated",()=>this.onWalletsUpdated(o))}loadConnectionHistory(){let o=a=>a&&typeof a.address=="string"&&typeof a.connectorType=="string"&&typeof a.walletClientType=="string"&&typeof a.connectedAt=="number",r=$.get(Ni);return r&&Array.isArray(r)&&r.map(a=>o(a)).every(Boolean)?r:[]}saveConnectionHistory(){let o=this.wallets.map(r=>({address:r.address,connectorType:r.connectorType,walletClientType:r.walletClientType,connectedAt:r.connectedAt}));$.put(Ni,o)}async activeWalletSign(o){let r=this.wallets,n=r.length>0?r[0]:null;return n?n.sign(o):null}setActiveWallet(o){this.activeWallet=Cl(o),this.emit("walletsUpdated")}};function fn(e,t){if(e.length!==t.length)return!1;for(let o=0;o<e.length;o++){let r=e[o],n=t[o];if(r?.address!==n?.address||r?.chainId!==n?.chainId||r?.connectorType!==n?.connectorType||r?.connectedAt!==n?.connectedAt||r?.walletClientType!==n?.walletClientType||r?.isConnected!==n?.isConnected||r?.linked!==n?.linked)return!1}return!0}import{ofetch as dm}from"ofetch";var pm=[on(),rn()],um=e=>{let t=new AbortController;return setTimeout(()=>t.abort(),e),t.signal},En=class{constructor(t,o,r){this.appId=t,this.clientAnalyticsId=o.clientAnalyticsId,this.sdkVersion=ki,this.client=o,this.defaults=r,this.fallbackApiUrl=o.fallbackApiUrl,this.baseFetch=dm.create({baseURL:this.defaults.baseURL,retry:3,retryDelay:500,credentials:"include",onRequest:async({request:n,options:i})=>{let a=new Headers(i.headers);a.set("privy-app-id",this.appId),a.set("privy-ca-id",this.clientAnalyticsId||""),a.set("privy-client",`react-auth:${this.sdkVersion}`);let l=!pm.includes(n.toString());if(!a.has("authorization")&&l){let s=await this.client.getAccessToken();s!==null&&a.set("authorization",`Bearer ${s}`)}i.headers=a,i.signal||(i.signal=um(this.defaults.timeout))},onRequestError:({error:n})=>{if(n instanceof DOMException&&n.name==="AbortError")throw new en}})}async get(t,o){try{return await this.baseFetch(t,o)}catch(r){throw ee(r)}}async post(t,o,r){try{return await this.baseFetch(t,{method:"POST",...o?{body:o}:{},...r})}catch(n){throw ee(n)}}async delete(t,o){try{return await this.baseFetch(t,{method:"DELETE",...o})}catch(r){throw ee(r)}}};import Ar from"js-cookie";function bl(e){return e instanceof go?"email":e instanceof wo?"sms":e instanceof vo?"siwe":e instanceof Go?"custom_auth":e instanceof Gt?e.meta.provider:null}import*as El from"jose";var yt=class{static parse(t){try{return new yt(t)}catch{return null}}constructor(t){this.value=t,this._decoded=El.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 mm=30,xn=class{constructor(){this.authenticateOnce=new $e(async t=>this._authenticate(t)),this.linkOnce=new $e(async t=>this._link(t)),this.refreshOnce=new $e(this._refresh.bind(this)),this.destroyOnce=new $e(this._destroy.bind(this)),this.forkSessionOnce=new $e(this._forkSession.bind(this))}get token(){try{let t=$.get($o);return typeof t=="string"?new yt(t).value:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get refreshToken(){try{let t=$.get(sn);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get forkedToken(){try{let t=$.get(wr);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get mightHaveServerCookies(){try{let t=Ar.get(Gs);return t!==void 0&&t.length>0}catch(t){console.error(t)}return!1}hasRefreshCredentials(){return this.mightHaveServerCookies||typeof this.token=="string"&&typeof this.refreshToken=="string"}hasRecoveryCredentials(){return typeof this.forkedToken=="string"}hasActiveToken(){let t=yt.parse(this.token);return t!==null&&!t.isExpired(mm)}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=bl(t);return a&&this.client&&this.client.createAnalyticsEvent("sdk_authenticate",{method:a,isNewUser:i}),a==="siwe"&&this.client&&this.client.createAnalyticsEvent("sdk_authenticate_siwe",{connectorType:t.meta.connectorType,walletClientType:t.meta.walletClientType}),{user:_t(n),isNewUser:i}}catch(o){throw console.warn("Error authenticating session"),Me(o)}}async _link(t){try{let o=await t.link();return _t(o)}catch(o){throw console.warn("Error linking account"),Me(o)}}async _refresh(){if(!this.api)throw new C("Session has no API instance");if(!this.client)throw new C("Session has no PrivyClient instance");await this.client.getAccessToken({disableAutoRefresh:!0});let t=this.token,o=this.refreshToken,r=this.forkedToken;try{let n;if(t&&o||this.mightHaveServerCookies){let i={};t&&(i.authorization=`Bearer ${t}`);let a=o?{refresh_token:o}:{};n=await this.api.post(on(),a,{headers:i}),r&&this.clearForkedToken()}else if(r)n=await this.api.post(rn(),{refresh_token:r}),this.clearForkedToken();else return null;return this.storeToken(n.token),this.storeRefreshToken(n.refresh_token),_t(n.user)}catch(n){if(n instanceof Ho&&n.privyErrorCode==="missing_or_invalid_token")return console.warn("Unable to refresh tokens - token is missing or no longer valid"),this.destroyLocalState(),null;throw Me(n)}}async _destroy(){try{await this.api?.post(fs(),{refresh_token:this.refreshToken})}catch{console.warn("Error destroying session")}this.destroyLocalState()}async _forkSession(){if(!this.api)throw new C("Session has no API instance");let t=this.refreshToken;try{let o=await this.api.post(ys(),{refresh_token:t});return this.storeToken(o.token),this.storeRefreshToken(o.refresh_token),o.new_session_refresh_token}catch(o){throw Me(o)}}destroyLocalState(){this.storeToken(null),this.storeRefreshToken(null),this.clearForkedToken()}storeToken(t){if(typeof t=="string"){if($.put($o,t),!this.client?.useServerCookies){let o=yt.parse(t)?.expiration;Ar.set(Ri,t,{sameSite:"Strict",secure:!0,expires:o?new Date(o*1e3):void 0})}}else $.del($o),Ar.remove(Ri)}storeRefreshToken(t){typeof t=="string"?($.put(sn,t),this.client?.useServerCookies||Ar.set(Wi,t,{sameSite:"Strict",secure:!0,expires:30})):($.del(sn),Ar.remove(Wi))}clearForkedToken(){$.del(wr)}};var zi,Tn,xl,kr=class{constructor(t){ms(this,Tn);this.apiUrl=t.apiUrl||an,this.fallbackApiUrl=this.apiUrl,this.useServerCookies=!1,this.timeout=t.timeout||Bs,this.appId=t.appId,this.clientAnalyticsId=hs(this,Tn,xl).call(this),zi||(zi=new xn),this.session=zi,this.api=this.generateApi(),this.session.client=this}initializeConnectorManager(t,o,r,n){this.connectors||(this.connectors=new Sr(t,o,r,n))}generateApi(){let t=new En(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(),t&&(this.useServerCookies=!0)}authenticate(){if(!this.authFlow)throw new C("No auth flow in progress.");return this.session.authenticate(this.authFlow)}link(){if(!this.authFlow)throw new C("No auth flow in progress.");return this.session.link(this.authFlow)}async logout(){await this.session.destroy(),this.authFlow=void 0}startAuthFlow(t){t.api=this.api,this.authFlow=t}async unlinkEmail(t){try{let o=await this.api.post(Rs(),{address:t});return _t(o)}catch(o){throw Me(o)}}async unlinkPhone(t){try{let o=await this.api.post(Ws(),{phoneNumber:t});return _t(o)}catch(o){throw Me(o)}}async unlinkWallet(t){try{let o=await this.api.post(ks(),{address:t});return _t(o)}catch(o){throw Me(o)}}async unlinkOAuth(t,o){try{let r=await this.api.post(Is(),{provider:t,subject:o});return _t(r)}catch(r){throw Me(r)}}async createAnalyticsEvent(t,o,r){if(!(typeof window>"u"))try{this.clientAnalyticsId||console.warn("No client analytics id set, refusing to send analytics event"),await this.api.post(Ns(),{event_name:t,client_id:this.clientAnalyticsId,payload:{...o||{},clientTimestamp:r?r.toISOString():new Date().toISOString()}})}catch{}}async signMoonpayOnRampUrl(t){try{return this.api.post(Ls(),t)}catch(o){throw Me(o)}}async getAuthenticatedUser(){return this.session.hasRefreshCredentials()||this.session.hasRecoveryCredentials()?this.session.refresh():null}async getAccessToken(t){return this.session.hasActiveToken()?yt.parse(this.session.token)?.audience!==this.appId?(await this.logout(),null):this.session.token:!t?.disableAutoRefresh&&this.session.hasRefreshCredentials()?(await this.session.refresh(),this.session.token):null}async getServerConfig(){try{let t=await this.api.get(`/api/v1/apps/${this.appId}`,{baseURL:this.fallbackApiUrl});return{id:t.id,name:t.name,verificationKey:t.verification_key,logoUrl:t.logo_url||void 0,accentColor:t.accent_color||void 0,showWalletLoginFirst:t.show_wallet_login_first,allowlistConfig:{errorTitle:t.allowlist_config.error_title,errorDetail:t.allowlist_config.error_detail,errorCtaText:t.allowlist_config.cta_text,errorCtaLink:t.allowlist_config.cta_link},walletAuth:t.wallet_auth,emailAuth:t.email_auth,smsAuth:t.sms_auth,googleOAuth:t.google_oauth,twitterOAuth:t.twitter_oauth,discordOAuth:t.discord_oauth,githubOAuth:t.github_oauth,tiktokOAuth:t.tiktok_oauth,linkedinOAuth:t.linkedin_oauth,appleOAuth:t.apple_oauth,termsAndConditionsUrl:t.terms_and_conditions_url,embeddedWalletConfig:{createOnLogin:t.embedded_wallet_config?.create_on_login,requireUserPasswordOnCreate:t.embedded_wallet_config?.require_user_password_on_create},privacyPolicyUrl:t.privacy_policy_url,customApiUrl:t.custom_api_url,walletConnectCloudProjectId:t.wallet_connect_cloud_project_id,fiatOnRampEnabled:t.fiat_on_ramp_enabled,captchaEnabled:t.captcha_enabled,twitterOAuthOnMobileEnabled:t.twitter_oauth_on_mobile_enabled,createdAt:new Date(t.created_at*1e3),updatedAt:new Date(t.updated_at*1e3)}}catch(t){throw Me(t)}}async getUsdTokenPrice(t){try{return(await this.api.get(`/api/v1/token_price?chainId=${t.id}&tokenSymbol=${t.nativeCurrency.symbol}`)).usd}catch{console.error(`Unable to fetch token price for chain with id ${t.id}`);return}}async forkSession(){return await this.session.forkSession()}};Tn=new WeakSet,xl=function(){if(typeof window>"u")return null;try{let o=$.get(Cr);if(typeof o=="string"&&o.length>0)return o}catch{}let t=hm();try{return $.put(Cr,t),t}catch{return t}};import"wicg-inert";import{disableBodyScroll as Y1,clearAllBodyScrollLocks as J1}from"body-scroll-lock";import{useRef as Q1,useCallback as Z1}from"react";import{useEffect as Hp}from"react";import X1 from"react-dom";import ns from"styled-components";import{createContext as fm,useContext as ym}from"react";var $i=fm({isNewUserThisSession:!1,isLinking:!1,linkingHint:null,walletConnectionStatus:null,rpcConfig:{rpcUrls:{}},chains:[],clientAnalyticsId:null,nativeTokenSymbolForChainId:x,captchaData:{enabled:!1,ready:!1,execute:x,remove:x,token:void 0,error:void 0},initializeWalletProxy:x,getAuthMeta:x,getAuthFlow:x,closePrivyModal:x,connectWallet:x,initLoginWithWallet:x,loginWithWallet:x,loginWithCode:x,initLoginWithEmail:x,initLoginWithSms:x,resendEmailCode:x,resendSmsCode:x,initLoginWithOAuth:x,loginWithOAuth:x,refreshUser:x,walletProxy:null,createAnalyticsEvent:x,getUsdTokenPrice:x,recoverEmbeddedWallet:x,getFiatOnRampConfig:x,updateWallets:x}),A=()=>ym($i);import{createContext as gm,useContext as vm}from"react";var nt=gm({ready:!1,authenticated:!1,user:null,walletConnectors:null,connectWallet:x,login:x,linkEmail:x,linkPhone:x,linkWallet:x,linkGoogle:x,linkTwitter:x,linkDiscord:x,linkGithub:x,linkTiktok:x,linkLinkedIn:x,linkApple:x,logout:x,getAccessToken:x,getEthereumProvider:x,getEthersProvider:x,getWeb3jsProvider:x,unlinkEmail:x,unlinkPhone:x,unlinkWallet:x,unlinkGoogle:x,unlinkTwitter:x,unlinkDiscord:x,unlinkGithub:x,unlinkTiktok:x,unlinkLinkedIn:x,unlinkApple:x,setActiveWallet:x,forkSession:x,createWallet:x,signMessage:x,sendTransaction:x,exportWallet:x,setWalletPassword:x}),V=()=>vm(nt);import Zi from"styled-components";import Kt,{css as Ki}from"styled-components";import qi from"styled-components";import{Fragment as Cm,jsx as Vi,jsxs as bm}from"react/jsx-runtime";var Pn=({success:e,fail:t})=>bm(Cm,{children:[Vi(Co,{className:e?"success":t?"fail":""}),Vi(ji,{className:e?"success":t?"fail":""})]}),Co=qi.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
|
-
`,qi
|
|
45
|
+
`,ji=qi(Co)`
|
|
46
46
|
&& {
|
|
47
47
|
border-bottom-color: ${e=>e.color??"var(--privy-color-accent)"};
|
|
48
48
|
animation: none;
|
|
49
49
|
opacity: 0.5;
|
|
50
50
|
}
|
|
51
|
-
`,
|
|
51
|
+
`,jt=e=>Vi(wm,{color:e.color||"var(--privy-color-foreground-3)"}),wm=qi(Co)`
|
|
52
52
|
&& {
|
|
53
53
|
height: 0.9rem;
|
|
54
54
|
width: 0.9rem;
|
|
@@ -57,7 +57,7 @@ Resources:
|
|
|
57
57
|
/* Override default Loader to match button transitions */
|
|
58
58
|
transition: border-color 200ms ease;
|
|
59
59
|
}
|
|
60
|
-
`;import{jsx as gt,jsxs as
|
|
60
|
+
`;import{jsx as gt,jsxs as _n}from"react/jsx-runtime";var Sn=Kt.button`
|
|
61
61
|
display: flex;
|
|
62
62
|
flex-direction: row;
|
|
63
63
|
align-items: center;
|
|
@@ -79,20 +79,20 @@ Resources:
|
|
|
79
79
|
color: var(--privy-color-foreground-3);
|
|
80
80
|
cursor: not-allowed;
|
|
81
81
|
}
|
|
82
|
-
`,j=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>gt(
|
|
83
|
-
${e=>e.hideAnimations&&
|
|
82
|
+
`,j=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>gt(Tl,{disabled:t||o,...n,children:t?_n("span",{children:[gt(jt,{}),r?gt("span",{children:r}):null]}):e}),m0=Kt(j)`
|
|
83
|
+
${e=>e.hideAnimations&&Ki`
|
|
84
84
|
&& {
|
|
85
85
|
transition: none;
|
|
86
86
|
}
|
|
87
87
|
`}
|
|
88
|
-
`,
|
|
88
|
+
`,An=({children:e,loading:t,disabled:o,annotation:r,loadingText:n="Loading...",...i})=>_n(Tl,{as:"a",disabled:t||o,...i,children:[!!r&>("div",{style:{position:"absolute",top:"-1.5rem"},children:gt(Em,{children:r})}),t?_n("span",{children:[gt(jt,{}),n?gt("span",{children:n}):null]}):e]}),Em=Kt.span`
|
|
89
89
|
color: var(--privy-color-foreground-3);
|
|
90
90
|
text-align: center;
|
|
91
91
|
font-size: 0.625rem;
|
|
92
92
|
font-style: normal;
|
|
93
93
|
font-weight: 400;
|
|
94
94
|
line-height: 140%; /* 0.875rem */
|
|
95
|
-
`,
|
|
95
|
+
`,Tl=Kt(Sn)`
|
|
96
96
|
position: relative;
|
|
97
97
|
|
|
98
98
|
&& {
|
|
@@ -118,7 +118,7 @@ Resources:
|
|
|
118
118
|
}
|
|
119
119
|
|
|
120
120
|
/* If an anchor tag, :disabled isn't a thing, so manually set state */
|
|
121
|
-
${e=>e.disabled?
|
|
121
|
+
${e=>e.disabled?Ki`
|
|
122
122
|
&&&,
|
|
123
123
|
&&&:hover,
|
|
124
124
|
&&&:active {
|
|
@@ -137,7 +137,7 @@ Resources:
|
|
|
137
137
|
opacity: 1;
|
|
138
138
|
animation: fadein 200ms ease;
|
|
139
139
|
}
|
|
140
|
-
`,
|
|
140
|
+
`,kn=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>gt(xm,{disabled:t||o,...n,children:t?_n("span",{children:[gt(jt,{}),r?gt("span",{children:r}):null]}):e}),xm=Kt(Sn)`
|
|
141
141
|
&& {
|
|
142
142
|
border-width: 1px;
|
|
143
143
|
border-color: ${e=>e.warn?"var(--privy-color-error)":"var(--privy-color-foreground-4)"};
|
|
@@ -166,7 +166,7 @@ Resources:
|
|
|
166
166
|
opacity: 1;
|
|
167
167
|
animation: fadein 200ms ease;
|
|
168
168
|
}
|
|
169
|
-
`,he=
|
|
169
|
+
`,he=Kt.button`
|
|
170
170
|
&& {
|
|
171
171
|
padding: 12px 16px;
|
|
172
172
|
font-weight: 500;
|
|
@@ -179,7 +179,7 @@ Resources:
|
|
|
179
179
|
transition: opacity 200ms ease, background-color 200ms ease, color 200ms ease;
|
|
180
180
|
user-select: none;
|
|
181
181
|
|
|
182
|
-
${e=>e.invisible&&
|
|
182
|
+
${e=>e.invisible&&Ki`
|
|
183
183
|
pointer-events: none;
|
|
184
184
|
`}
|
|
185
185
|
|
|
@@ -197,10 +197,10 @@ Resources:
|
|
|
197
197
|
cursor: not-allowed;
|
|
198
198
|
}
|
|
199
199
|
}
|
|
200
|
-
`,
|
|
200
|
+
`,Rn=Kt.div`
|
|
201
201
|
/* Set to match height of SoftCtaButton to avoid reflow if conditionally rendered */
|
|
202
202
|
height: 44px;
|
|
203
|
-
`,
|
|
203
|
+
`,Wn=Kt.button`
|
|
204
204
|
display: flex;
|
|
205
205
|
flex-direction: row;
|
|
206
206
|
align-items: center;
|
|
@@ -238,7 +238,7 @@ Resources:
|
|
|
238
238
|
color: var(--privy-color-foreground-3);
|
|
239
239
|
cursor: not-allowed;
|
|
240
240
|
}
|
|
241
|
-
`;import
|
|
241
|
+
`;import Tm from"styled-components";var Pl=Tm.span`
|
|
242
242
|
&& {
|
|
243
243
|
width: 82px;
|
|
244
244
|
height: 82px;
|
|
@@ -262,35 +262,35 @@ Resources:
|
|
|
262
262
|
margin-top: auto;
|
|
263
263
|
gap: 16px;
|
|
264
264
|
flex-grow: 100;
|
|
265
|
-
`,
|
|
265
|
+
`,Yi=Ke.div`
|
|
266
266
|
display: flex;
|
|
267
267
|
flex-direction: column;
|
|
268
268
|
align-items: center;
|
|
269
269
|
justify-content: center;
|
|
270
270
|
flex-grow: 1;
|
|
271
271
|
width: 100%;
|
|
272
|
-
`,
|
|
272
|
+
`,_l=Ke.div`
|
|
273
273
|
display: flex;
|
|
274
274
|
flex-direction: column;
|
|
275
275
|
align-items: center;
|
|
276
276
|
width: 100%;
|
|
277
|
-
`,kt=Ke(
|
|
277
|
+
`,kt=Ke(Yi)`
|
|
278
278
|
gap: 16px;
|
|
279
|
-
`,
|
|
279
|
+
`,Ji=Ke.div`
|
|
280
280
|
display: flex;
|
|
281
281
|
flex-direction: column;
|
|
282
282
|
width: 100%;
|
|
283
|
-
`,
|
|
283
|
+
`,Yt=Ke.div`
|
|
284
284
|
display: flex;
|
|
285
285
|
flex-direction: column;
|
|
286
286
|
gap: 8px;
|
|
287
287
|
min-height: 76px;
|
|
288
|
-
`,
|
|
288
|
+
`,w0=Ke.div`
|
|
289
289
|
display: flex;
|
|
290
290
|
flex-direction: column;
|
|
291
291
|
justify-content: space-between;
|
|
292
292
|
height: 100%;
|
|
293
|
-
`,
|
|
293
|
+
`,Sl=Ke.div`
|
|
294
294
|
display: flex;
|
|
295
295
|
flex-direction: column;
|
|
296
296
|
justify-content: flex-start;
|
|
@@ -317,9 +317,9 @@ Resources:
|
|
|
317
317
|
height: 16px;
|
|
318
318
|
`,W=Ke.div`
|
|
319
319
|
height: 12px;
|
|
320
|
-
`,Sl=Ke.div`
|
|
321
|
-
position: relative;
|
|
322
320
|
`,Al=Ke.div`
|
|
321
|
+
position: relative;
|
|
322
|
+
`,kl=Ke.div`
|
|
323
323
|
background-color: var(--privy-color-accent);
|
|
324
324
|
display: flex;
|
|
325
325
|
justify-content: center;
|
|
@@ -327,7 +327,7 @@ Resources:
|
|
|
327
327
|
border-radius: 50%;
|
|
328
328
|
border-color: white;
|
|
329
329
|
border-width: 2px !important;
|
|
330
|
-
`;import
|
|
330
|
+
`;import Rl from"styled-components";import{Fragment as _m,jsx as Qo,jsxs as Wl}from"react/jsx-runtime";var Pm=Rl.div`
|
|
331
331
|
margin-top: 16px;
|
|
332
332
|
font-size: 12px;
|
|
333
333
|
text-align: center;
|
|
@@ -336,7 +336,7 @@ Resources:
|
|
|
336
336
|
&& > a {
|
|
337
337
|
color: var(--privy-color-accent);
|
|
338
338
|
}
|
|
339
|
-
`;function
|
|
339
|
+
`;function In(e){let{legal:{privacyPolicyUrl:t,termsAndConditionsUrl:o}}=e.app,r=!!t,n=!!o,i=r&&n;return!r&&!n?null:Wl(Pm,{children:["By logging in I agree to the"," ",n&&Qo("a",{href:o,target:"_blank",children:i?"Terms":"Terms of Service"}),i&&" & ",r&&Qo("a",{href:t,target:"_blank",children:"Privacy Policy"})]})}var D=({protectedByPrivy:e})=>Qo(J,{children:e?Wl(_m,{children:[Qo(Ko,{className:"hide-on-mobile"}),Qo("span",{className:"hide-on-mobile",children:Qo("a",{href:"https://www.privy.io/",target:"_blank",children:"Protected by Privy"})})]}):null}),J=Rl.div`
|
|
340
340
|
display: flex;
|
|
341
341
|
align-items: center;
|
|
342
342
|
justify-content: center;
|
|
@@ -365,7 +365,7 @@ Resources:
|
|
|
365
365
|
@media all and (display-mode: standalone) {
|
|
366
366
|
padding-bottom: 30px;
|
|
367
367
|
}
|
|
368
|
-
`;import{ArrowLeftIcon as Sm,XMarkIcon as Am}from"@heroicons/react/24/outline";import
|
|
368
|
+
`;import{ArrowLeftIcon as Sm,XMarkIcon as Am}from"@heroicons/react/24/outline";import Nl from"styled-components";import{jsx as it,jsxs as Nm}from"react/jsx-runtime";var Il=()=>it("div",{}),km=({backFn:e})=>it("div",{children:it(Sm,{height:"16px",width:"16px",strokeWidth:2,onClick:e})}),Rm=e=>it("div",{children:it("div",{children:it(Am,{height:"16px",width:"16px",strokeWidth:2,onClick:e.onClose})})});var T=({backFn:e,onClose:t,title:o,closeable:r=!0})=>{let{closePrivyModal:n}=A(),{app:i}=v();return Nm(Wm,{children:[e?it(km,{backFn:e}):it(Il,{}),o&&it(Im,{children:o}),i?.render.inDialog&&r?it(Rm,{onClose:t||(()=>n())}):it(Il,{})]})},Wm=Nl.div`
|
|
369
369
|
padding-top: 16px;
|
|
370
370
|
display: flex;
|
|
371
371
|
align-items: center;
|
|
@@ -422,14 +422,14 @@ Resources:
|
|
|
422
422
|
height: 30px;
|
|
423
423
|
margin-bottom: 10px;
|
|
424
424
|
}
|
|
425
|
-
`,Im=
|
|
425
|
+
`,Im=Nl.div`
|
|
426
426
|
overflow: hidden;
|
|
427
427
|
white-space: nowrap;
|
|
428
428
|
max-width: 100%;
|
|
429
429
|
text-overflow: ellipsis;
|
|
430
430
|
text-align: center;
|
|
431
431
|
color: var(--privy-color-foreground-2);
|
|
432
|
-
`;import{jsx as
|
|
432
|
+
`;import{jsx as Ll}from"react/jsx-runtime";var Ol=({style:e,...t})=>Ll("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:Ll("path",{fillRule:"evenodd",d:"M12 1.5a5.25 5.25 0 00-5.25 5.25v3a3 3 0 00-3 3v6.75a3 3 0 003 3h10.5a3 3 0 003-3v-6.75a3 3 0 00-3-3v-3c0-2.9-2.35-5.25-5.25-5.25zm3.75 8.25v-3a3.75 3.75 0 10-7.5 0v3h7.5z",clipRule:"evenodd"})});import{Fragment as Qi,jsx as Ye,jsxs as Nn}from"react/jsx-runtime";var Ml=()=>{let{navigate:e,app:t}=v(),o=t?.allowlistConfig.errorTitle||"You don't have access to this app",r=t?.allowlistConfig.errorDetail||"Have you been invited?",n=t?.allowlistConfig.errorCtaText||"Try another account";return Nn(Qi,{children:[Ye(T,{}),Ye(_,{}),Nn(Lm,{children:[Ye(Mm,{children:Nn("div",{children:[Ye(Pl,{}),Ye(Ol,{style:{width:"38px",height:"38px",strokeWidth:"1",stroke:"var(--privy-color-accent)",fill:"var(--privy-color-accent)"}})]})}),Nn(Om,{children:[typeof o=="string"?Ye("h3",{children:o}):Ye(Qi,{children:o}),typeof r=="string"?Ye("p",{children:r}):Ye(Qi,{children:r})]}),t?.allowlistConfig.errorCtaLink?Ye(he,{as:"a",href:t.allowlistConfig.errorCtaLink,children:n}):Ye(he,{onClick:()=>{e("LANDING")},children:n})]}),Ye(J,{})]})},Lm=Zi.div`
|
|
433
433
|
display: flex;
|
|
434
434
|
flex-direction: column;
|
|
435
435
|
align-items: center;
|
|
@@ -437,11 +437,11 @@ Resources:
|
|
|
437
437
|
margin-left: 27px;
|
|
438
438
|
margin-right: 27px;
|
|
439
439
|
gap: 24px;
|
|
440
|
-
`,Om=
|
|
440
|
+
`,Om=Zi.div`
|
|
441
441
|
display: flex;
|
|
442
442
|
flex-direction: column;
|
|
443
443
|
gap: 8px;
|
|
444
|
-
`,Mm=
|
|
444
|
+
`,Mm=Zi.div`
|
|
445
445
|
display: flex;
|
|
446
446
|
flex-direction: column;
|
|
447
447
|
justify-content: center;
|
|
@@ -464,9 +464,9 @@ Resources:
|
|
|
464
464
|
left: -19px;
|
|
465
465
|
top: -19px;
|
|
466
466
|
}
|
|
467
|
-
`;import{EnvelopeIcon as Fm,PhoneIcon as Bm}from"@heroicons/react/24/outline";import{useEffect as
|
|
467
|
+
`;import{EnvelopeIcon as Fm,PhoneIcon as Bm}from"@heroicons/react/24/outline";import{useEffect as Fl,useState as Ln}from"react";import{isMobile as Hm}from"react-device-detect";import Wr from"styled-components";import Xi from"styled-components";import{Fragment as Um,jsx as Rr,jsxs as Ul}from"react/jsx-runtime";var vt=({title:e,description:t,children:o,...r})=>Rr(Dl,{...r,children:Ul(Um,{children:[Rr("h3",{children:e}),typeof t=="string"?Rr("p",{children:t}):t,o]})}),Jt=Xi(vt)`
|
|
468
468
|
margin-bottom: 24px;
|
|
469
|
-
`,fe=({title:e,description:t,icon:o,children:r,...n})=>
|
|
469
|
+
`,fe=({title:e,description:t,icon:o,children:r,...n})=>Ul(Dm,{...n,children:[o||null,Rr("h3",{children:e}),typeof t=="string"?Rr("p",{children:t}):t,r]}),Dl=Xi.div`
|
|
470
470
|
display: flex;
|
|
471
471
|
flex-direction: column;
|
|
472
472
|
justify-content: flex-start;
|
|
@@ -486,7 +486,7 @@ Resources:
|
|
|
486
486
|
color: var(--privy-color-foreground-2);
|
|
487
487
|
font-size: 14px;
|
|
488
488
|
}
|
|
489
|
-
`,Dm=
|
|
489
|
+
`,Dm=Xi(Dl)`
|
|
490
490
|
align-items: center;
|
|
491
491
|
text-align: center;
|
|
492
492
|
gap: 16px;
|
|
@@ -494,7 +494,7 @@ Resources:
|
|
|
494
494
|
h3 {
|
|
495
495
|
margin-bottom: 24px;
|
|
496
496
|
}
|
|
497
|
-
`;import{Fragment as
|
|
497
|
+
`;import{Fragment as ea,jsx as pe,jsxs as Qt}from"react/jsx-runtime";var ta=6,Bl=new Array(ta).fill(""),Gm=1400;var Gl=()=>{let{app:e,navigate:t,setModalData:o}=v(),{closePrivyModal:r,resendEmailCode:n,resendSmsCode:i,getAuthMeta:a,loginWithCode:l,updateWallets:s}=A(),{authenticated:c,user:h}=V(),[m,w]=Ln(Bl),[f,b]=Ln(!1),[S,P]=Ln(null),[E,g]=Ln(null),I=a()?.email?0:1,N=e?.render.inDialog?De:0,k=e?.render.inDialog?N-500:0;Fl(()=>{if(c&&f&&h)if(zt(h,e?.embeddedWallets?.createOnLogin)){let H=setTimeout(()=>{o({createWallet:{onSuccess:()=>{},onFailure:Y=>console.error(Y),callAuthOnSuccessOnClose:!0}}),t("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},k);return()=>clearTimeout(H)}else{s();let H=setTimeout(r,N);return()=>clearTimeout(H)}},[c,f,h]),Fl(()=>{if(S&&E===0){let K=setTimeout(()=>{w(Bl),P(null),document.querySelector("input[name=code-0]")?.focus()},Gm);return()=>clearTimeout(K)}},[S]);let O=K=>{let H=K.currentTarget.value.replace(" ","");if(H==="")return;if(isNaN(Number(H))){P("Code should be numeric"),g(1);return}P(null),g(null);let Y=Number(K.currentTarget.name?.charAt(5)),L=[...H||[""]].slice(0,ta-Y),Ie=[...m.slice(0,Y),...L,...m.slice(Y+L.length)];w(Ie);let G=L.length,q=Math.min(Math.max(Y+G,0),ta-1);isNaN(Number(K.currentTarget.value))||document.querySelector(`input[name=code-${q}]`)?.focus(),Ie.every(Ce=>Ce&&!isNaN(+Ce))&&(document.querySelector(`input[name=code-${q}]`)?.blur(),l(Ie.join("")).then(()=>b(!0)).catch(le=>{le?.status===422?P("Invalid or expired verification code"):P("Issue verifying code"),g(0)})),K.preventDefault()},U=K=>{E===1&&(P(null),g(null));let H=[...m.slice(0,K),"",...m.slice(K+1)];w(H),K>0&&document.querySelector(`input[name=code-${K-1}]`)?.focus()},se=I==0?pe(Fm,{color:"var(--privy-color-accent)",strokeWidth:2,height:"48px",width:"48px"}):pe(Bm,{color:"var(--privy-color-accent)",strokeWidth:2,height:"40px",width:"40px"}),B=I==0?Qt("p",{children:["Please check ",pe(Hl,{children:a()?.email})," for an email from privy.io and enter your code below."]}):Qt("p",{children:["Please check ",pe(Hl,{children:a()?.phoneNumber})," for a message from ",e?.name||"Privy"," and enter your code below."]});return Qt(ea,{children:[pe(T,{},"header"),pe(_,{}),Qt(zm,{children:[pe(fe,{title:"Enter confirmation code",description:B,icon:se}),Qt(_l,{children:[Qt($m,{children:[pe(Vm,{fail:!!S,success:f,children:pe("span",{children:S||(f?"Success!":"")})}),pe("div",{children:m.map((K,H)=>pe("input",{name:`code-${H}`,type:"text",value:m[H],onChange:O,onKeyUp:Y=>{Y.key==="Backspace"&&U(H)},inputMode:"numeric",autoFocus:H===0,pattern:"[0-9]",className:`${f?"success":""} ${S?"fail":""}`,autoComplete:Hm?"one-time-code":"off"},H))})]}),pe(qm,{children:I==0?Qt(ea,{children:[pe("span",{children:"Didn't get an email?"}),pe("button",{onClick:n,children:"Resend Code"})]}):Qt(ea,{children:[pe("span",{children:"Didn't get a message?"}),pe("button",{onClick:i,children:"Resend Code"})]})})]})]}),pe(W,{}),pe(D,{protectedByPrivy:!0})]})},zm=Wr.div`
|
|
498
498
|
display: flex;
|
|
499
499
|
flex-direction: column;
|
|
500
500
|
align-items: flex-start;
|
|
@@ -502,7 +502,7 @@ Resources:
|
|
|
502
502
|
margin: auto;
|
|
503
503
|
gap: 16px;
|
|
504
504
|
flex-grow: 1;
|
|
505
|
-
`,$m=
|
|
505
|
+
`,$m=Wr.div`
|
|
506
506
|
display: flex;
|
|
507
507
|
flex-direction: column;
|
|
508
508
|
width: 100%;
|
|
@@ -558,7 +558,7 @@ Resources:
|
|
|
558
558
|
transform: translate(1px, 0px);
|
|
559
559
|
}
|
|
560
560
|
}
|
|
561
|
-
`,Vm=
|
|
561
|
+
`,Vm=Wr.div`
|
|
562
562
|
line-height: 20px;
|
|
563
563
|
height: 20px;
|
|
564
564
|
font-size: 13px;
|
|
@@ -566,7 +566,7 @@ Resources:
|
|
|
566
566
|
display: flex;
|
|
567
567
|
justify-content: flex-end;
|
|
568
568
|
width: 100%;
|
|
569
|
-
`,qm=
|
|
569
|
+
`,qm=Wr.div`
|
|
570
570
|
font-size: 13px;
|
|
571
571
|
color: var(--privy-color-foreground-3);
|
|
572
572
|
display: flex;
|
|
@@ -580,20 +580,20 @@ Resources:
|
|
|
580
580
|
> button {
|
|
581
581
|
text-decoration: underline;
|
|
582
582
|
}
|
|
583
|
-
`,
|
|
583
|
+
`,Hl=Wr.span`
|
|
584
584
|
font-weight: 500;
|
|
585
585
|
word-break: break-all;
|
|
586
|
-
`;import{isMobile as
|
|
586
|
+
`;import{isMobile as oa}from"react-device-detect";import $l from"styled-components";import jm from"styled-components";var zl=jm.span`
|
|
587
587
|
@media (max-width: 440px) {
|
|
588
588
|
display: none;
|
|
589
589
|
}
|
|
590
|
-
`;import{jsx as Je,jsxs as
|
|
590
|
+
`;import{jsx as Je,jsxs as Zo}from"react/jsx-runtime";var Zt=({connectOnly:e})=>{let{navigate:t}=v(),{initLoginWithWallet:o,connectWallet:r}=A();return Zo(Km,{children:[Zo(On,{onClick:()=>{xr()?e?(r("injected","metamask"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("injected","metamask"),t("AWAITING_CONNECTION")):oa?e?(r("wallet_connect_v2","metamask"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("wallet_connect_v2","metamask"),t("AWAITING_CONNECTION")):t("INSTALL_METAMASK_SCREEN")},children:[Je(we,{}),Je("span",{children:"MetaMask"}),Je("span",{children:xr()?"Connect":"Install"})]}),Zo(On,{onClick:()=>{e?(r("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("coinbase_wallet","coinbase_wallet"),t("AWAITING_CONNECTION"))},children:[Je(pt,{}),Zo("span",{children:["Coinbase",Je(zl,{children:" Wallet"})]}),Je("span",{children:"Connect"})]}),(oa||qe())&&Zo(On,{id:"privy-phantom-button",onClick:()=>{qe()?e?(r("injected","phantom"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("injected","phantom"),t("AWAITING_CONNECTION")):t(oa?"PHANTOM_INTERSTITIAL_SCREEN":"INSTALL_PHANTOM_SCREEN")},children:[Je(je,{}),Je("span",{children:"Phantom"}),Je("span",{children:qe()?"Connect":"Install"})]}),Zo(On,{onClick:()=>{e?(r("wallet_connect_v2","unknown"),t("AWAITING_CONNECT_ONLY_CONNECTION")):(o("wallet_connect_v2","unknown"),t("AWAITING_CONNECTION"))},children:[Je(Jo,{}),Je("span",{children:"WalletConnect"}),Je("span",{children:"Connect"})]})]})},Km=$l.div`
|
|
591
591
|
display: flex;
|
|
592
592
|
flex-direction: column;
|
|
593
593
|
align-items: flex-start;
|
|
594
594
|
gap: 8px;
|
|
595
595
|
width: 100%;
|
|
596
|
-
`,
|
|
596
|
+
`,On=$l.button`
|
|
597
597
|
display: flex;
|
|
598
598
|
flex-direction: row;
|
|
599
599
|
align-items: center;
|
|
@@ -646,7 +646,7 @@ Resources:
|
|
|
646
646
|
display: none;
|
|
647
647
|
}
|
|
648
648
|
}
|
|
649
|
-
`;import Ym from"styled-components";import{jsx as
|
|
649
|
+
`;import Ym from"styled-components";import{jsx as Vl,jsxs as Qm}from"react/jsx-runtime";var Xt=()=>{let{navigate:e}=v();return Qm(Jm,{children:[Vl("span",{children:"Don\u2019t have a wallet? "}),Vl("button",{onClick:()=>{e("WALLET_EDUCATION")},children:"Create one now."})]})},Jm=Ym.div`
|
|
650
650
|
font-size: 13px;
|
|
651
651
|
color: var(--privy-color-foreground-3);
|
|
652
652
|
|
|
@@ -657,13 +657,13 @@ Resources:
|
|
|
657
657
|
@media (max-width: 440px) {
|
|
658
658
|
margin-top: 4px;
|
|
659
659
|
}
|
|
660
|
-
`;import{Fragment as Zm,jsx as bo,jsxs as
|
|
660
|
+
`;import{Fragment as Zm,jsx as bo,jsxs as ql}from"react/jsx-runtime";var jl=()=>{let{app:e}=v(),t=`Connect a wallet to ${e?.name}`;return ql(Zm,{children:[bo(T,{},"header"),bo(_,{}),bo(Jt,{title:"Connect your wallet",description:t}),ql(de,{children:[bo(Zt,{connectOnly:!0}),bo(Xt,{})]}),bo(W,{}),bo(D,{protectedByPrivy:!0})]})};import ra from"styled-components";import Xm from"react";import{jsx as Kl}from"react/jsx-runtime";var Mn=()=>{let{app:e}=v(),t=e?.appearance?.logo,o=`${e?.name} logo`,r={maxHeight:"50px"},n="100%",i="auto";return t?typeof t=="string"?Kl("div",{children:Kl("img",{height:n,width:i,src:t,alt:o,style:r})}):t.type==="svg"||t.type==="img"?Xm.cloneElement(t,{height:n,width:i,alt:o,style:r}):(console.warn("`config.appearance.logo` must be a string, or an SVG / IMG element. Nothing will be rendered."),null):null};import{Fragment as rh,jsx as Rt,jsxs as Yl}from"react/jsx-runtime";var Jl=()=>{let{app:e}=v();return Yl(rh,{children:[Rt(T,{},"header"),e?.appearance.logo?Rt(oh,{children:Rt(Mn,{})}):null,Yl(th,{children:[Rt(eh,{children:Rt("h4",{children:"Connect Wallet"})}),Rt(Zt,{connectOnly:!0}),Rt(Xt,{})]}),e&&Rt(In,{app:e}),Rt(D,{protectedByPrivy:!0})]})},eh=ra.div`
|
|
661
661
|
font-weight: 600;
|
|
662
662
|
color: 'var(--privy-color-foreground)';
|
|
663
663
|
display: flex;
|
|
664
664
|
justify-content: center;
|
|
665
665
|
align-items: center;
|
|
666
|
-
`,th=
|
|
666
|
+
`,th=ra.div`
|
|
667
667
|
display: flex;
|
|
668
668
|
flex-direction: column;
|
|
669
669
|
align-items: flex-start;
|
|
@@ -684,7 +684,7 @@ Resources:
|
|
|
684
684
|
border-radius: '0';
|
|
685
685
|
}
|
|
686
686
|
cursor: 'inherit';
|
|
687
|
-
`,oh=
|
|
687
|
+
`,oh=ra.div`
|
|
688
688
|
display: flex;
|
|
689
689
|
flex-direction: column;
|
|
690
690
|
align-items: center;
|
|
@@ -693,7 +693,7 @@ Resources:
|
|
|
693
693
|
@media (max-width: 440px) {
|
|
694
694
|
padding: 10px 10px 20px;
|
|
695
695
|
}
|
|
696
|
-
`;import{useEffect as
|
|
696
|
+
`;import{useEffect as ec,useState as tc}from"react";import ah from"styled-components";import{useEffect as na,useState as Ir}from"react";import{isMobile as ia}from"react-device-detect";import Ql from"styled-components";import{Fragment as Xl,jsx as ye,jsxs as Un}from"react/jsx-runtime";var Dn=2,Nr={metamask:{name:"MetaMask",component:we},phantom:{name:"Phantom",component:je},coinbase_wallet:{name:"Coinbase Wallet",component:pt},wallet_connect:{name:"WalletConnect",component:Jo},embedded:{name:"Privy Wallet",component:Ko}},aa=e=>e?.privyErrorCode==="linked_to_another_user"?St.ERROR_USER_EXISTS:e instanceof xe&&!e.details.default?e.details:e instanceof Vo?St.ERROR_TIMED_OUT:e instanceof qo?St.ERROR_USER_REJECTED_CONNECTION:St.ERROR_WALLET_CONNECTION,Zl=()=>{let[e,t]=Ir(!1),[o,r]=Ir(!1),[n,i]=Ir(void 0),{app:a,navigate:l,navigateBack:s,lastScreen:c,currentScreen:h,setModalData:m}=v(),{getAuthFlow:w,walletConnectionStatus:f,closePrivyModal:b,loginWithWallet:S,updateWallets:P}=A(),{walletConnectors:E}=V(),[g,I]=Ir(0),{user:N}=V(),[k]=Ir(N?.linkedAccounts.length||0),O=ia&&f?.connector?.connectorType==="wallet_connect_v2"||ia&&f?.connector?.connectorType==="coinbase_wallet"||ia&&f?.connector?.connectorType==="injected"&&f?.connector?.walletClientType==="phantom",U=f?.status==="connected",se=f?.status==="switching_to_supported_chain";na(()=>{let z=w();if(z&&O&&U&&!z.preparedMessage){z.buildSiweMessage();return}!z||O||!U||(async()=>{r(!0),i(void 0);try{f?.connector?.connectorType==="wallet_connect_v2"&&f?.connector?.walletClientType==="metamask"&&await Di(2500),await K()}catch(Xe){console.warn("Auto-prompted signature failed",Xe)}finally{r(!1)}})()},[g,U]),na(()=>{if(N&&e){let z;if(zt(N,a?.embeddedWallets?.createOnLogin)){let Xe=a?.render.inDialog?De:0,be=a?.render.inDialog?Xe-500:0;z=setTimeout(()=>{m({createWallet:{onSuccess:()=>{},onFailure:Mo=>console.error(Mo),callAuthOnSuccessOnClose:!0}}),l("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},be)}else P(),z=setTimeout(b,De);return()=>clearTimeout(z)}},[N,e]);let B=z=>{if(z?.privyErrorCode==="allowlist_rejected"){l("ALLOWLIST_REJECTION_SCREEN");return}i(aa(z))};async function K(){try{if(await S(),!a?.render.inDialog)return b();t(!0)}catch(z){B(z)}finally{r(!1)}}na(()=>{f?.connectError&&B(f?.connectError)},[f]);let H=f?.connector?.connectorType||"metamask",Y=f?.connector?.walletClientType||"metamask",L=f?.connector?.walletBranding.name||Nr[Y]?.name||"MetaMask",Ie=f?.connector?.walletBranding.icon||Nr[Y]?.component||(z=>ye(we,{...z})),G;e?G=`Successfully connected with ${L}`:n?G=n.message:se?G="Switching networks":U?G=o&&O?"Signing":"Sign to verify":G=`Waiting for ${L}`;let q="Don\u2019t see your wallet modal? Check your other browser windows.";if(e){let z=N?.linkedAccounts.length||0;k===z?q="Wallet was already linked.":q="You\u2019re good to go!"}else g>=Dn&&n?q="Unable to connect wallet":n?q=n.detail:se?q="Switch your wallet to the requested network.":U&&O?q="Sign the message in your wallet to verify it belongs to you.":Y==="metamask"?q="For the best experience, connect only one wallet at a time.":H==="wallet_connect"?q="Open your mobile wallet app to continue":H==="coinbase_wallet"&&(pn()||(Gi(N)?q="Continue with the Coinbase app. Not the right wallet? Reset your connection below.":q="Open the Coinbase app on your phone to continue."));let Ce=E?.walletConnectors?.find(z=>z.walletClientType==="coinbase_wallet"),le=Y==="coinbase_wallet"&&(Gi(N)||n===St.ERROR_USER_EXISTS);return Un(Xl,{children:[ye(T,{backFn:h===c?void 0:s}),ye(_,{}),Un(nh,{children:[ye(sa,{walletLogo:Ie,success:e,fail:!!n}),Un(Yt,{children:[ye("h3",{children:G}),ye("p",{children:q})]}),ye(Rn,{children:le?ye(he,{onClick:()=>Ce&&Ce?.disconnect(),invisible:e,disabled:e,children:"Use a different wallet"}):n==St.ERROR_USER_EXISTS&&h!==c?ye(he,{onClick:s,children:"Use a different wallet"}):U&&!e&&O?ye(he,{onClick:()=>{r(!0),K()},disabled:o,children:o?"Signing":"Sign with your wallet"}):!e&&n?.retryable&&g<Dn?ye(he,{onClick:()=>{I(g+1),i(void 0),U?(r(!0),K()):f?.connectRetry()},invisible:e||!n?.retryable||g>=Dn,disabled:!e&&(!n?.retryable||g>=Dn),children:"Retry"}):null})]}),ye(J,{})]})},nh=Ql.div`
|
|
697
697
|
display: flex;
|
|
698
698
|
flex-direction: column;
|
|
699
699
|
align-items: center;
|
|
@@ -701,7 +701,7 @@ Resources:
|
|
|
701
701
|
margin-left: 27px;
|
|
702
702
|
margin-right: 27px;
|
|
703
703
|
gap: 24px;
|
|
704
|
-
`,ih=
|
|
704
|
+
`,ih=Ql.div`
|
|
705
705
|
display: flex;
|
|
706
706
|
flex-direction: column;
|
|
707
707
|
justify-content: center;
|
|
@@ -724,7 +724,7 @@ Resources:
|
|
|
724
724
|
left: -19px;
|
|
725
725
|
top: -19px;
|
|
726
726
|
}
|
|
727
|
-
`,
|
|
727
|
+
`,sa=e=>{let t=e.walletLogo;return ye(Xl,{children:ye(ih,{children:Un("div",{children:[ye(Pn,{success:e.success,fail:e.fail}),typeof t=="string"?ye("span",{style:{background:`url('${t}')`,height:"38px",width:"38px",borderRadius:"6px",margin:"auto",backgroundSize:"cover"}}):ye(t,{style:{width:"38px",height:"38px"}})]})})})};import{Fragment as lh,jsx as wt,jsxs as la}from"react/jsx-runtime";var Fn=2,oc=()=>{let{navigateBack:e,lastScreen:t,currentScreen:o}=v(),{walletConnectionStatus:r,closePrivyModal:n}=A(),[i,a]=tc(void 0),[l,s]=tc(0),c=r?.status==="connected",h=r?.status==="switching_to_supported_chain";ec(()=>{if(c){let g=setTimeout(n,De);return()=>clearTimeout(g)}},[c]);let m=g=>{a(aa(g))};ec(()=>{r?.connectError&&m(r?.connectError)},[r]);let w=r?.connector?.connectorType||"metamask",f=r?.connector?.walletClientType||"metamask",b=r?.connector?.walletBranding.name||Nr[f]?.name||"MetaMask",S=r?.connector?.walletBranding.icon||Nr[f]?.component||(g=>wt(we,{...g})),P;c?P=`Successfully connected with ${b}`:i?P=i.message:h?P="Switching networks":P=`Waiting for ${b}`;let E="Don\u2019t see your wallet modal? Check your other browser windows.";return c?E="You\u2019re good to go!":l>=Fn&&i?E="Unable to connect wallet":i?E=i.detail:h?E="Switch your wallet to the requested network.":f==="metamask"?E="For the best experience, connect only one wallet at a time.":w==="wallet_connect_v2"?E="Open your mobile wallet app to continue":w==="coinbase_wallet"&&(E="Open the Coinbase app on your phone to continue."),la(lh,{children:[wt(T,{backFn:o===t?void 0:e}),wt(_,{}),la(sh,{children:[wt(sa,{walletLogo:S,success:c,fail:!!i}),la(Yt,{children:[wt("h3",{children:P}),wt("p",{children:E})]}),wt(Rn,{children:i==St.ERROR_USER_EXISTS?wt(he,{onClick:e,children:"Use a different wallet"}):!c&&i?.retryable&&l<Fn?wt(he,{onClick:()=>{s(l+1),a(void 0),r?.connectRetry()},invisible:c||!i?.retryable||l>=Fn,disabled:!c&&(!i?.retryable||l>=Fn),children:"Retry"}):null})]}),wt(J,{})]})},sh=ah.div`
|
|
728
728
|
display: flex;
|
|
729
729
|
flex-direction: column;
|
|
730
730
|
align-items: center;
|
|
@@ -732,7 +732,7 @@ Resources:
|
|
|
732
732
|
margin-left: 27px;
|
|
733
733
|
margin-right: 27px;
|
|
734
734
|
gap: 24px;
|
|
735
|
-
`;import{XCircleIcon as hh}from"@heroicons/react/24/solid";import{useEffect as fh,useMemo as yh,useState as gh}from"react";import vh from"styled-components";import
|
|
735
|
+
`;import{XCircleIcon as hh}from"@heroicons/react/24/solid";import{useEffect as fh,useMemo as yh,useState as gh}from"react";import vh from"styled-components";import Bn from"styled-components";import{jsx as ca,jsxs as mh}from"react/jsx-runtime";var Xo=({children:e})=>ca(ch,{children:mh(dh,{children:[e,ca(ph,{}),ca(uh,{})]})}),ch=Bn.div`
|
|
736
736
|
height: 100%;
|
|
737
737
|
display: flex;
|
|
738
738
|
justify-content: center;
|
|
@@ -744,14 +744,14 @@ Resources:
|
|
|
744
744
|
@media all and (display-mode: standalone) {
|
|
745
745
|
margin-bottom: 30px;
|
|
746
746
|
}
|
|
747
|
-
`,dh=
|
|
747
|
+
`,dh=Bn.div`
|
|
748
748
|
position: relative;
|
|
749
749
|
height: 140px;
|
|
750
750
|
width: 140px;
|
|
751
751
|
|
|
752
752
|
opacity: 1;
|
|
753
753
|
animation: fadein 200ms ease;
|
|
754
|
-
`,ph=
|
|
754
|
+
`,ph=Bn.div`
|
|
755
755
|
position: absolute;
|
|
756
756
|
top: 0;
|
|
757
757
|
right: 0;
|
|
@@ -764,7 +764,7 @@ Resources:
|
|
|
764
764
|
border: 4px solid var(--privy-color-accent-light);
|
|
765
765
|
border-radius: 50%;
|
|
766
766
|
}
|
|
767
|
-
`,uh=
|
|
767
|
+
`,uh=Bn.div`
|
|
768
768
|
position: absolute;
|
|
769
769
|
top: 0;
|
|
770
770
|
right: 0;
|
|
@@ -788,12 +788,12 @@ Resources:
|
|
|
788
788
|
transform: rotate(360deg);
|
|
789
789
|
}
|
|
790
790
|
}
|
|
791
|
-
`;var
|
|
791
|
+
`;var rc=["error","invalid_request_arguments","wallet_not_on_device","invalid_recovery_pin","insufficient_funds"];var Wt=class extends Error{constructor(o,r){super(r);this.type=o}};function da(e){let t=e.type;return typeof t=="string"&&rc.includes(t)}function er(e){return da(e)&&e.type==="wallet_not_on_device"}function nc(e){return da(e)&&(e.type==="invalid_recovery_pin"||e.type==="invalid_request_arguments")}function ic(e){return!!(da(e)&&e.type==="insufficient_funds"||e.code==="INSUFFICIENT_FUNDS")}function ac(e){return e.code==="UNPREDICTABLE_GAS_LIMIT"}import{Fragment as lc,jsx as eo,jsxs as pa}from"react/jsx-runtime";var sc=1,cc=()=>{let{authenticated:e,user:t,getAccessToken:o}=V(),{closePrivyModal:r,createAnalyticsEvent:n,walletProxy:i}=A(),{navigate:a,data:l,setModalData:s,outerClickRef:c}=v(),h=yh(()=>Date.now(),[]),[m,w]=gh(!1),{onCompleteNavigateTo:f,onFailure:b}=l?.connectWallet,S=E=>{m||(w(!0),b(typeof E=="string"?new Error(E):E))};fh(()=>{let E=Z(t),g;return!e||!E?S("User must be authenticated and have a Privy wallet before it can be connected"):i?((async()=>{let N=await o();if(!N)return S("User must be authenticated and have a Privy wallet before it can be connected");try{await i.connect({accessToken:N,address:E.address});let k=(Date.now()-h)/1e3;f==="EMBEDDED_WALLET_KEY_EXPORT_SCREEN"&&k<sc?g=setTimeout(()=>{a(f)},(sc-k)*1e3):a(f)}catch(k){if(er(k)&&E.recoveryMethod==="privy"){let O=await o();if(!O)return S("User must be authenticated and have a Privy wallet before it can be recovered");try{n("embedded_wallet_pinless_recovery_started",{walletAddress:E.address}),(await i?.recover({address:E.address,accessToken:O}))?.address||S(new Error("Unable to recover wallet")),f?a(f):r({shouldCallAuthOnSuccess:!1}),n("embedded_wallet_recovery_completed",{walletAddress:E.address}),a(f)}catch{S("An error has occurred, please try again.")}}else er(k)?(s({...l,recoverWallet:{privyWallet:E,onCompleteNavigateTo:f,onFailure:b}}),a("EMBEDDED_WALLET_RECOVERY_SCREEN")):S(k)}})(),()=>clearTimeout(g)):void 0},[e,t,i]);let P=()=>{r({shouldCallAuthOnSuccess:!1}),S("User exited before wallet could be connected")};return c&&(c.current=P),pa(lc,{children:[eo(T,{onClose:P}),eo(_,{}),eo(wh,{children:m?pa(lc,{children:[pa(kt,{children:[eo(hh,{fill:"var(--privy-color-error)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),eo(fe,{title:"Something went wrong",description:"We\u2019re on it. Please try again later."})]}),eo(j,{onClick:()=>r({shouldCallAuthOnSuccess:!1}),children:"Close"})]}):eo(Xo,{})}),eo(W,{})]})},wh=vh.div`
|
|
792
792
|
display: flex;
|
|
793
793
|
height: 100%;
|
|
794
794
|
flex-direction: column;
|
|
795
795
|
flex-grow: 1;
|
|
796
|
-
`;import{CheckCircleIcon as Ch}from"@heroicons/react/24/solid";import{useEffect as bh}from"react";import{Fragment as Eh,jsx as
|
|
796
|
+
`;import{CheckCircleIcon as Ch}from"@heroicons/react/24/solid";import{useEffect as bh}from"react";import{Fragment as Eh,jsx as tr,jsxs as dc}from"react/jsx-runtime";var pc=()=>{let{user:e}=V(),{closePrivyModal:t,isNewUserThisSession:o,updateWallets:r}=A(),{app:n,data:i,outerClickRef:a}=v(),{onSuccess:l,onFailure:s,callAuthOnSuccessOnClose:c}=i.createWallet,h=()=>{let m=Z(e);m?(r(),l(m),t({shouldCallAuthOnSuccess:c})):s(new Error("Failed to create wallet"))};return bh(()=>{let m=setTimeout(h,Hs);return()=>clearTimeout(m)},[]),a&&(a.current=h),dc(Eh,{children:[tr(T,{onClose:h}),tr(_,{}),dc(kt,{children:[tr(Ch,{fill:"var(--privy-color-accent)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),tr(fe,{title:o?`Welcome${n?.name?` to ${n?.name}`:""}`:"All set!",description:o?"You\u2019ve successfully created an account.":"Your account is secured."})]}),tr(W,{}),tr(D,{protectedByPrivy:!0})]})};import{useEffect as fc,useRef as Th,useState as ua}from"react";import It from"styled-components";import{jsx as ke,jsxs as xh}from"react/jsx-runtime";var uc=({style:e,...t})=>xh("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:[ke("rect",{x:"214.681",y:"51.6852",width:"40",height:"40",rx:"20",fill:"var(--privy-color-background-2)"}),ke("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)"}),ke("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"}),ke("rect",{x:"65.6426",y:"52.6852",width:"38",height:"38",rx:"19",stroke:"var(--privy-color-background-2","stroke-width":"2"}),ke("path",{d:"M103.162 71.6852H213.662",stroke:"var(--privy-color-background-2","stroke-width":"2","stroke-dasharray":"4 4"}),ke("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"}),ke("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)"}),ke("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)"}),ke("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"}),ke("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"}),ke("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"}),ke("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"}),ke("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"}),ke("path",{d:"M35.544 42.4694C37.1464 42.4694 38.4454 41.1746 38.4454 39.5773C38.4454 37.98 37.1464 36.6852 35.544 36.6852C33.9416 36.6852 32.6426 37.98 32.6426 39.5773C32.6426 41.1746 33.9416 42.4694 35.544 42.4694Z",fill:"var(--privy-color-accent-light"})]});import{Fragment as Lh,jsx as te,jsxs as Ct}from"react/jsx-runtime";var yc=()=>{let[e,t]=ua(null),{authenticated:o,user:r,getAccessToken:n}=V(),{closePrivyModal:i,createAnalyticsEvent:a,clientAnalyticsId:l}=A(),{data:s,outerClickRef:c}=v(),h=Z(r)?.address,{onFailure:m,onSuccess:w,origin:f,appId:b}=s.keyExport,S=E=>{i({shouldCallAuthOnSuccess:!1}),m(typeof E=="string"?new Error(E):E)},P=()=>{i({shouldCallAuthOnSuccess:!1}),w(),a("embedded_wallet_key_export_completed",{walletAddress:h})};return fc(()=>{let E=Z(r);if(!o||!E)return S("User must be authenticated before exporting their wallet");n().then(t,S)},[o,r]),c&&(c.current=P),Ct(Lh,{children:[te(T,{onClose:P}),te(_,{}),Ct(Sh,{children:[te(uc,{}),Ct(Ah,{children:[te("h3",{children:"Transfer"}),Ct(Ih,{children:[te(_h,{style:{marginRight:6}}),$t(h)]})]}),te("p",{children:"You can take your account with you to another site using an external wallet!"}),Ct(kh,{children:[Ct(mc,{children:[te(hc,{children:"1"}),Ct("span",{children:[te("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."]})]}),Ct(mc,{children:[te(hc,{children:"2"}),te("span",{children:"Copy this key into your other wallet"})]})]}),te("div",{style:{width:"100%"},children:e&&te(Ph,{origin:f,appId:b,accessToken:e,clientAnalyticsId:l,address:h,dimensions:{height:"44px"}})}),Ct(Nh,{children:[te("h4",{children:"WARNING"}),te("p",{children:"Never share your private key with anyone! It controls your account."})]})]}),te(W,{}),te(D,{protectedByPrivy:!0})]})};function Ph(e){let[t,o]=ua(e.dimensions.width),[r,n]=ua(void 0),i=Th(null);return fc(()=>{if(i.current&&t===void 0){let{width:l}=i.current.getBoundingClientRect();o(l)}let a=getComputedStyle(document.documentElement);n({background2:a.getPropertyValue("--privy-color-background-2"),foreground3:a.getPropertyValue("--privy-color-foreground-3"),foregroundAccent:a.getPropertyValue("--privy-color-foreground-accent"),accent:a.getPropertyValue("--privy-color-accent"),accentDark:a.getPropertyValue("--privy-color-accent-dark"),success:a.getPropertyValue("--privy-color-success")})},[]),te("div",{ref:i,children:t&&Ct(Rh,{children:[te("iframe",{style:{position:"absolute",zIndex:1},width:t,height:e.dimensions.height,allow:"clipboard-write self *",src:un(e.origin,`/apps/${e.appId}/embedded-wallets/export`,{token:e.accessToken,address:e.address,width:`${t}px`,caid:e.clientAnalyticsId,...r})}),te(Wh,{children:"Loading..."})]})})}function _h(e){return te("svg",{width:"16",height:"17",viewBox:"0 0 16 17",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:e.style,children:te("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 Sh=It.div`
|
|
797
797
|
display: flex;
|
|
798
798
|
height: 100%;
|
|
799
799
|
flex-direction: column;
|
|
@@ -811,7 +811,7 @@ Resources:
|
|
|
811
811
|
margin-top: 16px;
|
|
812
812
|
margin-left: 11px;
|
|
813
813
|
border-left: 1px solid var(--privy-color-foreground-4) !important;
|
|
814
|
-
`,
|
|
814
|
+
`,mc=It.div`
|
|
815
815
|
display: flex;
|
|
816
816
|
align-items: top;
|
|
817
817
|
gap: 8px;
|
|
@@ -822,7 +822,7 @@ Resources:
|
|
|
822
822
|
text-decoration: underline;
|
|
823
823
|
}
|
|
824
824
|
}
|
|
825
|
-
`,
|
|
825
|
+
`,hc=It.div`
|
|
826
826
|
display: flex;
|
|
827
827
|
align-items: center;
|
|
828
828
|
justify-content: center;
|
|
@@ -873,7 +873,7 @@ Resources:
|
|
|
873
873
|
&& > h4 {
|
|
874
874
|
color: var(--privy-color-error);
|
|
875
875
|
}
|
|
876
|
-
`;import{useEffect as
|
|
876
|
+
`;import{useEffect as Gc,useRef as Af,useState as Fr}from"react";import{useCallback as Hc,useEffect as Sf}from"react";import{ExclamationTriangleIcon as Dh}from"@heroicons/react/24/outline";import{useEffect as Uh,useState as Ec}from"react";import{ArrowPathIcon as Oh}from"@heroicons/react/24/outline";import Be,{css as ma}from"styled-components";var Mh=ma`
|
|
877
877
|
font-size: 14px;
|
|
878
878
|
font-style: normal;
|
|
879
879
|
font-weight: 400;
|
|
@@ -881,7 +881,7 @@ Resources:
|
|
|
881
881
|
letter-spacing: -0.008px;
|
|
882
882
|
text-align: left;
|
|
883
883
|
transition: color 0.1s ease-in;
|
|
884
|
-
`,
|
|
884
|
+
`,Hn=Be.span`
|
|
885
885
|
${Mh}
|
|
886
886
|
transition: color 0.1s ease-in;
|
|
887
887
|
color: ${({error:e})=>e?"var(--privy-color-error)":"var(--privy-color-foreground-3)"};
|
|
@@ -890,18 +890,18 @@ Resources:
|
|
|
890
890
|
&[aria-hidden='true'] {
|
|
891
891
|
visibility: hidden;
|
|
892
892
|
}
|
|
893
|
-
`,
|
|
893
|
+
`,to=Be.div`
|
|
894
894
|
display: flex;
|
|
895
895
|
flex-direction: column;
|
|
896
896
|
justify-content: center;
|
|
897
897
|
flex-grow: 1;
|
|
898
|
-
`,
|
|
899
|
-
${e=>e.hideAnimations&&
|
|
898
|
+
`,oo=Be(j)`
|
|
899
|
+
${e=>e.hideAnimations&&ma`
|
|
900
900
|
&& {
|
|
901
901
|
transition: none;
|
|
902
902
|
}
|
|
903
903
|
`}
|
|
904
|
-
`,
|
|
904
|
+
`,gc=ma`
|
|
905
905
|
&& {
|
|
906
906
|
width: 100%;
|
|
907
907
|
border-width: 1px;
|
|
@@ -917,21 +917,21 @@ Resources:
|
|
|
917
917
|
line-height: 22px; /* 137.5% */
|
|
918
918
|
}
|
|
919
919
|
`,Eo=Be.input`
|
|
920
|
-
${
|
|
920
|
+
${gc}
|
|
921
921
|
|
|
922
922
|
&::placeholder {
|
|
923
923
|
color: var(--privy-color-foreground-3);
|
|
924
924
|
font-style: italic;
|
|
925
925
|
}
|
|
926
|
-
`,
|
|
927
|
-
${
|
|
928
|
-
`,
|
|
926
|
+
`,vc=Be.div`
|
|
927
|
+
${gc}
|
|
928
|
+
`,or=Be.div`
|
|
929
929
|
position: relative;
|
|
930
930
|
width: 100%;
|
|
931
931
|
display: flex;
|
|
932
932
|
align-items: center;
|
|
933
933
|
justify-content: ${({centered:e})=>e?"center":"space-between"};
|
|
934
|
-
`,
|
|
934
|
+
`,ro=Be.div`
|
|
935
935
|
display: flex;
|
|
936
936
|
flex-direction: column;
|
|
937
937
|
align-items: center;
|
|
@@ -953,12 +953,12 @@ Resources:
|
|
|
953
953
|
font-weight: 400;
|
|
954
954
|
line-height: 20px;
|
|
955
955
|
}
|
|
956
|
-
`,
|
|
956
|
+
`,Lr=Be.div`
|
|
957
957
|
display: flex;
|
|
958
958
|
flex-direction: column;
|
|
959
959
|
gap: 10px;
|
|
960
960
|
padding-bottom: 1rem;
|
|
961
|
-
`,
|
|
961
|
+
`,Or=Be.div`
|
|
962
962
|
display: flex;
|
|
963
963
|
text-align: left;
|
|
964
964
|
align-items: center;
|
|
@@ -978,13 +978,13 @@ Resources:
|
|
|
978
978
|
> :first-child {
|
|
979
979
|
min-width: 24px;
|
|
980
980
|
}
|
|
981
|
-
`,
|
|
981
|
+
`,wc=Be.div`
|
|
982
982
|
height: var(--privy-height-modal-full);
|
|
983
983
|
|
|
984
984
|
@media (max-width: 440px) {
|
|
985
985
|
height: var(--privy-height-modal-compact);
|
|
986
986
|
}
|
|
987
|
-
`,
|
|
987
|
+
`,ha=Be(Sn)`
|
|
988
988
|
display: flex;
|
|
989
989
|
flex: 1;
|
|
990
990
|
gap: 4px;
|
|
@@ -996,7 +996,7 @@ Resources:
|
|
|
996
996
|
border-color: var(--privy-color-foreground-3);
|
|
997
997
|
border-width: 1px;
|
|
998
998
|
}
|
|
999
|
-
`,
|
|
999
|
+
`,Cc=Be(Oh)`
|
|
1000
1000
|
position: absolute;
|
|
1001
1001
|
right: 12px;
|
|
1002
1002
|
height: 24px;
|
|
@@ -1007,7 +1007,7 @@ Resources:
|
|
|
1007
1007
|
:active {
|
|
1008
1008
|
stroke: var(--privy-color-accent-light);
|
|
1009
1009
|
}
|
|
1010
|
-
`,
|
|
1010
|
+
`,bc=Be.progress`
|
|
1011
1011
|
height: 4px;
|
|
1012
1012
|
width: 100%;
|
|
1013
1013
|
margin: 8px 0;
|
|
@@ -1023,14 +1023,14 @@ Resources:
|
|
|
1023
1023
|
transition: all 0.1s ease-out;
|
|
1024
1024
|
background: ${({label:e})=>e==="Strong"&&"#78dca6"||e==="Medium"&&"var(--privy-color-warn)"||"var(--privy-color-error)"};
|
|
1025
1025
|
}
|
|
1026
|
-
`;import{Fragment as Fh,jsx as at,jsxs as
|
|
1026
|
+
`;import{Fragment as Fh,jsx as at,jsxs as fa}from"react/jsx-runtime";var xc=({buttonHideAnimations:e,buttonLoading:t,password:o,onSubmit:r,onBack:n})=>{let[i,a]=Ec(!1),[l,s]=Ec(""),c=o===l;return Uh(()=>{l&&!i&&a(!0)},[l]),fa(Fh,{children:[at(T,{title:"Confirm Password",closeable:!1,backFn:n}),at(_,{}),fa(to,{children:[fa(ro,{children:[at(Dh,{height:48,width:48,stroke:"var(--privy-color-background)",fill:"var(--privy-color-accent)"}),at("h3",{style:{color:"var(--privy-color-foreground)"},children:"Confirm your password"}),at("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Please re-enter your password below to continue."})]}),at(or,{children:at(Eo,{value:l,onChange:h=>s(h.target.value),onBlur:()=>a(!0),placeholder:"confirm your password"})}),at(Hn,{"aria-hidden":!i||c,error:!0,children:"Passwords do not match"})]}),at(oo,{onClick:r,loading:t,disabled:!c,hideAnimations:e,children:"Continue"}),at(W,{}),at(D,{protectedByPrivy:!0})]})};import{ExclamationTriangleIcon as zh}from"@heroicons/react/24/outline";import{useState as $h}from"react";import Vh from"styled-components";import Gn from"styled-components";import{jsx as Mr,jsxs as Gh}from"react/jsx-runtime";var Tc=({className:e,checked:t,color:o="var(--privy-color-accent)",...r})=>Mr("label",{children:Gh(Bh,{className:e,children:[Mr(_c,{checked:t,...r}),Mr(Hh,{color:o,checked:t,children:Mr(Pc,{viewBox:"0 0 24 24",children:Mr("polyline",{points:"20 6 9 17 4 12"})})})]})}),Bh=Gn.div`
|
|
1027
1027
|
display: inline-block;
|
|
1028
1028
|
vertical-align: middle;
|
|
1029
|
-
`,Pc=
|
|
1029
|
+
`,Pc=Gn.svg`
|
|
1030
1030
|
fill: none;
|
|
1031
1031
|
stroke: white;
|
|
1032
1032
|
stroke-width: 3px;
|
|
1033
|
-
`,
|
|
1033
|
+
`,_c=Gn.input.attrs({type:"checkbox"})`
|
|
1034
1034
|
border: 0;
|
|
1035
1035
|
clip: rect(0 0 0 0);
|
|
1036
1036
|
clippath: inset(50%);
|
|
@@ -1041,7 +1041,7 @@ Resources:
|
|
|
1041
1041
|
position: absolute;
|
|
1042
1042
|
white-space: nowrap;
|
|
1043
1043
|
width: 1px;
|
|
1044
|
-
`,Hh=
|
|
1044
|
+
`,Hh=Gn.div`
|
|
1045
1045
|
display: inline-block;
|
|
1046
1046
|
width: 18px;
|
|
1047
1047
|
height: 18px;
|
|
@@ -1056,28 +1056,28 @@ Resources:
|
|
|
1056
1056
|
border-width: 1px;
|
|
1057
1057
|
}
|
|
1058
1058
|
|
|
1059
|
-
${
|
|
1059
|
+
${_c}:focus + & {
|
|
1060
1060
|
box-shadow: 0 0 0 1px ${e=>e.color};
|
|
1061
1061
|
}
|
|
1062
1062
|
|
|
1063
1063
|
${Pc} {
|
|
1064
1064
|
visibility: ${e=>e.checked?"visible":"hidden"};
|
|
1065
1065
|
}
|
|
1066
|
-
`;import{Fragment as jh,jsx as st,jsxs as
|
|
1066
|
+
`;import{Fragment as jh,jsx as st,jsxs as Dr}from"react/jsx-runtime";var Sc=({buttonHideAnimations:e,buttonLoading:t,onSubmit:o,onBack:r,config:n})=>{let[i,a]=$h(!1);return Dr(jh,{children:[st(T,{title:"Confirm Password",closeable:!1,backFn:r}),st(_,{}),Dr(to,{children:[Dr(ro,{children:[st(zh,{height:48,width:48,stroke:"var(--privy-color-background)",fill:"var(--privy-color-error)"}),st("h3",{style:{color:"var(--privy-color-foreground)"},children:"Confirm you have saved"}),st("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Losing access to your password means you will lose access to your account."})]}),st(Lr,{children:Dr(Or,{style:{color:"var(--privy-color-error)"},children:[st(Tc,{color:"var(--privy-color-error)",checked:i,onChange:()=>a(l=>!l)}),"I understand losing my password means losing my account."]})})]}),Dr(qh,{children:[n.initiatedBy==="user"&&st(kn,{onClick:n.onCancel,disabled:t,children:"Cancel"}),st(oo,{onClick:o,loading:t,hideAnimations:e,disabled:!i,children:"Set Password"})]}),st(W,{}),st(D,{protectedByPrivy:!0})]})},qh=Vh.div`
|
|
1067
1067
|
display: flex;
|
|
1068
1068
|
gap: 10px;
|
|
1069
|
-
`;import{KeyIcon as df}from"@heroicons/react/24/outline";import{CheckCircleIcon as
|
|
1069
|
+
`;import{KeyIcon as df}from"@heroicons/react/24/outline";import{CheckCircleIcon as Lc}from"@heroicons/react/24/solid";import{useState as pf,useMemo as ya,useEffect as uf}from"react";import Oc from"styled-components";import Kh from"fast-password-entropy";import*as Ac from"secure-password-utilities";import{DEFAULT_WORDLIST as Yh}from"secure-password-utilities/wordlists";var Jh=95,Qh=8,Zh=3,Xh=.3,ef=/[a-z]/,tf=/[A-Z]/,of=/[0-9]/,rf="a-zA-Z0-9",kc="!@#$%^&*()\\-_+.",Rc=`${rf}${kc}`,nf=new RegExp(`[${kc}]`),af=new RegExp(`[${Rc}]`),Wc=new RegExp(`^[${Rc}]{6,}$`),Ic=(e="")=>{let t=e.split("").filter(o=>!af.test(o)).map(o=>o.replace(" ","SPACE"));return[...new Set(t)]},zn=()=>Ac.generatePassphrase(4,Yh);function sf(e){return e>.9?"Strong":e>.5?"Medium":"Weak"}function lf(e){if(e.length<Qh)return 0;let t=0;ef.test(e)&&(t+=1),tf.test(e)&&(t+=1),of.test(e)&&(t+=1),nf.test(e)&&(t+=1);let o=t/Zh;return Math.max(0,Math.min(1,o))}function cf(e=""){let t=lf(e),o=Kh(e)/Jh;return(t*Xh+o)/2}function Nc(e=""){let t=cf(e);return{value:t,label:sf(t)}}import{Fragment as ff,jsx as Te,jsxs as no}from"react/jsx-runtime";var Mc=({buttonHideAnimations:e,buttonLoading:t,password:o="",config:r,onSubmit:n,onClose:i,onPasswordChange:a,onPasswordGenerate:l})=>{let[s,c]=pf(!1);uf(()=>{o&&!s&&c(!0)},[o]);let h=ya(()=>s?(o?.length||0)<6?"Password must be at least 6 characters":Wc.test(o||"")?null:`Invalid characters used ( ${Ic(o).join(" ")} )`:null,[o,s]),m=ya(()=>h?{value:0,label:"Weak"}:Nc(o),[o,h]),w=ya(()=>!!(!o?.length||h),[h,o]);return no(ff,{children:[Te(T,{onClose:i,title:"Secure your account",closeable:r.initiatedBy==="user"}),Te(_,{}),no(to,{children:[no(ro,{children:[Te(df,{height:48,width:48,stroke:"var(--privy-color-accent)"}),Te("h3",{style:{color:"var(--privy-color-foreground)"},children:"Set your password"}),Te("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Select a strong, memorable password to secure your account."})]}),no(or,{children:[Te(Eo,{value:o,onChange:f=>a(f.target.value),placeholder:"enter or generate a strong password"}),Te(Cc,{onClick:l})]}),Te(bc,{value:m.value===0?.01:m.value,label:m.label}),Te(Hn,{error:!!h,children:h||`Password Strength: ${s?m.label:"--"}`}),no(hf,{children:[Te(mf,{children:no(Lr,{children:[no(Or,{children:[Te(Lc,{width:24,height:24,fill:"var(--privy-color-accent)"}),"This password is used to secure your account."]}),no(Or,{children:[Te(Lc,{width:24,height:24,fill:"var(--privy-color-accent)"}),"You will only be asked to enter it when signing on to a new device."]})]})}),Te(oo,{onClick:n,loading:t,disabled:w,hideAnimations:e,children:"Continue"})]})]}),Te(W,{}),Te(D,{protectedByPrivy:!0})]})},mf=Oc(Lr)`
|
|
1070
1070
|
flex: 1;
|
|
1071
1071
|
padding-top: 1rem;
|
|
1072
|
-
`,hf=
|
|
1072
|
+
`,hf=Oc.div`
|
|
1073
1073
|
display: flex;
|
|
1074
1074
|
flex-direction: column;
|
|
1075
1075
|
height: 100%;
|
|
1076
|
-
`;import{ArrowDownTrayIcon as yf,ClipboardDocumentCheckIcon as gf,DocumentDuplicateIcon as vf,ExclamationTriangleIcon as wf}from"@heroicons/react/24/outline";import{useState as Cf,useCallback as
|
|
1076
|
+
`;import{ArrowDownTrayIcon as yf,ClipboardDocumentCheckIcon as gf,DocumentDuplicateIcon as vf,ExclamationTriangleIcon as wf}from"@heroicons/react/24/outline";import{useState as Cf,useCallback as Dc}from"react";import{Fragment as ga,jsx as Re,jsxs as xo}from"react/jsx-runtime";var Uc=({buttonHideAnimations:e,buttonLoading:t,appName:o,password:r,onSubmit:n,onBack:i})=>{let[a,l]=Cf(!1),s=Dc(()=>{l(!0),r&&navigator.clipboard.writeText(r)},[r]),c=Dc(()=>{let h=document.createElement("a"),m=o.toLowerCase().replace(/[^a-z\s]/g,"").replace(/\s/g,"-"),w=new Blob([bf(o,r)],{type:"text/plain"}),f=URL.createObjectURL(w);h.href=f,h.target="_blank",h.download=`${m}-privy-wallet-recovery.txt`,document.body.appendChild(h),h.click(),setTimeout(()=>{h.remove(),URL.revokeObjectURL(f)},5e3)},[r]);return xo(ga,{children:[Re(T,{backFn:i,title:"Save Password",closeable:!1}),Re(_,{}),xo(to,{children:[xo(ro,{children:[Re(wf,{height:48,width:48,stroke:"var(--privy-color-background)",fill:"var(--privy-color-accent)"}),Re("h3",{style:{color:"var(--privy-color-foreground)"},children:"Save your password"}),Re("p",{style:{color:"var(--privy-color-foreground-2)"},children:"For your security, this password cannot be reset if you lose your device. Make sure to secure it to keep your assets safe."})]}),Re(or,{centered:!0,children:Re(vc,{children:r})}),xo("div",{style:{display:"flex",margin:"12px 0",gap:"12px"},children:[Re(ha,{onClick:s,children:a?xo(ga,{children:[Re(gf,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Copied"]}):xo(ga,{children:[Re(vf,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Copy"]})}),xo(ha,{onClick:c,children:[Re(yf,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Download"]})]})]}),Re(oo,{onClick:n,loading:t,hideAnimations:e,children:"Continue"}),Re(W,{}),Re(D,{protectedByPrivy:!0})]})},bf=(e,t)=>`Your wallet recovery password for ${e} is
|
|
1077
1077
|
|
|
1078
1078
|
${t}
|
|
1079
1079
|
|
|
1080
|
-
You will need this password to access your ${e} wallet on a new device. Please keep it somewhere safe.`;import{CheckCircleIcon as Ef,XCircleIcon as xf}from"@heroicons/react/24/outline";import{Fragment as
|
|
1080
|
+
You will need this password to access your ${e} wallet on a new device. Please keep it somewhere safe.`;import{CheckCircleIcon as Ef,XCircleIcon as xf}from"@heroicons/react/24/outline";import{Fragment as Tf,jsx as Nt,jsxs as va}from"react/jsx-runtime";var Fc=({error:e,onClose:t})=>va(Tf,{children:[Nt(T,{closeable:!1}),Nt(_,{}),e?va(kt,{children:[Nt(xf,{stroke:"var(--privy-color-error)",width:"64px",height:"64px"}),Nt(fe,{title:"Something went wrong",description:e})]}):va(kt,{children:[Nt(Ef,{stroke:"var(--privy-color-success)",width:"64px",height:"64px"}),Nt(fe,{title:"Success"})]}),Nt(j,{onClick:t,children:"Close"}),Nt(W,{}),Nt(D,{protectedByPrivy:!0})]});import{useReducer as Pf}from"react";var _f=(e,t)=>{switch(e){case"creating":return t==="back"?e:"saving";case"saving":return t==="back"?"creating":"confirming";case"confirming":return t==="back"?"saving":"finalizing";case"finalizing":return t==="back"?"confirming":"done";default:return e}},Bc=()=>{let[e,t]=Pf(_f,"creating");return{send:t,state:e}};import{jsx as Ur}from"react/jsx-runtime";var $n=({onSubmit:e,...t})=>{let{send:o,state:r}=Bc(),n=Hc(async()=>{r==="finalizing"&&await e(),o("next")},[r,o,e]);Sf(()=>{let a;return r==="done"&&t.config.initiatedBy==="automatic"&&(a=setTimeout(()=>t.onClose?.(),De)),()=>{a&&clearTimeout(a)}},[r,t.config.initiatedBy,t.onClose]);let i=Hc(()=>{o("back")},[o]);return r==="creating"?Ur(Mc,{...t,onSubmit:n}):r==="saving"?Ur(Uc,{...t,onSubmit:n,onBack:i}):r==="confirming"?Ur(xc,{...t,onSubmit:n,onBack:i}):r==="finalizing"?Ur(Sc,{...t,onSubmit:n,onBack:i}):r==="done"?Ur(Fc,{...t,onSubmit:n}):null};import{jsx as wa}from"react/jsx-runtime";var kf=250,zc=()=>{let{app:e,navigate:t,data:o,outerClickRef:r}=v(),[n,i]=Fr(""),[a,l]=Fr(!1),[s,c]=Fr(),[h,m]=Fr(null),[w,f]=Fr(null),b=Af(!1),{authenticated:S,getAccessToken:P}=V(),{refreshUser:E,closePrivyModal:g,createAnalyticsEvent:I,isNewUserThisSession:N,initializeWalletProxy:k}=A(),{onSuccess:O,onFailure:U,callAuthOnSuccessOnClose:se}=o.createWallet,B=e?.embeddedWallets.requireUserPasswordOnCreate===!0,K=!!(!n||b.current)&&!B,H=new $e(async()=>L());Gc(()=>{h||k(3e4).then(G=>m(G))},[h]),Gc(()=>{if(!S){t("LANDING"),U(new Error("User must be authenticated before creating a Privy wallet"));return}!B&&!a&&!b.current&&(l(!0),H.execute().finally(()=>l(!1)))},[B,S]);let Y=()=>{B&&w&&w?.recoveryMethod!=="user-passcode"?U(new Oe("User created a wallet but failed to set a password for it")):w?O(w):U(new Oe("User wallet creation failed")),g({shouldCallAuthOnSuccess:se})};r&&(r.current=()=>({closeModal:!1}));let L=async function(){let G=await P();if(G)try{if(I("embedded_wallet_creation_started"),!await(await k(cn))?.create({accessToken:G,recoveryPassword:s}))throw I("embedded_wallet_creation_failed",{error:"walletProxy did not send a response."}),new Error("Unable to create wallet");let le=await E(),z=Z(le);if(!z)throw I("embedded_wallet_creation_failed",{error:"Updated user is missing embedded wallet."}),new Error("Unable to create wallet");f(z),I("embedded_wallet_creation_completed",{walletAddress:z.address}),i(""),b.current=!0,B?t("EMBEDDED_WALLET_CREATED_SCREEN"):N?t("EMBEDDED_WALLET_CREATED_SCREEN"):z&&(O(z),g({shouldCallAuthOnSuccess:se}))}catch(q){if(b.current)return;i("An error has occurred, please try again."),console.warn(q)}else i("An error has occured, please login again."),I("embedded_wallet_creation_failed",{error:"Missing access token for user."})},Ie=async()=>B?(l(!0),H.execute().then(()=>new Promise(G=>setTimeout(G,kf))).finally(()=>l(!1))):g({shouldCallAuthOnSuccess:se});return K?wa(wc,{children:wa(Xo,{})}):wa($n,{config:{initiatedBy:"automatic"},appName:e?.name||"privy",loading:K||!h,buttonLoading:a,buttonHideAnimations:!w&&a,error:n,password:s||"",onClose:Y,onPasswordChange:c,onPasswordGenerate:()=>c(zn()),onSubmit:Ie})};import{useEffect as Rf,useState as Vn}from"react";import{jsx as Wf}from"react/jsx-runtime";var $c=()=>{let[e,t]=Vn(null),[o,r]=Vn(!1),[n,i]=Vn(null),[a,l]=Vn(""),{authenticated:s,getAccessToken:c,user:h}=V(),{walletProxy:m,refreshUser:w,closePrivyModal:f,createAnalyticsEvent:b}=A(),{app:S,navigate:P,data:E,outerClickRef:g}=v(),{onSuccess:I,onFailure:N}=E.createWallet,k=Z(h),O=e?.recoveryMethod==="user-passcode";Rf(()=>{s||(P("LANDING"),N(new tn("User must be authenticated before setting a password on a Privy wallet")))},[s]);let U=()=>{if(n){N(n),f({shouldCallAuthOnSuccess:!1});return}if(!O){N(new Oe("Exited before password was added to wallet")),f({shouldCallAuthOnSuccess:!1});return}I(e),f({shouldCallAuthOnSuccess:!1})};g&&(g.current=()=>(U(),{closeModal:!O}));let se=async()=>{let K=await c();if(K&&k?.address&&a&&m)try{if(b("embedded_wallet_set_password_started",{walletAddress:k.address}),!(await m.setRecoveryPassword({accessToken:K,address:k.address,recoveryPassword:a})).address){i(new Oe("Error setting password on privy wallet")),b("embedded_wallet_set_password_failed",{walletAddress:k.address,reason:"error setting password"});return}let Y=await w(),L=Z(Y);if(!L){i(new Oe("Error setting password on privy wallet")),b("embedded_wallet_set_password_failed",{walletAddress:k.address,reason:"wallet disconnected"});return}t(L),b("embedded_wallet_set_password_completed",{walletAddress:k.address})}catch(H){console.warn(H),i(H instanceof Error?H:new Error("Error setting password on privy wallet")),b("embedded_wallet_set_password_failed",{walletAddress:k.address,reason:H})}},B=async()=>{O?(I(e),f({shouldCallAuthOnSuccess:!1})):(r(!0),i(null),await se(),r(!1))};return Wf($n,{appName:S?.name||"privy",config:{initiatedBy:"user",onCancel:U},error:n?"An error has occurred, please try again.":void 0,buttonLoading:o,buttonHideAnimations:!1,password:a,onPasswordGenerate:()=>l(zn()),onPasswordChange:l,onSubmit:B,onClose:U})};import{UserCircleIcon as If}from"@heroicons/react/24/outline";import{LockClosedIcon as Nf}from"@heroicons/react/24/solid";import{useEffect as Lf}from"react";import{Fragment as Of,jsx as Lt,jsxs as qn}from"react/jsx-runtime";var Vc=()=>{let{user:e}=V(),{closePrivyModal:t,createAnalyticsEvent:o}=A(),{data:r,setModalData:n,navigate:i,outerClickRef:a}=v(),{onSuccess:l,onFailure:s}=r.setWalletPassword,c=()=>{s(new Oe("Exited before password was added to wallet")),t({shouldCallAuthOnSuccess:!1})};return Lf(()=>{a&&(a.current=c)},[]),qn(Of,{children:[Lt(T,{onClose:c}),Lt(_,{}),qn(kt,{children:[qn(Al,{children:[Lt(If,{stroke:"var(--privy-color-accent)",width:"64px",height:"64px"}),Lt(kl,{style:{width:24,height:24,position:"absolute",bottom:0,right:0},children:Lt(Nf,{width:"12px",height:"12px",fill:"white"})})]}),qn(fe,{title:"Secure Your Account",children:["Please set a password to secure your account.",Lt("p",{children:"Losing this password will make your account inaccessible on new devices. You will only be asked for it when you log on to a new device."})]})]}),Lt(j,{onClick:()=>{let m=Z(e);o("embedded_wallet_set_password_started",{walletAddress:m?.address}),n({createWallet:{onFailure:s,onSuccess:l,callAuthOnSuccessOnClose:!1,addPasswordToExistingWallet:!0}}),i("EMBEDDED_WALLET_PASSWORD_UPDATE_SCREEN")},children:"Add password"}),Lt(W,{}),Lt(D,{protectedByPrivy:!0})]})};import{ShieldCheckIcon as Mf}from"@heroicons/react/24/outline";import{useEffect as Df,useState as Ca}from"react";import jn,{css as Uf}from"styled-components";import{Fragment as zf,jsx as Qe,jsxs as rr}from"react/jsx-runtime";var qc=()=>{let{authenticated:e,getAccessToken:t}=V(),{walletProxy:o,closePrivyModal:r,createAnalyticsEvent:n}=A(),{navigate:i,data:a,outerClickRef:l}=v(),[s,c]=Ca(void 0),[h,m]=Ca(""),[w,f]=Ca(!1),{privyWallet:b,onCompleteNavigateTo:S,onSuccess:P,onFailure:E}=a.recoverWallet,g=(k="User exited before their wallet could be recovered")=>{r({shouldCallAuthOnSuccess:!1}),E(typeof k=="string"?new Oe(k):k)};l&&(l.current=()=>g()),Df(()=>{if(!e||!b)return g("User must be authenticated and have a Privy wallet before it can be recovered")},[e]);let I=k=>{k&&c(k)};return rr(zf,{children:[Qe(T,{onClose:g}),Qe(_,{}),rr(Bf,{children:[rr(Ff,{children:[Qe(Mf,{height:48,width:48,stroke:"var(--privy-color-accent)"}),Qe("h3",{style:{color:"var(--privy-color-foreground)"},children:"Load your account"}),Qe("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Please provision your account on this new device. To continue, enter your recovery password."})]}),rr("div",{children:[Qe(Eo,{onChange:k=>I(k.target.value),disabled:w}),!!h&&Qe(Hf,{children:h})]}),rr("div",{children:[rr(Sl,{children:[Qe("h4",{children:"Why is this necessary?"}),Qe("p",{children:"You previously set a password for this wallet. This helps ensure only you can access it"})]}),Qe(Gf,{loading:w||!o,disabled:!s,onClick:async()=>{f(!0);let k=await t();if(k&&b&&s!==null)try{n("embedded_wallet_recovery_started",{walletAddress:b.address}),await o?.recover({address:b.address,accessToken:k,recoveryPin:s}),m(""),S?i(S):r({shouldCallAuthOnSuccess:!1}),P?.(b),n("embedded_wallet_recovery_completed",{walletAddress:b.address})}catch(O){nc(O)?m("Invalid recovery password, please try again."):m("An error has occurred, please try again.")}finally{f(!1)}else return g("User must be authenticated and have a Privy wallet before it can be recovered")},warn:!1,hideAnimations:!b&&w,children:"Recover your account"})]})]}),Qe(W,{}),Qe(D,{protectedByPrivy:!0})]})},Ff=jn.div`
|
|
1081
1081
|
display: flex;
|
|
1082
1082
|
flex-direction: column;
|
|
1083
1083
|
align-items: center;
|
|
@@ -1099,19 +1099,19 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1099
1099
|
font-weight: 400;
|
|
1100
1100
|
line-height: 20px;
|
|
1101
1101
|
}
|
|
1102
|
-
`,Bf=
|
|
1102
|
+
`,Bf=jn.div`
|
|
1103
1103
|
display: flex;
|
|
1104
1104
|
height: 100%;
|
|
1105
1105
|
flex-direction: column;
|
|
1106
1106
|
justify-content: space-between;
|
|
1107
|
-
`,Hf=
|
|
1107
|
+
`,Hf=jn.div`
|
|
1108
1108
|
line-height: 20px;
|
|
1109
1109
|
height: 20px;
|
|
1110
1110
|
font-size: 13px;
|
|
1111
1111
|
color: var(--privy-color-error);
|
|
1112
1112
|
text-align: left;
|
|
1113
1113
|
margin-top: 0.5rem;
|
|
1114
|
-
`,Gf=
|
|
1114
|
+
`,Gf=jn(j)`
|
|
1115
1115
|
${e=>e.hideAnimations&&Uf`
|
|
1116
1116
|
&& {
|
|
1117
1117
|
// Remove animations because the recoverWallet task on the iframe partially
|
|
@@ -1119,7 +1119,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1119
1119
|
transition: none;
|
|
1120
1120
|
}
|
|
1121
1121
|
`}
|
|
1122
|
-
`;import{EyeSlashIcon as Vf,LinkIcon as qf,ClockIcon as jf}from"@heroicons/react/24/outline";import Ot from"styled-components";import{jsx as
|
|
1122
|
+
`;import{EyeSlashIcon as Vf,LinkIcon as qf,ClockIcon as jf}from"@heroicons/react/24/outline";import Ot from"styled-components";import{jsx as ba,jsxs as $f}from"react/jsx-runtime";var Kn=({size:e=61,...t})=>ba("svg",{width:e,height:e,viewBox:"0 0 61 61",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:$f("g",{id:"moonpay_symbol_wht 2",children:[ba("rect",{x:"1.3374",y:"1",width:"59",height:"59",rx:"11.5",fill:"#7715F5"}),ba("path",{id:"Vector",d:"M43.8884 23.3258C45.0203 23.3258 46.1268 22.9901 47.068 22.3613C48.0091 21.7324 48.7427 20.8386 49.1759 19.7928C49.6091 18.747 49.7224 17.5962 49.5016 16.4861C49.2807 15.3759 48.7357 14.3561 47.9353 13.5557C47.1349 12.7553 46.1151 12.2102 45.0049 11.9893C43.8947 11.7685 42.7439 11.8819 41.6982 12.3151C40.6524 12.7482 39.7585 13.4818 39.1297 14.423C38.5008 15.3641 38.1651 16.4707 38.1651 17.6026C38.165 18.3542 38.3131 19.0985 38.6007 19.7929C38.8883 20.4873 39.3098 21.1182 39.8413 21.6496C40.3728 22.1811 41.0037 22.6027 41.6981 22.8903C42.3925 23.1778 43.1367 23.3259 43.8884 23.3258ZM26.3395 49.1017C23.5804 49.1017 20.8832 48.2836 18.5891 46.7507C16.295 45.2178 14.5069 43.039 13.4511 40.49C12.3952 37.9409 12.1189 35.1359 12.6572 32.4298C13.1955 29.7237 14.5241 27.238 16.4751 25.287C18.4262 23.336 20.9118 22.0074 23.6179 21.4691C26.324 20.9308 29.129 21.2071 31.6781 22.2629C34.2272 23.3189 36.406 25.1069 37.9389 27.401C39.4717 29.6952 40.2899 32.3923 40.2899 35.1514C40.2899 36.9835 39.9291 38.7975 39.2281 40.49C38.527 42.1826 37.4994 43.7205 36.204 45.0159C34.9086 46.3113 33.3707 47.3389 31.6781 48.04C29.9856 48.741 28.1715 49.1018 26.3395 49.1017Z",fill:"white"})]})});import{Fragment as jc,jsx as Pe,jsxs as To}from"react/jsx-runtime";var Ea=({title:e,desc:t,icon:o})=>To(Zf,{children:[Pe(ey,{children:o}),To(Xf,{children:[Pe(Jf,{children:e}),Pe(Qf,{children:t})]})]}),Kc=({app:e,signedUrl:t,onContinue:o})=>To(jc,{children:[To(Kf,{children:[Pe(Kn,{size:"3.75rem"}),To(Yf,{children:[e?.name," uses ",Pe("span",{style:{fontWeight:"bold"},children:"Moonpay"})," to fund your account"]}),To(ty,{children:[Pe(Ea,{icon:Pe(qf,{width:"1rem"}),title:"Purchase assets to fund your account",desc:To(jc,{children:["Connect a payment method (",Pe("strong",{children:"debit card recommended"}),") to purchase digital assets."]})}),Pe(Ea,{icon:Pe(jf,{width:"1rem"}),title:"Compliance takes time",desc:"Funding a new account may take a few hours. You'll be good to go thereafter."}),Pe(Ea,{icon:Pe(Vf,{width:"1rem"}),title:"Your data belongs to you",desc:"MoonPay does not sell your data and will only use it with your permission."})]}),Pe(oy,{className:"mobile-only"})]}),Pe(de,{children:Pe(An,{href:t,target:"_blank",rel:"noopener noreferrer",annotation:"By clicking continue, you will be taken to MoonPay in a new tab",onClick:o,children:"Continue to Moonpay"})})]}),Kf=Ot.div`
|
|
1123
1123
|
display: flex;
|
|
1124
1124
|
flex-direction: column;
|
|
1125
1125
|
align-items: center;
|
|
@@ -1166,32 +1166,32 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1166
1166
|
margin: 0 0.5rem;
|
|
1167
1167
|
`,oy=Ot.div`
|
|
1168
1168
|
margin: 30px 0;
|
|
1169
|
-
`;import{ofetch as ry}from"ofetch";import{useEffect as ny,useRef as iy,useState as ay}from"react";var
|
|
1169
|
+
`;import{ofetch as ry}from"ofetch";import{useEffect as ny,useRef as iy,useState as ay}from"react";var Yn="moonpay",Yc="sdk_fiat_on_ramp_completed_with_status";async function Jc(e,t,o,r,n=!1){let i=o.currencyCode?{}:{defaultCurrencyCode:"ETH_ETHEREUM"},a=o.uiConfig||{accentColor:r.accent,theme:r.colorScheme};return e.signMoonpayOnRampUrl({address:t,useSandbox:n,config:{...o,...i,...a}})}async function sy(e,t){let o=t?$s:zs,r=t?qs:Vs;return ry(`${o}/transactions/ext/${e}`,{query:{apiKey:r}})}function Qc(e,t=!1){let[o,r]=ay(null),{createAnalyticsEvent:n}=A(),i=iy(0);return ny(()=>{let a=setInterval(async()=>{if(e)try{let[l]=await sy(e,t),s=l.status==="waitingAuthorization"&&l.paymentMethod==="credit_debit_card"?"pending":l.status;r(s),["failed","completed","awaitingAuthorization"].includes(s)&&(n(Yc,{status:s,provider:Yn,paymentMethod:l.paymentMethod,cardPaymentType:l.cardPaymentType,currency:l.currency?.code,baseCurrencyAmount:l.baseCurrencyAmount,quoteCurrencyAmount:l.quoteCurrencyAmount,feeAmount:l.feeAmount,extraFeeAmount:l.extraFeeAmount,networkFeeAmount:l.networkFeeAmount}),clearInterval(a))}catch(l){l.response?.status!==404&&(i.current+=1),i.current>=3&&(r("serviceFailure"),n(Yc,{status:"serviceFailure",provider:Yn}),clearInterval(a))}},3e3);return()=>clearInterval(a)},[e,i]),o}import{Fragment as ly,jsx as Jn,jsxs as cy}from"react/jsx-runtime";var Zc=()=>{let{app:e,data:t,navigate:o}=v(),{createAnalyticsEvent:r}=A(),{signedUrl:n}=t.fiatOnRampPrompt;return!e||!n?null:cy(ly,{children:[Jn(T,{title:"Fund account"},"header"),Jn(_,{}),Jn(Kc,{app:e,signedUrl:n,onContinue:()=>{r("sdk_fiat_on_ramp_started",{provider:Yn}),o("FIAT_ON_RAMP_STATUS_SCREEN")}}),Jn(D,{protectedByPrivy:!0})]})};import{ArrowsRightLeftIcon as dy,CheckCircleIcon as py,XCircleIcon as uy}from"@heroicons/react/24/solid";import{useMemo as my}from"react";import Xc from"styled-components";import{Fragment as xa,jsx as ge,jsxs as Po}from"react/jsx-runtime";var ed=()=>{let{app:e,data:t}=v(),{closePrivyModal:o}=A(),{externalTransactionId:r}=t?.fiatOnRampStatus,n=Qc(r||null,e.fiatOnRamp.useSandbox);return Po(xa,{children:[ge(T,{title:"Fund account"},"header"),ge(_,{}),ge(fy,{status:n,onClickCta:o}),ge(D,{protectedByPrivy:!0})]})},hy=e=>{switch(e){case"completed":return{title:"You've funded your account!",body:"It may take a few minutes for the assets to appear.",cta:"Continue"};case"failed":return{title:"Something went wrong!",body:Po(xa,{children:[Po("p",{children:["It looks like there was an issue with your payment. Please contact"," ",ge("a",{href:"https://support.moonpay.com/hc/en-gb",target:"_blank",rel:"noreferrer noopener",style:{textDecoration:"underline"},children:"Moonpay support"})," ","for assistance."]}),ge("p",{style:{fontStyle:"italic"},children:"Note that debit cards typically work better than credit cards here."})]}),cta:"Done"};case"serviceFailure":return{title:"Something went wrong!",body:"MoonPay ran into an error when processing your transaction. Try again?",cta:"Done"};case"waitingAuthorization":return{title:"Processing payment",body:"This may take up to a few hours. You will receive an email when the purchase is complete.",cta:"Continue"};default:return{title:"In Progress",body:"Go back to MoonPay to finish funding your account.",cta:""}}},fy=({status:e,onClickCta:t})=>{let{title:o,body:r,cta:n}=my(()=>hy(e),[e]);return Po(xa,{children:[Po(Cy,{style:{height:"100%",gap:0},children:[ge(vy,{status:e}),Po(Yt,{children:[ge("h3",{children:o}),ge(wy,{children:r})]})]}),n&&ge(de,{children:ge(j,{onClick:t,children:n})})]})},yy=e=>e?{completed:"var(--privy-color-success)",failed:"var(--privy-color-error)",serviceFailure:"var(--privy-color-error)",waitingAuthorization:"var(--privy-color-accent)",pending:"var(--privy-color-foreground-4)"}[e]:"var(--privy-color-foreground-4)",gy=e=>{switch(e){case"serviceFailure":case"failed":return uy;case"completed":return py;case"waitingAuthorization":return()=>ge(dy,{width:"3rem",height:"3rem",style:{backgroundColor:"var(--privy-color-foreground-4)",color:"var(--privy-color-background)",borderRadius:"100%",padding:"0.5rem",margin:"0.5rem"}});default:return}},vy=({status:e})=>{if(!e||e==="pending"){let r="var(--privy-color-foreground-4)";return Po("div",{style:{position:"relative"},children:[ge(Co,{color:r,style:{position:"absolute"}}),ge(ji,{color:r}),ge(Kn,{size:"3rem",style:{position:"absolute",top:"1rem",left:"1rem"}})]})}let t=gy(e),o=yy(e);return ge("div",{style:{borderColor:o,display:"flex",justifyContent:"center",alignItems:"center",borderRadius:"100%",borderWidth:2,padding:"0.5rem",marginBottom:"0.5rem"},children:t&&ge(t,{width:"4rem",height:"4rem",color:o})})},wy=Xc.p`
|
|
1170
1170
|
font-size: 1rem;
|
|
1171
1171
|
color: var(--privy-color-foreground-3);
|
|
1172
1172
|
margin-bottom: 1rem;
|
|
1173
1173
|
display: flex;
|
|
1174
1174
|
flex-direction: column;
|
|
1175
1175
|
gap: 1rem;
|
|
1176
|
-
`,Cy=
|
|
1176
|
+
`,Cy=Xc.div`
|
|
1177
1177
|
display: flex;
|
|
1178
1178
|
flex-direction: column;
|
|
1179
1179
|
align-items: center;
|
|
1180
1180
|
justify-content: center;
|
|
1181
1181
|
margin-left: 1.75rem;
|
|
1182
1182
|
margin-right: 1.75rem;
|
|
1183
|
-
`;import{useState as Oy}from"react";import*as Mt from"react-device-detect";import Et from"styled-components";import
|
|
1183
|
+
`;import{useState as Oy}from"react";import*as Mt from"react-device-detect";import Et from"styled-components";import Ta from"styled-components";import{jsx as td}from"react/jsx-runtime";var od=({style:e,...t})=>td("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:td("path",{strokeLinecap:"round",strokeLinejoin:"round",fillRule:"evenodd",clipRule:"evenodd",d:"M16.5 8.67993C16.5 9.82986 15.853 10.8287 14.9032 11.3322C15.2188 12.3599 14.97 13.5237 14.1569 14.3368C13.3437 15.1499 12.18 15.3987 11.1523 15.0831C10.6488 16.0329 9.64993 16.6799 8.5 16.6799C7.35007 16.6799 6.35126 16.0329 5.84771 15.0831C4.82003 15.3987 3.65627 15.1499 2.84314 14.3368C2.03001 13.5237 1.78124 12.3599 2.09681 11.3322C1.14699 10.8287 0.5 9.82986 0.5 8.67993C0.5 7.53 1.14699 6.53119 2.0968 6.02764C1.78125 4.99996 2.03003 3.83621 2.84315 3.02309C3.65627 2.20997 4.82002 1.96119 5.8477 2.27675C6.35125 1.32692 7.35007 0.679932 8.5 0.679932C9.64992 0.679932 10.6487 1.32691 11.1523 2.27672C12.18 1.96115 13.3437 2.20993 14.1569 3.02305C14.97 3.83618 15.2188 4.99996 14.9032 6.02764C15.853 6.53119 16.5 7.53 16.5 8.67993ZM12.2659 6.68856C12.5654 6.40238 12.5761 5.92763 12.29 5.62818C12.0038 5.32873 11.529 5.31797 11.2296 5.60416C9.73022 7.03711 8.40877 8.65489 7.3018 10.4211L5.78033 8.89963C5.48744 8.60673 5.01256 8.60673 4.71967 8.89963C4.42678 9.19252 4.42678 9.66739 4.71967 9.96029L6.92031 12.1609C7.08544 12.3261 7.31807 12.4048 7.54957 12.374C7.78106 12.3432 7.98499 12.2064 8.1012 12.0038C9.23027 10.0356 10.6362 8.24613 12.2659 6.68856Z",fill:"var(--privy-color-accent)"})});import{jsx as Ey,jsxs as xy}from"react/jsx-runtime";var Qn=Ta.div`
|
|
1184
1184
|
display: flex;
|
|
1185
1185
|
flex-direction: column;
|
|
1186
1186
|
justify-content: flex-start;
|
|
1187
1187
|
gap: 4px;
|
|
1188
|
-
`,_o=
|
|
1188
|
+
`,_o=Ta.div`
|
|
1189
1189
|
&&& {
|
|
1190
1190
|
margin-left: 7px; /* TODO: This is a total hack */
|
|
1191
1191
|
border-left: 2px solid var(--privy-color-foreground-4);
|
|
1192
1192
|
height: 12px;
|
|
1193
1193
|
}
|
|
1194
|
-
`,bt=({children:e})=>xy(by,{children:[Ey(
|
|
1194
|
+
`,bt=({children:e})=>xy(by,{children:[Ey(od,{style:{width:"16px",height:"16px"}}),e]}),by=Ta.div`
|
|
1195
1195
|
display: flex;
|
|
1196
1196
|
justify-content: flex-start;
|
|
1197
1197
|
justify-items: center;
|
|
@@ -1209,7 +1209,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1209
1209
|
margin-bottom: auto;
|
|
1210
1210
|
}
|
|
1211
1211
|
}
|
|
1212
|
-
`;import
|
|
1212
|
+
`;import Ty from"qrcode";import Py from"styled-components";import{Fragment as nr,jsx as _e,jsxs as id}from"react/jsx-runtime";var He=7,Pa=(e,t,o,r,n)=>{for(let i=t;i<t+r;i++)for(let a=o;a<o+n;a++){let l=e?.[a];l&&l[i]&&(l[i]=0)}return e},_y=e=>{let t=Ty.create(e,{errorCorrectionLevel:"high"}).modules,o=Ys(Array.from(t.data),t.size);return o=Pa(o,0,0,He,He),o=Pa(o,o.length-He,0,He,He),o=Pa(o,0,o.length-He,He,He),o},Sy=({x:e,y:t,cellSize:o,bgColor:r,fgColor:n})=>_e(nr,{children:[0,1,2].map(i=>_e("circle",{r:o*(He-i*2)/2,cx:e+o*He/2,cy:t+o*He/2,fill:i%2!==0?r:n},`finder-${e}-${t}-${i}`))}),Ay=({cellSize:e,matrixSize:t,bgColor:o,fgColor:r})=>{let n=[[0,0],[(t-He)*e,0],[0,(t-He)*e]];return _e(nr,{children:n.map(([i,a])=>_e(Sy,{x:i,y:a,cellSize:e,bgColor:o,fgColor:r}))})},ky=({matrix:e,cellSize:t,color:o})=>_e(nr,{children:e.map((r,n)=>r.map((i,a)=>i?_e("circle",{r:t/2.5,cx:n*t+t/2,cy:a*t+t/2,fill:o},`circle-${n}-${a}`):_e(nr,{})))}),rd=(e,t)=>e-e%t,Ry=({outputSize:e,cellSize:t,element:o,size:r,padding:n,bgColor:i})=>{if(!o)return _e(nr,{});let a=r||40,l=n||4,s=o,c=e/2-a/2-l;return id(nr,{children:[_e("rect",{x:rd(c,t),y:rd(c,t),width:a+l*2+(c%t?t+.5:.5),height:a+l*2+(c%t?t+.5:.5),fill:i}),_e(s,{x:e/2-a/2,y:e/2-a/2,height:a,width:a})]})},Wy=e=>{let t=e.outputSize,o=_y(e.url),r=t/o.length;return id("svg",{height:e.outputSize,width:e.outputSize,viewBox:`0 0 ${e.outputSize} ${e.outputSize}`,style:{height:"100%",width:"100%"},children:[_e(ky,{matrix:o,cellSize:r,color:e.fgColor}),_e(Ay,{cellSize:r,matrixSize:o.length,fgColor:e.fgColor,bgColor:e.bgColor}),_e(Ry,{outputSize:e.outputSize,cellSize:r,element:e.logo?.element,bgColor:e.bgColor})]})},Iy=Py.div`
|
|
1213
1213
|
display: flex;
|
|
1214
1214
|
justify-content: center;
|
|
1215
1215
|
align-items: center;
|
|
@@ -1224,7 +1224,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1224
1224
|
border-color: ${e=>e.fgColor};
|
|
1225
1225
|
border-radius: var(--privy-border-radius-md);
|
|
1226
1226
|
}
|
|
1227
|
-
`,
|
|
1227
|
+
`,nd=e=>{let t=e.bgColor||"#FFFFFF",o=e.fgColor||"#000000",r=e.size||160;return _e(Iy,{size:r,bgColor:t,fgColor:o,children:_e(Wy,{url:e.url,logo:{element:e.squareLogoElement},outputSize:r,bgColor:t,fgColor:o})})};import{jsx as Ny}from"react/jsx-runtime";var ad=({size:e})=>Ny(nd,{url:"https://coinbase-wallet.onelink.me/q5Sx/fdb9b250",squareLogoElement:pt,size:e,fgColor:"#1F1F1F"});import{jsx as sd}from"react/jsx-runtime";var ld=e=>sd("svg",{width:"160",height:"160",viewBox:"0 0 160 160",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e,children:sd("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M68.853 62.127c-5.174.517-8.978 4.95-8.978 10.149v15.336c0 5.248 3.873 9.7 9.098 10.196 3.623.344 7.71.64 11.027.64 5.445 0 12.964-.799 17.098-1.294a3.445 3.445 0 0 0 3.027-3.436v-19.05c0-1.75-1.29-3.228-3.027-3.436-3.657-.438-9.961-1.113-15.136-1.264a66.647 66.647 0 0 0-1.965-.03c-.72 0-1.478.013-2.262.04-3.046.1-6.453.373-9.467.669a1.677 1.677 0 0 1-.174-3.347c3.804-.373 8.282-.717 11.903-.717 4.034 0 9.137.427 13.193.847 1.322.137 2.54.274 3.58.397v-1.582c0-1.734-1.264-3.203-2.983-3.426-3.83-.497-10.563-1.267-15.464-1.267-2.848 0-6.314.26-9.47.575Zm25.399 24.581a2.516 2.516 0 1 0 0-5.031 2.516 2.516 0 0 0 0 5.031Z",fill:"var(--privy-color-accent)"})});import{jsx as ve,jsxs as Ly}from"react/jsx-runtime";var cd=({style:e,...t})=>Ly("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:[ve("rect",{x:"198.5",y:"133",width:"50",height:"50",rx:"25",fill:"#E1E7EF"}),ve(we,{x:"206",y:"140",width:"36",height:"36"}),ve("rect",{x:"192",y:"30",width:"50",height:"50",rx:"25",fill:"#0C5BFF"}),ve("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"}),ve("rect",{x:"39.5",y:"18",width:"50",height:"50",rx:"50",fill:"#AB9FF2"}),ve(je,{x:"44.5",y:"23",width:"40",height:"40"}),ve("rect",{x:"46.5",y:"124",width:"50",height:"50",rx:"25",fill:"#141414"}),ve("g",{clipPath:"url(#clip0_428_81)",children:ve("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"})}),ve("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",fill:"var(--privy-color-foreground-accent)"}),ve(ld,{x:"63",y:"17"}),ve("rect",{x:"103.5",y:"58",width:"78",height:"78",rx:"39",stroke:"#E1E7EF",strokeWidth:"2"}),ve("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"}),ve("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"}),ve("defs",{children:ve("clipPath",{id:"clip0_428_81",children:ve("rect",{width:"31.6667",height:"19.1667",fill:"white",transform:"translate(55.6667 139.833)"})})})]});import{Fragment as _a,jsx as R,jsxs as ie}from"react/jsx-runtime";var Sa=()=>{let{navigate:e}=v(),t="https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn?hl=en";return Mt.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/ether-metamask/"),ie(Ra,{children:[R(vt,{title:"Create a MetaMask wallet",description:"Follow the instructions below to get started."}),R(Wa,{children:R(we,{style:{width:"152px",height:"152px"}})}),ie(Qn,{children:[R(bt,{children:ie("div",{children:[R("span",{children:"Install the "}),R("a",{href:t,target:"_blank",children:"MetaMask browser extension"})]})}),R(_o,{}),R(bt,{children:"Set up your first wallet"}),R(_o,{}),R(bt,{children:"Store your recovery phrase in a safe place!"})]}),R(he,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},Aa=()=>{let{navigate:e}=v(),t="https://chrome.google.com/webstore/detail/phantom/bfnaelmomeimhlpmgjnjophhpkkoljpa?hl=en";return Mt.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/phantom-app/"),ie(Ra,{children:[R(vt,{title:"Create a Phantom wallet",description:"Follow the instructions below to get started."}),R(Wa,{children:R(je,{style:{width:"152px",height:"152px"}})}),ie(Qn,{children:[R(bt,{children:ie("div",{children:[R("span",{children:"Install the "}),R("a",{href:t,target:"_blank",children:"Phantom browser extension"})]})}),R(_o,{}),R(bt,{children:"Set up your first wallet"}),R(_o,{}),R(bt,{children:"Store your recovery phrase in a safe place!"})]}),R(he,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},ka=()=>{let{navigate:e}=v();return ie(Ra,{children:[R(vt,{title:"Create a Coinbase wallet",description:"Follow the instructions below to get started."}),R(Wa,{style:{marginTop:"-24px"},children:R(ad,{size:200})}),ie(Qn,{children:[R(bt,{children:"Scan the QR code with your camera"}),R(_o,{}),R(bt,{children:"Set up your first wallet"}),R(_o,{}),R(bt,{children:"Store your seed phrase in a safe place!"})]}),R(he,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},ud=()=>{let[e,t]=Oy("WHAT_IS_A_WALLET"),{navigateBack:o}=v();return ie(_a,{children:[R(T,{backFn:e==="WHAT_IS_A_WALLET"?o:e==="PICK_A_NEW_WALLET"?()=>t("WHAT_IS_A_WALLET"):()=>t("PICK_A_NEW_WALLET")},"header"),R(_,{}),ie(My,{children:[e==="WHAT_IS_A_WALLET"&&ie(_a,{children:[R(Hy,{children:R(cd,{style:{width:"240px",height:"auto",borderRadius:"var(--privy-border-radius-sm)",marginBottom:"32px"}})}),ie(fe,{title:"Get started with a new wallet",children:[R("p",{children:"Wallets help you store, send, and receive digital assets and collectibles. They are also a new\xA0way\xA0to\xA0log\xA0in."}),R("p",{children:"Instead of creating new accounts and passwords for every app, you just connect your wallet and bring your\xA0data\xA0with\xA0you."})]}),R(Fy,{children:R(By,{onClick:()=>{t("PICK_A_NEW_WALLET")},children:"Create a wallet"})})]}),e==="PICK_A_NEW_WALLET"&&R(_a,{children:ie(Dy,{children:[R(vt,{title:"Create a new wallet",description:"Select one of the wallet providers below to get started."}),ie(Uy,{children:[ie(dd,{onClick:()=>{Mt.isIOS?window.location.href="https://apps.apple.com/us/app/metamask-blockchain-wallet/id1438144202":Mt.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=io.metamask":t("CREATE_METAMASK_WALLET")},children:[R(we,{}),ie(pd,{children:[R("h4",{children:"MetaMask"}),R("p",{children:"Get a browser-based wallet"})]})]}),ie(dd,{onClick:()=>{Mt.isIOS?window.location.href="https://apps.apple.com/us/app/coinbase-wallet-nfts-crypto/id1278383455":Mt.isAndroid?window.location.href="https://play.google.com/store/apps/details?id=org.toshi":t("CREATE_COINBASE_WALLET")},children:[R(pt,{}),ie(pd,{children:[R("h4",{children:"Coinbase Wallet"}),R("p",{children:"Get a mobile app wallet"})]})]})]})]})}),e==="CREATE_COINBASE_WALLET"&&R(ka,{}),e==="CREATE_METAMASK_WALLET"&&R(Sa,{}),e==="CREATE_PHANTOM_WALLET"&&R(Aa,{})]}),R(W,{}),ie(J,{children:[R("span",{children:"Still not sure? "}),R("a",{target:"_blank",href:"https://ethereum.org/en/wallets/",children:"Learn more"}),"."]})]})},My=Et.div`
|
|
1228
1228
|
display: flex;
|
|
1229
1229
|
flex-direction: column;
|
|
1230
1230
|
height: 100%;
|
|
@@ -1247,7 +1247,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1247
1247
|
flex-direction: column;
|
|
1248
1248
|
width: 100%;
|
|
1249
1249
|
gap: 8px;
|
|
1250
|
-
`,
|
|
1250
|
+
`,dd=Et.button`
|
|
1251
1251
|
display: flex;
|
|
1252
1252
|
flex-direction: row;
|
|
1253
1253
|
align-items: center;
|
|
@@ -1280,7 +1280,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1280
1280
|
:hover {
|
|
1281
1281
|
border: 1px solid var(--privy-color-accent-light);
|
|
1282
1282
|
}
|
|
1283
|
-
`,
|
|
1283
|
+
`,pd=Et.div`
|
|
1284
1284
|
text-align: left;
|
|
1285
1285
|
|
|
1286
1286
|
p {
|
|
@@ -1297,7 +1297,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1297
1297
|
&& {
|
|
1298
1298
|
margin-top: 14px;
|
|
1299
1299
|
}
|
|
1300
|
-
`,
|
|
1300
|
+
`,Ra=Et.div`
|
|
1301
1301
|
display: flex;
|
|
1302
1302
|
flex-direction: column;
|
|
1303
1303
|
align-items: center;
|
|
@@ -1309,7 +1309,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1309
1309
|
> :first-child > svg {
|
|
1310
1310
|
margin-top: 20px;
|
|
1311
1311
|
}
|
|
1312
|
-
`,
|
|
1312
|
+
`,Wa=Et.div`
|
|
1313
1313
|
display: flex;
|
|
1314
1314
|
flex-direction: column;
|
|
1315
1315
|
align-items: center;
|
|
@@ -1319,7 +1319,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1319
1319
|
display: flex;
|
|
1320
1320
|
justify-content: center;
|
|
1321
1321
|
flex-grow: 1;
|
|
1322
|
-
`;import{Fragment as Gy,jsx as
|
|
1322
|
+
`;import{Fragment as Gy,jsx as ir,jsxs as md}from"react/jsx-runtime";var hd=()=>{let{navigateBack:e}=v();return md(Gy,{children:[ir(T,{backFn:e},"header"),ir(_,{}),ir(ka,{}),ir(W,{}),md(J,{children:[ir("span",{children:"Still not sure? "}),ir("a",{target:"_blank",href:"https://ethereum.org/en/wallets/",children:"Learn more"})]})]})};import{Fragment as zy,jsx as ar,jsxs as fd}from"react/jsx-runtime";var yd=()=>{let{navigateBack:e}=v();return fd(zy,{children:[ar(T,{backFn:e},"header"),ar(_,{}),ar(Sa,{}),ar(W,{}),fd(J,{children:[ar("span",{children:"Still not sure? "}),ar("a",{target:"_blank",href:"https://ethereum.org/en/wallets/",children:"Learn more"})]})]})};import{Fragment as $y,jsx as sr,jsxs as gd}from"react/jsx-runtime";var vd=()=>{let{navigateBack:e}=v();return gd($y,{children:[sr(T,{backFn:e},"header"),sr(_,{}),sr(Aa,{}),sr(W,{}),gd(J,{children:[sr("span",{children:"Still not sure? "}),sr("a",{target:"_blank",href:"https://ethereum.org/en/wallets/",children:"Learn more"})]})]})};import{useState as lg}from"react";import{isMobile as Td}from"react-device-detect";import lr from"styled-components";import{EnvelopeIcon as Vy}from"@heroicons/react/24/outline";import{useEffect as Ia,useState as Na}from"react";import Oa from"styled-components";import{Fragment as Yy,jsx as So,jsxs as La}from"react/jsx-runtime";var Zn=e=>{let[t,o]=Na(""),[r,n]=Na(!1),[i,a]=Na(null),{isLinking:l,initLoginWithEmail:s,captchaData:c}=A(),{app:h,navigate:m}=v(),w=h?.loginMethods.wallet??!1;Ia(()=>{document.querySelector("#email-input")?.focus()},[]);let f=js(t),b=()=>{n(!0),s(t,c.token).then(()=>{c.enabled&&c.remove(),m("AWAITING_PASSWORDLESS_CODE")}).catch(g=>{g?.status===422?a(g.message):g?.privyErrorCode==="allowlist_rejected"?m("ALLOWLIST_REJECTION_SCREEN"):(console.error(g),a("Issue submitting email")),n(!1)})},S="Get started without a wallet.";i?S=i:l?S="\u200B":w||(S="Get started quickly with email");let P=c.enabled&&!c.token&&!c.error,E=c.error!==void 0;return Ia(()=>{c.error&&a("Issue verifying you are a human")},[c.error]),Ia(()=>{c.ready&&c.execute()},[c.ready]),La(Yy,{children:[La(qy,{stacked:e.stacked,children:[La(jy,{standalone:e.stacked,children:[So(Vy,{}),So("input",{id:"email-input",type:"email",placeholder:"your@email.com",onChange:g=>o(g.target.value),onKeyUp:g=>{g.key==="Enter"&&b()},value:t,autoComplete:"email"})]}),e.stacked?null:So(Wn,{disabled:r||!f||P||E,onClick:b,children:r||P?So(jt,{}):"Submit"})]}),c.enabled&&So("div",{id:"cf-turnstile"}),So(Ky,{fail:!!i,children:S}),e.stacked?So(j,{loading:r||P,loadingText:null,disabled:r||!f||P||E,onClick:b,children:"Submit"}):null]})},qy=Oa.div`
|
|
1323
1323
|
width: 100%;
|
|
1324
1324
|
height: ${e=>e.stacked?"100%":"auto"};
|
|
1325
1325
|
|
|
@@ -1331,7 +1331,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1331
1331
|
@media (max-width: 440px) {
|
|
1332
1332
|
margin-top: 20px;
|
|
1333
1333
|
}
|
|
1334
|
-
`,jy=
|
|
1334
|
+
`,jy=Oa.label`
|
|
1335
1335
|
display: flex;
|
|
1336
1336
|
flex-direction: row;
|
|
1337
1337
|
align-items: center;
|
|
@@ -1368,7 +1368,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1368
1368
|
line-height: 24px;
|
|
1369
1369
|
}
|
|
1370
1370
|
}
|
|
1371
|
-
`,Ky=
|
|
1371
|
+
`,Ky=Oa.div`
|
|
1372
1372
|
line-height: 20px;
|
|
1373
1373
|
height: 20px;
|
|
1374
1374
|
font-size: 13px;
|
|
@@ -1381,7 +1381,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1381
1381
|
> a {
|
|
1382
1382
|
text-decoration: underline;
|
|
1383
1383
|
}
|
|
1384
|
-
`;import{PhoneIcon as Jy}from"@heroicons/react/24/outline";import{useEffect as
|
|
1384
|
+
`;import{PhoneIcon as Jy}from"@heroicons/react/24/outline";import{useEffect as Ma,useState as Da}from"react";import Fa from"styled-components";import{Fragment as eg,jsx as Ao,jsxs as Ua}from"react/jsx-runtime";var Xn=e=>{let[t,o]=Da(""),[r,n]=Da(!1),[i,a]=Da(null),{isLinking:l,initLoginWithSms:s,captchaData:c}=A(),{app:h,navigate:m}=v(),w=h?.loginMethods.wallet??!1;Ma(()=>{document.querySelector("#phone-number-input")?.focus()},[]);let f=Ks(t),b=()=>{n(!0),s(t,c.token).then(()=>{c.enabled&&c.remove(),m("AWAITING_PASSWORDLESS_CODE")}).catch(g=>{g?.status===422?a(g.message):g?.privyErrorCode==="allowlist_rejected"?m("ALLOWLIST_REJECTION_SCREEN"):(console.error(g),a("Issue submitting phone number")),n(!1)})},S="Get started without a wallet.";i?S=i:l?S="\u200B":w||(S="Get started quickly with your phone");let P=c.enabled&&!c.token&&!c.error,E=c.error!==void 0;return Ma(()=>{c.error&&a("Issue verifying you are a human")},[c.error]),Ma(()=>{c.ready&&c.execute()},[c.ready]),Ua(eg,{children:[Ua(Qy,{stacked:e.stacked,children:[Ua(Zy,{standalone:e.stacked,children:[Ao(Jy,{}),Ao("input",{id:"phone-number-input",type:"tel",placeholder:"555 555 5555",onChange:g=>{o(g.target.value)},onKeyUp:g=>{g.key==="Enter"&&b()},value:t,autoComplete:"tel"})]}),e.stacked?null:Ao(Wn,{disabled:r||!f||P||E,onClick:b,children:r||P?Ao(jt,{}):"Submit"})]}),c.enabled&&Ao("div",{id:"cf-turnstile"}),Ao(Xy,{fail:!!i,children:S}),e.stacked?Ao(j,{loading:r||P,loadingText:null,disabled:r||!f||P||E,onClick:b,children:"Submit"}):null]})},Qy=Fa.div`
|
|
1385
1385
|
display: flex;
|
|
1386
1386
|
border: 1px solid var(--privy-color-foreground-4);
|
|
1387
1387
|
width: 100%;
|
|
@@ -1395,7 +1395,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1395
1395
|
@media (max-width: 440px) {
|
|
1396
1396
|
margin-top: 20px;
|
|
1397
1397
|
}
|
|
1398
|
-
`,Zy=
|
|
1398
|
+
`,Zy=Fa.label`
|
|
1399
1399
|
display: flex;
|
|
1400
1400
|
flex-direction: row;
|
|
1401
1401
|
align-items: center;
|
|
@@ -1432,7 +1432,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1432
1432
|
line-height: 24px;
|
|
1433
1433
|
}
|
|
1434
1434
|
}
|
|
1435
|
-
`,Xy=
|
|
1435
|
+
`,Xy=Fa.div`
|
|
1436
1436
|
line-height: 20px;
|
|
1437
1437
|
height: 20px;
|
|
1438
1438
|
font-size: 13px;
|
|
@@ -1445,12 +1445,12 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1445
1445
|
> a {
|
|
1446
1446
|
text-decoration: underline;
|
|
1447
1447
|
}
|
|
1448
|
-
`;import{useState as ig}from"react";import bd from"styled-components";import{jsx as vd,jsxs as tg}from"react/jsx-runtime";var Zn=({style:e,...t})=>tg("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:[vd("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"}),vd("path",{d:"M14.3295 3.51373C15.0909 2.58347 15.6043 1.28921 15.4641 0C14.3671 0.0455014 13.0396 0.738135 12.2532 1.66838C11.5494 2.48994 10.9307 3.80695 11.0986 5.07089C12.3183 5.16694 13.5681 4.44145 14.3295 3.51373Z",fill:"currentColor"})]});import{jsx as Ur,jsxs as og}from"react/jsx-runtime";var Xn=({style:e,...t})=>og("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:[Ur("g",{clipPath:"url(#clip0)",children:Ur("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"})}),Ur("defs",{children:Ur("clipPath",{id:"clip0",children:Ur("rect",{width:"71",height:"55",fill:"white"})})})]});import{jsx as wd}from"react/jsx-runtime";var ei=({style:e,...t})=>wd("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:wd("path",{d:"M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z",fill:"currentColor"})});import{jsx as ti,jsxs as rg}from"react/jsx-runtime";var oi=({style:e,...t})=>rg("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:[ti("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"}),ti("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"}),ti("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"}),ti("path",{d:"M12 5.375C13.615 5.375 15.065 5.93 16.205 7.02L19.36 3.865C17.455 2.09 14.965 1 12 1C7.70004 1 3.98004 3.465 2.17004 7.06L5.84504 9.91C6.71004 7.31 9.13504 5.375 12 5.375Z",fill:"#EA4335"})]});import{jsx as ri}from"react/jsx-runtime";function ni({style:e,...t}){return ri("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",viewBox:"0,0,256,256",style:{height:"26px",width:"26px",...e},...t,children:ri("g",{fill:"#0077b5",strokeWidth:"1",strokeLinecap:"butt",strokeLinejoin:"miter",strokeMiterlimit:"10",style:{mixBlendMode:"normal"},children:ri("g",{transform:"scale(5.12,5.12)",children:ri("path",{d:"M41,4h-32c-2.76,0 -5,2.24 -5,5v32c0,2.76 2.24,5 5,5h32c2.76,0 5,-2.24 5,-5v-32c0,-2.76 -2.24,-5 -5,-5zM17,20v19h-6v-19zM11,14.47c0,-1.4 1.2,-2.47 3,-2.47c1.8,0 2.93,1.07 3,2.47c0,1.4 -1.12,2.53 -3,2.53c-1.8,0 -3,-1.13 -3,-2.53zM39,39h-6c0,0 0,-9.26 0,-10c0,-2 -1,-4 -3.5,-4.04h-0.08c-2.42,0 -3.42,2.06 -3.42,4.04c0,0.91 0,10 0,10h-6v-19h6v2.56c0,0 1.93,-2.56 5.81,-2.56c3.97,0 7.19,2.73 7.19,8.26z"})})})})}import{jsx as Fa,jsxs as ng}from"react/jsx-runtime";function ii(e){return ng("svg",{xmlns:"http://www.w3.org/2000/svg",fillRule:"evenodd",clipRule:"evenodd",imageRendering:"optimizeQuality",shapeRendering:"geometricPrecision",textRendering:"geometricPrecision",viewBox:"0 0 293768 333327",width:24,height:24,...e,children:[Fa("path",{fill:"#26f4ee",d:"M204958 0c5369 45832 32829 78170 77253 81022v43471l-287 27V87593c-44424-2850-69965-30183-75333-76015l-47060-1v192819c6791 86790-60835 89368-86703 56462 30342 18977 79608 6642 73766-68039V0h58365zM78515 319644c-26591-5471-50770-21358-64969-44588-34496-56437-3401-148418 96651-157884v54345l-164 27v-40773C17274 145544 7961 245185 33650 286633c9906 15984 26169 27227 44864 33011z"}),Fa("path",{fill:"#fb2c53",d:"M218434 11587c3505 29920 15609 55386 35948 70259-27522-10602-43651-34934-47791-70262l11843 3zm63489 82463c3786 804 7734 1348 11844 1611v51530c-25770 2537-48321-5946-74600-21749l4034 88251c0 28460 106 41467-15166 67648-34260 58734-95927 63376-137628 35401 54529 22502 137077-4810 136916-103049v-96320c26279 15803 48830 24286 74600 21748V94050zm-171890 37247c5390-1122 11048-1985 16998-2548v54345c-21666 3569-35427 10222-41862 22528-20267 38754 5827 69491 35017 74111-33931 5638-73721-28750-49999-74111 6434-12304 18180-18959 39846-22528v-51797zm64479-119719h1808-1808z"}),Fa("path",{d:"M206590 11578c5369 45832 30910 73164 75333 76015v51528c-25770 2539-48321-5945-74600-21748v96320c206 125717-135035 135283-173673 72939-25688-41449-16376-141089 76383-155862v52323c-21666 3569-33412 10224-39846 22528-39762 76035 98926 121273 89342-1225V11577l47060 1z",fill:"currentColor"})]})}import{jsx as Cd}from"react/jsx-runtime";var ai=({style:e,...t})=>Cd("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:Cd("path",{d:"M7.54311 19.7551C16.5973 19.7551 21.5516 12.2467 21.5516 5.74656C21.5516 5.53533 21.5516 5.32409 21.542 5.11286C22.5021 4.42156 23.3375 3.54783 24 2.55888C23.1166 2.95254 22.1661 3.21178 21.1675 3.3366C22.1853 2.73171 22.963 1.76196 23.3375 0.609788C22.3869 1.17627 21.3308 1.57953 20.2074 1.80037C19.3049 0.840223 18.0279 0.244934 16.6165 0.244934C13.8993 0.244934 11.6909 2.45326 11.6909 5.17047C11.6909 5.55453 11.7389 5.92898 11.8157 6.29384C7.72554 6.09221 4.09619 4.12391 1.66703 1.14747C1.24457 1.87718 1.00453 2.72211 1.00453 3.62464C1.00453 5.3337 1.87826 6.84112 3.19366 7.72445C2.38714 7.69565 1.62862 7.47481 0.966125 7.10996C0.966125 7.12916 0.966125 7.14837 0.966125 7.17717C0.966125 9.55833 2.66558 11.5554 4.91232 12.0067C4.49945 12.1219 4.06739 12.1795 3.61612 12.1795C3.29927 12.1795 2.99203 12.1507 2.69438 12.0931C3.31848 14.0518 5.14275 15.4728 7.29347 15.5112C5.60362 16.8362 3.4817 17.6235 1.17736 17.6235C0.783698 17.6235 0.390039 17.6043 0.00598145 17.5563C2.17591 18.9389 4.76829 19.7551 7.54311 19.7551Z",fill:"#1da1f2"})});import{jsx as We,jsxs as sg}from"react/jsx-runtime";var Ed=({showGoogle:e,showTwitter:t,showDiscord:o,showGithub:r,showTiktok:n,showLinkedIn:i,showApple:a})=>{let[l,s]=ig(!1),{initLoginWithOAuth:c}=A(),{app:h}=v(),m=h?.appearance.palette.colorScheme;return sg(ag,{children:[e&&We(ko,{onClick:()=>{s(!0),c("google")},disabled:l,children:We(oi,{})}),t&&We(ko,{onClick:()=>{s(!0),c("twitter")},disabled:l,children:We(ai,{})}),o&&We(ko,{onClick:()=>{s(!0),c("discord")},disabled:l,children:We(Xn,{})}),r&&We(ko,{onClick:()=>{s(!0),c("github")},disabled:l,children:We(ei,{style:{color:m==="light"?"#000":"#fff"}})}),n&&We(ko,{onClick:()=>{s(!0),c("tiktok")},disabled:l,children:We(ii,{style:{color:m==="light"?"#000":"#fff"}})}),i&&We(ko,{onClick:()=>{s(!0),c("linkedin")},disabled:l,children:We(ni,{})}),a&&We(ko,{onClick:()=>{s(!0),c("apple")},disabled:l,children:We(Zn,{style:{color:m==="light"?"#000":"#fff"}})})]})},ag=bd.div`
|
|
1448
|
+
`;import{useState as ig}from"react";import Ed from"styled-components";import{jsx as wd,jsxs as tg}from"react/jsx-runtime";var ei=({style:e,...t})=>tg("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:[wd("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"}),wd("path",{d:"M14.3295 3.51373C15.0909 2.58347 15.6043 1.28921 15.4641 0C14.3671 0.0455014 13.0396 0.738135 12.2532 1.66838C11.5494 2.48994 10.9307 3.80695 11.0986 5.07089C12.3183 5.16694 13.5681 4.44145 14.3295 3.51373Z",fill:"currentColor"})]});import{jsx as Br,jsxs as og}from"react/jsx-runtime";var ti=({style:e,...t})=>og("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:[Br("g",{clipPath:"url(#clip0)",children:Br("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"})}),Br("defs",{children:Br("clipPath",{id:"clip0",children:Br("rect",{width:"71",height:"55",fill:"white"})})})]});import{jsx as Cd}from"react/jsx-runtime";var oi=({style:e,...t})=>Cd("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:Cd("path",{d:"M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z",fill:"currentColor"})});import{jsx as ri,jsxs as rg}from"react/jsx-runtime";var ni=({style:e,...t})=>rg("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:[ri("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"}),ri("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"}),ri("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"}),ri("path",{d:"M12 5.375C13.615 5.375 15.065 5.93 16.205 7.02L19.36 3.865C17.455 2.09 14.965 1 12 1C7.70004 1 3.98004 3.465 2.17004 7.06L5.84504 9.91C6.71004 7.31 9.13504 5.375 12 5.375Z",fill:"#EA4335"})]});import{jsx as ii}from"react/jsx-runtime";function ai({style:e,...t}){return ii("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",viewBox:"0,0,256,256",style:{height:"26px",width:"26px",...e},...t,children:ii("g",{fill:"#0077b5",strokeWidth:"1",strokeLinecap:"butt",strokeLinejoin:"miter",strokeMiterlimit:"10",style:{mixBlendMode:"normal"},children:ii("g",{transform:"scale(5.12,5.12)",children:ii("path",{d:"M41,4h-32c-2.76,0 -5,2.24 -5,5v32c0,2.76 2.24,5 5,5h32c2.76,0 5,-2.24 5,-5v-32c0,-2.76 -2.24,-5 -5,-5zM17,20v19h-6v-19zM11,14.47c0,-1.4 1.2,-2.47 3,-2.47c1.8,0 2.93,1.07 3,2.47c0,1.4 -1.12,2.53 -3,2.53c-1.8,0 -3,-1.13 -3,-2.53zM39,39h-6c0,0 0,-9.26 0,-10c0,-2 -1,-4 -3.5,-4.04h-0.08c-2.42,0 -3.42,2.06 -3.42,4.04c0,0.91 0,10 0,10h-6v-19h6v2.56c0,0 1.93,-2.56 5.81,-2.56c3.97,0 7.19,2.73 7.19,8.26z"})})})})}import{jsx as Ba,jsxs as ng}from"react/jsx-runtime";function si(e){return ng("svg",{xmlns:"http://www.w3.org/2000/svg",fillRule:"evenodd",clipRule:"evenodd",imageRendering:"optimizeQuality",shapeRendering:"geometricPrecision",textRendering:"geometricPrecision",viewBox:"0 0 293768 333327",width:24,height:24,...e,children:[Ba("path",{fill:"#26f4ee",d:"M204958 0c5369 45832 32829 78170 77253 81022v43471l-287 27V87593c-44424-2850-69965-30183-75333-76015l-47060-1v192819c6791 86790-60835 89368-86703 56462 30342 18977 79608 6642 73766-68039V0h58365zM78515 319644c-26591-5471-50770-21358-64969-44588-34496-56437-3401-148418 96651-157884v54345l-164 27v-40773C17274 145544 7961 245185 33650 286633c9906 15984 26169 27227 44864 33011z"}),Ba("path",{fill:"#fb2c53",d:"M218434 11587c3505 29920 15609 55386 35948 70259-27522-10602-43651-34934-47791-70262l11843 3zm63489 82463c3786 804 7734 1348 11844 1611v51530c-25770 2537-48321-5946-74600-21749l4034 88251c0 28460 106 41467-15166 67648-34260 58734-95927 63376-137628 35401 54529 22502 137077-4810 136916-103049v-96320c26279 15803 48830 24286 74600 21748V94050zm-171890 37247c5390-1122 11048-1985 16998-2548v54345c-21666 3569-35427 10222-41862 22528-20267 38754 5827 69491 35017 74111-33931 5638-73721-28750-49999-74111 6434-12304 18180-18959 39846-22528v-51797zm64479-119719h1808-1808z"}),Ba("path",{d:"M206590 11578c5369 45832 30910 73164 75333 76015v51528c-25770 2539-48321-5945-74600-21748v96320c206 125717-135035 135283-173673 72939-25688-41449-16376-141089 76383-155862v52323c-21666 3569-33412 10224-39846 22528-39762 76035 98926 121273 89342-1225V11577l47060 1z",fill:"currentColor"})]})}import{jsx as bd}from"react/jsx-runtime";var li=({style:e,...t})=>bd("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:bd("path",{d:"M7.54311 19.7551C16.5973 19.7551 21.5516 12.2467 21.5516 5.74656C21.5516 5.53533 21.5516 5.32409 21.542 5.11286C22.5021 4.42156 23.3375 3.54783 24 2.55888C23.1166 2.95254 22.1661 3.21178 21.1675 3.3366C22.1853 2.73171 22.963 1.76196 23.3375 0.609788C22.3869 1.17627 21.3308 1.57953 20.2074 1.80037C19.3049 0.840223 18.0279 0.244934 16.6165 0.244934C13.8993 0.244934 11.6909 2.45326 11.6909 5.17047C11.6909 5.55453 11.7389 5.92898 11.8157 6.29384C7.72554 6.09221 4.09619 4.12391 1.66703 1.14747C1.24457 1.87718 1.00453 2.72211 1.00453 3.62464C1.00453 5.3337 1.87826 6.84112 3.19366 7.72445C2.38714 7.69565 1.62862 7.47481 0.966125 7.10996C0.966125 7.12916 0.966125 7.14837 0.966125 7.17717C0.966125 9.55833 2.66558 11.5554 4.91232 12.0067C4.49945 12.1219 4.06739 12.1795 3.61612 12.1795C3.29927 12.1795 2.99203 12.1507 2.69438 12.0931C3.31848 14.0518 5.14275 15.4728 7.29347 15.5112C5.60362 16.8362 3.4817 17.6235 1.17736 17.6235C0.783698 17.6235 0.390039 17.6043 0.00598145 17.5563C2.17591 18.9389 4.76829 19.7551 7.54311 19.7551Z",fill:"#1da1f2"})});import{jsx as We,jsxs as sg}from"react/jsx-runtime";var xd=({showGoogle:e,showTwitter:t,showDiscord:o,showGithub:r,showTiktok:n,showLinkedIn:i,showApple:a})=>{let[l,s]=ig(!1),{initLoginWithOAuth:c}=A(),{app:h}=v(),m=h?.appearance.palette.colorScheme;return sg(ag,{children:[e&&We(ko,{onClick:()=>{s(!0),c("google")},disabled:l,children:We(ni,{})}),t&&We(ko,{onClick:()=>{s(!0),c("twitter")},disabled:l,children:We(li,{})}),o&&We(ko,{onClick:()=>{s(!0),c("discord")},disabled:l,children:We(ti,{})}),r&&We(ko,{onClick:()=>{s(!0),c("github")},disabled:l,children:We(oi,{style:{color:m==="light"?"#000":"#fff"}})}),n&&We(ko,{onClick:()=>{s(!0),c("tiktok")},disabled:l,children:We(si,{style:{color:m==="light"?"#000":"#fff"}})}),i&&We(ko,{onClick:()=>{s(!0),c("linkedin")},disabled:l,children:We(ai,{})}),a&&We(ko,{onClick:()=>{s(!0),c("apple")},disabled:l,children:We(ei,{style:{color:m==="light"?"#000":"#fff"}})})]})},ag=Ed.div`
|
|
1449
1449
|
display: flex;
|
|
1450
1450
|
justify-content: space-between;
|
|
1451
1451
|
width: 100%;
|
|
1452
1452
|
gap: 4px;
|
|
1453
|
-
`,ko=
|
|
1453
|
+
`,ko=Ed.button`
|
|
1454
1454
|
&& {
|
|
1455
1455
|
border-radius: var(--privy-border-radius-sm);
|
|
1456
1456
|
cursor: pointer;
|
|
@@ -1472,13 +1472,13 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1472
1472
|
background-color: var(--privy-color-background-2);
|
|
1473
1473
|
}
|
|
1474
1474
|
}
|
|
1475
|
-
`;import{Fragment as
|
|
1475
|
+
`;import{Fragment as Ha,jsx as oe,jsxs as Ro}from"react/jsx-runtime";var _d=()=>{let{app:e,outerClickRef:t}=v(),{captchaData:o,closePrivyModal:r}=A(),n=e?.loginMethods.email??!1,i=e?.loginMethods.sms??!1,a=e?.loginMethods.wallet??!1,l=e?.loginMethods.google??!1,s=e?.loginMethods.twitter??!1,c=e?.loginMethods.discord??!1,h=e?.loginMethods.github??!1,m=e?.loginMethods.tiktok??!1,w=e?.loginMethods.linkedin??!1,f=e?.loginMethods.apple??!1,b=!e?.appearance.showWalletLoginFirst,S=a&&e?.appearance.showWalletLoginFirst?0:1,[P,E]=lg(S),g=P==0,I=P==1,N=a,k=n||i,O=N!==k,U=()=>{o.enabled&&o.remove(),r()};return t&&(t.current=U),Ro(Ha,{children:[oe(T,{onClose:U},"header"),e?.appearance.logo?oe(mg,{hasOnlyOneSection:O,hasTerms:!!(e?.legal.privacyPolicyUrl||e?.legal.termsAndConditionsUrl),children:oe(Mn,{})}):null,Ro(hg,{reverse:b,children:[N&&oe(cg,{active:g||O,connectOnly:!1,tabIndex:b?1:0,onClick:()=>{o.enabled&&o.remove(),E(0)},isOnlySection:!k}),k&&oe(dg,{active:I||O,onClick:()=>E(1),email:n,sms:i,google:l,twitter:s,twitterOAuthOnMobileEnabled:e?.loginConfig.twitterOAuthOnMobileEnabled??!1,discord:c,github:h,tiktok:m,linkedin:w,apple:f,tabIndex:b?0:1,isOnlySection:!N})]}),e&&oe(In,{app:e}),oe(D,{protectedByPrivy:!0})]})};function cg(e){return Ro(Ad,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,tabIndex:e.tabIndex,children:[oe(Sd,{active:e.active,children:oe("h4",{children:"Connect Wallet"})}),e.active&&Ro(Ha,{children:[oe(Zt,{connectOnly:e.connectOnly}),oe(Xt,{})]})]})}function dg(e){let t=!Td||e.twitterOAuthOnMobileEnabled&&Td,o=e.google||e.discord||e.github||e.tiktok||e.linkedin||e.twitter&&t||e.apple,r=e.email?"Email":"Phone";return Ro(Ad,{active:e.active,onClick:e.onClick,isOnlySection:e.isOnlySection,tabIndex:e.tabIndex,children:[e.isOnlySection?null:oe(Sd,{active:e.active,children:oe("h4",{children:o?`${r} & Social`:r})}),e.active&&e.email&&oe(Zn,{}),e.active&&e.sms&&!e.email&&oe(Xn,{}),e.active&&o&&oe(pg,{google:e.google,twitter:e.twitter&&t,discord:e.discord,github:e.github,tiktok:e.tiktok,linkedin:e.linkedin,apple:e.apple})]})}function pg(e){return Ro(Ha,{children:[Ro(ug,{children:[oe(Pd,{}),oe("p",{children:" Or "}),oe(Pd,{})]}),oe(xd,{showGoogle:e.google,showDiscord:e.discord,showGithub:e.github,showLinkedIn:e.linkedin,showTwitter:e.twitter,showTiktok:e.tiktok,showApple:e.apple})]})}var Sd=lr.div`
|
|
1476
1476
|
font-weight: ${e=>e.active?600:500};
|
|
1477
1477
|
color: ${e=>e.active?"var(--privy-color-foreground)":"var(--privy-color-foreground-2)"};
|
|
1478
1478
|
display: flex;
|
|
1479
1479
|
justify-content: center;
|
|
1480
1480
|
align-items: center;
|
|
1481
|
-
`,
|
|
1481
|
+
`,Ad=lr.div.attrs({role:"button"})`
|
|
1482
1482
|
display: flex;
|
|
1483
1483
|
flex-direction: column;
|
|
1484
1484
|
align-items: flex-start;
|
|
@@ -1504,7 +1504,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1504
1504
|
}
|
|
1505
1505
|
|
|
1506
1506
|
cursor: ${e=>e.active?"inherit":"pointer"};
|
|
1507
|
-
`,ug=
|
|
1507
|
+
`,ug=lr.div`
|
|
1508
1508
|
display: flex;
|
|
1509
1509
|
justify-content: center;
|
|
1510
1510
|
align-items: center;
|
|
@@ -1513,13 +1513,13 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1513
1513
|
&& > p {
|
|
1514
1514
|
color: var(--privy-color-foreground-3);
|
|
1515
1515
|
}
|
|
1516
|
-
`,Pd=
|
|
1516
|
+
`,Pd=lr.hr`
|
|
1517
1517
|
width: 50%;
|
|
1518
1518
|
&& {
|
|
1519
1519
|
border-top: 1px solid var(--privy-color-foreground-4);
|
|
1520
1520
|
margin: 0px 8px;
|
|
1521
1521
|
}
|
|
1522
|
-
`,mg=
|
|
1522
|
+
`,mg=lr.div`
|
|
1523
1523
|
display: flex;
|
|
1524
1524
|
flex-direction: column;
|
|
1525
1525
|
align-items: center;
|
|
@@ -1530,9 +1530,9 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1530
1530
|
@media (max-width: 440px) {
|
|
1531
1531
|
padding: 10px 10px 20px;
|
|
1532
1532
|
}
|
|
1533
|
-
`,hg=
|
|
1533
|
+
`,hg=lr(de)`
|
|
1534
1534
|
flex-direction: ${e=>e.reverse?"column-reverse":"column"};
|
|
1535
|
-
`;import{EnvelopeIcon as fg}from"@heroicons/react/24/outline";import{Fragment as yg,jsx as
|
|
1535
|
+
`;import{EnvelopeIcon as fg}from"@heroicons/react/24/outline";import{Fragment as yg,jsx as io,jsxs as gg}from"react/jsx-runtime";var kd=()=>{let{app:e}=v();return gg(yg,{children:[io(T,{},"header"),io(_,{}),io(fe,{title:"Connect your email",description:`Add your email to your ${e?.name} account`,icon:io(fg,{color:"var(--privy-color-accent)",strokeWidth:2,height:"48px",width:"48px"})}),io(de,{children:io(Zn,{stacked:!0})}),io(W,{}),io(D,{protectedByPrivy:!0})]})};import{PhoneIcon as vg}from"@heroicons/react/24/outline";import{Fragment as wg,jsx as ao,jsxs as Cg}from"react/jsx-runtime";var Rd=()=>{let{app:e}=v();return Cg(wg,{children:[ao(T,{},"header"),ao(_,{}),ao(fe,{title:"Connect your phone",description:`Add your number to your ${e?.name} account`,icon:ao(vg,{color:"var(--privy-color-accent)",strokeWidth:2,height:"40px",width:"40px"})}),ao(de,{children:ao(Xn,{stacked:!0})}),ao(W,{}),ao(D,{protectedByPrivy:!0})]})};import{Fragment as bg,jsx as Wo,jsxs as Wd}from"react/jsx-runtime";var Id=()=>{let{linkingHint:e}=A(),{app:t}=v(),o=e?`Select the wallet with ${$t(e)} and follow the instructions to reconnect your wallet${t?.name?` to ${t.name}.`:"."}`:`Link a wallet to your ${t?.name} account`;return Wd(bg,{children:[Wo(T,{},"header"),Wo(_,{}),Wo(Jt,{title:`${e?"Reconnect":"Connect"} your wallet`,description:o}),Wd(de,{children:[Wo(Zt,{connectOnly:!1}),Wo(Xt,{})]}),Wo(W,{}),Wo(D,{protectedByPrivy:!0})]})};import{jsx as Nd,jsxs as Eg}from"react/jsx-runtime";var Ld=({style:e,...t})=>Eg("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:[Nd("circle",{cx:"82",cy:"82",r:"80",stroke:"#EC6351","stroke-width":"4","stroke-linecap":"round"}),Nd("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M81.9999 100.788C93.3288 100.788 102.513 91.6043 102.513 80.2754C102.513 68.9465 93.3288 59.7626 81.9999 59.7626C70.671 59.7626 61.4871 68.9465 61.4871 80.2754C61.4871 91.6043 70.671 100.788 81.9999 100.788ZM88.3236 71.8304C88.9093 71.2446 89.8591 71.2446 90.4449 71.8304C91.0307 72.4161 91.0307 73.3659 90.4449 73.9517L84.121 80.2756L90.445 86.5996C91.0308 87.1854 91.0308 88.1351 90.445 88.7209C89.8592 89.3067 88.9095 89.3067 88.3237 88.7209L81.9997 82.3969L75.6756 88.7209C75.0899 89.3067 74.1401 89.3067 73.5543 88.7209C72.9685 88.1351 72.9685 87.1854 73.5543 86.5996L79.8783 80.2756L73.5544 73.9517C72.9686 73.3659 72.9686 72.4161 73.5544 71.8304C74.1402 71.2446 75.09 71.2446 75.6758 71.8304L81.9997 78.1543L88.3236 71.8304Z",fill:"#EC6351"})]});import{Fragment as xg,jsx as so,jsxs as Od}from"react/jsx-runtime";var Md=()=>{let{closePrivyModal:e}=A(),{navigate:t}=v();return Od(xg,{children:[so(T,{},"header"),so(_,{}),so(Ld,{style:{width:"160px",height:"160px",margin:"0 auto 20px"}}),so(Jt,{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"}}),Od(de,{children:[so(j,{onClick:()=>t("LANDING"),children:"Try again"}),so(kn,{onClick:()=>e(),children:"Cancel"})]}),so(W,{}),so(D,{protectedByPrivy:!0})]})};import{useEffect as Dd,useState as Ud}from"react";import Bd from"styled-components";function Ga(e){return e.charAt(0).toUpperCase()+e.slice(1)}import{Fragment as _g,jsx as Dt,jsxs as di}from"react/jsx-runtime";var Fd={google:{name:"Google",component:ni},discord:{name:"Discord",component:ti},github:{name:"Github",component:oi},linkedin:{name:"LinkedIn",component:ai},twitter:{name:"Twitter",component:li},tiktok:{name:"Tiktok",component:si},apple:{name:"Apple",component:ei}},ci=()=>{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)},Hd=()=>{let{user:e,authenticated:t}=V(),{app:o,setModalData:r,navigate:n,resetNavigation:i,data:a}=v(),{getAuthMeta:l,initLoginWithOAuth:s,loginWithOAuth:c,updateWallets:h,closePrivyModal:m}=A(),[w,f]=Ud(!1),[b,S]=Ud(void 0),P=l()?.provider||"google",E=Fd[P].name,g=Fd[P].component,I=o?.render.inDialog?De:0;Dd(()=>{c().then(()=>{ci(),f(!0)}).catch(O=>{let U={retryable:!1,message:"Authentication failed"};if(O?.privyErrorCode==="allowlist_rejected"){S(void 0),i(),n("ALLOWLIST_REJECTION_SCREEN"),ci();return}else O?.privyErrorCode==="linked_to_another_user"?U.detail="This account has already been linked to another user.":O?.privyErrorCode==="invalid_credentials"?(U.retryable=!0,U.detail="Something went wrong. Try again."):O.privyErrorCode==="oauth_user_denied"&&(U.detail=`Retry and check ${Ga(P)} to finish connecting your account.`,U.retryable=!0);ci(),S(U)}).finally(()=>{a?.finishOauthFlow?.onComplete?.()})},[]),Dd(()=>{if(t&&w&&e)if(zt(e,o?.embeddedWallets?.createOnLogin)){let U=setTimeout(()=>{r({createWallet:{onSuccess:()=>{},onFailure:se=>console.error(se),callAuthOnSuccessOnClose:!0}}),n("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},I);return()=>clearTimeout(U)}else{let U=setTimeout(m,I);return h(),()=>clearTimeout(U)}},[t,w,e]);let N=w?`Successfully connected with ${E}`:b?b.message:`Verifying connection to ${E}`,k="";return w?k="You\u2019re good to go!":b?k=b.detail:k="Just a few moments more",di(_g,{children:[Dt(T,{}),Dt(_,{}),di(Tg,{children:[Dt(Pg,{children:di("div",{children:[Dt(Pn,{success:w,fail:!!b}),Dt(g,{style:{width:"38px",height:"38px"}})]})}),di(Yt,{children:[Dt("h3",{children:N}),Dt("p",{children:k})]}),b&&b?.retryable?Dt(he,{onClick:()=>{ci(),s(P),S(void 0)},disabled:!w&&!b?.retryable,children:"Retry"}):null]}),Dt(J,{})]})},Tg=Bd.div`
|
|
1536
1536
|
display: flex;
|
|
1537
1537
|
flex-direction: column;
|
|
1538
1538
|
align-items: center;
|
|
@@ -1540,7 +1540,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1540
1540
|
margin-left: 27px;
|
|
1541
1541
|
margin-right: 27px;
|
|
1542
1542
|
gap: 24px;
|
|
1543
|
-
`,
|
|
1543
|
+
`,Pg=Bd.div`
|
|
1544
1544
|
display: flex;
|
|
1545
1545
|
flex-direction: column;
|
|
1546
1546
|
justify-content: center;
|
|
@@ -1563,9 +1563,9 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1563
1563
|
left: -19px;
|
|
1564
1564
|
top: -19px;
|
|
1565
1565
|
}
|
|
1566
|
-
`;import{useEffect as Ag,useState as
|
|
1566
|
+
`;import{useEffect as Ag,useState as zd}from"react";import kg from"styled-components";import{isMobile as Sg}from"react-device-detect";var Gd=(e,t)=>{let o=new URL(window.location.href),r=encodeURIComponent(o.href.replace(/\/$/g,"")+`?privy_token=${e}&privy_connector=injected&privy_wallet_client=phantom`);if(!qe()&&Sg)return`${t?"phantom://":"https://phantom.app/ul/"}browse/${r}?ref=${r}`};import{Fragment as Wg,jsx as Ut,jsxs as $d}from"react/jsx-runtime";var Vd=()=>{let{forkSession:e,ready:t,authenticated:o}=V(),[r,n]=zd(""),[i,a]=zd(!1);Ag(()=>{t&&o&&e().then(n)},[t,o]);let l=Gd(r,!i),s={title:"Redirecting to Phantom Mobile Wallet",description:"We'll take you to the Phantom Mobile Wallet app to continue your login experience.",footnote:""};return t&&(s.description="For the best experience, we'll automatically log you into the Phantom Mobile Wallet in-app browser.",s.footnote="Once you're done, you can always return here and refresh to view your updated account."),i&&(s.title="Still here?",s.description="You may need to install the Phantom mobile app.",s.footnote="Once you're done, you can return here or connect via Phantom's in-app browser."),$d(Wg,{children:[Ut(T,{},"header"),Ut(_,{}),Ut(Jt,{title:s.title,description:s.description}),$d(de,{children:[Ut(Rg,{children:Ut(je,{style:{width:"72px",height:"72px"}})}),Ut(An,{href:l,onClick:()=>{setTimeout(()=>a(!0),1e3)},loading:t&&!l,children:i?"Go to App Store":"Continue"}),s.footnote?Ut("p",{children:s.footnote}):null]}),Ut(W,{}),Ut(D,{protectedByPrivy:!0})]})},Rg=kg(Yi)`
|
|
1567
1567
|
margin: 16px auto;
|
|
1568
|
-
`;import{StaticJsonRpcProvider as A1}from"@ethersproject/providers";import{useMemo as
|
|
1568
|
+
`;import{StaticJsonRpcProvider as A1}from"@ethersproject/providers";import{useMemo as Rp,useEffect as Wp,useState as No}from"react";import hr from"styled-components";import mp from"styled-components";import jd from"styled-components";import{jsx as qd,jsxs as Lg}from"react/jsx-runtime";var pi=({label:e,children:t,valueStyles:o})=>Lg(Ig,{children:[qd("div",{children:e}),qd(Ng,{style:{...o},children:t})]}),Ig=jd.div`
|
|
1569
1569
|
display: flex;
|
|
1570
1570
|
align-items: center;
|
|
1571
1571
|
justify-content: space-between;
|
|
@@ -1580,7 +1580,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1580
1580
|
color: var(--privy-color-foreground-2);
|
|
1581
1581
|
text-align: right;
|
|
1582
1582
|
}
|
|
1583
|
-
`,Ng=
|
|
1583
|
+
`,Ng=jd.div`
|
|
1584
1584
|
font-size: 14px;
|
|
1585
1585
|
line-height: 100%;
|
|
1586
1586
|
display: flex;
|
|
@@ -1589,28 +1589,28 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1589
1589
|
border-radius: var(--privy-border-radius-full);
|
|
1590
1590
|
background-color: var(--privy-color-background-2);
|
|
1591
1591
|
padding: 4px 8px;
|
|
1592
|
-
`;import
|
|
1592
|
+
`;import mi from"styled-components";import{BigNumber as Kd}from"@ethersproject/bignumber";import{formatEther as Yd}from"@ethersproject/units";var Hr=(e,t)=>{let o=(t*parseFloat(Yd(e))).toFixed(2);return o!=="0.00"?`$${o}`:"<$0.01"},xt=(e,t,o=6,r=!1)=>{let i=parseFloat(Yd(e)).toFixed(o).replace(/0+$/,"").replace(/\.$/,"");return r?`${i} ${t}`:`${i==="0"?"<0.001":i} ${t}`},za=e=>e.map(lo).reduce((t,o)=>t.add(o),Kd.from(0)).toHexString(),Jd=(e,t)=>{let{chains:o}=A(),r=`https://etherscan.io/address/${t}`,n=`${Zs(e,o)}/address/${t}`;if(!n)return r;try{new URL(n)}catch{return r}return n},lo=e=>Kd.from(e);import{Fragment as Ug,jsx as ui,jsxs as Qd}from"react/jsx-runtime";var Zd=({weiQuantities:e,tokenPrice:t,tokenSymbol:o})=>{let r=za(e),n=t?Hr(r,t):void 0,i=xt(r,o);return ui(Xd,{children:n||i})},$a=({weiQuantities:e,tokenPrice:t,tokenSymbol:o})=>{let r=za(e),n=t?Hr(r,t):void 0,i=xt(r,o);return ui(Xd,{children:n?Qd(Ug,{children:[ui(Og,{children:"USD"}),n==="<$0.01"?Qd(Dg,{children:[ui(Mg,{children:"<"}),"$0.01"]}):n]}):i})},Xd=mi.span`
|
|
1593
1593
|
font-size: 14px;
|
|
1594
1594
|
line-height: 140%;
|
|
1595
1595
|
display: flex;
|
|
1596
1596
|
gap: 4px;
|
|
1597
1597
|
align-items: center;
|
|
1598
|
-
`,Og=
|
|
1598
|
+
`,Og=mi.span`
|
|
1599
1599
|
font-size: 12px;
|
|
1600
1600
|
line-height: 12px;
|
|
1601
1601
|
color: var(--privy-color-foreground-3);
|
|
1602
|
-
`,Mg=
|
|
1602
|
+
`,Mg=mi.span`
|
|
1603
1603
|
font-size: 10px;
|
|
1604
|
-
`,Dg=
|
|
1604
|
+
`,Dg=mi.span`
|
|
1605
1605
|
display: flex;
|
|
1606
1606
|
align-items: center;
|
|
1607
|
-
`;import
|
|
1607
|
+
`;import Va from"styled-components";import{jsx as co,jsxs as hi}from"react/jsx-runtime";var ep=({gas:e,tokenPrice:t,tokenSymbol:o})=>hi(Ji,{style:{paddingBottom:"12px"},children:[hi(op,{children:[co(np,{children:"Est. Fees"}),co("div",{children:co($a,{weiQuantities:[e],tokenPrice:t,tokenSymbol:o})})]}),t&&co(rp,{children:`${xt(e,o)}`})]}),tp=({transactionData:e,gas:t,tokenPrice:o,tokenSymbol:r})=>{let n=lo(e.value||0).add(lo(t)).toHexString();return hi(Ji,{children:[hi(op,{children:[co(np,{children:"Total (including fees)"}),co("div",{children:co($a,{weiQuantities:[e.value||0,t],tokenPrice:o,tokenSymbol:r})})]}),o&&co(rp,{children:xt(n,r)})]})},op=Va.div`
|
|
1608
1608
|
display: flex;
|
|
1609
1609
|
flex-direction: row;
|
|
1610
1610
|
justify-content: space-between;
|
|
1611
1611
|
align-items: center;
|
|
1612
1612
|
padding-top: 4px;
|
|
1613
|
-
`,
|
|
1613
|
+
`,rp=Va.div`
|
|
1614
1614
|
display: flex;
|
|
1615
1615
|
flex-direction: row;
|
|
1616
1616
|
height: 12px;
|
|
@@ -1619,23 +1619,23 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1619
1619
|
line-height: 12px;
|
|
1620
1620
|
color: var(--privy-color-foreground-3);
|
|
1621
1621
|
font-weight: 400;
|
|
1622
|
-
`,
|
|
1622
|
+
`,np=Va.div`
|
|
1623
1623
|
font-size: 14px;
|
|
1624
1624
|
line-height: 22.4px;
|
|
1625
1625
|
font-weight: 400;
|
|
1626
|
-
`;import{ChevronDownIcon as Fg}from"@heroicons/react/24/outline";import{useContext as Io,useState as Bg}from"react";import
|
|
1626
|
+
`;import{ChevronDownIcon as Fg}from"@heroicons/react/24/outline";import{useContext as Io,useState as Bg}from"react";import po from"styled-components";import{createContext as ip,useContext as QT}from"react";var cr=ip(void 0);var Gr=ip(void 0);import{Fragment as Kg,jsx as lt,jsxs as ap}from"react/jsx-runtime";var sp=({defaultValue:e,children:t})=>{let[o,r]=Bg(e||null),n=i=>{r(o===i?null:i)};return lt(cr.Provider,{value:{activePanel:o,togglePanel:n},children:lt(Hg,{children:t})})},lp=({value:e,children:t})=>{let{activePanel:o,togglePanel:r}=Io(cr),n=o===e;return lt(Gr.Provider,{value:{onToggle:()=>r(e),value:e},children:lt(Vg,{isActive:n,"data-open":n,children:t})})},cp=({children:e})=>{let{activePanel:t}=Io(cr),{onToggle:o,value:r}=Io(Gr),n=t===r;return ap(Kg,{children:[ap(Gg,{onClick:o,"data-open":n,children:[lt($g,{children:e}),lt(jg,{isactive:n,children:lt(Fg,{height:"16px",width:"16px",strokeWidth:"2"})})]}),lt(zg,{})]})},dp=({children:e})=>{let{activePanel:t}=Io(cr),{value:o}=Io(Gr);return lt(qg,{"data-open":t===o,children:lt(up,{children:e})})},pp=({children:e})=>{let{activePanel:t}=Io(cr),{value:o}=Io(Gr);return lt(up,{children:typeof e=="function"?e({isActive:t===o}):e})},Hg=po.div`
|
|
1627
1627
|
display: flex;
|
|
1628
1628
|
flex-direction: column;
|
|
1629
1629
|
width: 100%;
|
|
1630
1630
|
gap: 8px;
|
|
1631
|
-
`,Gg=
|
|
1631
|
+
`,Gg=po.div`
|
|
1632
1632
|
display: flex;
|
|
1633
1633
|
justify-content: space-between;
|
|
1634
1634
|
align-items: center;
|
|
1635
1635
|
width: 100%;
|
|
1636
1636
|
cursor: pointer;
|
|
1637
1637
|
padding-bottom: 8px;
|
|
1638
|
-
`,zg=
|
|
1638
|
+
`,zg=po.div`
|
|
1639
1639
|
width: 100%;
|
|
1640
1640
|
|
|
1641
1641
|
&& {
|
|
@@ -1643,13 +1643,13 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1643
1643
|
border-color: var(--privy-color-foreground-4);
|
|
1644
1644
|
}
|
|
1645
1645
|
padding-bottom: 12px;
|
|
1646
|
-
`,$g=
|
|
1646
|
+
`,$g=po.div`
|
|
1647
1647
|
font-size: 14px;
|
|
1648
1648
|
font-weight: 500;
|
|
1649
1649
|
line-height: 19.6px;
|
|
1650
1650
|
width: 100%;
|
|
1651
1651
|
padding-right: 8px;
|
|
1652
|
-
`,Vg=
|
|
1652
|
+
`,Vg=po.div`
|
|
1653
1653
|
display: flex;
|
|
1654
1654
|
flex-direction: column;
|
|
1655
1655
|
width: 100%;
|
|
@@ -1661,7 +1661,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1661
1661
|
border-color: var(--privy-color-foreground-4);
|
|
1662
1662
|
border-radius: var(--privy-border-radius-md);
|
|
1663
1663
|
}
|
|
1664
|
-
`,qg=
|
|
1664
|
+
`,qg=po.div`
|
|
1665
1665
|
position: relative;
|
|
1666
1666
|
overflow: hidden;
|
|
1667
1667
|
transition: max-height 0.35s ease-in-out;
|
|
@@ -1673,36 +1673,36 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1673
1673
|
&[data-open='false'] {
|
|
1674
1674
|
max-height: 0;
|
|
1675
1675
|
}
|
|
1676
|
-
`,
|
|
1676
|
+
`,up=po.div`
|
|
1677
1677
|
display: flex;
|
|
1678
1678
|
flex-direction: column;
|
|
1679
1679
|
gap: 12px;
|
|
1680
1680
|
flex: 1 1 auto;
|
|
1681
1681
|
min-height: 1px;
|
|
1682
|
-
`,jg=
|
|
1682
|
+
`,jg=po.div`
|
|
1683
1683
|
transform: ${e=>e.isactive?"rotate(180deg)":"rotate(0deg)"};
|
|
1684
|
-
`;import Yg from"styled-components";import{jsx as Qg}from"react/jsx-runtime";var
|
|
1684
|
+
`;import Yg from"styled-components";import{jsx as Qg}from"react/jsx-runtime";var qa=({walletAddress:e,chainId:t=dt})=>Qg(Jg,{href:Jd(t,e),target:"_blank",children:$t(e)}),Jg=Yg.a`
|
|
1685
1685
|
&:hover {
|
|
1686
1686
|
text-decoration: underline;
|
|
1687
1687
|
}
|
|
1688
|
-
`;import{jsx as Ge,jsxs as
|
|
1688
|
+
`;import{jsx as Ge,jsxs as ja}from"react/jsx-runtime";var fi=({from:e,to:t,txn:o,transactionInfo:r,tokenPrice:n,gas:i,tokenSymbol:a})=>{let l=o?.value||0;return Ge(sp,{children:ja(lp,{value:"details",children:[Ge(cp,{children:ja(Zg,{children:[Ge("div",{children:r?.title||r?.actionDescription||"Details"}),Ge(Xg,{children:Ge(Zd,{weiQuantities:[l],tokenPrice:n,tokenSymbol:a})})]})}),ja(dp,{children:[Ge(pi,{label:"From",children:Ge(qa,{walletAddress:e,chainId:o.chainId||dt})}),Ge(pi,{label:"To",children:Ge(qa,{walletAddress:t,chainId:o.chainId||dt})}),r&&r.action&&Ge(pi,{label:"Action",children:r.action}),i&&Ge(ep,{transactionData:o,gas:i,tokenPrice:n,tokenSymbol:a})]}),Ge(pp,{children:({isActive:s})=>Ge(tp,{transactionData:o,displayFee:s,gas:i||"0x0",tokenPrice:n,tokenSymbol:a})})]})})},Zg=mp.div`
|
|
1689
1689
|
display: flex;
|
|
1690
1690
|
flex-direction: row;
|
|
1691
1691
|
justify-content: space-between;
|
|
1692
|
-
`,Xg=
|
|
1692
|
+
`,Xg=mp.div`
|
|
1693
1693
|
flex-shrink: 0;
|
|
1694
1694
|
padding-left: 8px;
|
|
1695
|
-
`;import
|
|
1695
|
+
`;import $r from"styled-components";import{jsx as zr,jsxs as i1}from"react/jsx-runtime";var Ka=({description:e,contractInfo:t})=>i1(e1,{children:[t.imgUrl&&zr(t1,{size:t.imgSize||"sm",src:t.imgUrl,alt:t.imgAltText||`${t.name} image`}),t.url&&zr(o1,{children:zr("a",{href:t.url,target:"_blank",rel:"noopener noreferrer",children:t.url.replace(/^(https?:\/\/)(www\.)?/,"")})}),t.name&&zr(r1,{children:t.name}),zr(n1,{children:e||t.actionText})]}),e1=$r.div`
|
|
1696
1696
|
display: flex;
|
|
1697
1697
|
flex-direction: column;
|
|
1698
1698
|
align-items: center;
|
|
1699
1699
|
margin-bottom: 8px;
|
|
1700
|
-
`,t1
|
|
1700
|
+
`,t1=$r.img`
|
|
1701
1701
|
height: ${e=>e.size==="sm"?"65px":"140px"};
|
|
1702
1702
|
width: ${e=>e.size==="sm"?"65px":"140px"};
|
|
1703
1703
|
border-radius: 16px;
|
|
1704
1704
|
margin-bottom: 12px;
|
|
1705
|
-
`,o1
|
|
1705
|
+
`,o1=$r.div`
|
|
1706
1706
|
font-size: 12px;
|
|
1707
1707
|
line-height: 12px;
|
|
1708
1708
|
padding: 7px;
|
|
@@ -1715,7 +1715,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1715
1715
|
text-decoration: underline;
|
|
1716
1716
|
}
|
|
1717
1717
|
}
|
|
1718
|
-
`,r1
|
|
1718
|
+
`,r1=$r.div`
|
|
1719
1719
|
font-size: 18px;
|
|
1720
1720
|
line-height: 18px;
|
|
1721
1721
|
font-weight: 500;
|
|
@@ -1723,7 +1723,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1723
1723
|
white-space: nowrap;
|
|
1724
1724
|
max-width: 275px;
|
|
1725
1725
|
text-overflow: ellipsis;
|
|
1726
|
-
`,n1
|
|
1726
|
+
`,n1=$r.div`
|
|
1727
1727
|
font-size: 16px;
|
|
1728
1728
|
line-height: 140%;
|
|
1729
1729
|
font-weight: 400;
|
|
@@ -1731,7 +1731,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1731
1731
|
overflow: hidden;
|
|
1732
1732
|
max-width: 275px;
|
|
1733
1733
|
text-overflow: ellipsis;
|
|
1734
|
-
`;import{WalletIcon as m1}from"@heroicons/react/24/outline";import{useState as
|
|
1734
|
+
`;import{WalletIcon as m1}from"@heroicons/react/24/outline";import{useState as Ja,useEffect as h1}from"react";import Za from"styled-components";import{VoidSigner as l1}from"@ethersproject/abstract-signer";import{EtherscanProvider as NP}from"@ethersproject/providers";import{parseUnits as hp}from"@ethersproject/units";import{ofetch as a1}from"ofetch";var Vr={id:137,name:"Polygon Mainnet",network:"matic",nativeCurrency:{name:"MATIC",symbol:"MATIC",decimals:18},rpcUrls:{alchemy:{http:["https://polygon-mainnet.g.alchemy.com/v2"],webSocket:["wss://polygon-mainnet.g.alchemy.com/v2"]},infura:{http:["https://polygon-mainnet.infura.io/v3"],webSocket:["wss://polygon-mainnet.infura.io/ws/v3"]},default:{http:["https://polygon-rpc.com"]},public:{http:["https://polygon-rpc.com"]}},blockExplorers:{etherscan:{name:"PolygonScan",url:"https://polygonscan.com"},default:{name:"PolygonScan",url:"https://polygonscan.com"}}};var qr={id:80001,name:"Mumbai",network:"maticmum",nativeCurrency:{name:"MATIC",symbol:"MATIC",decimals:18},rpcUrls:{alchemy:{http:["https://polygon-mumbai.g.alchemy.com/v2"],webSocket:["wss://polygon-mumbai.g.alchemy.com/v2"]},infura:{http:["https://polygon-mumbai.infura.io/v3"],webSocket:["wss://polygon-mumbai.infura.io/ws/v3"]},default:{http:["https://matic-mumbai.chainstacklabs.com"]},public:{http:["https://matic-mumbai.chainstacklabs.com"]}},blockExplorers:{etherscan:{name:"PolygonScan",url:"https://mumbai.polygonscan.com"},default:{name:"PolygonScan",url:"https://mumbai.polygonscan.com"}},testnet:!0};var fp=[Vr.id,qr.id],Ya=e=>({maxPriorityFee:hp(e.maxPriorityFee.toFixed(9),"gwei").toHexString(),maxFee:hp(e.maxFee.toFixed(9),"gwei").toHexString()}),s1=e=>({safeLow:Ya(e.safeLow),standard:Ya(e.standard),fast:Ya(e.fast)}),yp=async e=>{let t="";switch(e){case Vr.id:t="https://gasstation.polygon.technology/v2";break;case qr.id:t="https://gasstation-testnet.polygon.technology/v2";break;default:throw Error(`chainId ${e} does not support polygon gas stations`)}return s1(await a1(t))};function dr(e){if(typeof e=="number"||typeof e=="bigint"||typeof e=="string")return e;if(typeof e.toHexString=="function")return e.toHexString();throw new Error(`Expected numeric value but received ${e}`)}function c1(e){let t={};return e.to!==void 0&&(t.to=e.to),e.data!==void 0&&(t.data=e.data),e.chainId!==void 0&&(t.chainId=e.chainId),e.type!==void 0&&(t.type=e.type),e.accessList!==void 0&&(t.accessList=e.accessList),e.nonce!==void 0&&(t.nonce=dr(e.nonce)),e.gasLimit!==void 0&&(t.gasLimit=dr(e.gasLimit)),e.gasPrice!==void 0&&(t.gasPrice=dr(e.gasPrice)),e.value!==void 0&&(t.value=dr(e.value)),e.maxFeePerGas!==void 0&&(t.maxFeePerGas=dr(e.maxFeePerGas)),e.maxPriorityFeePerGas!==void 0&&(t.maxPriorityFeePerGas=dr(e.maxPriorityFeePerGas)),t}async function yi(e,t,o){t.chainId=Number(t.chainId),vp(t);let r=new l1(e,o);if(delete t.gas,fp.includes(t.chainId)&&(!t.maxPriorityFeePerGas||!t.maxFeePerGas))try{let{standard:i}=await yp(t.chainId);t.maxPriorityFeePerGas||(t.maxPriorityFeePerGas=i.maxPriorityFee),t.maxFeePerGas||(t.maxFeePerGas=i.maxFee)}catch(i){throw new Error(`Failed to set gas prices from Polygon gas station with error: ${i}.`)}let n=await r.populateTransaction(t);return c1(n)}async function gi(e,t,o,r,n){r=Object.assign({chainId:dt},r),vp(r);let a=(await o.rpc({address:t,accessToken:e,request:{method:"eth_signTransaction",params:[r]}})).response.data,s=await(await n.sendTransaction(a)).wait();return u1(s)}async function vi(e,t,o){let r=await o.getBalance(e),n=t.value||0,i=r.sub(lo(n)),a=!i.isNegative()&&!i.isZero();return{balance:r,hasSufficientFunds:a}}async function gp(e,t){return delete e.from,await t.estimateGas(e)}function vp(e){let t=["gasLimit","gasPrice","value","maxPriorityFeePerGas","maxFeePerGas"];for(let o of t){let r=e[o];if(!(typeof r>"u")&&!d1(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 d1(e){let t=typeof e=="number",o=typeof e=="bigint",r=typeof e=="string"&&p1(e);return t||o||r}function p1(e){return/^-?0x[a-f0-9]+$/i.test(e)}function u1(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?e.effectiveGasPrice.toHexString():void 0}}import{jsx as wp,jsxs as Qa}from"react/jsx-runtime";var Cp=({wallet:e,txn:t,provider:o})=>{let[r,n]=Ja(),[i,a]=Ja(!1),[l,s]=Ja(!1),{nativeTokenSymbolForChainId:c}=A(),h=c(t.chainId)||"ETH";return h1(()=>{(async w=>{try{let{balance:f,hasSufficientFunds:b}=await vi(w,t,o);s(!0),a(b===!1),n(f.toHexString())}catch(f){console.warn(`Failed to fetch wallet balance with error: ${f}`)}})(e.address)},[e,t]),Qa(f1,{children:[Qa(y1,{children:[wp(m1,{strokeWidth:"2",width:"16px",height:"16px"}),wp("div",{children:$t(e?.address)})]}),Qa(g1,{displayBalanceColor:l,hasFunds:!i,children:[r?xt(r,h,6,!0):0," available"]})]})},f1=Za.div`
|
|
1735
1735
|
display: flex;
|
|
1736
1736
|
flex-direction: row;
|
|
1737
1737
|
justify-content: space-between;
|
|
@@ -1744,12 +1744,12 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1744
1744
|
border: 1px solid var(--privy-color-foreground-4);
|
|
1745
1745
|
border-radius: var(--privy-border-radius-md);
|
|
1746
1746
|
}
|
|
1747
|
-
`,y1=
|
|
1747
|
+
`,y1=Za.div`
|
|
1748
1748
|
display: flex;
|
|
1749
1749
|
flex-direction: row;
|
|
1750
1750
|
align-items: center;
|
|
1751
1751
|
gap: 8px;
|
|
1752
|
-
`,g1=
|
|
1752
|
+
`,g1=Za.div`
|
|
1753
1753
|
display: flex;
|
|
1754
1754
|
align-items: center;
|
|
1755
1755
|
justify-content: center;
|
|
@@ -1759,77 +1759,77 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1759
1759
|
background-color: var(--privy-color-background-2);
|
|
1760
1760
|
padding: 5px 8px;
|
|
1761
1761
|
color: ${e=>e.displayBalanceColor?e.hasFunds?"var(--privy-color-success-dark)":"var(--privy-color-error)":"inherit"};
|
|
1762
|
-
`;import
|
|
1762
|
+
`;import wi from"styled-components";import{Fragment as Ep,jsx as jr,jsxs as xp}from"react/jsx-runtime";var Tp=({description:e,txn:t,tokenSymbol:o,tokenPrice:r})=>{let n=t.value||0,i=r?Hr(n,r):void 0,a=xt(n,o);return xp(v1,{children:[i?xp(Ep,{children:[jr(bp,{children:i}),jr(w1,{children:a})]}):jr(Ep,{children:jr(bp,{children:a})}),jr(C1,{children:e})]})},v1=wi.div`
|
|
1763
1763
|
display: flex;
|
|
1764
1764
|
flex-direction: column;
|
|
1765
1765
|
align-items: center;
|
|
1766
1766
|
margin-bottom: 20px;
|
|
1767
|
-
`,
|
|
1767
|
+
`,bp=wi.h2`
|
|
1768
1768
|
&& {
|
|
1769
1769
|
font-size: 48px;
|
|
1770
1770
|
line-height: 48px;
|
|
1771
1771
|
margin: 8px auto;
|
|
1772
1772
|
}
|
|
1773
|
-
`,w1=
|
|
1773
|
+
`,w1=wi.p`
|
|
1774
1774
|
margin-bottom: 12px;
|
|
1775
1775
|
&& {
|
|
1776
1776
|
font-size: 17px;
|
|
1777
1777
|
line-height: 17px;
|
|
1778
1778
|
color: var(--privy-color-foreground-3);
|
|
1779
1779
|
}
|
|
1780
|
-
`,C1=
|
|
1780
|
+
`,C1=wi.div`
|
|
1781
1781
|
font-size: 16px;
|
|
1782
1782
|
line-height: 22.4px;
|
|
1783
1783
|
font-weight: 400;
|
|
1784
1784
|
overflow: hidden;
|
|
1785
1785
|
max-width: 275px;
|
|
1786
1786
|
text-overflow: ellipsis;
|
|
1787
|
-
`;function Pp(e){return e.to&&e.data?"CONTRACT_CALL":e.to&&e.value?"SEND":"UNKNOWN"}import{StaticJsonRpcProvider as b1}from"@ethersproject/providers";import{useState as
|
|
1787
|
+
`;function Pp(e){return e.to&&e.data?"CONTRACT_CALL":e.to&&e.value?"SEND":"UNKNOWN"}import{StaticJsonRpcProvider as b1}from"@ethersproject/providers";import{useState as pr,useEffect as _p,useMemo as E1}from"react";var Sp=e=>{let{getUsdTokenPrice:t,chains:o,rpcConfig:r}=A(),[n,i]=pr(!0),[a,l]=pr(!0),[s,c]=pr(void 0),[h,m]=pr(void 0),[w,f]=pr(void 0),[b,S]=pr(null),P=E1(()=>new b1(ot(e.chainId||dt,o,r)),[e.chainId,o,r]);return _p(()=>{let E=e.chainId||dt,g=o.find(N=>N.id===Number(E));if(!g)throw new F(`Unsupported chain: ${E}`);(async()=>{try{i(!0);let N=await t(g);N?f(N):m(new Error(`Unable to fetch token price on chain id ${g.id}`))}catch(N){m(N)}finally{i(!1)}})()},[e.chainId]),_p(()=>{(async()=>{try{l(!0);let g=await gp(e,P);S(g.toBigInt())}catch(g){c(g)}finally{l(!1)}})()},[e]),{tokenPrice:w,estimatedGas:b,isTokenPriceLoading:n,isGasPriceLoading:a,tokenPriceError:h,gasError:s}};import{createContext as x1,useContext as T1}from"react";var Xa=x1({wallets:[]});function es(){return T1(Xa)}import Ap from"styled-components";import{Fragment as S1,jsx as ur,jsxs as ts}from"react/jsx-runtime";var kp=({txn:e,receipt:t,transactionInfo:o,onClose:r,tokenPrice:n,tokenSymbol:i})=>ts(S1,{children:[ur(T,{onClose:r}),ts(P1,{children:[ts("div",{children:[ur(vt,{title:"Transaction complete!",description:"You're all set."}),ur(fi,{tokenPrice:n,from:t.from,to:t.to,gas:t.gasUsed,txn:e,transactionInfo:o,tokenSymbol:i})]}),ur("div",{children:ur(_1,{loading:!1,onClick:r,children:"All Done"})})]}),ur(J,{})]}),P1=Ap.div`
|
|
1788
1788
|
display: flex;
|
|
1789
1789
|
height: 100%;
|
|
1790
1790
|
flex-direction: column;
|
|
1791
1791
|
justify-content: space-between;
|
|
1792
1792
|
flex-grow: 1;
|
|
1793
|
-
`,_1=
|
|
1793
|
+
`,_1=Ap(j)`
|
|
1794
1794
|
margin-top: 24px;
|
|
1795
1795
|
transition: color 350ms ease, background-color 350ms ease;
|
|
1796
|
-
`;import{Fragment as
|
|
1796
|
+
`;import{Fragment as os,jsx as ue,jsxs as mr}from"react/jsx-runtime";var k1=({txn:e,txnFamily:t,uiOptions:o,tokenSymbol:r,tokenPrice:n})=>{if(t==="CONTRACT_CALL"){if(o.transactionInfo?.contractInfo)return ue(Ka,{contractInfo:o.transactionInfo.contractInfo,description:o.description});if(o.senderInfo)return ue(Ka,{contractInfo:o.senderInfo,description:o.description||o.senderInfo.actionText})}return ue(os,{children:ue(Tp,{description:o.description||o.transactionInfo?.description||"",txn:e,tokenSymbol:r,tokenPrice:n})})},Np=()=>{let{authenticated:e,getAccessToken:t}=V(),{wallets:o}=es(),{walletProxy:r,closePrivyModal:n,getFiatOnRampConfig:i,rpcConfig:a,chains:l,nativeTokenSymbolForChainId:s}=A(),{app:c,navigate:h,data:m,outerClickRef:w,setModalData:f}=v(),{transactionRequest:b,onSuccess:S,onFailure:P,uiOptions:E,fundWalletConfig:g}=m.sendTransaction,[I,N]=No(null),[k,O]=No(""),[U,se]=No(),[B,K]=No(!1),[H,Y]=No(!0),[L,Ie]=No(!1),[G,q]=No(b),{tokenPrice:Ce,estimatedGas:le,isTokenPriceLoading:z}=Sp(G),Xe=s(b.chainId)||"ETH";Wp(()=>{e||(h("LANDING"),P(new Error("User must be authenticated before transacting with a Privy wallet")))},[e]);let be=Rp(()=>o.find(Ne=>Ne.walletClientType==="privy"),[o]),Mo=async()=>{if(!be)return console.warn("No privy wallet found, cannot fund wallet.");let{signedUrl:Ne,externalTransactionId:ce}=await i(be.address,{config:g?.config||{}});f({fiatOnRampPrompt:{signedUrl:Ne},fiatOnRampStatus:{externalTransactionId:ce}}),h("FIAT_ON_RAMP_PROMPT_SCREEN")},Do=Rp(()=>new A1(ot(G.chainId,l,a)),[G.chainId,a]);Wp(()=>{async function Ne(){return!await t()||!r||!be?G:yi(be.address,G,Do)}Ne().then(ce=>{Y(!1),q(ce)},async ce=>{Y(!0);let et=!1;if(ic(ce))et=!0;else if(ac(ce))try{let{hasSufficientFunds:Fo}=await vi(be.address,G,Do);et=Fo===!1}catch(Fo){console.warn(`Cannot accurately determine if wallet has sufficient funds with error: ${Fo}`)}let yo="";et?(yo="Wallet has insufficient funds for this transaction",c?.fiatOnRamp.enabled&&K(!0)):(yo="There was an error preparing your transaction",console.error(ce)),O(yo),se(new xe(new ut(yo,Ae.E32603_DEFAULT_INTERNAL_ERROR.eipCode)))})},[r]);let Jr=Pp(G),_i=Jr==="SEND"?`Send ${Xe}`:"Review transaction",fo={modalTitle:E.header||E.modalTitle||_i,buttonText:E.buttonText||"Submit"},Uo=()=>{L||(I?S(I):P(U||new xe(new ut("The user rejected the request",Ae.E4001_USER_REJECTED_REQUEST.eipCode))),n({shouldCallAuthOnSuccess:!1}))};return w&&(w.current=Uo),Ce===void 0&&z?mr(os,{children:[ue(T,{title:fo.modalTitle,onClose:Uo}),ue(_,{}),ue(Ip,{children:ue(Xo,{})}),ue(W,{})]}):I!==null?ue(kp,{txn:G,onClose:Uo,receipt:I,transactionInfo:E.transactionInfo,tokenPrice:Ce,tokenSymbol:Xe}):mr(os,{children:[ue(T,{title:fo.modalTitle,onClose:Uo}),mr(Ip,{children:[mr(N1,{children:[ue(k1,{txn:G,txnFamily:Jr,uiOptions:E,tokenSymbol:Xe,tokenPrice:Ce}),be?ue(fi,{from:be.address,to:G.to,txn:G,transactionInfo:E.transactionInfo,gas:le?lo(le).toHexString():void 0,tokenPrice:Ce,tokenSymbol:Xe}):null]}),mr(L1,{children:[ue(R1,{children:k}),be?ue(Cp,{txn:G,wallet:be,provider:Do}):null,mr(W1,{children:[B&&ue(j,{onClick:Mo,children:"Add Funds"}),ue(I1,{disabled:H||L,loading:!r||L,loadingText:L?"Submitting (may take a few minutes)...":"Loading...",onClick:async()=>{Ie(!0);let Ne=await t();if(Ne&&!L&&be)try{let ce=await gi(Ne,be.address,r,G,Do);N(ce),O("")}catch(ce){let et="";ce.reason==="processing response error"?(console.warn({transaction:G,error:ce}),et="An error has occurred, please contact support."):et=ce.reason||"An error has occurred, please try again.",O(et),se(new xe(new ut(et,Ae.E32603_DEFAULT_INTERNAL_ERROR.eipCode)))}finally{Ie(!1)}},children:fo.buttonText})]})]})]}),ue(J,{})]})},Ip=hr.div`
|
|
1797
1797
|
display: flex;
|
|
1798
1798
|
height: 100%;
|
|
1799
1799
|
flex-direction: column;
|
|
1800
1800
|
justify-content: space-between;
|
|
1801
1801
|
flex-grow: 1;
|
|
1802
|
-
`,R1=
|
|
1802
|
+
`,R1=hr.div`
|
|
1803
1803
|
line-height: 15px;
|
|
1804
1804
|
font-size: 13px;
|
|
1805
1805
|
color: var(--privy-color-error);
|
|
1806
1806
|
width: 100%;
|
|
1807
1807
|
margin-top: 1px;
|
|
1808
|
-
`,W1=
|
|
1808
|
+
`,W1=hr.div`
|
|
1809
1809
|
display: flex;
|
|
1810
1810
|
direction: row;
|
|
1811
1811
|
justify-content: space-between;
|
|
1812
1812
|
align-items: center;
|
|
1813
1813
|
gap: 8px;
|
|
1814
|
-
`,I1=
|
|
1814
|
+
`,I1=hr(j)`
|
|
1815
1815
|
transition: color 350ms ease, background-color 350ms ease;
|
|
1816
|
-
`,N1=
|
|
1816
|
+
`,N1=hr.div`
|
|
1817
1817
|
height: 100%;
|
|
1818
1818
|
display: flex;
|
|
1819
1819
|
flex-direction: column;
|
|
1820
1820
|
justify-content: space-evenly;
|
|
1821
1821
|
flex-grow: 1;
|
|
1822
|
-
`,L1=
|
|
1822
|
+
`,L1=hr.div`
|
|
1823
1823
|
display: flex;
|
|
1824
1824
|
flex-direction: column;
|
|
1825
1825
|
gap: 8px;
|
|
1826
|
-
`;import{isHexString as O1}from"@ethersproject/bytes";import{toUtf8String as M1}from"@ethersproject/strings";import{useEffect as D1,useState as
|
|
1826
|
+
`;import{isHexString as O1}from"@ethersproject/bytes";import{toUtf8String as M1}from"@ethersproject/strings";import{useEffect as D1,useState as rs}from"react";import Kr,{css as U1}from"styled-components";import{jsx as Lp}from"react/jsx-runtime";var Op=({style:e,color:t,...o})=>Lp("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:Lp("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M4.5 12.75l6 6 9-13.5"})});import{Fragment as V1,jsx as Tt,jsxs as Ci}from"react/jsx-runtime";var F1=e=>{if(!O1(e))return e;try{return M1(e)}catch{return e}},Mp=()=>{let{authenticated:e}=V(),{walletProxy:t,closePrivyModal:o}=A(),{navigate:r,data:n,outerClickRef:i}=v(),[a,l]=rs(""),[s,c]=rs(),[h,m]=rs(null),w=h!==null;D1(()=>{e||r("LANDING")},[e]);let{message:f,confirmAndSignMessage:b,onSuccess:S,onFailure:P,uiOptions:E}=n.signMessage,g=!t,I={title:E.title||"Sign message",description:E.description||"Signing this message will not cost you any fees.",buttonText:E.buttonText||"Sign and continue"},N=k=>{k?S(k):P(s||new xe(new ut("The user rejected the request.",Ae.E4001_USER_REJECTED_REQUEST.eipCode))),o({shouldCallAuthOnSuccess:!1}),m(null),l(""),c(void 0)};return i&&(i.current=()=>N(h)),Ci(V1,{children:[Tt(T,{onClose:()=>N(h)}),Tt(_,{}),Ci(B1,{children:[Ci("div",{children:[Tt(vt,{title:I.title,description:I.description}),Tt(H1,{children:F1(f)}),Tt(G1,{fail:!0,children:a})]}),Tt($1,{success:w,loading:g,disabled:w,onClick:async()=>{try{let k=await b();m(k),l(""),setTimeout(()=>{N(k)},De)}catch{l("An error has occurred, please try again."),c(new xe(new ut(a,Ae.E32603_DEFAULT_INTERNAL_ERROR.eipCode)))}},children:w?Ci(z1,{children:[Tt(Op,{style:{height:"0.9rem",width:"0.9rem"},strokeWidth:2})," ",Tt("span",{children:"Success"})]}):I.buttonText})]}),Tt(W,{}),Tt(D,{protectedByPrivy:!0})]})},B1=Kr.div`
|
|
1827
1827
|
display: flex;
|
|
1828
1828
|
height: 100%;
|
|
1829
1829
|
flex-direction: column;
|
|
1830
1830
|
justify-content: space-between;
|
|
1831
1831
|
flex-grow: 1;
|
|
1832
|
-
`,H1=
|
|
1832
|
+
`,H1=Kr.div`
|
|
1833
1833
|
background-color: var(--privy-color-background-2);
|
|
1834
1834
|
border-radius: var(--privy-border-radius-md);
|
|
1835
1835
|
padding: 12px;
|
|
@@ -1845,7 +1845,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1845
1845
|
&::-webkit-scrollbar {
|
|
1846
1846
|
display: none; /* Safari and Chrome */
|
|
1847
1847
|
}
|
|
1848
|
-
`,G1=
|
|
1848
|
+
`,G1=Kr.div`
|
|
1849
1849
|
line-height: 20px;
|
|
1850
1850
|
height: 20px;
|
|
1851
1851
|
font-size: 13px;
|
|
@@ -1854,11 +1854,11 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1854
1854
|
justify-content: flex-start;
|
|
1855
1855
|
width: 100%;
|
|
1856
1856
|
margin-top: 4px;
|
|
1857
|
-
`,z1=
|
|
1857
|
+
`,z1=Kr.span`
|
|
1858
1858
|
display: flex;
|
|
1859
1859
|
align-items: center;
|
|
1860
1860
|
gap: 8px;
|
|
1861
|
-
`,$1=
|
|
1861
|
+
`,$1=Kr(j)`
|
|
1862
1862
|
transition: color 350ms ease, background-color 350ms ease;
|
|
1863
1863
|
|
|
1864
1864
|
${e=>e.success&&U1`
|
|
@@ -2097,7 +2097,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
2097
2097
|
[hidden] {
|
|
2098
2098
|
display: none;
|
|
2099
2099
|
}
|
|
2100
|
-
`,
|
|
2100
|
+
`,Dp=q1;var Up=K1`
|
|
2101
2101
|
:root {
|
|
2102
2102
|
// Borders
|
|
2103
2103
|
--privy-border-radius-sm: 6px;
|
|
@@ -2128,10 +2128,10 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
2128
2128
|
--privy-height-modal-full: 620px;
|
|
2129
2129
|
--privy-height-modal-compact: 480px;
|
|
2130
2130
|
};
|
|
2131
|
-
`,
|
|
2131
|
+
`,Fp=j1.div`
|
|
2132
2132
|
// css normalize only the privy application to avoid conflicts
|
|
2133
2133
|
// with consuming application
|
|
2134
|
-
${
|
|
2134
|
+
${Dp}
|
|
2135
2135
|
|
|
2136
2136
|
// Privy styles
|
|
2137
2137
|
color: var(--privy-color-foreground-2);
|
|
@@ -2190,7 +2190,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
2190
2190
|
opacity: 1;
|
|
2191
2191
|
}
|
|
2192
2192
|
}
|
|
2193
|
-
`;import{jsx as Ze,jsxs as sv}from"react/jsx-runtime";var ev={["LANDING"]:
|
|
2193
|
+
`;import{jsx as Ze,jsxs as sv}from"react/jsx-runtime";var ev={["LANDING"]:_d,["AWAITING_PASSWORDLESS_CODE"]:Gl,["WALLET_EDUCATION"]:ud,["AWAITING_CONNECTION"]:Zl,["AWAITING_CONNECT_ONLY_CONNECTION"]:oc,["PHANTOM_INTERSTITIAL_SCREEN"]:Vd,["LOGIN_FAILED_SCREEN"]:Md,["AWAITING_OAUTH_SCREEN"]:Hd,["ALLOWLIST_REJECTION_SCREEN"]:Ml,["INSTALL_METAMASK_SCREEN"]:yd,["INSTALL_PHANTOM_SCREEN"]:vd,["INSTALL_COINBASE_WALLET_SCREEN"]:hd,["LINK_EMAIL_SCREEN"]:kd,["LINK_PHONE_SCREEN"]:Rd,["LINK_WALLET_SCREEN"]:Id,["CONNECT_ONLY_LANDING_SCREEN"]:Jl,["CONNECT_ONLY_AUTHENTICATED_SCREEN"]:jl,["EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN"]:zc,["EMBEDDED_WALLET_CREATED_SCREEN"]:pc,["EMBEDDED_WALLET_CONNECTING_SCREEN"]:cc,["EMBEDDED_WALLET_RECOVERY_SCREEN"]:qc,["EMBEDDED_WALLET_KEY_EXPORT_SCREEN"]:yc,["EMBEDDED_WALLET_SIGN_REQUEST_SCREEN"]:Mp,["EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN"]:Np,["FIAT_ON_RAMP_PROMPT_SCREEN"]:Zc,["FIAT_ON_RAMP_STATUS_SCREEN"]:ed,["EMBEDDED_WALLET_PASSWORD_UPDATE_SPLASH_SCREEN"]:Vc,["EMBEDDED_WALLET_PASSWORD_UPDATE_SCREEN"]:$c},tv={["AWAITING_CONNECTION"]:"compact",["AWAITING_CONNECT_ONLY_CONNECTION"]:"compact",["CONNECT_ONLY_LANDING_SCREEN"]:"compact",["CONNECT_ONLY_AUTHENTICATED_SCREEN"]:"compact",["AWAITING_OAUTH_SCREEN"]:"compact",["ALLOWLIST_REJECTION_SCREEN"]:"compact",["WALLET_EDUCATION"]:"full",["EMBEDDED_WALLET_SIGN_REQUEST_SCREEN"]:"full",["EMBEDDED_WALLET_RECOVERY_SCREEN"]:"compact"},ov=(e,t,o)=>{if(e==="LANDING"&&t)return"compact";let r=tv[e];return r||(o?"medium":"full")},rv=()=>{let{ready:e}=V(),{isLinking:t}=A(),{ready:o,currentScreen:r,app:n}=v(),i=!!n?.loginMethods.wallet,a=!!(n?.loginMethods.email||n?.loginMethods.sms),s=ov(r,i!==a,t);if((!e||!o)&&r!=="AWAITING_OAUTH_SCREEN")return sv(Bp,{"data-height":s,children:[Ze(T,{}),Ze(_,{}),Ze(av,{children:Ze(Co,{})}),Ze(W,{}),Ze(J,{})]});let c=ev[r];return c?Ze(Bp,{"data-height":s,children:Ze(c,{})}):null},Gp=()=>{let{closePrivyModal:e}=A(),{app:t,outerClickRef:o}=v(),r=()=>{if(o?.current){let{closeModal:l}=o.current()||{closeModal:!0};l&&(e(),o.current=null)}else return e()},n=Z1(l=>{l.key==="Escape"&&t?.render.inDialog&&r()},[t?.render.inDialog]);Hp(()=>(document.addEventListener("keydown",n,!1),()=>{document.removeEventListener("keydown",n,!1)}),[n]);let i=Ze(Fp,{onClick:l=>l.stopPropagation(),children:Ze(rv,{})}),a=t?.render.inDialog?Ze(iv,{id:"privy-dialog",onClick:()=>r(),children:i}):i;return X1.createPortal(a,t?.render.inParentNodeId&&document.getElementById(t.render.inParentNodeId)||document.body)},nv=({children:e,...t})=>{let o=Q1(null);return Hp(()=>{document?.activeElement?.blur();let r=document?.getElementById("root")||document?.getElementById("__next");if(r)return r.setAttribute("inert","true"),Y1(o?.current),()=>{let n=document?.getElementById("root")||document?.getElementById("__next");n&&(n.removeAttribute("inert"),J1())}},[t.open,t.onClose]),Ze("dialog",{open:!0,role:"dialog",...t,ref:o,children:e})},iv=ns(nv)`
|
|
2194
2194
|
position: fixed;
|
|
2195
2195
|
top: 0;
|
|
2196
2196
|
left: 0;
|
|
@@ -2205,7 +2205,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
2205
2205
|
z-index: 999999;
|
|
2206
2206
|
-webkit-backdrop-filter: blur(3px);
|
|
2207
2207
|
backdrop-filter: blur(3px);
|
|
2208
|
-
`,
|
|
2208
|
+
`,Bp=ns.div`
|
|
2209
2209
|
display: flex;
|
|
2210
2210
|
flex-direction: column;
|
|
2211
2211
|
text-align: center;
|
|
@@ -2242,10 +2242,10 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
2242
2242
|
min-height: 0;
|
|
2243
2243
|
}
|
|
2244
2244
|
}
|
|
2245
|
-
`,av=
|
|
2245
|
+
`,av=ns.div`
|
|
2246
2246
|
display: flex;
|
|
2247
2247
|
flex-direction: column;
|
|
2248
2248
|
align-items: center;
|
|
2249
2249
|
justify-content: center;
|
|
2250
2250
|
height: 100%;
|
|
2251
|
-
`;import{useEffect as lv}from"react";import{Fragment as dv,jsx as pv}from"react/jsx-runtime";var cv=({onLoad:e})=>{let t=window;return lv(()=>{if(document.getElementById("cf-script")!==null||t.turnstile)return;t.onloadTurnstileCallback=e;let o=document.createElement("script");o.setAttribute("src","https://challenges.cloudflare.com/turnstile/v0/api.js?onload=onloadTurnstileCallback&render=explicit"),o.setAttribute("id","cf-script"),o.setAttribute("async","true"),document.body.appendChild(o)},[]),pv(dv,{})},Gp=cv;var zp={id:42161,name:"Arbitrum One",network:"arbitrum",nativeCurrency:{name:"Ether",symbol:"ETH",decimals:18},rpcUrls:{alchemy:{http:["https://arb-mainnet.g.alchemy.com/v2"],webSocket:["wss://arb-mainnet.g.alchemy.com/v2"]},infura:{http:["https://arbitrum-mainnet.infura.io/v3"],webSocket:["wss://arbitrum-mainnet.infura.io/ws/v3"]},default:{http:["https://arb1.arbitrum.io/rpc"]},public:{http:["https://arb1.arbitrum.io/rpc"]}},blockExplorers:{etherscan:{name:"Arbiscan",url:"https://arbiscan.io"},default:{name:"Arbiscan",url:"https://arbiscan.io"}}};var $p={id:421613,name:"Arbitrum Goerli",network:"arbitrum-goerli",nativeCurrency:{name:"Goerli Ether",symbol:"AGOR",decimals:18},rpcUrls:{alchemy:{http:["https://arb-goerli.g.alchemy.com/v2"],webSocket:["wss://arb-goerli.g.alchemy.com/v2"]},infura:{http:["https://arbitrum-goerli.infura.io/v3"],webSocket:["wss://arbitrum-goerli.infura.io/ws/v3"]},default:{http:["https://goerli-rollup.arbitrum.io/rpc"]},public:{http:["https://goerli-rollup.arbitrum.io/rpc"]}},blockExplorers:{etherscan:{name:"Arbiscan",url:"https://goerli.arbiscan.io/"},default:{name:"Arbiscan",url:"https://goerli.arbiscan.io/"}},testnet:!0};var Vp={id:43114,name:"Avalanche",network:"avalanche",nativeCurrency:{decimals:18,name:"Avalanche",symbol:"AVAX"},rpcUrls:{default:{http:["https://api.avax.network/ext/bc/C/rpc"]},public:{http:["https://api.avax.network/ext/bc/C/rpc"]}},blockExplorers:{etherscan:{name:"SnowTrace",url:"https://snowtrace.io"},default:{name:"SnowTrace",url:"https://snowtrace.io"}}};var qp={id:43113,name:"Avalanche Fuji",network:"avalanche-fuji",nativeCurrency:{decimals:18,name:"Avalanche Fuji",symbol:"AVAX"},rpcUrls:{default:{http:["https://api.avax-test.network/ext/bc/C/rpc"]},public:{http:["https://api.avax-test.network/ext/bc/C/rpc"]}},blockExplorers:{etherscan:{name:"SnowTrace",url:"https://testnet.snowtrace.io"},default:{name:"SnowTrace",url:"https://testnet.snowtrace.io"}},testnet:!0};var jp={id:8453,network:"base",name:"Base",nativeCurrency:{name:"Ether",symbol:"ETH",decimals:18},rpcUrls:{blast:{http:["https://base-mainnet.blastapi.io"],webSocket:["wss://base-mainnet.blastapi.io"]},default:{http:["https://mainnet.base.org"]},public:{http:["https://mainnet.base.org"]}},blockExplorers:{etherscan:{name:"Basescan",url:"https://basescan.org"},default:{name:"Basescan",url:"https://basescan.org"}},testnet:!0};var Kp={id:84531,network:"base-goerli",name:"Base Goerli Testnet",nativeCurrency:{name:"Goerli Ether",symbol:"ETH",decimals:18},rpcUrls:{blast:{http:["https://base-goerli.blastapi.io"],webSocket:["wss://base-goerli.blastapi.io"]},default:{http:["https://goerli.base.org"]},public:{http:["https://goerli.base.org"]}},blockExplorers:{etherscan:{name:"Basescan",url:"https://goerli.basescan.org"},default:{name:"Basescan",url:"https://goerli.basescan.org"}},testnet:!0};var Yp={id:42220,name:"Celo Mainnet",network:"celo",nativeCurrency:{decimals:18,name:"CELO",symbol:"CELO"},rpcUrls:{default:{http:["https://forno.celo.org"]},infura:{http:["https://celo-mainnet.infura.io/v3"]},public:{http:["https://forno.celo.org"]}},blockExplorers:{default:{name:"Celo Explorer",url:"https://explorer.celo.org/mainnet"},etherscan:{name:"CeloScan",url:"https://celoscan.io"}},testnet:!1};var Jp={id:44787,name:"Celo Alfajores Testnet",network:"celo-alfajores",nativeCurrency:{decimals:18,name:"CELO",symbol:"CELO"},rpcUrls:{default:{http:["https://alfajores-forno.celo-testnet.org"]},infura:{http:["https://celo-alfajores.infura.io/v3"]},public:{http:["https://alfajores-forno.celo-testnet.org"]}},blockExplorers:{default:{name:"Celo Explorer",url:"https://explorer.celo.org/alfajores"},etherscan:{name:"CeloScan",url:"https://alfajores.celoscan.io/"}},testnet:!0};var Qp={id:314,name:"Filecoin - Mainnet",network:"filecoin-mainnet",nativeCurrency:{decimals:18,name:"filecoin",symbol:"FIL"},rpcUrls:{default:{http:["https://api.node.glif.io/rpc/v1"]},public:{http:["https://api.node.glif.io/rpc/v1"]}},blockExplorers:{default:{name:"Filfox",url:"https://filfox.info/en"},filscan:{name:"Filscan",url:"https://filscan.io"},filscout:{name:"Filscout",url:"https://filscout.io/en"},glif:{name:"Glif",url:"https://explorer.glif.io"}}};var Zp={id:314159,name:"Filecoin - Calibration testnet",network:"filecoin-calibration",nativeCurrency:{decimals:18,name:"testnet filecoin",symbol:"tFIL"},rpcUrls:{default:{http:["https://api.calibration.node.glif.io/rpc/v1"]},public:{http:["https://api.calibration.node.glif.io/rpc/v1"]}},blockExplorers:{default:{name:"Filscan",url:"https://calibration.filscan.io"}}};var Xp={id:5,network:"goerli",name:"Goerli",nativeCurrency:{name:"Goerli Ether",symbol:"ETH",decimals:18},rpcUrls:{alchemy:{http:["https://eth-goerli.g.alchemy.com/v2"],webSocket:["wss://eth-goerli.g.alchemy.com/v2"]},infura:{http:["https://goerli.infura.io/v3"],webSocket:["wss://goerli.infura.io/ws/v3"]},default:{http:["https://rpc.ankr.com/eth_goerli"]},public:{http:["https://rpc.ankr.com/eth_goerli"]}},blockExplorers:{etherscan:{name:"Etherscan",url:"https://goerli.etherscan.io"},default:{name:"Etherscan",url:"https://goerli.etherscan.io"}},testnet:!0};var eu={id:59144,network:"linea-mainnet",name:"Linea Mainnet",nativeCurrency:{name:"Linea Ether",symbol:"ETH",decimals:18},rpcUrls:{infura:{http:["https://linea-mainnet.infura.io/v3"],webSocket:["wss://linea-mainnet.infura.io/ws/v3"]},default:{http:["https://rpc.linea.build"],webSocket:["wss://rpc.linea.build"]},public:{http:["https://rpc.linea.build"],webSocket:["wss://rpc.linea.build"]}},blockExplorers:{default:{name:"Etherscan",url:"https://lineascan.build"},etherscan:{name:"Etherscan",url:"https://lineascan.build"}},testnet:!1};var tu={id:59140,network:"linea-testnet",name:"Linea Goerli Testnet",nativeCurrency:{name:"Linea Ether",symbol:"ETH",decimals:18},rpcUrls:{infura:{http:["https://linea-goerli.infura.io/v3"],webSocket:["wss://linea-goerli.infura.io/ws/v3"]},default:{http:["https://rpc.goerli.linea.build"],webSocket:["wss://rpc.goerli.linea.build"]},public:{http:["https://rpc.goerli.linea.build"],webSocket:["wss://rpc.goerli.linea.build"]}},blockExplorers:{default:{name:"Etherscan",url:"https://goerli.lineascan.build"},etherscan:{name:"Etherscan",url:"https://goerli.lineascan.build"}},testnet:!0};var wi={id:1,network:"homestead",name:"Ethereum",nativeCurrency:{name:"Ether",symbol:"ETH",decimals:18},rpcUrls:{alchemy:{http:["https://eth-mainnet.g.alchemy.com/v2"],webSocket:["wss://eth-mainnet.g.alchemy.com/v2"]},infura:{http:["https://mainnet.infura.io/v3"],webSocket:["wss://mainnet.infura.io/ws/v3"]},default:{http:["https://cloudflare-eth.com"]},public:{http:["https://cloudflare-eth.com"]}},blockExplorers:{etherscan:{name:"Etherscan",url:"https://etherscan.io"},default:{name:"Etherscan",url:"https://etherscan.io"}}};var ou={id:10,name:"OP Mainnet",network:"optimism",nativeCurrency:{name:"Ether",symbol:"ETH",decimals:18},rpcUrls:{alchemy:{http:["https://opt-mainnet.g.alchemy.com/v2"],webSocket:["wss://opt-mainnet.g.alchemy.com/v2"]},infura:{http:["https://optimism-mainnet.infura.io/v3"],webSocket:["wss://optimism-mainnet.infura.io/ws/v3"]},default:{http:["https://mainnet.optimism.io"]},public:{http:["https://mainnet.optimism.io"]}},blockExplorers:{etherscan:{name:"Etherscan",url:"https://optimistic.etherscan.io"},default:{name:"Optimism Explorer",url:"https://explorer.optimism.io"}}};var ru={id:420,name:"Optimism Goerli Testnet",network:"optimism-goerli",nativeCurrency:{name:"Goerli Ether",symbol:"ETH",decimals:18},rpcUrls:{alchemy:{http:["https://opt-goerli.g.alchemy.com/v2"],webSocket:["wss://opt-goerli.g.alchemy.com/v2"]},infura:{http:["https://optimism-goerli.infura.io/v3"],webSocket:["wss://optimism-goerli.infura.io/ws/v3"]},default:{http:["https://goerli.optimism.io"]},public:{http:["https://goerli.optimism.io"]}},blockExplorers:{etherscan:{name:"Etherscan",url:"https://goerli-optimism.etherscan.io"},default:{name:"Etherscan",url:"https://goerli-optimism.etherscan.io"}},testnet:!0};var nu={id:11155111,network:"sepolia",name:"Sepolia",nativeCurrency:{name:"Sepolia Ether",symbol:"SEP",decimals:18},rpcUrls:{alchemy:{http:["https://eth-sepolia.g.alchemy.com/v2"],webSocket:["wss://eth-sepolia.g.alchemy.com/v2"]},infura:{http:["https://sepolia.infura.io/v3"],webSocket:["wss://sepolia.infura.io/ws/v3"]},default:{http:["https://rpc.sepolia.org"]},public:{http:["https://rpc.sepolia.org"]}},blockExplorers:{etherscan:{name:"Etherscan",url:"https://sepolia.etherscan.io"},default:{name:"Etherscan",url:"https://sepolia.etherscan.io"}},testnet:!0};var Ci=[zp,$p,Xp,nu,wi,ou,ru,zr,$r,Yp,Jp,Qp,Zp,jp,Kp,eu,tu,Vp,qp],jS=new Set(Ci.map(e=>e.id));import Lo from"tinycolor2";var iu="#FFFFFF",uv="#000000",mv=iu,hv="#1E1E1D";function fv(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 po(e,t){let o=Math.max(0,Math.min(1,e.toHsl().l+t));return Lo({...e.toHsl(),l:o})}function au({backgroundTheme:e,accentHex:t,successHex:o="#51BA81",warnHex:r="#FFB74D",errorHex:n="#EC6351",whiteHex:i=iu,blackHex:a=uv}){let l;switch(e){case"light":l=mv;break;case"dark":l=hv;break;default:l=e;break}let s=Lo(l),c=Lo(t),h=Lo(o),m=Lo(r),w=Lo(n),f=fv(s.getLuminance()),b=po(s,f==="light"?-.04:.11),S=po(s,f==="light"?-.88:.87),T=po(s,f==="light"?-.77:.75),E=po(s,f==="light"?-.43:.45).desaturate(f==="light"?60:20),g=po(s,f==="light"?-.08:.25).desaturate(f==="light"?60:20),I=po(c,.15),N=po(c,-.06),k=Lo(c.getLuminance()>.5?a:i),O=po(h,-.16);return{colorScheme:f,background:s.toHslString(),background2:b.toHslString(),foreground:S.toHslString(),foreground2:T.toHslString(),foreground3:E.toHslString(),foreground4:g.toHslString(),accent:c.toHslString(),accentLight:I.toHslString(),accentDark:N.toHslString(),foregroundAccent:k.toHslString(),success:h.toHslString(),successDark:O.toHslString(),error:w.toHslString(),warn:m.toHslString()}}var uo={appearance:{theme:"light",accentColor:"#676FFF"},walletConnectCloudProjectId:Ds,rpcConfig:{rpcUrls:{}},captchaEnabled:!1,_render:{inDialog:!0,inParentNodeId:null},fiatOnRamp:{useSandbox:!1}};function bi(e,t){let o=["google","twitter","discord","tiktok","linkedin","github","apple"],r=t?.loginMethods?.filter(I=>o.includes(I)),n=r?.slice(0,5),i,a,l,s,c,h,m,w,f,b;if(t?.loginMethods?(i=t.loginMethods.includes("email"),a=t.loginMethods.includes("sms"),l=t.loginMethods.includes("wallet"),s=n?.includes("google"),c=n?.includes("twitter"),h=n?.includes("discord"),m=n?.includes("tiktok"),f=n?.includes("github"),w=n?.includes("linkedin"),b=n?.includes("apple")):(i=e.emailAuth,a=e.smsAuth,l=e.walletAuth,s=e.googleOAuth,c=e.twitterOAuth,h=e.discordOAuth,f=e.githubOAuth,m=e.tiktokOAuth,w=e.linkedinOAuth,b=e.appleOAuth),i&&a&&(console.warn("Enabling both email and SMS passwordless is not currently supported. Disabling SMS."),a=!1),!i&&!a&&[s,c,h,f,m,w,b].some(I=>I))throw new Error("To enable social logins you must also enable either SMS or Email login");if(![i,a,l,s,c,h,f,m,w,b].some(I=>I))throw new Error("You must enable at least one login method");let{chains:S,defaultChain:T}=yv(t?.additionalChains,t?.supportedChains,t?.defaultChain);r&&r.length>5&&console.warn("Max number of social logins allowed is 5. Any more have been removed.");let E=t?.customAuth?.getCustomAccessToken&&t?.customAuth?.enabled!==!1;return{id:e.id,name:e.name,allowlistConfig:e.allowlistConfig,appearance:{logo:t?.appearance?.logo??e.logoUrl,palette:au({backgroundTheme:t?.appearance?.theme??uo.appearance.theme,accentHex:t?.appearance?.accentColor??e.accentColor??uo.appearance.accentColor}),showWalletLoginFirst:t?.appearance?.showWalletLoginFirst??e.showWalletLoginFirst},loginMethods:{wallet:l,email:i,sms:a,google:s,twitter:c,discord:h,github:f,tiktok:m,linkedin:w,apple:b},legal:{termsAndConditionsUrl:t?.legal?.termsAndConditionsUrl??e.termsAndConditionsUrl,privacyPolicyUrl:t?.legal?.privacyPolicyUrl??e.privacyPolicyUrl},walletConnectCloudProjectId:t?.walletConnectCloudProjectId??e.walletConnectCloudProjectId??uo.walletConnectCloudProjectId,rpcConfig:t?.rpcConfig??uo.rpcConfig,chains:S,defaultChain:T,captchaEnabled:e.captchaEnabled??uo.captchaEnabled,embeddedWallets:{...e.embeddedWalletConfig,...E?{createOnLogin:"all-users",requireUserPasswordOnCreate:!1,noPromptOnSignature:!0}:{},...t?.embeddedWallets},customAuth:E?{enabled:!0,...t.customAuth}:void 0,fiatOnRamp:{enabled:e.fiatOnRampEnabled,useSandbox:t?.fiatOnRamp?.useSandbox??uo.fiatOnRamp.useSandbox},loginConfig:{twitterOAuthOnMobileEnabled:e.twitterOAuthOnMobileEnabled??!1},render:{inDialog:t?._render?.inDialog??uo._render.inDialog,inParentNodeId:t?._render?.inParentNodeId??uo._render.inParentNodeId}}}function su(e,t){return e?.appearance?.logo&&typeof e.appearance.logo=="object"&&(e.appearance.logo="component"),{...e,legacyCreateEmbeddedWalletFlag:t}}function yv(e,t,o){let r;if(e&&t&&console.warn("You should only specify one of `additionalChains` or `supportedChains`. Using `supportedChains`."),t){if(t.length===0)throw new Error("`supportedChains` must contain at least one chain");r=t}else r=Ci.concat(e??[]);let n=t?r[0]:wi,i=o??n;if(!r.find(a=>a.id===i.id))throw new Error("`defaultChain` must be included in `supportedChains`");return{chains:r,defaultChain:i}}import{useRef as gv,useEffect as vv}from"react";var Ei=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;case"privy:wallet:set-recovery-password":return r;default:throw new Error(`invalid wallet event type ${t}`)}}};import{jsx as Pv}from"react/jsx-runtime";var wv=function(e){return()=>`id-${e++}`}(0);function Cv(e){return typeof e.event=="string"&&/^privy:.+/.test(e.event)}function hr(e){return e.error!==void 0}var Oo=new Ei,ns=new Map,bv=(e,t)=>typeof t=="bigint"?t.toString():t,Ev=(e,t)=>`${e}${JSON.stringify(t,bv)}`;function fr(e,t,o){let r=o.contentWindow;if(!r)throw new Error("iframe not initialized");let n=Ev(e,t);if(e==="privy:wallet:create"){let a=ns.get(n);if(a)return a}let i=new Promise((a,l)=>{let s=wv();Oo.enqueue(s,{resolve:a,reject:l}),r.postMessage({id:s,event:e,data:t},"*")}).finally(()=>{ns.delete(n)});return ns.set(n,i),i}function xv(e){switch(e.event){case"privy:iframe:ready":let t=Oo.dequeue(e.event,e.id);return hr(e)?t.reject(new Wt(e.error.type,e.error.message)):t.resolve(e.data);case"privy:wallet:create":let o=Oo.dequeue(e.event,e.id);return hr(e)?o.reject(new Wt(e.error.type,e.error.message)):o.resolve(e.data);case"privy:wallet:connect":let r=Oo.dequeue(e.event,e.id);return hr(e)?r.reject(new Wt(e.error.type,e.error.message)):r.resolve(e.data);case"privy:wallet:recover":let n=Oo.dequeue(e.event,e.id);return hr(e)?n.reject(new Wt(e.error.type,e.error.message)):n.resolve(e.data);case"privy:wallet:rpc":let i=Oo.dequeue(e.event,e.id);return hr(e)?i.reject(new Wt(e.error.type,e.error.message)):i.resolve(e.data);case"privy:wallet:set-recovery-password":let a=Oo.dequeue(e.event,e.id);return hr(e)?a.reject(new Wt(e.error.type,e.error.message)):a.resolve(e.data);default:console.warn("Unsupported wallet proxy method:",e)}}function lu(e){let t=gv(null);return vv(()=>{let o=t.current;if(!o)return;function r(s){s&&s.origin===e.origin&&Cv(s.data)&&xv(s.data)}let n={create(s){return fr("privy:wallet:create",s,o)},connect(s){return fr("privy:wallet:connect",s,o)},recover(s){return fr("privy:wallet:recover",s,o)},rpc(s){return fr("privy:wallet:rpc",s,o)},setRecoveryPassword(s){return fr("privy:wallet:set-recovery-password",s,o)}};window.addEventListener("message",r);let i=()=>e.onLoad(n),a=(...s)=>{console.warn("Privy iframe failed to load: ",...s),e.onLoadFailed()},l=new AbortController;return Ys(()=>fr("privy:iframe:ready",{},o),{abortSignal:l.signal}).then(i,a),()=>{window.removeEventListener("message",r),l.abort()}},[t.current]),Pv("iframe",{ref:t,width:"0",height:"0",style:{display:"none",height:"0px",width:"0px"},src:dn(e.origin,`/apps/${e.appId}/embedded-wallets`,{caid:e.clientAnalyticsId})})}import{createContext as Tv,useContext as _v,useEffect as Sv}from"react";var cu={login:{onComplete:[],onError:[]},logout:{onSuccess:[]},connectWallet:{onSuccess:[],onError:[]},createWallet:{onSuccess:[],onError:[]}},is=Tv(void 0),Av=()=>_v(is);function mo(e,t){if(!t)return;let r=Av().current[e];return Sv(()=>{for(let[n,i]of Object.entries(t))r.hasOwnProperty(n)||console.warn(`Invalid event type "${n}" for action "${e}"`),r[n]?.push(i);return()=>{for(let[n,i]of Object.entries(t))r.hasOwnProperty(n)||console.warn(`Invalid event type "${n}" for action "${e}"`),r[n]=r[n]?.filter(a=>a!==i)}},[t])}function ae(e,t,o,...r){for(let n of e.current[t][o])n(...r)}import{jsx as ho,jsxs as pu}from"react/jsx-runtime";function Wv(e){return typeof e=="string"&&e.length===25}var jr;function At(){if(!jr){let e=$.get($o);return Promise.resolve(e||null)}return jr.getAccessToken()}var uu,tl=(e,t)=>uu(e,t),mu,ol=(e,t)=>mu(e,t),hu,rl=()=>hu(),Iv=()=>{let t=new URLSearchParams(window.location.search).get("privy_token");if(!t)return;$.put(vr,t);let o=new URL(window.location.href);o.searchParams.delete("privy_token"),window.history.pushState({},"",o)},Nv=({config:e,...t})=>{if(!Wv(t.appId))throw new C("Cannot initialize the Privy provider with an invalid Privy app ID");jr||(jr=new Sr({appId:t.appId,apiUrl:t.apiUrl||rn}));let o=Object.assign({},e);return t.createPrivyWalletOnLogin!==void 0&&o.embeddedWallets?.createOnLogin===void 0&&(o.embeddedWallets||(o.embeddedWallets={}),o.embeddedWallets.createOnLogin=t.createPrivyWalletOnLogin?"users-without-wallets":"off"),t.createPrivyWalletOnLogin!==void 0&&e?.embeddedWallets?.createOnLogin&&console.warn("Both `createPrivyWalletOnLogin` and `config.embeddedWallets.createOnLogin` are set. `createPrivyWalletOnLogin` is deprecated and should be removed."),ho(Lv,{...t,config:o,client:jr})},Lv=e=>{let t=e.client,[o,r]=Q(!1),[n,i]=Q(!1),[a,l]=Q(!1),[s,c]=Q(null),[h,m]=Q(!1),[w,f]=Q([]),b=du(w),[S,T]=Q(!1),[E,g]=Q(null),[I,N]=Q(!1),[k,O]=Q({status:"disconnected",connectError:null,connector:null,connectRetry:x}),[U,se]=Q(null),[B,K]=Q(null),[H,Y]=Q({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,linkedinOAuth:!1,appleOAuth:!1,termsAndConditionsUrl:null,privacyPolicyUrl:null,embeddedWalletConfig:{createOnLogin:"off",requireUserPasswordOnCreate:!1},fiatOnRampEnabled:!1,captchaEnabled:!1}),[L,Ie]=Q(()=>{let d=su(e.config,e.createPrivyWalletOnLogin);return t.createAnalyticsEvent("sdk_initialize",d),bi(H,e.config)}),[G,q]=Q(!0),[Ce,le]=Q({}),[z,Xe]=Q(null),[be,Mo]=Q(null),[Do,Kr]=Q(!1),[Pi,fo]=Q(),[Uo,Ne]=Q(),[ce,et]=Q(),[yo,Fo]=Q(!1),re=du(cu),Se=d=>{d&&g(d),r(!0),t.createAnalyticsEvent("modal_open",{initialScreen:d})},Yr=d=>{L.embeddedWallets.createOnLogin!=="off"&&q(!0),Se(d)};Tt(()=>{if(!B||!s){t.connectors?.removeEmbeddedWalletConnector();return}let d=s?.linkedAccounts.filter(p=>p.type==="wallet"&&p.walletClient==="privy");if(d&&d.length>0){let p=d[0].address;t.connectors?.addEmbeddedWalletConnector(B,p,L.defaultChain)}},[B,s]),Tt(()=>{B&&be?.(B)},[B]),Tt(()=>{(async()=>{if(!L.customAuth?.enabled)return;q(!0);let{getCustomAccessToken:p,isLoading:u}=L.customAuth;if(!(!n||u))try{let y=await p();if(!y){await Bo.logout();return}if(a)return;t.startAuthFlow(new Go(y));let{user:M,isNewUser:me}=await t.authenticate();M||await Bo.logout(),c(M||null),T(me||!1),l(!0),Fo(!0)}catch(y){console.warn(y),a&&await Bo.logout()}})()},[L.customAuth?.enabled,L.customAuth?.getCustomAccessToken,L.customAuth?.isLoading,n,a]),Tt(()=>{yo&&B&&s&&Gt(s,e.config?.embeddedWallets?.createOnLogin)&&(Fo(!1),ds(s,sn).catch(console.error))},[yo&&B&&s]),Tt(()=>{async function d(){let p=await t.getServerConfig();Y(p);let u=bi(p,e.config);Ie(u),p.customApiUrl&&t.updateApiUrl(p.customApiUrl),t.initializeConnectorManager(u.walletConnectCloudProjectId,u.rpcConfig,u.chains,u.defaultChain),t.connectors?.initialize();let y=fu();Iv();let M=await t.getAuthenticatedUser();e.config?.customAuth?.enabled||(l(!!M),M&&ae(re,"login","onComplete",M,!1,!0),c(M)),y||(i(!0),z?.()),y&&M&&m(!0),yu()}n||d()},[t,z,n]),Tt(()=>{let d=bi(H,e.config);Ie(d)},[e.config]);let fu=()=>{let d=new URLSearchParams(window.location.search),p=d.get("privy_oauth_code"),u=d.get("privy_oauth_state"),y=d.get("privy_oauth_provider");return p&&u&&y?(t.startAuthFlow(new Ht(y,p,u)),Yr("AWAITING_OAUTH_SCREEN"),le({finishOauthFlow:{onComplete:()=>{i(!0),z?.()}}}),!0):!1},Ti=async(d,p,u)=>{let y=await t.connectors?.createWalletConnector(d,p)||null;ss(y,u)};async function ss(d,p){if(!d)return O({status:"disconnected",connectError:new F("Unable to connect to wallet."),connector:null,connectRetry:x}),p?.(null);O({connector:d,status:"connecting",connectError:null,connectRetry:()=>ss(d,p)});try{let u=await d.connect({showPrompt:!0});if(!L.chains.find(y=>y.id===Number(u?.chainId))){O(y=>({...y,connector:d,status:"switching_to_supported_chain",connectError:null,connectRetry:x}));try{await u?.switchChain(L.defaultChain.id)}catch{console.warn(`Unable to switch to default chain: ${L.defaultChain.id}`)}}return O(y=>({...y,status:"connected",connectError:null,connectRetry:x})),u&&!I&&ae(re,"connectWallet","onSuccess",u),p?.(u)}catch(u){return u instanceof tt?(console.warn(u.cause?u.cause:u.message),I||ae(re,"connectWallet","onError",u.privyErrorCode||"generic_connect_wallet_error")):(console.warn(u),I||ae(re,"connectWallet","onError","unknown_connect_wallet_error")),O(y=>({...y,status:"disconnected",connectError:u})),p?.(null)}}let _i=d=>{d!==null&&t.startAuthFlow(new vo(d))},yu=()=>{let d=new URLSearchParams(window.location.search),p=d.get("privy_connector"),u=d.get("privy_wallet_client");if(!p||!u)return;if(u==="phantom"&&!qe()&&Yr("LOGIN_FAILED_SCREEN"),!t.connectors)throw new C("Connector not initialized");Se("AWAITING_CONNECTION");let y=new URL(window.location.href);y.searchParams.delete("privy_connector"),y.searchParams.delete("privy_wallet_client"),window.history.pushState({},"",y),Ti(p,u,_i)};Tt(()=>{n&&a&&s===null&&t.getAuthenticatedUser().then(c)},[n,a,s,t]);let ls=()=>{m(!0),Se("LINK_WALLET_SCREEN")},gu=d=>{if(!a||!s)return!1;for(let p of s.linkedAccounts)if(p.type==="wallet"&&p.address===d.address)return!0;return!1},vu=async d=>{if(!t.connectors)throw new C("Connector not initialized");let p=t.connectors.findWalletConnector(d.connectorType,d.walletClientType)||null;O(u=>({...u,connector:p,status:"connected",connectError:null,connectRetry:x})),_i(d),Yr("AWAITING_CONNECTION")},wu=async(d,p)=>{if(!t.connectors)throw new C("Connector not initialized");await Ti(d,p,_i)},cs=async(d,p)=>{if(!L.fiatOnRamp.enabled)throw new C("Fiat on-ramp is not enabled");if(!p||!p.provider||p.provider==="moonpay"){let{signedUrl:u,externalTransactionId:y}=await Yc(t,d,p?.config??{},L.appearance.palette,L.fiatOnRamp.useSandbox);return{signedUrl:u,externalTransactionId:y}}else throw new C("Unsupported fund provider. Currently supported option is `moonpay`.")},Jr=()=>{f(d=>{let p=t.connectors?.wallets.map(u=>({...u,linked:gu(u),loginOrLink:async()=>{if(!await u.isConnected())throw new C("Wallet is not connected");if(u.connectorType==="embedded"&&u.walletClientType==="privy")throw new C("Cannot link or login with embedded wallet");vu(u)},fund:async y=>{let{signedUrl:M,externalTransactionId:me}=await cs(u.address,y);le({fiatOnRampPrompt:{signedUrl:M},fiatOnRampStatus:{externalTransactionId:me}}),Se("FIAT_ON_RAMP_PROMPT_SCREEN")},unlink:async()=>{if(!a)throw new C("User is not authenticated.");if(u.connectorType==="embedded"&&u.walletClientType==="privy")throw new C("Cannot unlink an embedded wallet");let y=await t.unlinkWallet(u.address);c(y)}}))||[];return mn(d,p)?d:p})};Tt(()=>{Jr()},[s?.linkedAccounts,a,n]),Tt(()=>{if(n){if(!t.connectors)throw new C("Connector not initialized");Jr(),t.connectors.on("walletsUpdated",Jr)}},[n]);let Cu=()=>{Se(a?"CONNECT_ONLY_AUTHENTICATED_SCREEN":"CONNECT_ONLY_LANDING_SCREEN")};Tt(()=>{if(!w[0])return;let d=w[0],p=b.current.find(y=>y.address===d.address),u=s?.linkedAccounts.find(y=>y.type==="wallet"&&y.address===d.address);if(!p&&u){let y=Object.assign({},s);y.wallet=u&&{address:u.address,chainType:u.chainType,chainId:u.chainId,walletClient:u.walletClient,walletClientType:u.walletClientType,connectorType:u.connectorType},c(y)}b.current=w},[w]);let ds=async(d,p)=>{if(Z(d))throw ae(re,"createWallet","onError","embedded_wallet_already_exists"),new Error("Only one Privy wallet per user is currently allowed");let[y,M]=await Promise.all([Le.initializeWalletProxy(p),At()]);if(!y&&e.config?.customAuth?.enabled)throw ae(re,"createWallet","onError","unknown_embedded_wallet_error"),new Error("Failed to connect to wallet proxy");if(!y||!M||e.config?.embeddedWallets?.requireUserPasswordOnCreate)return new Promise((me,Ee)=>{q(!0),le({createWallet:{onSuccess:ze=>{ae(re,"createWallet","onSuccess",ze),me(ze)},onFailure:ze=>{ae(re,"createWallet","onError","unknown_embedded_wallet_error"),Ee(ze)},callAuthOnSuccessOnClose:!1}}),Se("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")});{await y.create({accessToken:M});let me=await Le.refreshUser(),Ee=Z(me);if(!Ee)throw ae(re,"createWallet","onError","unknown_embedded_wallet_error"),new Error("Failed to create wallet");return ae(re,"createWallet","onSuccess",Ee),Ee}},bu=d=>{if(!L.chains.map(p=>p.id).includes(d))throw new F(`Chain ID ${d} is not supported. It must be added to the config.supportedChains property of the PrivyProvider.`,"unsupported_chain_id")},Bo={ready:n,authenticated:a,user:s,walletConnectors:t.connectors||null,connectWallet:Cu,linkWallet:ls,linkEmail:()=>{if(s?.email)throw new C("User already has an email linked to their account.");m(!0),Se("LINK_EMAIL_SCREEN")},linkPhone:()=>{if(s?.phone)throw new C("User already has a phone number linked to their account.");m(!0),Se("LINK_PHONE_SCREEN")},linkGoogle:async()=>{if(s?.google)throw new C("User already has a Google account linked to their account.");await Le.initLoginWithOAuth("google")},linkTwitter:async()=>{if(s?.twitter)throw new C("User already has a Twitter account linked to their account.");await Le.initLoginWithOAuth("twitter")},linkDiscord:async()=>{if(s?.discord)throw new C("User already has a Discord account linked to their account.");await Le.initLoginWithOAuth("discord")},linkGithub:async()=>{if(s?.github)throw new C("User already has a Github account linked to their account.");await Le.initLoginWithOAuth("github")},linkTiktok:async()=>{if(s?.tiktok)throw new C("User already has a Tiktok account linked to their account.");await Le.initLoginWithOAuth("tiktok")},linkLinkedIn:async()=>{if(s?.linkedin)throw new C("User already has a LinkedIn account linked to their account.");await Le.initLoginWithOAuth("linkedin")},linkApple:async()=>{await Le.initLoginWithOAuth("apple")},login:async()=>{if(n||(await new Promise(d=>{Xe(()=>d)}),Xe(null)),a){console.warn("Attempted to log in, but user is already logged in. Use a `link` helper instead.");return}N(!0),Yr()},logout:async()=>{await t.logout(),c(null),l(!1),g(null),ae(re,"logout","onSuccess"),m(!1),r(!1),$.del(wr)},getAccessToken:()=>t.getAccessToken(),getEthereumProvider:()=>{if(!s||!s.wallet)return new X;let d=w.find(u=>s.wallet&&u.address===s.wallet.address),p=t.connectors?.walletConnectors.find(u=>u.wallets.find(y=>y.address===d?.address));return!d||!p?new X:p.proxyProvider},getEthersProvider:()=>{if(!s||!s.wallet)return new as(new ht(new X));let d=w.find(u=>s.wallet&&u.address===s.wallet.address),p=t.connectors?.walletConnectors.find(u=>u.wallets.find(y=>y.address===d?.address));return!d||!p?new as(new ht(new X)):new as(new ht(p.proxyProvider))},getWeb3jsProvider:()=>{if(!s||!s.wallet)return new Vt(new X);let d=w.find(u=>s.wallet&&u.address===s.wallet.address),p=t.connectors?.walletConnectors.find(u=>u.wallets.find(y=>y.address===d?.address));return!d||!p?new Vt(new X):new Vt(p.proxyProvider)},unlinkWallet:async d=>{let p=await t.unlinkWallet(d);return c(p),p},unlinkEmail:async d=>{let p=await t.unlinkEmail(d);return c(p),p},unlinkPhone:async d=>{let p=await t.unlinkPhone(d);return c(p),p},unlinkGoogle:async d=>{let p=await t.unlinkOAuth("google",d);return c(p),p},unlinkTwitter:async d=>{let p=await t.unlinkOAuth("twitter",d);return c(p),p},unlinkDiscord:async d=>{let p=await t.unlinkOAuth("discord",d);return c(p),p},unlinkGithub:async d=>{let p=await t.unlinkOAuth("github",d);return c(p),p},unlinkTiktok:async d=>{let p=await t.unlinkOAuth("tiktok",d);return c(p),p},unlinkLinkedIn:async d=>{let p=await t.unlinkOAuth("linkedin",d);return c(p),p},unlinkApple:async d=>{let p=await t.unlinkOAuth("apple",d);return c(p),p},setActiveWallet:async d=>{let p=w.find(y=>xi(y.address)===xi(d)),u=s?.linkedAccounts.find(y=>y.type==="wallet"&&xi(y.address)===xi(d));if(!p||!await p.isConnected())se(d),ls();else if(!p.linked)p.loginOrLink();else{let y=Object.assign({},s);y.wallet=u&&{address:u.address,chainType:u.chainType,chainId:u.chainId,walletClient:u.walletClient,walletClientType:u.walletClientType,connectorType:u.connectorType},c(y)}},forkSession:()=>t.forkSession(),createWallet:async()=>{if(!a||!s)throw ae(re,"createWallet","onError","must_be_authenticated"),new Error("User must be authenticated before creating a Privy wallet");return ds(s,15e3)},setWalletPassword:()=>new Promise((d,p)=>{if(!a||!s){p(new Error("User must be authenticated before adding password to Privy wallet"));return}let u=Z(s);if(!u||!B){p(new Error("Must have a Privy wallet to add a password"));return}if(u.recoveryMethod==="user-passcode"){p(new Error("Cannot set password. Embedded wallet already has a password."));return}q(!0);let y={onSuccess:d,onFailure:p,callAuthOnSuccessOnClose:!1},M={onCompleteNavigateTo:"EMBEDDED_WALLET_PASSWORD_UPDATE_SPLASH_SCREEN",onFailure:p};le({setWalletPassword:y,connectWallet:M}),Se("EMBEDDED_WALLET_CONNECTING_SCREEN")}),signMessage:(d,p)=>new Promise(async(u,y)=>{if(!a||!s){y(new Error("User must be authenticated before signing with a Privy wallet"));return}let M=Z(s);if(!M){y(new Error("Must have a Privy wallet before signing"));return}if(typeof d!="string"||d.length<1){y(new Error("Message must be a non-empty string"));return}q(!0);let me=async()=>{if(!a)return y(new Error("User must be authenticated before signing with a Privy wallet")),null;let Ee=await At();if(B&&Ee)try{if(!await Le.recoverEmbeddedWallet())return y(new Error("Unable to connect to wallet")),null;t.createAnalyticsEvent("embedded_wallet_sign_message_started",{walletAddress:M.address});let{response:ze}=await B.rpc({accessToken:Ee,address:M.address,request:{method:"personal_sign",params:[d,M.address]}}),yr=ze.data;return t.createAnalyticsEvent("embedded_wallet_sign_message_completed",{walletAddress:M.address}),yr}catch(Ft){return y(Ft),null}else return null};if(L.embeddedWallets.noPromptOnSignature){p&&console.warn("uiOptions defined with `noPromptOnSignature` set to true in app config");let Ee=await me();Ee?u(Ee):y(new xe("Unable to sign message"))}else{let ze={message:d,confirmAndSignMessage:me,onSuccess:Bt=>{u(Bt)},onFailure:Bt=>{y(Bt)},uiOptions:p||{}},yr={onCompleteNavigateTo:"EMBEDDED_WALLET_SIGN_REQUEST_SCREEN",onFailure:y};le({signMessage:ze,connectWallet:yr}),Se("EMBEDDED_WALLET_CONNECTING_SCREEN")}}),sendTransaction:(d,p,u)=>new Promise(async(y,M)=>{if(!a||!s){M(new Error("User must be authenticated before signing with a Privy wallet"));return}let me=Z(s);if(!me){M(new Error("Must have a Privy wallet before signing"));return}q(!0);let Ee=t.connectors?.findWalletConnector("embedded","privy")?.proxyProvider,Ft=d.chainId?Number(d.chainId):Ee.chainId;bu(Ft);let ze=Object.assign({},d,{chainId:Ft}),yr=async()=>{let Bt=await At();if(!Bt||!B){M(new Error("Must have valid access token and Privy wallet to send transaction"));return}try{if(!await Le.recoverEmbeddedWallet()){M(new Error("Unable to connect to wallet"));return}let ps=new kv(ot(ze.chainId,L.chains,L.rpcConfig)),xu=await hi(me.address,ze,ps),Pu=await fi(Bt,me.address,B,xu,ps);y(Pu)}catch(Qr){M(Qr)}};if(L.embeddedWallets.noPromptOnSignature)p&&console.warn("uiOptions defined with `noPromptOnSignature` set to true in app config"),yr();else{let Bt={transactionRequest:ze,onSuccess:y,onFailure:M,uiOptions:p||{},fundWalletConfig:u},Qr={onCompleteNavigateTo:"EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN",onFailure:M};le({connectWallet:Qr,sendTransaction:Bt}),Se("EMBEDDED_WALLET_CONNECTING_SCREEN")}}),exportWallet:()=>new Promise((d,p)=>{if(!a||!s){p(new Error("User must be authenticated before exporting their Privy wallet"));return}if(!Z(s)){p(new Error("Must have a Privy wallet before exporting"));return}q(!0);let y={onCompleteNavigateTo:"EMBEDDED_WALLET_KEY_EXPORT_SCREEN",onFailure:p},M={appId:e.appId,origin:t.apiUrl,onSuccess:d,onFailure:p};le({keyExport:M,connectWallet:y}),Se("EMBEDDED_WALLET_CONNECTING_SCREEN")})};uu=Bo.signMessage,mu=Bo.sendTransaction;let Le=(()=>({isNewUserThisSession:S,isLinking:h,linkingHint:U,walletConnectionStatus:k,rpcConfig:L.rpcConfig,chains:L.chains,clientAnalyticsId:t.clientAnalyticsId,nativeTokenSymbolForChainId:d=>L.chains.find(p=>p.id===Number(d))?.nativeCurrency.symbol,captchaData:{ready:Do,enabled:L.captchaEnabled,execute:()=>{let d=window.turnstile;if(!d)return;let p=d.render("#cf-turnstile",{sitekey:Us,action:L.id,callback:fo,"error-callback":Ne,"expired-callback":()=>{try{d.reset(ce),Ne(void 0),fo(void 0)}catch{Ne("expired_and_failed_reset")}},"unsupported-callback":()=>{console.warn("Browser does not support Turnstile.")}});p||console.warn("Failed to render challenge."),et(p)},remove:()=>{let d=window.turnstile;!d?.remove||!ce||(d.remove(ce),et(void 0),Ne(void 0),fo(void 0))},token:Pi,error:Uo},initializeWalletProxy:async d=>{if(B)return B;let p=new Promise(M=>{Mo(()=>me=>M(me))}),u=new Promise(M=>setTimeout(()=>M(null),d)),y=await Promise.race([p,u]);return Mo(null),y},getAuthFlow:()=>t.authFlow,getAuthMeta:()=>t.authFlow?.meta,closePrivyModal:(d={shouldCallAuthOnSuccess:!0})=>{let p=n&&a&&s;d.shouldCallAuthOnSuccess&&p?(ae(re,"login","onComplete",s,S,!1),e.onSuccess?.(s,S)):I&&ae(re,"login","onError","exited_auth_flow"),t.authFlow=void 0,se(null),g(null),N(!1),m(!1),T(!1),r(!1),t.createAnalyticsEvent("modal_closed")},connectWallet:Ti,initLoginWithWallet:wu,loginWithWallet:async()=>{if(!n)throw new gr;if(!(t.authFlow instanceof vo))throw new C("Must initialize SIWE flow first.");let d,p;if(a)d=await t.link();else try{({user:d,isNewUser:p}=await t.authenticate())}catch(u){throw ae(re,"login","onError",u.privyErrorCode||"generic_connect_wallet_error"),u}c(d||s||null),T(p||!1),l(!0)},initLoginWithOAuth:async d=>{t.startAuthFlow(new Ht(d));let p=await t.authFlow.getAuthorizationUrl();p&&p.url&&window.location.assign(p.url)},loginWithOAuth:async()=>{if(!(t.authFlow instanceof Ht))throw new C("Must initialize OAuth flow before calling loginWithOAuth");let d,p;if(a)d=await t.link();else try{({user:d,isNewUser:p}=await t.authenticate())}catch(u){throw ae(re,"login","onError",u.privyErrorCode||"unknown_auth_error"),u}c(d),T(p||!1),l(!0)},initLoginWithEmail:async(d,p)=>{let u=new go(d,p);t.startAuthFlow(u);try{await u.sendCodeEmail()}catch(y){throw ae(re,"login","onError",y.privyErrorCode||"unknown_auth_error"),y}},initLoginWithSms:async(d,p)=>{let u=new wo(d,p);t.startAuthFlow(u);try{await u.sendSmsCode()}catch(y){throw ae(re,"login","onError",y.privyErrorCode||"unknown_auth_error"),y}},resendEmailCode:async()=>{await t.authFlow?.sendCodeEmail()},resendSmsCode:async()=>{await t.authFlow?.sendSmsCode()},loginWithCode:async d=>{if(!n)throw new gr;if(t.authFlow instanceof go)t.authFlow.meta.emailCode=d.trim();else if(t.authFlow instanceof wo)t.authFlow.meta.smsCode=d.trim();else throw new C("Must initialize a passwordless code flow first");let p,u;a?p=await t.link():{user:p,isNewUser:u}=await t.authenticate(),c(p||s||null),T(u||!1),l(!0)},refreshUser:async()=>{let d=await t.getAuthenticatedUser();return c(d),d},walletProxy:B,createAnalyticsEvent:(d,p,u)=>t.createAnalyticsEvent(d,p,u),getUsdTokenPrice:d=>t.getUsdTokenPrice(d),recoverEmbeddedWallet:async()=>new Promise(async(d,p)=>{let u=s?.linkedAccounts.find(M=>M.type==="wallet"&&M.walletClientType==="privy"),y=await At();if(!y||!B||!u){p(new Error("Must have valid access token and Privy wallet to recover wallet"));return}q(!0);try{await B.connect({accessToken:y,address:u.address}),d(!0)}catch(M){Xo(M)&&u.recoveryMethod==="privy"?(t.createAnalyticsEvent("embedded_wallet_pinless_recovery_started",{walletAddress:u.address}),(await B.recover({address:u.address,accessToken:y})).address||p(new Error("Unable to recover wallet")),t.createAnalyticsEvent("embedded_wallet_recovery_completed",{walletAddress:u.address}),d(!0)):Xo(M)?(le({recoverWallet:{privyWallet:u,onFailure:p,onSuccess:()=>d(!0)}}),Se("EMBEDDED_WALLET_RECOVERY_SCREEN")):p(M)}}),getFiatOnRampConfig:cs,updateWallets:()=>Jr()}))();hu=Le.recoverEmbeddedWallet;let Eu=Rv(()=>({wallets:w}),[w]);return ho(nt.Provider,{value:Bo,children:ho(is.Provider,{value:re,children:pu(Za.Provider,{value:Eu,children:[e.children,pu(zi.Provider,{value:Le,children:[ho(Dp,{theme:{...L.appearance.palette||{}}}),ho(dl,{appConfig:L,data:Ce,setModalData:le,setInitialScreen:g,initialScreen:E,visible:o,authenticated:a,children:o?ho(Hp,{}):null}),G&&H.id?ho(lu,{appId:e.appId,clientAnalyticsId:t.clientAnalyticsId,origin:t.apiUrl,onLoad:K,onLoadFailed:()=>null}):null]}),L.captchaEnabled&&ho(Gp,{onLoad:()=>Kr(!0)})]})})})};import{useContext as Ov}from"react";function Mv(e){let{login:t}=Ov(nt);return mo("login",e),{login:t}}import{useContext as Dv}from"react";function Uv(e){let{logout:t}=Dv(nt);return mo("logout",e),{logout:t}}import{useContext as Fv}from"react";function Bv(e){let{connectWallet:t}=Fv(nt);return mo("connectWallet",e),{connectWallet:t}}import{useContext as Hv}from"react";function Gv(e){let{createWallet:t}=Hv(nt);return mo("createWallet",e),{createWallet:t}}export{ht as AsExternalProvider,Tr as ConnectorManager,Sr as PrivyClient,Nv as PrivyProvider,X as PrivyProxyProvider,Ci as SUPPORTED_CHAINS,Si as VERSION,Ue as WalletConnector,At as getAccessToken,Bv as useConnectWallet,Gv as useCreateWallet,Mv as useLogin,Uv as useLogout,V as usePrivy,Xa as useWallets};
|
|
2251
|
+
`;import{useEffect as lv}from"react";import{Fragment as dv,jsx as pv}from"react/jsx-runtime";var cv=({onLoad:e})=>{let t=window;return lv(()=>{if(document.getElementById("cf-script")!==null||t.turnstile)return;t.onloadTurnstileCallback=e;let o=document.createElement("script");o.setAttribute("src","https://challenges.cloudflare.com/turnstile/v0/api.js?onload=onloadTurnstileCallback&render=explicit"),o.setAttribute("id","cf-script"),o.setAttribute("async","true"),document.body.appendChild(o)},[]),pv(dv,{})},zp=cv;var $p={id:42161,name:"Arbitrum One",network:"arbitrum",nativeCurrency:{name:"Ether",symbol:"ETH",decimals:18},rpcUrls:{alchemy:{http:["https://arb-mainnet.g.alchemy.com/v2"],webSocket:["wss://arb-mainnet.g.alchemy.com/v2"]},infura:{http:["https://arbitrum-mainnet.infura.io/v3"],webSocket:["wss://arbitrum-mainnet.infura.io/ws/v3"]},default:{http:["https://arb1.arbitrum.io/rpc"]},public:{http:["https://arb1.arbitrum.io/rpc"]}},blockExplorers:{etherscan:{name:"Arbiscan",url:"https://arbiscan.io"},default:{name:"Arbiscan",url:"https://arbiscan.io"}}};var Vp={id:421613,name:"Arbitrum Goerli",network:"arbitrum-goerli",nativeCurrency:{name:"Goerli Ether",symbol:"AGOR",decimals:18},rpcUrls:{alchemy:{http:["https://arb-goerli.g.alchemy.com/v2"],webSocket:["wss://arb-goerli.g.alchemy.com/v2"]},infura:{http:["https://arbitrum-goerli.infura.io/v3"],webSocket:["wss://arbitrum-goerli.infura.io/ws/v3"]},default:{http:["https://goerli-rollup.arbitrum.io/rpc"]},public:{http:["https://goerli-rollup.arbitrum.io/rpc"]}},blockExplorers:{etherscan:{name:"Arbiscan",url:"https://goerli.arbiscan.io/"},default:{name:"Arbiscan",url:"https://goerli.arbiscan.io/"}},testnet:!0};var qp={id:43114,name:"Avalanche",network:"avalanche",nativeCurrency:{decimals:18,name:"Avalanche",symbol:"AVAX"},rpcUrls:{default:{http:["https://api.avax.network/ext/bc/C/rpc"]},public:{http:["https://api.avax.network/ext/bc/C/rpc"]}},blockExplorers:{etherscan:{name:"SnowTrace",url:"https://snowtrace.io"},default:{name:"SnowTrace",url:"https://snowtrace.io"}}};var jp={id:43113,name:"Avalanche Fuji",network:"avalanche-fuji",nativeCurrency:{decimals:18,name:"Avalanche Fuji",symbol:"AVAX"},rpcUrls:{default:{http:["https://api.avax-test.network/ext/bc/C/rpc"]},public:{http:["https://api.avax-test.network/ext/bc/C/rpc"]}},blockExplorers:{etherscan:{name:"SnowTrace",url:"https://testnet.snowtrace.io"},default:{name:"SnowTrace",url:"https://testnet.snowtrace.io"}},testnet:!0};var Kp={id:8453,network:"base",name:"Base",nativeCurrency:{name:"Ether",symbol:"ETH",decimals:18},rpcUrls:{blast:{http:["https://base-mainnet.blastapi.io"],webSocket:["wss://base-mainnet.blastapi.io"]},default:{http:["https://mainnet.base.org"]},public:{http:["https://mainnet.base.org"]}},blockExplorers:{etherscan:{name:"Basescan",url:"https://basescan.org"},default:{name:"Basescan",url:"https://basescan.org"}},testnet:!0};var Yp={id:84531,network:"base-goerli",name:"Base Goerli Testnet",nativeCurrency:{name:"Goerli Ether",symbol:"ETH",decimals:18},rpcUrls:{blast:{http:["https://base-goerli.blastapi.io"],webSocket:["wss://base-goerli.blastapi.io"]},default:{http:["https://goerli.base.org"]},public:{http:["https://goerli.base.org"]}},blockExplorers:{etherscan:{name:"Basescan",url:"https://goerli.basescan.org"},default:{name:"Basescan",url:"https://goerli.basescan.org"}},testnet:!0};var Jp={id:42220,name:"Celo Mainnet",network:"celo",nativeCurrency:{decimals:18,name:"CELO",symbol:"CELO"},rpcUrls:{default:{http:["https://forno.celo.org"]},infura:{http:["https://celo-mainnet.infura.io/v3"]},public:{http:["https://forno.celo.org"]}},blockExplorers:{default:{name:"Celo Explorer",url:"https://explorer.celo.org/mainnet"},etherscan:{name:"CeloScan",url:"https://celoscan.io"}},testnet:!1};var Qp={id:44787,name:"Celo Alfajores Testnet",network:"celo-alfajores",nativeCurrency:{decimals:18,name:"CELO",symbol:"CELO"},rpcUrls:{default:{http:["https://alfajores-forno.celo-testnet.org"]},infura:{http:["https://celo-alfajores.infura.io/v3"]},public:{http:["https://alfajores-forno.celo-testnet.org"]}},blockExplorers:{default:{name:"Celo Explorer",url:"https://explorer.celo.org/alfajores"},etherscan:{name:"CeloScan",url:"https://alfajores.celoscan.io/"}},testnet:!0};var Zp={id:314,name:"Filecoin - Mainnet",network:"filecoin-mainnet",nativeCurrency:{decimals:18,name:"filecoin",symbol:"FIL"},rpcUrls:{default:{http:["https://api.node.glif.io/rpc/v1"]},public:{http:["https://api.node.glif.io/rpc/v1"]}},blockExplorers:{default:{name:"Filfox",url:"https://filfox.info/en"},filscan:{name:"Filscan",url:"https://filscan.io"},filscout:{name:"Filscout",url:"https://filscout.io/en"},glif:{name:"Glif",url:"https://explorer.glif.io"}}};var Xp={id:314159,name:"Filecoin - Calibration testnet",network:"filecoin-calibration",nativeCurrency:{decimals:18,name:"testnet filecoin",symbol:"tFIL"},rpcUrls:{default:{http:["https://api.calibration.node.glif.io/rpc/v1"]},public:{http:["https://api.calibration.node.glif.io/rpc/v1"]}},blockExplorers:{default:{name:"Filscan",url:"https://calibration.filscan.io"}}};var eu={id:5,network:"goerli",name:"Goerli",nativeCurrency:{name:"Goerli Ether",symbol:"ETH",decimals:18},rpcUrls:{alchemy:{http:["https://eth-goerli.g.alchemy.com/v2"],webSocket:["wss://eth-goerli.g.alchemy.com/v2"]},infura:{http:["https://goerli.infura.io/v3"],webSocket:["wss://goerli.infura.io/ws/v3"]},default:{http:["https://rpc.ankr.com/eth_goerli"]},public:{http:["https://rpc.ankr.com/eth_goerli"]}},blockExplorers:{etherscan:{name:"Etherscan",url:"https://goerli.etherscan.io"},default:{name:"Etherscan",url:"https://goerli.etherscan.io"}},testnet:!0};var tu={id:59144,network:"linea-mainnet",name:"Linea Mainnet",nativeCurrency:{name:"Linea Ether",symbol:"ETH",decimals:18},rpcUrls:{infura:{http:["https://linea-mainnet.infura.io/v3"],webSocket:["wss://linea-mainnet.infura.io/ws/v3"]},default:{http:["https://rpc.linea.build"],webSocket:["wss://rpc.linea.build"]},public:{http:["https://rpc.linea.build"],webSocket:["wss://rpc.linea.build"]}},blockExplorers:{default:{name:"Etherscan",url:"https://lineascan.build"},etherscan:{name:"Etherscan",url:"https://lineascan.build"}},testnet:!1};var ou={id:59140,network:"linea-testnet",name:"Linea Goerli Testnet",nativeCurrency:{name:"Linea Ether",symbol:"ETH",decimals:18},rpcUrls:{infura:{http:["https://linea-goerli.infura.io/v3"],webSocket:["wss://linea-goerli.infura.io/ws/v3"]},default:{http:["https://rpc.goerli.linea.build"],webSocket:["wss://rpc.goerli.linea.build"]},public:{http:["https://rpc.goerli.linea.build"],webSocket:["wss://rpc.goerli.linea.build"]}},blockExplorers:{default:{name:"Etherscan",url:"https://goerli.lineascan.build"},etherscan:{name:"Etherscan",url:"https://goerli.lineascan.build"}},testnet:!0};var bi={id:1,network:"homestead",name:"Ethereum",nativeCurrency:{name:"Ether",symbol:"ETH",decimals:18},rpcUrls:{alchemy:{http:["https://eth-mainnet.g.alchemy.com/v2"],webSocket:["wss://eth-mainnet.g.alchemy.com/v2"]},infura:{http:["https://mainnet.infura.io/v3"],webSocket:["wss://mainnet.infura.io/ws/v3"]},default:{http:["https://cloudflare-eth.com"]},public:{http:["https://cloudflare-eth.com"]}},blockExplorers:{etherscan:{name:"Etherscan",url:"https://etherscan.io"},default:{name:"Etherscan",url:"https://etherscan.io"}}};var ru={id:10,name:"OP Mainnet",network:"optimism",nativeCurrency:{name:"Ether",symbol:"ETH",decimals:18},rpcUrls:{alchemy:{http:["https://opt-mainnet.g.alchemy.com/v2"],webSocket:["wss://opt-mainnet.g.alchemy.com/v2"]},infura:{http:["https://optimism-mainnet.infura.io/v3"],webSocket:["wss://optimism-mainnet.infura.io/ws/v3"]},default:{http:["https://mainnet.optimism.io"]},public:{http:["https://mainnet.optimism.io"]}},blockExplorers:{etherscan:{name:"Etherscan",url:"https://optimistic.etherscan.io"},default:{name:"Optimism Explorer",url:"https://explorer.optimism.io"}}};var nu={id:420,name:"Optimism Goerli Testnet",network:"optimism-goerli",nativeCurrency:{name:"Goerli Ether",symbol:"ETH",decimals:18},rpcUrls:{alchemy:{http:["https://opt-goerli.g.alchemy.com/v2"],webSocket:["wss://opt-goerli.g.alchemy.com/v2"]},infura:{http:["https://optimism-goerli.infura.io/v3"],webSocket:["wss://optimism-goerli.infura.io/ws/v3"]},default:{http:["https://goerli.optimism.io"]},public:{http:["https://goerli.optimism.io"]}},blockExplorers:{etherscan:{name:"Etherscan",url:"https://goerli-optimism.etherscan.io"},default:{name:"Etherscan",url:"https://goerli-optimism.etherscan.io"}},testnet:!0};var iu={id:11155111,network:"sepolia",name:"Sepolia",nativeCurrency:{name:"Sepolia Ether",symbol:"SEP",decimals:18},rpcUrls:{alchemy:{http:["https://eth-sepolia.g.alchemy.com/v2"],webSocket:["wss://eth-sepolia.g.alchemy.com/v2"]},infura:{http:["https://sepolia.infura.io/v3"],webSocket:["wss://sepolia.infura.io/ws/v3"]},default:{http:["https://rpc.sepolia.org"]},public:{http:["https://rpc.sepolia.org"]}},blockExplorers:{etherscan:{name:"Etherscan",url:"https://sepolia.etherscan.io"},default:{name:"Etherscan",url:"https://sepolia.etherscan.io"}},testnet:!0};var Ei=[$p,Vp,eu,iu,bi,ru,nu,Vr,qr,Jp,Qp,Zp,Xp,Kp,Yp,tu,ou,qp,jp],JS=new Set(Ei.map(e=>e.id));import Lo from"tinycolor2";var au="#FFFFFF",uv="#000000",mv=au,hv="#1E1E1D";function fv(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 uo(e,t){let o=Math.max(0,Math.min(1,e.toHsl().l+t));return Lo({...e.toHsl(),l:o})}function su({backgroundTheme:e,accentHex:t,successHex:o="#51BA81",warnHex:r="#FFB74D",errorHex:n="#EC6351",whiteHex:i=au,blackHex:a=uv}){let l;switch(e){case"light":l=mv;break;case"dark":l=hv;break;default:l=e;break}let s=Lo(l),c=Lo(t),h=Lo(o),m=Lo(r),w=Lo(n),f=fv(s.getLuminance()),b=uo(s,f==="light"?-.04:.11),S=uo(s,f==="light"?-.88:.87),P=uo(s,f==="light"?-.77:.75),E=uo(s,f==="light"?-.43:.45).desaturate(f==="light"?60:20),g=uo(s,f==="light"?-.08:.25).desaturate(f==="light"?60:20),I=uo(c,.15),N=uo(c,-.06),k=Lo(c.getLuminance()>.5?a:i),O=uo(h,-.16);return{colorScheme:f,background:s.toHslString(),background2:b.toHslString(),foreground:S.toHslString(),foreground2:P.toHslString(),foreground3:E.toHslString(),foreground4:g.toHslString(),accent:c.toHslString(),accentLight:I.toHslString(),accentDark:N.toHslString(),foregroundAccent:k.toHslString(),success:h.toHslString(),successDark:O.toHslString(),error:w.toHslString(),warn:m.toHslString()}}var Ft={appearance:{theme:"light",accentColor:"#676FFF"},walletConnectCloudProjectId:Us,rpcConfig:{rpcUrls:{},rpcTimeouts:{}},captchaEnabled:!1,_render:{inDialog:!0,inParentNodeId:null},fiatOnRamp:{useSandbox:!1}};function xi(e,t){let o=["google","twitter","discord","tiktok","linkedin","github","apple"],r=t?.loginMethods?.filter(I=>o.includes(I)),n=r?.slice(0,5),i,a,l,s,c,h,m,w,f,b;if(t?.loginMethods?(i=t.loginMethods.includes("email"),a=t.loginMethods.includes("sms"),l=t.loginMethods.includes("wallet"),s=n?.includes("google"),c=n?.includes("twitter"),h=n?.includes("discord"),m=n?.includes("tiktok"),f=n?.includes("github"),w=n?.includes("linkedin"),b=n?.includes("apple")):(i=e.emailAuth,a=e.smsAuth,l=e.walletAuth,s=e.googleOAuth,c=e.twitterOAuth,h=e.discordOAuth,f=e.githubOAuth,m=e.tiktokOAuth,w=e.linkedinOAuth,b=e.appleOAuth),i&&a&&(console.warn("Enabling both email and SMS passwordless is not currently supported. Disabling SMS."),a=!1),!i&&!a&&[s,c,h,f,m,w,b].some(I=>I))throw new Error("To enable social logins you must also enable either SMS or Email login");if(![i,a,l,s,c,h,f,m,w,b].some(I=>I))throw new Error("You must enable at least one login method");let{chains:S,defaultChain:P}=yv(t?.additionalChains,t?.supportedChains,t?.defaultChain);r&&r.length>5&&console.warn("Max number of social logins allowed is 5. Any more have been removed.");let E=t?.customAuth?.getCustomAccessToken&&t?.customAuth?.enabled!==!1;return{id:e.id,name:e.name,allowlistConfig:e.allowlistConfig,appearance:{logo:t?.appearance?.logo??e.logoUrl,palette:su({backgroundTheme:t?.appearance?.theme??Ft.appearance.theme,accentHex:t?.appearance?.accentColor??e.accentColor??Ft.appearance.accentColor}),showWalletLoginFirst:t?.appearance?.showWalletLoginFirst??e.showWalletLoginFirst},loginMethods:{wallet:l,email:i,sms:a,google:s,twitter:c,discord:h,github:f,tiktok:m,linkedin:w,apple:b},legal:{termsAndConditionsUrl:t?.legal?.termsAndConditionsUrl??e.termsAndConditionsUrl,privacyPolicyUrl:t?.legal?.privacyPolicyUrl??e.privacyPolicyUrl},walletConnectCloudProjectId:t?.walletConnectCloudProjectId??e.walletConnectCloudProjectId??Ft.walletConnectCloudProjectId,rpcConfig:{rpcUrls:t?.rpcConfig?.rpcUrls??Ft.rpcConfig.rpcUrls,rpcTimeouts:t?.rpcConfig?.rpcTimeouts??Ft.rpcConfig.rpcTimeouts},chains:S,defaultChain:P,captchaEnabled:e.captchaEnabled??Ft.captchaEnabled,embeddedWallets:{...e.embeddedWalletConfig,...E?{createOnLogin:"all-users",requireUserPasswordOnCreate:!1,noPromptOnSignature:!0}:{},...t?.embeddedWallets},customAuth:E?{enabled:!0,...t.customAuth}:void 0,fiatOnRamp:{enabled:e.fiatOnRampEnabled,useSandbox:t?.fiatOnRamp?.useSandbox??Ft.fiatOnRamp.useSandbox},loginConfig:{twitterOAuthOnMobileEnabled:e.twitterOAuthOnMobileEnabled??!1},render:{inDialog:t?._render?.inDialog??Ft._render.inDialog,inParentNodeId:t?._render?.inParentNodeId??Ft._render.inParentNodeId}}}function lu(e,t){return e?.appearance?.logo&&typeof e.appearance.logo=="object"&&(e.appearance.logo="component"),{...e,legacyCreateEmbeddedWalletFlag:t}}function yv(e,t,o){let r;if(e&&t&&console.warn("You should only specify one of `additionalChains` or `supportedChains`. Using `supportedChains`."),t){if(t.length===0)throw new Error("`supportedChains` must contain at least one chain");r=t}else r=Ei.concat(e??[]);let n=t?r[0]:bi,i=o??n;if(!r.find(a=>a.id===i.id))throw new Error("`defaultChain` must be included in `supportedChains`");return{chains:r,defaultChain:i}}import{useRef as gv,useEffect as vv}from"react";var Ti=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;case"privy:wallet:set-recovery-password":return r;default:throw new Error(`invalid wallet event type ${t}`)}}};import{jsx as Tv}from"react/jsx-runtime";var wv=function(e){return()=>`id-${e++}`}(0);function Cv(e){return typeof e.event=="string"&&/^privy:.+/.test(e.event)}function fr(e){return e.error!==void 0}var Oo=new Ti,is=new Map,bv=(e,t)=>typeof t=="bigint"?t.toString():t,Ev=(e,t)=>`${e}${JSON.stringify(t,bv)}`;function yr(e,t,o){let r=o.contentWindow;if(!r)throw new Error("iframe not initialized");let n=Ev(e,t);if(e==="privy:wallet:create"){let a=is.get(n);if(a)return a}let i=new Promise((a,l)=>{let s=wv();Oo.enqueue(s,{resolve:a,reject:l}),r.postMessage({id:s,event:e,data:t},"*")}).finally(()=>{is.delete(n)});return is.set(n,i),i}function xv(e){switch(e.event){case"privy:iframe:ready":let t=Oo.dequeue(e.event,e.id);return fr(e)?t.reject(new Wt(e.error.type,e.error.message)):t.resolve(e.data);case"privy:wallet:create":let o=Oo.dequeue(e.event,e.id);return fr(e)?o.reject(new Wt(e.error.type,e.error.message)):o.resolve(e.data);case"privy:wallet:connect":let r=Oo.dequeue(e.event,e.id);return fr(e)?r.reject(new Wt(e.error.type,e.error.message)):r.resolve(e.data);case"privy:wallet:recover":let n=Oo.dequeue(e.event,e.id);return fr(e)?n.reject(new Wt(e.error.type,e.error.message)):n.resolve(e.data);case"privy:wallet:rpc":let i=Oo.dequeue(e.event,e.id);return fr(e)?i.reject(new Wt(e.error.type,e.error.message)):i.resolve(e.data);case"privy:wallet:set-recovery-password":let a=Oo.dequeue(e.event,e.id);return fr(e)?a.reject(new Wt(e.error.type,e.error.message)):a.resolve(e.data);default:console.warn("Unsupported wallet proxy method:",e)}}function cu(e){let t=gv(null);return vv(()=>{let o=t.current;if(!o)return;function r(s){s&&s.origin===e.origin&&Cv(s.data)&&xv(s.data)}let n={create(s){return yr("privy:wallet:create",s,o)},connect(s){return yr("privy:wallet:connect",s,o)},recover(s){return yr("privy:wallet:recover",s,o)},rpc(s){return yr("privy:wallet:rpc",s,o)},setRecoveryPassword(s){return yr("privy:wallet:set-recovery-password",s,o)}};window.addEventListener("message",r);let i=()=>e.onLoad(n),a=(...s)=>{console.warn("Privy iframe failed to load: ",...s),e.onLoadFailed()},l=new AbortController;return Js(()=>yr("privy:iframe:ready",{},o),{abortSignal:l.signal}).then(i,a),()=>{window.removeEventListener("message",r),l.abort()}},[t.current]),Tv("iframe",{ref:t,width:"0",height:"0",style:{display:"none",height:"0px",width:"0px"},src:un(e.origin,`/apps/${e.appId}/embedded-wallets`,{caid:e.clientAnalyticsId})})}import{createContext as Pv,useContext as _v,useEffect as Sv}from"react";var du={login:{onComplete:[],onError:[]},logout:{onSuccess:[]},connectWallet:{onSuccess:[],onError:[]},createWallet:{onSuccess:[],onError:[]}},as=Pv(void 0),Av=()=>_v(as);function mo(e,t){if(!t)return;let r=Av().current[e];return Sv(()=>{for(let[n,i]of Object.entries(t))r.hasOwnProperty(n)||console.warn(`Invalid event type "${n}" for action "${e}"`),r[n]?.push(i);return()=>{for(let[n,i]of Object.entries(t))r.hasOwnProperty(n)||console.warn(`Invalid event type "${n}" for action "${e}"`),r[n]=r[n]?.filter(a=>a!==i)}},[t])}function ae(e,t,o,...r){for(let n of e.current[t][o])n(...r)}import{jsx as ho,jsxs as uu}from"react/jsx-runtime";function Wv(e){return typeof e=="string"&&e.length===25}var Yr;function At(){if(!Yr){let e=$.get($o);return Promise.resolve(e||null)}return Yr.getAccessToken()}var mu,ol=(e,t)=>mu(e,t),hu,rl=(e,t)=>hu(e,t),fu,nl=()=>fu(),Iv=()=>{let t=new URLSearchParams(window.location.search).get("privy_token");if(!t)return;$.put(wr,t);let o=new URL(window.location.href);o.searchParams.delete("privy_token"),window.history.pushState({},"",o)},Nv=({config:e,...t})=>{if(!Wv(t.appId))throw new C("Cannot initialize the Privy provider with an invalid Privy app ID");Yr||(Yr=new kr({appId:t.appId,apiUrl:t.apiUrl||an}));let o=Object.assign({},e);return t.createPrivyWalletOnLogin!==void 0&&o.embeddedWallets?.createOnLogin===void 0&&(o.embeddedWallets||(o.embeddedWallets={}),o.embeddedWallets.createOnLogin=t.createPrivyWalletOnLogin?"users-without-wallets":"off"),t.createPrivyWalletOnLogin!==void 0&&e?.embeddedWallets?.createOnLogin&&console.warn("Both `createPrivyWalletOnLogin` and `config.embeddedWallets.createOnLogin` are set. `createPrivyWalletOnLogin` is deprecated and should be removed."),ho(Lv,{...t,config:o,client:Yr})},Lv=e=>{let t=e.client,[o,r]=Q(!1),[n,i]=Q(!1),[a,l]=Q(!1),[s,c]=Q(null),[h,m]=Q(!1),[w,f]=Q([]),b=pu(w),[S,P]=Q(!1),[E,g]=Q(null),[I,N]=Q(!1),[k,O]=Q({status:"disconnected",connectError:null,connector:null,connectRetry:x}),[U,se]=Q(null),[B,K]=Q(null),[H,Y]=Q({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,linkedinOAuth:!1,appleOAuth:!1,termsAndConditionsUrl:null,privacyPolicyUrl:null,embeddedWalletConfig:{createOnLogin:"off",requireUserPasswordOnCreate:!1},fiatOnRampEnabled:!1,captchaEnabled:!1}),[L,Ie]=Q(()=>{let d=lu(e.config,e.createPrivyWalletOnLogin);return t.createAnalyticsEvent("sdk_initialize",d),xi(H,e.config)}),[G,q]=Q(!0),[Ce,le]=Q({}),[z,Xe]=Q(null),[be,Mo]=Q(null),[Do,Jr]=Q(!1),[_i,fo]=Q(),[Uo,Ne]=Q(),[ce,et]=Q(),[yo,Fo]=Q(!1),re=pu(du),Se=d=>{d&&g(d),r(!0),t.createAnalyticsEvent("modal_open",{initialScreen:d})},Qr=d=>{L.embeddedWallets.createOnLogin!=="off"&&q(!0),Se(d)};Pt(()=>{if(!B||!s){t.connectors?.removeEmbeddedWalletConnector();return}let d=s?.linkedAccounts.filter(p=>p.type==="wallet"&&p.walletClient==="privy");if(d&&d.length>0){let p=d[0].address;t.connectors?.addEmbeddedWalletConnector(B,p,L.defaultChain)}},[B,s]),Pt(()=>{B&&be?.(B)},[B]),Pt(()=>{(async()=>{if(!L.customAuth?.enabled)return;q(!0);let{getCustomAccessToken:p,isLoading:u}=L.customAuth;if(!(!n||u))try{let y=await p();if(!y){await Bo.logout();return}if(a)return;t.startAuthFlow(new Go(y));let{user:M,isNewUser:me}=await t.authenticate();M||await Bo.logout(),c(M||null),P(me||!1),l(!0),Fo(!0)}catch(y){console.warn(y),a&&await Bo.logout()}})()},[L.customAuth?.enabled,L.customAuth?.getCustomAccessToken,L.customAuth?.isLoading,n,a]),Pt(()=>{yo&&B&&s&&zt(s,e.config?.embeddedWallets?.createOnLogin)&&(Fo(!1),ps(s,cn).catch(console.error))},[yo&&B&&s]),Pt(()=>{async function d(){let p=await t.getServerConfig();Y(p);let u=xi(p,e.config);Ie(u),p.customApiUrl&&t.updateApiUrl(p.customApiUrl),t.initializeConnectorManager(u.walletConnectCloudProjectId,u.rpcConfig,u.chains,u.defaultChain),t.connectors?.initialize();let y=yu();Iv();let M=await t.getAuthenticatedUser();e.config?.customAuth?.enabled||(l(!!M),M&&ae(re,"login","onComplete",M,!1,!0),c(M)),y||(i(!0),z?.()),y&&M&&m(!0),gu()}n||d()},[t,z,n]),Pt(()=>{let d=xi(H,e.config);Ie(d)},[e.config]);let yu=()=>{let d=new URLSearchParams(window.location.search),p=d.get("privy_oauth_code"),u=d.get("privy_oauth_state"),y=d.get("privy_oauth_provider");return p&&u&&y?(t.startAuthFlow(new Gt(y,p,u)),Qr("AWAITING_OAUTH_SCREEN"),le({finishOauthFlow:{onComplete:()=>{i(!0),z?.()}}}),!0):!1},Si=async(d,p,u)=>{let y=await t.connectors?.createWalletConnector(d,p)||null;ls(y,u)};async function ls(d,p){if(!d)return O({status:"disconnected",connectError:new F("Unable to connect to wallet."),connector:null,connectRetry:x}),p?.(null);O({connector:d,status:"connecting",connectError:null,connectRetry:()=>ls(d,p)});try{let u=await d.connect({showPrompt:!0});if(!L.chains.find(y=>y.id===Number(u?.chainId))){O(y=>({...y,connector:d,status:"switching_to_supported_chain",connectError:null,connectRetry:x}));try{await u?.switchChain(L.defaultChain.id)}catch{console.warn(`Unable to switch to default chain: ${L.defaultChain.id}`)}}return O(y=>({...y,status:"connected",connectError:null,connectRetry:x})),u&&!I&&ae(re,"connectWallet","onSuccess",u),p?.(u)}catch(u){return u instanceof tt?(console.warn(u.cause?u.cause:u.message),I||ae(re,"connectWallet","onError",u.privyErrorCode||"generic_connect_wallet_error")):(console.warn(u),I||ae(re,"connectWallet","onError","unknown_connect_wallet_error")),O(y=>({...y,status:"disconnected",connectError:u})),p?.(null)}}let Ai=d=>{d!==null&&t.startAuthFlow(new vo(d))},gu=()=>{let d=new URLSearchParams(window.location.search),p=d.get("privy_connector"),u=d.get("privy_wallet_client");if(!p||!u)return;if(u==="phantom"&&!qe()&&Qr("LOGIN_FAILED_SCREEN"),!t.connectors)throw new C("Connector not initialized");Se("AWAITING_CONNECTION");let y=new URL(window.location.href);y.searchParams.delete("privy_connector"),y.searchParams.delete("privy_wallet_client"),window.history.pushState({},"",y),Si(p,u,Ai)};Pt(()=>{n&&a&&s===null&&t.getAuthenticatedUser().then(c)},[n,a,s,t]);let cs=()=>{m(!0),Se("LINK_WALLET_SCREEN")},vu=d=>{if(!a||!s)return!1;for(let p of s.linkedAccounts)if(p.type==="wallet"&&p.address===d.address)return!0;return!1},wu=async d=>{if(!t.connectors)throw new C("Connector not initialized");let p=t.connectors.findWalletConnector(d.connectorType,d.walletClientType)||null;O(u=>({...u,connector:p,status:"connected",connectError:null,connectRetry:x})),Ai(d),Qr("AWAITING_CONNECTION")},Cu=async(d,p)=>{if(!t.connectors)throw new C("Connector not initialized");await Si(d,p,Ai)},ds=async(d,p)=>{if(!L.fiatOnRamp.enabled)throw new C("Fiat on-ramp is not enabled");if(!p||!p.provider||p.provider==="moonpay"){let{signedUrl:u,externalTransactionId:y}=await Jc(t,d,p?.config??{},L.appearance.palette,L.fiatOnRamp.useSandbox);return{signedUrl:u,externalTransactionId:y}}else throw new C("Unsupported fund provider. Currently supported option is `moonpay`.")},Zr=()=>{f(d=>{let p=t.connectors?.wallets.map(u=>({...u,linked:vu(u),loginOrLink:async()=>{if(!await u.isConnected())throw new C("Wallet is not connected");if(u.connectorType==="embedded"&&u.walletClientType==="privy")throw new C("Cannot link or login with embedded wallet");wu(u)},fund:async y=>{let{signedUrl:M,externalTransactionId:me}=await ds(u.address,y);le({fiatOnRampPrompt:{signedUrl:M},fiatOnRampStatus:{externalTransactionId:me}}),Se("FIAT_ON_RAMP_PROMPT_SCREEN")},unlink:async()=>{if(!a)throw new C("User is not authenticated.");if(u.connectorType==="embedded"&&u.walletClientType==="privy")throw new C("Cannot unlink an embedded wallet");let y=await t.unlinkWallet(u.address);c(y)}}))||[];return fn(d,p)?d:p})};Pt(()=>{Zr()},[s?.linkedAccounts,a,n]),Pt(()=>{if(n){if(!t.connectors)throw new C("Connector not initialized");Zr(),t.connectors.on("walletsUpdated",Zr)}},[n]);let bu=()=>{Se(a?"CONNECT_ONLY_AUTHENTICATED_SCREEN":"CONNECT_ONLY_LANDING_SCREEN")};Pt(()=>{if(!w[0])return;let d=w[0],p=b.current.find(y=>y.address===d.address),u=s?.linkedAccounts.find(y=>y.type==="wallet"&&y.address===d.address);if(!p&&u){let y=Object.assign({},s);y.wallet=u&&{address:u.address,chainType:u.chainType,chainId:u.chainId,walletClient:u.walletClient,walletClientType:u.walletClientType,connectorType:u.connectorType},c(y)}b.current=w},[w]);let ps=async(d,p)=>{if(Z(d))throw ae(re,"createWallet","onError","embedded_wallet_already_exists"),new Error("Only one Privy wallet per user is currently allowed");let[y,M]=await Promise.all([Le.initializeWalletProxy(p),At()]);if(!y&&e.config?.customAuth?.enabled)throw ae(re,"createWallet","onError","unknown_embedded_wallet_error"),new Error("Failed to connect to wallet proxy");if(!y||!M||e.config?.embeddedWallets?.requireUserPasswordOnCreate)return new Promise((me,Ee)=>{q(!0),le({createWallet:{onSuccess:ze=>{ae(re,"createWallet","onSuccess",ze),me(ze)},onFailure:ze=>{ae(re,"createWallet","onError","unknown_embedded_wallet_error"),Ee(ze)},callAuthOnSuccessOnClose:!1}}),Se("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")});{await y.create({accessToken:M});let me=await Le.refreshUser(),Ee=Z(me);if(!Ee)throw ae(re,"createWallet","onError","unknown_embedded_wallet_error"),new Error("Failed to create wallet");return ae(re,"createWallet","onSuccess",Ee),Ee}},Eu=d=>{if(!L.chains.map(p=>p.id).includes(d))throw new F(`Chain ID ${d} is not supported. It must be added to the config.supportedChains property of the PrivyProvider.`,"unsupported_chain_id")},Bo={ready:n,authenticated:a,user:s,walletConnectors:t.connectors||null,connectWallet:bu,linkWallet:cs,linkEmail:()=>{if(s?.email)throw new C("User already has an email linked to their account.");m(!0),Se("LINK_EMAIL_SCREEN")},linkPhone:()=>{if(s?.phone)throw new C("User already has a phone number linked to their account.");m(!0),Se("LINK_PHONE_SCREEN")},linkGoogle:async()=>{if(s?.google)throw new C("User already has a Google account linked to their account.");await Le.initLoginWithOAuth("google")},linkTwitter:async()=>{if(s?.twitter)throw new C("User already has a Twitter account linked to their account.");await Le.initLoginWithOAuth("twitter")},linkDiscord:async()=>{if(s?.discord)throw new C("User already has a Discord account linked to their account.");await Le.initLoginWithOAuth("discord")},linkGithub:async()=>{if(s?.github)throw new C("User already has a Github account linked to their account.");await Le.initLoginWithOAuth("github")},linkTiktok:async()=>{if(s?.tiktok)throw new C("User already has a Tiktok account linked to their account.");await Le.initLoginWithOAuth("tiktok")},linkLinkedIn:async()=>{if(s?.linkedin)throw new C("User already has a LinkedIn account linked to their account.");await Le.initLoginWithOAuth("linkedin")},linkApple:async()=>{await Le.initLoginWithOAuth("apple")},login:async()=>{if(n||(await new Promise(d=>{Xe(()=>d)}),Xe(null)),a){console.warn("Attempted to log in, but user is already logged in. Use a `link` helper instead.");return}N(!0),Qr()},logout:async()=>{await t.logout(),c(null),l(!1),g(null),ae(re,"logout","onSuccess"),m(!1),r(!1),$.del(Cr)},getAccessToken:()=>t.getAccessToken(),getEthereumProvider:()=>{if(!s||!s.wallet)return new X;let d=w.find(u=>s.wallet&&u.address===s.wallet.address),p=t.connectors?.walletConnectors.find(u=>u.wallets.find(y=>y.address===d?.address));return!d||!p?new X:p.proxyProvider},getEthersProvider:()=>{if(!s||!s.wallet)return new ss(new ht(new X));let d=w.find(u=>s.wallet&&u.address===s.wallet.address),p=t.connectors?.walletConnectors.find(u=>u.wallets.find(y=>y.address===d?.address));return!d||!p?new ss(new ht(new X)):new ss(new ht(p.proxyProvider))},getWeb3jsProvider:()=>{if(!s||!s.wallet)return new qt(new X);let d=w.find(u=>s.wallet&&u.address===s.wallet.address),p=t.connectors?.walletConnectors.find(u=>u.wallets.find(y=>y.address===d?.address));return!d||!p?new qt(new X):new qt(p.proxyProvider)},unlinkWallet:async d=>{let p=await t.unlinkWallet(d);return c(p),p},unlinkEmail:async d=>{let p=await t.unlinkEmail(d);return c(p),p},unlinkPhone:async d=>{let p=await t.unlinkPhone(d);return c(p),p},unlinkGoogle:async d=>{let p=await t.unlinkOAuth("google",d);return c(p),p},unlinkTwitter:async d=>{let p=await t.unlinkOAuth("twitter",d);return c(p),p},unlinkDiscord:async d=>{let p=await t.unlinkOAuth("discord",d);return c(p),p},unlinkGithub:async d=>{let p=await t.unlinkOAuth("github",d);return c(p),p},unlinkTiktok:async d=>{let p=await t.unlinkOAuth("tiktok",d);return c(p),p},unlinkLinkedIn:async d=>{let p=await t.unlinkOAuth("linkedin",d);return c(p),p},unlinkApple:async d=>{let p=await t.unlinkOAuth("apple",d);return c(p),p},setActiveWallet:async d=>{let p=w.find(y=>Pi(y.address)===Pi(d)),u=s?.linkedAccounts.find(y=>y.type==="wallet"&&Pi(y.address)===Pi(d));if(!p||!await p.isConnected())se(d),cs();else if(!p.linked)p.loginOrLink();else{let y=Object.assign({},s);y.wallet=u&&{address:u.address,chainType:u.chainType,chainId:u.chainId,walletClient:u.walletClient,walletClientType:u.walletClientType,connectorType:u.connectorType},c(y)}},forkSession:()=>t.forkSession(),createWallet:async()=>{if(!a||!s)throw ae(re,"createWallet","onError","must_be_authenticated"),new Error("User must be authenticated before creating a Privy wallet");return ps(s,15e3)},setWalletPassword:()=>new Promise((d,p)=>{if(!a||!s){p(new Error("User must be authenticated before adding password to Privy wallet"));return}let u=Z(s);if(!u||!B){p(new Error("Must have a Privy wallet to add a password"));return}if(u.recoveryMethod==="user-passcode"){p(new Error("Cannot set password. Embedded wallet already has a password."));return}q(!0);let y={onSuccess:d,onFailure:p,callAuthOnSuccessOnClose:!1},M={onCompleteNavigateTo:"EMBEDDED_WALLET_PASSWORD_UPDATE_SPLASH_SCREEN",onFailure:p};le({setWalletPassword:y,connectWallet:M}),Se("EMBEDDED_WALLET_CONNECTING_SCREEN")}),signMessage:(d,p)=>new Promise(async(u,y)=>{if(!a||!s){y(new Error("User must be authenticated before signing with a Privy wallet"));return}let M=Z(s);if(!M){y(new Error("Must have a Privy wallet before signing"));return}if(typeof d!="string"||d.length<1){y(new Error("Message must be a non-empty string"));return}q(!0);let me=async()=>{if(!a)return y(new Error("User must be authenticated before signing with a Privy wallet")),null;let Ee=await At();if(B&&Ee)try{if(!await Le.recoverEmbeddedWallet())return y(new Error("Unable to connect to wallet")),null;t.createAnalyticsEvent("embedded_wallet_sign_message_started",{walletAddress:M.address});let{response:ze}=await B.rpc({accessToken:Ee,address:M.address,request:{method:"personal_sign",params:[d,M.address]}}),gr=ze.data;return t.createAnalyticsEvent("embedded_wallet_sign_message_completed",{walletAddress:M.address}),gr}catch(Bt){return y(Bt),null}else return null};if(L.embeddedWallets.noPromptOnSignature){p&&console.warn("uiOptions defined with `noPromptOnSignature` set to true in app config");let Ee=await me();Ee?u(Ee):y(new xe("Unable to sign message"))}else{let ze={message:d,confirmAndSignMessage:me,onSuccess:Ht=>{u(Ht)},onFailure:Ht=>{y(Ht)},uiOptions:p||{}},gr={onCompleteNavigateTo:"EMBEDDED_WALLET_SIGN_REQUEST_SCREEN",onFailure:y};le({signMessage:ze,connectWallet:gr}),Se("EMBEDDED_WALLET_CONNECTING_SCREEN")}}),sendTransaction:(d,p,u)=>new Promise(async(y,M)=>{if(!a||!s){M(new Error("User must be authenticated before signing with a Privy wallet"));return}let me=Z(s);if(!me){M(new Error("Must have a Privy wallet before signing"));return}q(!0);let Ee=t.connectors?.findWalletConnector("embedded","privy")?.proxyProvider,Bt=d.chainId?Number(d.chainId):Ee.chainId;Eu(Bt);let ze=Object.assign({},d,{chainId:Bt}),gr=async()=>{let Ht=await At();if(!Ht||!B){M(new Error("Must have valid access token and Privy wallet to send transaction"));return}try{if(!await Le.recoverEmbeddedWallet()){M(new Error("Unable to connect to wallet"));return}let us=new kv(ot(ze.chainId,L.chains,L.rpcConfig)),Tu=await yi(me.address,ze,us),Pu=await gi(Ht,me.address,B,Tu,us);y(Pu)}catch(Xr){M(Xr)}};if(L.embeddedWallets.noPromptOnSignature)p&&console.warn("uiOptions defined with `noPromptOnSignature` set to true in app config"),gr();else{let Ht={transactionRequest:ze,onSuccess:y,onFailure:M,uiOptions:p||{},fundWalletConfig:u},Xr={onCompleteNavigateTo:"EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN",onFailure:M};le({connectWallet:Xr,sendTransaction:Ht}),Se("EMBEDDED_WALLET_CONNECTING_SCREEN")}}),exportWallet:()=>new Promise((d,p)=>{if(!a||!s){p(new Error("User must be authenticated before exporting their Privy wallet"));return}if(!Z(s)){p(new Error("Must have a Privy wallet before exporting"));return}q(!0);let y={onCompleteNavigateTo:"EMBEDDED_WALLET_KEY_EXPORT_SCREEN",onFailure:p},M={appId:e.appId,origin:t.apiUrl,onSuccess:d,onFailure:p};le({keyExport:M,connectWallet:y}),Se("EMBEDDED_WALLET_CONNECTING_SCREEN")})};mu=Bo.signMessage,hu=Bo.sendTransaction;let Le=(()=>({isNewUserThisSession:S,isLinking:h,linkingHint:U,walletConnectionStatus:k,rpcConfig:L.rpcConfig,chains:L.chains,clientAnalyticsId:t.clientAnalyticsId,nativeTokenSymbolForChainId:d=>L.chains.find(p=>p.id===Number(d))?.nativeCurrency.symbol,captchaData:{ready:Do,enabled:L.captchaEnabled,execute:()=>{let d=window.turnstile;if(!d)return;let p=d.render("#cf-turnstile",{sitekey:Fs,action:L.id,callback:fo,"error-callback":Ne,"expired-callback":()=>{try{d.reset(ce),Ne(void 0),fo(void 0)}catch{Ne("expired_and_failed_reset")}},"unsupported-callback":()=>{console.warn("Browser does not support Turnstile.")}});p||console.warn("Failed to render challenge."),et(p)},remove:()=>{let d=window.turnstile;!d?.remove||!ce||(d.remove(ce),et(void 0),Ne(void 0),fo(void 0))},token:_i,error:Uo},initializeWalletProxy:async d=>{if(B)return B;let p=new Promise(M=>{Mo(()=>me=>M(me))}),u=new Promise(M=>setTimeout(()=>M(null),d)),y=await Promise.race([p,u]);return Mo(null),y},getAuthFlow:()=>t.authFlow,getAuthMeta:()=>t.authFlow?.meta,closePrivyModal:(d={shouldCallAuthOnSuccess:!0})=>{let p=n&&a&&s;d.shouldCallAuthOnSuccess&&p?(ae(re,"login","onComplete",s,S,!1),e.onSuccess?.(s,S)):I&&ae(re,"login","onError","exited_auth_flow"),t.authFlow=void 0,se(null),g(null),N(!1),m(!1),P(!1),r(!1),t.createAnalyticsEvent("modal_closed")},connectWallet:Si,initLoginWithWallet:Cu,loginWithWallet:async()=>{if(!n)throw new vr;if(!(t.authFlow instanceof vo))throw new C("Must initialize SIWE flow first.");let d,p;if(a)d=await t.link();else try{({user:d,isNewUser:p}=await t.authenticate())}catch(u){throw ae(re,"login","onError",u.privyErrorCode||"generic_connect_wallet_error"),u}c(d||s||null),P(p||!1),l(!0)},initLoginWithOAuth:async d=>{t.startAuthFlow(new Gt(d));let p=await t.authFlow.getAuthorizationUrl();p&&p.url&&window.location.assign(p.url)},loginWithOAuth:async()=>{if(!(t.authFlow instanceof Gt))throw new C("Must initialize OAuth flow before calling loginWithOAuth");let d,p;if(a)d=await t.link();else try{({user:d,isNewUser:p}=await t.authenticate())}catch(u){throw ae(re,"login","onError",u.privyErrorCode||"unknown_auth_error"),u}c(d),P(p||!1),l(!0)},initLoginWithEmail:async(d,p)=>{let u=new go(d,p);t.startAuthFlow(u);try{await u.sendCodeEmail()}catch(y){throw ae(re,"login","onError",y.privyErrorCode||"unknown_auth_error"),y}},initLoginWithSms:async(d,p)=>{let u=new wo(d,p);t.startAuthFlow(u);try{await u.sendSmsCode()}catch(y){throw ae(re,"login","onError",y.privyErrorCode||"unknown_auth_error"),y}},resendEmailCode:async()=>{await t.authFlow?.sendCodeEmail()},resendSmsCode:async()=>{await t.authFlow?.sendSmsCode()},loginWithCode:async d=>{if(!n)throw new vr;if(t.authFlow instanceof go)t.authFlow.meta.emailCode=d.trim();else if(t.authFlow instanceof wo)t.authFlow.meta.smsCode=d.trim();else throw new C("Must initialize a passwordless code flow first");let p,u;a?p=await t.link():{user:p,isNewUser:u}=await t.authenticate(),c(p||s||null),P(u||!1),l(!0)},refreshUser:async()=>{let d=await t.getAuthenticatedUser();return c(d),d},walletProxy:B,createAnalyticsEvent:(d,p,u)=>t.createAnalyticsEvent(d,p,u),getUsdTokenPrice:d=>t.getUsdTokenPrice(d),recoverEmbeddedWallet:async()=>new Promise(async(d,p)=>{let u=s?.linkedAccounts.find(M=>M.type==="wallet"&&M.walletClientType==="privy"),y=await At();if(!y||!B||!u){p(new Error("Must have valid access token and Privy wallet to recover wallet"));return}q(!0);try{await B.connect({accessToken:y,address:u.address}),d(!0)}catch(M){er(M)&&u.recoveryMethod==="privy"?(t.createAnalyticsEvent("embedded_wallet_pinless_recovery_started",{walletAddress:u.address}),(await B.recover({address:u.address,accessToken:y})).address||p(new Error("Unable to recover wallet")),t.createAnalyticsEvent("embedded_wallet_recovery_completed",{walletAddress:u.address}),d(!0)):er(M)?(le({recoverWallet:{privyWallet:u,onFailure:p,onSuccess:()=>d(!0)}}),Se("EMBEDDED_WALLET_RECOVERY_SCREEN")):p(M)}}),getFiatOnRampConfig:ds,updateWallets:()=>Zr()}))();fu=Le.recoverEmbeddedWallet;let xu=Rv(()=>({wallets:w}),[w]);return ho(nt.Provider,{value:Bo,children:ho(as.Provider,{value:re,children:uu(Xa.Provider,{value:xu,children:[e.children,uu($i.Provider,{value:Le,children:[ho(Up,{theme:{...L.appearance.palette||{}}}),ho(pl,{appConfig:L,data:Ce,setModalData:le,setInitialScreen:g,initialScreen:E,visible:o,authenticated:a,children:o?ho(Gp,{}):null}),G&&H.id?ho(cu,{appId:e.appId,clientAnalyticsId:t.clientAnalyticsId,origin:t.apiUrl,onLoad:K,onLoadFailed:()=>null}):null]}),L.captchaEnabled&&ho(zp,{onLoad:()=>Jr(!0)})]})})})};import{useContext as Ov}from"react";function Mv(e){let{login:t}=Ov(nt);return mo("login",e),{login:t}}import{useContext as Dv}from"react";function Uv(e){let{logout:t}=Dv(nt);return mo("logout",e),{logout:t}}import{useContext as Fv}from"react";function Bv(e){let{connectWallet:t}=Fv(nt);return mo("connectWallet",e),{connectWallet:t}}import{useContext as Hv}from"react";function Gv(e){let{createWallet:t}=Hv(nt);return mo("createWallet",e),{createWallet:t}}export{ht as AsExternalProvider,Sr as ConnectorManager,kr as PrivyClient,Nv as PrivyProvider,X as PrivyProxyProvider,Ei as SUPPORTED_CHAINS,ki as VERSION,Ue as WalletConnector,At as getAccessToken,Bv as useConnectWallet,Gv as useCreateWallet,Mv as useLogin,Uv as useLogout,V as usePrivy,es as useWallets};
|