@privy-io/react-auth 1.51.0 → 1.51.1-beta-20231211223406
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 +214 -214
- package/dist/index.js +208 -208
- package/package.json +2 -1
package/dist/esm/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var
|
|
1
|
+
var rf=(e,t,o)=>{if(!t.has(e))throw TypeError("Cannot "+o)};var Pl=(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 xl=(e,t,o)=>(rf(e,t,"access private method"),o);import{getAddress as Ua}from"@ethersproject/address";import{StaticJsonRpcProvider as F2,Web3Provider as gl}from"@ethersproject/providers";import{createStore as B2}from"mipd";import{useEffect as Ft,useMemo as H2,useRef as zn,useState as pe}from"react";import{FetchError as nf}from"ofetch";var ze=class extends Error{constructor(o,r,n){super(o);r instanceof Error&&(this.cause=r),this.privyErrorCode=n}toString(){return`${this.type}${this.privyErrorCode?`-${this.privyErrorCode}`:""}: ${this.message}${this.cause?` [cause: ${this.cause}]`:""}`}},tr=class extends ze{constructor(o,r,n,i,a){super(n,i,a);this.type=o;this.status=r}},C=class extends ze{constructor(o,r,n){super(o,r,n);this.type="client_error"}},Kn=class extends C{constructor(){super("Request timed out",void 0,"client_request_timeout")}};var z=class extends ze{constructor(o,r,n){super(o,r,n);this.type="connector_error"}},te=e=>{if(e instanceof ze)return e;if(!(e instanceof nf))return $e(e);if(!e.response)return new tr("api_error",null,e.message,e);let{type:t,message:o,error:r,code:n}=e.data;return new tr(t||"ApiError",e.response.status,o||r,e,n)},$e=e=>e instanceof ze?e:e instanceof Error?new C(e.message,e):new C(`Internal error: ${e}`);var Kr=class extends C{constructor(){super("Method called before `ready`. Ensure you wait until `ready` is true before calling.")}},Ve=class extends C{constructor(t="Embedded wallet error",o){super(t,o,"unknown_embedded_wallet_error")}},Yn=class extends C{constructor(t="User must be authenticated"){super(t,void 0,"must_be_authenticated")}};var Jn=()=>"/api/v1/sessions",Zn=()=>"/api/v1/sessions/logout",Tl=()=>"/api/v1/sessions/fork",Qn=()=>"/api/v1/sessions/fork/recover",Sl=()=>"/api/v1/siwe/init",_l=()=>"/api/v1/siwe/authenticate",kl=()=>"/api/v1/siwe/link",Al=()=>"/api/v1/passwordless/init",Rl=()=>"/api/v1/passwordless/authenticate",Il=()=>"/api/v1/passwordless/link",Wl=()=>"/api/v1/passwordless_sms/init",Ml=()=>"/api/v1/passwordless_sms/authenticate",Ll=()=>"/api/v1/passwordless_sms/link",Nl=()=>"/api/v1/oauth/init",Ol=()=>"/api/v1/oauth/authenticate",Dl=()=>"/api/v1/oauth/link",Ul=()=>"/api/v1/siwe/unlink",Fl=()=>"/api/v1/passwordless/unlink",Bl=()=>"/api/v1/passwordless_sms/unlink",Hl=()=>"/api/v1/oauth/unlink",Gl=()=>"/api/v1/analytics_events",zl=()=>"/api/v1/plugins/moonpay_on_ramp/sign",Vl=()=>"/api/v1/custom_jwt_account/authenticate",$l=()=>"/api/v1/mfa/passwordless_sms/init";var ql=()=>"/api/v1/mfa/passwordless_sms/enroll";var or=class{constructor(t){this.meta={token:t}}async authenticate(){if(!this.api)throw new C("Auth flow has no API instance");try{let t=Vl(),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 te(t)}}async link(){throw new Error("Unimplemented")}};var Uo=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=Rl(),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 te(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=Il();return await this.api.post(t,{email:this.meta.email,code:this.meta.emailCode})}catch(t){throw te(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=Al();return await this.api.post(r,{email:this.meta.email,token:this.meta.captchaToken})}catch(r){throw te(r)}}};var no=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=Ol(),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=te(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=Dl();return await this.api.post(t,{authorization_code:this.meta.authorizationCode,state_code:this.meta.stateCode})}catch(t){throw te(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=Nl();return await this.api.post(t,{provider:this.meta.provider,redirect_to:window.location.href})}catch(t){throw te(t)}}};var nt=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 Fo=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 rt(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 E("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign(),r=await this.api.post(kl(),{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 E("Auth flow has no API instance");try{let{message:t,signature:o}=await this.sign();return await this.api.post(Al(),{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 E("Auth flow has no API instance");if(await this.buildSiweMessage(),!this.preparedMessage)throw new E("Could not prepare SIWE message");let t=await this.wallet.sign(this.preparedMessage);return{message:this.preparedMessage,signature:t}}async _getNonceOnce(){if(!this.api)throw new E("Auth flow has no API instance");let t=this.wallet.address;return(await this.api.post(_l(),{address:t})).nonce}async buildSiweMessage(){if(!this.api)throw new E("Auth flow has no API instance");let t=this.wallet.address,o=this.wallet.chainId.replace("eip155:","");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 Do=class{constructor(t,o){this.meta={phoneNumber:t,captchaToken:o}}async authenticate(){if(!this.api)throw new E("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new E("phone number and sms code must be set prior to calling authenticate.");try{let t=Ll(),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 E("Auth flow has no API instance");if(!this.meta.phoneNumber||!this.meta.smsCode)throw new E("phone number and sms code must be set prior to calling authenticate.");try{let t=Nl();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 E("Auth flow has no API instance");if(t&&(this.meta.phoneNumber=t),o&&(this.meta.captchaToken=o),!this.meta.phoneNumber)throw new E("phone nNumber must be set when initialzing authentication.");try{let r=Ml();return await this.api.post(r,{phoneNumber:this.meta.phoneNumber,token:this.meta.captchaToken})}catch(r){throw ee(r)}}};import{v4 as $f}from"uuid";function $e(e){return new Date(e*1e3)}function rf(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:$e(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:$e(o.verified_at)};t.push(i);break;case"phone":let a={number:o.phoneNumber,type:o.type,verifiedAt:$e(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:$e(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:$e(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:$e(o.verified_at)};t.push(c);break;case"github_oauth":let u={subject:o.subject,username:o.username,name:o.name,email:o.email,type:o.type,verifiedAt:$e(o.verified_at)};t.push(u);break;case"tiktok_oauth":let h={subject:o.subject,username:o.username,type:o.type,verifiedAt:$e(o.verified_at)};t.push(h);break;case"linkedin_oauth":let w={subject:o.subject,name:o.name,email:o.email,type:o.type,verifiedAt:$e(o.verified_at)};t.push(w);break;case"apple_oauth":let m={subject:o.subject,email:o.email,type:o.type,verifiedAt:$e(o.verified_at)};t.push(m);break;case"custom_auth":t.push({type:o.type,customUserId:o.custom_user_id,verifiedAt:$e(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 ne=e=>e?.linkedAccounts.find(t=>t.type==="wallet"&&t.walletClientType==="privy")||null,nf=e=>e.linkedAccounts.filter(t=>t.type==="wallet"),ro=(e,t)=>t==="all-users"&&!ne(e)||t==="users-without-wallets"&&!nf(e)?.length;function mt(e){if(!e)return null;let t=rf(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"),u=Ct(t,"linkedin_oauth"),h=Ct(t,"apple_oauth"),w=e.mfa_methods.map(({type:v,verified_at:y})=>({type:v,verifiedAt:$e(y)}));return{id:e.id,createdAt:$e(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:u&&{subject:u.subject,name:u.name},apple:h&&{subject:h.subject,email:h.email},mfaMethods:w.map(v=>v.type)}}import{getAddress as Oc}from"@ethersproject/address";import Bf from"eventemitter3";var Kl="1.51.0";var Xn="4df5e2316331463a9130964bd6078dfa",Yl="fe9c30fc-3bc5-4064-91e2-6ab5887f8f4d",Jl="34357d3c125c2bcf2ce2bc3309d98715",ei="https://auth.privy.io",Zl=2e4,qe=1400,Ql=2500,Ha=Kl;var tr="privy:token",Ga="privy-token",ti="privy:refresh_token",za="privy-refresh-token",Xl="privy-session",Kr="privy:session_transfer_token",sf="privy:wallet",Yr="privy:caid",oi=e=>`${sf}:${e}`,Va="privy:connectors",$a="privy:connections";var Jr=12e4,Ut=1,qa="0x1",or=3e4,ec="https://api.moonpay.com/v1",tc="https://api.moonpay.com/v1",oc="pk_live_hirbpu0cVcLHrjktC9l7fbc9ctjv0SL",rc="pk_test_fqWjXZMSFwloh7orvJsRfjiUHXJqFzI",nc="0x420000000000000000000000000000000000000F",ic=["function getL1Fee(bytes memory _data) external view returns (uint256)"];var ja=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)}},Ka=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 lf(){return typeof window<"u"&&window.localStorage?new Ka:new ja}var K=lf();function ac(){let e=window,t=e.ethereum;if(!t)return[];let o=[];if(t.providers?.length)for(let r of t.providers)r&&o.push(r);return o.push(e.ethereum),o}var sc=e=>{if(e.isApexWallet)return"Apex Wallet";if(e.isAvalanche)return"Core Wallet";if(e.isBackpack)return"Backpack";if(e.isBifrost)return"Bifrost Wallet";if(e.isBitKeep)return"BitKeep";if(e.isBitski)return"Bitski";if(e.isBlockWallet)return"BlockWallet";if(e.isBraveWallet)return"Brave Wallet";if(e.isClover)return"Clover";if(e.isCoin98)return"Coin98 Wallet";if(e.isCoinbaseWallet)return"Coinbase Wallet";if(e.isDawn)return"Dawn Wallet";if(e.isDefiant)return"Defiant";if(e.isDesig)return"Desig Wallet";if(e.isEnkrypt)return"Enkrypt";if(e.isExodus)return"Exodus";if(e.isFordefi)return"Fordefi";if(e.isFrame)return"Frame";if(e.isFrontier)return"Frontier Wallet";if(e.isGamestop)return"GameStop Wallet";if(e.isHaqqWallet)return"HAQQ Wallet";if(e.isHyperPay)return"HyperPay Wallet";if(e.isImToken)return"ImToken";if(e.isHaloWallet)return"Halo Wallet";if(e.isKuCoinWallet)return"KuCoin Wallet";if(e.isMathWallet)return"MathWallet";if(e.isNovaWallet)return"Nova Wallet";if(e.isOkxWallet||e.isOKExWallet)return"OKX Wallet";if(e.isOneInchIOSWallet||e.isOneInchAndroidWallet)return"1inch Wallet";if(e.isOneKey)return"OneKey Wallet";if(e.isOpera)return"Opera";if(e.isPhantom)return"Phantom";if(e.isPortal)return"Ripio Portal";if(e.isRabby)return"Rabby Wallet";if(e.isRainbow)return"Rainbow";if(e.isSafePal)return"SafePal Wallet";if(e.isStatus)return"Status";if(e.isSubWallet)return"SubWallet";if(e.isTalisman)return"Talisman";if(e.isTally)return"Taho";if(e.isTokenPocket)return"TokenPocket";if(e.isTokenary)return"Tokenary";if(e.isTrust||e.isTrustWallet)return"Trust Wallet";if(e.isTTWallet)return"TTWallet";if(e.isXDEFI)return"XDEFI Wallet";if(e.isZeal)return"Zeal";if(e.isZerion)return"Zerion";if(e.isMetaMask)return"MetaMask"};var bt=()=>!!("phantom"in window&&window?.phantom?.ethereum?.isPhantom),lc=()=>{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&&t.isCoinbaseWallet)return!0}return!1};var cc=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,}))$/),dc=(e,t)=>{let o=e.slice(0),r=[];for(;o.length;)r.push(o.splice(0,t));return r},no=(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}`},Ya=e=>new Promise(t=>setTimeout(t,e));function pc(e,{interval:t=100,timeout:o=5e3}={}){return new Promise((r,n)=>{let i=0,a,l=()=>{if(i>=o){n("Max attempts reached without result");return}if(a=e(),i+=t,a!=null){r(a);return}setTimeout(l,t)};l()})}var uc=(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 Ya(o)}a||i(new Error("Exceeded max attempts before resolving function"))})},ri=(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 Ja=e=>e.replace(/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g,""),Uo=e=>typeof e=="string"?e:"0x"+e.toString(16);async function mc(e,t=3e3){let o=!1,r=window;return new Promise(n=>{r.ethereum?i():(window.addEventListener("ethereum#initialized",i,{once:!0}),setTimeout(()=>{i()},t));function i(){if(o)return;o=!0,window.removeEventListener("ethereum#initialized",i);let a=e.getProviders(),l=[];for(let s of a)s.info.rdns!=="com.coinbase.wallet"&&l.push({type:s.info.name.toLowerCase().replace(/\s/g,"_"),eip6963InjectedProvider:s});bt()&&l.push({type:"phantom"});for(let s of ac()){let c=sc(s);if(!a.some(u=>u.info.name===c)&&c!=="MetaMask"){l.push({type:"unknown_browser_extension",legacyInjectedProvider:s});break}}n(l)}})}function rr(e){return`eip155:${String(Number(e))}`}var ft=(e,t,o)=>{let r=Number(e),n=t.find(a=>a.id===r);if(!n)throw new G(`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]+"/"+Xn:n.rpcUrls.blast?.http[0]?i=n.rpcUrls.blast.http[0]+"/"+Yl:i=n.rpcUrls.default?.http[0],!i)throw new G(`No RPC url found for ${e}`);return i},fc=(e,t)=>{let o=Number(e),r=t.find(n=>n.id===o);if(!r)throw new G(`Unsupported chainId ${e}`,4901);return r.blockExplorers?.default.url};import vf from"@coinbase/wallet-sdk";import{jsx as hc,jsxs as cf}from"react/jsx-runtime";var Zr=({style:e,...t})=>cf("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:[hc("rect",{width:"1024",height:"1024",fill:"#0052FF",rx:100,ry:100}),hc("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 xt}from"@ethersproject/address";import{Web3Provider as bc}from"@ethersproject/providers";import{default as yf}from"eventemitter3";import{StaticJsonRpcProvider as gc}from"@ethersproject/providers";import hf from"eventemitter3";var df=["eth_sign","eth_populateTransactionRequest","eth_signTransaction","personal_sign","eth_signTypedData_v4"],yc=e=>df.includes(e);import{ErrorCode as pf}from"@ethersproject/logger";var nr=class extends G{constructor(){super("Wallet timeout");this.type="wallet_error"}},ir=class extends G{constructor(){super("User rejected connection");this.type="wallet_error"}},je=e=>{if(e instanceof G)return e;if(e?.code&&e?.reason){let t=new Ae(e);return e.code===pf.ACTION_REJECTED&&(t.details=Ue.E4001_USER_REJECTED_REQUEST),t}return e?.code?new Ae(e):new G("Unknown connector error",e)},Et=class extends Ge{constructor(o,r,n){super(o);this.type="provider_error";this.code=r,this.data=n}},Ae=class extends Et{constructor(o){let r=o;super(r.message,r.code,r.data);let n=Object.values(Ue).find(i=>i.eipCode===r.code);this.details=n||Ue.UNKNOWN_ERROR,r.code===-32002&&(r.message?.includes("already pending for origin")?r.message?.includes("wallet_requestPermissions")?this.details=Ue.E32002_CONNECTION_ALREADY_PENDING:this.details=Ue.E32002_REQUEST_ALREADY_PENDING:r.message?.includes("Already processing")&&r.message.includes("eth_requestAccounts")&&(this.details=Ue.E32002_WALLET_LOCKED))}},uf={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}},mf={E32002_CONNECTION_ALREADY_PENDING:{eipCode:-32002,message:"Connection request already pending",detail:"Don\u2019t see your wallet? Check your other browser windows.",retryable:!1},E32002_REQUEST_ALREADY_PENDING:{eipCode:-32002,message:"Resource request already pending",detail:"Don\u2019t see your wallet? Check your other browser windows.",retryable:!1},E32002_WALLET_LOCKED:{eipCode:-32002,message:"Wallet might be locked",detail:"Don\u2019t see your wallet? Check your other browser windows.",retryable:!1},E4001_USER_REJECTED_REQUEST:{eipCode:4001,message:"Signature rejected",detail:"Please try signing again.",retryable:!0}},ff={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}},Ue={UNKNOWN_ERROR:{eipCode:0,message:"Unknown error",detail:"Unknown error",retryable:!0},...ff,...mf},Ft={...uf,...Ue};var oe=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 nr,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||Jr,this._subscriptions=[]}on(t,o){if(this.walletProvider)return this.walletProvider.on(t,o);this._subscriptions.push({eventName:t,listener:o})}async request(t){if(!this.walletProvider)throw new G(`A wallet request of type ${t.method} was made before setting a wallet provider.`);return Promise.race([this.walletProvider.request(t),this.walletTimeout()]).catch(o=>{throw je(o)})}},io=class extends Error{constructor(o,r,n){super(o);this.code=r,this.data=n}},ni=class extends hf{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 gc(ft(a,this.chains,n)),this.rpcTimeoutDuration=ar(n,"privy")}async handleSendTransaction(o){if(!o.params||!Array.isArray(o.params))throw new io(`Invalid params for ${o.method}`,4200);let r=o.params[0];if(!await Re()||!this.address)throw new io("Disconnected",4900);return(await wc(r)).hash}handleSwitchEthereumChain(o){if(!o.params||!Array.isArray(o.params))throw new io(`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 io(`Invalid params for ${o.method}`,4200);this.chainId=Number(r),this.provider=new gc(ft(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 vc(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:Uo(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 Uo(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(yc(o.method)){let r=await Re();if(await Cc(),!r||!this.address)throw new io("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 io("Disconnected",4900)}}else return this.provider.send(o.method,o.params)}async connect(){let o=await Re();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}}},Pt=class extends oe{constructor(o){super(o,o.rpcTimeoutDuration)}},ao=class extends oe{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 gf=(e,t)=>{switch(t){case"coinbase_wallet":return e.message.includes("addEthereumChain");default:return e.code===4902||e.message?.includes("4902")}},Fe=class extends yf{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=rr(o),this.walletClientType==="privy"&&K.put(oi(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=ar(i,o),this.connected=!1,this.initialized=!1}buildConnectedWallet(o,r){let n=async()=>!!this.wallets.find(i=>xt(i.address)===xt(o));return{address:xt(o),chainId:r,switchChain:async i=>{if(!n)throw new G("Wallet is not currently connected.");let a=this.wallets.find(h=>xt(h.address)===xt(o))?.chainId;if(!a)throw new G("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===rr(l))return;let c=this.chains.find(h=>h.id===s);if(!c)throw new G(`Unsupported chainId: ${i}`);let u=async()=>{await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[{chainId:l}]})};try{return await u()}catch(h){if(gf(h,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??""]}]}),u();throw this.walletClientType==="rainbow"&&h.message?.includes("wallet_switchEthereumChain")?new G(`Rainbow does not support the chainId ${r}`):h}},connectedAt:Date.now(),walletClientType:this.walletClientType,connectorType:this.connectorType,isConnected:n,getEthereumProvider:async()=>{if(!await n())throw new G("Wallet is not currently connected.");return this.proxyProvider},getEthersProvider:async()=>{if(!await n())throw new G("Wallet is not currently connected.");return new bc(new Pt(this.proxyProvider))},getWeb3jsProvider:async()=>{if(!await n())throw new G("Wallet is not currently connected.");return new ao(this.proxyProvider)},sign:async i=>{if(!await n())throw new G("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=xt(n),a=[],l;if(this.walletClientType==="privy"){let c=K.get(oi(i));this.chains.find(u=>u.id===Number(c))||(K.del(oi(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 ${qa}`,c),l=qa}let s=rr(l);a.find(c=>xt(c.address)===i)||a.push(this.buildConnectedWallet(xt(n),s)),ii(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=>xt(n)===xt(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 bc(new Pt(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 wf=e=>{let t=`https://mainnet.infura.io/v3/${Xn}`,o=1;return e.makeWeb3Provider(t,o)},ai,si=class extends Fe{constructor(o,r,n){super("coinbase_wallet",o,r,n);this.connectorType="coinbase_wallet";this.proxyProvider=new oe(void 0,this.rpcTimeoutDuration),this.subscribeListeners(),ai||(ai=new vf({appName:"Privy",darkMode:!1,headlessMode:!1,enableMobileWalletLink:!0})),this.proxyProvider.setWalletProvider(wf(ai)),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(){ai.disconnect()}get walletBranding(){return{name:"Coinbase Wallet",icon:Zr}}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new G("Unable to retrieve accounts");this.connected=!0,await this.syncAccounts([o[0]])}catch(o){throw je(o)}}};import{jsx as Ec}from"react/jsx-runtime";var li=({...e})=>Ec("svg",{width:"15",height:"15",viewBox:"0 0 15 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e,children:Ec("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 ci=class extends Fe{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:[Uo(o?.chainId||"0x1")]}),this.getConnectedWallet()):null}get walletBranding(){return{name:"Privy Wallet",icon:li}}disconnect(){this.connected=!1}async promptConnection(){}};import{jsx as Pc}from"react/jsx-runtime";var sr=({style:e,...t})=>Pc("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",stroke:"currentColor",strokeWidth:1.5,viewBox:"0 0 24 24",style:{...e},...t,children:Pc("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M9 17.25v1.007a3 3 0 01-.879 2.122L7.5 21h9l-.621-.621A3 3 0 0115 18.257V17.25m6-12V15a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 15V5.25m18 0A2.25 2.25 0 0018.75 3H5.25A2.25 2.25 0 003 5.25m18 0V12a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 12V5.25"})});var lr=class extends Fe{constructor(o,r,n,i,a){super(a||"unknown",o,r,n);this.connectorType="injected";this.proxyProvider=new oe(void 0,this.rpcTimeoutDuration),this.subscribeListeners(),this.providerDetail=i;let l=i.provider;this.proxyProvider.setWalletProvider(l),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:this.providerDetail.info.name,icon:this.providerDetail.info.icon}}disconnect(){console.warn(`Programmatic disconnect with ${this.providerDetail.info.name} is not yet supported.`)}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new G("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw je(o)}}},di=class extends Fe{constructor(o,r,n,i){super("unknown",o,r,n);this.connectorType="injected";this.proxyProvider=new oe(void 0,this.rpcTimeoutDuration),this.subscribeListeners(),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:"Browser Extension",icon:sr}}disconnect(){console.warn("Programmatic disconnect with browser wallets is not yet supported.")}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new G("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw je(o)}}};import{getAddress as _b}from"@ethersproject/address";import{Web3Provider as Ab}from"@ethersproject/providers";import{isMobile as Cf}from"react-device-detect";var pi=class extends lr{disconnect(){console.warn("Metamask does not support programmatic disconnect.")}async promptConnection(){try{Cf||await this.proxyProvider.request({method:"wallet_requestPermissions",params:[{eth_accounts:{}}]});let t=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!t||t.length===0||!t[0])throw new G("Unable to retrieve accounts");await this.syncAccounts([t[0]])}catch(t){throw je(t)}}};import{jsx as xc,jsxs as bf}from"react/jsx-runtime";var so=({style:e,...t})=>bf("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:[xc("rect",{width:"108",height:"108",rx:"23",fill:"#AB9FF2"}),xc("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 ui=class extends Fe{constructor(o,r,n){super("phantom",o,r,n);this.connectorType="injected";this.proxyProvider=new oe(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:so}}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 G("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw je(o)}}};import{EthereumProvider as Nf,OPTIONAL_EVENTS as Of,OPTIONAL_METHODS as Df}from"@walletconnect/ethereum-provider";import{isAndroid as Uf,isMobile as Ff}from"react-device-detect";import{jsx as Ke,jsxs as Ef}from"react/jsx-runtime";var mi=({style:e,...t})=>Ef("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:[Ke("style",{children:".s1{stroke-linecap:round;stroke-linejoin:round}.s2{fill:#e4761b;stroke:#e4761b}.s3{fill:#f6851b;stroke:#f6851b}"}),Ke("path",{fill:"#e2761b",stroke:"#e2761b",className:"s1",d:"m274.1 35.5-99.5 73.9L193 65.8z"}),Ke("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"}),Ke("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"}),Ke("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"}),Ke("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"}),Ke("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"}),Ke("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"}),Ke("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"}),Ke("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"}),Ke("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"}),Ke("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"}),Ke("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"})]});import{createContext as xf,useContext as Tf,useEffect as Sf,useRef as _f,useState as kf}from"react";import{jsx as Pf}from"react/jsx-runtime";function Tc(e){return Pf("link",{rel:"prefetch",href:e.src})}var C=()=>{throw new Error("You need to wrap your application with the <PrivyProvider> initialized with your app id.")};import{jsx as Rf,jsxs as If}from"react/jsx-runtime";var Af="LANDING",Sc=xf({ready:!1,app:null,currentScreen:null,lastScreen:null,navigate:C,navigateBack:C,resetNavigation:C,setModalData:C,onUserCloseViaDialogOrKeybindRef:void 0}),_c=e=>{let t=e.appConfig,o=e.authenticated,[r,n]=kf(e.initialScreen);Sf(()=>{o||e.setInitialScreen(Af)},[o]);let i=_f(null),a={ready:!!t?.id,app:t,data:e.data,setModalData:e.setModalData,currentScreen:e.initialScreen,lastScreen:r,navigate:l=>{e.setInitialScreen(l),n(e.initialScreen)},navigateBack:()=>{e.setInitialScreen(r)},resetNavigation:()=>{e.setInitialScreen(null),n(null)},onUserCloseViaDialogOrKeybindRef:i};return If(Sc.Provider,{value:a,children:[(typeof t?.appearance?.logo=="string"||t?.appearance?.logo?.type==="img")&&Rf(Tc,{src:typeof t.appearance.logo=="string"?t.appearance.logo:t.appearance.logo.props.src}),e.children]})},T=()=>Tf(Sc);import{jsx as cr,jsxs as Wf}from"react/jsx-runtime";var Qr=({style:e,...t})=>{let{app:o}=T();return Wf("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:[cr("rect",{width:"28",height:"28",rx:"3",fill:o?.appearance.palette.colorScheme==="dark"?"#3396ff":"#141414"}),cr("g",{clipPath:"url(#clip0_1765_9946)",children:cr("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"})}),cr("defs",{children:cr("clipPath",{id:"clip0_1765_9946",children:cr("rect",{width:"20",height:"12.2531",fill:"white",transform:"translate(4 8)"})})})]})};import{isAndroid as Ac,isDesktop as Mf,isMobileOnly as Lf}from"react-device-detect";var fi=e=>{let t;try{t=new URL(e).hostname}catch{return}for(let[o,r]of Object.entries(dr))if(t.includes(r.hostname))return{walletClientType:o,entry:r}};var dr={metamask:{id:"c57ca95b47569778a828d19178114f4db188b89b763c899ba0be274e97267d96",displayName:"MetaMask",hostname:"metamask.io",mobile:{native:"metamask://",universal:"https://metamask.app.link"}},trust:{id:"4622a2b2d6af1c9844944291e5e7351a6aa24cd7b23099efac1b2fd875da31a0",displayName:"Trust",hostname:"trustwallet.com",mobile:{universal:"https://link.trustwallet.com"}},safe:{id:"225affb176778569276e484e1b92637ad061b01e13a048b35a9d280c3b58970f",displayName:"Safe",hostname:"safe.global",mobile:{universal:"https://app.safe.global/"}},rainbow:{id:"1ae92b26df02f0abca6304df07debccd18262fdf5fe82daa81593582dac9a369",displayName:"Rainbow",hostname:"rainbow.me",mobile:{native:"rainbow://",universal:"https://rnbwapp.com"}},uniswap:{id:"c03dfee351b6fcc421b4494ea33b9d4b92a984f87aa76d1663bb28705e95034a",displayName:"Uniswap",hostname:"uniswap.org",mobile:{universal:"https://uniswap.org/app"}},zerion:{id:"ecc4036f814562b41a5268adc86270fba1365471402006302e70169465b7ac18",displayName:"Zerion",hostname:"zerion.io",mobile:{native:"zerion://",universal:"https://wallet.zerion.io"}},argent:{id:"bc949c5d968ae81310268bf9193f9c9fb7bb4e1283e1284af8f2bd4992535fd6",displayName:"Argent",hostname:"www.argent.xyz",mobile:{universal:"https://www.argent.xyz/app"}},spot:{id:"74f8092562bd79675e276d8b2062a83601a4106d30202f2d509195e30e19673d",displayName:"Spot",hostname:"www.spot-wallet.com",mobile:{universal:"https://spot.so"}},omni:{id:"afbd95522f4041c71dd4f1a065f971fd32372865b416f95a0b1db759ae33f2a7",displayName:"Omni",hostname:"omni.app",mobile:{universal:"https://links.omni.app"}},cryptocom:{id:"f2436c67184f158d1beda5df53298ee84abfc367581e4505134b5bcf5f46697d",displayName:"Crypto.com",hostname:"crypto.com",mobile:{universal:"https://wallet.crypto.com"}},blockchain:{id:"84b43e8ddfcd18e5fcb5d21e7277733f9cccef76f7d92c836d0e481db0c70c04",displayName:"Blockchain",hostname:"www.blockchain.com",mobile:{universal:"https://www.blockchain.com"}},safepal:{id:"0b415a746fb9ee99cce155c2ceca0c6f6061b1dbca2d722b3ba16381d0562150",displayName:"SafePal",hostname:"safepal.com",mobile:{universal:"https://link.safepal.io"}},bitkeep:{id:"38f5d18bd8522c244bdd70cb4a68e0e718865155811c043f052fb9f1c51de662",displayName:"BitKeep",hostname:"bitkeep.com",mobile:{universal:"https://bkapp.vip"}},zengo:{id:"9414d5a85c8f4eabc1b5b15ebe0cd399e1a2a9d35643ab0ad22a6e4a32f596f0",displayName:"ZenGo",hostname:"zengo.com",mobile:{universal:"https://get.zengo.com/"}},"1inch":{id:"c286eebc742a537cd1d6818363e9dc53b21759a1e8e5d9b263d0c03ec7703576",displayName:"1inch",hostname:"wallet.1inch.io",mobile:{universal:"https://wallet.1inch.io/wc/"}},binance:{id:"8a0ee50d1f22f6651afcae7eb4253e52a3310b90af5daef78a8c4929a9bb99d4",displayName:"Binance",hostname:"www.binance.com",mobile:{universal:"https://app.binance.com/cedefi"}},exodus:{id:"e9ff15be73584489ca4a66f64d32c4537711797e30b6660dbcb71ea72a42b1f4",displayName:"Exodus",hostname:"exodus.com",mobile:{universal:"https://exodus.com/m"}},mew_wallet:{id:"f5b4eeb6015d66be3f5940a895cbaa49ef3439e518cd771270e6b553b48f31d2",displayName:"MEW wallet",hostname:"mewwallet.com",mobile:{universal:"https://mewwallet.com"}},alphawallet:{id:"138f51c8d00ac7b9ac9d8dc75344d096a7dfe370a568aa167eabc0a21830ed98",displayName:"AlphaWallet",hostname:"alphawallet.com",mobile:{universal:"https://aw.app"}},keyring_pro:{id:"47bb07617af518642f3413a201ec5859faa63acb1dd175ca95085d35d38afb83",displayName:"KEYRING PRO",hostname:"keyring.app",mobile:{universal:"https://keyring.app/"}},mathwallet:{id:"7674bb4e353bf52886768a3ddc2a4562ce2f4191c80831291218ebd90f5f5e26",displayName:"MathWallet",hostname:"mathwallet.org",mobile:{universal:"https://www.mathwallet.org"}},unstoppable:{id:"8308656f4548bb81b3508afe355cfbb7f0cb6253d1cc7f998080601f838ecee3",displayName:"Unstoppable",hostname:"unstoppabledomains.com",mobile:{universal:"https://unstoppabledomains.com/mobile"}},obvious:{id:"031f0187049b7f96c6f039d1c9c8138ff7a17fd75d38b34350c7182232cc29aa",displayName:"Obvious",hostname:"obvious.technology",mobile:{universal:"https://wallet.obvious.technology"}},ambire:{id:"2c81da3add65899baeac53758a07e652eea46dbb5195b8074772c62a77bbf568",displayName:"Ambire",hostname:"www.ambire.com",mobile:{universal:"https://mobile.ambire.com"}},internet_money_wallet:{id:"dd43441a6368ec9046540c46c5fdc58f79926d17ce61a176444568ca7c970dcd",displayName:"Internet Money Wallet",hostname:"internetmoney.io",mobile:{universal:"https://internetmoney.io"}},coin98:{id:"2a3c89040ac3b723a1972a33a125b1db11e258a6975d3a61252cd64e6ea5ea01",displayName:"Coin98",hostname:"coin98.com",mobile:{universal:"https://coin98.services"}},abc_wallet:{id:"b956da9052132e3dabdcd78feb596d5194c99b7345d8c4bd7a47cabdcb69a25f",displayName:"ABC Wallet",hostname:"myabcwallet.io",mobile:{universal:"https://abcwalletconnect.page.link"}},arculus_wallet:{id:"0e4915107da5b3408b38e248f7a710f4529d54cd30e9d12ff0eb886d45c18e92",displayName:"Arculus Wallet",hostname:"www.getarculus.com",mobile:{universal:"https://gw.arculus.co/app"}},haha:{id:"719bd888109f5e8dd23419b20e749900ce4d2fc6858cf588395f19c82fd036b3",displayName:"HaHa",hostname:"www.haha.me",mobile:{universal:"https://haha.me"}},cling_wallet:{id:"942d0e22a7e6b520b0a03abcafc4dbe156a1fc151876e3c4a842f914277278ef",displayName:"Cling Wallet",hostname:"clingon.io",mobile:{universal:"https://cling.carrieverse.com/apple-app-site-association"}},broearn:{id:"8ff6eccefefa7506339201bc33346f92a43118d6ff7d6e71d499d8187a1c56a2",displayName:"Broearn",hostname:"www.broearn.com",mobile:{universal:"https://www.broearn.com/link/wallet/"}},copiosa:{id:"07f99a5d9849bb049d74830012b286f8b238e72b0337933ef22b84947409db80",displayName:"Copiosa",hostname:"copiosa.io",mobile:{universal:"https://copiosa.io/action/"}},burrito_wallet:{id:"8821748c25de9dbc4f72a691b25a6ddad9d7df12fa23333fd9c8b5fdc14cc819",displayName:"Burrito Wallet",hostname:"burritowallet.com",mobile:{universal:"https://burritowallet.com/wc?uri="}},enjin_wallet:{id:"bdc9433ffdaee55d31737d83b931caa1f17e30666f5b8e03eea794bac960eb4a",displayName:"Enjin Wallet",hostname:"enjin.io",mobile:{universal:"https://deeplink.wallet.enjin.io/"}},plasma_wallet:{id:"cbe13eb482c76f1fa401ff4c84d9acd0b8bc9af311ca0620a0b192fb28359b4e",displayName:"Plasma Wallet",hostname:"plasma-wallet.com",mobile:{universal:"https://plasma-wallet.com"}},avacus:{id:"94f785c0c8fb8c4f38cd9cd704416430bcaa2137f27e1468782d624bcd155a43",displayName:"Avacus",hostname:"avacus.cc",mobile:{universal:"https://avacus.app.link"}},bee:{id:"2cca8c1b0bea04ba37dee4017991d348cdb7b826804ab2bd31073254f345b715",displayName:"Bee",hostname:"www.beewallet.app",mobile:{universal:"https://beewallet.app/wc"}},pitaka:{id:"14e5d957c6eb62d3ee8fc6239703ac2d537d7e3552154836ca0beef775f630bc",displayName:"Pitaka",hostname:"pitaka.io",mobile:{universal:"https://app.pitaka.io"}},pltwallet:{id:"576c90ceaea34f29ff0104837cf2b2e23d201be43be1433feeb18d375430e1fd",displayName:"PLTwallet",hostname:"pltwallet.io",mobile:{universal:"https://pltwallet.io/"}},minerva:{id:"49bb9d698dbdf2c3d4627d66f99dd9fe90bba1eec84b143f56c64a51473c60bd",displayName:"Minerva",hostname:"minerva.digital",mobile:{universal:"https://minerva.digital"}},kryptogo:{id:"19418ecfd44963883e4d6abca1adeb2036f3b5ffb9bee0ec61f267a9641f878b",displayName:"KryptoGO",hostname:"kryptogo.com",mobile:{universal:"https://kryptogo.page.link"}},prema:{id:"5b8e33346dfb2a532748c247876db8d596734da8977905a27b947ba1e2cf465b",displayName:"PREMA",hostname:"premanft.com",mobile:{universal:"https://premanft.com"}},slingshot:{id:"d23de318f0f56038c5edb730a083216ff0cce00c1514e619ab32231cc9ec484b",displayName:"Slingshot",hostname:"slingshot.finance",mobile:{universal:"https://app.slingshot.finance"}},kriptonio:{id:"50df7da345f84e5a79aaf617df5167335a4b6751626df2e8a38f07029b3dde7b",displayName:"Kriptonio",hostname:"kriptonio.com",mobile:{universal:"https://app.kriptonio.com/mobile"}},timeless:{id:"9751385960bca290c13b443155288f892f62ee920337eda8c5a8874135daaea8",displayName:"Timeless",hostname:"timelesswallet.xyz",mobile:{universal:"https://timelesswallet.xyz"}},secux:{id:"6464873279d46030c0b6b005b33da6be5ed57a752be3ef1f857dc10eaf8028aa",displayName:"SecuX",hostname:"secuxtech.com",mobile:{universal:"https://wsweb.secuxtech.com"}},bitizen:{id:"41f20106359ff63cf732adf1f7dc1a157176c9b02fd266b50da6dcc1e9b86071",displayName:"Bitizen",hostname:"bitizen.org",mobile:{universal:"https://bitizen.org/wallet"}},blocto:{id:"14e7176536cb3706e221daaa3cfd7b88b7da8c7dfb64d1d241044164802c6bdd",displayName:"Blocto",hostname:"blocto.io",mobile:{universal:"https://blocto.app"}},safemoon:{id:"a0e04f1086aac204d4ebdd5f985c12ed226cd0006323fd8143715f9324da58d1",displayName:"SafeMoon",hostname:"safemoon.com",mobile:{universal:"https://safemoon.com/wc"}}};function Rc(e){return{name:e.displayName||"",universalLink:e.mobile.universal,deepLink:e.mobile.native}}function Ic(e,t){let o=encodeURIComponent(e);return t.deepLink?`${t.deepLink}wc?uri=${o}`:t.universalLink?`${t.universalLink}/wc?uri=${o}`:""}var Wc=e=>e in dr,Mc=e=>{let t=dr[e].mobile;if("native"in t)return t.native};function Lc(e,t){return Ac?e:Ic(e,Rc(t))}var Nc="WALLETCONNECT_DEEPLINK_CHOICE";function kc(e){let t=e.href.split("?")[0];K.put(Nc,{...e,href:t})}var pr=(e,t)=>{if(!e||Mf){K.del(Nc);return}if(Ac){kc({name:"Unknown",href:t||"wc:"});return}else if(Lf){let o=Ic(t||"wc:",Rc(e));kc({name:e?.displayName||"",href:o})}};var Fo=class extends Fe{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 oe(void 0,this.rpcTimeoutDuration),a&&(this.walletEntry=dr[a],this.walletClientType=a,pr(this.walletEntry)),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=fi(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}),import("@walletconnect/modal").then(({WalletConnectModal:l})=>{this.modal=new l({projectId:this.walletConnectCloudProjectId,themeVariables:{"--wcm-z-index":"1000000"}}),this.modal.subscribeModal(s=>{!s.open&&!this.walletProvider.session&&this.onQrModalClosed&&this.onQrModalClosed()})})}async connect(o){return o.showPrompt&&await this.promptConnection(),this.getConnectedWallet()}async isConnected(){return this.walletProvider.connected}get walletBranding(){return this.walletClientType==="metamask"?{name:"Metamask",icon:mi}:{name:Ja(this.walletProvider.session?.peer.metadata.name||"")||"WalletConnect",icon:this.walletProvider.session?.peer.metadata.icons?.[0]||Qr}}resetConnection(o){this.walletProvider&&this.walletProvider.connected&&(this.walletProvider.signer.session=void 0,this.walletEntry=dr[o],this.walletClientType=o,pr(void 0),this.onDisconnect())}async promptConnection(){if(this.provider)return new Promise((o,r)=>{let n=()=>{r(new ir)};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 G("Unable to retrieve address");if(this.walletProvider.session?.peer.metadata.url){let s=fi(this.walletProvider.session?.peer.metadata.url);this.walletEntry=s?.entry,this.walletClientType=s?.walletClientType||"unknown",this.proxyProvider.rpcTimeoutDuration=ar(this.rpcConfig,this.walletClientType)}this.connected=!0,await this.syncAccounts(l),o()})().catch(a=>{if(a){r(je(a));return}r(new G("Unknown error during connection"))}).finally(()=>this.modal?.closeModal())})}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=ft(n.id,this.chains,this.rpcConfig);i&&(o[n.id]=i)}let r=await Nf.init({projectId:this.walletConnectCloudProjectId,chains:[this.defaultChain.id],optionalChains:this.chains.map(n=>n.id),optionalEvents:Of,optionalMethods:Df,rpcMap:o,showQrModal:!1});return r.on("display_uri",n=>{if(r.signer.abortPairingAttempt(),Uf)window.open(n,"_self","noopener,noreferrer");else if(Ff&&this.walletEntry){pr(this.walletEntry,n);let a=Lc(n,this.walletEntry);window.open(a,"_self","noopener,noreferrer")}else this.modal?.openModal({uri:n,chains:[this.defaultChain.id]})}),r.on("connect",()=>{if(this.modal?.closeModal(),r.session?.peer.metadata.url){let n=fi(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 Za=e=>{let t=localStorage.getItem("-walletlink:https://www.walletlink.org:Addresses");return t?!!e?.linkedAccounts.filter(r=>r.type=="wallet"&&r.address===Oc(t)).length:!1},ar=(e,t)=>e.rpcTimeouts?e.rpcTimeouts[t]||Jr:Jr,Xr=class extends Bf{constructor(o,r,n,i,a){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 oe:r.proxyProvider};this.walletConnectCloudProjectId=o,this.rpcConfig=r,this.chains=n,this.defaultChain=i,this.walletConnectors=[],this.initialized=!1,this.store=a,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||(K.get(Va)&&(K.getKeys().forEach(o=>{o.startsWith("walletconnect")&&K.del(o)}),K.del(Va)),mc(this.store).then(o=>o.forEach(({type:r,eip6963InjectedProvider:n,legacyInjectedProvider:i})=>{this.createWalletConnector("injected",r,{eip6963InjectedProvider:n,legacyInjectedProvider:i})})),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){let i=this.findWalletConnector("embedded","privy");if(i)i.proxyProvider.walletProxy=o;else{let a=new ni(o,r,this.rpcConfig,this.chains,n.id),l=new ci(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,n){let i=this.findWalletConnector(o,r);if(i)return i instanceof Fo&&i.resetConnection(r),i;let l=(()=>{if(o==="injected"){if(r==="metamask"&&n?.eip6963InjectedProvider)return new pi(this.chains,this.defaultChain,this.rpcConfig,n?.eip6963InjectedProvider,"metamask");if(r==="phantom"&&bt())return new ui(this.chains,this.defaultChain,this.rpcConfig);if(n?.legacyInjectedProvider&&r==="unknown_browser_extension")return new di(this.chains,this.defaultChain,this.rpcConfig,n?.legacyInjectedProvider);if(n?.eip6963InjectedProvider)return new lr(this.chains,this.defaultChain,this.rpcConfig,n?.eip6963InjectedProvider,r)}else return o==="coinbase_wallet"?new si(this.chains,this.defaultChain,this.rpcConfig):new Fo(this.walletConnectCloudProjectId,this.rpcConfig,this.chains,this.defaultChain,r)})();return l&&this.addWalletConnector(l),l||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=K.get($a);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}));K.put($a,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=Oc(o),this.emit("walletsUpdated")}};function ii(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 Hf}from"ofetch";var Gf=[Jn(),Qn(),Zn()],zf=e=>{let t=new AbortController;return setTimeout(()=>t.abort(),e),t.signal},hi=class{constructor(t,o,r){this.appId=t,this.clientAnalyticsId=o.clientAnalyticsId,this.sdkVersion=Ha,this.client=o,this.defaults=r,this.fallbackApiUrl=o.fallbackApiUrl,this.baseFetch=Hf.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=!Gf.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=zf(this.defaults.timeout))},onRequestError:({error:n})=>{if(n instanceof DOMException&&n.name==="AbortError")throw new Kn}})}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 en from"js-cookie";function Dc(e){return e instanceof No?"email":e instanceof Do?"sms":e instanceof Oo?"siwe":e instanceof er?"custom_auth":e instanceof to?e.meta.provider:null}import*as Uc from"jose";var Tt=class{static parse(t){try{return new Tt(t)}catch{return null}}constructor(t){this.value=t,this._decoded=Uc.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 Vf=30,yi=class{constructor(){this.authenticateOnce=new rt(async t=>this._authenticate(t)),this.linkOnce=new rt(async t=>this._link(t)),this.refreshOnce=new rt(this._refresh.bind(this)),this.destroyOnce=new rt(this._destroy.bind(this)),this.forkSessionOnce=new rt(this._forkSession.bind(this))}get token(){try{let t=K.get(tr);return typeof t=="string"?new Tt(t).value:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get refreshToken(){try{let t=K.get(ti);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get forkedToken(){try{let t=K.get(Kr);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get mightHaveServerCookies(){try{let t=en.get(Xl);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=Tt.parse(this.token);return t!==null&&!t.isExpired(Vf)}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=Dc(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:mt(n),isNewUser:i}}catch(o){throw console.warn("Error authenticating session"),Ve(o)}}async _link(t){try{let o=await t.link();return mt(o)}catch(o){throw console.warn("Error linking account"),Ve(o)}}async _refresh(){if(!this.api)throw new E("Session has no API instance");if(!this.client)throw new E("Session has no PrivyClient instance");await this.client.getAccessToken({disableAutoRefresh:!0});let t=this.token,o=this.refreshToken,r=this.forkedToken;try{let n;if(t&&o||this.mightHaveServerCookies){let i={};t&&(i.authorization=`Bearer ${t}`);let a=o?{refresh_token:o}:{};n=await this.api.post(Jn(),a,{headers:i}),r&&this.clearForkedToken()}else if(r)n=await this.api.post(Qn(),{refresh_token:r}),this.clearForkedToken();else return null;return this.storeToken(n.token),this.storeRefreshToken(n.refresh_token),mt(n.user)}catch(n){if(n instanceof Xo&&n.privyErrorCode==="missing_or_invalid_token")return console.warn("Unable to refresh tokens - token is missing or no longer valid"),this.destroyLocalState(),null;throw Ve(n)}}async _destroy(){try{await this.api?.post(Zn(),{refresh_token:this.refreshToken})}catch{console.warn("Error destroying session")}this.destroyLocalState()}async _forkSession(){if(!this.api)throw new E("Session has no API instance");let t=this.refreshToken;try{let o=await this.api.post(Sl(),{refresh_token:t});return this.storeToken(o.token),this.storeRefreshToken(o.refresh_token),o.new_session_refresh_token}catch(o){throw Ve(o)}}destroyLocalState(){this.storeToken(null),this.storeRefreshToken(null),this.clearForkedToken()}storeToken(t){if(typeof t=="string"){if(K.put(tr,t),!this.client?.useServerCookies){let o=Tt.parse(t)?.expiration;en.set(Ga,t,{sameSite:"Strict",secure:!0,expires:o?new Date(o*1e3):void 0})}}else K.del(tr),en.remove(Ga)}storeRefreshToken(t){typeof t=="string"?(K.put(ti,t),this.client?.useServerCookies||en.set(za,t,{sameSite:"Strict",secure:!0,expires:30})):(K.del(ti),en.remove(za))}clearForkedToken(){K.del(Kr)}};var Qa,gi,Fc,tn=class{constructor(t){xl(this,gi);this.apiUrl=t.apiUrl||ei,this.fallbackApiUrl=this.apiUrl,this.useServerCookies=!1,this.timeout=t.timeout||Zl,this.appId=t.appId,this.clientAnalyticsId=Tl(this,gi,Fc).call(this),Qa||(Qa=new yi),this.session=Qa,this.api=this.generateApi(),this.session.client=this}initializeConnectorManager(t,o,r,n,i){this.connectors||(this.connectors=new Xr(t,o,r,n,i))}generateApi(){let t=new hi(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 E("No auth flow in progress.");return this.session.authenticate(this.authFlow)}link(){if(!this.authFlow)throw new E("No auth flow in progress.");return this.session.link(this.authFlow)}async logout(){await this.session.destroy(),this.authFlow=void 0}startAuthFlow(t){t.api=this.api,this.authFlow=t}startMfaFlow(t){t.api=this.api,this.mfaFlow=t}async unlinkEmail(t){try{let o=await this.api.post(Bl(),{address:t});return mt(o)}catch(o){throw Ve(o)}}async unlinkPhone(t){try{let o=await this.api.post(Hl(),{phoneNumber:t});return mt(o)}catch(o){throw Ve(o)}}async unlinkWallet(t){try{let o=await this.api.post(Fl(),{address:t});return mt(o)}catch(o){throw Ve(o)}}async unlinkOAuth(t,o){try{let r=await this.api.post(Gl(),{provider:t,subject:o});return mt(r)}catch(r){throw Ve(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(zl(),{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(Vl(),t)}catch(o){throw Ve(o)}}async getAuthenticatedUser(){return this.session.hasRefreshCredentials()||this.session.hasRecoveryCredentials()?this.session.refresh():null}async getAccessToken(t){return this.session.hasActiveToken()?Tt.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,captchaSiteKey:t.captcha_site_key,twitterOAuthOnMobileEnabled:t.twitter_oauth_on_mobile_enabled,createdAt:new Date(t.created_at*1e3),updatedAt:new Date(t.updated_at*1e3),mfaMethods:t.mfa_methods}}catch(t){throw Ve(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()}};gi=new WeakSet,Fc=function(){if(typeof window>"u")return null;try{let o=K.get(Yr);if(typeof o=="string"&&o.length>0)return o}catch{}let t=$f();try{return K.put(Yr,t),t}catch{return t}};import"wicg-inert";import{useRef as Y0,useState as J0}from"react";import{useEffect as Z0}from"react";import Q0 from"react-dom";import{createContext as qf,useContext as jf}from"react";var Ie=qf({ready:!1,authenticated:!1,user:null,walletConnectors:null,connectWallet:C,login:C,linkEmail:C,linkPhone:C,linkWallet:C,linkGoogle:C,linkTwitter:C,linkDiscord:C,linkGithub:C,linkTiktok:C,linkLinkedIn:C,linkApple:C,logout:C,getAccessToken:C,getEthereumProvider:C,getEthersProvider:C,getWeb3jsProvider:C,unlinkEmail:C,unlinkPhone:C,unlinkWallet:C,unlinkGoogle:C,unlinkTwitter:C,unlinkDiscord:C,unlinkGithub:C,unlinkTiktok:C,unlinkLinkedIn:C,unlinkApple:C,setActiveWallet:C,forkSession:C,createWallet:C,signMessage:C,enrollInMfa:C,initEnrollmentWithSms:C,initEnrollmentWithTotp:C,init:C,submitEnrollmentWithSms:C,submitEnrollmentWithTotp:C,unenroll:C,submit:C,cancel:C,sendTransaction:C,exportWallet:C,setWalletPassword:C,initLoginWithEmail:C,loginWithCode:C}),H=()=>jf(Ie);import{useEffect as Kf,useState as Yf}from"react";var Bc=e=>{let[t,o]=Yf("auto");return Kf(()=>{let r=new ResizeObserver(n=>{o(n[0]?.contentRect.height??"auto")});return e.current&&r.observe(e.current),()=>{e.current&&r.unobserve(e.current)}},[e.current]),t};import as from"styled-components";import Bo,{css as os}from"styled-components";import es from"styled-components";import{Fragment as Zf,jsx as Xa,jsxs as Qf}from"react/jsx-runtime";var vi=({success:e,fail:t})=>Qf(Zf,{children:[Xa(nt,{className:e?"success":t?"fail":""}),Xa(ts,{className:e?"success":t?"fail":""})]}),nt=es.span`
|
|
12
|
+
- https://privy.io`;this.getNonceOnce=new nt(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(_l(),{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 te(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(kl(),{message:t,signature:o,chainId:this.wallet.chainId,walletClientType:this.wallet.walletClientType,connectorType:this.wallet.connectorType})}catch(t){throw te(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(Sl(),{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 Bo=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=Ml(),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 te(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=Ll();return await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode})}catch(t){throw te(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=Wl();return await this.api.post(r,{phoneNumber:this.meta.phoneNumber,token:this.meta.captchaToken})}catch(r){throw te(r)}}};import{v4 as $f}from"uuid";function qe(e){return new Date(e*1e3)}function af(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:qe(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:qe(o.verified_at)};t.push(i);break;case"phone":let a={number:o.phoneNumber,type:o.type,verifiedAt:qe(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:qe(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:qe(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:qe(o.verified_at)};t.push(c);break;case"github_oauth":let u={subject:o.subject,username:o.username,name:o.name,email:o.email,type:o.type,verifiedAt:qe(o.verified_at)};t.push(u);break;case"tiktok_oauth":let h={subject:o.subject,username:o.username,type:o.type,verifiedAt:qe(o.verified_at)};t.push(h);break;case"linkedin_oauth":let w={subject:o.subject,name:o.name,email:o.email,type:o.type,verifiedAt:qe(o.verified_at)};t.push(w);break;case"apple_oauth":let m={subject:o.subject,email:o.email,type:o.type,verifiedAt:qe(o.verified_at)};t.push(m);break;case"custom_auth":t.push({type:o.type,customUserId:o.custom_user_id,verifiedAt:qe(o.verified_at)});break;default:console.warn(`Unrecognized account type: ${r}. Please consider upgrading the Privy SDK.`)}}return t}function bt(e,t){return e.sort((o,r)=>r.verifiedAt.getTime()-o.verifiedAt.getTime()),e.find(o=>o.type===t)}var ne=e=>e?.linkedAccounts.find(t=>t.type==="wallet"&&t.walletClientType==="privy")||null,sf=e=>e.linkedAccounts.filter(t=>t.type==="wallet"),ao=(e,t)=>t==="all-users"&&!ne(e)||t==="users-without-wallets"&&!sf(e)?.length;function ft(e){if(!e)return null;let t=af(e.linked_accounts),o=bt(t,"wallet"),r=bt(t,"email"),n=bt(t,"phone"),i=bt(t,"google_oauth"),a=bt(t,"twitter_oauth"),l=bt(t,"discord_oauth"),s=bt(t,"github_oauth"),c=bt(t,"tiktok_oauth"),u=bt(t,"linkedin_oauth"),h=bt(t,"apple_oauth"),w=e.mfa_methods.map(({type:v,verified_at:y})=>({type:v,verifiedAt:qe(y)}));return{id:e.id,createdAt:qe(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:u&&{subject:u.subject,name:u.name},apple:h&&{subject:h.subject,email:h.email},mfaMethods:w.map(v=>v.type)}}import{getAddress as Dc}from"@ethersproject/address";import Bf from"eventemitter3";var jl="1.51.1-beta-20231211223406";var Xn="4df5e2316331463a9130964bd6078dfa",Kl="fe9c30fc-3bc5-4064-91e2-6ab5887f8f4d",Yl="34357d3c125c2bcf2ce2bc3309d98715",ei="https://auth.privy.io",Jl=2e4,je=1400,Zl=2500,Ba=jl;var rr="privy:token",Ha="privy-token",ti="privy:refresh_token",Ga="privy-refresh-token",Ql="privy-session",Yr="privy:session_transfer_token",cf="privy:wallet",Jr="privy:caid",oi=e=>`${cf}:${e}`,za="privy:connectors",Va="privy:connections";var Zr=12e4,Ht=1,$a="0x1",nr=3e4,Xl="https://api.moonpay.com/v1",ec="https://api.moonpay.com/v1",tc="pk_live_hirbpu0cVcLHrjktC9l7fbc9ctjv0SL",oc="pk_test_fqWjXZMSFwloh7orvJsRfjiUHXJqFzI",rc="0x420000000000000000000000000000000000000F",nc=["function getL1Fee(bytes memory _data) external view returns (uint256)"];var qa=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)}},ja=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 df(){return typeof window<"u"&&window.localStorage?new ja:new qa}var Y=df();function ic(){let e=window,t=e.ethereum;if(!t)return[];let o=[];if(t.providers?.length)for(let r of t.providers)r&&o.push(r);return o.push(e.ethereum),o}var ac=e=>{if(e.isApexWallet)return"Apex Wallet";if(e.isAvalanche)return"Core Wallet";if(e.isBackpack)return"Backpack";if(e.isBifrost)return"Bifrost Wallet";if(e.isBitKeep)return"BitKeep";if(e.isBitski)return"Bitski";if(e.isBlockWallet)return"BlockWallet";if(e.isBraveWallet)return"Brave Wallet";if(e.isClover)return"Clover";if(e.isCoin98)return"Coin98 Wallet";if(e.isCoinbaseWallet)return"Coinbase Wallet";if(e.isDawn)return"Dawn Wallet";if(e.isDefiant)return"Defiant";if(e.isDesig)return"Desig Wallet";if(e.isEnkrypt)return"Enkrypt";if(e.isExodus)return"Exodus";if(e.isFordefi)return"Fordefi";if(e.isFrame)return"Frame";if(e.isFrontier)return"Frontier Wallet";if(e.isGamestop)return"GameStop Wallet";if(e.isHaqqWallet)return"HAQQ Wallet";if(e.isHyperPay)return"HyperPay Wallet";if(e.isImToken)return"ImToken";if(e.isHaloWallet)return"Halo Wallet";if(e.isKuCoinWallet)return"KuCoin Wallet";if(e.isMathWallet)return"MathWallet";if(e.isNovaWallet)return"Nova Wallet";if(e.isOkxWallet||e.isOKExWallet)return"OKX Wallet";if(e.isOneInchIOSWallet||e.isOneInchAndroidWallet)return"1inch Wallet";if(e.isOneKey)return"OneKey Wallet";if(e.isOpera)return"Opera";if(e.isPhantom)return"Phantom";if(e.isPortal)return"Ripio Portal";if(e.isRabby)return"Rabby Wallet";if(e.isRainbow)return"Rainbow";if(e.isSafePal)return"SafePal Wallet";if(e.isStatus)return"Status";if(e.isSubWallet)return"SubWallet";if(e.isTalisman)return"Talisman";if(e.isTally)return"Taho";if(e.isTokenPocket)return"TokenPocket";if(e.isTokenary)return"Tokenary";if(e.isTrust||e.isTrustWallet)return"Trust Wallet";if(e.isTTWallet)return"TTWallet";if(e.isXDEFI)return"XDEFI Wallet";if(e.isZeal)return"Zeal";if(e.isZerion)return"Zerion";if(e.isMetaMask)return"MetaMask"};var Et=()=>!!("phantom"in window&&window?.phantom?.ethereum?.isPhantom),sc=()=>{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&&t.isCoinbaseWallet)return!0}return!1};var lc=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,}))$/),cc=(e,t)=>{let o=e.slice(0),r=[];for(;o.length;)r.push(o.splice(0,t));return r},so=(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}`},Ka=e=>new Promise(t=>setTimeout(t,e));function dc(e,{interval:t=100,timeout:o=5e3}={}){return new Promise((r,n)=>{let i=0,a,l=()=>{if(i>=o){n("Max attempts reached without result");return}if(a=e(),i+=t,a!=null){r(a);return}setTimeout(l,t)};l()})}var pc=(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 Ka(o)}a||i(new Error("Exceeded max attempts before resolving function"))})},ri=(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 Ya=e=>e.replace(/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g,""),Ho=e=>typeof e=="string"?e:"0x"+e.toString(16);async function uc(e,t=3e3){let o=!1,r=window;return new Promise(n=>{r.ethereum?i():(window.addEventListener("ethereum#initialized",i,{once:!0}),setTimeout(()=>{i()},t));function i(){if(o)return;o=!0,window.removeEventListener("ethereum#initialized",i);let a=e.getProviders(),l=[];for(let s of a)s.info.rdns!=="com.coinbase.wallet"&&l.push({type:s.info.name.toLowerCase().replace(/\s/g,"_"),eip6963InjectedProvider:s});Et()&&l.push({type:"phantom"});for(let s of ic()){let c=ac(s);if(!a.some(u=>u.info.name===c)&&c!=="MetaMask"){l.push({type:"unknown_browser_extension",legacyInjectedProvider:s});break}}n(l)}})}function ir(e){return`eip155:${String(Number(e))}`}var ht=(e,t,o)=>{let r=Number(e),n=t.find(a=>a.id===r);if(!n)throw new z(`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]+"/"+Xn:n.rpcUrls.blast?.http[0]?i=n.rpcUrls.blast.http[0]+"/"+Kl:i=n.rpcUrls.default?.http[0],!i)throw new z(`No RPC url found for ${e}`);return i},mc=(e,t)=>{let o=Number(e),r=t.find(n=>n.id===o);if(!r)throw new z(`Unsupported chainId ${e}`,4901);return r.blockExplorers?.default.url};import Cf from"@coinbase/wallet-sdk";import{jsx as fc,jsxs as pf}from"react/jsx-runtime";var Qr=({style:e,...t})=>pf("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:[fc("rect",{width:"1024",height:"1024",fill:"#0052FF",rx:100,ry:100}),fc("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 Tt}from"@ethersproject/address";import{Web3Provider as Cc}from"@ethersproject/providers";import{default as vf}from"eventemitter3";import{StaticJsonRpcProvider as yc}from"@ethersproject/providers";import gf from"eventemitter3";var uf=["eth_sign","eth_populateTransactionRequest","eth_signTransaction","personal_sign","eth_signTypedData_v4"],hc=e=>uf.includes(e);import{ErrorCode as mf}from"@ethersproject/logger";var ar=class extends z{constructor(){super("Wallet timeout");this.type="wallet_error"}},sr=class extends z{constructor(){super("User rejected connection");this.type="wallet_error"}},Ke=e=>{if(e instanceof z)return e;if(e?.code&&e?.reason){let t=new Ae(e);return e.code===mf.ACTION_REJECTED&&(t.details=Ue.E4001_USER_REJECTED_REQUEST),t}return e?.code?new Ae(e):new z("Unknown connector error",e)},Pt=class extends ze{constructor(o,r,n){super(o);this.type="provider_error";this.code=r,this.data=n}},Ae=class extends Pt{constructor(o){let r=o;super(r.message,r.code,r.data);let n=Object.values(Ue).find(i=>i.eipCode===r.code);this.details=n||Ue.UNKNOWN_ERROR,r.code===-32002&&(r.message?.includes("already pending for origin")?r.message?.includes("wallet_requestPermissions")?this.details=Ue.E32002_CONNECTION_ALREADY_PENDING:this.details=Ue.E32002_REQUEST_ALREADY_PENDING:r.message?.includes("Already processing")&&r.message.includes("eth_requestAccounts")&&(this.details=Ue.E32002_WALLET_LOCKED))}},ff={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}},hf={E32002_CONNECTION_ALREADY_PENDING:{eipCode:-32002,message:"Connection request already pending",detail:"Don\u2019t see your wallet? Check your other browser windows.",retryable:!1},E32002_REQUEST_ALREADY_PENDING:{eipCode:-32002,message:"Resource request already pending",detail:"Don\u2019t see your wallet? Check your other browser windows.",retryable:!1},E32002_WALLET_LOCKED:{eipCode:-32002,message:"Wallet might be locked",detail:"Don\u2019t see your wallet? Check your other browser windows.",retryable:!1},E4001_USER_REJECTED_REQUEST:{eipCode:4001,message:"Signature rejected",detail:"Please try signing again.",retryable:!0}},yf={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}},Ue={UNKNOWN_ERROR:{eipCode:0,message:"Unknown error",detail:"Unknown error",retryable:!0},...yf,...hf},Gt={...ff,...Ue};var oe=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 ar,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||Zr,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 z(`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 Ke(o)})}},lo=class extends Error{constructor(o,r,n){super(o);this.code=r,this.data=n}},ni=class extends gf{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 yc(ht(a,this.chains,n)),this.rpcTimeoutDuration=lr(n,"privy")}async handleSendTransaction(o){if(!o.params||!Array.isArray(o.params))throw new lo(`Invalid params for ${o.method}`,4200);let r=o.params[0];if(!await Re()||!this.address)throw new lo("Disconnected",4900);return(await vc(r)).hash}handleSwitchEthereumChain(o){if(!o.params||!Array.isArray(o.params))throw new lo(`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 lo(`Invalid params for ${o.method}`,4200);this.chainId=Number(r),this.provider=new yc(ht(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 gc(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:Ho(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 Ho(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(hc(o.method)){let r=await Re();if(await wc(),!r||!this.address)throw new lo("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 lo("Disconnected",4900)}}else return this.provider.send(o.method,o.params)}async connect(){let o=await Re();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}}},xt=class extends oe{constructor(o){super(o,o.rpcTimeoutDuration)}},co=class extends oe{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 wf=(e,t)=>{switch(t){case"coinbase_wallet":return e.message.includes("addEthereumChain");default:return e.code===4902||e.message?.includes("4902")}},Fe=class extends vf{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=ir(o),this.walletClientType==="privy"&&Y.put(oi(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=lr(i,o),this.connected=!1,this.initialized=!1}buildConnectedWallet(o,r){let n=async()=>!!this.wallets.find(i=>Tt(i.address)===Tt(o));return{address:Tt(o),chainId:r,switchChain:async i=>{if(!n)throw new z("Wallet is not currently connected.");let a=this.wallets.find(h=>Tt(h.address)===Tt(o))?.chainId;if(!a)throw new z("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===ir(l))return;let c=this.chains.find(h=>h.id===s);if(!c)throw new z(`Unsupported chainId: ${i}`);let u=async()=>{await this.proxyProvider.request({method:"wallet_switchEthereumChain",params:[{chainId:l}]})};try{return await u()}catch(h){if(wf(h,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??""]}]}),u();throw this.walletClientType==="rainbow"&&h.message?.includes("wallet_switchEthereumChain")?new z(`Rainbow does not support the chainId ${r}`):h}},connectedAt:Date.now(),walletClientType:this.walletClientType,connectorType:this.connectorType,isConnected:n,getEthereumProvider:async()=>{if(!await n())throw new z("Wallet is not currently connected.");return this.proxyProvider},getEthersProvider:async()=>{if(!await n())throw new z("Wallet is not currently connected.");return new Cc(new xt(this.proxyProvider))},getWeb3jsProvider:async()=>{if(!await n())throw new z("Wallet is not currently connected.");return new co(this.proxyProvider)},sign:async i=>{if(!await n())throw new z("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=Tt(n),a=[],l;if(this.walletClientType==="privy"){let c=Y.get(oi(i));this.chains.find(u=>u.id===Number(c))||(Y.del(oi(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 ${$a}`,c),l=$a}let s=ir(l);a.find(c=>Tt(c.address)===i)||a.push(this.buildConnectedWallet(Tt(n),s)),ii(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=>Tt(n)===Tt(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 Cc(new xt(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 bf=e=>{let t=`https://mainnet.infura.io/v3/${Xn}`,o=1;return e.makeWeb3Provider(t,o)},ai,si=class extends Fe{constructor(o,r,n){super("coinbase_wallet",o,r,n);this.connectorType="coinbase_wallet";this.proxyProvider=new oe(void 0,this.rpcTimeoutDuration),this.subscribeListeners(),ai||(ai=new Cf({appName:"Privy",darkMode:!1,headlessMode:!1,enableMobileWalletLink:!0})),this.proxyProvider.setWalletProvider(bf(ai)),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(){ai.disconnect()}get walletBranding(){return{name:"Coinbase Wallet",icon:Qr}}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new z("Unable to retrieve accounts");this.connected=!0,await this.syncAccounts([o[0]])}catch(o){throw Ke(o)}}};import{jsx as bc}from"react/jsx-runtime";var li=({...e})=>bc("svg",{width:"15",height:"15",viewBox:"0 0 15 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e,children:bc("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 ci=class extends Fe{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:[Ho(o?.chainId||"0x1")]}),this.getConnectedWallet()):null}get walletBranding(){return{name:"Privy Wallet",icon:li}}disconnect(){this.connected=!1}async promptConnection(){}};import{jsx as Ec}from"react/jsx-runtime";var cr=({style:e,...t})=>Ec("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",stroke:"currentColor",strokeWidth:1.5,viewBox:"0 0 24 24",style:{...e},...t,children:Ec("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M9 17.25v1.007a3 3 0 01-.879 2.122L7.5 21h9l-.621-.621A3 3 0 0115 18.257V17.25m6-12V15a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 15V5.25m18 0A2.25 2.25 0 0018.75 3H5.25A2.25 2.25 0 003 5.25m18 0V12a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 12V5.25"})});var dr=class extends Fe{constructor(o,r,n,i,a){super(a||"unknown",o,r,n);this.connectorType="injected";this.proxyProvider=new oe(void 0,this.rpcTimeoutDuration),this.subscribeListeners(),this.providerDetail=i;let l=i.provider;this.proxyProvider.setWalletProvider(l),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:this.providerDetail.info.name,icon:this.providerDetail.info.icon}}disconnect(){console.warn(`Programmatic disconnect with ${this.providerDetail.info.name} is not yet supported.`)}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new z("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw Ke(o)}}},di=class extends Fe{constructor(o,r,n,i){super("unknown",o,r,n);this.connectorType="injected";this.proxyProvider=new oe(void 0,this.rpcTimeoutDuration),this.subscribeListeners(),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:"Browser Extension",icon:cr}}disconnect(){console.warn("Programmatic disconnect with browser wallets is not yet supported.")}async promptConnection(){try{let o=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!o||o.length===0||!o[0])throw new z("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw Ke(o)}}};import{getAddress as Ib}from"@ethersproject/address";import{Web3Provider as Mb}from"@ethersproject/providers";import{isMobile as Ef}from"react-device-detect";var pi=class extends dr{disconnect(){console.warn("Metamask does not support programmatic disconnect.")}async promptConnection(){try{Ef||await this.proxyProvider.request({method:"wallet_requestPermissions",params:[{eth_accounts:{}}]});let t=await this.proxyProvider.request({method:"eth_requestAccounts"});if(!t||t.length===0||!t[0])throw new z("Unable to retrieve accounts");await this.syncAccounts([t[0]])}catch(t){throw Ke(t)}}};import{jsx as Pc,jsxs as Pf}from"react/jsx-runtime";var po=({style:e,...t})=>Pf("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:[Pc("rect",{width:"108",height:"108",rx:"23",fill:"#AB9FF2"}),Pc("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 ui=class extends Fe{constructor(o,r,n){super("phantom",o,r,n);this.connectorType="injected";this.proxyProvider=new oe(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:po}}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 z("Unable to retrieve accounts");await this.syncAccounts([o[0]])}catch(o){throw Ke(o)}}};import{EthereumProvider as Of,OPTIONAL_EVENTS as Df,OPTIONAL_METHODS as Uf}from"@walletconnect/ethereum-provider";import{isMobile as Ff}from"react-device-detect";import{jsx as Ye,jsxs as xf}from"react/jsx-runtime";var mi=({style:e,...t})=>xf("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:[Ye("style",{children:".s1{stroke-linecap:round;stroke-linejoin:round}.s2{fill:#e4761b;stroke:#e4761b}.s3{fill:#f6851b;stroke:#f6851b}"}),Ye("path",{fill:"#e2761b",stroke:"#e2761b",className:"s1",d:"m274.1 35.5-99.5 73.9L193 65.8z"}),Ye("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"}),Ye("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"}),Ye("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"}),Ye("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"}),Ye("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"}),Ye("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"}),Ye("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"}),Ye("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"}),Ye("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"}),Ye("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"}),Ye("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"})]});import{createContext as Sf,useContext as _f,useEffect as kf,useRef as Af,useState as Rf}from"react";import{jsx as Tf}from"react/jsx-runtime";function xc(e){return Tf("link",{rel:"prefetch",href:e.src})}var b=()=>{throw new Error("You need to wrap your application with the <PrivyProvider> initialized with your app id.")};import{jsx as Wf,jsxs as Mf}from"react/jsx-runtime";var If="LANDING",Tc=Sf({ready:!1,app:null,currentScreen:null,lastScreen:null,navigate:b,navigateBack:b,resetNavigation:b,setModalData:b,onUserCloseViaDialogOrKeybindRef:void 0}),Sc=e=>{let t=e.appConfig,o=e.authenticated,[r,n]=Rf(e.initialScreen);kf(()=>{o||e.setInitialScreen(If)},[o]);let i=Af(null),a={ready:!!t?.id,app:t,data:e.data,setModalData:e.setModalData,currentScreen:e.initialScreen,lastScreen:r,navigate:l=>{e.setInitialScreen(l),n(e.initialScreen)},navigateBack:()=>{e.setInitialScreen(r)},resetNavigation:()=>{e.setInitialScreen(null),n(null)},onUserCloseViaDialogOrKeybindRef:i};return Mf(Tc.Provider,{value:a,children:[(typeof t?.appearance?.logo=="string"||t?.appearance?.logo?.type==="img")&&Wf(xc,{src:typeof t.appearance.logo=="string"?t.appearance.logo:t.appearance.logo.props.src}),e.children]})},T=()=>_f(Tc);import{jsx as pr,jsxs as Lf}from"react/jsx-runtime";var Xr=({style:e,...t})=>{let{app:o}=T();return Lf("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:[pr("rect",{width:"28",height:"28",rx:"3",fill:o?.appearance.palette.colorScheme==="dark"?"#3396ff":"#141414"}),pr("g",{clipPath:"url(#clip0_1765_9946)",children:pr("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"})}),pr("defs",{children:pr("clipPath",{id:"clip0_1765_9946",children:pr("rect",{width:"20",height:"12.2531",fill:"white",transform:"translate(4 8)"})})})]})};var fi=e=>{let t;try{t=new URL(e).hostname}catch{return}for(let[o,r]of Object.entries(ur))if(t.includes(r.hostname))return{walletClientType:o,entry:r}};var ur={metamask:{id:"c57ca95b47569778a828d19178114f4db188b89b763c899ba0be274e97267d96",displayName:"MetaMask",hostname:"metamask.io",mobile:{native:"metamask://",universal:"https://metamask.app.link"}},trust:{id:"4622a2b2d6af1c9844944291e5e7351a6aa24cd7b23099efac1b2fd875da31a0",displayName:"Trust",hostname:"trustwallet.com",mobile:{universal:"https://link.trustwallet.com"}},safe:{id:"225affb176778569276e484e1b92637ad061b01e13a048b35a9d280c3b58970f",displayName:"Safe",hostname:"safe.global",mobile:{universal:"https://app.safe.global/"}},rainbow:{id:"1ae92b26df02f0abca6304df07debccd18262fdf5fe82daa81593582dac9a369",displayName:"Rainbow",hostname:"rainbow.me",mobile:{native:"rainbow://",universal:"https://rnbwapp.com"}},uniswap:{id:"c03dfee351b6fcc421b4494ea33b9d4b92a984f87aa76d1663bb28705e95034a",displayName:"Uniswap",hostname:"uniswap.org",mobile:{universal:"https://uniswap.org/app"}},zerion:{id:"ecc4036f814562b41a5268adc86270fba1365471402006302e70169465b7ac18",displayName:"Zerion",hostname:"zerion.io",mobile:{native:"zerion://",universal:"https://wallet.zerion.io"}},argent:{id:"bc949c5d968ae81310268bf9193f9c9fb7bb4e1283e1284af8f2bd4992535fd6",displayName:"Argent",hostname:"www.argent.xyz",mobile:{universal:"https://www.argent.xyz/app"}},spot:{id:"74f8092562bd79675e276d8b2062a83601a4106d30202f2d509195e30e19673d",displayName:"Spot",hostname:"www.spot-wallet.com",mobile:{universal:"https://spot.so"}},omni:{id:"afbd95522f4041c71dd4f1a065f971fd32372865b416f95a0b1db759ae33f2a7",displayName:"Omni",hostname:"omni.app",mobile:{universal:"https://links.omni.app"}},cryptocom:{id:"f2436c67184f158d1beda5df53298ee84abfc367581e4505134b5bcf5f46697d",displayName:"Crypto.com",hostname:"crypto.com",mobile:{universal:"https://wallet.crypto.com"}},blockchain:{id:"84b43e8ddfcd18e5fcb5d21e7277733f9cccef76f7d92c836d0e481db0c70c04",displayName:"Blockchain",hostname:"www.blockchain.com",mobile:{universal:"https://www.blockchain.com"}},safepal:{id:"0b415a746fb9ee99cce155c2ceca0c6f6061b1dbca2d722b3ba16381d0562150",displayName:"SafePal",hostname:"safepal.com",mobile:{universal:"https://link.safepal.io"}},bitkeep:{id:"38f5d18bd8522c244bdd70cb4a68e0e718865155811c043f052fb9f1c51de662",displayName:"BitKeep",hostname:"bitkeep.com",mobile:{universal:"https://bkapp.vip"}},zengo:{id:"9414d5a85c8f4eabc1b5b15ebe0cd399e1a2a9d35643ab0ad22a6e4a32f596f0",displayName:"ZenGo",hostname:"zengo.com",mobile:{universal:"https://get.zengo.com/"}},"1inch":{id:"c286eebc742a537cd1d6818363e9dc53b21759a1e8e5d9b263d0c03ec7703576",displayName:"1inch",hostname:"wallet.1inch.io",mobile:{universal:"https://wallet.1inch.io/wc/"}},binance:{id:"8a0ee50d1f22f6651afcae7eb4253e52a3310b90af5daef78a8c4929a9bb99d4",displayName:"Binance",hostname:"www.binance.com",mobile:{universal:"https://app.binance.com/cedefi"}},exodus:{id:"e9ff15be73584489ca4a66f64d32c4537711797e30b6660dbcb71ea72a42b1f4",displayName:"Exodus",hostname:"exodus.com",mobile:{universal:"https://exodus.com/m"}},mew_wallet:{id:"f5b4eeb6015d66be3f5940a895cbaa49ef3439e518cd771270e6b553b48f31d2",displayName:"MEW wallet",hostname:"mewwallet.com",mobile:{universal:"https://mewwallet.com"}},alphawallet:{id:"138f51c8d00ac7b9ac9d8dc75344d096a7dfe370a568aa167eabc0a21830ed98",displayName:"AlphaWallet",hostname:"alphawallet.com",mobile:{universal:"https://aw.app"}},keyring_pro:{id:"47bb07617af518642f3413a201ec5859faa63acb1dd175ca95085d35d38afb83",displayName:"KEYRING PRO",hostname:"keyring.app",mobile:{universal:"https://keyring.app/"}},mathwallet:{id:"7674bb4e353bf52886768a3ddc2a4562ce2f4191c80831291218ebd90f5f5e26",displayName:"MathWallet",hostname:"mathwallet.org",mobile:{universal:"https://www.mathwallet.org"}},unstoppable:{id:"8308656f4548bb81b3508afe355cfbb7f0cb6253d1cc7f998080601f838ecee3",displayName:"Unstoppable",hostname:"unstoppabledomains.com",mobile:{universal:"https://unstoppabledomains.com/mobile"}},obvious:{id:"031f0187049b7f96c6f039d1c9c8138ff7a17fd75d38b34350c7182232cc29aa",displayName:"Obvious",hostname:"obvious.technology",mobile:{universal:"https://wallet.obvious.technology"}},ambire:{id:"2c81da3add65899baeac53758a07e652eea46dbb5195b8074772c62a77bbf568",displayName:"Ambire",hostname:"www.ambire.com",mobile:{universal:"https://mobile.ambire.com"}},internet_money_wallet:{id:"dd43441a6368ec9046540c46c5fdc58f79926d17ce61a176444568ca7c970dcd",displayName:"Internet Money Wallet",hostname:"internetmoney.io",mobile:{universal:"https://internetmoney.io"}},coin98:{id:"2a3c89040ac3b723a1972a33a125b1db11e258a6975d3a61252cd64e6ea5ea01",displayName:"Coin98",hostname:"coin98.com",mobile:{universal:"https://coin98.services"}},abc_wallet:{id:"b956da9052132e3dabdcd78feb596d5194c99b7345d8c4bd7a47cabdcb69a25f",displayName:"ABC Wallet",hostname:"myabcwallet.io",mobile:{universal:"https://abcwalletconnect.page.link"}},arculus_wallet:{id:"0e4915107da5b3408b38e248f7a710f4529d54cd30e9d12ff0eb886d45c18e92",displayName:"Arculus Wallet",hostname:"www.getarculus.com",mobile:{universal:"https://gw.arculus.co/app"}},haha:{id:"719bd888109f5e8dd23419b20e749900ce4d2fc6858cf588395f19c82fd036b3",displayName:"HaHa",hostname:"www.haha.me",mobile:{universal:"https://haha.me"}},cling_wallet:{id:"942d0e22a7e6b520b0a03abcafc4dbe156a1fc151876e3c4a842f914277278ef",displayName:"Cling Wallet",hostname:"clingon.io",mobile:{universal:"https://cling.carrieverse.com/apple-app-site-association"}},broearn:{id:"8ff6eccefefa7506339201bc33346f92a43118d6ff7d6e71d499d8187a1c56a2",displayName:"Broearn",hostname:"www.broearn.com",mobile:{universal:"https://www.broearn.com/link/wallet/"}},copiosa:{id:"07f99a5d9849bb049d74830012b286f8b238e72b0337933ef22b84947409db80",displayName:"Copiosa",hostname:"copiosa.io",mobile:{universal:"https://copiosa.io/action/"}},burrito_wallet:{id:"8821748c25de9dbc4f72a691b25a6ddad9d7df12fa23333fd9c8b5fdc14cc819",displayName:"Burrito Wallet",hostname:"burritowallet.com",mobile:{universal:"https://burritowallet.com/wc?uri="}},enjin_wallet:{id:"bdc9433ffdaee55d31737d83b931caa1f17e30666f5b8e03eea794bac960eb4a",displayName:"Enjin Wallet",hostname:"enjin.io",mobile:{universal:"https://deeplink.wallet.enjin.io/"}},plasma_wallet:{id:"cbe13eb482c76f1fa401ff4c84d9acd0b8bc9af311ca0620a0b192fb28359b4e",displayName:"Plasma Wallet",hostname:"plasma-wallet.com",mobile:{universal:"https://plasma-wallet.com"}},avacus:{id:"94f785c0c8fb8c4f38cd9cd704416430bcaa2137f27e1468782d624bcd155a43",displayName:"Avacus",hostname:"avacus.cc",mobile:{universal:"https://avacus.app.link"}},bee:{id:"2cca8c1b0bea04ba37dee4017991d348cdb7b826804ab2bd31073254f345b715",displayName:"Bee",hostname:"www.beewallet.app",mobile:{universal:"https://beewallet.app/wc"}},pitaka:{id:"14e5d957c6eb62d3ee8fc6239703ac2d537d7e3552154836ca0beef775f630bc",displayName:"Pitaka",hostname:"pitaka.io",mobile:{universal:"https://app.pitaka.io"}},pltwallet:{id:"576c90ceaea34f29ff0104837cf2b2e23d201be43be1433feeb18d375430e1fd",displayName:"PLTwallet",hostname:"pltwallet.io",mobile:{universal:"https://pltwallet.io/"}},minerva:{id:"49bb9d698dbdf2c3d4627d66f99dd9fe90bba1eec84b143f56c64a51473c60bd",displayName:"Minerva",hostname:"minerva.digital",mobile:{universal:"https://minerva.digital"}},kryptogo:{id:"19418ecfd44963883e4d6abca1adeb2036f3b5ffb9bee0ec61f267a9641f878b",displayName:"KryptoGO",hostname:"kryptogo.com",mobile:{universal:"https://kryptogo.page.link"}},prema:{id:"5b8e33346dfb2a532748c247876db8d596734da8977905a27b947ba1e2cf465b",displayName:"PREMA",hostname:"premanft.com",mobile:{universal:"https://premanft.com"}},slingshot:{id:"d23de318f0f56038c5edb730a083216ff0cce00c1514e619ab32231cc9ec484b",displayName:"Slingshot",hostname:"slingshot.finance",mobile:{universal:"https://app.slingshot.finance"}},kriptonio:{id:"50df7da345f84e5a79aaf617df5167335a4b6751626df2e8a38f07029b3dde7b",displayName:"Kriptonio",hostname:"kriptonio.com",mobile:{universal:"https://app.kriptonio.com/mobile"}},timeless:{id:"9751385960bca290c13b443155288f892f62ee920337eda8c5a8874135daaea8",displayName:"Timeless",hostname:"timelesswallet.xyz",mobile:{universal:"https://timelesswallet.xyz"}},secux:{id:"6464873279d46030c0b6b005b33da6be5ed57a752be3ef1f857dc10eaf8028aa",displayName:"SecuX",hostname:"secuxtech.com",mobile:{universal:"https://wsweb.secuxtech.com"}},bitizen:{id:"41f20106359ff63cf732adf1f7dc1a157176c9b02fd266b50da6dcc1e9b86071",displayName:"Bitizen",hostname:"bitizen.org",mobile:{universal:"https://bitizen.org/wallet"}},blocto:{id:"14e7176536cb3706e221daaa3cfd7b88b7da8c7dfb64d1d241044164802c6bdd",displayName:"Blocto",hostname:"blocto.io",mobile:{universal:"https://blocto.app"}},safemoon:{id:"a0e04f1086aac204d4ebdd5f985c12ed226cd0006323fd8143715f9324da58d1",displayName:"SafeMoon",hostname:"safemoon.com",mobile:{universal:"https://safemoon.com/wc"}}};function Nf(e){return{name:e.displayName||"",universalLink:e.mobile.universal,deepLink:e.mobile.native}}var _c=e=>e in ur,kc=e=>{let t=ur[e].mobile;if("native"in t)return t.native};function Ac(e,t){let o=Nf(t);if(o.deepLink)return Lc(o.deepLink,e);if(o.universalLink)return Nc(o.universalLink,e);throw new C(`Unsupported wallet ${t.id}`)}var Rc="WALLETCONNECT_DEEPLINK_CHOICE";function Ic(){try{localStorage.removeItem(Rc)}catch{}}function Wc({href:e,name:t}){try{localStorage.setItem(Rc,JSON.stringify({href:e,name:t}))}catch{}}function Mc(e){return e.startsWith("http://")||e.startsWith("https://")}function Lc(e,t){if(Mc(e))return Nc(e,t);let o=e;o.includes("://")||(o=e.replaceAll("/","").replaceAll(":",""),o=`${o}://`),o.endsWith("/")||(o=`${o}/`);let r=encodeURIComponent(t);return{redirect:`${o}wc?uri=${r}`,href:o}}function Nc(e,t){if(!Mc(e))return Lc(e,t);let o=e;o.endsWith("/")||(o=`${o}/`);let r=encodeURIComponent(t);return{redirect:`${o}wc?uri=${r}`,href:o}}function Oc(e,t){window.open(e,t,"noreferrer noopener")}var St=class extends Fe{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 oe(void 0,this.rpcTimeoutDuration),a&&(this.walletEntry=ur[a],this.walletClientType=a),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=fi(this.walletProvider.session?.peer.metadata.url);this.walletEntry=s?.entry,this.walletClientType=s?.walletClientType||"unknown"}this.connected=!0,this.syncAccounts().then(()=>{this.emit("initialized"),this.initialized=!0})}else this.emit("initialized"),this.initialized=!0}),import("@walletconnect/modal").then(({WalletConnectModal:l})=>{this.modal=new l({projectId:this.walletConnectCloudProjectId,themeVariables:{"--wcm-z-index":"1000000"}}),this.modal.subscribeModal(s=>{!s.open&&!this.walletProvider.session&&this.onQrModalClosed&&this.onQrModalClosed()})})}async connect(o){return o.showPrompt&&await this.promptConnection(),this.getConnectedWallet()}async isConnected(){return this.walletProvider.connected}get walletBranding(){return this.walletClientType==="metamask"?{name:"Metamask",icon:mi}:{name:Ya(this.walletProvider.session?.peer.metadata.name||"")||"WalletConnect",icon:this.walletProvider.session?.peer.metadata.icons?.[0]||Xr}}resetConnection(o){this.walletProvider&&this.walletProvider.connected&&(this.walletProvider.signer.session=void 0,this.walletEntry=ur[o],this.walletClientType=o,this.redirectUri=void 0,Ic(),this.onDisconnect())}async promptConnection(){if(this.provider)return new Promise((o,r)=>{let n=()=>{r(new sr)};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 z("Unable to retrieve address");if(this.walletProvider.session?.peer.metadata.url){let s=fi(this.walletProvider.session?.peer.metadata.url);this.walletEntry=s?.entry,this.walletClientType=s?.walletClientType||"unknown",this.proxyProvider.rpcTimeoutDuration=lr(this.rpcConfig,this.walletClientType)}this.connected=!0,await this.syncAccounts(l),o()})().catch(a=>{if(a){r(Ke(a));return}r(new z("Unknown error during connection"))}).finally(()=>this.modal?.closeModal())})}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=ht(n.id,this.chains,this.rpcConfig);i&&(o[n.id]=i)}let r=await Of.init({projectId:this.walletConnectCloudProjectId,chains:[this.defaultChain.id],optionalChains:this.chains.map(n=>n.id),optionalEvents:Df,optionalMethods:Uf,rpcMap:o,showQrModal:!1});return r.on("display_uri",n=>{if(r.signer.abortPairingAttempt(),Ff&&this.walletEntry){let{redirect:i,href:a}=Ac(n,this.walletEntry);Wc({href:a,name:this.walletEntry.displayName}),this.redirectUri=i,Oc(i,"_self")}else this.modal?.openModal({uri:n,chains:[this.defaultChain.id]})}),r.on("connect",()=>{if(this.modal?.closeModal(),r.session?.peer.metadata.url){let n=fi(r.session?.peer.metadata.url);this.walletEntry=n?.entry,this.walletClientType=n?.walletClientType||"unknown"}}),r}async enableProvider(){return this.walletProvider.connected?Promise.resolve(this.walletProvider.accounts):await this.walletProvider.enable()}};var Ja=e=>{let t=localStorage.getItem("-walletlink:https://www.walletlink.org:Addresses");return t?!!e?.linkedAccounts.filter(r=>r.type=="wallet"&&r.address===Dc(t)).length:!1},lr=(e,t)=>e.rpcTimeouts?e.rpcTimeouts[t]||Zr:Zr,en=class extends Bf{constructor(o,r,n,i,a){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 oe:r.proxyProvider};this.walletConnectCloudProjectId=o,this.rpcConfig=r,this.chains=n,this.defaultChain=i,this.walletConnectors=[],this.initialized=!1,this.store=a,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||(Y.get(za)&&(Y.getKeys().forEach(o=>{o.startsWith("walletconnect")&&Y.del(o)}),Y.del(za)),uc(this.store).then(o=>o.forEach(({type:r,eip6963InjectedProvider:n,legacyInjectedProvider:i})=>{this.createWalletConnector("injected",r,{eip6963InjectedProvider:n,legacyInjectedProvider:i})})),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){let i=this.findWalletConnector("embedded","privy");if(i)i.proxyProvider.walletProxy=o;else{let a=new ni(o,r,this.rpcConfig,this.chains,n.id),l=new ci(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,n){let i=this.findWalletConnector(o,r);if(i)return i instanceof St&&i.resetConnection(r),i;let l=(()=>{if(o==="injected"){if(r==="metamask"&&n?.eip6963InjectedProvider)return new pi(this.chains,this.defaultChain,this.rpcConfig,n?.eip6963InjectedProvider,"metamask");if(r==="phantom"&&Et())return new ui(this.chains,this.defaultChain,this.rpcConfig);if(n?.legacyInjectedProvider&&r==="unknown_browser_extension")return new di(this.chains,this.defaultChain,this.rpcConfig,n?.legacyInjectedProvider);if(n?.eip6963InjectedProvider)return new dr(this.chains,this.defaultChain,this.rpcConfig,n?.eip6963InjectedProvider,r)}else return o==="coinbase_wallet"?new si(this.chains,this.defaultChain,this.rpcConfig):new St(this.walletConnectCloudProjectId,this.rpcConfig,this.chains,this.defaultChain,r)})();return l&&this.addWalletConnector(l),l||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=Y.get(Va);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}));Y.put(Va,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=Dc(o),this.emit("walletsUpdated")}};function ii(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 Hf}from"ofetch";var Gf=[Jn(),Qn(),Zn()],zf=e=>{let t=new AbortController;return setTimeout(()=>t.abort(),e),t.signal},hi=class{constructor(t,o,r){this.appId=t,this.clientAnalyticsId=o.clientAnalyticsId,this.sdkVersion=Ba,this.client=o,this.defaults=r,this.fallbackApiUrl=o.fallbackApiUrl,this.baseFetch=Hf.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=!Gf.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=zf(this.defaults.timeout))},onRequestError:({error:n})=>{if(n instanceof DOMException&&n.name==="AbortError")throw new Kn}})}async get(t,o){try{return await this.baseFetch(t,o)}catch(r){throw te(r)}}async post(t,o,r){try{return await this.baseFetch(t,{method:"POST",...o?{body:o}:{},...r})}catch(n){throw te(n)}}async delete(t,o){try{return await this.baseFetch(t,{method:"DELETE",...o})}catch(r){throw te(r)}}};import tn from"js-cookie";function Uc(e){return e instanceof Uo?"email":e instanceof Bo?"sms":e instanceof Fo?"siwe":e instanceof or?"custom_auth":e instanceof no?e.meta.provider:null}import*as Fc from"jose";var _t=class{static parse(t){try{return new _t(t)}catch{return null}}constructor(t){this.value=t,this._decoded=Fc.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 Vf=30,yi=class{constructor(){this.authenticateOnce=new nt(async t=>this._authenticate(t)),this.linkOnce=new nt(async t=>this._link(t)),this.refreshOnce=new nt(this._refresh.bind(this)),this.destroyOnce=new nt(this._destroy.bind(this)),this.forkSessionOnce=new nt(this._forkSession.bind(this))}get token(){try{let t=Y.get(rr);return typeof t=="string"?new _t(t).value:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get refreshToken(){try{let t=Y.get(ti);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get forkedToken(){try{let t=Y.get(Yr);return typeof t=="string"?t:null}catch(t){return console.error(t),this.destroyLocalState(),null}}get mightHaveServerCookies(){try{let t=tn.get(Ql);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=_t.parse(this.token);return t!==null&&!t.isExpired(Vf)}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=Uc(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:ft(n),isNewUser:i}}catch(o){throw console.warn("Error authenticating session"),$e(o)}}async _link(t){try{let o=await t.link();return ft(o)}catch(o){throw console.warn("Error linking account"),$e(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(Jn(),a,{headers:i}),r&&this.clearForkedToken()}else if(r)n=await this.api.post(Qn(),{refresh_token:r}),this.clearForkedToken();else return null;return this.storeToken(n.token),this.storeRefreshToken(n.refresh_token),ft(n.user)}catch(n){if(n instanceof tr&&n.privyErrorCode==="missing_or_invalid_token")return console.warn("Unable to refresh tokens - token is missing or no longer valid"),this.destroyLocalState(),null;throw $e(n)}}async _destroy(){try{await this.api?.post(Zn(),{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(Tl(),{refresh_token:t});return this.storeToken(o.token),this.storeRefreshToken(o.refresh_token),o.new_session_refresh_token}catch(o){throw $e(o)}}destroyLocalState(){this.storeToken(null),this.storeRefreshToken(null),this.clearForkedToken()}storeToken(t){if(typeof t=="string"){if(Y.put(rr,t),!this.client?.useServerCookies){let o=_t.parse(t)?.expiration;tn.set(Ha,t,{sameSite:"Strict",secure:!0,expires:o?new Date(o*1e3):void 0})}}else Y.del(rr),tn.remove(Ha)}storeRefreshToken(t){typeof t=="string"?(Y.put(ti,t),this.client?.useServerCookies||tn.set(Ga,t,{sameSite:"Strict",secure:!0,expires:30})):(Y.del(ti),tn.remove(Ga))}clearForkedToken(){Y.del(Yr)}};var Za,gi,Bc,on=class{constructor(t){Pl(this,gi);this.apiUrl=t.apiUrl||ei,this.fallbackApiUrl=this.apiUrl,this.useServerCookies=!1,this.timeout=t.timeout||Jl,this.appId=t.appId,this.clientAnalyticsId=xl(this,gi,Bc).call(this),Za||(Za=new yi),this.session=Za,this.api=this.generateApi(),this.session.client=this}initializeConnectorManager(t,o,r,n,i){this.connectors||(this.connectors=new en(t,o,r,n,i))}generateApi(){let t=new hi(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}startMfaFlow(t){t.api=this.api,this.mfaFlow=t}async unlinkEmail(t){try{let o=await this.api.post(Fl(),{address:t});return ft(o)}catch(o){throw $e(o)}}async unlinkPhone(t){try{let o=await this.api.post(Bl(),{phoneNumber:t});return ft(o)}catch(o){throw $e(o)}}async unlinkWallet(t){try{let o=await this.api.post(Ul(),{address:t});return ft(o)}catch(o){throw $e(o)}}async unlinkOAuth(t,o){try{let r=await this.api.post(Hl(),{provider:t,subject:o});return ft(r)}catch(r){throw $e(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(Gl(),{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(zl(),t)}catch(o){throw $e(o)}}async getAuthenticatedUser(){return this.session.hasRefreshCredentials()||this.session.hasRecoveryCredentials()?this.session.refresh():null}async getAccessToken(t){return this.session.hasActiveToken()?_t.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,captchaSiteKey:t.captcha_site_key,twitterOAuthOnMobileEnabled:t.twitter_oauth_on_mobile_enabled,createdAt:new Date(t.created_at*1e3),updatedAt:new Date(t.updated_at*1e3),mfaMethods:t.mfa_methods}}catch(t){throw $e(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()}};gi=new WeakSet,Bc=function(){if(typeof window>"u")return null;try{let o=Y.get(Jr);if(typeof o=="string"&&o.length>0)return o}catch{}let t=$f();try{return Y.put(Jr,t),t}catch{return t}};import"wicg-inert";import{useRef as X0,useState as e2}from"react";import{useEffect as t2}from"react";import o2 from"react-dom";import{createContext as qf,useContext as jf}from"react";var Ie=qf({ready:!1,authenticated:!1,user:null,walletConnectors:null,connectWallet:b,login:b,linkEmail:b,linkPhone:b,linkWallet:b,linkGoogle:b,linkTwitter:b,linkDiscord:b,linkGithub:b,linkTiktok:b,linkLinkedIn:b,linkApple:b,logout:b,getAccessToken:b,getEthereumProvider:b,getEthersProvider:b,getWeb3jsProvider:b,unlinkEmail:b,unlinkPhone:b,unlinkWallet:b,unlinkGoogle:b,unlinkTwitter:b,unlinkDiscord:b,unlinkGithub:b,unlinkTiktok:b,unlinkLinkedIn:b,unlinkApple:b,setActiveWallet:b,forkSession:b,createWallet:b,signMessage:b,enrollInMfa:b,initEnrollmentWithSms:b,initEnrollmentWithTotp:b,init:b,submitEnrollmentWithSms:b,submitEnrollmentWithTotp:b,unenroll:b,submit:b,cancel:b,sendTransaction:b,exportWallet:b,setWalletPassword:b,initLoginWithEmail:b,loginWithCode:b}),G=()=>jf(Ie);import{useEffect as Kf,useState as Yf}from"react";var Hc=e=>{let[t,o]=Yf("auto");return Kf(()=>{let r=new ResizeObserver(n=>{o(n[0]?.contentRect.height??"auto")});return e.current&&r.observe(e.current),()=>{e.current&&r.unobserve(e.current)}},[e.current]),t};import is from"styled-components";import Go,{css as ts}from"styled-components";import Xa from"styled-components";import{Fragment as Zf,jsx as Qa,jsxs as Qf}from"react/jsx-runtime";var vi=({success:e,fail:t})=>Qf(Zf,{children:[Qa(it,{className:e?"success":t?"fail":""}),Qa(es,{className:e?"success":t?"fail":""})]}),it=Xa.span`
|
|
13
13
|
&& {
|
|
14
14
|
width: 82px;
|
|
15
15
|
height: 82px;
|
|
@@ -42,13 +42,13 @@ Resources:
|
|
|
42
42
|
border-color: var(--privy-color-error);
|
|
43
43
|
border-bottom-color: var(--privy-color-error);
|
|
44
44
|
}
|
|
45
|
-
`,
|
|
45
|
+
`,es=Xa(it)`
|
|
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
|
+
`,rn=e=>Qa(Jf,{color:e.color||"var(--privy-color-foreground-3)"}),Jf=Xa(it)`
|
|
52
52
|
&& {
|
|
53
53
|
height: 0.9rem;
|
|
54
54
|
width: 0.9rem;
|
|
@@ -57,7 +57,7 @@ Resources:
|
|
|
57
57
|
/* Override default Loader to match button transitions */
|
|
58
58
|
transition: border-color 200ms ease;
|
|
59
59
|
}
|
|
60
|
-
`;import{jsx as
|
|
60
|
+
`;import{jsx as at,jsxs as Pi}from"react/jsx-runtime";var wi=Go.button`
|
|
61
61
|
display: flex;
|
|
62
62
|
flex-direction: row;
|
|
63
63
|
align-items: center;
|
|
@@ -85,13 +85,13 @@ Resources:
|
|
|
85
85
|
color: var(--privy-color-foreground-3);
|
|
86
86
|
cursor: not-allowed;
|
|
87
87
|
}
|
|
88
|
-
`,
|
|
89
|
-
${e=>e.hideAnimations&&
|
|
88
|
+
`,L=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>at(Gc,{disabled:t||o,...n,children:t?Pi("span",{children:[at(rn,{}),r?at("span",{children:r}):null]}):e}),RE=Go(L)`
|
|
89
|
+
${e=>e.hideAnimations&&ts`
|
|
90
90
|
&& {
|
|
91
91
|
transition: none;
|
|
92
92
|
}
|
|
93
93
|
`}
|
|
94
|
-
`,Ci=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>
|
|
94
|
+
`,Ci=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>at(Gc,{as:"a",disabled:t||o,...n,children:t?Pi("span",{children:[at(rn,{}),r?at("span",{children:r}):null]}):e}),Gc=Go(wi)`
|
|
95
95
|
position: relative;
|
|
96
96
|
|
|
97
97
|
&& {
|
|
@@ -117,7 +117,7 @@ Resources:
|
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
/* If an anchor tag, :disabled isn't a thing, so manually set state */
|
|
120
|
-
${e=>e.disabled?
|
|
120
|
+
${e=>e.disabled?ts`
|
|
121
121
|
&&&,
|
|
122
122
|
&&&:hover,
|
|
123
123
|
&&&:active {
|
|
@@ -136,7 +136,7 @@ Resources:
|
|
|
136
136
|
opacity: 1;
|
|
137
137
|
animation: fadein 200ms ease;
|
|
138
138
|
}
|
|
139
|
-
`,
|
|
139
|
+
`,zt=({children:e,loading:t,disabled:o,loadingText:r="Loading...",...n})=>at(Xf,{disabled:t||o,...n,children:t?Pi("span",{children:[at(rn,{}),r?at("span",{children:r}):null]}):e}),Xf=Go(wi)`
|
|
140
140
|
&& {
|
|
141
141
|
border-width: 1px;
|
|
142
142
|
border-color: ${e=>e.warn?"var(--privy-color-error)":"var(--privy-color-foreground-4)"};
|
|
@@ -165,7 +165,7 @@ Resources:
|
|
|
165
165
|
opacity: 1;
|
|
166
166
|
animation: fadein 200ms ease;
|
|
167
167
|
}
|
|
168
|
-
`,bi=
|
|
168
|
+
`,bi=Go.button`
|
|
169
169
|
&& {
|
|
170
170
|
padding: 12px 16px;
|
|
171
171
|
font-weight: 500;
|
|
@@ -178,7 +178,7 @@ Resources:
|
|
|
178
178
|
transition: opacity 200ms ease, background-color 200ms ease, color 200ms ease;
|
|
179
179
|
user-select: none;
|
|
180
180
|
|
|
181
|
-
${e=>e.invisible&&
|
|
181
|
+
${e=>e.invisible&&ts`
|
|
182
182
|
pointer-events: none;
|
|
183
183
|
`}
|
|
184
184
|
|
|
@@ -196,10 +196,10 @@ Resources:
|
|
|
196
196
|
cursor: not-allowed;
|
|
197
197
|
}
|
|
198
198
|
}
|
|
199
|
-
`,
|
|
199
|
+
`,IE=Go.div`
|
|
200
200
|
/* Set to match height of SoftCtaButton to avoid reflow if conditionally rendered */
|
|
201
201
|
height: 44px;
|
|
202
|
-
`,Ei=({children:e,onClick:t,disabled:o,isSubmitting:r,...n})=>Pi(eh,{isSubmitting:r,onClick:t,disabled:o,...n,children:[
|
|
202
|
+
`,Ei=({children:e,onClick:t,disabled:o,isSubmitting:r,...n})=>Pi(eh,{isSubmitting:r,onClick:t,disabled:o,...n,children:[at("span",{children:e}),at("span",{children:at(rn,{})})]}),eh=Go.button`
|
|
203
203
|
&& {
|
|
204
204
|
color: var(--privy-color-accent);
|
|
205
205
|
font-size: 16px;
|
|
@@ -241,7 +241,7 @@ Resources:
|
|
|
241
241
|
cursor: not-allowed;
|
|
242
242
|
}
|
|
243
243
|
}
|
|
244
|
-
`;import th from"styled-components";var
|
|
244
|
+
`;import th from"styled-components";var zc=th.span`
|
|
245
245
|
&& {
|
|
246
246
|
width: 82px;
|
|
247
247
|
height: 82px;
|
|
@@ -257,7 +257,7 @@ Resources:
|
|
|
257
257
|
border-color: var(--privy-color-accent);
|
|
258
258
|
border-bottom-color: var(--privy-color-accent);
|
|
259
259
|
}
|
|
260
|
-
`;import{ArrowLeftIcon as nh,XMarkIcon as ih}from"@heroicons/react/24/outline";import
|
|
260
|
+
`;import{ArrowLeftIcon as nh,XMarkIcon as ih}from"@heroicons/react/24/outline";import rs from"styled-components";import{createContext as oh,useContext as rh}from"react";var os=oh({isNewUserThisSession:!1,isLinking:!1,linkingHint:null,walletConnectionStatus:null,mipdStore:null,connectors:[],rpcConfig:{rpcUrls:{}},showFiatPrices:!0,chains:[],clientAnalyticsId:null,pendingTransaction:null,nativeTokenSymbolForChainId:b,initializeWalletProxy:b,getAuthMeta:b,getAuthFlow:b,closePrivyModal:b,connectWallet:b,initLoginWithWallet:b,loginWithWallet:b,loginWithCode:b,initLoginWithEmail:b,initLoginWithSms:b,resendEmailCode:b,resendSmsCode:b,initLoginWithOAuth:b,loginWithOAuth:b,refreshUser:b,walletProxy:null,createAnalyticsEvent:b,getUsdTokenPrice:b,recoverEmbeddedWallet:b,getFiatOnRampConfig:b,updateWallets:b,setReadyToTrue:b}),R=()=>rh(os);import{jsx as st,jsxs as dh}from"react/jsx-runtime";var Vc=()=>st("div",{}),ah=({backFn:e})=>st("div",{children:st($c,{onClick:e,children:st(nh,{height:"16px",width:"16px",strokeWidth:2})})}),sh=e=>st("div",{children:st($c,{onClick:e.onClose,children:st(ih,{height:"16px",width:"16px",strokeWidth:2})})});var P=({backFn:e,onClose:t,title:o,closeable:r=!0})=>{let{closePrivyModal:n}=R(),{app:i}=T();return dh(lh,{children:[e?st(ah,{backFn:e}):st(Vc,{}),o&&st(ch,{children:o}),i?.render.inDialog&&r?st(sh,{onClose:t||(()=>n())}):st(Vc,{})]})},$c=rs.button`
|
|
261
261
|
&& {
|
|
262
262
|
cursor: pointer;
|
|
263
263
|
display: flex;
|
|
@@ -276,7 +276,7 @@ Resources:
|
|
|
276
276
|
opacity: 1;
|
|
277
277
|
}
|
|
278
278
|
}
|
|
279
|
-
`,lh=
|
|
279
|
+
`,lh=rs.div`
|
|
280
280
|
padding: 16px 0;
|
|
281
281
|
display: flex;
|
|
282
282
|
align-items: center;
|
|
@@ -298,14 +298,14 @@ Resources:
|
|
|
298
298
|
display: flex;
|
|
299
299
|
justify-content: flex-end;
|
|
300
300
|
}
|
|
301
|
-
`,ch=
|
|
301
|
+
`,ch=rs.div`
|
|
302
302
|
overflow: hidden;
|
|
303
303
|
white-space: nowrap;
|
|
304
304
|
max-width: 100%;
|
|
305
305
|
text-overflow: ellipsis;
|
|
306
306
|
text-align: center;
|
|
307
307
|
color: var(--privy-color-foreground-2);
|
|
308
|
-
`;import{jsx as
|
|
308
|
+
`;import{jsx as qc}from"react/jsx-runtime";var jc=({style:e,...t})=>qc("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:qc("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 ns,jsx as kt,jsxs as xi}from"react/jsx-runtime";var Kc=()=>{let{navigate:e,app:t}=T(),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 xi(ns,{children:[kt(P,{}),xi(ph,{children:[kt(mh,{children:xi("div",{children:[kt(zc,{}),kt(jc,{style:{width:"38px",height:"38px",strokeWidth:"1",stroke:"var(--privy-color-accent)",fill:"var(--privy-color-accent)"}})]})}),xi(uh,{children:[typeof o=="string"?kt("h3",{children:o}):kt(ns,{children:o}),typeof r=="string"?kt("p",{children:r}):kt(ns,{children:r})]}),t?.allowlistConfig.errorCtaLink?kt(L,{as:"a",href:t.allowlistConfig.errorCtaLink,children:n}):kt(L,{onClick:()=>{e("LANDING")},children:n})]})]})},ph=is.div`
|
|
309
309
|
display: flex;
|
|
310
310
|
flex-direction: column;
|
|
311
311
|
align-items: center;
|
|
@@ -313,11 +313,11 @@ Resources:
|
|
|
313
313
|
gap: 24px;
|
|
314
314
|
width: 100%;
|
|
315
315
|
padding-bottom: 16px;
|
|
316
|
-
`,uh=
|
|
316
|
+
`,uh=is.div`
|
|
317
317
|
display: flex;
|
|
318
318
|
flex-direction: column;
|
|
319
319
|
gap: 8px;
|
|
320
|
-
`,mh=
|
|
320
|
+
`,mh=is.div`
|
|
321
321
|
display: flex;
|
|
322
322
|
flex-direction: column;
|
|
323
323
|
justify-content: center;
|
|
@@ -340,7 +340,7 @@ Resources:
|
|
|
340
340
|
left: -19px;
|
|
341
341
|
top: -19px;
|
|
342
342
|
}
|
|
343
|
-
`;import{EnvelopeIcon as vh,PhoneIcon as wh}from"@heroicons/react/24/outline";import{useEffect as
|
|
343
|
+
`;import{EnvelopeIcon as vh,PhoneIcon as wh}from"@heroicons/react/24/outline";import{useEffect as nd,useState as Si}from"react";import{isMobile as Ch}from"react-device-detect";import sn from"styled-components";import Je from"styled-components";var uo=Je.div`
|
|
344
344
|
display: flex;
|
|
345
345
|
flex-direction: column;
|
|
346
346
|
align-items: flex-start;
|
|
@@ -348,37 +348,37 @@ Resources:
|
|
|
348
348
|
margin-top: auto;
|
|
349
349
|
gap: 16px;
|
|
350
350
|
flex-grow: 100;
|
|
351
|
-
`,
|
|
351
|
+
`,Vt=Je.div`
|
|
352
352
|
display: flex;
|
|
353
353
|
flex-direction: column;
|
|
354
354
|
align-items: center;
|
|
355
355
|
justify-content: center;
|
|
356
356
|
flex-grow: 1;
|
|
357
357
|
width: 100%;
|
|
358
|
-
`,
|
|
358
|
+
`,Yc=Je.div`
|
|
359
359
|
display: flex;
|
|
360
360
|
flex-direction: column;
|
|
361
361
|
align-items: center;
|
|
362
362
|
width: 100%;
|
|
363
|
-
`,
|
|
363
|
+
`,Jc=Je(Vt)`
|
|
364
364
|
padding: 20px 0;
|
|
365
|
-
`,
|
|
365
|
+
`,yt=Je(Vt)`
|
|
366
366
|
gap: 16px;
|
|
367
|
-
`,
|
|
367
|
+
`,as=Je.div`
|
|
368
368
|
display: flex;
|
|
369
369
|
flex-direction: column;
|
|
370
370
|
width: 100%;
|
|
371
|
-
`,
|
|
371
|
+
`,mo=Je.div`
|
|
372
372
|
display: flex;
|
|
373
373
|
flex-direction: column;
|
|
374
374
|
gap: 8px;
|
|
375
375
|
min-height: 76px;
|
|
376
|
-
`,
|
|
376
|
+
`,r4=Je.div`
|
|
377
377
|
display: flex;
|
|
378
378
|
flex-direction: column;
|
|
379
379
|
justify-content: space-between;
|
|
380
380
|
height: 100%;
|
|
381
|
-
`,
|
|
381
|
+
`,Zc=Je.div`
|
|
382
382
|
display: flex;
|
|
383
383
|
flex-direction: column;
|
|
384
384
|
justify-content: flex-start;
|
|
@@ -401,13 +401,13 @@ Resources:
|
|
|
401
401
|
color: var(--privy-color-foreground-3);
|
|
402
402
|
font-size: 14px;
|
|
403
403
|
}
|
|
404
|
-
`,$=
|
|
404
|
+
`,$=Je.div`
|
|
405
405
|
height: 16px;
|
|
406
|
-
`,
|
|
406
|
+
`,q=Je.div`
|
|
407
407
|
height: 12px;
|
|
408
|
-
`,
|
|
408
|
+
`,Qc=Je.div`
|
|
409
409
|
position: relative;
|
|
410
|
-
`,
|
|
410
|
+
`,Xc=Je.div`
|
|
411
411
|
background-color: var(--privy-color-accent);
|
|
412
412
|
display: flex;
|
|
413
413
|
justify-content: center;
|
|
@@ -415,7 +415,7 @@ Resources:
|
|
|
415
415
|
border-radius: 50%;
|
|
416
416
|
border-color: white;
|
|
417
417
|
border-width: 2px !important;
|
|
418
|
-
`;import
|
|
418
|
+
`;import ed from"styled-components";import{Fragment as hh,jsx as mr,jsxs as td}from"react/jsx-runtime";var fh=ed.div`
|
|
419
419
|
margin-top: 16px;
|
|
420
420
|
font-size: 13px;
|
|
421
421
|
text-align: center;
|
|
@@ -424,7 +424,7 @@ Resources:
|
|
|
424
424
|
&& > a {
|
|
425
425
|
color: var(--privy-color-accent);
|
|
426
426
|
}
|
|
427
|
-
`;function Ti(e){let{legal:{privacyPolicyUrl:t,termsAndConditionsUrl:o}}=e.app,r=!!t,n=!!o,i=r&&n;return!r&&!n?null:
|
|
427
|
+
`;function Ti(e){let{legal:{privacyPolicyUrl:t,termsAndConditionsUrl:o}}=e.app,r=!!t,n=!!o,i=r&&n;return!r&&!n?null:td(fh,{children:["By logging in I agree to the"," ",n&&mr("a",{href:o,target:"_blank",children:i?"Terms":"Terms of Service"}),i&&" & ",r&&mr("a",{href:t,target:"_blank",children:"Privacy Policy"})]})}var B=({protectedByPrivy:e})=>mr(K,{children:e?td(hh,{children:[mr(li,{className:"hide-on-mobile"}),mr("span",{className:"hide-on-mobile",children:mr("a",{href:"https://www.privy.io/",target:"_blank",children:"Protected by Privy"})})]}):null}),K=ed.div`
|
|
428
428
|
display: flex;
|
|
429
429
|
align-items: center;
|
|
430
430
|
justify-content: center;
|
|
@@ -451,9 +451,9 @@ Resources:
|
|
|
451
451
|
@media all and (display-mode: standalone) {
|
|
452
452
|
padding-bottom: 30px;
|
|
453
453
|
}
|
|
454
|
-
`;import
|
|
454
|
+
`;import ss from"styled-components";import{Fragment as gh,jsx as nn,jsxs as rd}from"react/jsx-runtime";var an=({title:e,description:t,children:o,...r})=>nn(od,{...r,children:rd(gh,{children:[nn("h3",{children:e}),typeof t=="string"?nn("p",{children:t}):t,o]})}),fo=ss(an)`
|
|
455
455
|
margin-bottom: 24px;
|
|
456
|
-
`,we=({title:e,description:t,icon:o,children:r,...n})=>
|
|
456
|
+
`,we=({title:e,description:t,icon:o,children:r,...n})=>rd(yh,{...n,children:[o||null,nn("h3",{children:e}),typeof t=="string"?nn("p",{children:t}):t,r]}),od=ss.div`
|
|
457
457
|
display: flex;
|
|
458
458
|
flex-direction: column;
|
|
459
459
|
justify-content: flex-start;
|
|
@@ -473,7 +473,7 @@ Resources:
|
|
|
473
473
|
color: var(--privy-color-foreground-2);
|
|
474
474
|
font-size: 14px;
|
|
475
475
|
}
|
|
476
|
-
`,yh=
|
|
476
|
+
`,yh=ss(od)`
|
|
477
477
|
align-items: center;
|
|
478
478
|
text-align: center;
|
|
479
479
|
gap: 16px;
|
|
@@ -481,7 +481,7 @@ Resources:
|
|
|
481
481
|
h3 {
|
|
482
482
|
margin-bottom: 24px;
|
|
483
483
|
}
|
|
484
|
-
`;import{Fragment as
|
|
484
|
+
`;import{Fragment as ls,jsx as Se,jsxs as ho}from"react/jsx-runtime";var cs=6,id=new Array(cs).fill(""),bh=1400;var sd=()=>{let{app:e,navigate:t,setModalData:o}=T(),{closePrivyModal:r,resendEmailCode:n,resendSmsCode:i,getAuthMeta:a,loginWithCode:l,updateWallets:s}=R(),{authenticated:c,user:u}=G(),[h,w]=Si(id),[m,v]=Si(!1),[y,x]=Si(null),[E,I]=Si(null),M=a()?.email?0:1,k=e?.render.inDialog?je:0,A=e?.render.inDialog?k-500:0;nd(()=>{if(c&&m&&u)if(ao(u,e?.embeddedWallets?.createOnLogin)){let _=setTimeout(()=>{o({createWallet:{onSuccess:()=>{},onFailure:ee=>console.error(ee),callAuthOnSuccessOnClose:!0}}),t("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},A);return()=>clearTimeout(_)}else{s();let _=setTimeout(r,k);return()=>clearTimeout(_)}},[c,m,u]),nd(()=>{if(y&&E===0){let D=setTimeout(()=>{w(id),x(null),document.querySelector("input[name=code-0]")?.focus()},bh);return()=>clearTimeout(D)}},[y]);let W=D=>{D.preventDefault();let _=D.currentTarget.value.replace(" ","");if(_==="")return;if(isNaN(Number(_))){x("Code should be numeric"),I(1);return}x(null),I(null);let ee=Number(D.currentTarget.name?.charAt(5)),ue=[..._||[""]].slice(0,cs-ee),Ge=[...h.slice(0,ee),...ue,...h.slice(ee+ue.length)];w(Ge);let F=ue.length,xe=Math.min(Math.max(ee+F,0),cs-1);isNaN(Number(D.currentTarget.value))||document.querySelector(`input[name=code-${xe}]`)?.focus(),Ge.every(mt=>mt&&!isNaN(+mt))&&(document.querySelector(`input[name=code-${xe}]`)?.blur(),l(Ge.join("")).then(()=>v(!0)).catch(fe=>{fe?.status===422?x("Invalid or expired verification code"):x("Issue verifying code"),I(0)}))},N=D=>{E===1&&(x(null),I(null));let _=[...h.slice(0,D),"",...h.slice(D+1)];w(_),D>0&&document.querySelector(`input[name=code-${D-1}]`)?.focus()},O=M==0?Se(vh,{color:"var(--privy-color-accent)",strokeWidth:2,height:"48px",width:"48px"}):Se(wh,{color:"var(--privy-color-accent)",strokeWidth:2,height:"40px",width:"40px"}),H=M==0?ho("p",{children:["Please check ",Se(ad,{children:a()?.email})," for an email from privy.io and enter your code below."]}):ho("p",{children:["Please check ",Se(ad,{children:a()?.phoneNumber})," for a message from ",e?.name||"Privy"," and enter your code below."]});return ho(ls,{children:[Se(P,{},"header"),ho(Eh,{children:[Se(we,{title:"Enter confirmation code",description:H,icon:O}),ho(Yc,{children:[ho(Ph,{children:[Se(xh,{fail:!!y,success:m,children:Se("span",{children:y||(m?"Success!":"")})}),Se("div",{children:h.map((D,_)=>Se("input",{name:`code-${_}`,type:"text",value:h[_],onChange:W,onKeyUp:ee=>{ee.key==="Backspace"&&N(_)},inputMode:"numeric",autoFocus:_===0,pattern:"[0-9]",className:`${m?"success":""} ${y?"fail":""}`,autoComplete:Ch?"one-time-code":"off"},_))})]}),Se(Th,{children:M==0?ho(ls,{children:[Se("span",{children:"Didn't get an email?"}),Se("button",{onClick:n,children:"Resend Code"})]}):ho(ls,{children:[Se("span",{children:"Didn't get a message?"}),Se("button",{onClick:i,children:"Resend Code"})]})})]})]}),Se(B,{protectedByPrivy:!0})]})},Eh=sn.div`
|
|
485
485
|
display: flex;
|
|
486
486
|
flex-direction: column;
|
|
487
487
|
align-items: flex-start;
|
|
@@ -489,7 +489,7 @@ Resources:
|
|
|
489
489
|
margin: auto;
|
|
490
490
|
gap: 16px;
|
|
491
491
|
flex-grow: 1;
|
|
492
|
-
`,Ph=
|
|
492
|
+
`,Ph=sn.div`
|
|
493
493
|
display: flex;
|
|
494
494
|
flex-direction: column;
|
|
495
495
|
width: 100%;
|
|
@@ -545,7 +545,7 @@ Resources:
|
|
|
545
545
|
transform: translate(1px, 0px);
|
|
546
546
|
}
|
|
547
547
|
}
|
|
548
|
-
`,xh=
|
|
548
|
+
`,xh=sn.div`
|
|
549
549
|
line-height: 20px;
|
|
550
550
|
height: 20px;
|
|
551
551
|
font-size: 13px;
|
|
@@ -553,7 +553,7 @@ Resources:
|
|
|
553
553
|
display: flex;
|
|
554
554
|
justify-content: flex-end;
|
|
555
555
|
width: 100%;
|
|
556
|
-
`,Th=
|
|
556
|
+
`,Th=sn.div`
|
|
557
557
|
font-size: 13px;
|
|
558
558
|
color: var(--privy-color-foreground-3);
|
|
559
559
|
display: flex;
|
|
@@ -567,18 +567,18 @@ Resources:
|
|
|
567
567
|
> button {
|
|
568
568
|
text-decoration: underline;
|
|
569
569
|
}
|
|
570
|
-
`,
|
|
570
|
+
`,ad=sn.span`
|
|
571
571
|
font-weight: 500;
|
|
572
572
|
word-break: break-all;
|
|
573
|
-
`;import Sh from"@heroicons/react/24/outline/WalletIcon";import{isMobile as _h}from"react-device-detect";import kh from"styled-components";import{jsx as
|
|
573
|
+
`;import Sh from"@heroicons/react/24/outline/WalletIcon";import{isMobile as _h}from"react-device-detect";import kh from"styled-components";import{jsx as gt,jsxs as ld}from"react/jsx-runtime";var cd=({...e})=>ld("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 436.49 511.97",height:"24",width:"24",...e,children:[gt("defs",{children:ld("linearGradient",{id:"brave-linear-gradient",x1:"-18.79",y1:"359.73",x2:"194.32",y2:"359.73",gradientTransform:"matrix(2.05, 0, 0, -2.05, 38.49, 992.77)",gradientUnits:"userSpaceOnUse",children:[gt("stop",{offset:"0","stop-color":"#f1562b"}),gt("stop",{offset:"0.3","stop-color":"#f1542b"}),gt("stop",{offset:"0.41","stop-color":"#f04d2a"}),gt("stop",{offset:"0.49","stop-color":"#ef4229"}),gt("stop",{offset:"0.5","stop-color":"#ef4029"}),gt("stop",{offset:"0.56","stop-color":"#e83e28"}),gt("stop",{offset:"0.67","stop-color":"#e13c26"}),gt("stop",{offset:"1","stop-color":"#df3c26"})]})}),gt("path",{style:{fill:"url(#brave-linear-gradient)"},d:"M436.49,165.63,420.7,122.75l11-24.6A8.47,8.47,0,0,0,430,88.78L400.11,58.6a48.16,48.16,0,0,0-50.23-11.66l-8.19,2.89L296.09.43,218.25,0,140.4.61,94.85,50.41l-8.11-2.87A48.33,48.33,0,0,0,36.19,59.3L5.62,90.05a6.73,6.73,0,0,0-1.36,7.47l11.47,25.56L0,165.92,56.47,380.64a89.7,89.7,0,0,0,34.7,50.23l111.68,75.69a24.73,24.73,0,0,0,30.89,0l111.62-75.8A88.86,88.86,0,0,0,380,380.53l46.07-176.14Z"}),gt("path",{style:{fill:"#fff"},d:"M231,317.33a65.61,65.61,0,0,0-9.11-3.3h-5.49a66.08,66.08,0,0,0-9.11,3.3l-13.81,5.74-15.6,7.18-25.4,13.24a4.84,4.84,0,0,0-.62,9l22.06,15.49q7,5,13.55,10.76l6.21,5.35,13,11.37,5.89,5.2a10.15,10.15,0,0,0,12.95,0l25.39-22.18,13.6-10.77,22.06-15.79a4.8,4.8,0,0,0-.68-8.93l-25.36-12.8L244.84,323ZM387.4,175.2l.8-2.3a61.26,61.26,0,0,0-.57-9.18,73.51,73.51,0,0,0-8.19-15.44l-14.35-21.06-10.22-13.88-19.23-24a69.65,69.65,0,0,0-5.7-6.67h-.4L321,84.25l-42.27,8.14a33.49,33.49,0,0,1-12.59-1.84l-23.21-7.5-16.61-4.59a70.52,70.52,0,0,0-14.67,0L195,83.1l-23.21,7.54a33.89,33.89,0,0,1-12.59,1.84l-42.22-8-8.54-1.58h-.4a65.79,65.79,0,0,0-5.7,6.67l-19.2,24Q77.81,120.32,73,127.45L58.61,148.51l-6.78,11.31a51,51,0,0,0-1.94,13.35l.8,2.3A34.51,34.51,0,0,0,52,179.81l11.33,13,50.23,53.39a14.31,14.31,0,0,1,2.55,14.34L107.68,280a25.23,25.23,0,0,0-.39,16l1.64,4.52a43.58,43.58,0,0,0,13.39,18.76l7.89,6.43a15,15,0,0,0,14.35,1.72L172.62,314A70.38,70.38,0,0,0,187,304.52l22.46-20.27a9,9,0,0,0,3-6.36,9.08,9.08,0,0,0-2.5-6.56L159.2,237.18a9.83,9.83,0,0,1-3.09-12.45l19.66-36.95a19.21,19.21,0,0,0,1-14.67A22.37,22.37,0,0,0,165.58,163L103.94,139.8c-4.44-1.6-4.2-3.6.51-3.88l36.2-3.59a55.9,55.9,0,0,1,16.9,1.5l31.5,8.8a9.64,9.64,0,0,1,6.74,10.76L183.42,221a34.72,34.72,0,0,0-.61,11.41c.5,1.61,4.73,3.6,9.36,4.73l19.19,4a46.38,46.38,0,0,0,16.86,0l17.26-4c4.64-1,8.82-3.23,9.35-4.85a34.94,34.94,0,0,0-.63-11.4l-12.45-67.59a9.66,9.66,0,0,1,6.74-10.76l31.5-8.83a55.87,55.87,0,0,1,16.9-1.5l36.2,3.37c4.74.44,5,2.2.54,3.88L272,162.79a22.08,22.08,0,0,0-11.16,10.12,19.3,19.3,0,0,0,1,14.67l19.69,36.95A9.84,9.84,0,0,1,278.45,237l-50.66,34.23a9,9,0,0,0,.32,12.78l.15.14,22.49,20.27a71.46,71.46,0,0,0,14.35,9.47l28.06,13.35a14.89,14.89,0,0,0,14.34-1.76l7.9-6.45a43.53,43.53,0,0,0,13.38-18.8l1.65-4.52a25.27,25.27,0,0,0-.39-16l-8.26-19.49a14.4,14.4,0,0,1,2.55-14.35l50.23-53.45,11.3-13a35.8,35.8,0,0,0,1.54-4.24Z"})]});import{jsx as V,jsxs as Ze}from"react/jsx-runtime";var dd=({style:e,...t})=>Ze("svg",{width:"120",height:"120",viewBox:"0 0 120 120",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:24,width:24,...e},...t,children:[V("g",{clipPath:"url(#clip0_5_32)",children:Ze("g",{clipPath:"url(#clip1_5_32)",children:[V("mask",{id:"mask0_5_32",style:{maskType:"alpha"},maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"120",height:"120",children:V("path",{d:"M78.163 0H41.837C29.79 0 23.767 0 17.283 2.04999C10.203 4.62701 4.627 10.203 2.05 17.283C0 23.767 0 29.791 0 41.837V78.163C0 90.21 0 96.232 2.05 102.717C4.627 109.797 10.203 115.373 17.283 117.949C23.767 120 29.79 120 41.837 120H78.163C90.21 120 96.232 120 102.717 117.949C109.797 115.373 115.373 109.797 117.95 102.717C120 96.232 120 90.21 120 78.163V41.837C120 29.791 120 23.767 117.95 17.283C115.373 10.203 109.797 4.62701 102.717 2.04999C96.232 0 90.21 0 78.163 0Z",fill:"black"})}),V("g",{mask:"url(#mask0_5_32)",children:V("rect",{width:"120",height:"120",fill:"url(#paint0_linear_5_32)"})}),V("path",{d:"M20 38H26C56.9279 38 82 63.0721 82 94V100H94C97.3137 100 100 97.3137 100 94C100 53.1309 66.8691 20 26 20C22.6863 20 20 22.6863 20 26V38Z",fill:"url(#paint1_radial_5_32)"}),V("path",{d:"M84 94H100C100 97.3137 97.3137 100 94 100H84V94Z",fill:"url(#paint2_linear_5_32)"}),V("path",{d:"M26 20L26 36H20L20 26C20 22.6863 22.6863 20 26 20Z",fill:"url(#paint3_linear_5_32)"}),V("path",{d:"M20 36H26C58.0325 36 84 61.9675 84 94V100H66V94C66 71.9086 48.0914 54 26 54H20V36Z",fill:"url(#paint4_radial_5_32)"}),V("path",{d:"M68 94H84V100H68V94Z",fill:"url(#paint5_linear_5_32)"}),V("path",{d:"M20 52L20 36L26 36L26 52H20Z",fill:"url(#paint6_linear_5_32)"}),V("path",{d:"M20 62C20 65.3137 22.6863 68 26 68C40.3594 68 52 79.6406 52 94C52 97.3137 54.6863 100 58 100H68V94C68 70.804 49.196 52 26 52H20V62Z",fill:"url(#paint7_radial_5_32)"}),V("path",{d:"M52 94H68V100H58C54.6863 100 52 97.3137 52 94Z",fill:"url(#paint8_radial_5_32)"}),V("path",{d:"M26 68C22.6863 68 20 65.3137 20 62L20 52L26 52L26 68Z",fill:"url(#paint9_radial_5_32)"})]})}),Ze("defs",{children:[Ze("linearGradient",{id:"paint0_linear_5_32",x1:"60",y1:"0",x2:"60",y2:"120",gradientUnits:"userSpaceOnUse",children:[V("stop",{stopColor:"#174299"}),V("stop",{offset:"1",stopColor:"#001E59"})]}),Ze("radialGradient",{id:"paint1_radial_5_32",cx:"0",cy:"0",r:"1",gradientUnits:"userSpaceOnUse",gradientTransform:"translate(26 94) rotate(-90) scale(74)",children:[V("stop",{offset:"0.770277",stopColor:"#FF4000"}),V("stop",{offset:"1",stopColor:"#8754C9"})]}),Ze("linearGradient",{id:"paint2_linear_5_32",x1:"83",y1:"97",x2:"100",y2:"97",gradientUnits:"userSpaceOnUse",children:[V("stop",{stopColor:"#FF4000"}),V("stop",{offset:"1",stopColor:"#8754C9"})]}),Ze("linearGradient",{id:"paint3_linear_5_32",x1:"23",y1:"20",x2:"23",y2:"37",gradientUnits:"userSpaceOnUse",children:[V("stop",{stopColor:"#8754C9"}),V("stop",{offset:"1",stopColor:"#FF4000"})]}),Ze("radialGradient",{id:"paint4_radial_5_32",cx:"0",cy:"0",r:"1",gradientUnits:"userSpaceOnUse",gradientTransform:"translate(26 94) rotate(-90) scale(58)",children:[V("stop",{offset:"0.723929",stopColor:"#FFF700"}),V("stop",{offset:"1",stopColor:"#FF9901"})]}),Ze("linearGradient",{id:"paint5_linear_5_32",x1:"68",y1:"97",x2:"84",y2:"97",gradientUnits:"userSpaceOnUse",children:[V("stop",{stopColor:"#FFF700"}),V("stop",{offset:"1",stopColor:"#FF9901"})]}),Ze("linearGradient",{id:"paint6_linear_5_32",x1:"23",y1:"52",x2:"23",y2:"36",gradientUnits:"userSpaceOnUse",children:[V("stop",{stopColor:"#FFF700"}),V("stop",{offset:"1",stopColor:"#FF9901"})]}),Ze("radialGradient",{id:"paint7_radial_5_32",cx:"0",cy:"0",r:"1",gradientUnits:"userSpaceOnUse",gradientTransform:"translate(26 94) rotate(-90) scale(42)",children:[V("stop",{offset:"0.59513",stopColor:"#00AAFF"}),V("stop",{offset:"1",stopColor:"#01DA40"})]}),Ze("radialGradient",{id:"paint8_radial_5_32",cx:"0",cy:"0",r:"1",gradientUnits:"userSpaceOnUse",gradientTransform:"translate(51 97) scale(17 45.3333)",children:[V("stop",{stopColor:"#00AAFF"}),V("stop",{offset:"1",stopColor:"#01DA40"})]}),Ze("radialGradient",{id:"paint9_radial_5_32",cx:"0",cy:"0",r:"1",gradientUnits:"userSpaceOnUse",gradientTransform:"translate(23 69) rotate(-90) scale(17 322.37)",children:[V("stop",{stopColor:"#00AAFF"}),V("stop",{offset:"1",stopColor:"#01DA40"})]}),V("clipPath",{id:"clip0_5_32",children:V("rect",{width:"120",height:"120",fill:"white"})}),V("clipPath",{id:"clip1_5_32",children:V("rect",{width:"120",height:"120",fill:"white"})})]})]});import{jsx as ln,jsxs as pd}from"react/jsx-runtime";var ud=({style:e,...t})=>pd("svg",{width:"176",height:"176",viewBox:"0 0 176 176",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:24,width:24,...e},...t,children:[pd("g",{clipPath:"url(#clip0_1704_1423)",children:[ln("path",{d:"M126.233 176H49.7672C22.287 176 0 153.723 0 126.233V49.7673C0 22.287 22.2769 0 49.7672 0H126.233C153.713 0 176 22.277 176 49.7673V126.233C176 153.723 153.713 176 126.233 176Z",fill:"#2461ED"}),ln("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M100.667 85.6591C83.4133 76.3353 62.4196 64.2443 46.6192 54.3891C41.9573 51.0306 44.3234 43.9023 49.9578 43.9023H128.138C132.499 43.9023 135.416 48.7648 133.231 52.4442C127.977 61.5174 120.308 73.0368 113.901 82.1702C110.462 87.0727 104.858 87.9149 100.667 85.6591ZM75.5031 88.6867C92.1858 97.5795 115.566 111.104 132.178 121.33C137.311 124.498 135.266 132.098 129.271 132.098C119.46 132.098 103.518 132.1 87.6592 132.103C71.9639 132.105 56.3497 132.108 46.8398 132.108C42.0476 132.108 39.5913 127.135 41.6265 123.666C48.5041 111.946 56.2338 100.116 62.6603 91.2834C65.5176 87.3433 71.3325 86.461 75.5031 88.6867Z",fill:"white"})]}),ln("defs",{children:ln("clipPath",{id:"clip0_1704_1423",children:ln("rect",{width:"176",height:"176",fill:"white"})})})]});import cn from"styled-components";var _i=cn.div`
|
|
574
574
|
text-align: left;
|
|
575
575
|
flex-grow: 1;
|
|
576
|
-
`,
|
|
576
|
+
`,md=cn.div`
|
|
577
577
|
display: flex;
|
|
578
578
|
flex-direction: column;
|
|
579
579
|
justify-content: flex-end;
|
|
580
580
|
flex-grow: 1;
|
|
581
|
-
`,
|
|
581
|
+
`,yo=cn.div`
|
|
582
582
|
display: flex;
|
|
583
583
|
flex-direction: column;
|
|
584
584
|
gap: 12px;
|
|
@@ -593,7 +593,7 @@ Resources:
|
|
|
593
593
|
&::-webkit-scrollbar {
|
|
594
594
|
display: none;
|
|
595
595
|
}
|
|
596
|
-
`,
|
|
596
|
+
`,lt=cn.button`
|
|
597
597
|
&& {
|
|
598
598
|
width: 100%;
|
|
599
599
|
font-size: 16px;
|
|
@@ -631,10 +631,10 @@ Resources:
|
|
|
631
631
|
max-width: 24px;
|
|
632
632
|
}
|
|
633
633
|
}
|
|
634
|
-
`,
|
|
634
|
+
`,fr=cn.div`
|
|
635
635
|
width: 100%;
|
|
636
636
|
${e=>e.if?"display: none;":""}
|
|
637
|
-
`;import{jsx as
|
|
637
|
+
`;import{jsx as hr,jsxs as Mh}from"react/jsx-runtime";var At={coinbase_wallet:{logo:Qr,displayName:"Coinbase Wallet",rdns:"com.coinbase.wallet"},metamask:{logo:mi,displayName:"MetaMask",rdns:"io.metamask"},phantom:{logo:po,displayName:"Phantom"},rainbow:{logo:dd,displayName:"Rainbow",rdns:"me.rainbow"},wallet_connect:{logo:Xr,displayName:"WalletConnect"},zerion:{logo:ud,displayName:"Zerion",rdns:"io.zerion.wallet"},brave_wallet:{logo:cd,displayName:"Brave Wallet",rdns:"com.brave.wallet"}},dn=({provider:e,displayName:t,logo:o,connectOnly:r,connector:n})=>{let{navigate:i}=T(),{initLoginWithWallet:a,connectWallet:l}=R(),s=n.connectorType==="wallet_connect_v2"?e:n.walletClientType,c;return n.connectorType==="phantom"?c=()=>{Et()?r?(l(n,s),i("AWAITING_CONNECT_ONLY_CONNECTION")):(a(n,s),i("AWAITING_CONNECTION")):i(_h?"PHANTOM_INTERSTITIAL_SCREEN":"INSTALL_PHANTOM_SCREEN")}:c=()=>{r?(l(n,s),i("AWAITING_CONNECT_ONLY_CONNECTION")):(a(n,s),i("AWAITING_CONNECTION"))},Mh(Wh,{onClick:c,children:[hr(Ih,{icon:Rh(e,n.connectorType)??o}),hr("span",{style:{textTransform:"capitalize"},children:Ah(e,n.connectorType)||t||n.walletClientType}),hr("span",{children:"Connect"})]})},Ah=(e,t)=>{if(At[e]?.displayName)return At[e].displayName;if(t==="wallet_connect_v2"&&e==="wallet_connect")return"Wallet Connect"},Rh=(e,t)=>{if(At[e]?.logo)return At[e].logo;if(t==="wallet_connect_v2"&&e==="wallet_connect")return Xr},Ih=({icon:e})=>typeof e=="string"?hr("img",{src:e,style:{height:24,width:24,margin:"auto",borderRadius:4}}):typeof e===void 0?hr(Sh,{}):e?hr(e,{}):null,Wh=kh(lt)`
|
|
638
638
|
/* Show "Connect" on hover */
|
|
639
639
|
> :last-child {
|
|
640
640
|
font-weight: 500;
|
|
@@ -656,23 +656,23 @@ Resources:
|
|
|
656
656
|
display: none;
|
|
657
657
|
}
|
|
658
658
|
}
|
|
659
|
-
`;import{Fragment as Oh,jsx as ki,jsxs as Dh}from"react/jsx-runtime";var Lh=["coinbase_wallet","phantom"],Nh=["metamask","rainbow","zerion"],
|
|
659
|
+
`;import{Fragment as Oh,jsx as ki,jsxs as Dh}from"react/jsx-runtime";var Lh=["coinbase_wallet","phantom"],Nh=["metamask","rainbow","zerion"],yr=({connectOnly:e})=>{let{connectors:t}=R(),{app:o}=T(),r=ds(o?.appearance.supportedWallets??[],t,e);return Dh(Oh,{children:[...r]})},ds=(e,t,o)=>{let r=[],n=[],i=[],a=t.find(l=>l.connectorType==="wallet_connect_v2");for(let l of e)if(l==="browser_wallets"){let s=t.filter(({connectorType:c,walletClientType:u})=>c==="injected"&&!e.includes(u));for(let c of s){let{walletClientType:u,walletBranding:h}=c;(u==="unknown"?n:r).push(ki(dn,{connectOnly:o,provider:u,logo:h.icon,displayName:h.name,connector:c},`${l}-${u}`))}}else if(Nh.includes(l)){let s=t.find(c=>c.connectorType==="injected"&&c.walletClientType===l)||a;s&&r.push(ki(dn,{connectOnly:o,provider:l,connector:s},l))}else if(Lh.includes(l)){let s=t.find(({connectorType:c})=>c===l);s&&r.push(ki(dn,{connectOnly:o,provider:l,connector:s},l))}else l==="wallet_connect"&&a&&i.push(ki(dn,{connectOnly:o,provider:l,connector:a},l));return[...n,...r,...i]};import{Fragment as Uh,jsx as pn,jsxs as Fh}from"react/jsx-runtime";var fd=()=>{let{app:e}=T(),t=`Connect a wallet to ${e?.name}`;return Fh(Uh,{children:[pn(P,{},"header"),pn(fo,{title:"Connect your wallet",description:t}),pn(yo,{children:pn(yr,{connectOnly:!0})}),pn(B,{protectedByPrivy:!0})]})};import Vh from"styled-components";import Gh from"styled-components";import Bh from"react";import{jsx as Hh}from"react/jsx-runtime";var hd=()=>{let{app:e}=T(),t=e?.appearance?.logo,o=`${e?.name} logo`,r={maxHeight:"90px",maxWidth:"180px"};return t?typeof t=="string"?Hh("img",{src:t,alt:o,style:r}):t.type==="svg"||t.type==="img"?Bh.cloneElement(t,{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{jsx as yd}from"react/jsx-runtime";var Ai=e=>{let{app:t}=T();return t?.appearance.logo?yd(zh,{...e,children:yd(hd,{})}):null},zh=Gh.div`
|
|
660
660
|
display: flex;
|
|
661
661
|
flex-direction: column;
|
|
662
662
|
align-items: center;
|
|
663
663
|
padding: 24px 0;
|
|
664
664
|
flex-grow: 1;
|
|
665
665
|
justify-content: center;
|
|
666
|
-
`;import{Fragment as qh,jsx as
|
|
666
|
+
`;import{Fragment as qh,jsx as gr,jsxs as jh}from"react/jsx-runtime";var gd=()=>{let{app:e}=T();return jh(qh,{children:[gr(P,{},"header"),gr($h,{}),gr(yo,{children:gr(yr,{connectOnly:!0})}),e&&gr(Ti,{app:e}),gr(B,{protectedByPrivy:!0})]})},$h=Vh(Ai)`
|
|
667
667
|
margin-bottom: 16px;
|
|
668
|
-
`;import{useEffect as
|
|
668
|
+
`;import{useEffect as Ed,useState as Pd}from"react";import{isMobile as ty}from"react-device-detect";import oy from"styled-components";import{useEffect as ps,useState as vr}from"react";import{isMobile as un}from"react-device-detect";import{useInterval as Zh}from"react-use";import wd from"styled-components";import{useState as Kh,useEffect as Yh,useCallback as Jh}from"react";function vd(){let[e,t]=Kh(!1),o=Jh(()=>{document.hidden&&t(!0)},[]);return Yh(()=>(document.addEventListener("visibilitychange",o),()=>document.removeEventListener("visibilitychange",o)),[o]),{hasTabbedAway:e,reset:()=>t(!1)}}import{Fragment as bd,jsx as Ce,jsxs as mn}from"react/jsx-runtime";var us=2,ms=e=>e?.privyErrorCode==="linked_to_another_user"?Gt.ERROR_USER_EXISTS:e instanceof Ae&&!e.details.default?e.details:e instanceof ar?Gt.ERROR_TIMED_OUT:e instanceof sr?Gt.ERROR_USER_REJECTED_CONNECTION:Gt.ERROR_WALLET_CONNECTION,Cd=()=>{let[e,t]=vr(!1),[o,r]=vr(!1),[n,i]=vr(void 0),{app:a,navigate:l,navigateBack:s,lastScreen:c,currentScreen:u,setModalData:h}=T(),{getAuthFlow:w,walletConnectionStatus:m,closePrivyModal:v,loginWithWallet:y,updateWallets:x}=R(),{walletConnectors:E}=G(),[I,M]=vr(0),{user:k}=G(),[A]=vr(k?.linkedAccounts.length||0),[W,N]=vr(""),{hasTabbedAway:O}=vd(),H=un&&m?.connector?.connectorType==="wallet_connect_v2"||un&&m?.connector?.connectorType==="coinbase_wallet"||un&&m?.connector?.connectorType==="injected"&&m?.connector?.walletClientType==="phantom",D=m?.status==="connected",_=m?.status==="switching_to_supported_chain";ps(()=>{let j=w();if(j&&H&&D&&!j.preparedMessage){j.buildSiweMessage();return}!j||H||!D||(async()=>{r(!0),i(void 0);try{m?.connector?.connectorType==="wallet_connect_v2"&&m?.connector?.walletClientType==="metamask"&&await Ka(2500),await ue()}catch(oo){console.warn("Auto-prompted signature failed",oo)}finally{r(!1)}})()},[I,D]),ps(()=>{if(k&&e){let j;if(ao(k,a?.embeddedWallets?.createOnLogin)){let oo=a?.render.inDialog?je:0,Bt=a?.render.inDialog?oo-500:0;j=setTimeout(()=>{h({createWallet:{onSuccess:()=>{},onFailure:Wo=>console.error(Wo),callAuthOnSuccessOnClose:!0}}),l("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},Bt)}else x(),j=setTimeout(v,je);return()=>clearTimeout(j)}},[k,e]);let ee=j=>{if(j?.privyErrorCode==="allowlist_rejected"){l("ALLOWLIST_REJECTION_SCREEN");return}i(ms(j))};async function ue(){try{if(await y(),!a?.render.inDialog)return v();t(!0)}catch(j){ee(j)}finally{r(!1)}}ps(()=>{m?.connectError&&ee(m?.connectError)},[m]),Zh(()=>{let j=Ge==="wallet_connect_v2"&&m?.connector instanceof St?m.connector.redirectUri:void 0;j&&N(j)},m?.connector instanceof St&&!W?500:null);let Ge=m?.connector?.connectorType||"injected",F=m?.connector?.walletClientType||"unknown",xe=At[F]?.displayName||m?.connector?.walletBranding.name||"Browser Extension",mt=At[F]?.logo||m?.connector?.walletBranding.icon||(j=>Ce(cr,{...j})),fe=xe==="Browser Extension"?xe.toLowerCase():xe,se;e?se=`Successfully connected with ${fe}`:n?se=n.message:_?se="Switching networks":D?se=o&&H?"Signing":"Sign to verify":se=`Waiting for ${fe}`;let Q="Don\u2019t see your wallet? Check your other browser windows.";if(e){let j=k?.linkedAccounts.length||0;A===j?Q="Wallet was already linked.":Q="You\u2019re good to go!"}else I>=us&&n?Q="Unable to connect wallet":n?Q=n.detail:_?Q="Switch your wallet to the requested network.":D&&H?Q="Sign the message in your wallet to verify it belongs to you.":F==="metamask"&&un?Q="Click continue to open and connect Metamask.":F==="metamask"?Q="For the best experience, connect only one wallet at a time.":Ge==="wallet_connect"?Q="Open your mobile wallet app to continue":Ge==="coinbase_wallet"&&(sc()||(Ja(k)?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 re=E?.walletConnectors?.find(j=>j.walletClientType==="coinbase_wallet"),Xo=F==="coinbase_wallet"&&(Ja(k)||n===Gt.ERROR_USER_EXISTS);return mn(bd,{children:[Ce(P,{backFn:u===c?void 0:s}),mn(Xh,{children:[Ce(fs,{walletLogo:mt,success:e,fail:!!n}),mn(mo,{children:[Ce("h3",{children:se}),Ce("p",{children:Q}),!D&&W&&!O?mn("p",{children:["Still here?"," ",Ce("a",{href:W,target:"_blank",style:{textDecoration:"underline"},children:"Try again"})]}):null]}),Xo?Ce(L,{onClick:()=>re&&re?.disconnect(),disabled:e,children:"Use a different wallet"}):n==Gt.ERROR_USER_EXISTS&&u!==c?Ce(L,{onClick:s,children:"Use a different wallet"}):D&&!e&&H?Ce(L,{onClick:()=>{r(!0),ue(),Qh(F)},disabled:o,children:o?"Signing":"Sign with your wallet"}):!e&&n?.retryable&&I<us?Ce(L,{onClick:()=>{M(I+1),i(void 0),D?(r(!0),ue()):m?.connectRetry()},disabled:!e&&(!n?.retryable||I>=us),children:"Retry"}):!e&&!n?Ce(L,{onClick:()=>{},disabled:!0,children:"Connecting"}):null]}),Ce(K,{})]})},Qh=e=>{if(!un||!_c(e))return;let t=kc(e);t&&window.open(t,"_self","noopener,noreferrer")},Xh=wd.div`
|
|
669
669
|
display: flex;
|
|
670
670
|
flex-direction: column;
|
|
671
671
|
align-items: center;
|
|
672
672
|
justify-content: center;
|
|
673
673
|
gap: 24px;
|
|
674
674
|
width: 100%;
|
|
675
|
-
`,
|
|
675
|
+
`,ey=wd.div`
|
|
676
676
|
display: flex;
|
|
677
677
|
flex-direction: column;
|
|
678
678
|
justify-content: center;
|
|
@@ -695,14 +695,14 @@ Resources:
|
|
|
695
695
|
left: -19px;
|
|
696
696
|
top: -19px;
|
|
697
697
|
}
|
|
698
|
-
`,
|
|
698
|
+
`,fs=e=>{let t=e.walletLogo;return Ce(bd,{children:Ce(ey,{children:mn("div",{children:[Ce(vi,{success:e.success,fail:e.fail}),typeof t=="string"?Ce("span",{style:{background:`url('${t}')`,height:"38px",width:"38px",borderRadius:"6px",margin:"auto",backgroundSize:"cover"}}):Ce(t,{style:{width:"38px",height:"38px"}})]})})})};import{Fragment as ny,jsx as $t,jsxs as hs}from"react/jsx-runtime";var Ri=2,xd=()=>{let{navigateBack:e,lastScreen:t,currentScreen:o}=T(),{walletConnectionStatus:r,closePrivyModal:n}=R(),[i,a]=Pd(void 0),[l,s]=Pd(0),c=r?.status==="connected",u=r?.status==="switching_to_supported_chain";Ed(()=>{if(c){let M=setTimeout(n,je);return()=>clearTimeout(M)}},[c]);let h=M=>{a(ms(M))};Ed(()=>{r?.connectError&&h(r?.connectError)},[r]);let w=r?.connector?.connectorType||"injected",m=r?.connector?.walletClientType||"unknown",v=At[m]?.displayName||r?.connector?.walletBranding.name||"Browser Extension",y=At[m]?.logo||r?.connector?.walletBranding.icon||(M=>$t(cr,{...M})),x=v==="Browser Extension"?v.toLowerCase():v,E;c?E=`Successfully connected with ${x}`:i?E=i.message:u?E="Switching networks":E=`Waiting for ${x}`;let I="Don\u2019t see your wallet? Check your other browser windows.";return c?I="You\u2019re good to go!":l>=Ri&&i?I="Unable to connect wallet":i?I=i.detail:u?I="Switch your wallet to the requested network.":m==="metamask"&&ty?I="Click to continue to open and connect Metamask.":m==="metamask"?I="For the best experience, connect only one wallet at a time.":w==="wallet_connect_v2"?I="Open your mobile wallet app to continue":w==="coinbase_wallet"&&(I="Open the Coinbase app on your phone to continue."),hs(ny,{children:[$t(P,{backFn:o===t?void 0:e}),hs(ry,{children:[$t(fs,{walletLogo:y,success:c,fail:!!i}),hs(mo,{children:[$t("h3",{children:E}),$t("p",{children:I})]}),i==Gt.ERROR_USER_EXISTS?$t(L,{onClick:e,children:"Use a different wallet"}):!c&&i?.retryable&&l<Ri?$t(L,{onClick:()=>{s(l+1),a(void 0),r?.connectRetry()},disabled:!c&&(!i?.retryable||l>=Ri),children:"Retry"}):!c&&i&&l>=Ri?$t(L,{onClick:e,children:"Use a different wallet"}):null]}),$t(K,{})]})},ry=oy.div`
|
|
699
699
|
display: flex;
|
|
700
700
|
flex-direction: column;
|
|
701
701
|
align-items: center;
|
|
702
702
|
justify-content: center;
|
|
703
703
|
gap: 24px;
|
|
704
704
|
width: 100%;
|
|
705
|
-
`;import{XCircleIcon as
|
|
705
|
+
`;import{XCircleIcon as dy}from"@heroicons/react/24/solid";import{useEffect as py,useMemo as uy,useState as my}from"react";import fy from"styled-components";import Ii from"styled-components";import{jsx as ys,jsxs as cy}from"react/jsx-runtime";var wr=()=>ys(iy,{children:cy(ay,{children:[ys(sy,{}),ys(ly,{})]})}),iy=Ii.div`
|
|
706
706
|
display: flex;
|
|
707
707
|
justify-content: center;
|
|
708
708
|
align-items: center;
|
|
@@ -714,14 +714,14 @@ Resources:
|
|
|
714
714
|
@media all and (display-mode: standalone) {
|
|
715
715
|
margin-bottom: 30px;
|
|
716
716
|
}
|
|
717
|
-
`,
|
|
717
|
+
`,ay=Ii.div`
|
|
718
718
|
position: relative;
|
|
719
719
|
height: 140px;
|
|
720
720
|
width: 140px;
|
|
721
721
|
|
|
722
722
|
opacity: 1;
|
|
723
723
|
animation: fadein 200ms ease;
|
|
724
|
-
`,
|
|
724
|
+
`,sy=Ii.div`
|
|
725
725
|
position: absolute;
|
|
726
726
|
top: 0;
|
|
727
727
|
right: 0;
|
|
@@ -734,7 +734,7 @@ Resources:
|
|
|
734
734
|
border: 4px solid var(--privy-color-accent-light);
|
|
735
735
|
border-radius: 50%;
|
|
736
736
|
}
|
|
737
|
-
`,
|
|
737
|
+
`,ly=Ii.div`
|
|
738
738
|
position: absolute;
|
|
739
739
|
top: 0;
|
|
740
740
|
right: 0;
|
|
@@ -758,18 +758,18 @@ Resources:
|
|
|
758
758
|
transform: rotate(360deg);
|
|
759
759
|
}
|
|
760
760
|
}
|
|
761
|
-
`;var
|
|
761
|
+
`;var Td=["error","invalid_request_arguments","wallet_not_on_device","invalid_recovery_pin","insufficient_funds","missing_or_invalid_mfa","mfa_verification_max_attempts_reached","mfa_timeout"];var be=class extends Error{constructor(o,r){super(r);this.type=o}};function Cr(e){let t=e.type;return typeof t=="string"&&Td.includes(t)}function br(e){return Cr(e)&&e.type==="wallet_not_on_device"}function Sd(e){return Cr(e)&&(e.type==="invalid_recovery_pin"||e.type==="invalid_request_arguments")}function _d(e){return!!(Cr(e)&&e.type==="insufficient_funds"||e.code==="INSUFFICIENT_FUNDS")}function Er(e){return!!(Cr(e)&&e.type==="mfa_timeout")}function Pr(e){return!!(Cr(e)&&e.type==="missing_or_invalid_mfa")}function xr(e){return!!(Cr(e)&&e.type==="mfa_verification_max_attempts_reached")}import{Fragment as Ad,jsx as Tr,jsxs as gs}from"react/jsx-runtime";var kd=1,Rd=()=>{let{authenticated:e,user:t,getAccessToken:o}=G(),{closePrivyModal:r,createAnalyticsEvent:n,walletProxy:i}=R(),{navigate:a,data:l,setModalData:s,onUserCloseViaDialogOrKeybindRef:c}=T(),u=uy(()=>Date.now(),[]),[h,w]=my(!1),{onCompleteNavigateTo:m,onFailure:v}=l?.connectWallet,y=E=>{h||(w(!0),v(typeof E=="string"?new Error(E):E))};py(()=>{let E=ne(t),I;return!e||!E?y("User must be authenticated and have a Privy wallet before it can be connected"):i?((async()=>{let k=await o();if(!k)return y("User must be authenticated and have a Privy wallet before it can be connected");try{await i.connect({accessToken:k,address:E.address});let A=(Date.now()-u)/1e3;m==="EMBEDDED_WALLET_KEY_EXPORT_SCREEN"&&A<kd?I=setTimeout(()=>{a(m)},(kd-A)*1e3):a(m)}catch(A){if(br(A)&&E.recoveryMethod==="privy"){let W=await o();if(!W)return y("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:W}))?.address||y(new Error("Unable to recover wallet")),m?a(m):r({shouldCallAuthOnSuccess:!1}),n("embedded_wallet_recovery_completed",{walletAddress:E.address}),a(m)}catch{y("An error has occurred, please try again.")}}else br(A)?(s({...l,recoverWallet:{privyWallet:E,onCompleteNavigateTo:m,onFailure:v}}),a("EMBEDDED_WALLET_RECOVERY_SCREEN")):y(A)}})(),()=>clearTimeout(I)):void 0},[e,t,i]);let x=()=>{y("User exited before wallet could be connected"),r({shouldCallAuthOnSuccess:!1})};return c.current=x,gs(Ad,{children:[Tr(P,{onClose:x}),h?gs(Ad,{children:[gs(yt,{children:[Tr(dy,{fill:"var(--privy-color-error)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),Tr(we,{title:"Something went wrong",description:"We\u2019re on it. Please try again later."})]}),Tr(L,{onClick:()=>r({shouldCallAuthOnSuccess:!1}),children:"Close"})]}):Tr(wr,{}),Tr(hy,{})]})},hy=fy.div`
|
|
762
762
|
height: 44px;
|
|
763
|
-
`;import{CheckCircleIcon as
|
|
763
|
+
`;import{CheckCircleIcon as yy}from"@heroicons/react/24/solid";import{useEffect as gy}from"react";import{Fragment as vy,jsx as Sr,jsxs as Id}from"react/jsx-runtime";var Wd=()=>{let{user:e}=G(),{closePrivyModal:t,isNewUserThisSession:o,updateWallets:r}=R(),{app:n,data:i,onUserCloseViaDialogOrKeybindRef:a}=T(),{onSuccess:l,onFailure:s,callAuthOnSuccessOnClose:c}=i.createWallet,u=()=>{let h=ne(e);h?(r(),l(h)):s(new Error("Failed to create wallet")),t({shouldCallAuthOnSuccess:c})};return gy(()=>{let h=setTimeout(u,Zl);return()=>clearTimeout(h)},[]),a.current=u,Id(vy,{children:[Sr(P,{onClose:u}),Sr($,{}),Id(yt,{children:[Sr(yy,{fill:"var(--privy-color-accent)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),Sr(we,{title:o?`Welcome${n?.name?` to ${n?.name}`:""}`:"All set!",description:o?"You\u2019ve successfully created an account.":"Your account is secured."})]}),Sr(q,{}),Sr(B,{protectedByPrivy:!0})]})};import{useEffect as Od,useRef as Cy,useState as vs}from"react";import qt from"styled-components";import{jsx as Be,jsxs as wy}from"react/jsx-runtime";var Md=({style:e,...t})=>wy("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:[Be("rect",{x:"214.681",y:"51.6852",width:"40",height:"40",rx:"20",fill:"var(--privy-color-background-2)"}),Be("path",{fillRule:"evenodd",clipRule:"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)"}),Be("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"}),Be("rect",{x:"65.6426",y:"52.6852",width:"38",height:"38",rx:"19",stroke:"var(--privy-color-background-2","stroke-width":"2"}),Be("path",{d:"M103.162 71.6852H213.662",stroke:"var(--privy-color-background-2","stroke-width":"2","stroke-dasharray":"4 4"}),Be("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"}),Be("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)"}),Be("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)"}),Be("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"}),Be("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"}),Be("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"}),Be("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"}),Be("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"}),Be("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 Ry,jsx as me,jsxs as Rt}from"react/jsx-runtime";var Dd=()=>{let[e,t]=vs(null),{authenticated:o,user:r,getAccessToken:n}=G(),{closePrivyModal:i,createAnalyticsEvent:a,clientAnalyticsId:l}=R(),{data:s,onUserCloseViaDialogOrKeybindRef:c}=T(),u=ne(r)?.address,{onFailure:h,onSuccess:w,origin:m,appId:v}=s.keyExport,y=E=>{i({shouldCallAuthOnSuccess:!1}),h(typeof E=="string"?new Error(E):E)},x=()=>{i({shouldCallAuthOnSuccess:!1}),w(),a("embedded_wallet_key_export_completed",{walletAddress:u})};return Od(()=>{let E=ne(r);if(!o||!E)return y("User must be authenticated before exporting their wallet");n().then(t,y)},[o,r]),c.current=x,Rt(Ry,{children:[me(P,{onClose:x}),Rt(Py,{children:[me(Md,{}),Rt(xy,{children:[me("h3",{children:"Transfer"}),Rt(ky,{children:[me(Ey,{style:{marginRight:6}}),so(u)]})]}),me("p",{children:"You can take your account with you to another site using an external wallet!"}),Rt(Ty,{children:[Rt(Ld,{children:[me(Nd,{children:"1"}),Rt("span",{children:[me("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."]})]}),Rt(Ld,{children:[me(Nd,{children:"2"}),me("span",{children:"Copy this key into your other wallet"})]})]}),me("div",{style:{width:"100%"},children:e&&me(by,{origin:m,appId:v,accessToken:e,clientAnalyticsId:l,address:u,dimensions:{height:"44px"}})}),Rt(Ay,{children:[me("h4",{children:"WARNING"}),me("p",{children:"Never share your private key with anyone! It controls your account."})]})]}),me(B,{protectedByPrivy:!0})]})};function by(e){let[t,o]=vs(e.dimensions.width),[r,n]=vs(void 0),i=Cy(null);return Od(()=>{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")})},[]),me("div",{ref:i,children:t&&Rt(Sy,{children:[me("iframe",{style:{position:"absolute",zIndex:1},width:t,height:e.dimensions.height,allow:"clipboard-write self *",src:ri(e.origin,`/apps/${e.appId}/embedded-wallets/export`,{token:e.accessToken,address:e.address,width:`${t}px`,caid:e.clientAnalyticsId,...r})}),me(_y,{children:"Loading..."})]})})}function Ey(e){return me("svg",{width:"16",height:"17",viewBox:"0 0 16 17",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:e.style,children:me("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 Py=qt.div`
|
|
764
764
|
display: flex;
|
|
765
765
|
flex-direction: column;
|
|
766
766
|
text-align: left;
|
|
767
|
-
`,
|
|
767
|
+
`,xy=qt.div`
|
|
768
768
|
display: flex;
|
|
769
769
|
align-items: center;
|
|
770
770
|
justify-content: space-between;
|
|
771
771
|
margin-bottom: 8px;
|
|
772
|
-
`,
|
|
772
|
+
`,Ty=qt.div`
|
|
773
773
|
display: flex;
|
|
774
774
|
flex-direction: column;
|
|
775
775
|
gap: 24px;
|
|
@@ -777,7 +777,7 @@ Resources:
|
|
|
777
777
|
margin-top: 16px;
|
|
778
778
|
margin-left: 11px;
|
|
779
779
|
border-left: 1px solid var(--privy-color-foreground-4) !important;
|
|
780
|
-
`,
|
|
780
|
+
`,Ld=qt.div`
|
|
781
781
|
display: flex;
|
|
782
782
|
align-items: top;
|
|
783
783
|
gap: 8px;
|
|
@@ -786,7 +786,7 @@ Resources:
|
|
|
786
786
|
color: var(--privy-color-accent);
|
|
787
787
|
text-decoration: underline;
|
|
788
788
|
}
|
|
789
|
-
`,
|
|
789
|
+
`,Nd=qt.div`
|
|
790
790
|
display: flex;
|
|
791
791
|
align-items: center;
|
|
792
792
|
justify-content: center;
|
|
@@ -800,10 +800,10 @@ Resources:
|
|
|
800
800
|
border-radius: 100%;
|
|
801
801
|
background: var(--privy-color-background);
|
|
802
802
|
color: var(--privy-color-accent);
|
|
803
|
-
`,
|
|
803
|
+
`,Sy=qt.div`
|
|
804
804
|
position: relative;
|
|
805
805
|
height: 44px;
|
|
806
|
-
`,
|
|
806
|
+
`,_y=qt.div`
|
|
807
807
|
position: absolute;
|
|
808
808
|
display: flex;
|
|
809
809
|
align-items: center;
|
|
@@ -815,7 +815,7 @@ Resources:
|
|
|
815
815
|
border-radius: var(--privy-border-radius-md);
|
|
816
816
|
background-color: var(--privy-color-background-2);
|
|
817
817
|
color: var(--privy-color-foreground-3);
|
|
818
|
-
`,
|
|
818
|
+
`,ky=qt.div`
|
|
819
819
|
display: flex;
|
|
820
820
|
align-items: center;
|
|
821
821
|
padding-top: 1px;
|
|
@@ -827,7 +827,7 @@ Resources:
|
|
|
827
827
|
border-radius: var(--privy-border-radius-md);
|
|
828
828
|
font-size: 12px;
|
|
829
829
|
font-weight: 500;
|
|
830
|
-
`,
|
|
830
|
+
`,Ay=qt.div`
|
|
831
831
|
border: 2px solid var(--privy-color-background-2) !important;
|
|
832
832
|
border-radius: var(--privy-border-radius-md);
|
|
833
833
|
padding: 16px;
|
|
@@ -837,7 +837,7 @@ Resources:
|
|
|
837
837
|
&& > h4 {
|
|
838
838
|
color: var(--privy-color-error);
|
|
839
839
|
}
|
|
840
|
-
`;import{XCircleIcon as
|
|
840
|
+
`;import{XCircleIcon as Pg}from"@heroicons/react/24/outline";import{useEffect as cp,useRef as xg,useState as wn}from"react";import{useCallback as lp,useEffect as Eg}from"react";import{ExclamationTriangleIcon as Ny}from"@heroicons/react/24/outline";import{useEffect as Oy,useState as bs}from"react";import{ArrowPathIcon as Iy,EyeIcon as Wy,EyeSlashIcon as My}from"@heroicons/react/24/outline";import _e,{css as ws}from"styled-components";var Ly=ws`
|
|
841
841
|
font-size: 14px;
|
|
842
842
|
font-style: normal;
|
|
843
843
|
font-weight: 400;
|
|
@@ -845,8 +845,8 @@ Resources:
|
|
|
845
845
|
letter-spacing: -0.008px;
|
|
846
846
|
text-align: left;
|
|
847
847
|
transition: color 0.1s ease-in;
|
|
848
|
-
`,
|
|
849
|
-
${
|
|
848
|
+
`,Wi=_e.span`
|
|
849
|
+
${Ly}
|
|
850
850
|
transition: color 0.1s ease-in;
|
|
851
851
|
color: ${({error:e})=>e?"var(--privy-color-error)":"var(--privy-color-foreground-3)"};
|
|
852
852
|
text-transform: ${({error:e})=>e?"":"capitalize"};
|
|
@@ -854,18 +854,18 @@ Resources:
|
|
|
854
854
|
&[aria-hidden='true'] {
|
|
855
855
|
visibility: hidden;
|
|
856
856
|
}
|
|
857
|
-
`,
|
|
857
|
+
`,go=_e.div`
|
|
858
858
|
display: flex;
|
|
859
859
|
flex-direction: column;
|
|
860
860
|
justify-content: center;
|
|
861
861
|
flex-grow: 1;
|
|
862
|
-
`,
|
|
863
|
-
${e=>e.hideAnimations&&
|
|
862
|
+
`,vo=_e(L)`
|
|
863
|
+
${e=>e.hideAnimations&&ws`
|
|
864
864
|
&& {
|
|
865
865
|
transition: none;
|
|
866
866
|
}
|
|
867
867
|
`}
|
|
868
|
-
`,
|
|
868
|
+
`,Ud=ws`
|
|
869
869
|
&& {
|
|
870
870
|
width: 100%;
|
|
871
871
|
border-width: 1px;
|
|
@@ -880,23 +880,23 @@ Resources:
|
|
|
880
880
|
font-weight: 300;
|
|
881
881
|
line-height: 22px; /* 137.5% */
|
|
882
882
|
}
|
|
883
|
-
`,
|
|
884
|
-
${
|
|
883
|
+
`,zo=_e.input`
|
|
884
|
+
${Ud}
|
|
885
885
|
|
|
886
886
|
&::placeholder {
|
|
887
887
|
color: var(--privy-color-foreground-3);
|
|
888
888
|
font-style: italic;
|
|
889
889
|
font-size: 14px;
|
|
890
890
|
}
|
|
891
|
-
`,
|
|
892
|
-
${
|
|
893
|
-
`,
|
|
891
|
+
`,Fd=_e.div`
|
|
892
|
+
${Ud}
|
|
893
|
+
`,wo=_e.div`
|
|
894
894
|
position: relative;
|
|
895
895
|
width: 100%;
|
|
896
896
|
display: flex;
|
|
897
897
|
align-items: center;
|
|
898
898
|
justify-content: ${({centered:e})=>e?"center":"space-between"};
|
|
899
|
-
`,
|
|
899
|
+
`,Co=_e.div`
|
|
900
900
|
display: flex;
|
|
901
901
|
flex-direction: column;
|
|
902
902
|
align-items: center;
|
|
@@ -918,12 +918,12 @@ Resources:
|
|
|
918
918
|
font-weight: 400;
|
|
919
919
|
line-height: 20px;
|
|
920
920
|
}
|
|
921
|
-
`,
|
|
921
|
+
`,fn=_e.div`
|
|
922
922
|
display: flex;
|
|
923
923
|
flex-direction: column;
|
|
924
924
|
gap: 10px;
|
|
925
925
|
padding-bottom: 1rem;
|
|
926
|
-
`,
|
|
926
|
+
`,hn=_e.div`
|
|
927
927
|
display: flex;
|
|
928
928
|
text-align: left;
|
|
929
929
|
align-items: center;
|
|
@@ -943,13 +943,13 @@ Resources:
|
|
|
943
943
|
> :first-child {
|
|
944
944
|
min-width: 24px;
|
|
945
945
|
}
|
|
946
|
-
`,
|
|
946
|
+
`,Cx=_e.div`
|
|
947
947
|
height: var(--privy-height-modal-full);
|
|
948
948
|
|
|
949
949
|
@media (max-width: 440px) {
|
|
950
950
|
height: var(--privy-height-modal-compact);
|
|
951
951
|
}
|
|
952
|
-
`,
|
|
952
|
+
`,Cs=_e(wi)`
|
|
953
953
|
display: flex;
|
|
954
954
|
flex: 1;
|
|
955
955
|
gap: 4px;
|
|
@@ -961,7 +961,7 @@ Resources:
|
|
|
961
961
|
border-color: var(--privy-color-foreground-3);
|
|
962
962
|
border-width: 1px;
|
|
963
963
|
}
|
|
964
|
-
`,
|
|
964
|
+
`,_r=_e.div`
|
|
965
965
|
position: absolute;
|
|
966
966
|
right: 0.5rem;
|
|
967
967
|
|
|
@@ -969,7 +969,7 @@ Resources:
|
|
|
969
969
|
flex-direction: row;
|
|
970
970
|
justify-content: space-around;
|
|
971
971
|
align-items: center;
|
|
972
|
-
`,
|
|
972
|
+
`,Bd=_e(Iy)`
|
|
973
973
|
height: 1.25rem;
|
|
974
974
|
width: 1.25rem;
|
|
975
975
|
stroke: var(--privy-color-accent);
|
|
@@ -978,7 +978,7 @@ Resources:
|
|
|
978
978
|
:active {
|
|
979
979
|
stroke: var(--privy-color-accent-light);
|
|
980
980
|
}
|
|
981
|
-
`,
|
|
981
|
+
`,kr=_e(My)`
|
|
982
982
|
height: 1.25rem;
|
|
983
983
|
width: 1.25rem;
|
|
984
984
|
stroke: var(--privy-color-accent);
|
|
@@ -987,7 +987,7 @@ Resources:
|
|
|
987
987
|
:active {
|
|
988
988
|
stroke: var(--privy-color-accent-light);
|
|
989
989
|
}
|
|
990
|
-
`,
|
|
990
|
+
`,Ar=_e(Wy)`
|
|
991
991
|
height: 1.25rem;
|
|
992
992
|
width: 1.25rem;
|
|
993
993
|
stroke: var(--privy-color-accent);
|
|
@@ -996,7 +996,7 @@ Resources:
|
|
|
996
996
|
:active {
|
|
997
997
|
stroke: var(--privy-color-accent-light);
|
|
998
998
|
}
|
|
999
|
-
`,
|
|
999
|
+
`,Hd=_e.progress`
|
|
1000
1000
|
height: 4px;
|
|
1001
1001
|
width: 100%;
|
|
1002
1002
|
margin: 8px 0;
|
|
@@ -1012,14 +1012,14 @@ Resources:
|
|
|
1012
1012
|
transition: all 0.1s ease-out;
|
|
1013
1013
|
background: ${({label:e})=>e==="Strong"&&"#78dca6"||e==="Medium"&&"var(--privy-color-warn)"||"var(--privy-color-error)"};
|
|
1014
1014
|
}
|
|
1015
|
-
`;import{Fragment as
|
|
1015
|
+
`;import{Fragment as Dy,jsx as Qe,jsxs as Mi}from"react/jsx-runtime";var Gd=({buttonHideAnimations:e,buttonLoading:t,password:o,onSubmit:r,onBack:n})=>{let[i,a]=bs(!0),[l,s]=bs(!1),[c,u]=bs(""),h=o===c;return Oy(()=>{c&&!l&&s(!0)},[c]),Mi(Dy,{children:[Qe(P,{title:"Confirm Password",closeable:!1,backFn:n}),Qe($,{}),Mi(go,{children:[Mi(Co,{children:[Qe(Ny,{height:48,width:48,stroke:"var(--privy-color-background)",fill:"var(--privy-color-accent)"}),Qe("h3",{style:{color:"var(--privy-color-foreground)"},children:"Confirm your password"}),Qe("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Please re-enter your password below to continue."})]}),Mi(wo,{children:[Qe(zo,{value:c,onChange:w=>u(w.target.value),onBlur:()=>s(!0),placeholder:"confirm your password",type:i?"password":"text"}),Qe(_r,{style:{right:"0.75rem"},children:i?Qe(kr,{onClick:()=>a(!1)}):Qe(Ar,{onClick:()=>a(!0)})})]}),Qe(Wi,{"aria-hidden":!l||h,error:!0,children:"Passwords do not match"})]}),Qe(vo,{onClick:r,loading:t,disabled:!h,hideAnimations:e,children:"Continue"}),Qe(q,{}),Qe(B,{protectedByPrivy:!0})]})};import{ExclamationTriangleIcon as Hy}from"@heroicons/react/24/outline";import{useState as Gy}from"react";import zy from"styled-components";import Li from"styled-components";import{jsx as yn,jsxs as By}from"react/jsx-runtime";var zd=({className:e,checked:t,color:o="var(--privy-color-accent)",...r})=>yn("label",{children:By(Uy,{className:e,children:[yn($d,{checked:t,...r}),yn(Fy,{color:o,checked:t,children:yn(Vd,{viewBox:"0 0 24 24",children:yn("polyline",{points:"20 6 9 17 4 12"})})})]})}),Uy=Li.div`
|
|
1016
1016
|
display: inline-block;
|
|
1017
1017
|
vertical-align: middle;
|
|
1018
|
-
`,
|
|
1018
|
+
`,Vd=Li.svg`
|
|
1019
1019
|
fill: none;
|
|
1020
1020
|
stroke: white;
|
|
1021
1021
|
stroke-width: 3px;
|
|
1022
|
-
|
|
1022
|
+
`,$d=Li.input.attrs({type:"checkbox"})`
|
|
1023
1023
|
border: 0;
|
|
1024
1024
|
clip: rect(0 0 0 0);
|
|
1025
1025
|
clippath: inset(50%);
|
|
@@ -1030,7 +1030,7 @@ Resources:
|
|
|
1030
1030
|
position: absolute;
|
|
1031
1031
|
white-space: nowrap;
|
|
1032
1032
|
width: 1px;
|
|
1033
|
-
`,
|
|
1033
|
+
`,Fy=Li.div`
|
|
1034
1034
|
display: inline-block;
|
|
1035
1035
|
width: 18px;
|
|
1036
1036
|
height: 18px;
|
|
@@ -1045,28 +1045,28 @@ Resources:
|
|
|
1045
1045
|
border-width: 1px;
|
|
1046
1046
|
}
|
|
1047
1047
|
|
|
1048
|
-
${
|
|
1048
|
+
${$d}:focus + & {
|
|
1049
1049
|
box-shadow: 0 0 0 1px ${e=>e.color};
|
|
1050
1050
|
}
|
|
1051
1051
|
|
|
1052
|
-
${
|
|
1052
|
+
${Vd} {
|
|
1053
1053
|
visibility: ${e=>e.checked?"visible":"hidden"};
|
|
1054
1054
|
}
|
|
1055
|
-
`;import{Fragment as
|
|
1055
|
+
`;import{Fragment as qd,jsx as ct,jsxs as gn}from"react/jsx-runtime";var jd=({buttonHideAnimations:e,buttonLoading:t,onSubmit:o,onBack:r,config:n})=>{let[i,a]=Gy(!1);return gn(qd,{children:[ct(P,{title:"Confirm Password",closeable:!1,backFn:r}),ct($,{}),gn(go,{children:[gn(Co,{children:[ct(Hy,{height:48,width:48,stroke:"var(--privy-color-background)",fill:"var(--privy-color-error)"}),ct("h3",{style:{color:"var(--privy-color-foreground)"},children:"Confirm you have saved"}),ct("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Losing access to your password means you will lose access to your account."})]}),ct(fn,{children:gn(hn,{style:{color:"var(--privy-color-error)",cursor:"pointer"},onClick:l=>{l.preventDefault(),a(s=>!s)},children:[ct(zd,{color:"var(--privy-color-error)",checked:i}),ct(qd,{children:"I understand losing my password means losing my account."})]})})]}),gn(Vy,{children:[n.initiatedBy==="user"&&ct(zt,{onClick:n.onCancel,disabled:t,children:"Cancel"}),ct(vo,{onClick:o,loading:t,hideAnimations:e,disabled:!i,children:"Set Password"})]}),ct(q,{}),ct(B,{protectedByPrivy:!0})]})},Vy=zy.div`
|
|
1056
1056
|
display: flex;
|
|
1057
1057
|
gap: 10px;
|
|
1058
|
-
`;import{KeyIcon as
|
|
1058
|
+
`;import{KeyIcon as ag}from"@heroicons/react/24/outline";import{CheckCircleIcon as ep}from"@heroicons/react/24/solid";import{useState as tp,useMemo as Es,useEffect as sg}from"react";import op from"styled-components";import $y from"fast-password-entropy";import*as Kd from"secure-password-utilities";import{DEFAULT_WORDLIST as qy}from"secure-password-utilities/wordlists";var jy=95,Ky=8,Yy=3,Jy=.3,Zy=/[a-z]/,Qy=/[A-Z]/,Xy=/[0-9]/,eg="a-zA-Z0-9",Yd="!@#$%^&*()\\-_+.",Jd=`${eg}${Yd}`,tg=new RegExp(`[${Yd}]`),og=new RegExp(`[${Jd}]`),Zd=new RegExp(`^[${Jd}]{6,}$`),Qd=(e="")=>{let t=e.split("").filter(o=>!og.test(o)).map(o=>o.replace(" ","SPACE"));return[...new Set(t)]},Ni=()=>Kd.generatePassphrase(4,qy);function rg(e){return e>.9?"Strong":e>.5?"Medium":"Weak"}function ng(e){if(e.length<Ky)return 0;let t=0;Zy.test(e)&&(t+=1),Qy.test(e)&&(t+=1),Xy.test(e)&&(t+=1),tg.test(e)&&(t+=1);let o=t/Yy;return Math.max(0,Math.min(1,o))}function ig(e=""){let t=ng(e),o=$y(e)/jy;return(t*Jy+o)/2}function Xd(e=""){let t=ig(e);return{value:t,label:rg(t)}}import{Fragment as dg,jsx as Ee,jsxs as jt}from"react/jsx-runtime";var rp=({buttonHideAnimations:e,buttonLoading:t,password:o="",config:r,onSubmit:n,onClose:i,onPasswordChange:a,onPasswordGenerate:l})=>{let[s,c]=tp(!1),[u,h]=tp(!1);sg(()=>{o&&!u&&h(!0)},[o]);let w=Es(()=>u?(o?.length||0)<6?"Password must be at least 6 characters":Zd.test(o||"")?null:`Invalid characters used ( ${Qd(o).join(" ")} )`:null,[o,u]),m=Es(()=>w?{value:0,label:"Weak"}:Xd(o),[o,w]),v=Es(()=>!!(!o?.length||w),[w,o]);return jt(dg,{children:[Ee(P,{onClose:i,title:"Secure your account",closeable:r.initiatedBy==="user"}),Ee($,{}),jt(go,{children:[jt(Co,{children:[Ee(ag,{height:48,width:48,stroke:"var(--privy-color-accent)"}),Ee("h3",{style:{color:"var(--privy-color-foreground)"},children:"Set your password"}),Ee("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Select a strong, memorable password to secure your account."})]}),jt(wo,{children:[Ee(zo,{value:o,onChange:y=>a(y.target.value),placeholder:"enter or generate a strong password",type:s?"password":"text"}),jt(_r,{style:{width:"3.5rem"},children:[s?Ee(kr,{onClick:()=>c(!1)}):Ee(Ar,{onClick:()=>c(!0)}),Ee(Bd,{onClick:l})]})]}),Ee(Hd,{value:m.value===0?.01:m.value,label:m.label}),Ee(Wi,{error:!!w,children:w||`Password Strength: ${u?m.label:"--"}`}),jt(cg,{children:[Ee(lg,{children:jt(fn,{children:[jt(hn,{children:[Ee(ep,{width:24,height:24,fill:"var(--privy-color-accent)"}),"This password is used to secure your account."]}),jt(hn,{children:[Ee(ep,{width:24,height:24,fill:"var(--privy-color-accent)"}),"You will only be asked to enter it when signing on to a new device."]})]})}),Ee(vo,{onClick:n,loading:t,disabled:v,hideAnimations:e,children:"Continue"})]})]}),Ee(q,{}),Ee(B,{protectedByPrivy:!0})]})},lg=op(fn)`
|
|
1059
1059
|
flex: 1;
|
|
1060
1060
|
padding-top: 1rem;
|
|
1061
|
-
`,
|
|
1061
|
+
`,cg=op.div`
|
|
1062
1062
|
display: flex;
|
|
1063
1063
|
flex-direction: column;
|
|
1064
1064
|
height: 100%;
|
|
1065
|
-
`;import{ArrowDownTrayIcon as
|
|
1065
|
+
`;import{ArrowDownTrayIcon as pg,ClipboardDocumentCheckIcon as ug,DocumentDuplicateIcon as mg,ExclamationTriangleIcon as fg}from"@heroicons/react/24/outline";import{useState as hg,useCallback as np}from"react";import{Fragment as Ps,jsx as He,jsxs as Vo}from"react/jsx-runtime";var ip=({buttonHideAnimations:e,buttonLoading:t,appName:o,password:r,onSubmit:n,onBack:i})=>{let[a,l]=hg(!1),s=np(()=>{l(!0),r&&navigator.clipboard.writeText(r)},[r]),c=np(()=>{let u=document.createElement("a"),h=o.toLowerCase().replace(/[^a-z\s]/g,"").replace(/\s/g,"-"),w=new Blob([yg(o,r)],{type:"text/plain"}),m=URL.createObjectURL(w);u.href=m,u.target="_blank",u.download=`${h}-privy-wallet-recovery.txt`,document.body.appendChild(u),u.click(),setTimeout(()=>{u.remove(),URL.revokeObjectURL(m)},5e3)},[r]);return Vo(Ps,{children:[He(P,{backFn:i,title:"Save Password",closeable:!1}),He($,{}),Vo(go,{children:[Vo(Co,{children:[He(fg,{height:48,width:48,stroke:"var(--privy-color-background)",fill:"var(--privy-color-accent)"}),He("h3",{style:{color:"var(--privy-color-foreground)"},children:"Save your password"}),He("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."})]}),He(wo,{centered:!0,children:He(Fd,{children:r})}),Vo("div",{style:{display:"flex",margin:"12px 0",gap:"12px"},children:[He(Cs,{onClick:s,children:a?Vo(Ps,{children:[He(ug,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Copied"]}):Vo(Ps,{children:[He(mg,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Copy"]})}),Vo(Cs,{onClick:c,children:[He(pg,{style:{width:24,height:24},stroke:"var(--privy-color-accent)"}),"Download"]})]})]}),He(vo,{onClick:n,loading:t,hideAnimations:e,children:"Continue"}),He(q,{}),He(B,{protectedByPrivy:!0})]})},yg=(e,t)=>`Your wallet recovery password for ${e} is
|
|
1066
1066
|
|
|
1067
1067
|
${t}
|
|
1068
1068
|
|
|
1069
|
-
You will need this password to access your ${e} wallet on a new device. Please keep it somewhere safe.`;import{CheckCircleIcon as
|
|
1069
|
+
You will need this password to access your ${e} wallet on a new device. Please keep it somewhere safe.`;import{CheckCircleIcon as gg,XCircleIcon as vg}from"@heroicons/react/24/outline";import{Fragment as wg,jsx as Kt,jsxs as xs}from"react/jsx-runtime";var ap=({error:e,onClose:t})=>xs(wg,{children:[Kt(P,{closeable:!1}),Kt($,{}),e?xs(yt,{children:[Kt(vg,{stroke:"var(--privy-color-error)",width:"64px",height:"64px"}),Kt(we,{title:"Something went wrong",description:e})]}):xs(yt,{children:[Kt(gg,{stroke:"var(--privy-color-success)",width:"64px",height:"64px"}),Kt(we,{title:"Success"})]}),Kt(L,{onClick:t,children:"Close"}),Kt(q,{}),Kt(B,{protectedByPrivy:!0})]});import{useReducer as Cg}from"react";var bg=(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}},sp=()=>{let[e,t]=Cg(bg,"creating");return{send:t,state:e}};import{jsx as vn}from"react/jsx-runtime";var Oi=({onSubmit:e,...t})=>{let{send:o,state:r}=sp(),n=lp(async()=>{r==="finalizing"&&await e(),o("next")},[r,o,e]);Eg(()=>{let a;return r==="done"&&t.config.initiatedBy==="automatic"&&(a=setTimeout(()=>t.onClose?.(),je)),()=>{a&&clearTimeout(a)}},[r,t.config.initiatedBy,t.onClose]);let i=lp(()=>{o("back")},[o]);return r==="creating"?vn(rp,{...t,onSubmit:n}):r==="saving"?vn(ip,{...t,onSubmit:n,onBack:i}):r==="confirming"?vn(Gd,{...t,onSubmit:n,onBack:i}):r==="finalizing"?vn(jd,{...t,onSubmit:n,onBack:i}):r==="done"?vn(ap,{...t,onSubmit:n}):null};import{Fragment as Sg,jsx as Rr,jsxs as dp}from"react/jsx-runtime";var Tg=250,pp=()=>{let{app:e,navigate:t,data:o,onUserCloseViaDialogOrKeybindRef:r}=T(),[n,i]=wn(""),[a,l]=wn(!1),[s,c]=wn(),[u,h]=wn(null),[w,m]=wn(null),v=xg(!1),{authenticated:y,getAccessToken:x}=G(),{refreshUser:E,closePrivyModal:I,createAnalyticsEvent:M,isNewUserThisSession:k,initializeWalletProxy:A}=R(),{onSuccess:W,onFailure:N,callAuthOnSuccessOnClose:O}=o.createWallet,H=e?.embeddedWallets.requireUserPasswordOnCreate===!0,D=!!(!n||v.current)&&!H,_=new nt(async()=>ue());cp(()=>{u||A(3e4).then(F=>h(F))},[u]),cp(()=>{if(!y){t("LANDING"),N(new Error("User must be authenticated before creating a Privy wallet"));return}!H&&!a&&!v.current&&(l(!0),_.execute().finally(()=>l(!1)))},[H,y]);let ee=()=>{H&&w&&w?.recoveryMethod!=="user-passcode"?N(new Ve("User created a wallet but failed to set a password for it")):w?W(w):N(new Ve("User wallet creation failed")),I({shouldCallAuthOnSuccess:O})};r.current=()=>null;let ue=async function(){let F=await x();if(F)try{if(M("embedded_wallet_creation_started"),!await(await A(nr))?.create({accessToken:F,recoveryPassword:s}))throw M("embedded_wallet_creation_failed",{error:"walletProxy did not send a response."}),new Error("Unable to create wallet");let fe=await E(),se=ne(fe);if(!se)throw M("embedded_wallet_creation_failed",{error:"Updated user is missing embedded wallet."}),new Error("Unable to create wallet");m(se),M("embedded_wallet_creation_completed",{walletAddress:se.address}),i(""),v.current=!0,H?t("EMBEDDED_WALLET_CREATED_SCREEN"):k?t("EMBEDDED_WALLET_CREATED_SCREEN"):se&&(W(se),I({shouldCallAuthOnSuccess:O}))}catch(xe){if(v.current)return;i("An error has occurred, please try again."),console.warn(xe)}else i("An error has occured, please login again."),M("embedded_wallet_creation_failed",{error:"Missing access token for user."})},Ge=async()=>H?(l(!0),_.execute().then(()=>new Promise(F=>setTimeout(F,Tg))).finally(()=>l(!1))):I({shouldCallAuthOnSuccess:O});return!H&&n?dp(Sg,{children:[Rr(P,{closeable:!1}),dp(yt,{children:[Rr(Pg,{fill:"var(--privy-color-error)",stroke:"white",strokeWidth:".25px",width:"64px",height:"64px"}),Rr(we,{title:"Something went wrong",description:n})]}),Rr(L,{onClick:ee,children:"Close"})]}):D?Rr(wr,{}):Rr(Oi,{config:{initiatedBy:"automatic"},appName:e?.name||"privy",loading:D||!u,buttonLoading:a,buttonHideAnimations:!w&&a,error:n,password:s||"",onClose:ee,onPasswordChange:c,onPasswordGenerate:()=>c(Ni()),onSubmit:Ge})};import{useEffect as _g,useState as Di}from"react";import{jsx as kg}from"react/jsx-runtime";var up=()=>{let[e,t]=Di(null),[o,r]=Di(!1),[n,i]=Di(null),[a,l]=Di(""),{authenticated:s,getAccessToken:c,user:u}=G(),{walletProxy:h,refreshUser:w,closePrivyModal:m,createAnalyticsEvent:v}=R(),{app:y,navigate:x,data:E,onUserCloseViaDialogOrKeybindRef:I}=T(),{onSuccess:M,onFailure:k}=E.createWallet,A=ne(u),W=e?.recoveryMethod==="user-passcode";_g(()=>{s||(x("LANDING"),k(new Yn("User must be authenticated before setting a password on a Privy wallet")))},[s]);let N=()=>{if(n){k(n),m({shouldCallAuthOnSuccess:!1});return}if(!W){k(new Ve("Exited before password was added to wallet")),m({shouldCallAuthOnSuccess:!1});return}M(e),m({shouldCallAuthOnSuccess:!1})};I.current=N;let O=async()=>{let D=await c();if(D&&A?.address&&a&&h)try{if(v("embedded_wallet_set_password_started",{walletAddress:A.address}),!(await h.setRecoveryPassword({accessToken:D,address:A.address,recoveryPassword:a})).address){i(new Ve("Error setting password on privy wallet")),v("embedded_wallet_set_password_failed",{walletAddress:A.address,reason:"error setting password"});return}let ee=await w(),ue=ne(ee);if(!ue){i(new Ve("Error setting password on privy wallet")),v("embedded_wallet_set_password_failed",{walletAddress:A.address,reason:"wallet disconnected"});return}t(ue),v("embedded_wallet_set_password_completed",{walletAddress:A.address})}catch(_){console.warn(_),i(_ instanceof Error?_:new Error("Error setting password on privy wallet")),v("embedded_wallet_set_password_failed",{walletAddress:A.address,reason:_})}},H=async()=>{W?(M(e),m({shouldCallAuthOnSuccess:!1})):(r(!0),i(null),await O(),r(!1))};return kg(Oi,{appName:y?.name||"privy",config:{initiatedBy:"user",onCancel:N},error:n?"An error has occurred, please try again.":void 0,buttonLoading:o,buttonHideAnimations:!1,password:a,onPasswordGenerate:()=>l(Ni()),onPasswordChange:l,onSubmit:H,onClose:N})};import{UserCircleIcon as Ag}from"@heroicons/react/24/outline";import{LockClosedIcon as Rg}from"@heroicons/react/24/solid";import{Fragment as Ig,jsx as Yt,jsxs as Ui}from"react/jsx-runtime";var mp=()=>{let{user:e}=G(),{closePrivyModal:t,createAnalyticsEvent:o}=R(),{data:r,setModalData:n,navigate:i,onUserCloseViaDialogOrKeybindRef:a}=T(),{onSuccess:l,onFailure:s}=r.setWalletPassword,c=()=>{s(new Ve("Exited before password was added to wallet")),t({shouldCallAuthOnSuccess:!1})};return a.current=c,Ui(Ig,{children:[Yt(P,{onClose:c}),Yt($,{}),Ui(yt,{children:[Ui(Qc,{children:[Yt(Ag,{stroke:"var(--privy-color-accent)",width:"64px",height:"64px"}),Yt(Xc,{style:{width:24,height:24,position:"absolute",bottom:0,right:0},children:Yt(Rg,{width:"12px",height:"12px",fill:"white"})})]}),Ui(we,{title:"Secure Your Account",children:["Please set a password to secure your account.",Yt("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."})]})]}),Yt(L,{onClick:()=>{let h=ne(e);o("embedded_wallet_set_password_started",{walletAddress:h?.address}),n({createWallet:{onFailure:s,onSuccess:l,callAuthOnSuccessOnClose:!1,addPasswordToExistingWallet:!0}}),i("EMBEDDED_WALLET_PASSWORD_UPDATE_SCREEN")},children:"Add password"}),Yt(q,{}),Yt(B,{protectedByPrivy:!0})]})};import{ShieldCheckIcon as Wg}from"@heroicons/react/24/outline";import{useEffect as Mg,useState as Fi}from"react";import Bi,{css as Lg}from"styled-components";import{Fragment as Fg,jsx as We,jsxs as $o}from"react/jsx-runtime";var fp=()=>{let[e,t]=Fi(!0),{authenticated:o,getAccessToken:r}=G(),{walletProxy:n,closePrivyModal:i,createAnalyticsEvent:a}=R(),{navigate:l,data:s,onUserCloseViaDialogOrKeybindRef:c}=T(),[u,h]=Fi(void 0),[w,m]=Fi(""),[v,y]=Fi(!1),{privyWallet:x,onCompleteNavigateTo:E,onSuccess:I,onFailure:M}=s.recoverWallet,k=(N="User exited before their wallet could be recovered")=>{i({shouldCallAuthOnSuccess:!1}),M(typeof N=="string"?new Ve(N):N)};c.current=k,Mg(()=>{if(!o||!x)return k("User must be authenticated and have a Privy wallet before it can be recovered")},[o]);let A=N=>{N&&h(N)};return $o(Fg,{children:[We(P,{onClose:k}),We($,{}),$o(Og,{children:[$o(Ng,{children:[We(Wg,{height:48,width:48,stroke:"var(--privy-color-accent)"}),We("h3",{style:{color:"var(--privy-color-foreground)"},children:"Load your account"}),We("p",{style:{color:"var(--privy-color-foreground-2)"},children:"Please provision your account on this new device. To continue, enter your recovery password."})]}),$o("div",{children:[$o(wo,{children:[We(zo,{type:e?"password":"text",onChange:N=>A(N.target.value),disabled:v}),We(_r,{style:{right:"0.75rem"},children:e?We(kr,{onClick:()=>t(!1)}):We(Ar,{onClick:()=>t(!0)})})]}),!!w&&We(Dg,{children:w})]}),$o("div",{children:[$o(Zc,{children:[We("h4",{children:"Why is this necessary?"}),We("p",{children:"You previously set a password for this wallet. This helps ensure only you can access it"})]}),We(Ug,{loading:v||!n,disabled:!u,onClick:async()=>{y(!0);let N=await r();if(N&&x&&u!==null)try{a("embedded_wallet_recovery_started",{walletAddress:x.address}),await n?.recover({address:x.address,accessToken:N,recoveryPin:u}),m(""),E?l(E):i({shouldCallAuthOnSuccess:!1}),I?.(x),a("embedded_wallet_recovery_completed",{walletAddress:x.address})}catch(O){Sd(O)?m("Invalid recovery password, please try again."):m("An error has occurred, please try again.")}finally{y(!1)}else return k("User must be authenticated and have a Privy wallet before it can be recovered")},warn:!1,hideAnimations:!x&&v,children:"Recover your account"})]})]}),We(q,{}),We(B,{protectedByPrivy:!0})]})},Ng=Bi.div`
|
|
1070
1070
|
display: flex;
|
|
1071
1071
|
flex-direction: column;
|
|
1072
1072
|
align-items: center;
|
|
@@ -1088,26 +1088,26 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1088
1088
|
font-weight: 400;
|
|
1089
1089
|
line-height: 20px;
|
|
1090
1090
|
}
|
|
1091
|
-
`,
|
|
1091
|
+
`,Og=Bi.div`
|
|
1092
1092
|
display: flex;
|
|
1093
1093
|
flex-direction: column;
|
|
1094
1094
|
justify-content: space-between;
|
|
1095
|
-
`,
|
|
1095
|
+
`,Dg=Bi.div`
|
|
1096
1096
|
line-height: 20px;
|
|
1097
1097
|
height: 20px;
|
|
1098
1098
|
font-size: 13px;
|
|
1099
1099
|
color: var(--privy-color-error);
|
|
1100
1100
|
text-align: left;
|
|
1101
1101
|
margin-top: 0.5rem;
|
|
1102
|
-
`,
|
|
1103
|
-
${e=>e.hideAnimations&&
|
|
1102
|
+
`,Ug=Bi(L)`
|
|
1103
|
+
${e=>e.hideAnimations&&Lg`
|
|
1104
1104
|
&& {
|
|
1105
1105
|
// Remove animations because the recoverWallet task on the iframe partially
|
|
1106
1106
|
// blocks the renderer, so the animation stutters and doesn't look good
|
|
1107
1107
|
transition: none;
|
|
1108
1108
|
}
|
|
1109
1109
|
`}
|
|
1110
|
-
`;import{EyeSlashIcon as
|
|
1110
|
+
`;import{EyeSlashIcon as Hg,LinkIcon as Gg,ClockIcon as zg}from"@heroicons/react/24/outline";import It from"styled-components";import{jsx as Ts,jsxs as Bg}from"react/jsx-runtime";var Hi=({size:e=61,...t})=>Ts("svg",{width:e,height:e,viewBox:"0 0 61 61",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:Bg("g",{id:"moonpay_symbol_wht 2",children:[Ts("rect",{x:"1.3374",y:"1",width:"59",height:"59",rx:"11.5",fill:"#7715F5"}),Ts("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 hp,jsx as Me,jsxs as qo}from"react/jsx-runtime";var Ss=({title:e,desc:t,icon:o})=>qo(Yg,{children:[Me(Zg,{children:o}),qo(Jg,{children:[Me(jg,{children:e}),Me(Kg,{children:t})]})]}),yp=({app:e,signedUrl:t,onContinue:o})=>qo(hp,{children:[qo($g,{children:[Me(Hi,{size:"3.75rem"}),qo(qg,{children:[e?.name," uses ",Me("span",{style:{fontWeight:"bold"},children:"Moonpay"})," to fund your account"]}),qo(Qg,{children:[Me(Ss,{icon:Me(Gg,{width:"1rem"}),title:"Purchase assets to fund your account",desc:qo(hp,{children:["Connect a payment method (",Me("strong",{children:"debit card recommended"}),") to purchase digital assets."]})}),Me(Ss,{icon:Me(zg,{width:"1rem"}),title:"Compliance takes time",desc:"Funding a new account may take a few hours. You'll be good to go thereafter."}),Me(Ss,{icon:Me(Hg,{width:"1rem"}),title:"Your data belongs to you",desc:"MoonPay does not sell your data and will only use it with your permission."})]}),Me(Xg,{className:"mobile-only"})]}),Me(Vg,{children:'By clicking continue, you will be taken to MoonPay in a new tab"'}),Me(Ci,{href:t,target:"_blank",rel:"noopener noreferrer",onClick:o,children:"Continue to Moonpay"})]}),Vg=It.span`
|
|
1111
1111
|
display: inline-block;
|
|
1112
1112
|
color: var(--privy-color-foreground-3);
|
|
1113
1113
|
text-align: center;
|
|
@@ -1116,13 +1116,13 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1116
1116
|
font-weight: 400;
|
|
1117
1117
|
line-height: 140%; /* 0.875rem */
|
|
1118
1118
|
margin-bottom: 0.25rem;
|
|
1119
|
-
|
|
1119
|
+
`,$g=It.div`
|
|
1120
1120
|
display: flex;
|
|
1121
1121
|
flex-direction: column;
|
|
1122
1122
|
align-items: center;
|
|
1123
1123
|
justify-content: center;
|
|
1124
1124
|
padding: 1.5rem 0;
|
|
1125
|
-
`,
|
|
1125
|
+
`,qg=It.span`
|
|
1126
1126
|
color: var(--privy-color-foreground);
|
|
1127
1127
|
text-align: center;
|
|
1128
1128
|
font-size: 1.125rem;
|
|
@@ -1131,46 +1131,46 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1131
1131
|
margin: 1.5rem 0;
|
|
1132
1132
|
text-align: center;
|
|
1133
1133
|
max-width: 19.5rem;
|
|
1134
|
-
`,
|
|
1134
|
+
`,jg=It.span`
|
|
1135
1135
|
color: var(--privy-color-foreground);
|
|
1136
1136
|
font-size: 0.875rem;
|
|
1137
1137
|
font-weight: 500;
|
|
1138
1138
|
line-height: 1.225rem;
|
|
1139
1139
|
width: 100%;
|
|
1140
|
-
`,
|
|
1140
|
+
`,Kg=It.span`
|
|
1141
1141
|
color: var(--privy-color-foreground-2);
|
|
1142
1142
|
font-size: 0.875rem;
|
|
1143
1143
|
font-weight: 400;
|
|
1144
1144
|
line-height: 1.225rem;
|
|
1145
|
-
|
|
1145
|
+
`,Yg=It.div`
|
|
1146
1146
|
display: flex;
|
|
1147
1147
|
align-items: flex-start;
|
|
1148
1148
|
gap: 0.5rem;
|
|
1149
1149
|
align-self: stretch;
|
|
1150
|
-
`,
|
|
1150
|
+
`,Jg=It.div`
|
|
1151
1151
|
display: flex;
|
|
1152
1152
|
flex-direction: column;
|
|
1153
1153
|
gap: 0.25rem;
|
|
1154
1154
|
align-items: flex-start;
|
|
1155
1155
|
text-align: left;
|
|
1156
1156
|
flex: 1 0 0;
|
|
1157
|
-
`,
|
|
1157
|
+
`,Zg=It.div`
|
|
1158
1158
|
padding-top: 2px;
|
|
1159
|
-
`,
|
|
1159
|
+
`,Qg=It.div`
|
|
1160
1160
|
display: flex;
|
|
1161
1161
|
flex-direction: column;
|
|
1162
1162
|
gap: 1.25rem;
|
|
1163
1163
|
margin: 0 0.5rem;
|
|
1164
|
-
`,
|
|
1164
|
+
`,Xg=It.div`
|
|
1165
1165
|
margin: 30px 0;
|
|
1166
|
-
`;import{ofetch as
|
|
1166
|
+
`;import{ofetch as e1}from"ofetch";import{useEffect as t1,useRef as o1,useState as r1}from"react";var Gi="moonpay",gp="sdk_fiat_on_ramp_completed_with_status";async function vp(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 n1(e,t){let o=t?ec:Xl,r=t?oc:tc;return e1(`${o}/transactions/ext/${e}`,{query:{apiKey:r}})}function wp(e,t=!1){let[o,r]=r1(null),{createAnalyticsEvent:n}=R(),i=o1(0);return t1(()=>{let a=setInterval(async()=>{if(e)try{let[l]=await n1(e,t),s=l.status==="waitingAuthorization"&&l.paymentMethod==="credit_debit_card"?"pending":l.status;r(s),["failed","completed","awaitingAuthorization"].includes(s)&&(n(gp,{status:s,provider:Gi,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(gp,{status:"serviceFailure",provider:Gi}),clearInterval(a))}},3e3);return()=>clearInterval(a)},[e,i]),o}import{Fragment as i1,jsx as _s,jsxs as a1}from"react/jsx-runtime";var Cp=()=>{let{app:e,data:t,navigate:o}=T(),{createAnalyticsEvent:r}=R(),{signedUrl:n}=t.fiatOnRampPrompt;return!e||!n?null:a1(i1,{children:[_s(P,{title:"Fund account"},"header"),_s(yp,{app:e,signedUrl:n,onContinue:()=>{r("sdk_fiat_on_ramp_started",{provider:Gi}),o("FIAT_ON_RAMP_STATUS_SCREEN")}}),_s(B,{protectedByPrivy:!0})]})};import{ArrowsRightLeftIcon as s1,CheckCircleIcon as l1,XCircleIcon as c1}from"@heroicons/react/24/solid";import{useMemo as d1}from"react";import bp from"styled-components";import{Fragment as ks,jsx as Le,jsxs as jo}from"react/jsx-runtime";var Ep=()=>{let{app:e,data:t}=T(),{closePrivyModal:o}=R(),{externalTransactionId:r}=t?.fiatOnRampStatus,n=wp(r||null,e.fiatOnRamp.useSandbox);return jo(ks,{children:[Le(P,{title:"Fund account"},"header"),Le(u1,{status:n,onClickCta:o}),Le(B,{protectedByPrivy:!0})]})},p1=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:jo(ks,{children:[jo("p",{children:["It looks like there was an issue with your payment. Please contact"," ",Le("a",{href:"https://support.moonpay.com/hc/en-gb",target:"_blank",rel:"noreferrer noopener",style:{textDecoration:"underline"},children:"Moonpay support"})," ","for assistance."]}),Le("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:""}}},u1=({status:e,onClickCta:t})=>{let{title:o,body:r,cta:n}=d1(()=>p1(e),[e]);return jo(ks,{children:[jo(g1,{children:[Le(h1,{status:e}),jo(mo,{children:[Le("h3",{children:o}),Le(y1,{children:r})]})]}),n&&Le(L,{onClick:t,children:n})]})},m1=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)",f1=e=>{switch(e){case"serviceFailure":case"failed":return c1;case"completed":return l1;case"waitingAuthorization":return()=>Le(s1,{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}},h1=({status:e})=>{if(!e||e==="pending"){let r="var(--privy-color-foreground-4)";return jo("div",{style:{position:"relative"},children:[Le(it,{color:r,style:{position:"absolute"}}),Le(es,{color:r}),Le(Hi,{size:"3rem",style:{position:"absolute",top:"1rem",left:"1rem"}})]})}let t=f1(e),o=m1(e);return Le("div",{style:{borderColor:o,display:"flex",justifyContent:"center",alignItems:"center",borderRadius:"100%",borderWidth:2,padding:"0.5rem",marginBottom:"0.5rem"},children:t&&Le(t,{width:"4rem",height:"4rem",color:o})})},y1=bp.p`
|
|
1167
1167
|
font-size: 1rem;
|
|
1168
1168
|
color: var(--privy-color-foreground-3);
|
|
1169
1169
|
margin-bottom: 1rem;
|
|
1170
1170
|
display: flex;
|
|
1171
1171
|
flex-direction: column;
|
|
1172
1172
|
gap: 1rem;
|
|
1173
|
-
`,
|
|
1173
|
+
`,g1=bp.div`
|
|
1174
1174
|
display: flex;
|
|
1175
1175
|
flex-direction: column;
|
|
1176
1176
|
align-items: center;
|
|
@@ -1178,18 +1178,18 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1178
1178
|
margin-left: 1.75rem;
|
|
1179
1179
|
margin-right: 1.75rem;
|
|
1180
1180
|
padding: 2rem 0;
|
|
1181
|
-
`;import*as
|
|
1181
|
+
`;import*as Sp from"react-device-detect";import b1 from"styled-components";import As from"styled-components";import{jsx as Pp}from"react/jsx-runtime";var xp=({style:e,...t})=>Pp("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:Pp("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 w1,jsxs as C1}from"react/jsx-runtime";var Tp=As.div`
|
|
1182
1182
|
display: flex;
|
|
1183
1183
|
flex-direction: column;
|
|
1184
1184
|
justify-content: flex-start;
|
|
1185
1185
|
gap: 4px;
|
|
1186
|
-
`,
|
|
1186
|
+
`,Rs=As.div`
|
|
1187
1187
|
&&& {
|
|
1188
1188
|
margin-left: 7px; /* TODO: This is a total hack */
|
|
1189
1189
|
border-left: 2px solid var(--privy-color-foreground-4);
|
|
1190
1190
|
height: 12px;
|
|
1191
1191
|
}
|
|
1192
|
-
`,
|
|
1192
|
+
`,zi=({children:e})=>C1(v1,{children:[w1(xp,{style:{width:"16px",height:"16px"}}),e]}),v1=As.div`
|
|
1193
1193
|
display: flex;
|
|
1194
1194
|
justify-content: flex-start;
|
|
1195
1195
|
justify-items: center;
|
|
@@ -1207,15 +1207,15 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1207
1207
|
margin-bottom: auto;
|
|
1208
1208
|
}
|
|
1209
1209
|
}
|
|
1210
|
-
`;import{Fragment as
|
|
1210
|
+
`;import{Fragment as x1,jsx as Pe,jsxs as Cn}from"react/jsx-runtime";var E1=()=>{let{navigate:e}=T(),t="https://chrome.google.com/webstore/detail/phantom/bfnaelmomeimhlpmgjnjophhpkkoljpa?hl=en";return Sp.isFirefox&&(t="https://addons.mozilla.org/en-US/firefox/addon/phantom-app/"),Cn(P1,{children:[Pe(an,{title:"Create a Phantom wallet",description:"Follow the instructions below to get started."}),Pe(Vt,{children:Pe(po,{style:{width:"152px",height:"152px"}})}),Cn(Tp,{children:[Pe(zi,{children:Cn("div",{children:[Pe("span",{children:"Install the "}),Pe("a",{href:t,target:"_blank",children:"Phantom browser extension"})]})}),Pe(Rs,{}),Pe(zi,{children:"Set up your first wallet"}),Pe(Rs,{}),Pe(zi,{children:"Store your recovery phrase in a safe place!"})]}),Pe(bi,{onClick:()=>e("LANDING"),children:"Done! I have my wallet"})]})},_p=()=>{let{navigateBack:e}=T();return Cn(x1,{children:[Pe(P,{backFn:e},"header"),Pe($,{}),Pe(E1,{}),Pe(q,{}),Cn(K,{children:[Pe("span",{children:"Still not sure? "}),Pe("a",{target:"_blank",href:"https://ethereum.org/en/wallets/",children:"Learn more"})]})]})},P1=b1(Vt)`
|
|
1211
1211
|
gap: 30px;
|
|
1212
1212
|
|
|
1213
1213
|
> :first-child > svg {
|
|
1214
1214
|
margin-top: 20px;
|
|
1215
1215
|
}
|
|
1216
|
-
`;import
|
|
1216
|
+
`;import yv from"@heroicons/react/24/outline/EnvelopeIcon";import gv from"@heroicons/react/24/outline/PhoneIcon";import vv from"@heroicons/react/24/outline/UserCircleIcon";import{useEffect as wv,useState as Kp}from"react";import Cv from"styled-components";import{jsx as bn,jsxs as kp}from"react/jsx-runtime";var Ap=({...e})=>kp("svg",{xmlns:"http://www.w3.org/2000/svg",width:"25",height:"25",viewBox:"0 0 25 25",fill:"none",...e,children:[kp("g",{clipPath:"url(#clip0_2856_1743)",children:[bn("path",{d:"M22.1673 8.24075V16.3642C22.1673 17.3256 21.3421 18.105 20.3241 18.105H17.0028M22.1673 8.24075C22.1673 7.27936 21.3421 6.5 20.3241 6.5H11.5302M22.1673 8.24075V8.42852C22.1673 9.03302 21.8352 9.59423 21.2901 9.91105L15.1463 13.4818C14.5539 13.8261 13.8067 13.8261 13.2143 13.4818L10.1621 11.5401",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),bn("path",{d:"M3.12913 6.64816C0.508085 12.9507 3.49251 20.1847 9.79504 22.8057L11.5068 23.5176C12.4522 23.9108 13.7783 23.2222 14.1714 22.2768L14.6054 21.2333C14.7687 20.8406 14.6438 20.3871 14.3024 20.1334L11.2872 17.8927C10.9878 17.6702 10.5843 17.6488 10.2632 17.8384L9.11575 18.5156C8.78274 18.7121 8.3597 18.6844 8.07552 18.4221C5.94293 16.4542 4.77629 13.6264 4.90096 10.7273C4.91757 10.3409 5.19796 10.023 5.57269 9.92753L6.86381 9.59869C7.22522 9.50664 7.49627 9.20696 7.55169 8.83815L8.10986 5.12321C8.17306 4.70259 7.94188 4.29293 7.54915 4.1296L6.50564 3.69564C5.56026 3.30248 4.23416 3.99103 3.84101 4.9364L3.12913 6.64816Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})]}),bn("defs",{children:bn("clipPath",{id:"clip0_2856_1743",children:bn("rect",{x:"0.5",y:"0.5",width:"24",height:"24",rx:"6",fill:"white"})})})]});import F1 from"@heroicons/react/24/outline/EnvelopeIcon";import{useRef as B1}from"react";import{EnvelopeIcon as M1}from"@heroicons/react/24/outline";import{forwardRef as L1,useState as Is}from"react";import Ms from"styled-components";import{useMemo as T1}from"react";import{useRef as S1}from"react";import{useContext as _1}from"react";import{useState as Rp}from"react";import{createContext as k1}from"react";import{jsx as A1}from"react/jsx-runtime";var Ip=k1({siteKey:"",enabled:!1,appId:void 0,token:void 0,error:void 0,status:"disabled",setToken:b,setError:b,waitForResult:()=>Promise.resolve(""),ref:{current:null},remove:b,reset:b}),En=class extends ze{constructor(o,r,n){super(o||"Captcha failed");this.type="Captcha";r instanceof Error&&(this.cause=r),this.privyErrorCode=n}},Wp=({children:e,id:t,captchaSiteKey:o,captchaEnabled:r})=>{let n=S1(null),[i,a]=Rp(),[l,s]=Rp(),c=T1(()=>r?!i&&!l?{status:"loading"}:i&&!l?{status:"success",token:i}:l?{status:"error",error:l}:{status:"ready"}:{status:"disabled"},[r,i,l]);return A1(Ip.Provider,{value:{...c,ref:n,enabled:r,siteKey:o,appId:t,setToken:a,setError:s,remove(){r&&(n.current?.remove(),s(void 0),a(void 0))},reset(){r&&(n.current?.reset(),s(void 0),a(void 0))},async waitForResult(){if(!r)return"";try{return await dc(()=>n.current?.getResponse(),{interval:200,timeout:2e4})}catch{throw new En("Captcha failed",null,"captcha_timeout")}}},children:e})},Wt=()=>_1(Ip);import{Turnstile as R1}from"@marsidev/react-turnstile";import{useEffect as I1,useMemo as W1}from"react";import{jsx as Mp}from"react/jsx-runtime";var Pn=e=>{let{enabled:t,siteKey:o,appId:r,setError:n,setToken:i,ref:a}=Wt(),[,l]=W1(()=>o?.split("t:")||[],[o]);if(I1(()=>a.current?.remove,[]),!t)return null;if(!l)throw new Error("Unsupported captcha site key");return Mp("div",{className:"hidden h-0 w-0",children:Mp(R1,{...e,ref:a,siteKey:l,options:{action:r,size:"invisible"},onUnsupported:()=>{e.onUnsupported?.(),console.warn("Browser does not support Turnstile.")},onError:()=>{e.onError?.(),n("Captcha failed")},onSuccess:s=>{e.onSuccess?.(s),i(s)},onExpire:()=>{e.onExpire?.();try{a.current?.reset(),n(void 0),i(void 0)}catch{n("expired_and_failed_reset")}}})})};import{Fragment as U1,jsx as Ir,jsxs as Ws}from"react/jsx-runtime";var Vi=L1((e,t)=>{let[o,r]=Is(""),[n,i]=Is(!1),[a,l]=Is(null),{initLoginWithEmail:s}=R(),{navigate:c}=T(),u=Wt(),h=lc(o),w=n||u.status==="loading",m=n||!h||u.enabled&&u.status!=="success",v=()=>{let y=u.status==="success"?u.token:void 0;i(!0),s(o,y).then(()=>{u.remove(),c("AWAITING_PASSWORDLESS_CODE")}).catch(x=>{x?.status===422?l(x.message):x?.privyErrorCode==="allowlist_rejected"?c("ALLOWLIST_REJECTION_SCREEN"):(console.error(x),l("Issue submitting email")),i(!1)})};return Ws(U1,{children:[Ws(N1,{children:[Ws(O1,{children:[Ir(M1,{}),Ir("input",{ref:t,id:"email-input",type:"email",placeholder:"your@email.com",onChange:y=>r(y.target.value),onKeyUp:y=>{y.key==="Enter"&&v()},value:o,autoComplete:"email"}),e.stacked?null:Ir(Ei,{isSubmitting:w,onClick:v,disabled:m,children:"Submit"})]}),a&&Ir(D1,{children:a})]}),Ir(Pn,{onError:()=>l("Issue verifying you are a human")}),e.stacked?Ir(L,{loadingText:null,loading:w,disabled:m,onClick:v,children:"Submit"}):null]})}),N1=Ms.div`
|
|
1217
1217
|
width: 100%;
|
|
1218
|
-
`,
|
|
1218
|
+
`,O1=Ms.label`
|
|
1219
1219
|
display: block;
|
|
1220
1220
|
position: relative;
|
|
1221
1221
|
width: 100%;
|
|
@@ -1275,7 +1275,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1275
1275
|
&& > input::placeholder {
|
|
1276
1276
|
color: var(--privy-color-foreground-3);
|
|
1277
1277
|
}
|
|
1278
|
-
`,
|
|
1278
|
+
`,D1=Ms.div`
|
|
1279
1279
|
font-size: 13px;
|
|
1280
1280
|
color: var(--privy-color-error);
|
|
1281
1281
|
text-align: left;
|
|
@@ -1285,9 +1285,9 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1285
1285
|
> a {
|
|
1286
1286
|
text-decoration: underline;
|
|
1287
1287
|
}
|
|
1288
|
-
`;import{Fragment as
|
|
1288
|
+
`;import{Fragment as H1,jsx as $i,jsxs as Lp}from"react/jsx-runtime";var Np=({isEditable:e,setIsEditable:t})=>{let o=B1(null);return Lp(H1,{children:[$i(fr,{if:!e,children:$i(Vi,{ref:o})}),$i(fr,{if:e,children:Lp(lt,{onClick:()=>{t(),setTimeout(()=>{o.current?.focus()},0)},children:[$i(F1,{})," Continue with Email"]})})]})};import tv from"@heroicons/react/24/outline/PhoneIcon";import{useRef as ov}from"react";import{forwardRef as J1,useState as ji}from"react";import Os from"styled-components";import G1 from"libphonenumber-js/examples.mobile.json";import{isPossiblePhoneNumber as z1,AsYouType as V1,getCountries as $1,getCountryCallingCode as qi,getExampleNumber as q1}from"libphonenumber-js/min";import{jsx as Y1,jsxs as K1}from"react/jsx-runtime";var xn=(e,t)=>z1(String(e),t),Ls=(e,t)=>`+${qi(t)} ${e}`,Op=e=>`*${e.replaceAll("-","").slice(-4)}`,Dp=e=>new V1(e),j1=$1().map(e=>({code:e,callCode:qi(e)})),Up=e=>q1(e,G1)?.formatNational(),Fp=({value:e,onChange:t})=>Y1("select",{value:e,onChange:t,children:j1.map(o=>K1("option",{value:o.code,children:[o.code," +",o.callCode]},o.code))});import{Fragment as ev,jsx as Wr,jsxs as Ns}from"react/jsx-runtime";var Mr=J1((e,t)=>{let{initLoginWithSms:o}=R(),{navigate:r,app:n}=T(),i=Wt(),[a,l]=ji(""),[s,c]=ji(n?.intl.defaultCountry??"US"),[u,h]=ji(!1),[w,m]=ji(null),v=xn(a,s),y=Dp(s),x=Up(s),E=qi(s),I=u||i.status==="loading",M=u||!v||i.enabled&&i.status!=="success",k=E.length,A=O=>{let H=O.target.value;c(H),l(""),e.onChange&&e.onChange(a,H)},W=O=>{try{let H=O.replace(/\D/g,""),D=a.replace(/\D/g,""),_=H===D?O:y.input(O);l(_),e.onChange&&e.onChange(_,s)}catch(H){console.error("Error processing phone number:",H)}},N=()=>{let O=i.status==="success"?i.token:void 0;h(!0);let H=`+${E} ${a}`;e.onSubmitOverride?e.onSubmitOverride(H).catch(D=>{console.error(D),m("Issue submitting phone number"),h(!1)}):o(H,O).then(()=>{i.remove(),r("AWAITING_PASSWORDLESS_CODE")}).catch(D=>{D?.status===422?m(D.message):D?.privyErrorCode==="allowlist_rejected"?r("ALLOWLIST_REJECTION_SCREEN"):(console.error(D),m("Issue submitting phone number")),h(!1)})};return Ns(ev,{children:[Ns(Z1,{children:[Ns(Q1,{callingCodeLength:k,children:[Wr(Fp,{value:s,onChange:A}),Wr("input",{ref:t,id:"phone-number-input",type:"tel",placeholder:x,onChange:O=>{W(O.target.value)},onKeyUp:O=>{O.key==="Enter"&&N()},value:a,autoComplete:"tel"}),!e.stacked&&!e.noIncludeSubmitButton?Wr(Ei,{isSubmitting:I,onClick:N,disabled:M,children:"Submit"}):null]}),w&&Wr(X1,{children:w})]}),Wr(Pn,{onError:()=>m("Issue verifying you are a human")}),e.stacked&&!e.noIncludeSubmitButton?Wr(L,{loading:I,loadingText:null,onClick:N,disabled:M,children:"Submit"}):null]})}),Z1=Os.div`
|
|
1289
1289
|
width: 100%;
|
|
1290
|
-
`,
|
|
1290
|
+
`,Q1=Os.label`
|
|
1291
1291
|
--country-code-dropdown-width: calc(54px + calc(12 * ${e=>e.callingCodeLength}px));
|
|
1292
1292
|
--phone-input-extra-padding-left: calc(12px + calc(3 * ${e=>e.callingCodeLength}px));
|
|
1293
1293
|
display: block;
|
|
@@ -1373,7 +1373,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1373
1373
|
&& > input::placeholder {
|
|
1374
1374
|
color: var(--privy-color-foreground-3);
|
|
1375
1375
|
}
|
|
1376
|
-
`,
|
|
1376
|
+
`,X1=Os.div`
|
|
1377
1377
|
font-size: 13px;
|
|
1378
1378
|
color: var(--privy-color-error);
|
|
1379
1379
|
text-align: left;
|
|
@@ -1383,9 +1383,9 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1383
1383
|
> a {
|
|
1384
1384
|
text-decoration: underline;
|
|
1385
1385
|
}
|
|
1386
|
-
`;import{Fragment as X1,jsx as Yi,jsxs as Up}from"react/jsx-runtime";var Fp=({isEditable:e,setIsEditable:t})=>{let o=Q1(null);return Up(X1,{children:[Yi(mr,{if:!e,children:Yi(Ir,{ref:o})}),Yi(mr,{if:e,children:Up(st,{onClick:()=>{t(),setTimeout(()=>{o.current?.focus()},0)},children:[Yi(Z1,{})," Continue with SMS"]})})]})};import{useState as nv}from"react";import{jsx as Bp,jsxs as ev}from"react/jsx-runtime";var Ji=({style:e,...t})=>ev("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:[Bp("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"}),Bp("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 xn,jsxs as tv}from"react/jsx-runtime";var Zi=({style:e,...t})=>tv("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:[xn("g",{clipPath:"url(#clip0)",children:xn("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"})}),xn("defs",{children:xn("clipPath",{id:"clip0",children:xn("rect",{width:"71",height:"55",fill:"white"})})})]});import{jsx as Hp}from"react/jsx-runtime";var Qi=({style:e,...t})=>Hp("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:Hp("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 Xi,jsxs as ov}from"react/jsx-runtime";var ea=({style:e,...t})=>ov("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:[Xi("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"}),Xi("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"}),Xi("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"}),Xi("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 ta}from"react/jsx-runtime";function oa({style:e,...t}){return ta("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:ta("g",{fill:"#0077b5",strokeWidth:"1",strokeLinecap:"butt",strokeLinejoin:"miter",strokeMiterlimit:"10",style:{mixBlendMode:"normal"},children:ta("g",{transform:"scale(5.12,5.12)",children:ta("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 Us,jsxs as rv}from"react/jsx-runtime";function ra(e){return rv("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:[Us("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"}),Us("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"}),Us("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 Gp}from"react/jsx-runtime";var na=({style:e,...t})=>Gp("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"24px",width:"24px",...e},...t,children:Gp("path",{d:"M 14.285156 10.171875 L 23.222656 0 L 21.105469 0 L 13.34375 8.832031 L 7.148438 0 L 0 0 L 9.371094 13.355469 L 0 24.019531 L 2.117188 24.019531 L 10.308594 14.691406 L 16.851562 24.019531 L 24 24.019531 M 2.878906 1.5625 L 6.132812 1.5625 L 21.101562 22.535156 L 17.851562 22.535156 ",fill:"currentColor"})});import{jsx as qo,jsxs as av}from"react/jsx-runtime";var iv={apple:{logo:qo(Ji,{}),displayName:"Apple"},discord:{logo:qo(Zi,{}),displayName:"Discord"},github:{logo:qo(Qi,{}),displayName:"GitHub"},google:{logo:qo(ea,{}),displayName:"Google"},linkedin:{logo:qo(oa,{}),displayName:"LinkedIn"},twitter:{logo:qo(na,{}),displayName:"Twitter"},tiktok:{logo:qo(ra,{}),displayName:"TikTok"}},vo=({provider:e})=>{let[t,o]=nv(!1),{initLoginWithOAuth:r}=R(),{displayName:n,logo:i}=iv[e];return av(st,{onClick:()=>{o(!0),r(e),o(!1)},disabled:t,children:[i," ",n]})};import sv from"@heroicons/react/24/outline/ChevronRightIcon";import lv from"@heroicons/react/24/outline/WalletIcon";import{jsx as Fs,jsxs as cv}from"react/jsx-runtime";var zp=({onClick:e,text:t})=>cv(st,{onClick:e,children:[Fs(lv,{}),Fs(_i,{children:t}),Fs(sv,{})]});import dv from"@heroicons/react/24/outline/ChevronRightIcon";import{jsx as Vp,jsxs as pv}from"react/jsx-runtime";var $p=({onClick:e,text:t,icon:o})=>pv(st,{onClick:e,children:[o,Vp(_i,{children:t}),Vp(dv,{})]});import{Fragment as Tn,jsx as le,jsxs as Wr}from"react/jsx-runtime";var jp=()=>{let{closePrivyModal:e,connectors:t}=R(),{app:o,onUserCloseViaDialogOrKeybindRef:r}=T(),{email:n,sms:i,google:a,twitter:l,discord:s,github:c,tiktok:u,linkedin:h,apple:w,wallet:m}=o?.loginMethods??{},v=o?.appearance.showWalletLoginFirst?"web3-first":"web2-first",[y,x]=qp("default"),[b,I]=qp(n?"email":"sms");hv(()=>{I(n?"email":"sms")},[n]);let L=()=>{e({shouldCallAuthOnSuccess:!0}),setTimeout(()=>{x("default")},150)};r.current=L;let k=[n&&le(Mp,{isEditable:b==="email",setIsEditable:()=>{I("email")}}),i&&le(Fp,{isEditable:b==="sms",setIsEditable:()=>{I("sms")}})].filter(Boolean),A=[a&&le(vo,{provider:"google"}),l&&le(vo,{provider:"twitter"}),s&&le(vo,{provider:"discord"}),c&&le(vo,{provider:"github"}),u&&le(vo,{provider:"tiktok"}),h&&le(vo,{provider:"linkedin"}),w&&le(vo,{provider:"apple"})].filter(Boolean),W=ps(o?.appearance.supportedWallets??[],t,!1),M=y==="default"?void 0:()=>{x("default")},O=vv({priority:v,email:n,sms:i,social:A}),V=wv({priority:v,email:n,sms:i,social:A}),U=Cv({priority:v,email:n,sms:i,social:A}),_=le(zp,{text:U,onClick:()=>x("web3-overflow")}),J=le($p,{text:O,icon:V,onClick:()=>x("web2-overflow")});return Wr(Tn,{children:[le(P,{title:"Log in or Sign Up",onClose:L,backFn:M}),y==="default"&&le(gv,{}),le(ud,{style:{overflow:"hidden",padding:2},children:Wr(mo,{children:[y==="default"&&v==="web2-first"&&Wr(Tn,{children:[...k,...A.length+k.length>4?A.slice(0,3-k.length):A,k.length+A.length>4&&J,m&&_]}),y==="default"&&v==="web3-first"&&Wr(Tn,{children:[m&&Wr(Tn,{children:[...W.length>4?W.slice(0,3):W,W.length>4&&_]}),k.length+A.length>0&&J]}),y==="web2-overflow"&&Wr(Tn,{children:[...v==="web3-first"?k:[],...A]}),...y==="web3-overflow"?W:[]]})}),o&&le(Ti,{app:o}),le(B,{protectedByPrivy:!0})]})},gv=yv(Ai)`
|
|
1386
|
+
`;import{Fragment as rv,jsx as Ki,jsxs as Bp}from"react/jsx-runtime";var Hp=({isEditable:e,setIsEditable:t})=>{let o=ov(null);return Bp(rv,{children:[Ki(fr,{if:!e,children:Ki(Mr,{ref:o})}),Ki(fr,{if:e,children:Bp(lt,{onClick:()=>{t(),setTimeout(()=>{o.current?.focus()},0)},children:[Ki(tv,{})," Continue with SMS"]})})]})};import{useState as lv}from"react";import{jsx as Gp,jsxs as nv}from"react/jsx-runtime";var Yi=({style:e,...t})=>nv("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:[Gp("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"}),Gp("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 Tn,jsxs as iv}from"react/jsx-runtime";var Ji=({style:e,...t})=>iv("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:[Tn("g",{clipPath:"url(#clip0)",children:Tn("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"})}),Tn("defs",{children:Tn("clipPath",{id:"clip0",children:Tn("rect",{width:"71",height:"55",fill:"white"})})})]});import{jsx as zp}from"react/jsx-runtime";var Zi=({style:e,...t})=>zp("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:zp("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 Qi,jsxs as av}from"react/jsx-runtime";var Xi=({style:e,...t})=>av("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:[Qi("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"}),Qi("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"}),Qi("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"}),Qi("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 ea}from"react/jsx-runtime";function ta({style:e,...t}){return ea("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:ea("g",{fill:"#0077b5",strokeWidth:"1",strokeLinecap:"butt",strokeLinejoin:"miter",strokeMiterlimit:"10",style:{mixBlendMode:"normal"},children:ea("g",{transform:"scale(5.12,5.12)",children:ea("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 Ds,jsxs as sv}from"react/jsx-runtime";function oa(e){return sv("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:[Ds("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"}),Ds("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"}),Ds("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 Vp}from"react/jsx-runtime";var ra=({style:e,...t})=>Vp("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"24px",width:"24px",...e},...t,children:Vp("path",{d:"M 14.285156 10.171875 L 23.222656 0 L 21.105469 0 L 13.34375 8.832031 L 7.148438 0 L 0 0 L 9.371094 13.355469 L 0 24.019531 L 2.117188 24.019531 L 10.308594 14.691406 L 16.851562 24.019531 L 24 24.019531 M 2.878906 1.5625 L 6.132812 1.5625 L 21.101562 22.535156 L 17.851562 22.535156 ",fill:"currentColor"})});import{jsx as Ko,jsxs as dv}from"react/jsx-runtime";var cv={apple:{logo:Ko(Yi,{}),displayName:"Apple"},discord:{logo:Ko(Ji,{}),displayName:"Discord"},github:{logo:Ko(Zi,{}),displayName:"GitHub"},google:{logo:Ko(Xi,{}),displayName:"Google"},linkedin:{logo:Ko(ta,{}),displayName:"LinkedIn"},twitter:{logo:Ko(ra,{}),displayName:"Twitter"},tiktok:{logo:Ko(oa,{}),displayName:"TikTok"}},bo=({provider:e})=>{let[t,o]=lv(!1),{initLoginWithOAuth:r}=R(),{displayName:n,logo:i}=cv[e];return dv(lt,{onClick:()=>{o(!0),r(e),o(!1)},disabled:t,children:[i," ",n]})};import pv from"@heroicons/react/24/outline/ChevronRightIcon";import uv from"@heroicons/react/24/outline/WalletIcon";import{jsx as Us,jsxs as mv}from"react/jsx-runtime";var $p=({onClick:e,text:t})=>mv(lt,{onClick:e,children:[Us(uv,{}),Us(_i,{children:t}),Us(pv,{})]});import fv from"@heroicons/react/24/outline/ChevronRightIcon";import{jsx as qp,jsxs as hv}from"react/jsx-runtime";var jp=({onClick:e,text:t,icon:o})=>hv(lt,{onClick:e,children:[o,qp(_i,{children:t}),qp(fv,{})]});import{Fragment as Sn,jsx as ce,jsxs as Lr}from"react/jsx-runtime";var Yp=()=>{let{closePrivyModal:e,connectors:t}=R(),{app:o,onUserCloseViaDialogOrKeybindRef:r}=T(),{email:n,sms:i,google:a,twitter:l,discord:s,github:c,tiktok:u,linkedin:h,apple:w,wallet:m}=o?.loginMethods??{},v=o?.appearance.showWalletLoginFirst?"web3-first":"web2-first",[y,x]=Kp("default"),[E,I]=Kp(n?"email":"sms");wv(()=>{I(n?"email":"sms")},[n]);let M=()=>{e({shouldCallAuthOnSuccess:!0}),setTimeout(()=>{x("default")},150)};r.current=M;let k=[n&&ce(Np,{isEditable:E==="email",setIsEditable:()=>{I("email")}}),i&&ce(Hp,{isEditable:E==="sms",setIsEditable:()=>{I("sms")}})].filter(Boolean),A=[a&&ce(bo,{provider:"google"}),l&&ce(bo,{provider:"twitter"}),s&&ce(bo,{provider:"discord"}),c&&ce(bo,{provider:"github"}),u&&ce(bo,{provider:"tiktok"}),h&&ce(bo,{provider:"linkedin"}),w&&ce(bo,{provider:"apple"})].filter(Boolean),W=ds(o?.appearance.supportedWallets??[],t,!1),N=y==="default"?void 0:()=>{x("default")},O=Ev({priority:v,email:n,sms:i,social:A}),H=Pv({priority:v,email:n,sms:i,social:A}),D=xv({priority:v,email:n,sms:i,social:A}),_=ce($p,{text:D,onClick:()=>x("web3-overflow")}),ee=ce(jp,{text:O,icon:H,onClick:()=>x("web2-overflow")});return Lr(Sn,{children:[ce(P,{title:"Log in or Sign Up",onClose:M,backFn:N}),y==="default"&&ce(bv,{}),ce(md,{style:{overflow:"hidden",padding:2},children:Lr(yo,{children:[y==="default"&&v==="web2-first"&&Lr(Sn,{children:[...k,...A.length+k.length>4?A.slice(0,3-k.length):A,k.length+A.length>4&&ee,m&&_]}),y==="default"&&v==="web3-first"&&Lr(Sn,{children:[m&&Lr(Sn,{children:[...W.length>4?W.slice(0,3):W,W.length>4&&_]}),k.length+A.length>0&&ee]}),y==="web2-overflow"&&Lr(Sn,{children:[...v==="web3-first"?k:[],...A]}),...y==="web3-overflow"?W:[]]})}),o&&ce(Ti,{app:o}),ce(B,{protectedByPrivy:!0})]})},bv=Cv(Ai)`
|
|
1387
1387
|
margin-bottom: 16px;
|
|
1388
|
-
`,
|
|
1388
|
+
`,Ev=({priority:e,email:t,sms:o,social:r})=>e==="web2-first"?"Other socials":t&&o&&r.length>0||t&&r.length>0?"Log in with email or socials":o&&r.length>0?"Log in with sms or socials":t&&o?"Continue with email or sms":t?"Continue with email":o?"Continue with sms":"Log in with a social account",Pv=({priority:e,email:t,sms:o,social:r})=>e==="web2-first"||r.length>0?ce(vv,{}):t&&o?ce(Ap,{}):t?ce(yv,{}):o?ce(gv,{}):null,xv=({priority:e})=>e==="web2-first"?"Continue with a wallet":"Other wallets";import{EnvelopeIcon as Tv}from"@heroicons/react/24/outline";import{Fragment as Sv,jsx as Eo,jsxs as _v}from"react/jsx-runtime";var Jp=()=>{let{app:e}=T();return _v(Sv,{children:[Eo(P,{},"header"),Eo($,{}),Eo(we,{title:"Connect your email",description:`Add your email to your ${e?.name} account`,icon:Eo(Tv,{color:"var(--privy-color-accent)",strokeWidth:2,height:"48px",width:"48px"})}),Eo(uo,{children:Eo(Vi,{stacked:!0})}),Eo(q,{}),Eo(B,{protectedByPrivy:!0})]})};import{PhoneIcon as kv}from"@heroicons/react/24/outline";import{Fragment as Av,jsx as Po,jsxs as Rv}from"react/jsx-runtime";var Zp=()=>{let{app:e}=T();return Rv(Av,{children:[Po(P,{},"header"),Po($,{}),Po(we,{title:"Connect your phone",description:`Add your number to your ${e?.name} account`,icon:Po(kv,{color:"var(--privy-color-accent)",strokeWidth:2,height:"40px",width:"40px"})}),Po(uo,{children:Po(Mr,{stacked:!0})}),Po(q,{}),Po(B,{protectedByPrivy:!0})]})};import{Fragment as Iv,jsx as _n,jsxs as Wv}from"react/jsx-runtime";var Qp=()=>{let{linkingHint:e}=R(),{app:t}=T(),o=e?`Select the wallet with ${so(e)} and follow the instructions to reconnect your wallet${t?.name?` to ${t.name}.`:"."}`:`Link a wallet to your ${t?.name} account`;return Wv(Iv,{children:[_n(P,{},"header"),_n(fo,{title:`${e?"Reconnect":"Connect"} your wallet`,description:o}),_n(yo,{children:_n(yr,{connectOnly:!1})}),_n(B,{protectedByPrivy:!0})]})};import{jsx as Xp,jsxs as Mv}from"react/jsx-runtime";var eu=({style:e,...t})=>Mv("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:[Xp("circle",{cx:"82",cy:"82",r:"80",stroke:"#EC6351","stroke-width":"4","stroke-linecap":"round"}),Xp("path",{fillRule:"evenodd",clipRule:"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 Lv,jsx as xo,jsxs as tu}from"react/jsx-runtime";var ou=()=>{let{closePrivyModal:e}=R(),{navigate:t}=T();return tu(Lv,{children:[xo(P,{},"header"),xo($,{}),xo(eu,{style:{width:"160px",height:"160px",margin:"0 auto 20px"}}),xo(fo,{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"}}),tu(uo,{children:[xo(L,{onClick:()=>t("LANDING"),children:"Try again"}),xo(zt,{onClick:()=>e(),children:"Cancel"})]}),xo(q,{}),xo(B,{protectedByPrivy:!0})]})};import{DevicePhoneMobileIcon as hw,PhoneIcon as yw,TrashIcon as Eu}from"@heroicons/react/24/outline";import{CheckBadgeIcon as gw,ExclamationTriangleIcon as vw,IdentificationIcon as ww}from"@heroicons/react/24/solid";import{useEffect as Cw,useState as Qt}from"react";import{useState as Nv}from"react";import Ov from"styled-components";import{jsx as ru}from"react/jsx-runtime";var na=({style:e,color:t,...o})=>ru("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:ru("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M4.5 12.75l6 6 9-13.5"})});import{jsx as Fs}from"react/jsx-runtime";var nu=({color:e,...t})=>Fs("svg",{version:"1.1",id:"Layer_1",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",x:"0px",y:"0px",viewBox:"0 0 115.77 122.88",xmlSpace:"preserve",...t,children:Fs("g",{children:Fs("path",{fill:e||"currentColor",className:"st0",d:"M89.62,13.96v7.73h12.19h0.01v0.02c3.85,0.01,7.34,1.57,9.86,4.1c2.5,2.51,4.06,5.98,4.07,9.82h0.02v0.02 v73.27v0.01h-0.02c-0.01,3.84-1.57,7.33-4.1,9.86c-2.51,2.5-5.98,4.06-9.82,4.07v0.02h-0.02h-61.7H40.1v-0.02 c-3.84-0.01-7.34-1.57-9.86-4.1c-2.5-2.51-4.06-5.98-4.07-9.82h-0.02v-0.02V92.51H13.96h-0.01v-0.02c-3.84-0.01-7.34-1.57-9.86-4.1 c-2.5-2.51-4.06-5.98-4.07-9.82H0v-0.02V13.96v-0.01h0.02c0.01-3.85,1.58-7.34,4.1-9.86c2.51-2.5,5.98-4.06,9.82-4.07V0h0.02h61.7 h0.01v0.02c3.85,0.01,7.34,1.57,9.86,4.1c2.5,2.51,4.06,5.98,4.07,9.82h0.02V13.96L89.62,13.96z M79.04,21.69v-7.73v-0.02h0.02 c0-0.91-0.39-1.75-1.01-2.37c-0.61-0.61-1.46-1-2.37-1v0.02h-0.01h-61.7h-0.02v-0.02c-0.91,0-1.75,0.39-2.37,1.01 c-0.61,0.61-1,1.46-1,2.37h0.02v0.01v64.59v0.02h-0.02c0,0.91,0.39,1.75,1.01,2.37c0.61,0.61,1.46,1,2.37,1v-0.02h0.01h12.19V35.65 v-0.01h0.02c0.01-3.85,1.58-7.34,4.1-9.86c2.51-2.5,5.98-4.06,9.82-4.07v-0.02h0.02H79.04L79.04,21.69z M105.18,108.92V35.65v-0.02 h0.02c0-0.91-0.39-1.75-1.01-2.37c-0.61-0.61-1.46-1-2.37-1v0.02h-0.01h-61.7h-0.02v-0.02c-0.91,0-1.75,0.39-2.37,1.01 c-0.61,0.61-1,1.46-1,2.37h0.02v0.01v73.27v0.02h-0.02c0,0.91,0.39,1.75,1.01,2.37c0.61,0.61,1.46,1,2.37,1v-0.02h0.01h61.7h0.02 v0.02c0.91,0,1.75-0.39,2.37-1.01c0.61-0.61,1-1.46,1-2.37h-0.02V108.92L105.18,108.92z"})})});import{jsx as iu,jsxs as Uv}from"react/jsx-runtime";var au=e=>{let[t,o]=Nv(!1);return Uv(Dv,{onClick:()=>{o(!0),navigator.clipboard.writeText(e.text),setTimeout(()=>o(!1),1500)},justCopied:t,children:[t?iu(na,{style:{height:"14px",width:"14px"},strokeWidth:"2"}):iu(nu,{style:{height:"14px",width:"14px"}}),t?"Copied":"Copy"," ",e.itemName?e.itemName:"to Clipboard"]})},Dv=Ov.button`
|
|
1389
1389
|
display: flex;
|
|
1390
1390
|
align-items: center;
|
|
1391
1391
|
gap: 6px;
|
|
@@ -1423,7 +1423,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1423
1423
|
width: 14px;
|
|
1424
1424
|
height: 14px;
|
|
1425
1425
|
}
|
|
1426
|
-
`;import{useState as
|
|
1426
|
+
`;import{useState as Bs}from"react";import{isMobile as $v}from"react-device-detect";import du from"styled-components";import"wicg-inert";import{useCallback as su,useRef as Fv}from"react";import{useEffect as Bv}from"react";import ia from"styled-components";import{Fragment as zv,jsx as lu,jsxs as Vv}from"react/jsx-runtime";var Hv=({children:e,open:t,onClick:o,...r})=>{let n=Fv(null);return Bv(()=>{let i=document.getElementById("root")??document.getElementById("__next");t?(i&&i.setAttribute("inert","true"),n.current&&(document.body.style.touchAction="none",document.body.style.overflow="hidden"),n.current?.show()):(i&&i.removeAttribute("inert"),n.current?.close(),document.body.style.removeProperty("touch-action"),document.body.style.removeProperty("overflow"))},[t]),Vv(zv,{children:[lu(Gv,{className:t?"open":"",onClick:o}),lu("dialog",{role:"dialog",...r,ref:n,children:e})]})},aa=e=>{let{closePrivyModal:t}=R(),{app:o,onUserCloseViaDialogOrKeybindRef:r}=T(),n=su(()=>{if(e)e();else if(r?.current)r.current(),r.current=null;else return t({shouldCallAuthOnSuccess:!1})},[t]),i=su(a=>{a.key==="Escape"&&o?.render.inDialog&&n()},[o?.render.inDialog,n]);return{gracefulClosePrivyModal:n,onEscape:i}},Jt=ia.div`
|
|
1427
1427
|
display: flex;
|
|
1428
1428
|
flex-direction: column;
|
|
1429
1429
|
text-align: center;
|
|
@@ -1446,7 +1446,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1446
1446
|
box-shadow: 0px 8px 36px rgba(55, 65, 81, 0.15);
|
|
1447
1447
|
border-radius: var(--privy-border-radius-lg);
|
|
1448
1448
|
}
|
|
1449
|
-
`,
|
|
1449
|
+
`,Gv=ia.div`
|
|
1450
1450
|
position: fixed;
|
|
1451
1451
|
z-index: 99999;
|
|
1452
1452
|
|
|
@@ -1458,7 +1458,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1458
1458
|
-webkit-backdrop-filter: blur(3px);
|
|
1459
1459
|
backdrop-filter: blur(3px);
|
|
1460
1460
|
}
|
|
1461
|
-
`,
|
|
1461
|
+
`,sa=ia(Hv)`
|
|
1462
1462
|
// reset some default dialog styles
|
|
1463
1463
|
padding: 0;
|
|
1464
1464
|
background: transparent;
|
|
@@ -1523,23 +1523,23 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1523
1523
|
}
|
|
1524
1524
|
|
|
1525
1525
|
:not([open]) {
|
|
1526
|
-
${
|
|
1526
|
+
${Jt} {
|
|
1527
1527
|
transition: none;
|
|
1528
1528
|
}
|
|
1529
1529
|
}
|
|
1530
|
-
`,
|
|
1530
|
+
`,la=ia.div`
|
|
1531
1531
|
display: flex;
|
|
1532
1532
|
flex-direction: column;
|
|
1533
1533
|
align-items: center;
|
|
1534
1534
|
justify-content: center;
|
|
1535
1535
|
height: 100%;
|
|
1536
|
-
`;import{Fragment as
|
|
1536
|
+
`;import{Fragment as Qv,jsx as kn,jsxs as Zv}from"react/jsx-runtime";var An=6,qv=new Array(An).fill("");function jv(e){return e.replace(/\s+/g,"")}function Hs(e){return/^[0-9]{1}$/.test(e)}function cu(e){return e.length===An&&e.every(Hs)}function Kv(e,t){return e.reduce((o,r)=>o+Number(t(r)),0)}var Nr=({onChange:e,disabled:t,errorReasonOverride:o,success:r})=>{let[n,i]=Bs(qv),[a,l]=Bs(null),[s,c]=Bs(null),u=async v=>{v.preventDefault();let y=jv(v.currentTarget.value);if(y==="")return;let x=Kv(n,Hs),E=y.split(""),I=!E.every(Hs),M=E.length+x>An;if(I){l("Passcode can only be numbers"),c(1);return}if(M){l("Passcode must be exactly 6 numbers"),c(1);return}l(null),c(null);let k=Number(v.currentTarget.name?.charAt(4)),A=[...y||[""]].slice(0,An-k),W=[...n.slice(0,k),...A,...n.slice(k+A.length)];i(W);let N=A.length,O=Math.min(Math.max(k+N,0),An-1);if(document.querySelector(`input[name=pin-${O}]`)?.focus(),cu(W))try{await e(W.join("")),document.querySelector(`input[name=pin-${O}]`)?.blur()}catch(D){c(1),l(D.message)}else try{await e(null)}catch(D){c(1),l(D.message)}},h=v=>{s===1&&(l(null),c(null));let y=[...n.slice(0,v),"",...n.slice(v+1)];i(y),v>0&&document.querySelector(`input[name=pin-${v-1}]`)?.focus(),cu(y)?e(y.join("")):e(null)},m=r?"success":!!(o||a)?"fail":"";return kn(Qv,{children:Zv(Yv,{children:[kn("div",{children:n.map((v,y)=>kn("input",{name:`pin-${y}`,type:"text",value:n[y],onChange:u,onKeyUp:x=>{x.key==="Backspace"&&h(y)},inputMode:"numeric",autoFocus:y===0,pattern:"[0-9]",className:m,autoComplete:$v?"one-time-code":"off",disabled:t},y))}),kn("div",{children:kn(Jv,{fail:!!o||!!a,children:o||a})})]})})},Yv=du.div`
|
|
1537
1537
|
display: flex;
|
|
1538
1538
|
flex-direction: column;
|
|
1539
1539
|
width: 100%;
|
|
1540
1540
|
gap: 8px;
|
|
1541
1541
|
|
|
1542
|
-
${
|
|
1542
|
+
${Jt}[data-height='medium'] & {
|
|
1543
1543
|
margin-top: 22px;
|
|
1544
1544
|
}
|
|
1545
1545
|
|
|
@@ -1604,7 +1604,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1604
1604
|
transform: translate(1px, 0px);
|
|
1605
1605
|
}
|
|
1606
1606
|
}
|
|
1607
|
-
`,
|
|
1607
|
+
`,Jv=du.div`
|
|
1608
1608
|
line-height: 20px;
|
|
1609
1609
|
font-size: 13px;
|
|
1610
1610
|
display: flex;
|
|
@@ -1612,7 +1612,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1612
1612
|
width: 100%;
|
|
1613
1613
|
|
|
1614
1614
|
color: ${e=>e.fail?"var(--privy-color-error)":"var(--privy-color-foreground-3)"};
|
|
1615
|
-
`;import{useContext as
|
|
1615
|
+
`;import{useContext as Xv}from"react";function Rn(){let{initEnrollmentWithSms:e,initEnrollmentWithTotp:t,submitEnrollmentWithSms:o,submitEnrollmentWithTotp:r,unenroll:n,enrollInMfa:i}=Xv(Ie);return{initEnrollmentWithSms:e,initEnrollmentWithTotp:t,submitEnrollmentWithSms:o,submitEnrollmentWithTotp:r,unenrollWithSms:()=>n("sms"),unenrollWithTotp:()=>n("totp"),showMfaEnrollmentModal:()=>i(!0),closeMfaEnrollmentModal:()=>i(!1)}}import ew from"styled-components";import{jsx as pu,jsxs as ow}from"react/jsx-runtime";var To=e=>ow(tw,{xmlns:"http://www.w3.org/2000/svg",fill:"none",width:"88",height:"89",viewBox:"0 0 88 89",...e,children:[pu("rect",{y:"0.666016",width:"88",height:"88",rx:"44"}),pu("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M45.2463 20.9106C44.5473 20.2486 43.4527 20.2486 42.7537 20.9106C37.8798 25.5263 31.3034 28.3546 24.0625 28.3546C23.9473 28.3546 23.8323 28.3539 23.7174 28.3525C22.9263 28.3427 22.2202 28.8471 21.9731 29.5987C20.9761 32.6311 20.4375 35.8693 20.4375 39.2297C20.4375 53.5896 30.259 65.651 43.5482 69.0714C43.8446 69.1477 44.1554 69.1477 44.4518 69.0714C57.741 65.651 67.5625 53.5896 67.5625 39.2297C67.5625 35.8693 67.0239 32.6311 66.0269 29.5987C65.7798 28.8471 65.0737 28.3427 64.2826 28.3525C64.1677 28.3539 64.0527 28.3546 63.9375 28.3546C56.6966 28.3546 50.1202 25.5263 45.2463 20.9106ZM52.7249 40.2829C53.3067 39.4683 53.1181 38.3363 52.3035 37.7545C51.4889 37.1726 50.3569 37.3613 49.7751 38.1759L41.9562 49.1223L38.0316 45.1977C37.3238 44.4899 36.1762 44.4899 35.4684 45.1977C34.7605 45.9056 34.7605 47.0532 35.4684 47.761L40.9059 53.1985C41.2826 53.5752 41.806 53.7671 42.337 53.7232C42.868 53.6792 43.3527 53.4039 43.6624 52.9704L52.7249 40.2829Z"})]}),tw=ew.svg`
|
|
1616
1616
|
height: 90px;
|
|
1617
1617
|
width: 90px;
|
|
1618
1618
|
|
|
@@ -1623,7 +1623,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1623
1623
|
> path {
|
|
1624
1624
|
fill: white;
|
|
1625
1625
|
}
|
|
1626
|
-
`;import{ShieldCheckIcon as
|
|
1626
|
+
`;import{ShieldCheckIcon as mw}from"@heroicons/react/24/solid";import rw from"qrcode";import nw from"react";import iw from"styled-components";import{jsx as uu}from"react/jsx-runtime";var mu=()=>uu("svg",{width:"200",height:"200",viewBox:"-77 -77 200 200",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{height:"28px",width:"28px"},children:uu("rect",{width:"50",height:"50",fill:"black",rx:10,ry:10})});import{Fragment as In,jsx as Ne,jsxs as yu}from"react/jsx-runtime";var Xe=7,Gs=(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},aw=e=>{let t=rw.create(e,{errorCorrectionLevel:"high"}).modules,o=cc(Array.from(t.data),t.size);return o=Gs(o,0,0,Xe,Xe),o=Gs(o,o.length-Xe,0,Xe,Xe),o=Gs(o,0,o.length-Xe,Xe,Xe),o},sw=({x:e,y:t,cellSize:o,bgColor:r,fgColor:n})=>Ne(In,{children:[0,1,2].map(i=>Ne("circle",{r:o*(Xe-i*2)/2,cx:e+o*Xe/2,cy:t+o*Xe/2,fill:i%2!==0?r:n},`finder-${e}-${t}-${i}`))}),lw=({cellSize:e,matrixSize:t,bgColor:o,fgColor:r})=>{let n=[[0,0],[(t-Xe)*e,0],[0,(t-Xe)*e]];return Ne(In,{children:n.map(([i,a])=>Ne(sw,{x:i,y:a,cellSize:e,bgColor:o,fgColor:r},`finder-${i}-${a}`))})},cw=({matrix:e,cellSize:t,color:o})=>Ne(In,{children:e.map((r,n)=>r.map((i,a)=>i?Ne("circle",{r:t/2.5,cx:n*t+t/2,cy:a*t+t/2,fill:o},`circle-${n}-${a}`):Ne(nw.Fragment,{},`circle-${n}-${a}`)))}),fu=(e,t)=>e-e%t,dw=({outputSize:e,cellSize:t,element:o,size:r,padding:n,bgColor:i})=>{if(!o)return Ne(In,{});let a=r||40,l=n||4,s=o,c=e/2-a/2-l;return yu(In,{children:[Ne("rect",{x:fu(c,t),y:fu(c,t),width:a+l*2+(c%t?t+.5:.5),height:a+l*2+(c%t?t+.5:.5),fill:i}),Ne(s,{x:e/2-a/2,y:e/2-a/2,height:a,width:a})]})},pw=e=>{let t=e.outputSize,o=aw(e.url),r=t/o.length;return yu("svg",{height:e.outputSize,width:e.outputSize,viewBox:`0 0 ${e.outputSize} ${e.outputSize}`,style:{height:"100%",width:"100%"},children:[Ne(cw,{matrix:o,cellSize:r,color:e.fgColor}),Ne(lw,{cellSize:r,matrixSize:o.length,fgColor:e.fgColor,bgColor:e.bgColor}),Ne(dw,{outputSize:e.outputSize,cellSize:r,element:e.logo?.element,bgColor:e.bgColor})]})},uw=iw.div`
|
|
1627
1627
|
display: flex;
|
|
1628
1628
|
justify-content: center;
|
|
1629
1629
|
align-items: center;
|
|
@@ -1638,7 +1638,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1638
1638
|
border-color: ${e=>e.fgColor};
|
|
1639
1639
|
border-radius: var(--privy-border-radius-md);
|
|
1640
1640
|
}
|
|
1641
|
-
`,
|
|
1641
|
+
`,hu=e=>{let t=e.bgColor||"#FFFFFF",o=e.fgColor||"#000000",r=e.size||160;return Ne(uw,{size:r,bgColor:t,fgColor:o,children:Ne(pw,{url:e.url,logo:{element:e.squareLogoElement??mu},outputSize:r,bgColor:t,fgColor:o})})};import{jsx as fw}from"react/jsx-runtime";var gu=({size:e,authUrl:t})=>fw(hu,{url:t,squareLogoElement:mw,size:e,fgColor:"#1F1F1F"});import ge from"styled-components";var So=ge.div`
|
|
1642
1642
|
display: flex;
|
|
1643
1643
|
flex-direction: column;
|
|
1644
1644
|
align-items: center;
|
|
@@ -1646,22 +1646,22 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1646
1646
|
@media (max-width: 440px) {
|
|
1647
1647
|
padding: 10px 10px 20px;
|
|
1648
1648
|
}
|
|
1649
|
-
`,
|
|
1649
|
+
`,ca=ge.div`
|
|
1650
1650
|
font-size: 20px;
|
|
1651
1651
|
line-height: 20px;
|
|
1652
1652
|
text-align: center;
|
|
1653
1653
|
font-weight: 600;
|
|
1654
1654
|
margin-bottom: 10px;
|
|
1655
|
-
`,
|
|
1655
|
+
`,Or=ge.div`
|
|
1656
1656
|
font-size: 16px;
|
|
1657
1657
|
line-height: 20px;
|
|
1658
1658
|
text-align: center;
|
|
1659
|
-
`,
|
|
1659
|
+
`,Mt=ge.div`
|
|
1660
1660
|
width: 100%;
|
|
1661
1661
|
text-align: left;
|
|
1662
1662
|
font-size: 16px;
|
|
1663
1663
|
line-height: 20px;
|
|
1664
|
-
`,
|
|
1664
|
+
`,Zt=ge.div`
|
|
1665
1665
|
display: flex;
|
|
1666
1666
|
flex-direction: column;
|
|
1667
1667
|
align-items: center;
|
|
@@ -1671,7 +1671,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1671
1671
|
@media (max-width: 440px) {
|
|
1672
1672
|
padding: 10px 10px 20px;
|
|
1673
1673
|
}
|
|
1674
|
-
`,
|
|
1674
|
+
`,zs=ge.div`
|
|
1675
1675
|
width: 30px;
|
|
1676
1676
|
display: flex;
|
|
1677
1677
|
align-items: center;
|
|
@@ -1683,25 +1683,25 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1683
1683
|
width: 30px !important;
|
|
1684
1684
|
color: var(--privy-color-accent);
|
|
1685
1685
|
}
|
|
1686
|
-
|
|
1686
|
+
`,Vs=ge.div`
|
|
1687
1687
|
display: flex;
|
|
1688
1688
|
align-items: center;
|
|
1689
1689
|
gap: 10px;
|
|
1690
1690
|
font-size: 16px;
|
|
1691
1691
|
text-align: left;
|
|
1692
|
-
`,
|
|
1692
|
+
`,Wn=ge.div`
|
|
1693
1693
|
display: flex;
|
|
1694
1694
|
flex-direction: column;
|
|
1695
1695
|
gap: 10px;
|
|
1696
1696
|
padding-top: 20px;
|
|
1697
|
-
`,
|
|
1697
|
+
`,da=ge.div`
|
|
1698
1698
|
display: flex;
|
|
1699
1699
|
flex-direction: column;
|
|
1700
1700
|
align-items: center;
|
|
1701
1701
|
gap: 1rem;
|
|
1702
1702
|
padding: 1rem 0rem 0rem;
|
|
1703
1703
|
flex-grow: 1;
|
|
1704
|
-
|
|
1704
|
+
`,$s=ge.div`
|
|
1705
1705
|
display: flex;
|
|
1706
1706
|
gap: 10px;
|
|
1707
1707
|
width: 100%;
|
|
@@ -1738,7 +1738,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1738
1738
|
width: 20px !important;
|
|
1739
1739
|
}
|
|
1740
1740
|
}
|
|
1741
|
-
`,
|
|
1741
|
+
`,Dr=ge.div`
|
|
1742
1742
|
display: flex;
|
|
1743
1743
|
align-items: center;
|
|
1744
1744
|
gap: 0.5rem;
|
|
@@ -1749,7 +1749,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1749
1749
|
height: 20px !important;
|
|
1750
1750
|
width: 20px !important;
|
|
1751
1751
|
}
|
|
1752
|
-
`,
|
|
1752
|
+
`,vu=ge.div`
|
|
1753
1753
|
display: flex;
|
|
1754
1754
|
align-items: center;
|
|
1755
1755
|
gap: 6px;
|
|
@@ -1760,14 +1760,14 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1760
1760
|
height: 20px !important;
|
|
1761
1761
|
width: 20px !important;
|
|
1762
1762
|
}
|
|
1763
|
-
`,
|
|
1763
|
+
`,wu=ge.div`
|
|
1764
1764
|
display: flex;
|
|
1765
1765
|
justify-content: space-between;
|
|
1766
|
-
`,
|
|
1766
|
+
`,Cu=ge.p`
|
|
1767
1767
|
text-align: left;
|
|
1768
1768
|
width: 100%;
|
|
1769
1769
|
color: var(--privy-color-foreground-3) !important;
|
|
1770
|
-
`,
|
|
1770
|
+
`,bu=ge.div`
|
|
1771
1771
|
display: flex;
|
|
1772
1772
|
height: 48px;
|
|
1773
1773
|
width: 100%;
|
|
@@ -1775,12 +1775,12 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1775
1775
|
label {
|
|
1776
1776
|
height: 48px !important;
|
|
1777
1777
|
}
|
|
1778
|
-
`,
|
|
1778
|
+
`,S_=ge.div`
|
|
1779
1779
|
line-height: 20px;
|
|
1780
1780
|
text-align: center;
|
|
1781
1781
|
font-weight: 500;
|
|
1782
1782
|
margin-bottom: 10px;
|
|
1783
|
-
`,
|
|
1783
|
+
`,__=ge.div`
|
|
1784
1784
|
line-height: 20px;
|
|
1785
1785
|
height: 20px;
|
|
1786
1786
|
font-size: 13px;
|
|
@@ -1789,7 +1789,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1789
1789
|
width: 100%;
|
|
1790
1790
|
|
|
1791
1791
|
color: var(--privy-color-error);
|
|
1792
|
-
`,
|
|
1792
|
+
`,qs=ge.button`
|
|
1793
1793
|
display: flex;
|
|
1794
1794
|
flex-direction: row;
|
|
1795
1795
|
align-items: center;
|
|
@@ -1818,7 +1818,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1818
1818
|
&:hover {
|
|
1819
1819
|
text-decoration: underline;
|
|
1820
1820
|
}
|
|
1821
|
-
`;import{Fragment as
|
|
1821
|
+
`;import{Fragment as Xt,jsx as S,jsxs as J}from"react/jsx-runtime";var Pu=()=>{let{user:e,enrollInMfa:t}=G(),[o,r]=Qt(!1),[n,i]=Qt(null),[a,l]=Qt(null),{initEnrollmentWithTotp:s,unenrollWithSms:c,unenrollWithTotp:u}=Rn(),{app:h,ready:w,data:m,onUserCloseViaDialogOrKeybindRef:v}=T(),{closePrivyModal:y}=R(),x=Wt(),E=()=>{x.remove(),y({shouldCallAuthOnSuccess:!0}),t(!1),setTimeout(()=>{l(null)},500)};v.current=E;let I=e?.mfaMethods.includes("sms"),M=e?.mfaMethods.includes("totp"),k=I||M;Cw(()=>{k&&r(!0)},[k]);function A(){l(null)}function W(){r(!1)}function N(O){O==="totp"&&s().then(H=>{i(H)}).catch(()=>{l(null)}),l(O)}if(!w||!e||!h)return J(Xt,{children:[S(P,{onClose:E},"header"),S(So,{children:S(To,{})}),S(Zt,{children:S(it,{})}),S(K,{})]});switch(a){case"sms":return S(bw,{onComplete:E,onReset:A,onClose:E});case"totp":return S(Ew,{onComplete:E,totpInfo:n,onClose:E,onReset:A});default:let O=!k&&!o;return O?J(Xt,{children:[S(P,{onClose:E},"header"),S(So,{children:S(To,{})}),S(ca,{children:"Transaction Protection"}),S(Or,{children:"Set up transaction protection to add an extra layer of security to your account"}),J(Zt,{children:[J(Vs,{children:[S(zs,{children:S(gw,{})}),"Enable 2-Step verification for your ",h?.name," wallet."]}),J(Vs,{children:[S(zs,{children:S(ww,{})}),"You'll be prompted to authenticate to complete transactions."]})]}),J(Wn,{children:[S(L,{onClick:()=>r(!0),children:"Continue"}),S(zt,{onClick:E,children:"Not Now"})]}),S(K,{})]}):J(Xt,{children:[S(P,{backFn:O?W:void 0,title:"Choose a verification method",onClose:E},"header"),S(So,{children:S(To,{})}),k?S(Or,{children:"To add or delete verification methods, verification is required."}):S(Or,{children:"You can always change this later."}),J(da,{children:[m.mfaEnrollmentFlow.mfaMethods.includes("totp")&&J($s,{children:[S(L,{disabled:M,onClick:()=>N("totp"),children:J(Dr,{children:[S(hw,{}),J("span",{children:["Authenticator App",M?" (Enrolled)":""]})]})},"totp"),M&&S(L,{id:"remove",warn:!0,onClick:u,children:S(Eu,{})})]}),m.mfaEnrollmentFlow.mfaMethods.includes("sms")&&J($s,{children:[S(L,{disabled:I,onClick:()=>N("sms"),children:J(wu,{children:[J(Dr,{children:[S(yw,{}),J("span",{children:["SMS",I?" (Enrolled)":""]})]}),!I&&J(vu,{children:[S("span",{children:"Less secure"}),S(vw,{})]})]})},"sms"),I&&S(L,{id:"remove",warn:!0,onClick:c,children:S(Eu,{})})]})]}),S(K,{})]})}},bw=({onComplete:e,onReset:t,onClose:o})=>{let[r,n]=Qt({countryCode:"US",phoneNumber:""}),[i,a]=Qt(!1),[l,s]=Qt(!1),[c,u]=Qt("enroll"),{initEnrollmentWithSms:h,submitEnrollmentWithSms:w}=Rn(),{app:m,data:v}=T();function y(){s(!1),v?.mfaEnrollmentFlow?.onSuccess(),e()}async function x(){try{let{phoneNumber:k,countryCode:A}=r;if(k.length===0||!xn(k,A)){a(!0);return}await h({phoneNumber:Ls(k,A)}),n(r),u("verify")}catch{a(!0)}}async function E(k){try{if(!k)return;let{phoneNumber:A,countryCode:W}=r;await w({phoneNumber:Ls(A,W),mfaCode:k}),s(!0)}catch(A){throw xr(A)?new Error("You have exceeded the maximum number of attempts. Please close this window and try again in 30 seconds."):Pr(A)?new Error("The code you entered is not valid"):Er(A)?new Error("You have exceeded the time limit for code entry. Please try again in 30 seconds."):new Error("Unknown error")}}function I(k,A){a(!1),n({countryCode:A,phoneNumber:k})}function M(){c==="verify"?u("enroll"):t()}return c==="enroll"?J(Xt,{children:[S(P,{title:"Transaction Protection",backFn:t,onClose:o},"header"),S(ca,{children:m?.name}),J(Zt,{children:[S(Mt,{children:"We'll text a verification code to this mobile device whenever you process a transaction."}),S(bu,{children:S(Mr,{noIncludeSubmitButton:!0,onSubmitOverride:x,onChange:I})}),J(Cu,{children:["By providing your mobile number, you agree to receive text messages from ",m?.name,". Some carrier charges may apply"]})]}),S(L,{disabled:i||!xn(r.phoneNumber,r.countryCode),onClick:x,children:"Continue"}),S(K,{})]}):l?J(Xt,{children:[S(P,{title:"Transaction Protection",onClose:y},"header"),S(So,{children:S(To,{color:"success"})}),S(Mt,{children:"From now on, you'll need to enter an authentication code sent to your mobile phone to process a transaction."}),S(Wn,{children:S(L,{onClick:y,children:"Done"})}),S(K,{})]}):J(Xt,{children:[S(P,{title:"Verify your mobile number",backFn:M,onClose:o},"header"),J(Mt,{children:["Enter the 6-digit code sent to"," ",S("strong",{children:Op(r.phoneNumber)})]}),S(Zt,{children:S(Nr,{onChange:E})}),S(K,{})]})},Ew=({onComplete:e,onClose:t,onReset:o,totpInfo:r})=>{let[n,i]=Qt("enroll"),[a,l]=Qt(!1),{submitEnrollmentWithTotp:s}=Rn(),{app:c,data:u}=T();function h(){l(!1),u?.mfaEnrollmentFlow?.onSuccess(),e()}function w(){i("verify")}async function m(y){try{if(!y)return;await s({mfaCode:y}),l(!0)}catch(x){throw xr(x)?new Error("You have exceeded the maximum number of attempts. Please close this window and try again in 30 seconds."):Pr(x)?new Error("The code you entered is not valid"):Er(x)?new Error("You have exceeded the time limit for code entry. Please try again in 30 seconds."):new Error("Unknown error")}}function v(){n==="verify"?i("enroll"):o()}return n==="enroll"?J(Xt,{children:[S(P,{title:"Transaction Protection",backFn:o,onClose:t},"header"),S(ca,{children:c?.name}),S(Mt,{children:"Open your authenticator app and scan the QR code to add this account."}),S(Jc,{children:r?.authUrl?S(gu,{authUrl:r.authUrl,size:200}):S(it,{})}),J(Wn,{children:[S(Vt,{children:r?.secret&&S(au,{itemName:"secret",text:r.secret})}),S(L,{onClick:w,children:"Continue"})]}),S(K,{})]}):a?J(Xt,{children:[S(P,{title:"Transaction Protection",onClose:h},"header"),S(So,{children:S(To,{color:"success"})}),S(Mt,{children:"From now on, you'll need to enter an authentication code generated by your authenticator app to process a transaction"}),S(Wn,{children:S(L,{onClick:h,children:"Done"})}),S(K,{})]}):J(Xt,{children:[S(P,{title:"Verify your authenticator app code",backFn:v,onClose:t},"header"),J(Mt,{children:["Please enter the 6-digit code generated from your ",S("strong",{children:"authenticator app"})]}),S(Zt,{children:S(Nr,{onChange:m})}),S(K,{})]})};import{useEffect as xu,useState as Tu}from"react";import _u from"styled-components";function js(e){return e.charAt(0).toUpperCase()+e.slice(1)}import{Fragment as Tw,jsx as eo,jsxs as ua}from"react/jsx-runtime";var Su={google:{name:"Google",component:Xi},discord:{name:"Discord",component:Ji},github:{name:"Github",component:Zi},linkedin:{name:"LinkedIn",component:ta},twitter:{name:"Twitter",component:ra},tiktok:{name:"Tiktok",component:oa},apple:{name:"Apple",component:Yi}},pa=()=>{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)},ku=()=>{let{ready:e,user:t,authenticated:o}=G(),{app:r,setModalData:n,navigate:i,resetNavigation:a}=T(),{getAuthMeta:l,initLoginWithOAuth:s,loginWithOAuth:c,updateWallets:u,setReadyToTrue:h,closePrivyModal:w}=R(),[m,v]=Tu(!1),[y,x]=Tu(void 0),E=l()?.provider||"google",I=Su[E].name,M=Su[E].component,k=r?.render.inDialog?je:0;xu(()=>{c(E).then(()=>{pa(),v(!0)}).catch(N=>{let O={retryable:!1,message:"Authentication failed"};if(N?.privyErrorCode==="allowlist_rejected"){x(void 0),a(),i("ALLOWLIST_REJECTION_SCREEN"),pa();return}else N?.privyErrorCode==="linked_to_another_user"?O.detail="This account has already been linked to another user.":N?.privyErrorCode==="invalid_credentials"?(O.retryable=!0,O.detail="Something went wrong. Try again."):N.privyErrorCode==="oauth_user_denied"&&(O.detail=`Retry and check ${js(E)} to finish connecting your account.`,O.retryable=!0);pa(),x(O)}).finally(()=>{h()})},[]),xu(()=>{if(e&&o&&m&&t)if(ao(t,r?.embeddedWallets?.createOnLogin)){let O=setTimeout(()=>{n({createWallet:{onSuccess:()=>{},onFailure:H=>console.error(H),callAuthOnSuccessOnClose:!0}}),i("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")},k);return()=>clearTimeout(O)}else{let O=setTimeout(w,k);return u(),()=>clearTimeout(O)}},[e,o,m,t]);let A=m?`Successfully connected with ${I}`:y?y.message:`Verifying connection to ${I}`,W="";return m?W="You\u2019re good to go!":y?W=y.detail:W="Just a few moments more",ua(Tw,{children:[eo(P,{}),eo($,{}),ua(Pw,{children:[eo(xw,{children:ua("div",{children:[eo(vi,{success:m,fail:!!y}),eo(M,{style:{width:"38px",height:"38px"}})]})}),ua(mo,{children:[eo("h3",{children:A}),eo("p",{children:W})]}),y&&y?.retryable?eo(bi,{onClick:()=>{pa(),s(E),x(void 0)},disabled:!m&&!y?.retryable,children:"Retry"}):null]}),eo(K,{})]})},Pw=_u.div`
|
|
1822
1822
|
display: flex;
|
|
1823
1823
|
flex-direction: column;
|
|
1824
1824
|
align-items: center;
|
|
@@ -1826,7 +1826,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1826
1826
|
margin-left: 27px;
|
|
1827
1827
|
margin-right: 27px;
|
|
1828
1828
|
gap: 24px;
|
|
1829
|
-
`,
|
|
1829
|
+
`,xw=_u.div`
|
|
1830
1830
|
display: flex;
|
|
1831
1831
|
flex-direction: column;
|
|
1832
1832
|
justify-content: center;
|
|
@@ -1849,9 +1849,9 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1849
1849
|
left: -19px;
|
|
1850
1850
|
top: -19px;
|
|
1851
1851
|
}
|
|
1852
|
-
`;import{useEffect as
|
|
1852
|
+
`;import{useEffect as _w,useState as Ru}from"react";import kw from"styled-components";import{isMobile as Sw}from"react-device-detect";var Au=(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(!Et()&&Sw)return`${t?"phantom://":"https://phantom.app/ul/"}browse/${r}?ref=${r}`};import{Fragment as Rw,jsx as to,jsxs as Iu}from"react/jsx-runtime";var Wu=()=>{let{forkSession:e,ready:t,authenticated:o}=G(),[r,n]=Ru(""),[i,a]=Ru(!1);_w(()=>{t&&o&&e().then(n)},[t,o]);let l=Au(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."),Iu(Rw,{children:[to(P,{},"header"),to($,{}),to(fo,{title:s.title,description:s.description}),Iu(uo,{children:[to(Aw,{children:to(po,{style:{width:"72px",height:"72px"}})}),to(Ci,{href:l,onClick:()=>{setTimeout(()=>a(!0),1e3)},loading:t&&!l,children:i?"Go to App Store":"Continue"}),s.footnote?to("p",{children:s.footnote}):null]}),to(q,{}),to(B,{protectedByPrivy:!0})]})},Aw=kw(Vt)`
|
|
1853
1853
|
margin: 16px auto;
|
|
1854
|
-
`;import{StaticJsonRpcProvider as
|
|
1854
|
+
`;import{StaticJsonRpcProvider as I0}from"@ethersproject/providers";import{useMemo as hm,useEffect as ll,useState as dt}from"react";import Gr from"styled-components";import em from"styled-components";import Lu from"styled-components";import{jsx as Mu,jsxs as Mw}from"react/jsx-runtime";var ma=({label:e,children:t,valueStyles:o})=>Mw(Iw,{children:[Mu("div",{children:e}),Mu(Ww,{style:{...o},children:t})]}),Iw=Lu.div`
|
|
1855
1855
|
display: flex;
|
|
1856
1856
|
align-items: center;
|
|
1857
1857
|
justify-content: space-between;
|
|
@@ -1866,7 +1866,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1866
1866
|
color: var(--privy-color-foreground-2);
|
|
1867
1867
|
text-align: right;
|
|
1868
1868
|
}
|
|
1869
|
-
`,
|
|
1869
|
+
`,Ww=Lu.div`
|
|
1870
1870
|
font-size: 14px;
|
|
1871
1871
|
line-height: 100%;
|
|
1872
1872
|
display: flex;
|
|
@@ -1875,28 +1875,28 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1875
1875
|
border-radius: var(--privy-border-radius-full);
|
|
1876
1876
|
background-color: var(--privy-color-background-2);
|
|
1877
1877
|
padding: 4px 8px;
|
|
1878
|
-
`;import
|
|
1878
|
+
`;import ha from"styled-components";import{BigNumber as Nu}from"@ethersproject/bignumber";import{formatEther as Ou}from"@ethersproject/units";var Mn=(e,t)=>{let o=(t*parseFloat(Ou(e))).toFixed(2);return o!=="0.00"?`$${o}`:"<$0.01"},Lt=(e,t,o=6,r=!1)=>{let i=parseFloat(Ou(e)).toFixed(o).replace(/0+$/,"").replace(/\.$/,"");return r?`${i} ${t}`:`${i==="0"?"<0.001":i} ${t}`},Ks=e=>e.map(ae).reduce((t,o)=>t.add(o),Nu.from(0)).toHexString(),Du=(e,t)=>{let{chains:o}=R(),r=`https://etherscan.io/address/${t}`,n=`${mc(e,o)}/address/${t}`;if(!n)return r;try{new URL(n)}catch{return r}return n},ae=e=>Nu.from(e);import{Fragment as Dw,jsx as fa,jsxs as Uu}from"react/jsx-runtime";var Fu=({weiQuantities:e,tokenPrice:t,tokenSymbol:o})=>{let r=Ks(e),n=t?Mn(r,t):void 0,i=Lt(r,o);return fa(Bu,{children:n||i})},Ys=({weiQuantities:e,tokenPrice:t,tokenSymbol:o})=>{let r=Ks(e),n=t?Mn(r,t):void 0,i=Lt(r,o);return fa(Bu,{children:n?Uu(Dw,{children:[fa(Lw,{children:"USD"}),n==="<$0.01"?Uu(Ow,{children:[fa(Nw,{children:"<"}),"$0.01"]}):n]}):i})},Bu=ha.span`
|
|
1879
1879
|
font-size: 14px;
|
|
1880
1880
|
line-height: 140%;
|
|
1881
1881
|
display: flex;
|
|
1882
1882
|
gap: 4px;
|
|
1883
1883
|
align-items: center;
|
|
1884
|
-
`,
|
|
1884
|
+
`,Lw=ha.span`
|
|
1885
1885
|
font-size: 12px;
|
|
1886
1886
|
line-height: 12px;
|
|
1887
1887
|
color: var(--privy-color-foreground-3);
|
|
1888
|
-
`,
|
|
1888
|
+
`,Nw=ha.span`
|
|
1889
1889
|
font-size: 10px;
|
|
1890
|
-
`,
|
|
1890
|
+
`,Ow=ha.span`
|
|
1891
1891
|
display: flex;
|
|
1892
1892
|
align-items: center;
|
|
1893
|
-
`;import
|
|
1893
|
+
`;import Js from"styled-components";import{jsx as _o,jsxs as ya}from"react/jsx-runtime";var Hu=({gas:e,tokenPrice:t,tokenSymbol:o})=>ya(as,{style:{paddingBottom:"12px"},children:[ya(zu,{children:[_o($u,{children:"Est. Fees"}),_o("div",{children:_o(Ys,{weiQuantities:[e],tokenPrice:t,tokenSymbol:o})})]}),t&&_o(Vu,{children:`${Lt(e,o)}`})]}),Gu=({transactionData:e,gas:t,tokenPrice:o,tokenSymbol:r})=>{let n=ae(e.value||0).add(ae(t)).toHexString();return ya(as,{children:[ya(zu,{children:[_o($u,{children:"Total (including fees)"}),_o("div",{children:_o(Ys,{weiQuantities:[e.value||0,t],tokenPrice:o,tokenSymbol:r})})]}),o&&_o(Vu,{children:Lt(n,r)})]})},zu=Js.div`
|
|
1894
1894
|
display: flex;
|
|
1895
1895
|
flex-direction: row;
|
|
1896
1896
|
justify-content: space-between;
|
|
1897
1897
|
align-items: center;
|
|
1898
1898
|
padding-top: 4px;
|
|
1899
|
-
`,
|
|
1899
|
+
`,Vu=Js.div`
|
|
1900
1900
|
display: flex;
|
|
1901
1901
|
flex-direction: row;
|
|
1902
1902
|
height: 12px;
|
|
@@ -1905,23 +1905,23 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1905
1905
|
line-height: 12px;
|
|
1906
1906
|
color: var(--privy-color-foreground-3);
|
|
1907
1907
|
font-weight: 400;
|
|
1908
|
-
|
|
1908
|
+
`,$u=Js.div`
|
|
1909
1909
|
font-size: 14px;
|
|
1910
1910
|
line-height: 22.4px;
|
|
1911
1911
|
font-weight: 400;
|
|
1912
|
-
`;import{ChevronDownIcon as
|
|
1912
|
+
`;import{ChevronDownIcon as Uw}from"@heroicons/react/24/outline";import{useContext as Yo,useState as Fw}from"react";import ko from"styled-components";import{createContext as qu,useContext as rA}from"react";var Ur=qu(void 0);var Ln=qu(void 0);import{Fragment as jw,jsx as vt,jsxs as ju}from"react/jsx-runtime";var Ku=({defaultValue:e,children:t})=>{let[o,r]=Fw(e||null),n=i=>{r(o===i?null:i)};return vt(Ur.Provider,{value:{activePanel:o,togglePanel:n},children:vt(Bw,{children:t})})},Yu=({value:e,children:t})=>{let{activePanel:o,togglePanel:r}=Yo(Ur),n=o===e;return vt(Ln.Provider,{value:{onToggle:()=>r(e),value:e},children:vt(Vw,{isActive:n,"data-open":n,children:t})})},Ju=({children:e})=>{let{activePanel:t}=Yo(Ur),{onToggle:o,value:r}=Yo(Ln),n=t===r;return ju(jw,{children:[ju(Hw,{onClick:o,"data-open":n,children:[vt(zw,{children:e}),vt(qw,{isactive:n,children:vt(Uw,{height:"16px",width:"16px",strokeWidth:"2"})})]}),vt(Gw,{})]})},Zu=({children:e})=>{let{activePanel:t}=Yo(Ur),{value:o}=Yo(Ln);return vt($w,{"data-open":t===o,children:vt(Xu,{children:e})})},Qu=({children:e})=>{let{activePanel:t}=Yo(Ur),{value:o}=Yo(Ln);return vt(Xu,{children:typeof e=="function"?e({isActive:t===o}):e})},Bw=ko.div`
|
|
1913
1913
|
display: flex;
|
|
1914
1914
|
flex-direction: column;
|
|
1915
1915
|
width: 100%;
|
|
1916
1916
|
gap: 8px;
|
|
1917
|
-
`,
|
|
1917
|
+
`,Hw=ko.div`
|
|
1918
1918
|
display: flex;
|
|
1919
1919
|
justify-content: space-between;
|
|
1920
1920
|
align-items: center;
|
|
1921
1921
|
width: 100%;
|
|
1922
1922
|
cursor: pointer;
|
|
1923
1923
|
padding-bottom: 8px;
|
|
1924
|
-
`,
|
|
1924
|
+
`,Gw=ko.div`
|
|
1925
1925
|
width: 100%;
|
|
1926
1926
|
|
|
1927
1927
|
&& {
|
|
@@ -1929,13 +1929,13 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1929
1929
|
border-color: var(--privy-color-foreground-4);
|
|
1930
1930
|
}
|
|
1931
1931
|
padding-bottom: 12px;
|
|
1932
|
-
`,
|
|
1932
|
+
`,zw=ko.div`
|
|
1933
1933
|
font-size: 14px;
|
|
1934
1934
|
font-weight: 500;
|
|
1935
1935
|
line-height: 19.6px;
|
|
1936
1936
|
width: 100%;
|
|
1937
1937
|
padding-right: 8px;
|
|
1938
|
-
`,
|
|
1938
|
+
`,Vw=ko.div`
|
|
1939
1939
|
display: flex;
|
|
1940
1940
|
flex-direction: column;
|
|
1941
1941
|
width: 100%;
|
|
@@ -1947,7 +1947,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1947
1947
|
border-color: var(--privy-color-foreground-4);
|
|
1948
1948
|
border-radius: var(--privy-border-radius-md);
|
|
1949
1949
|
}
|
|
1950
|
-
|
|
1950
|
+
`,$w=ko.div`
|
|
1951
1951
|
position: relative;
|
|
1952
1952
|
overflow: hidden;
|
|
1953
1953
|
transition: max-height 25ms ease-out;
|
|
@@ -1959,36 +1959,36 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
1959
1959
|
&[data-open='false'] {
|
|
1960
1960
|
max-height: 0;
|
|
1961
1961
|
}
|
|
1962
|
-
`,
|
|
1962
|
+
`,Xu=ko.div`
|
|
1963
1963
|
display: flex;
|
|
1964
1964
|
flex-direction: column;
|
|
1965
1965
|
gap: 12px;
|
|
1966
1966
|
flex: 1 1 auto;
|
|
1967
1967
|
min-height: 1px;
|
|
1968
|
-
`,
|
|
1968
|
+
`,qw=ko.div`
|
|
1969
1969
|
transform: ${e=>e.isactive?"rotate(180deg)":"rotate(0deg)"};
|
|
1970
|
-
`;import
|
|
1970
|
+
`;import Kw from"styled-components";import{jsx as Jw}from"react/jsx-runtime";var Zs=({walletAddress:e,chainId:t=Ht})=>Jw(Yw,{href:Du(t,e),target:"_blank",children:so(e)}),Yw=Kw.a`
|
|
1971
1971
|
&:hover {
|
|
1972
1972
|
text-decoration: underline;
|
|
1973
1973
|
}
|
|
1974
|
-
`;import{jsx as
|
|
1974
|
+
`;import{jsx as et,jsxs as Qs}from"react/jsx-runtime";var Fr=({from:e,to:t,txn:o,transactionInfo:r,tokenPrice:n,gas:i,tokenSymbol:a})=>{let l=o?.value||0;return et(Ku,{children:Qs(Yu,{value:"details",children:[et(Ju,{children:Qs(Zw,{children:[et("div",{children:r?.title||r?.actionDescription||"Details"}),et(Qw,{children:et(Fu,{weiQuantities:[l],tokenPrice:n,tokenSymbol:a})})]})}),Qs(Zu,{children:[et(ma,{label:"From",children:et(Zs,{walletAddress:e,chainId:o.chainId||Ht})}),et(ma,{label:"To",children:et(Zs,{walletAddress:t,chainId:o.chainId||Ht})}),r&&r.action&&et(ma,{label:"Action",children:r.action}),i&&et(Hu,{transactionData:o,gas:i,tokenPrice:n,tokenSymbol:a})]}),et(Qu,{children:({isActive:s})=>et(Gu,{transactionData:o,displayFee:s,gas:i||"0x0",tokenPrice:n,tokenSymbol:a})})]})})},Zw=em.div`
|
|
1975
1975
|
display: flex;
|
|
1976
1976
|
flex-direction: row;
|
|
1977
1977
|
justify-content: space-between;
|
|
1978
|
-
`,
|
|
1978
|
+
`,Qw=em.div`
|
|
1979
1979
|
flex-shrink: 0;
|
|
1980
1980
|
padding-left: 8px;
|
|
1981
|
-
`;import
|
|
1981
|
+
`;import On from"styled-components";import{jsx as Nn,jsxs as n0}from"react/jsx-runtime";var Xs=({description:e,contractInfo:t})=>n0(Xw,{children:[t.imgUrl&&Nn(e0,{size:t.imgSize||"sm",src:t.imgUrl,alt:t.imgAltText||`${t.name} image`}),t.url&&Nn(t0,{children:Nn("a",{href:t.url,target:"_blank",rel:"noopener noreferrer",children:t.url.replace(/^(https?:\/\/)(www\.)?/,"")})}),t.name&&Nn(o0,{children:t.name}),Nn(r0,{children:e||t.actionText})]}),Xw=On.div`
|
|
1982
1982
|
display: flex;
|
|
1983
1983
|
flex-direction: column;
|
|
1984
1984
|
align-items: center;
|
|
1985
1985
|
margin-bottom: 8px;
|
|
1986
|
-
`,
|
|
1986
|
+
`,e0=On.img`
|
|
1987
1987
|
height: ${e=>e.size==="sm"?"65px":"140px"};
|
|
1988
1988
|
width: ${e=>e.size==="sm"?"65px":"140px"};
|
|
1989
1989
|
border-radius: 16px;
|
|
1990
1990
|
margin-bottom: 12px;
|
|
1991
|
-
`,
|
|
1991
|
+
`,t0=On.div`
|
|
1992
1992
|
font-size: 12px;
|
|
1993
1993
|
line-height: 12px;
|
|
1994
1994
|
padding: 7px;
|
|
@@ -2001,7 +2001,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
2001
2001
|
text-decoration: underline;
|
|
2002
2002
|
}
|
|
2003
2003
|
}
|
|
2004
|
-
`,
|
|
2004
|
+
`,o0=On.div`
|
|
2005
2005
|
font-size: 18px;
|
|
2006
2006
|
line-height: 18px;
|
|
2007
2007
|
font-weight: 500;
|
|
@@ -2009,7 +2009,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
2009
2009
|
white-space: nowrap;
|
|
2010
2010
|
max-width: 275px;
|
|
2011
2011
|
text-overflow: ellipsis;
|
|
2012
|
-
`,
|
|
2012
|
+
`,r0=On.div`
|
|
2013
2013
|
font-size: 16px;
|
|
2014
2014
|
line-height: 140%;
|
|
2015
2015
|
font-weight: 400;
|
|
@@ -2017,7 +2017,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
2017
2017
|
overflow: hidden;
|
|
2018
2018
|
max-width: 275px;
|
|
2019
2019
|
text-overflow: ellipsis;
|
|
2020
|
-
`;import{WalletIcon as p0}from"@heroicons/react/24/outline";import{useState as rl,useEffect as u0}from"react";import il from"styled-components";import{VoidSigner as r0}from"@ethersproject/abstract-signer";import{BigNumber as Ko}from"@ethersproject/bignumber";import{Contract as n0}from"@ethersproject/contracts";import{EtherscanProvider as HA}from"@ethersproject/providers";import{serialize as i0}from"@ethersproject/transactions";var va={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 wa={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 Ca={id:421614,name:"Arbitrum Sepolia",network:"arbitrum-sepolia",nativeCurrency:{name:"Arbitrum Sepolia Ether",symbol:"ETH",decimals:18},rpcUrls:{default:{http:["https://sepolia-rollup.arbitrum.io/rpc"]},public:{http:["https://sepolia-rollup.arbitrum.io/rpc"]}},blockExplorers:{default:{name:"Blockscout",url:"https://sepolia-explorer.arbitrum.io"}},testnet:!0};var ba={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 Ea={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 Pa={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 xa={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 Ta={id:7777777,name:"Zora",network:"zora",nativeCurrency:{decimals:18,name:"Ether",symbol:"ETH"},rpcUrls:{default:{http:["https://rpc.zora.energy"],webSocket:["wss://rpc.zora.energy"]},public:{http:["https://rpc.zora.energy"],webSocket:["wss://rpc.zora.energy"]}},blockExplorers:{default:{name:"Explorer",url:"https://explorer.zora.energy"}}};var Sa={id:999,name:"Zora Goerli Testnet",network:"zora-testnet",nativeCurrency:{decimals:18,name:"Zora Goerli",symbol:"ETH"},rpcUrls:{default:{http:["https://testnet.rpc.zora.energy"],webSocket:["wss://testnet.rpc.zora.energy"]},public:{http:["https://testnet.rpc.zora.energy"],webSocket:["wss://testnet.rpc.zora.energy"]}},blockExplorers:{default:{name:"Explorer",url:"https://testnet.explorer.zora.energy"}},testnet:!0};import{parseUnits as Xu}from"@ethersproject/units";import{ofetch as t0}from"ofetch";var On={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 Dn={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 em=[On.id,Dn.id],tl=e=>({maxPriorityFee:Xu(e.maxPriorityFee.toFixed(9),"gwei").toHexString(),maxFee:Xu(e.maxFee.toFixed(9),"gwei").toHexString()}),o0=e=>({safeLow:tl(e.safeLow),standard:tl(e.standard),fast:tl(e.fast)}),tm=async e=>{let t="";switch(e){case On.id:t="https://gasstation.polygon.technology/v2";break;case Dn.id:t="https://gasstation-testnet.polygon.technology/v2";break;default:throw Error(`chainId ${e} does not support polygon gas stations`)}return o0(await t0(t))};function So(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 a0(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=So(e.nonce)),e.gasLimit!==void 0&&(t.gasLimit=So(e.gasLimit)),e.gasPrice!==void 0&&(t.gasPrice=So(e.gasPrice)),e.value!==void 0&&(t.value=So(e.value)),e.maxFeePerGas!==void 0&&(t.maxFeePerGas=So(e.maxFeePerGas)),e.maxPriorityFeePerGas!==void 0&&(t.maxPriorityFeePerGas=So(e.maxPriorityFeePerGas)),t}function s0(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=ae(e.nonce).toNumber()),e.gasLimit!==void 0&&(t.gasLimit=ae(e.gasLimit)),e.gasPrice!==void 0&&(t.gasPrice=ae(e.gasPrice)),e.value!==void 0&&(t.value=ae(e.value)),e.maxFeePerGas!==void 0&&(t.maxFeePerGas=ae(e.maxFeePerGas)),e.maxPriorityFeePerGas!==void 0&&(t.maxPriorityFeePerGas=ae(e.maxPriorityFeePerGas)),t}async function Ur(e,t,o){t.chainId=Number(t.chainId),nm(t);let r=new r0(e,o);if(t.gas&&(t.gasLimit=t.gas,delete t.gas),em.includes(t.chainId)&&(!t.maxPriorityFeePerGas||!t.maxFeePerGas))try{let{standard:i}=await tm(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}.`)}if(l0(t.chainId)&&!t.maxFeePerGas)try{let{lastBaseFeePerGas:i}=await r.getFeeData();if(i){let a=i.mul(Ko.from(120)).div(Ko.from(100));t.maxFeePerGas=So(a),t.maxPriorityFeePerGas=So(Ko.from(0))}}catch(i){throw new Error(`Failed to set gas price for Arbitrum transaction: ${i}.`)}let n=await r.populateTransaction({to:t.to,from:t.from,nonce:t.nonce,gasLimit:t.gasLimit,gasPrice:t.gasPrice,data:t.data,value:t.value,chainId:t.chainId,type:t.type,accessList:t.accessList,maxFeePerGas:t.maxFeePerGas,maxPriorityFeePerGas:t.maxPriorityFeePerGas});return a0(n)}async function _a(e,t,o,r,n){r=Object.assign({chainId:Ut},r),nm(r);let a=(await o.rpc({address:t,accessToken:e,request:{method:"eth_signTransaction",params:[r]}})).response.data;return await n.sendTransaction(a)}async function om(e,t,o){let r=await o.getBalance(e),n=t.value||0,i=r.sub(ae(n)),a=!i.isNegative()&&!i.isZero();return{balance:r,hasSufficientFunds:a}}function rm(e){return[ba.id,Ea.id,Pa.id,xa.id,Ta.id,Sa.id].includes(e)}function l0(e){return[va.id,wa.id,Ca.id].includes(e)}async function ol(e,t){if(!e.chainId||e.chainId&&!rm(e.chainId))return Ko.from(0);let o=Ko.from(0);try{let r=new n0(nc,ic,t),n=s0(e),i=i0(n);o=await r.getL1Fee(i)}catch{}return o}async function ka(e,t){delete e.from;let o=Ko.from(0),r=Ko.from(0);if(e.gasLimit?o=ae(e.gasLimit):o=await t.estimateGas(e),e.type==2)if(e.maxFeePerGas)r=ae(e.maxFeePerGas);else{let i=await t.getFeeData();i.maxFeePerGas&&(r=i.maxFeePerGas)}else if(e.type==0||e.type==1)if(e.gasPrice)r=ae(e.gasPrice);else{let i=await t.getFeeData();i.gasPrice&&(r=i.gasPrice)}else if(e.gasPrice)r=ae(e.gasPrice);else{let i=await t.getFeeData();i.gasPrice&&(r=i.gasPrice)}let n=o.mul(r);if(e.chainId&&rm(e.chainId))try{let i=await ol(e,t);n=n.add(i)}catch{}return n}function nm(e){let t=["gasLimit","gasPrice","value","maxPriorityFeePerGas","maxFeePerGas"];for(let o of t){let r=e[o];if(!(typeof r>"u")&&!c0(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 c0(e){let t=typeof e=="number",o=typeof e=="bigint",r=typeof e=="string"&&d0(e);return t||o||r}function d0(e){return/^-?0x[a-f0-9]+$/i.test(e)}function Aa(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 im,jsxs as nl}from"react/jsx-runtime";var am=({wallet:e,txn:t,provider:o,onInsufficientFunds:r})=>{let[n,i]=rl(),[a,l]=rl(!1),[s,c]=rl(!1),{nativeTokenSymbolForChainId:u}=R(),h=u(t.chainId)||"ETH";return u0(()=>{(async m=>{try{let{balance:v,hasSufficientFunds:y}=await om(m,t,o);c(!0),y||(l(!0),r()),i(v.toHexString())}catch(v){console.warn(`Failed to fetch wallet balance with error: ${v}`)}})(e.address)},[e,t]),nl(m0,{children:[nl(f0,{children:[im(p0,{strokeWidth:"2",width:"16px",height:"16px"}),im("div",{children:no(e?.address)})]}),nl(h0,{displayBalanceColor:s,hasFunds:!a,children:[n?Wt(n,h,6,!0):0," ","available"]})]})},m0=il.div`
|
|
2020
|
+
`;import{WalletIcon as h0}from"@heroicons/react/24/outline";import{useState as ol,useEffect as y0}from"react";import nl from"styled-components";import{VoidSigner as s0}from"@ethersproject/abstract-signer";import{BigNumber as Jo}from"@ethersproject/bignumber";import{Contract as l0}from"@ethersproject/contracts";import{EtherscanProvider as JA}from"@ethersproject/providers";import{serialize as c0}from"@ethersproject/transactions";var ga={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 va={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 wa={id:421614,name:"Arbitrum Sepolia",network:"arbitrum-sepolia",nativeCurrency:{name:"Arbitrum Sepolia Ether",symbol:"ETH",decimals:18},rpcUrls:{default:{http:["https://sepolia-rollup.arbitrum.io/rpc"]},public:{http:["https://sepolia-rollup.arbitrum.io/rpc"]}},blockExplorers:{default:{name:"Blockscout",url:"https://sepolia-explorer.arbitrum.io"}},testnet:!0};var Ca={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 ba={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 Ea={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 Pa={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 xa={id:7777777,name:"Zora",network:"zora",nativeCurrency:{decimals:18,name:"Ether",symbol:"ETH"},rpcUrls:{default:{http:["https://rpc.zora.energy"],webSocket:["wss://rpc.zora.energy"]},public:{http:["https://rpc.zora.energy"],webSocket:["wss://rpc.zora.energy"]}},blockExplorers:{default:{name:"Explorer",url:"https://explorer.zora.energy"}}};var Ta={id:999,name:"Zora Goerli Testnet",network:"zora-testnet",nativeCurrency:{decimals:18,name:"Zora Goerli",symbol:"ETH"},rpcUrls:{default:{http:["https://testnet.rpc.zora.energy"],webSocket:["wss://testnet.rpc.zora.energy"]},public:{http:["https://testnet.rpc.zora.energy"],webSocket:["wss://testnet.rpc.zora.energy"]}},blockExplorers:{default:{name:"Explorer",url:"https://testnet.explorer.zora.energy"}},testnet:!0};import{parseUnits as tm}from"@ethersproject/units";import{ofetch as i0}from"ofetch";var Dn={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 Un={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 om=[Dn.id,Un.id],el=e=>({maxPriorityFee:tm(e.maxPriorityFee.toFixed(9),"gwei").toHexString(),maxFee:tm(e.maxFee.toFixed(9),"gwei").toHexString()}),a0=e=>({safeLow:el(e.safeLow),standard:el(e.standard),fast:el(e.fast)}),rm=async e=>{let t="";switch(e){case Dn.id:t="https://gasstation.polygon.technology/v2";break;case Un.id:t="https://gasstation-testnet.polygon.technology/v2";break;default:throw Error(`chainId ${e} does not support polygon gas stations`)}return a0(await i0(t))};function Ao(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 d0(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=Ao(e.nonce)),e.gasLimit!==void 0&&(t.gasLimit=Ao(e.gasLimit)),e.gasPrice!==void 0&&(t.gasPrice=Ao(e.gasPrice)),e.value!==void 0&&(t.value=Ao(e.value)),e.maxFeePerGas!==void 0&&(t.maxFeePerGas=Ao(e.maxFeePerGas)),e.maxPriorityFeePerGas!==void 0&&(t.maxPriorityFeePerGas=Ao(e.maxPriorityFeePerGas)),t}function p0(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=ae(e.nonce).toNumber()),e.gasLimit!==void 0&&(t.gasLimit=ae(e.gasLimit)),e.gasPrice!==void 0&&(t.gasPrice=ae(e.gasPrice)),e.value!==void 0&&(t.value=ae(e.value)),e.maxFeePerGas!==void 0&&(t.maxFeePerGas=ae(e.maxFeePerGas)),e.maxPriorityFeePerGas!==void 0&&(t.maxPriorityFeePerGas=ae(e.maxPriorityFeePerGas)),t}async function Br(e,t,o){t.chainId=Number(t.chainId),am(t);let r=new s0(e,o);if(t.gas&&(t.gasLimit=t.gas,delete t.gas),om.includes(t.chainId)&&(!t.maxPriorityFeePerGas||!t.maxFeePerGas))try{let{standard:i}=await rm(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}.`)}if(u0(t.chainId)&&!t.maxFeePerGas)try{let{lastBaseFeePerGas:i}=await r.getFeeData();if(i){let a=i.mul(Jo.from(120)).div(Jo.from(100));t.maxFeePerGas=Ao(a),t.maxPriorityFeePerGas=Ao(Jo.from(0))}}catch(i){throw new Error(`Failed to set gas price for Arbitrum transaction: ${i}.`)}let n=await r.populateTransaction({to:t.to,from:t.from,nonce:t.nonce,gasLimit:t.gasLimit,gasPrice:t.gasPrice,data:t.data,value:t.value,chainId:t.chainId,type:t.type,accessList:t.accessList,maxFeePerGas:t.maxFeePerGas,maxPriorityFeePerGas:t.maxPriorityFeePerGas});return d0(n)}async function Sa(e,t,o,r,n){r=Object.assign({chainId:Ht},r),am(r);let a=(await o.rpc({address:t,accessToken:e,request:{method:"eth_signTransaction",params:[r]}})).response.data;return await n.sendTransaction(a)}async function nm(e,t,o){let r=await o.getBalance(e),n=t.value||0,i=r.sub(ae(n)),a=!i.isNegative()&&!i.isZero();return{balance:r,hasSufficientFunds:a}}function im(e){return[Ca.id,ba.id,Ea.id,Pa.id,xa.id,Ta.id].includes(e)}function u0(e){return[ga.id,va.id,wa.id].includes(e)}async function tl(e,t){if(!e.chainId||e.chainId&&!im(e.chainId))return Jo.from(0);let o=Jo.from(0);try{let r=new l0(rc,nc,t),n=p0(e),i=c0(n);o=await r.getL1Fee(i)}catch{}return o}async function _a(e,t){delete e.from;let o=Jo.from(0),r=Jo.from(0);if(e.gasLimit?o=ae(e.gasLimit):o=await t.estimateGas(e),e.type==2)if(e.maxFeePerGas)r=ae(e.maxFeePerGas);else{let i=await t.getFeeData();i.maxFeePerGas&&(r=i.maxFeePerGas)}else if(e.type==0||e.type==1)if(e.gasPrice)r=ae(e.gasPrice);else{let i=await t.getFeeData();i.gasPrice&&(r=i.gasPrice)}else if(e.gasPrice)r=ae(e.gasPrice);else{let i=await t.getFeeData();i.gasPrice&&(r=i.gasPrice)}let n=o.mul(r);if(e.chainId&&im(e.chainId))try{let i=await tl(e,t);n=n.add(i)}catch{}return n}function am(e){let t=["gasLimit","gasPrice","value","maxPriorityFeePerGas","maxFeePerGas"];for(let o of t){let r=e[o];if(!(typeof r>"u")&&!m0(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 m0(e){let t=typeof e=="number",o=typeof e=="bigint",r=typeof e=="string"&&f0(e);return t||o||r}function f0(e){return/^-?0x[a-f0-9]+$/i.test(e)}function ka(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 sm,jsxs as rl}from"react/jsx-runtime";var lm=({wallet:e,txn:t,provider:o,onInsufficientFunds:r})=>{let[n,i]=ol(),[a,l]=ol(!1),[s,c]=ol(!1),{nativeTokenSymbolForChainId:u}=R(),h=u(t.chainId)||"ETH";return y0(()=>{(async m=>{try{let{balance:v,hasSufficientFunds:y}=await nm(m,t,o);c(!0),y||(l(!0),r()),i(v.toHexString())}catch(v){console.warn(`Failed to fetch wallet balance with error: ${v}`)}})(e.address)},[e,t]),rl(g0,{children:[rl(v0,{children:[sm(h0,{strokeWidth:"2",width:"16px",height:"16px"}),sm("div",{children:so(e?.address)})]}),rl(w0,{displayBalanceColor:s,hasFunds:!a,children:[n?Lt(n,h,6,!0):0," ","available"]})]})},g0=nl.div`
|
|
2021
2021
|
display: flex;
|
|
2022
2022
|
flex-direction: row;
|
|
2023
2023
|
justify-content: space-between;
|
|
@@ -2030,12 +2030,12 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
2030
2030
|
border: 1px solid var(--privy-color-foreground-4);
|
|
2031
2031
|
border-radius: var(--privy-border-radius-md);
|
|
2032
2032
|
}
|
|
2033
|
-
`,
|
|
2033
|
+
`,v0=nl.div`
|
|
2034
2034
|
display: flex;
|
|
2035
2035
|
flex-direction: row;
|
|
2036
2036
|
align-items: center;
|
|
2037
2037
|
gap: 8px;
|
|
2038
|
-
`,
|
|
2038
|
+
`,w0=nl.div`
|
|
2039
2039
|
display: flex;
|
|
2040
2040
|
align-items: center;
|
|
2041
2041
|
justify-content: center;
|
|
@@ -2045,78 +2045,78 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
2045
2045
|
background-color: var(--privy-color-background-2);
|
|
2046
2046
|
padding: 5px 8px;
|
|
2047
2047
|
color: ${e=>e.displayBalanceColor?e.hasFunds?"var(--privy-color-success-dark)":"var(--privy-color-error)":"inherit"};
|
|
2048
|
-
`;import
|
|
2048
|
+
`;import Aa from"styled-components";import{Fragment as dm,jsx as Fn,jsxs as pm}from"react/jsx-runtime";var um=({description:e,txn:t,tokenSymbol:o,tokenPrice:r})=>{let n=t.value||0,i=r?Mn(n,r):void 0,a=Lt(n,o);return pm(C0,{children:[i?pm(dm,{children:[Fn(cm,{children:i}),Fn(b0,{children:a})]}):Fn(dm,{children:Fn(cm,{children:a})}),Fn(E0,{children:e})]})},C0=Aa.div`
|
|
2049
2049
|
display: flex;
|
|
2050
2050
|
flex-direction: column;
|
|
2051
2051
|
align-items: center;
|
|
2052
2052
|
margin-bottom: 20px;
|
|
2053
|
-
`,
|
|
2053
|
+
`,cm=Aa.h2`
|
|
2054
2054
|
&& {
|
|
2055
2055
|
font-size: 48px;
|
|
2056
2056
|
line-height: 48px;
|
|
2057
2057
|
margin: 8px auto;
|
|
2058
2058
|
}
|
|
2059
|
-
`,
|
|
2059
|
+
`,b0=Aa.p`
|
|
2060
2060
|
margin-bottom: 12px;
|
|
2061
2061
|
&& {
|
|
2062
2062
|
font-size: 17px;
|
|
2063
2063
|
line-height: 17px;
|
|
2064
2064
|
color: var(--privy-color-foreground-3);
|
|
2065
2065
|
}
|
|
2066
|
-
`,
|
|
2066
|
+
`,E0=Aa.div`
|
|
2067
2067
|
font-size: 16px;
|
|
2068
2068
|
line-height: 22.4px;
|
|
2069
2069
|
font-weight: 400;
|
|
2070
2070
|
overflow: hidden;
|
|
2071
2071
|
max-width: 275px;
|
|
2072
2072
|
text-overflow: ellipsis;
|
|
2073
|
-
`;function
|
|
2073
|
+
`;function mm(e){return e.to&&e.data?"CONTRACT_CALL":e.to&&e.value?"SEND":"UNKNOWN"}import{useState as il,useEffect as P0}from"react";var Ra=e=>{let{showFiatPrices:t,getUsdTokenPrice:o,chains:r}=R(),[n,i]=il(!0),[a,l]=il(void 0),[s,c]=il(void 0);return P0(()=>{let u=e.chainId||Ht,h=r.find(m=>m.id===Number(u));if(!h)throw new z(`Unsupported chain: ${u}`);(async()=>{if(!t){i(!1);return}try{i(!0);let m=await o(h);m?c(m):l(new Error(`Unable to fetch token price on chain id ${h.id}`))}catch(m){l(m)}finally{i(!1)}})()},[e.chainId]),{tokenPrice:s,isTokenPriceLoading:n,tokenPriceError:a}};import{createContext as x0,useContext as T0}from"react";var al=x0({wallets:[]});function Bn(){return T0(al)}import{BigNumber as sl}from"@ethersproject/bignumber";import S0 from"styled-components";import{Fragment as A0,jsx as Hn,jsxs as R0}from"react/jsx-runtime";var _0=(e,t)=>{if(e.gasUsed&&e.effectiveGasPrice)try{let o=sl.from(e.gasUsed),r=sl.from(e.effectiveGasPrice),n=o.mul(r);if(t){let i=sl.from(t);n=n.add(i)}return n.toString()}catch{return}else return},fm=({txn:e,receipt:t,transactionInfo:o,onClose:r,tokenPrice:n,tokenSymbol:i,l1GasEstimate:a})=>R0(A0,{children:[Hn(P,{onClose:r}),Hn(an,{title:"Transaction complete!",description:"You're all set."}),Hn(Fr,{tokenPrice:n,from:t.from,to:t.to,gas:_0(t,a),txn:e,transactionInfo:o,tokenSymbol:i}),Hn(k0,{loading:!1,onClick:r,children:"All Done"}),Hn(K,{})]}),k0=S0(L)`
|
|
2074
2074
|
&& {
|
|
2075
2075
|
margin-top: 24px;
|
|
2076
2076
|
}
|
|
2077
2077
|
transition: color 350ms ease, background-color 350ms ease;
|
|
2078
|
-
`;import{Fragment as
|
|
2078
|
+
`;import{Fragment as cl,jsx as Oe,jsxs as Hr}from"react/jsx-runtime";var W0=({txn:e,txnFamily:t,uiOptions:o,tokenSymbol:r,tokenPrice:n})=>{if(t==="CONTRACT_CALL"){if(o.transactionInfo?.contractInfo)return Oe(Xs,{contractInfo:o.transactionInfo.contractInfo,description:o.description});if(o.senderInfo)return Oe(Xs,{contractInfo:o.senderInfo,description:o.description||o.senderInfo.actionText})}return Oe(cl,{children:Oe(um,{description:o.description||o.transactionInfo?.description||"",txn:e,tokenSymbol:r,tokenPrice:n})})},gm=()=>{let{authenticated:e,getAccessToken:t}=G(),{wallets:o}=Bn(),{walletProxy:r,closePrivyModal:n,getFiatOnRampConfig:i,rpcConfig:a,chains:l,nativeTokenSymbolForChainId:s}=R(),{app:c,navigate:u,data:h,onUserCloseViaDialogOrKeybindRef:w,setModalData:m}=T(),{transactionRequest:v,onSuccess:y,onFailure:x,uiOptions:E,fundWalletConfig:I}=h.sendTransaction,[M,k]=dt(null),[A,W]=dt(null),[N,O]=dt(""),[H,D]=dt(),[_,ee]=dt(!1),[ue,Ge]=dt(!1),F=()=>{O(""),D(void 0)},xe=(De,le,ot)=>{O(De),D(new Ae(new Pt(le??De,ot??Ue.E32603_DEFAULT_INTERNAL_ERROR.eipCode)))},[mt,fe]=dt(!0),[se,Q]=dt(!1),[re,Xo]=dt(v),{tokenPrice:j,isTokenPriceLoading:oo}=Ra(re),Bt=s(v.chainId)||"ETH",[Wo,Mo]=dt(null),[$n,ie]=dt(null),[Lo,he]=dt(!0);ll(()=>{(async()=>{if(_)try{he(!0);let le=await _a(re,No);Mo(ae(le.toBigInt()).toHexString());let ot=await tl(re,No);ie(ae(ot.toBigInt()).toHexString())}catch{Mo(null)}finally{he(!1)}})()},[_,re]),ll(()=>{e||(u("LANDING"),x(new Error("User must be authenticated before transacting with a Privy wallet")))},[e]);let ke=hm(()=>o.find(De=>De.walletClientType==="privy"),[o]),Fa=async()=>{if(!ke)return console.warn("No privy wallet found, cannot fund wallet.");let{signedUrl:De,externalTransactionId:le}=await i(ke.address,{config:I?.config||{}});m({fiatOnRampPrompt:{signedUrl:De},fiatOnRampStatus:{externalTransactionId:le}}),u("FIAT_ON_RAMP_PROMPT_SCREEN")},No=hm(()=>new I0(ht(re.chainId,l,a)),[re.chainId,a]);ll(()=>{async function De(){return!await t()||!r||!ke?re:Br(ke.address,re,No)}De().then(le=>{fe(!1),Xo(le)}).catch(async le=>{fe(!0);let ot="There was an error preparing your transaction. Please try again.";_d(le)&&(ot="Wallet has insufficient funds for this transaction.",c?.fiatOnRamp.enabled&&Ge(!0)),N!=="Wallet has insufficient funds for this transaction."&&xe(ot,le.reason)}).finally(()=>{ee(!0)})},[r]);let Oo=mm(re),Vr=Oo==="SEND"?`Send ${Bt}`:"Review transaction",$r={modalTitle:E.header||E.modalTitle||Vr,buttonText:E.buttonText||"Submit"},Do=()=>{se||(A?y(A):x(H||new Ae(new Pt("The user rejected the request",Ue.E4001_USER_REJECTED_REQUEST.eipCode))),n({shouldCallAuthOnSuccess:!1}))};return w.current=Do,j===void 0&&oo||Lo?Hr(cl,{children:[Oe(P,{title:$r.modalTitle,onClose:Do}),Oe(ym,{children:Oe(wr,{})})]}):M!==null?Oe(fm,{txn:re,onClose:Do,receipt:M,transactionInfo:E.transactionInfo,tokenPrice:j,tokenSymbol:Bt,l1GasEstimate:$n}):Hr(cl,{children:[Oe(P,{title:$r.modalTitle,onClose:Do}),Hr(ym,{children:[Hr(O0,{children:[Oe(W0,{txn:re,txnFamily:Oo,uiOptions:E,tokenSymbol:Bt,tokenPrice:j}),ke?Oe(Fr,{from:ke.address,to:re.to,txn:re,transactionInfo:E.transactionInfo,gas:Wo||void 0,tokenPrice:j,tokenSymbol:Bt}):null]}),Hr(D0,{children:[Oe(M0,{children:N}),ke?Oe(lm,{txn:re,wallet:ke,provider:No,onInsufficientFunds:()=>xe("Wallet has insufficient funds for this transaction.")}):null,Hr(L0,{children:[ue&&Oe(L,{onClick:Fa,children:"Add Funds"}),Oe(N0,{disabled:mt||se,loading:!r||se,loadingText:se?"Submitting (may take a few minutes)...":"Loading...",onClick:async()=>{Q(!0);let De=await t();if(De&&!se&&ke)try{let le=await Sa(De,ke.address,r,re,No);W(le);let ot=await le.wait();k(ka(ot)),F()}catch(le){let ot="There was an error processing your transaction. Please contact support.";console.warn({transaction:re,error:le}),xe(ot,le.reason)}finally{Q(!1)}},children:$r.buttonText})]})]})]})]})},ym=Gr.div`
|
|
2079
2079
|
display: flex;
|
|
2080
2080
|
flex-direction: column;
|
|
2081
2081
|
justify-content: space-between;
|
|
2082
2082
|
flex-grow: 1;
|
|
2083
2083
|
padding-bottom: 16px;
|
|
2084
|
-
`,
|
|
2084
|
+
`,M0=Gr.div`
|
|
2085
2085
|
font-size: 13px;
|
|
2086
2086
|
color: var(--privy-color-error);
|
|
2087
2087
|
width: 100%;
|
|
2088
2088
|
margin-top: 16px;
|
|
2089
|
-
`,
|
|
2089
|
+
`,L0=Gr.div`
|
|
2090
2090
|
display: flex;
|
|
2091
2091
|
direction: row;
|
|
2092
2092
|
justify-content: space-between;
|
|
2093
2093
|
align-items: center;
|
|
2094
2094
|
gap: 8px;
|
|
2095
|
-
`,
|
|
2095
|
+
`,N0=Gr(L)`
|
|
2096
2096
|
transition: color 350ms ease, background-color 350ms ease;
|
|
2097
|
-
`,
|
|
2097
|
+
`,O0=Gr.div`
|
|
2098
2098
|
height: 100%;
|
|
2099
2099
|
display: flex;
|
|
2100
2100
|
flex-direction: column;
|
|
2101
2101
|
justify-content: space-evenly;
|
|
2102
2102
|
flex-grow: 1;
|
|
2103
|
-
`,
|
|
2103
|
+
`,D0=Gr.div`
|
|
2104
2104
|
display: flex;
|
|
2105
2105
|
flex-direction: column;
|
|
2106
2106
|
gap: 8px;
|
|
2107
|
-
`;import{isHexString as
|
|
2107
|
+
`;import{isHexString as U0}from"@ethersproject/bytes";import{toUtf8String as F0}from"@ethersproject/strings";import{useEffect as vm,useState as Ia}from"react";import Zo,{css as B0}from"styled-components";import{Fragment as Y0,jsx as wt,jsxs as dl}from"react/jsx-runtime";var H0=e=>{if(!U0(e))return e;try{return F0(e)}catch{return e}},wm=()=>{let{authenticated:e}=G(),{initializeWalletProxy:t,closePrivyModal:o}=R(),{navigate:r,data:n,onUserCloseViaDialogOrKeybindRef:i}=T(),[a,l]=Ia(!0),[s,c]=Ia(""),[u,h]=Ia(),[w,m]=Ia(null),v=w!==null;vm(()=>{e||r("LANDING")},[e]),vm(()=>{t(nr).then(W=>{l(!1),W||(c("An error has occurred, please try again."),h(new Ae(new Pt(s,Ue.E32603_DEFAULT_INTERNAL_ERROR.eipCode))))})},[]);let{message:y,confirmAndSignMessage:x,onSuccess:E,onFailure:I,uiOptions:M}=n.signMessage,k={title:M.title||"Sign message",description:M.description||"Signing this message will not cost you any fees.",buttonText:M.buttonText||"Sign and continue"},A=W=>{W?E(W):I(u||new Ae(new Pt("The user rejected the request.",Ue.E4001_USER_REJECTED_REQUEST.eipCode))),o({shouldCallAuthOnSuccess:!1}),m(null),c(""),h(void 0)};return i.current=()=>{A(w)},dl(Y0,{children:[wt(P,{onClose:()=>A(w)}),wt($,{}),dl(G0,{children:[wt(z0,{children:k.title}),wt(V0,{children:k.description}),wt($0,{children:H0(y)}),wt(q0,{fail:!0,children:s}),wt(K0,{success:v,loading:a,disabled:v,onClick:async()=>{try{let W=await x();m(W),c(""),setTimeout(()=>{A(W)},je)}catch{c("An error has occurred, please try again."),h(new Ae(new Pt(s,Ue.E32603_DEFAULT_INTERNAL_ERROR.eipCode)))}},children:v?dl(j0,{children:[wt(na,{style:{height:"0.9rem",width:"0.9rem"},strokeWidth:2})," ",wt("span",{children:"Success"})]}):k.buttonText})]}),wt(q,{}),wt(B,{protectedByPrivy:!0})]})},G0=Zo.div`
|
|
2108
2108
|
display: flex;
|
|
2109
2109
|
flex-direction: column;
|
|
2110
2110
|
align-items: center;
|
|
2111
2111
|
justify-content: center;
|
|
2112
|
-
`,
|
|
2112
|
+
`,z0=Zo.span`
|
|
2113
2113
|
color: var(--privy-color-foreground);
|
|
2114
2114
|
text-align: center;
|
|
2115
2115
|
font-size: 1.125rem;
|
|
2116
2116
|
font-weight: 500;
|
|
2117
2117
|
line-height: 1.25rem; /* 111.111% */
|
|
2118
2118
|
text-align: center;
|
|
2119
|
-
`,
|
|
2119
|
+
`,V0=Zo.span`
|
|
2120
2120
|
margin-top: 4px;
|
|
2121
2121
|
color: var(--privy-color-foreground);
|
|
2122
2122
|
text-align: center;
|
|
@@ -2126,7 +2126,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
2126
2126
|
font-weight: 400;
|
|
2127
2127
|
line-height: 20px; /* 142.857% */
|
|
2128
2128
|
letter-spacing: -0.008px;
|
|
2129
|
-
|
|
2129
|
+
`,$0=Zo.div`
|
|
2130
2130
|
margin-top: 1.5rem;
|
|
2131
2131
|
background-color: var(--privy-color-background-2);
|
|
2132
2132
|
border-radius: var(--privy-border-radius-md);
|
|
@@ -2144,7 +2144,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
2144
2144
|
&::-webkit-scrollbar {
|
|
2145
2145
|
display: none; /* Safari and Chrome */
|
|
2146
2146
|
}
|
|
2147
|
-
`,
|
|
2147
|
+
`,q0=Zo.div`
|
|
2148
2148
|
line-height: 20px;
|
|
2149
2149
|
height: 20px;
|
|
2150
2150
|
font-size: 13px;
|
|
@@ -2154,20 +2154,20 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
2154
2154
|
width: 100%;
|
|
2155
2155
|
margin-top: 16px;
|
|
2156
2156
|
margin-bottom: 4px;
|
|
2157
|
-
`,
|
|
2157
|
+
`,j0=Zo.span`
|
|
2158
2158
|
display: flex;
|
|
2159
2159
|
align-items: center;
|
|
2160
2160
|
gap: 8px;
|
|
2161
|
-
`,
|
|
2161
|
+
`,K0=Zo(L)`
|
|
2162
2162
|
transition: color 350ms ease, background-color 350ms ease;
|
|
2163
2163
|
|
|
2164
|
-
${e=>e.success&&
|
|
2164
|
+
${e=>e.success&&B0`
|
|
2165
2165
|
&&&& {
|
|
2166
2166
|
background-color: var(--privy-color-success);
|
|
2167
2167
|
color: #ffffff;
|
|
2168
2168
|
}
|
|
2169
2169
|
`}
|
|
2170
|
-
`;import
|
|
2170
|
+
`;import Z0,{createGlobalStyle as Q0}from"styled-components";var J0=`
|
|
2171
2171
|
*,
|
|
2172
2172
|
::before,
|
|
2173
2173
|
::after {
|
|
@@ -2397,7 +2397,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
2397
2397
|
[hidden] {
|
|
2398
2398
|
display: none;
|
|
2399
2399
|
}
|
|
2400
|
-
`,
|
|
2400
|
+
`,Cm=J0;var bm=Q0`
|
|
2401
2401
|
:root {
|
|
2402
2402
|
// Borders
|
|
2403
2403
|
--privy-border-radius-sm: 6px;
|
|
@@ -2429,10 +2429,10 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
2429
2429
|
--privy-height-modal-full: 620px;
|
|
2430
2430
|
--privy-height-modal-compact: 480px;
|
|
2431
2431
|
};
|
|
2432
|
-
`,
|
|
2432
|
+
`,Wa=Z0.div`
|
|
2433
2433
|
// css normalize only the privy application to avoid conflicts
|
|
2434
2434
|
// with consuming application
|
|
2435
|
-
${
|
|
2435
|
+
${Cm}
|
|
2436
2436
|
|
|
2437
2437
|
// Privy styles
|
|
2438
2438
|
color: var(--privy-color-foreground-2);
|
|
@@ -2491,7 +2491,7 @@ You will need this password to access your ${e} wallet on a new device. Please k
|
|
|
2491
2491
|
opacity: 1;
|
|
2492
2492
|
}
|
|
2493
2493
|
}
|
|
2494
|
-
`;import{jsx as
|
|
2494
|
+
`;import{jsx as tt,jsxs as i2}from"react/jsx-runtime";var r2={["LANDING"]:Yp,["AWAITING_PASSWORDLESS_CODE"]:sd,["AWAITING_CONNECTION"]:Cd,["AWAITING_CONNECT_ONLY_CONNECTION"]:xd,["PHANTOM_INTERSTITIAL_SCREEN"]:Wu,["LOGIN_FAILED_SCREEN"]:ou,["AWAITING_OAUTH_SCREEN"]:ku,["ALLOWLIST_REJECTION_SCREEN"]:Kc,["INSTALL_PHANTOM_SCREEN"]:_p,["LINK_EMAIL_SCREEN"]:Jp,["LINK_PHONE_SCREEN"]:Zp,["LINK_WALLET_SCREEN"]:Qp,["CONNECT_ONLY_LANDING_SCREEN"]:gd,["CONNECT_ONLY_AUTHENTICATED_SCREEN"]:fd,["EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN"]:pp,["EMBEDDED_WALLET_CREATED_SCREEN"]:Wd,["EMBEDDED_WALLET_CONNECTING_SCREEN"]:Rd,["EMBEDDED_WALLET_RECOVERY_SCREEN"]:fp,["EMBEDDED_WALLET_KEY_EXPORT_SCREEN"]:Dd,["EMBEDDED_WALLET_SIGN_REQUEST_SCREEN"]:wm,["EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN"]:gm,["FIAT_ON_RAMP_PROMPT_SCREEN"]:Cp,["FIAT_ON_RAMP_STATUS_SCREEN"]:Ep,["EMBEDDED_WALLET_PASSWORD_UPDATE_SPLASH_SCREEN"]:mp,["EMBEDDED_WALLET_PASSWORD_UPDATE_SCREEN"]:up,["MFA_ENROLLMENT_FLOW_SCREEN"]:Pu},n2=()=>{let{ready:e}=G(),{ready:t,currentScreen:o}=T(),r=X0(null),n=Hc(r);if((!e||!t)&&o!=="AWAITING_OAUTH_SCREEN")return i2(Jt,{children:[tt(P,{}),tt($,{}),tt(la,{children:tt(it,{})}),tt(q,{}),tt(K,{})]});if(!o)return null;let i=r2[o];return i?tt(Jt,{style:{height:n},children:tt("div",{ref:r,children:tt(i,{})})}):null},Em=({open:e})=>{let{app:t}=T(),[o,r]=e2(!1),{gracefulClosePrivyModal:n,onEscape:i}=aa();t2(()=>{r(!0)},[]);let a=tt(Wa,{children:tt(n2,{})}),l=t?.render.inDialog?tt("div",{onKeyDown:i,children:tt(sa,{open:e,id:"privy-dialog",onClick:()=>n(),children:a})}):a;if(o){let s=t?.render.inParentNodeId&&document.getElementById(t.render.inParentNodeId)||document.body;return o2.createPortal(l,s)}return null};import"wicg-inert";import{useState as Am}from"react";import{useEffect as w2}from"react";import C2 from"react-dom";import{createContext as a2,useContext as s2,useEffect as l2}from"react";var Pm={login:{onComplete:[],onError:[]},logout:{onSuccess:[]},connectWallet:{onSuccess:[],onError:[]},createWallet:{onSuccess:[],onError:[]},configureMfa:{onMfaRequired:[]}},pl=a2(void 0),xm=()=>s2(pl);function Nt(e,t){if(!t)return;let r=xm().current[e];return l2(()=>{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 de(e,t,o,...r){for(let n of e.current[t][o])n(...r)}function Tm(){let e=xm();return(t,o,...r)=>de(e,t,o,...r)}function ul(e){Nt("configureMfa",e)}import{DevicePhoneMobileIcon as h2,PhoneIcon as y2}from"@heroicons/react/24/outline";import{useEffect as g2,useState as fl}from"react";import{StaticJsonRpcProvider as c2}from"@ethersproject/providers";import{useMemo as d2,useEffect as p2,useState as Sm}from"react";import u2 from"styled-components";import{jsx as _m}from"react/jsx-runtime";var ml=({pendingTransaction:e})=>{let{getAccessToken:t}=G(),{wallets:o}=Bn(),{walletProxy:r,rpcConfig:n,chains:i,nativeTokenSymbolForChainId:a}=R(),[l,s]=Sm(e),{tokenPrice:c}=Ra(l),[u,h]=Sm(null),w=a(e.chainId)||"ETH",m=d2(()=>o.find(v=>v.walletClientType==="privy"),[o]);return p2(()=>{async function v(){if(!await t()||!r||!m)return l;let x=new c2(ht(l.chainId,i,n)),E=await _a(l,x);return h(ae(E.toBigInt()).toHexString()),Br(m.address,l,x)}v().then(y=>{s(y)})},[r]),m?_m(m2,{children:_m(Fr,{from:m.address,to:l.to,txn:l,gas:u??void 0,tokenPrice:c,tokenSymbol:w})}):null},m2=u2.div`
|
|
2495
2495
|
width: 100%;
|
|
2496
2496
|
padding: 1rem 0;
|
|
2497
|
-
`;import{useContext as d2}from"react";function La(){let{init:e,submit:t,cancel:o}=d2(Ie);return{init:e,submit:t,cancel:o}}import{Fragment as yl,jsx as Q,jsxs as Lt}from"react/jsx-runtime";var Sm=({open:e,onClose:t})=>{let{user:o}=H(),[r,n]=hl(null),{init:i,cancel:a}=La();m2(()=>{e&&o?.mfaMethods&&o.mfaMethods.length>0?l(o.mfaMethods[0]):n(null)},[o?.mfaMethods,e]);async function l(c){try{n(c),await i(c)}catch(u){console.error(u)}}let s=()=>{n(null),a(),t()};return!e||!o?null:r?Q(f2,{selectedMethod:r,onClose:s,onBack:o.mfaMethods.length>1?()=>n(null):void 0}):Lt(yl,{children:[Q(P,{title:"Verification Required",onClose:s},"header"),Q(Po,{children:Q(Eo,{})}),Q(Lr,{children:"Choose a verification method"}),Lt(pa,{children:[o.mfaMethods.includes("totp")&&Q(N,{onClick:()=>l("totp"),children:Lt(Nr,{children:[Q(p2,{}),Q("span",{children:"Authenticator App"})]})},"totp"),o.mfaMethods.includes("sms")&&Q(N,{onClick:()=>l("sms"),children:Lt(Nr,{children:[Q(u2,{}),Q("span",{children:"SMS"})]})},"sms")]}),Q(Y,{})]})},f2=({selectedMethod:e,onClose:t,onBack:o})=>{let{pendingTransaction:r}=R(),[n,i]=hl(!1),[a,l]=hl(!1),{submit:s}=La();async function c(u){try{if(!u)return;await s(e,u),l(!0),i(!1),t()}catch(h){throw Er(h)?(i(!0),new Error("You have exceeded the maximum number of attempts. Please close this window and try again in 30 seconds.")):br(h)?(i(!1),new Error("The code you entered is not valid")):Cr(h)?(i(!0),new Error("You have exceeded the time limit for code entry. Please try again in 30 seconds.")):(i(!1),new Error("Unknown error"))}}switch(e){case"sms":return Lt(yl,{children:[Q(P,{title:"Verification Required",onClose:t},"header"),Lt(It,{children:["To continue, please enter the 6-digit code sent to your ",Q("strong",{children:"mobile device"})]}),Lt(Kt,{children:[Q(Mr,{success:a,disabled:n,onChange:c}),r&&Q(fl,{pendingTransaction:r})]}),o&&Q(js,{onClick:o,children:"Choose another method"}),Q(Bt,{onClick:t,children:"Not Now"}),Q(Y,{})]});case"totp":return Lt(yl,{children:[Q(P,{title:"Verification Required",onClose:t},"header"),Lt(It,{children:["To continue, please enter the 6-digit code generated from your"," ",Q("strong",{children:"authenticator app"})]}),Lt(Kt,{children:[Q(Mr,{success:a,disabled:n,onChange:c}),r&&Q(fl,{pendingTransaction:r})]}),o&&Q(js,{onClick:o,children:"Choose another method"}),Q(Bt,{onClick:t,children:"Not Now"}),Q(Y,{})]});default:return null}};import{jsx as dt,jsxs as v2}from"react/jsx-runtime";var g2=({open:e,onClose:t})=>{let{ready:o}=H(),{ready:r}=T();return!o||!r?v2(jt,{children:[dt(P,{}),dt($,{}),dt(ca,{children:dt(nt,{})}),dt(j,{}),dt(Y,{})]}):dt(jt,{children:dt(Sm,{open:e,onClose:t})})},km=()=>{let{app:e}=T(),[t,o]=_m(!1),[r,n]=_m(!1),{onEscape:i,gracefulClosePrivyModal:a}=sa(()=>o(!1));ml({onMfaRequired:()=>{e?.mfa.noPromptOnMfaRequired||o(!0)}}),h2(()=>{n(!0)},[]);let l=!e?.mfa.noPromptOnMfaRequired&&t,s=dt(Ma,{onClick:u=>u.stopPropagation(),children:dt(g2,{open:l,onClose:()=>o(!1)})}),c=e?.render.inDialog?dt("div",{onKeyDown:i,children:dt(la,{open:l,id:"privy-verification-dialog",onClick:()=>a(),children:s})}):s;if(r){let u=e?.render.inParentNodeId&&document.getElementById(e.render.inParentNodeId)||document.body;return y2.createPortal(c,u)}return null};var pt={appearance:{theme:"light",accentColor:"#676FFF",supportedWallets:["browser_wallets","metamask","coinbase_wallet","rainbow","wallet_connect"]},walletConnectCloudProjectId:Jl,rpcConfig:{rpcUrls:{},rpcTimeouts:{}},captchaEnabled:!1,_render:{inDialog:!0,inParentNodeId:null},fiatOnRamp:{useSandbox:!1}};var w2=new Set(["metamask","coinbase_wallet","rainbow","zerion","phantom","wallet_connect","browser_wallets"]),C2=e=>w2.has(e),b2=(e,t,o)=>o.indexOf(e)===t,Am=({input:e})=>e?e.filter(C2).filter(b2):pt.appearance.supportedWallets;var Rm={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 Im={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 Wm={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 Mm={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 Lm={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 Nm={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 Om={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 Dm={id:17e3,name:"Holesky",network:"holesky",nativeCurrency:{name:"ETH",symbol:"ETH",decimals:18},rpcUrls:{default:{http:["https://ethereum-holesky.publicnode.com"]},public:{http:["https://ethereum-holesky.publicnode.com"]}},blockExplorers:{etherscan:{name:"EtherScan",url:"https://holesky.etherscan.io"},default:{name:"EtherScan",url:"https://holesky.etherscan.io"}}};var Um={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 Fm={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 Na={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 Bm={id:17001,name:"Redstone Holesky",network:"redstone-holesky",nativeCurrency:{name:"ETH",symbol:"ETH",decimals:18},rpcUrls:{default:{http:["https://rpc.holesky.redstone.xyz"]},public:{http:["https://rpc.holesky.redstone.xyz"]}},blockExplorers:{etherscan:{name:"EtherScan",url:"https://explorer.holesky.redstone.xyz"},default:{name:"EtherScan",url:"https://explorer.holesky.redstone.xyz"}}};var Hm={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 Hn=[va,wa,Ca,Om,Hm,Na,Pa,xa,On,Dn,Wm,Mm,Lm,Nm,ba,Ea,Um,Fm,Rm,Im,Ta,Sa,Dm,Bm],rL=new Set(Hn.map(e=>e.id));import Jo from"tinycolor2";var Gm="#FFFFFF",E2="#000000",P2=Gm,x2="#1E1E1D";function T2(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 _o(e,t){let o=Math.max(0,Math.min(1,e.toHsl().l+t));return Jo({...e.toHsl(),l:o})}function zm({backgroundTheme:e,accentHex:t,successHex:o="#51BA81",warnHex:r="#FFB74D",errorHex:n="#EC6351",whiteHex:i=Gm,blackHex:a=E2}){let l;switch(e){case"light":l=P2;break;case"dark":l=x2;break;default:l=e;break}let s=Jo(l),c=Jo(t),u=Jo(o),h=Jo(r),w=Jo(n),m=T2(s.getLuminance()),v=_o(s,m==="light"?-.04:.11),y=_o(s,m==="light"?-.88:.87),x=_o(s,m==="light"?-.77:.75),b=_o(s,m==="light"?-.43:.45).desaturate(m==="light"?60:20),I=_o(s,m==="light"?-.08:.25).desaturate(m==="light"?60:20),L=_o(c,.15),k=_o(c,-.06),A=Jo(c.getLuminance()>.5?a:i),W=_o(u,-.16);return{colorScheme:m,background:s.toHslString(),background2:v.toHslString(),foreground:y.toHslString(),foreground2:x.toHslString(),foreground3:b.toHslString(),foreground4:I.toHslString(),accent:c.toHslString(),accentLight:L.toHslString(),accentDark:k.toHslString(),foregroundAccent:A.toHslString(),success:u.toHslString(),successDark:W.toHslString(),error:w.toHslString(),warn:h.toHslString()}}function Oa(e,t){let o=["google","twitter","discord","tiktok","linkedin","github","apple"],r=t?.loginMethods?.filter(V=>o.includes(V)),n,i,a,l,s,c,u,h,w,m;t?.loginMethods?(n=t.loginMethods.includes("email"),i=t.loginMethods.includes("sms"),a=t.loginMethods.includes("wallet"),l=r?.includes("google"),s=r?.includes("twitter"),c=r?.includes("discord"),u=r?.includes("tiktok"),w=r?.includes("github"),h=r?.includes("linkedin"),m=r?.includes("apple")):(n=e.emailAuth,i=e.smsAuth,a=e.walletAuth,l=e.googleOAuth,s=e.twitterOAuth,c=e.discordOAuth,w=e.githubOAuth,u=e.tiktokOAuth,h=e.linkedinOAuth,m=e.appleOAuth);let v=[n,i].filter(Boolean),y=[l,s,c,w,u,h,m].filter(Boolean),x=[a].filter(Boolean);if(v.length+y.length+x.length===0)throw new Error("You must enable at least one login method");let b=t?.appearance?.showWalletLoginFirst!==void 0?t?.appearance?.showWalletLoginFirst:e.showWalletLoginFirst;b&&x.length===0?(console.warn("You should only enable `showWalletLoginFirst` when `wallet` logins are also enabled. `showWalletLoginFirst` has been set to false"),b=!1):!b&&y.length+v.length===0&&(console.warn("You should only disable `showWalletLoginFirst` when `email`, `sms`, or social logins are also enabled. `showWalletLoginFirst` has been set to true"),b=!0);let I=Am({isWalletLoginEnabled:a,input:t?.appearance?.supportedWallets});if(t?.embeddedWallets?.waitForTransactionConfirmation===!1&&t.embeddedWallets.noPromptOnSignature!==!0)throw new Error("Overriding `config.embeddedWallets.waitForTransactionConfirmation` requires that you also enable `config.embeddedWallets.noPromptOnSignature`");let L=t?.intl?.defaultCountry??"US",{chains:k,defaultChain:A}=S2(t?.additionalChains,t?.supportedChains,t?.defaultChain),W=!!t?.defaultChain||!!t?.supportedChains,M=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:zm({backgroundTheme:t?.appearance?.theme??pt.appearance.theme,accentHex:t?.appearance?.accentColor??e.accentColor??pt.appearance.accentColor}),showWalletLoginFirst:b,supportedWallets:I},loginMethods:{wallet:a,email:n,sms:i,google:l,twitter:s,discord:c,github:w,tiktok:u,linkedin:h,apple:m},legal:{termsAndConditionsUrl:t?.legal?.termsAndConditionsUrl??e.termsAndConditionsUrl,privacyPolicyUrl:t?.legal?.privacyPolicyUrl??e.privacyPolicyUrl},walletConnectCloudProjectId:t?.walletConnectCloudProjectId??e.walletConnectCloudProjectId??pt.walletConnectCloudProjectId,rpcConfig:{rpcUrls:t?.rpcConfig?.rpcUrls??pt.rpcConfig.rpcUrls,rpcTimeouts:t?.rpcConfig?.rpcTimeouts??pt.rpcConfig.rpcTimeouts},chains:k,defaultChain:A,intl:{defaultCountry:L},shouldSwitchChainOnConnect:W,captchaEnabled:e.captchaEnabled??pt.captchaEnabled,captchaSiteKey:e.captchaSiteKey,embeddedWallets:{...e.embeddedWalletConfig,...M?{createOnLogin:"all-users",requireUserPasswordOnCreate:!1,noPromptOnSignature:!0}:{},waitForTransactionConfirmation:!0,priceDisplay:{primary:"fiat-currency",secondary:"native-token"},...t?.embeddedWallets},mfa:{methods:e.mfaMethods??[],noPromptOnMfaRequired:t?.mfa?.noPromptOnMfaRequired??!0},customAuth:M?{enabled:!0,...t.customAuth}:void 0,fiatOnRamp:{enabled:e.fiatOnRampEnabled,useSandbox:t?.fiatOnRamp?.useSandbox??pt.fiatOnRamp.useSandbox},loginConfig:{twitterOAuthOnMobileEnabled:e.twitterOAuthOnMobileEnabled??!1},render:{inDialog:t?._render?.inDialog??pt._render.inDialog,inParentNodeId:t?._render?.inParentNodeId??pt._render.inParentNodeId}}}function Vm(e,t){if(!e)return{legacyCreateEmbeddedWalletFlag:t};let{appearance:o,additionalChains:r,supportedChains:n,defaultChain:i,...a}=e;return{...a,...r?{additionalChains:r.map(s=>s.id)}:void 0,...n?{supportedChains:n.map(s=>s.id)}:void 0,...i?{defaultChain:i.id}:void 0,...o?{...o,...o.logo&&typeof o.logo?{logo:"component"}:void 0}:void 0,legacyCreateEmbeddedWalletFlag:t}}function S2(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.map(a=>Hn.find(s=>s.id===a.id)??a)}else r=Hn.concat(e??[]);let n=t?r[0]:Na,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 _2,useEffect as k2}from"react";var Da=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;case"privy:mfa:verify":return r;case"privy:mfa:init-enrollment":return r;case"privy:mfa:submit-enrollment":return r;case"privy:mfa:unenroll":return r;default:throw new Error(`invalid wallet event type ${t}`)}}};async function Hr(e,t,o,r,n,i=!1){let a=i,l=async u=>{if(a&&t&&t.length>0){u===(i?0:1)?n("configureMfa","onMfaRequired",t):r.current?.reject(new Ce("missing_or_invalid_mfa","MFA verification failed, retry."));let h=await new Promise((w,m)=>{o.current={resolve:w,reject:m};let v=1e3*60*5;setTimeout(()=>{let y=new Ce("mfa_timeout","Timed out waiting for MFA code");r.current?.reject(y),m(y)},v)});return await e(h)}return await e()},s=4,c=null;for(let u=0;u<s;u++)try{c=await l(u),r.current?.resolve(void 0);break}catch(h){if(h.type==="missing_or_invalid_mfa")a=!0;else throw r.current?.resolve(void 0),h}if(c===null){let u=new Ce("mfa_verification_max_attempts_reached","Max MFA verification attempts reached");throw r.current?.reject(u),u}return c}import{jsx as L2}from"react/jsx-runtime";var A2=function(e){return()=>`id-${e++}`}(0);function R2(e){return typeof e.event=="string"&&/^privy:.+/.test(e.event)}function Nt(e){return e.error!==void 0}var wt=new Da,gl=new Map,I2=(e,t)=>typeof t=="bigint"?t.toString():t,W2=(e,t)=>`${e}${JSON.stringify(t,I2)}`;function Ot(e,t,o){let r=o.contentWindow;if(!r)throw new Error("iframe not initialized");let n=W2(e,t);if(e==="privy:wallet:create"){let a=gl.get(n);if(a)return a}let i=new Promise((a,l)=>{let s=A2();wt.enqueue(s,{resolve:a,reject:l}),r.postMessage({id:s,event:e,data:t},"*")}).finally(()=>{gl.delete(n)});return gl.set(n,i),i}function M2(e){switch(e.event){case"privy:iframe:ready":let t=wt.dequeue(e.event,e.id);return Nt(e)?t.reject(new Ce(e.error.type,e.error.message)):t.resolve(e.data);case"privy:wallet:create":let o=wt.dequeue(e.event,e.id);return Nt(e)?o.reject(new Ce(e.error.type,e.error.message)):o.resolve(e.data);case"privy:wallet:connect":let r=wt.dequeue(e.event,e.id);return Nt(e)?r.reject(new Ce(e.error.type,e.error.message)):r.resolve(e.data);case"privy:wallet:recover":let n=wt.dequeue(e.event,e.id);return Nt(e)?n.reject(new Ce(e.error.type,e.error.message)):n.resolve(e.data);case"privy:wallet:rpc":let i=wt.dequeue(e.event,e.id);return Nt(e)?i.reject(new Ce(e.error.type,e.error.message)):i.resolve(e.data);case"privy:wallet:set-recovery-password":let a=wt.dequeue(e.event,e.id);return Nt(e)?a.reject(new Ce(e.error.type,e.error.message)):a.resolve(e.data);case"privy:mfa:verify":let l=wt.dequeue(e.event,e.id);return Nt(e)?l.reject(new Ce(e.error.type,e.error.message)):l.resolve(e.data);case"privy:mfa:init-enrollment":{let s=wt.dequeue(e.event,e.id);return Nt(e)?s.reject(new Ce(e.error.type,e.error.message)):s.resolve(e.data)}case"privy:mfa:submit-enrollment":{let s=wt.dequeue(e.event,e.id);return Nt(e)?s.reject(new Ce(e.error.type,e.error.message)):s.resolve(e.data)}case"privy:mfa:unenroll":{let s=wt.dequeue(e.event,e.id);return Nt(e)?s.reject(new Ce(e.error.type,e.error.message)):s.resolve(e.data)}default:console.warn("Unsupported wallet proxy method:",e)}}function $m(e){let t=_2(null),o=Pm();return k2(()=>{let r=t.current;if(!r)return;function n(c){c&&c.origin===e.origin&&R2(c.data)&&M2(c.data)}let i={create(c){return Ot("privy:wallet:create",c,r)},connect(c){return Ot("privy:wallet:connect",c,r)},recover(c){return Hr(u=>Ot("privy:wallet:recover",{...c,...u},r),e.mfaMethods,e.mfaPromise,e.mfaSubmitPromise,o,!0)},rpc(c){return Hr(u=>Ot("privy:wallet:rpc",{...c,...u},r),e.mfaMethods,e.mfaPromise,e.mfaSubmitPromise,o)},setRecoveryPassword(c){return Ot("privy:wallet:set-recovery-password",c,r)},verifyMfa(c){return Hr(u=>Ot("privy:mfa:verify",{...c,...u},r),e.mfaMethods,e.mfaPromise,e.mfaSubmitPromise,o,!0)},initEnrollMfa(c){return Hr(u=>Ot("privy:mfa:init-enrollment",{...c,...u},r),e.mfaMethods,e.mfaPromise,e.mfaSubmitPromise,o,!0)},submitEnrollMfa(c){return Ot("privy:mfa:submit-enrollment",c,r)},unenrollMfa(c){return Hr(u=>Ot("privy:mfa:unenroll",{...c,...u},r),e.mfaMethods,e.mfaPromise,e.mfaSubmitPromise,o,!0)}};window.addEventListener("message",n);let a=()=>e.onLoad(i),l=(...c)=>{console.warn("Privy iframe failed to load: ",...c),e.onLoadFailed()},s=new AbortController;return uc(()=>Ot("privy:iframe:ready",{},r),{abortSignal:s.signal}).then(a,l),()=>{window.removeEventListener("message",n),s.abort()}},[t.current,e.mfaMethods]),L2("iframe",{ref:t,width:"0",height:"0",style:{display:"none",height:"0px",width:"0px"},src:ri(e.origin,`/apps/${e.appId}/embedded-wallets`,{caid:e.clientAnalyticsId})})}var Ua=class{constructor(t,o){this.meta={action:t,phoneNumber:o}}async init(){if(!this.meta.action)throw new E("action required");if(!this.api)throw new E("Auth flow has no API instance");if(this.meta.action==="enroll"&&!this.meta.phoneNumber)throw new E("phone number must be set when initialzing authentication.");try{let t=ql();await this.api.post(t,{action:this.meta.action,phoneNumber:this.meta.phoneNumber})}catch(t){throw ee(t)}}async authenticate(){if(!this.meta.action)throw new E("action required");if(!this.api)throw new E("Mfa flow has no API instance");if(!this.meta.smsCode)throw new E("sms code must be set prior to calling authenticate.");if(this.meta.action==="enroll"&&!this.meta.phoneNumber)throw new E("phone number must be set prior to calling authenticate.");try{let t=jl(),o=await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode});return mt(o)}catch(t){throw ee(t)}}};import{jsx as ko,jsxs as wl}from"react/jsx-runtime";var zn;function U2(e){return typeof e=="string"&&e.length===25}function Re(){if(!zn){let e=K.get(tr);return Promise.resolve(e||null)}return zn.getAccessToken()}var qm,vc=(e,t)=>qm(e,t),jm,wc=(e,t)=>jm(e,t),Km,Cc=()=>Km(),F2=()=>{let t=new URLSearchParams(window.location.search).get("privy_token");if(!t)return;K.put(Kr,t);let o=new URL(window.location.href);o.searchParams.delete("privy_token"),window.history.pushState({},"",o)},B2=({config:e,...t})=>{if(!U2(t.appId))throw new E("Cannot initialize the Privy provider with an invalid Privy app ID");zn||(zn=new tn({appId:t.appId,apiUrl:t.apiUrl||ei}));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."),ko(H2,{...t,config:o,client:zn})},H2=e=>{let t=e.client,[o,r]=de(!1),[n,i]=de(!1),[a,l]=de(!1),[s,c]=de(null),[u,h]=de(!1),[w,m]=de([]),v=Gn(w),[y,x]=de(!1),[b,I]=de(null),[L,k]=de(!1),[A,W]=de({status:"disconnected",connectError:null,connector:null,connectRetry:C}),[M,O]=de(null),[V,U]=de(null),[_,J]=de(null),[pe,ut]=de({showWalletLoginFirst:!0,allowlistConfig:{errorTitle:null,errorDetail:null,errorCtaText:null,errorCtaLink:null},walletAuth:!0,emailAuth:!0,smsAuth:!1,googleOAuth:!1,twitterOAuth:!1,discordOAuth:!1,githubOAuth:!1,linkedinOAuth:!1,appleOAuth:!1,termsAndConditionsUrl:null,privacyPolicyUrl:null,embeddedWalletConfig:{createOnLogin:"off",requireUserPasswordOnCreate:!1},fiatOnRampEnabled:!1,captchaEnabled:!1,captchaSiteKey:""}),[F,ue]=de(()=>{let p=Vm(e.config,e.createPrivyWalletOnLogin);return t.createAnalyticsEvent("sdk_initialize",p),Oa(pe,e.config)}),[re,fe]=de(!0),[_e,q]=de({}),[te,Zo]=de(null),[Xt,Vn]=de(null),[Ao,Gr]=de(!1),Ro=Gn(null),$n=Gn(null),ie=Gn(bm),Io=Gn(),he=p=>{I(p),r(!0),t.createAnalyticsEvent("modal_open",{initialScreen:p})},ke=p=>{F.embeddedWallets.createOnLogin!=="off"&&fe(!0),he(p)};Dt(()=>{if(!_||!s){t.connectors?.removeEmbeddedWalletConnector();return}let p=s?.linkedAccounts.filter(d=>d.type==="wallet"&&d.walletClient==="privy");if(p&&p.length>0){let d=p[0].address;t.connectors?.addEmbeddedWalletConnector(_,d,F.defaultChain)}},[_,s]),Dt(()=>{_&&Xt?.(_)},[_]),Dt(()=>{(async()=>{if(!F.customAuth?.enabled)return;fe(!0);let{getCustomAccessToken:d,isLoading:f}=F.customAuth;if(!(!n||f))try{let g=await d();if(!g){await $r.logout();return}if(a)return;t.startAuthFlow(new er(g));let{user:D,isNewUser:X}=await t.authenticate();D||await $r.logout(),c(D||null),x(X||!1),l(!0),Gr(!0)}catch(g){console.warn(g),a&&await $r.logout()}})()},[F.customAuth?.enabled,F.customAuth?.getCustomAccessToken,F.customAuth?.isLoading,n,a]),Dt(()=>{Ao&&_&&s&&ro(s,e.config?.embeddedWallets?.createOnLogin)&&(Gr(!1),bl(s,or).catch(console.error))},[Ao&&_&&s]),Dt(()=>{async function p(){let d=await t.getServerConfig();ut(d);let f=Oa(d,e.config);ue(f),d.customApiUrl&&t.updateApiUrl(d.customApiUrl);let g=O2();O(g),t.initializeConnectorManager(f.walletConnectCloudProjectId,f.rpcConfig,f.chains,f.defaultChain,g),t.connectors?.initialize();let D=Ba();F2();let X=await t.getAuthenticatedUser();e.config?.customAuth?.enabled||(l(!!X),X&&ce(ie,"login","onComplete",X,!1,!0,null),c(X)),D||ve.setReadyToTrue(),D&&X&&h(!0),Vr()}n||p()},[t,te,n]),Dt(()=>{let p=Oa(pe,e.config);ue(p)},[e.config,pe]);let Ba=()=>{let p=new URLSearchParams(window.location.search),d=p.get("privy_oauth_code"),f=p.get("privy_oauth_state"),g=p.get("privy_oauth_provider");return d&&f&&g?(t.startAuthFlow(new to(g,d,f)),ke("AWAITING_OAUTH_SCREEN"),!0):!1},Wo=async(p,d,f)=>{let g=await t.connectors?.createWalletConnector(p,d)||null;Mo(g,d,f)};async function Mo(p,d,f){if(!p)return W({status:"disconnected",connectError:new G("Unable to connect to wallet."),connector:null,connectRetry:C}),f?.(null);p instanceof Fo&&d&&p.resetConnection(d),W({connector:p,status:"connecting",connectError:null,connectRetry:()=>Mo(p,d,f)});try{let g=await p.connect({showPrompt:!0});if(F.shouldSwitchChainOnConnect&&!F.chains.find(D=>D.id===Number(g?.chainId))){W(D=>({...D,connector:p,status:"switching_to_supported_chain",connectError:null,connectRetry:C}));try{await g?.switchChain(F.defaultChain.id),g&&(g.chainId=rr(Uo(F.defaultChain.id)))}catch{console.warn(`Unable to switch to default chain: ${F.defaultChain.id}`)}}return W(D=>({...D,status:"connected",connectError:null,connectRetry:C})),g&&!L&&ce(ie,"connectWallet","onSuccess",g),f?.(g)}catch(g){return g instanceof Ge?(console.warn(g.cause?g.cause:g.message),L||ce(ie,"connectWallet","onError",g.privyErrorCode||"generic_connect_wallet_error")):(console.warn(g),L||ce(ie,"connectWallet","onError","unknown_connect_wallet_error")),W(D=>({...D,status:"disconnected",connectError:g})),f?.(null)}}let zr=p=>{p!==null&&t.startAuthFlow(new Oo(p))},Vr=()=>{let p=new URLSearchParams(window.location.search),d=p.get("privy_connector"),f=p.get("privy_wallet_client");if(!d||!f)return;if(f==="phantom"&&!bt()&&ke("LOGIN_FAILED_SCREEN"),!t.connectors)throw new E("Connector not initialized");he("AWAITING_CONNECTION");let g=new URL(window.location.href);g.searchParams.delete("privy_connector"),g.searchParams.delete("privy_wallet_client"),window.history.pushState({},"",g),Wo(d,f,zr)};Dt(()=>{n&&a&&s===null&&t.getAuthenticatedUser().then(c)},[n,a,s,t]);let Lo=()=>{h(!0),he("LINK_WALLET_SCREEN")},De=p=>{if(!a||!s)return!1;for(let d of s.linkedAccounts)if(d.type==="wallet"&&d.address===p.address)return!0;return!1},se=async p=>{if(!t.connectors)throw new E("Connector not initialized");let d=t.connectors.findWalletConnector(p.connectorType,p.walletClientType)||null;W(f=>({...f,connector:d,status:"connected",connectError:null,connectRetry:C})),zr(p),ke("AWAITING_CONNECTION")},tt=async(p,d)=>{Io.current="siwe",await Mo(p,d,zr)},Cl=async(p,d)=>{if(!F.fiatOnRamp.enabled)throw new E("Fiat on-ramp is not enabled");if(!d||!d.provider||d.provider==="moonpay"){let{signedUrl:f,externalTransactionId:g}=await yp(t,p,d?.config??{},F.appearance.palette,F.fiatOnRamp.useSandbox);return{signedUrl:f,externalTransactionId:g}}else throw new E("Unsupported fund provider. Currently supported option is `moonpay`.")},qn=()=>{m(p=>{let d=t.connectors?.wallets.map(f=>({...f,linked:De(f),loginOrLink:async()=>{if(!await f.isConnected())throw new E("Wallet is not connected");if(f.connectorType==="embedded"&&f.walletClientType==="privy")throw new E("Cannot link or login with embedded wallet");se(f)},fund:async g=>{let{signedUrl:D,externalTransactionId:X}=await Cl(f.address,g);q({fiatOnRampPrompt:{signedUrl:D},fiatOnRampStatus:{externalTransactionId:X}}),he("FIAT_ON_RAMP_PROMPT_SCREEN")},unlink:async()=>{if(!a)throw new E("User is not authenticated.");if(f.connectorType==="embedded"&&f.walletClientType==="privy")throw new E("Cannot unlink an embedded wallet");let g=await t.unlinkWallet(f.address);c(g)}}))||[];return ii(p,d)?p:d})};Dt(()=>{qn()},[s?.linkedAccounts,a,n]),Dt(()=>{if(n){if(!t.connectors)throw new E("Connector not initialized");qn(),t.connectors.on("walletsUpdated",qn)}},[n]);let Jm=()=>{he(a?"CONNECT_ONLY_AUTHENTICATED_SCREEN":"CONNECT_ONLY_LANDING_SCREEN")};Dt(()=>{if(!w[0])return;let p=w[0],d=v.current.find(g=>g.address===p.address),f=s?.linkedAccounts.find(g=>g.type==="wallet"&&g.address===p.address);if(!d&&f){let g=Object.assign({},s);g.wallet=f&&{address:f.address,chainType:f.chainType,chainId:f.chainId,walletClient:f.walletClient,walletClientType:f.walletClientType,connectorType:f.connectorType},c(g)}v.current=w},[w]);let bl=async(p,d)=>{if(ne(p))throw ce(ie,"createWallet","onError","embedded_wallet_already_exists"),new Error("Only one Privy wallet per user is currently allowed");let[g,D]=await Promise.all([ve.initializeWalletProxy(d),Re()]);if(!g&&e.config?.customAuth?.enabled)throw ce(ie,"createWallet","onError","unknown_embedded_wallet_error"),new Error("Failed to connect to wallet proxy");if(!g||!D||e.config?.embeddedWallets?.requireUserPasswordOnCreate)return new Promise((X,Pe)=>{fe(!0),q({createWallet:{onSuccess:ot=>{ce(ie,"createWallet","onSuccess",ot),X(ot)},onFailure:ot=>{ce(ie,"createWallet","onError","unknown_embedded_wallet_error"),Pe(ot)},callAuthOnSuccessOnClose:!1}}),he("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")});{await g.create({accessToken:D});let X=await ve.refreshUser(),Pe=ne(X);if(!Pe)throw ce(ie,"createWallet","onError","unknown_embedded_wallet_error"),new Error("Failed to create wallet");return ce(ie,"createWallet","onSuccess",Pe),Pe}},Zm=p=>{if(!F.chains.map(d=>d.id).includes(p))throw new G(`Chain ID ${p} is not supported. It must be added to the config.supportedChains property of the PrivyProvider.`,"unsupported_chain_id")},El=(p,d,f)=>new Promise(async(g,D)=>{if(!a||!s){D(new Error("User must be authenticated before signing with a Privy wallet"));return}let X=ne(s);if(!X){D(new Error("Must have a Privy wallet before signing"));return}fe(!0);let Pe=t.connectors?.findWalletConnector("embedded","privy")?.proxyProvider,Qo=p.chainId?Number(p.chainId):Pe.chainId;Zm(Qo);let ot=Object.assign({},p,{chainId:Qo}),qr=async()=>{let eo=await Re();if(!eo||!_){D(new Error("Must have valid access token and Privy wallet to send transaction"));return}try{if(!await ve.recoverEmbeddedWallet()){D(new Error("Unable to connect to wallet"));return}let Pl=new N2(ft(ot.chainId,F.chains,F.rpcConfig)),Xm=await Ur(X.address,ot,Pl),ef=await _a(eo,X.address,_,Xm,Pl);g(ef)}catch(jn){D(jn)}};if(F.embeddedWallets.noPromptOnSignature)d&&console.warn("uiOptions defined with `noPromptOnSignature` set to true in app config"),qr();else{let eo={transactionRequest:ot,onSuccess:g,onFailure:D,uiOptions:d||{},fundWalletConfig:f},jn={onCompleteNavigateTo:"EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN",onFailure:D};q({connectWallet:jn,sendTransaction:eo}),he("EMBEDDED_WALLET_CONNECTING_SCREEN")}}),$r={ready:n,authenticated:a,user:s,walletConnectors:t.connectors||null,connectWallet:Jm,linkWallet:Lo,linkEmail:()=>{if(s?.email)throw new E("User already has an email linked to their account.");h(!0),he("LINK_EMAIL_SCREEN")},linkPhone:()=>{if(s?.phone)throw new E("User already has a phone number linked to their account.");h(!0),he("LINK_PHONE_SCREEN")},linkGoogle:async()=>{if(s?.google)throw new E("User already has a Google account linked to their account.");await ve.initLoginWithOAuth("google")},linkTwitter:async()=>{if(s?.twitter)throw new E("User already has a Twitter account linked to their account.");await ve.initLoginWithOAuth("twitter")},linkDiscord:async()=>{if(s?.discord)throw new E("User already has a Discord account linked to their account.");await ve.initLoginWithOAuth("discord")},linkGithub:async()=>{if(s?.github)throw new E("User already has a Github account linked to their account.");await ve.initLoginWithOAuth("github")},linkTiktok:async()=>{if(s?.tiktok)throw new E("User already has a Tiktok account linked to their account.");await ve.initLoginWithOAuth("tiktok")},linkLinkedIn:async()=>{if(s?.linkedin)throw new E("User already has a LinkedIn account linked to their account.");await ve.initLoginWithOAuth("linkedin")},linkApple:async()=>{await ve.initLoginWithOAuth("apple")},login:async()=>{if(n||(await new Promise(p=>{Zo(()=>p)}),Zo(null)),a){console.warn("Attempted to log in, but user is already logged in. Use a `link` helper instead.");return}k(!0),ke("LANDING")},logout:async()=>{await t.logout(),c(null),l(!1),I(null),ce(ie,"logout","onSuccess"),h(!1),r(!1),K.del(Yr)},getAccessToken:()=>t.getAccessToken(),getEthereumProvider:()=>{if(!s||!s.wallet)return new oe;let p=w.find(f=>s.wallet&&f.address===s.wallet.address),d=t.connectors?.walletConnectors.find(f=>f.wallets.find(g=>g.address===p?.address));return!p||!d?new oe:d.proxyProvider},getEthersProvider:()=>{if(!s||!s.wallet)return new vl(new Pt(new oe));let p=w.find(f=>s.wallet&&f.address===s.wallet.address),d=t.connectors?.walletConnectors.find(f=>f.wallets.find(g=>g.address===p?.address));return!p||!d?new vl(new Pt(new oe)):new vl(new Pt(d.proxyProvider))},getWeb3jsProvider:()=>{if(!s||!s.wallet)return new ao(new oe);let p=w.find(f=>s.wallet&&f.address===s.wallet.address),d=t.connectors?.walletConnectors.find(f=>f.wallets.find(g=>g.address===p?.address));return!p||!d?new ao(new oe):new ao(d.proxyProvider)},unlinkWallet:async p=>{let d=await t.unlinkWallet(p);return c(d),d},unlinkEmail:async p=>{let d=await t.unlinkEmail(p);return c(d),d},unlinkPhone:async p=>{let d=await t.unlinkPhone(p);return c(d),d},unlinkGoogle:async p=>{let d=await t.unlinkOAuth("google",p);return c(d),d},unlinkTwitter:async p=>{let d=await t.unlinkOAuth("twitter",p);return c(d),d},unlinkDiscord:async p=>{let d=await t.unlinkOAuth("discord",p);return c(d),d},unlinkGithub:async p=>{let d=await t.unlinkOAuth("github",p);return c(d),d},unlinkTiktok:async p=>{let d=await t.unlinkOAuth("tiktok",p);return c(d),d},unlinkLinkedIn:async p=>{let d=await t.unlinkOAuth("linkedin",p);return c(d),d},unlinkApple:async p=>{let d=await t.unlinkOAuth("apple",p);return c(d),d},setActiveWallet:async p=>{let d=w.find(g=>Fa(g.address)===Fa(p)),f=s?.linkedAccounts.find(g=>g.type==="wallet"&&Fa(g.address)===Fa(p));if(!d||!await d.isConnected())U(p),Lo();else if(!d.linked)d.loginOrLink();else{let g=Object.assign({},s);g.wallet=f&&{address:f.address,chainType:f.chainType,chainId:f.chainId,walletClient:f.walletClient,walletClientType:f.walletClientType,connectorType:f.connectorType},c(g)}},forkSession:()=>t.forkSession(),createWallet:async()=>{if(!a||!s)throw ce(ie,"createWallet","onError","must_be_authenticated"),new Error("User must be authenticated before creating a Privy wallet");return bl(s,15e3)},setWalletPassword:()=>new Promise((p,d)=>{if(!a||!s){d(new Error("User must be authenticated before adding password to Privy wallet"));return}let f=ne(s);if(!f||!_){d(new Error("Must have a Privy wallet to add a password"));return}if(f.recoveryMethod==="user-passcode"){d(new Error("Cannot set password. Embedded wallet already has a password."));return}fe(!0);let g={onSuccess:p,onFailure:d,callAuthOnSuccessOnClose:!1},D={onCompleteNavigateTo:"EMBEDDED_WALLET_PASSWORD_UPDATE_SPLASH_SCREEN",onFailure:d};q({setWalletPassword:g,connectWallet:D}),he("EMBEDDED_WALLET_CONNECTING_SCREEN")}),signMessage:(p,d)=>new Promise(async(f,g)=>{if(!a||!s){g(new Error("User must be authenticated before signing with a Privy wallet"));return}let D=ne(s);if(!D){g(new Error("Must have a Privy wallet before signing"));return}if(typeof p!="string"||p.length<1){g(new Error("Message must be a non-empty string"));return}fe(!0);let X=async()=>{if(!a)throw new Error("User must be authenticated before signing with a Privy wallet");let Pe=await Re();if(!_||!Pe)throw new Error("Unable to connect to wallet");if(!await ve.recoverEmbeddedWallet())throw new Error("Unable to connect to wallet");t.createAnalyticsEvent("embedded_wallet_sign_message_started",{walletAddress:D.address});let{response:ot}=await _.rpc({accessToken:Pe,address:D.address,request:{method:"personal_sign",params:[p,D.address]}}),qr=ot.data;return t.createAnalyticsEvent("embedded_wallet_sign_message_completed",{walletAddress:D.address}),qr};if(F.embeddedWallets.noPromptOnSignature){d&&console.warn("uiOptions defined with `noPromptOnSignature` set to true in app config");try{let Pe=await X();f(Pe)}catch(Pe){g(Pe??new Ae("Unable to sign message"))}}else{let ot={message:p,confirmAndSignMessage:X,onSuccess:eo=>{f(eo)},onFailure:eo=>{g(eo)},uiOptions:d||{}},qr={onCompleteNavigateTo:"EMBEDDED_WALLET_SIGN_REQUEST_SCREEN",onFailure:g};q({signMessage:ot,connectWallet:qr}),he("EMBEDDED_WALLET_CONNECTING_SCREEN")}}),sendTransaction:async(p,d,f)=>{let D=await(await El(p,d,f)).wait();return Aa(D)},exportWallet:()=>new Promise(async(p,d)=>{if(!a||!s){d(new Error("User must be authenticated before exporting their Privy wallet"));return}if(!ne(s)){d(new Error("Must have a Privy wallet before exporting"));return}fe(!0);let g={onCompleteNavigateTo:"EMBEDDED_WALLET_KEY_EXPORT_SCREEN",onFailure:d},D=await Re();if(!D||!_)throw new Error("Must have valid access token to enroll in MFA");if(!_){d(new Error("Must have a Privy wallet before exporting"));return}await _.verifyMfa({accessToken:D});let X={appId:e.appId,origin:t.apiUrl,onSuccess:p,onFailure:d};q({keyExport:X,connectWallet:g}),he("EMBEDDED_WALLET_CONNECTING_SCREEN")}),async init(p){let d;switch(p){case"sms":d=new Ua("verify");break;case"totp":return;default:throw new Error(`Unsupported MFA method: ${p}`)}t.startMfaFlow(d),await d.init()},async submit(p,d){switch(p){case"totp":case"sms":Ro.current?.resolve({mfaMethod:p,mfaCode:d}),await new Promise((f,g)=>{$n.current={resolve:f,reject:g}});break;default:throw Ro.current?.reject(new E("Unsupported MFA method")),new E(`Unsupported MFA method: ${p}`)}},cancel(){Ro.current?.reject(new E("MFA canceled"))},async initEnrollmentWithSms(p){let d=await Re();if(!d||!_)throw new Error("Must have valid access token to enroll in MFA");await _.initEnrollMfa({method:"sms",accessToken:d,phoneNumber:p.phoneNumber})},enrollInMfa(p){return new Promise((d,f)=>{if(!p){ve.closePrivyModal(),d();return}q({mfaEnrollmentFlow:{mfaMethods:F.mfa.methods,onSuccess:d,onFailure:f}}),he("MFA_ENROLLMENT_FLOW_SCREEN")})},async initEnrollmentWithTotp(){let p=await Re();if(!p||!_)throw new Error("Must have valid access token to enroll in MFA");let d=await _.initEnrollMfa({method:"totp",accessToken:p});return{secret:d.secret,authUrl:d.authUrl}},async submitEnrollmentWithSms(p){let d=await Re();if(!d||!_)throw new Error("Must have valid access token to enroll in MFA");await _.submitEnrollMfa({method:"sms",accessToken:d,phoneNumber:p.phoneNumber,code:p.mfaCode});let f=await t.getAuthenticatedUser();c(f)},async submitEnrollmentWithTotp(p){let d=await Re();if(!d||!_)throw new Error("Must have valid access token to enroll in MFA");await _.submitEnrollMfa({method:"totp",accessToken:d,code:p.mfaCode});let f=await t.getAuthenticatedUser();c(f)},async unenroll(p){let d=await Re();if(!d||!_)throw new Error("Must have valid access token to remove MFA");await _.unenrollMfa({method:p,accessToken:d});let f=await t.getAuthenticatedUser();c(f)},loginWithCode(p){return ve.loginWithCode(p)},initLoginWithEmail(p,d){return ve.initLoginWithEmail(p,d)}};qm=$r.signMessage,jm=async(...p)=>{let d=await El(...p);return F.embeddedWallets.waitForTransactionConfirmation&&await d.wait(),d};let ve=(()=>({isNewUserThisSession:y,isLinking:u,linkingHint:V,pendingTransaction:null,walletConnectionStatus:A,mipdStore:M,connectors:t.connectors?.walletConnectors??[],rpcConfig:F.rpcConfig,chains:F.chains,showFiatPrices:F.embeddedWallets.priceDisplay.primary!=="native-token",clientAnalyticsId:t.clientAnalyticsId,nativeTokenSymbolForChainId:p=>F.chains.find(d=>d.id===Number(p))?.nativeCurrency.symbol,initializeWalletProxy:async p=>{if(_)return _;let d=new Promise(D=>{Vn(()=>X=>D(X))}),f=new Promise(D=>setTimeout(()=>D(null),p)),g=await Promise.race([d,f]);return Vn(null),g},getAuthFlow:()=>t.authFlow,getAuthMeta:()=>t.authFlow?.meta,closePrivyModal:(p={shouldCallAuthOnSuccess:!0})=>{let d=n&&a&&s;p.shouldCallAuthOnSuccess&&d?(ce(ie,"login","onComplete",s,y,!1,Io.current??null),e.onSuccess?.(s,y)):L&&ce(ie,"login","onError","exited_auth_flow"),U(null),k(!1),h(!1),x(!1),r(!1),setTimeout(()=>{t.authFlow=void 0},200),t.createAnalyticsEvent("modal_closed")},connectWallet:Mo,initLoginWithWallet:tt,loginWithWallet:async()=>{if(!n)throw new jr;if(!(t.authFlow instanceof Oo))throw new E("Must initialize SIWE flow first.");let p,d;if(a)p=await t.link();else try{({user:p,isNewUser:d}=await t.authenticate())}catch(f){throw ce(ie,"login","onError",f.privyErrorCode||"generic_connect_wallet_error"),f}c(p||s||null),x(d||!1),l(!0)},initLoginWithOAuth:async p=>{t.startAuthFlow(new to(p));let d=await t.authFlow.getAuthorizationUrl();d&&d.url&&window.location.assign(d.url)},loginWithOAuth:async p=>{if(!(t.authFlow instanceof to))throw new E("Must initialize OAuth flow before calling loginWithOAuth");let d,f;if(a)d=await t.link();else try{({user:d,isNewUser:f}=await t.authenticate()),Io.current=p}catch(g){throw ce(ie,"login","onError",g.privyErrorCode||"unknown_auth_error"),g}c(d),x(f||!1),l(!0)},initLoginWithEmail:async(p,d)=>{let f=new No(p,d);t.startAuthFlow(f);try{Io.current="email",await f.sendCodeEmail()}catch(g){throw ce(ie,"login","onError",g.privyErrorCode||"unknown_auth_error"),g}},initLoginWithSms:async(p,d)=>{let f=new Do(p,d);t.startAuthFlow(f);try{Io.current="sms",await f.sendSmsCode()}catch(g){throw ce(ie,"login","onError",g.privyErrorCode||"unknown_auth_error"),g}},resendEmailCode:async()=>{await t.authFlow?.sendCodeEmail()},resendSmsCode:async()=>{await t.authFlow?.sendSmsCode()},loginWithCode:async p=>{if(!n)throw new jr;if(t.authFlow instanceof No)t.authFlow.meta.emailCode=p.trim();else if(t.authFlow instanceof Do)t.authFlow.meta.smsCode=p.trim();else throw new E("Must initialize a passwordless code flow first");let d,f;a?d=await t.link():{user:d,isNewUser:f}=await t.authenticate(),c(d||s||null),x(f||!1),l(!0)},refreshUser:async()=>{let p=await t.getAuthenticatedUser();return c(p),p},walletProxy:_,createAnalyticsEvent:(p,d,f)=>t.createAnalyticsEvent(p,d,f),getUsdTokenPrice:p=>t.getUsdTokenPrice(p),recoverEmbeddedWallet:async()=>new Promise(async(p,d)=>{let f=s?.linkedAccounts.find(D=>D.type==="wallet"&&D.walletClientType==="privy"),g=await Re();if(!g||!_||!f){d(new Error("Must have valid access token and Privy wallet to recover wallet"));return}fe(!0);try{await _.connect({accessToken:g,address:f.address}),p(!0)}catch(D){wr(D)&&f.recoveryMethod==="privy"?(t.createAnalyticsEvent("embedded_wallet_pinless_recovery_started",{walletAddress:f.address}),(await _.recover({address:f.address,accessToken:g})).address||d(new Error("Unable to recover wallet")),t.createAnalyticsEvent("embedded_wallet_recovery_completed",{walletAddress:f.address}),p(!0)):wr(D)?(q({recoverWallet:{privyWallet:f,onFailure:d,onSuccess:()=>p(!0)}}),he("EMBEDDED_WALLET_RECOVERY_SCREEN")):d(D)}}),getFiatOnRampConfig:Cl,setReadyToTrue:()=>{i(!0),te?.()},updateWallets:()=>qn()}))();Km=ve.recoverEmbeddedWallet;let Qm=D2(()=>({wallets:w}),[w]);return ko(Ie.Provider,{value:$r,children:ko(ul.Provider,{value:ie,children:ko(sl.Provider,{value:Qm,children:wl(Rp,{...F,children:[e.children,wl(rs.Provider,{value:ve,children:[ko(wm,{theme:{...F.appearance.palette||{}}}),wl(_c,{appConfig:F,data:_e,setModalData:q,setInitialScreen:I,initialScreen:b,visible:o,authenticated:a,children:[ko(Cm,{open:o}),ko(km,{})]}),re&&pe.id?ko($m,{appId:e.appId,clientAnalyticsId:t.clientAnalyticsId,origin:t.apiUrl,mfaMethods:s?.mfaMethods,mfaPromise:Ro,mfaSubmitPromise:$n,onLoad:J,onLoadFailed:()=>null}):null]})]})})})})};import{useContext as G2}from"react";function z2(e){let{login:t}=G2(Ie);return Mt("login",e),{login:t}}import{useContext as V2}from"react";function $2(e){let{logout:t}=V2(Ie);return Mt("logout",e),{logout:t}}import{useCallback as Ym}from"react";var q2=()=>{let e=Rt(),{initLoginWithEmail:t,loginWithCode:o}=H(),r=Ym(async({email:i})=>{if(!i)throw new Error("Email required to send OTP code");if(e.status==="disabled")return t(i);let a=await e.waitForResult();return t(i,a)},[t,e]),n=Ym(async({code:i})=>{if(e.enabled&&e.status!=="success")throw new bn(e.error,null,"captcha_failure");return o(i)},[o,e.status]);return{sendCode:r,loginWithCode:n}};import{useContext as j2}from"react";function K2(e){let{connectWallet:t}=j2(Ie);return Mt("connectWallet",e),{connectWallet:t}}import{useContext as Y2}from"react";function J2(e){let{createWallet:t}=Y2(Ie);return Mt("createWallet",e),{createWallet:t}}export{Pt as AsExternalProvider,En as Captcha,Xr as ConnectorManager,tn as PrivyClient,B2 as PrivyProvider,oe as PrivyProxyProvider,Hn as SUPPORTED_CHAINS,Ha as VERSION,Fe as WalletConnector,Er as errorIndicatesMaxMfaRetries,Cr as errorIndicatesMfaTimeout,br as errorIndicatesMfaVerificationFailed,Re as getAccessToken,K2 as useConnectWallet,J2 as useCreateWallet,z2 as useLogin,q2 as useLoginWithEmail,$2 as useLogout,La as useMfa,An as useMfaEnrollment,H as usePrivy,ml as useRegisterMfaListener,Fn as useWallets};
|
|
2497
|
+
`;import{useContext as f2}from"react";function Ma(){let{init:e,submit:t,cancel:o}=f2(Ie);return{init:e,submit:t,cancel:o}}import{Fragment as hl,jsx as Z,jsxs as Ot}from"react/jsx-runtime";var km=({open:e,onClose:t})=>{let{user:o}=G(),[r,n]=fl(null),{init:i,cancel:a}=Ma();g2(()=>{e&&o?.mfaMethods&&o.mfaMethods.length>0?l(o.mfaMethods[0]):n(null)},[o?.mfaMethods,e]);async function l(c){try{n(c),await i(c)}catch(u){console.error(u)}}let s=()=>{n(null),a(),t()};return!e||!o?null:r?Z(v2,{selectedMethod:r,onClose:s,onBack:o.mfaMethods.length>1?()=>n(null):void 0}):Ot(hl,{children:[Z(P,{title:"Verification Required",onClose:s},"header"),Z(So,{children:Z(To,{})}),Z(Or,{children:"Choose a verification method"}),Ot(da,{children:[o.mfaMethods.includes("totp")&&Z(L,{onClick:()=>l("totp"),children:Ot(Dr,{children:[Z(h2,{}),Z("span",{children:"Authenticator App"})]})},"totp"),o.mfaMethods.includes("sms")&&Z(L,{onClick:()=>l("sms"),children:Ot(Dr,{children:[Z(y2,{}),Z("span",{children:"SMS"})]})},"sms")]}),Z(K,{})]})},v2=({selectedMethod:e,onClose:t,onBack:o})=>{let{pendingTransaction:r}=R(),[n,i]=fl(!1),[a,l]=fl(!1),{submit:s}=Ma();async function c(u){try{if(!u)return;await s(e,u),l(!0),i(!1),t()}catch(h){throw xr(h)?(i(!0),new Error("You have exceeded the maximum number of attempts. Please close this window and try again in 30 seconds.")):Pr(h)?(i(!1),new Error("The code you entered is not valid")):Er(h)?(i(!0),new Error("You have exceeded the time limit for code entry. Please try again in 30 seconds.")):(i(!1),new Error("Unknown error"))}}switch(e){case"sms":return Ot(hl,{children:[Z(P,{title:"Verification Required",onClose:t},"header"),Ot(Mt,{children:["To continue, please enter the 6-digit code sent to your ",Z("strong",{children:"mobile device"})]}),Ot(Zt,{children:[Z(Nr,{success:a,disabled:n,onChange:c}),r&&Z(ml,{pendingTransaction:r})]}),o&&Z(qs,{onClick:o,children:"Choose another method"}),Z(zt,{onClick:t,children:"Not Now"}),Z(K,{})]});case"totp":return Ot(hl,{children:[Z(P,{title:"Verification Required",onClose:t},"header"),Ot(Mt,{children:["To continue, please enter the 6-digit code generated from your"," ",Z("strong",{children:"authenticator app"})]}),Ot(Zt,{children:[Z(Nr,{success:a,disabled:n,onChange:c}),r&&Z(ml,{pendingTransaction:r})]}),o&&Z(qs,{onClick:o,children:"Choose another method"}),Z(zt,{onClick:t,children:"Not Now"}),Z(K,{})]});default:return null}};import{jsx as pt,jsxs as E2}from"react/jsx-runtime";var b2=({open:e,onClose:t})=>{let{ready:o}=G(),{ready:r}=T();return!o||!r?E2(Jt,{children:[pt(P,{}),pt($,{}),pt(la,{children:pt(it,{})}),pt(q,{}),pt(K,{})]}):pt(Jt,{children:pt(km,{open:e,onClose:t})})},Rm=()=>{let{app:e}=T(),[t,o]=Am(!1),[r,n]=Am(!1),{onEscape:i,gracefulClosePrivyModal:a}=aa(()=>o(!1));ul({onMfaRequired:()=>{e?.mfa.noPromptOnMfaRequired||o(!0)}}),w2(()=>{n(!0)},[]);let l=!e?.mfa.noPromptOnMfaRequired&&t,s=pt(Wa,{onClick:u=>u.stopPropagation(),children:pt(b2,{open:l,onClose:()=>o(!1)})}),c=e?.render.inDialog?pt("div",{onKeyDown:i,children:pt(sa,{open:l,id:"privy-verification-dialog",onClick:()=>a(),children:s})}):s;if(r){let u=e?.render.inParentNodeId&&document.getElementById(e.render.inParentNodeId)||document.body;return C2.createPortal(c,u)}return null};var ut={appearance:{theme:"light",accentColor:"#676FFF",supportedWallets:["browser_wallets","metamask","coinbase_wallet","rainbow","wallet_connect"]},walletConnectCloudProjectId:Yl,rpcConfig:{rpcUrls:{},rpcTimeouts:{}},captchaEnabled:!1,_render:{inDialog:!0,inParentNodeId:null},fiatOnRamp:{useSandbox:!1}};var P2=new Set(["metamask","coinbase_wallet","rainbow","zerion","phantom","wallet_connect","browser_wallets"]),x2=e=>P2.has(e),T2=(e,t,o)=>o.indexOf(e)===t,Im=({input:e})=>e?e.filter(x2).filter(T2):ut.appearance.supportedWallets;var Wm={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 Mm={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 Lm={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 Nm={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 Om={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 Dm={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 Um={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 Fm={id:17e3,name:"Holesky",network:"holesky",nativeCurrency:{name:"ETH",symbol:"ETH",decimals:18},rpcUrls:{default:{http:["https://ethereum-holesky.publicnode.com"]},public:{http:["https://ethereum-holesky.publicnode.com"]}},blockExplorers:{etherscan:{name:"EtherScan",url:"https://holesky.etherscan.io"},default:{name:"EtherScan",url:"https://holesky.etherscan.io"}}};var Bm={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 Hm={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 La={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 Gm={id:17001,name:"Redstone Holesky",network:"redstone-holesky",nativeCurrency:{name:"ETH",symbol:"ETH",decimals:18},rpcUrls:{default:{http:["https://rpc.holesky.redstone.xyz"]},public:{http:["https://rpc.holesky.redstone.xyz"]}},blockExplorers:{etherscan:{name:"EtherScan",url:"https://explorer.holesky.redstone.xyz"},default:{name:"EtherScan",url:"https://explorer.holesky.redstone.xyz"}}};var zm={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 Gn=[ga,va,wa,Um,zm,La,Ea,Pa,Dn,Un,Lm,Nm,Om,Dm,Ca,ba,Bm,Hm,Wm,Mm,xa,Ta,Fm,Gm],uL=new Set(Gn.map(e=>e.id));import Qo from"tinycolor2";var Vm="#FFFFFF",S2="#000000",_2=Vm,k2="#1E1E1D";function A2(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 Ro(e,t){let o=Math.max(0,Math.min(1,e.toHsl().l+t));return Qo({...e.toHsl(),l:o})}function $m({backgroundTheme:e,accentHex:t,successHex:o="#51BA81",warnHex:r="#FFB74D",errorHex:n="#EC6351",whiteHex:i=Vm,blackHex:a=S2}){let l;switch(e){case"light":l=_2;break;case"dark":l=k2;break;default:l=e;break}let s=Qo(l),c=Qo(t),u=Qo(o),h=Qo(r),w=Qo(n),m=A2(s.getLuminance()),v=Ro(s,m==="light"?-.04:.11),y=Ro(s,m==="light"?-.88:.87),x=Ro(s,m==="light"?-.77:.75),E=Ro(s,m==="light"?-.43:.45).desaturate(m==="light"?60:20),I=Ro(s,m==="light"?-.08:.25).desaturate(m==="light"?60:20),M=Ro(c,.15),k=Ro(c,-.06),A=Qo(c.getLuminance()>.5?a:i),W=Ro(u,-.16);return{colorScheme:m,background:s.toHslString(),background2:v.toHslString(),foreground:y.toHslString(),foreground2:x.toHslString(),foreground3:E.toHslString(),foreground4:I.toHslString(),accent:c.toHslString(),accentLight:M.toHslString(),accentDark:k.toHslString(),foregroundAccent:A.toHslString(),success:u.toHslString(),successDark:W.toHslString(),error:w.toHslString(),warn:h.toHslString()}}function Na(e,t){let o=["google","twitter","discord","tiktok","linkedin","github","apple"],r=t?.loginMethods?.filter(H=>o.includes(H)),n,i,a,l,s,c,u,h,w,m;t?.loginMethods?(n=t.loginMethods.includes("email"),i=t.loginMethods.includes("sms"),a=t.loginMethods.includes("wallet"),l=r?.includes("google"),s=r?.includes("twitter"),c=r?.includes("discord"),u=r?.includes("tiktok"),w=r?.includes("github"),h=r?.includes("linkedin"),m=r?.includes("apple")):(n=e.emailAuth,i=e.smsAuth,a=e.walletAuth,l=e.googleOAuth,s=e.twitterOAuth,c=e.discordOAuth,w=e.githubOAuth,u=e.tiktokOAuth,h=e.linkedinOAuth,m=e.appleOAuth);let v=[n,i].filter(Boolean),y=[l,s,c,w,u,h,m].filter(Boolean),x=[a].filter(Boolean);if(v.length+y.length+x.length===0)throw new Error("You must enable at least one login method");let E=t?.appearance?.showWalletLoginFirst!==void 0?t?.appearance?.showWalletLoginFirst:e.showWalletLoginFirst;E&&x.length===0?(console.warn("You should only enable `showWalletLoginFirst` when `wallet` logins are also enabled. `showWalletLoginFirst` has been set to false"),E=!1):!E&&y.length+v.length===0&&(console.warn("You should only disable `showWalletLoginFirst` when `email`, `sms`, or social logins are also enabled. `showWalletLoginFirst` has been set to true"),E=!0);let I=Im({isWalletLoginEnabled:a,input:t?.appearance?.supportedWallets});if(t?.embeddedWallets?.waitForTransactionConfirmation===!1&&t.embeddedWallets.noPromptOnSignature!==!0)throw new Error("Overriding `config.embeddedWallets.waitForTransactionConfirmation` requires that you also enable `config.embeddedWallets.noPromptOnSignature`");let M=t?.intl?.defaultCountry??"US",{chains:k,defaultChain:A}=R2(t?.additionalChains,t?.supportedChains,t?.defaultChain),W=!!t?.defaultChain||!!t?.supportedChains,N=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:$m({backgroundTheme:t?.appearance?.theme??ut.appearance.theme,accentHex:t?.appearance?.accentColor??e.accentColor??ut.appearance.accentColor}),showWalletLoginFirst:E,supportedWallets:I},loginMethods:{wallet:a,email:n,sms:i,google:l,twitter:s,discord:c,github:w,tiktok:u,linkedin:h,apple:m},legal:{termsAndConditionsUrl:t?.legal?.termsAndConditionsUrl??e.termsAndConditionsUrl,privacyPolicyUrl:t?.legal?.privacyPolicyUrl??e.privacyPolicyUrl},walletConnectCloudProjectId:t?.walletConnectCloudProjectId??e.walletConnectCloudProjectId??ut.walletConnectCloudProjectId,rpcConfig:{rpcUrls:t?.rpcConfig?.rpcUrls??ut.rpcConfig.rpcUrls,rpcTimeouts:t?.rpcConfig?.rpcTimeouts??ut.rpcConfig.rpcTimeouts},chains:k,defaultChain:A,intl:{defaultCountry:M},shouldSwitchChainOnConnect:W,captchaEnabled:e.captchaEnabled??ut.captchaEnabled,captchaSiteKey:e.captchaSiteKey,embeddedWallets:{...e.embeddedWalletConfig,...N?{createOnLogin:"all-users",requireUserPasswordOnCreate:!1,noPromptOnSignature:!0}:{},waitForTransactionConfirmation:!0,priceDisplay:{primary:"fiat-currency",secondary:"native-token"},...t?.embeddedWallets},mfa:{methods:e.mfaMethods??[],noPromptOnMfaRequired:t?.mfa?.noPromptOnMfaRequired??!0},customAuth:N?{enabled:!0,...t.customAuth}:void 0,fiatOnRamp:{enabled:e.fiatOnRampEnabled,useSandbox:t?.fiatOnRamp?.useSandbox??ut.fiatOnRamp.useSandbox},loginConfig:{twitterOAuthOnMobileEnabled:e.twitterOAuthOnMobileEnabled??!1},render:{inDialog:t?._render?.inDialog??ut._render.inDialog,inParentNodeId:t?._render?.inParentNodeId??ut._render.inParentNodeId}}}function qm(e,t){if(!e)return{legacyCreateEmbeddedWalletFlag:t};let{appearance:o,additionalChains:r,supportedChains:n,defaultChain:i,...a}=e;return{...a,...r?{additionalChains:r.map(s=>s.id)}:void 0,...n?{supportedChains:n.map(s=>s.id)}:void 0,...i?{defaultChain:i.id}:void 0,...o?{...o,...o.logo&&typeof o.logo?{logo:"component"}:void 0}:void 0,legacyCreateEmbeddedWalletFlag:t}}function R2(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.map(a=>Gn.find(s=>s.id===a.id)??a)}else r=Gn.concat(e??[]);let n=t?r[0]:La,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 I2,useEffect as W2}from"react";var Oa=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;case"privy:mfa:verify":return r;case"privy:mfa:init-enrollment":return r;case"privy:mfa:submit-enrollment":return r;case"privy:mfa:unenroll":return r;default:throw new Error(`invalid wallet event type ${t}`)}}};async function zr(e,t,o,r,n,i=!1){let a=i,l=async u=>{if(a&&t&&t.length>0){u===(i?0:1)?n("configureMfa","onMfaRequired",t):r.current?.reject(new be("missing_or_invalid_mfa","MFA verification failed, retry."));let h=await new Promise((w,m)=>{o.current={resolve:w,reject:m};let v=1e3*60*5;setTimeout(()=>{let y=new be("mfa_timeout","Timed out waiting for MFA code");r.current?.reject(y),m(y)},v)});return await e(h)}return await e()},s=4,c=null;for(let u=0;u<s;u++)try{c=await l(u),r.current?.resolve(void 0);break}catch(h){if(h.type==="missing_or_invalid_mfa")a=!0;else throw r.current?.resolve(void 0),h}if(c===null){let u=new be("mfa_verification_max_attempts_reached","Max MFA verification attempts reached");throw r.current?.reject(u),u}return c}import{jsx as U2}from"react/jsx-runtime";var M2=function(e){return()=>`id-${e++}`}(0);function L2(e){return typeof e.event=="string"&&/^privy:.+/.test(e.event)}function Dt(e){return e.error!==void 0}var Ct=new Oa,yl=new Map,N2=(e,t)=>typeof t=="bigint"?t.toString():t,O2=(e,t)=>`${e}${JSON.stringify(t,N2)}`;function Ut(e,t,o){let r=o.contentWindow;if(!r)throw new Error("iframe not initialized");let n=O2(e,t);if(e==="privy:wallet:create"){let a=yl.get(n);if(a)return a}let i=new Promise((a,l)=>{let s=M2();Ct.enqueue(s,{resolve:a,reject:l}),r.postMessage({id:s,event:e,data:t},"*")}).finally(()=>{yl.delete(n)});return yl.set(n,i),i}function D2(e){switch(e.event){case"privy:iframe:ready":let t=Ct.dequeue(e.event,e.id);return Dt(e)?t.reject(new be(e.error.type,e.error.message)):t.resolve(e.data);case"privy:wallet:create":let o=Ct.dequeue(e.event,e.id);return Dt(e)?o.reject(new be(e.error.type,e.error.message)):o.resolve(e.data);case"privy:wallet:connect":let r=Ct.dequeue(e.event,e.id);return Dt(e)?r.reject(new be(e.error.type,e.error.message)):r.resolve(e.data);case"privy:wallet:recover":let n=Ct.dequeue(e.event,e.id);return Dt(e)?n.reject(new be(e.error.type,e.error.message)):n.resolve(e.data);case"privy:wallet:rpc":let i=Ct.dequeue(e.event,e.id);return Dt(e)?i.reject(new be(e.error.type,e.error.message)):i.resolve(e.data);case"privy:wallet:set-recovery-password":let a=Ct.dequeue(e.event,e.id);return Dt(e)?a.reject(new be(e.error.type,e.error.message)):a.resolve(e.data);case"privy:mfa:verify":let l=Ct.dequeue(e.event,e.id);return Dt(e)?l.reject(new be(e.error.type,e.error.message)):l.resolve(e.data);case"privy:mfa:init-enrollment":{let s=Ct.dequeue(e.event,e.id);return Dt(e)?s.reject(new be(e.error.type,e.error.message)):s.resolve(e.data)}case"privy:mfa:submit-enrollment":{let s=Ct.dequeue(e.event,e.id);return Dt(e)?s.reject(new be(e.error.type,e.error.message)):s.resolve(e.data)}case"privy:mfa:unenroll":{let s=Ct.dequeue(e.event,e.id);return Dt(e)?s.reject(new be(e.error.type,e.error.message)):s.resolve(e.data)}default:console.warn("Unsupported wallet proxy method:",e)}}function jm(e){let t=I2(null),o=Tm();return W2(()=>{let r=t.current;if(!r)return;function n(c){c&&c.origin===e.origin&&L2(c.data)&&D2(c.data)}let i={create(c){return Ut("privy:wallet:create",c,r)},connect(c){return Ut("privy:wallet:connect",c,r)},recover(c){return zr(u=>Ut("privy:wallet:recover",{...c,...u},r),e.mfaMethods,e.mfaPromise,e.mfaSubmitPromise,o,!0)},rpc(c){return zr(u=>Ut("privy:wallet:rpc",{...c,...u},r),e.mfaMethods,e.mfaPromise,e.mfaSubmitPromise,o)},setRecoveryPassword(c){return Ut("privy:wallet:set-recovery-password",c,r)},verifyMfa(c){return zr(u=>Ut("privy:mfa:verify",{...c,...u},r),e.mfaMethods,e.mfaPromise,e.mfaSubmitPromise,o,!0)},initEnrollMfa(c){return zr(u=>Ut("privy:mfa:init-enrollment",{...c,...u},r),e.mfaMethods,e.mfaPromise,e.mfaSubmitPromise,o,!0)},submitEnrollMfa(c){return Ut("privy:mfa:submit-enrollment",c,r)},unenrollMfa(c){return zr(u=>Ut("privy:mfa:unenroll",{...c,...u},r),e.mfaMethods,e.mfaPromise,e.mfaSubmitPromise,o,!0)}};window.addEventListener("message",n);let a=()=>e.onLoad(i),l=(...c)=>{console.warn("Privy iframe failed to load: ",...c),e.onLoadFailed()},s=new AbortController;return pc(()=>Ut("privy:iframe:ready",{},r),{abortSignal:s.signal}).then(a,l),()=>{window.removeEventListener("message",n),s.abort()}},[t.current,e.mfaMethods]),U2("iframe",{ref:t,width:"0",height:"0",style:{display:"none",height:"0px",width:"0px"},src:ri(e.origin,`/apps/${e.appId}/embedded-wallets`,{caid:e.clientAnalyticsId})})}var Da=class{constructor(t,o){this.meta={action:t,phoneNumber:o}}async init(){if(!this.meta.action)throw new C("action required");if(!this.api)throw new C("Auth flow has no API instance");if(this.meta.action==="enroll"&&!this.meta.phoneNumber)throw new C("phone number must be set when initialzing authentication.");try{let t=$l();await this.api.post(t,{action:this.meta.action,phoneNumber:this.meta.phoneNumber})}catch(t){throw te(t)}}async authenticate(){if(!this.meta.action)throw new C("action required");if(!this.api)throw new C("Mfa flow has no API instance");if(!this.meta.smsCode)throw new C("sms code must be set prior to calling authenticate.");if(this.meta.action==="enroll"&&!this.meta.phoneNumber)throw new C("phone number must be set prior to calling authenticate.");try{let t=ql(),o=await this.api.post(t,{phoneNumber:this.meta.phoneNumber,code:this.meta.smsCode});return ft(o)}catch(t){throw te(t)}}};import{jsx as Io,jsxs as vl}from"react/jsx-runtime";var Vn;function G2(e){return typeof e=="string"&&e.length===25}function Re(){if(!Vn){let e=Y.get(rr);return Promise.resolve(e||null)}return Vn.getAccessToken()}var Km,gc=(e,t)=>Km(e,t),Ym,vc=(e,t)=>Ym(e,t),Jm,wc=()=>Jm(),z2=()=>{let t=new URLSearchParams(window.location.search).get("privy_token");if(!t)return;Y.put(Yr,t);let o=new URL(window.location.href);o.searchParams.delete("privy_token"),window.history.pushState({},"",o)},V2=({config:e,...t})=>{if(!G2(t.appId))throw new C("Cannot initialize the Privy provider with an invalid Privy app ID");Vn||(Vn=new on({appId:t.appId,apiUrl:t.apiUrl||ei}));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."),Io($2,{...t,config:o,client:Vn})},$2=e=>{let t=e.client,[o,r]=pe(!1),[n,i]=pe(!1),[a,l]=pe(!1),[s,c]=pe(null),[u,h]=pe(!1),[w,m]=pe([]),v=zn(w),[y,x]=pe(!1),[E,I]=pe(null),[M,k]=pe(!1),[A,W]=pe({status:"disconnected",connectError:null,connector:null,connectRetry:b}),[N,O]=pe(null),[H,D]=pe(null),[_,ee]=pe(null),[ue,Ge]=pe({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,captchaSiteKey:""}),[F,xe]=pe(()=>{let p=qm(e.config,e.createPrivyWalletOnLogin);return t.createAnalyticsEvent("sdk_initialize",p),Na(ue,e.config)}),[mt,fe]=pe(!0),[se,Q]=pe({}),[re,Xo]=pe(null),[j,oo]=pe(null),[Bt,Wo]=pe(!1),Mo=zn(null),$n=zn(null),ie=zn(Pm),Lo=zn(),he=p=>{I(p),r(!0),t.createAnalyticsEvent("modal_open",{initialScreen:p})},ke=p=>{F.embeddedWallets.createOnLogin!=="off"&&fe(!0),he(p)};Ft(()=>{if(!_||!s){t.connectors?.removeEmbeddedWalletConnector();return}let p=s?.linkedAccounts.filter(d=>d.type==="wallet"&&d.walletClient==="privy");if(p&&p.length>0){let d=p[0].address;t.connectors?.addEmbeddedWalletConnector(_,d,F.defaultChain)}},[_,s]),Ft(()=>{_&&j?.(_)},[_]),Ft(()=>{(async()=>{if(!F.customAuth?.enabled)return;fe(!0);let{getCustomAccessToken:d,isLoading:f}=F.customAuth;if(!(!n||f))try{let g=await d();if(!g){await qr.logout();return}if(a)return;t.startAuthFlow(new or(g));let{user:U,isNewUser:X}=await t.authenticate();U||await qr.logout(),c(U||null),x(X||!1),l(!0),Wo(!0)}catch(g){console.warn(g),a&&await qr.logout()}})()},[F.customAuth?.enabled,F.customAuth?.getCustomAccessToken,F.customAuth?.isLoading,n,a]),Ft(()=>{Bt&&_&&s&&ao(s,e.config?.embeddedWallets?.createOnLogin)&&(Wo(!1),Cl(s,nr).catch(console.error))},[Bt&&_&&s]),Ft(()=>{async function p(){let d=await t.getServerConfig();Ge(d);let f=Na(d,e.config);xe(f),d.customApiUrl&&t.updateApiUrl(d.customApiUrl);let g=B2();O(g),t.initializeConnectorManager(f.walletConnectCloudProjectId,f.rpcConfig,f.chains,f.defaultChain,g),t.connectors?.initialize();let U=Fa();z2();let X=await t.getAuthenticatedUser();e.config?.customAuth?.enabled||(l(!!X),X&&de(ie,"login","onComplete",X,!1,!0,null),c(X)),U||ve.setReadyToTrue(),U&&X&&h(!0),$r()}n||p()},[t,re,n]),Ft(()=>{let p=Na(ue,e.config);xe(p)},[e.config,ue]);let Fa=()=>{let p=new URLSearchParams(window.location.search),d=p.get("privy_oauth_code"),f=p.get("privy_oauth_state"),g=p.get("privy_oauth_provider");return d&&f&&g?(t.startAuthFlow(new no(g,d,f)),ke("AWAITING_OAUTH_SCREEN"),!0):!1},No=async(p,d,f)=>{let g=await t.connectors?.createWalletConnector(p,d)||null;Oo(g,d,f)};async function Oo(p,d,f){if(!p)return W({status:"disconnected",connectError:new z("Unable to connect to wallet."),connector:null,connectRetry:b}),f?.(null);p instanceof St&&d&&p.resetConnection(d),W({connector:p,status:"connecting",connectError:null,connectRetry:()=>Oo(p,d,f)});try{let g=await p.connect({showPrompt:!0});if(F.shouldSwitchChainOnConnect&&!F.chains.find(U=>U.id===Number(g?.chainId))){W(U=>({...U,connector:p,status:"switching_to_supported_chain",connectError:null,connectRetry:b}));try{await g?.switchChain(F.defaultChain.id),g&&(g.chainId=ir(Ho(F.defaultChain.id)))}catch{console.warn(`Unable to switch to default chain: ${F.defaultChain.id}`)}}return W(U=>({...U,status:"connected",connectError:null,connectRetry:b})),g&&!M&&de(ie,"connectWallet","onSuccess",g),f?.(g)}catch(g){return g instanceof ze?(console.warn(g.cause?g.cause:g.message),M||de(ie,"connectWallet","onError",g.privyErrorCode||"generic_connect_wallet_error")):(console.warn(g),M||de(ie,"connectWallet","onError","unknown_connect_wallet_error")),W(U=>({...U,status:"disconnected",connectError:g})),f?.(null)}}let Vr=p=>{p!==null&&t.startAuthFlow(new Fo(p))},$r=()=>{let p=new URLSearchParams(window.location.search),d=p.get("privy_connector"),f=p.get("privy_wallet_client");if(!d||!f)return;if(f==="phantom"&&!Et()&&ke("LOGIN_FAILED_SCREEN"),!t.connectors)throw new C("Connector not initialized");he("AWAITING_CONNECTION");let g=new URL(window.location.href);g.searchParams.delete("privy_connector"),g.searchParams.delete("privy_wallet_client"),window.history.pushState({},"",g),No(d,f,Vr)};Ft(()=>{n&&a&&s===null&&t.getAuthenticatedUser().then(c)},[n,a,s,t]);let Do=()=>{h(!0),he("LINK_WALLET_SCREEN")},De=p=>{if(!a||!s)return!1;for(let d of s.linkedAccounts)if(d.type==="wallet"&&d.address===p.address)return!0;return!1},le=async p=>{if(!t.connectors)throw new C("Connector not initialized");let d=t.connectors.findWalletConnector(p.connectorType,p.walletClientType)||null;W(f=>({...f,connector:d,status:"connected",connectError:null,connectRetry:b})),Vr(p),ke("AWAITING_CONNECTION")},ot=async(p,d)=>{Lo.current="siwe",await Oo(p,d,Vr)},wl=async(p,d)=>{if(!F.fiatOnRamp.enabled)throw new C("Fiat on-ramp is not enabled");if(!d||!d.provider||d.provider==="moonpay"){let{signedUrl:f,externalTransactionId:g}=await vp(t,p,d?.config??{},F.appearance.palette,F.fiatOnRamp.useSandbox);return{signedUrl:f,externalTransactionId:g}}else throw new C("Unsupported fund provider. Currently supported option is `moonpay`.")},qn=()=>{m(p=>{let d=t.connectors?.wallets.map(f=>({...f,linked:De(f),loginOrLink:async()=>{if(!await f.isConnected())throw new C("Wallet is not connected");if(f.connectorType==="embedded"&&f.walletClientType==="privy")throw new C("Cannot link or login with embedded wallet");le(f)},fund:async g=>{let{signedUrl:U,externalTransactionId:X}=await wl(f.address,g);Q({fiatOnRampPrompt:{signedUrl:U},fiatOnRampStatus:{externalTransactionId:X}}),he("FIAT_ON_RAMP_PROMPT_SCREEN")},unlink:async()=>{if(!a)throw new C("User is not authenticated.");if(f.connectorType==="embedded"&&f.walletClientType==="privy")throw new C("Cannot unlink an embedded wallet");let g=await t.unlinkWallet(f.address);c(g)}}))||[];return ii(p,d)?p:d})};Ft(()=>{qn()},[s?.linkedAccounts,a,n]),Ft(()=>{if(n){if(!t.connectors)throw new C("Connector not initialized");qn(),t.connectors.on("walletsUpdated",qn)}},[n]);let Qm=()=>{he(a?"CONNECT_ONLY_AUTHENTICATED_SCREEN":"CONNECT_ONLY_LANDING_SCREEN")};Ft(()=>{if(!w[0])return;let p=w[0],d=v.current.find(g=>g.address===p.address),f=s?.linkedAccounts.find(g=>g.type==="wallet"&&g.address===p.address);if(!d&&f){let g=Object.assign({},s);g.wallet=f&&{address:f.address,chainType:f.chainType,chainId:f.chainId,walletClient:f.walletClient,walletClientType:f.walletClientType,connectorType:f.connectorType},c(g)}v.current=w},[w]);let Cl=async(p,d)=>{if(ne(p))throw de(ie,"createWallet","onError","embedded_wallet_already_exists"),new Error("Only one Privy wallet per user is currently allowed");let[g,U]=await Promise.all([ve.initializeWalletProxy(d),Re()]);if(!g&&e.config?.customAuth?.enabled)throw de(ie,"createWallet","onError","unknown_embedded_wallet_error"),new Error("Failed to connect to wallet proxy");if(!g||!U||e.config?.embeddedWallets?.requireUserPasswordOnCreate)return new Promise((X,Te)=>{fe(!0),Q({createWallet:{onSuccess:rt=>{de(ie,"createWallet","onSuccess",rt),X(rt)},onFailure:rt=>{de(ie,"createWallet","onError","unknown_embedded_wallet_error"),Te(rt)},callAuthOnSuccessOnClose:!1}}),he("EMBEDDED_WALLET_ON_ACCOUNT_CREATE_SCREEN")});{await g.create({accessToken:U});let X=await ve.refreshUser(),Te=ne(X);if(!Te)throw de(ie,"createWallet","onError","unknown_embedded_wallet_error"),new Error("Failed to create wallet");return de(ie,"createWallet","onSuccess",Te),Te}},Xm=p=>{if(!F.chains.map(d=>d.id).includes(p))throw new z(`Chain ID ${p} is not supported. It must be added to the config.supportedChains property of the PrivyProvider.`,"unsupported_chain_id")},bl=(p,d,f)=>new Promise(async(g,U)=>{if(!a||!s){U(new Error("User must be authenticated before signing with a Privy wallet"));return}let X=ne(s);if(!X){U(new Error("Must have a Privy wallet before signing"));return}fe(!0);let Te=t.connectors?.findWalletConnector("embedded","privy")?.proxyProvider,er=p.chainId?Number(p.chainId):Te.chainId;Xm(er);let rt=Object.assign({},p,{chainId:er}),jr=async()=>{let ro=await Re();if(!ro||!_){U(new Error("Must have valid access token and Privy wallet to send transaction"));return}try{if(!await ve.recoverEmbeddedWallet()){U(new Error("Unable to connect to wallet"));return}let El=new F2(ht(rt.chainId,F.chains,F.rpcConfig)),tf=await Br(X.address,rt,El),of=await Sa(ro,X.address,_,tf,El);g(of)}catch(jn){U(jn)}};if(F.embeddedWallets.noPromptOnSignature)d&&console.warn("uiOptions defined with `noPromptOnSignature` set to true in app config"),jr();else{let ro={transactionRequest:rt,onSuccess:g,onFailure:U,uiOptions:d||{},fundWalletConfig:f},jn={onCompleteNavigateTo:"EMBEDDED_WALLET_SEND_TRANSACTION_SCREEN",onFailure:U};Q({connectWallet:jn,sendTransaction:ro}),he("EMBEDDED_WALLET_CONNECTING_SCREEN")}}),qr={ready:n,authenticated:a,user:s,walletConnectors:t.connectors||null,connectWallet:Qm,linkWallet:Do,linkEmail:()=>{if(s?.email)throw new C("User already has an email linked to their account.");h(!0),he("LINK_EMAIL_SCREEN")},linkPhone:()=>{if(s?.phone)throw new C("User already has a phone number linked to their account.");h(!0),he("LINK_PHONE_SCREEN")},linkGoogle:async()=>{if(s?.google)throw new C("User already has a Google account linked to their account.");await ve.initLoginWithOAuth("google")},linkTwitter:async()=>{if(s?.twitter)throw new C("User already has a Twitter account linked to their account.");await ve.initLoginWithOAuth("twitter")},linkDiscord:async()=>{if(s?.discord)throw new C("User already has a Discord account linked to their account.");await ve.initLoginWithOAuth("discord")},linkGithub:async()=>{if(s?.github)throw new C("User already has a Github account linked to their account.");await ve.initLoginWithOAuth("github")},linkTiktok:async()=>{if(s?.tiktok)throw new C("User already has a Tiktok account linked to their account.");await ve.initLoginWithOAuth("tiktok")},linkLinkedIn:async()=>{if(s?.linkedin)throw new C("User already has a LinkedIn account linked to their account.");await ve.initLoginWithOAuth("linkedin")},linkApple:async()=>{await ve.initLoginWithOAuth("apple")},login:async()=>{if(n||(await new Promise(p=>{Xo(()=>p)}),Xo(null)),a){console.warn("Attempted to log in, but user is already logged in. Use a `link` helper instead.");return}k(!0),ke("LANDING")},logout:async()=>{await t.logout(),c(null),l(!1),I(null),de(ie,"logout","onSuccess"),h(!1),r(!1),Y.del(Jr)},getAccessToken:()=>t.getAccessToken(),getEthereumProvider:()=>{if(!s||!s.wallet)return new oe;let p=w.find(f=>s.wallet&&f.address===s.wallet.address),d=t.connectors?.walletConnectors.find(f=>f.wallets.find(g=>g.address===p?.address));return!p||!d?new oe:d.proxyProvider},getEthersProvider:()=>{if(!s||!s.wallet)return new gl(new xt(new oe));let p=w.find(f=>s.wallet&&f.address===s.wallet.address),d=t.connectors?.walletConnectors.find(f=>f.wallets.find(g=>g.address===p?.address));return!p||!d?new gl(new xt(new oe)):new gl(new xt(d.proxyProvider))},getWeb3jsProvider:()=>{if(!s||!s.wallet)return new co(new oe);let p=w.find(f=>s.wallet&&f.address===s.wallet.address),d=t.connectors?.walletConnectors.find(f=>f.wallets.find(g=>g.address===p?.address));return!p||!d?new co(new oe):new co(d.proxyProvider)},unlinkWallet:async p=>{let d=await t.unlinkWallet(p);return c(d),d},unlinkEmail:async p=>{let d=await t.unlinkEmail(p);return c(d),d},unlinkPhone:async p=>{let d=await t.unlinkPhone(p);return c(d),d},unlinkGoogle:async p=>{let d=await t.unlinkOAuth("google",p);return c(d),d},unlinkTwitter:async p=>{let d=await t.unlinkOAuth("twitter",p);return c(d),d},unlinkDiscord:async p=>{let d=await t.unlinkOAuth("discord",p);return c(d),d},unlinkGithub:async p=>{let d=await t.unlinkOAuth("github",p);return c(d),d},unlinkTiktok:async p=>{let d=await t.unlinkOAuth("tiktok",p);return c(d),d},unlinkLinkedIn:async p=>{let d=await t.unlinkOAuth("linkedin",p);return c(d),d},unlinkApple:async p=>{let d=await t.unlinkOAuth("apple",p);return c(d),d},setActiveWallet:async p=>{let d=w.find(g=>Ua(g.address)===Ua(p)),f=s?.linkedAccounts.find(g=>g.type==="wallet"&&Ua(g.address)===Ua(p));if(!d||!await d.isConnected())D(p),Do();else if(!d.linked)d.loginOrLink();else{let g=Object.assign({},s);g.wallet=f&&{address:f.address,chainType:f.chainType,chainId:f.chainId,walletClient:f.walletClient,walletClientType:f.walletClientType,connectorType:f.connectorType},c(g)}},forkSession:()=>t.forkSession(),createWallet:async()=>{if(!a||!s)throw de(ie,"createWallet","onError","must_be_authenticated"),new Error("User must be authenticated before creating a Privy wallet");return Cl(s,15e3)},setWalletPassword:()=>new Promise((p,d)=>{if(!a||!s){d(new Error("User must be authenticated before adding password to Privy wallet"));return}let f=ne(s);if(!f||!_){d(new Error("Must have a Privy wallet to add a password"));return}if(f.recoveryMethod==="user-passcode"){d(new Error("Cannot set password. Embedded wallet already has a password."));return}fe(!0);let g={onSuccess:p,onFailure:d,callAuthOnSuccessOnClose:!1},U={onCompleteNavigateTo:"EMBEDDED_WALLET_PASSWORD_UPDATE_SPLASH_SCREEN",onFailure:d};Q({setWalletPassword:g,connectWallet:U}),he("EMBEDDED_WALLET_CONNECTING_SCREEN")}),signMessage:(p,d)=>new Promise(async(f,g)=>{if(!a||!s){g(new Error("User must be authenticated before signing with a Privy wallet"));return}let U=ne(s);if(!U){g(new Error("Must have a Privy wallet before signing"));return}if(typeof p!="string"||p.length<1){g(new Error("Message must be a non-empty string"));return}fe(!0);let X=async()=>{if(!a)throw new Error("User must be authenticated before signing with a Privy wallet");let Te=await Re();if(!_||!Te)throw new Error("Unable to connect to wallet");if(!await ve.recoverEmbeddedWallet())throw new Error("Unable to connect to wallet");t.createAnalyticsEvent("embedded_wallet_sign_message_started",{walletAddress:U.address});let{response:rt}=await _.rpc({accessToken:Te,address:U.address,request:{method:"personal_sign",params:[p,U.address]}}),jr=rt.data;return t.createAnalyticsEvent("embedded_wallet_sign_message_completed",{walletAddress:U.address}),jr};if(F.embeddedWallets.noPromptOnSignature){d&&console.warn("uiOptions defined with `noPromptOnSignature` set to true in app config");try{let Te=await X();f(Te)}catch(Te){g(Te??new Ae("Unable to sign message"))}}else{let rt={message:p,confirmAndSignMessage:X,onSuccess:ro=>{f(ro)},onFailure:ro=>{g(ro)},uiOptions:d||{}},jr={onCompleteNavigateTo:"EMBEDDED_WALLET_SIGN_REQUEST_SCREEN",onFailure:g};Q({signMessage:rt,connectWallet:jr}),he("EMBEDDED_WALLET_CONNECTING_SCREEN")}}),sendTransaction:async(p,d,f)=>{let U=await(await bl(p,d,f)).wait();return ka(U)},exportWallet:()=>new Promise(async(p,d)=>{if(!a||!s){d(new Error("User must be authenticated before exporting their Privy wallet"));return}if(!ne(s)){d(new Error("Must have a Privy wallet before exporting"));return}fe(!0);let g={onCompleteNavigateTo:"EMBEDDED_WALLET_KEY_EXPORT_SCREEN",onFailure:d},U=await Re();if(!U||!_)throw new Error("Must have valid access token to enroll in MFA");if(!_){d(new Error("Must have a Privy wallet before exporting"));return}await _.verifyMfa({accessToken:U});let X={appId:e.appId,origin:t.apiUrl,onSuccess:p,onFailure:d};Q({keyExport:X,connectWallet:g}),he("EMBEDDED_WALLET_CONNECTING_SCREEN")}),async init(p){let d;switch(p){case"sms":d=new Da("verify");break;case"totp":return;default:throw new Error(`Unsupported MFA method: ${p}`)}t.startMfaFlow(d),await d.init()},async submit(p,d){switch(p){case"totp":case"sms":Mo.current?.resolve({mfaMethod:p,mfaCode:d}),await new Promise((f,g)=>{$n.current={resolve:f,reject:g}});break;default:throw Mo.current?.reject(new C("Unsupported MFA method")),new C(`Unsupported MFA method: ${p}`)}},cancel(){Mo.current?.reject(new C("MFA canceled"))},async initEnrollmentWithSms(p){let d=await Re();if(!d||!_)throw new Error("Must have valid access token to enroll in MFA");await _.initEnrollMfa({method:"sms",accessToken:d,phoneNumber:p.phoneNumber})},enrollInMfa(p){return new Promise((d,f)=>{if(!p){ve.closePrivyModal(),d();return}Q({mfaEnrollmentFlow:{mfaMethods:F.mfa.methods,onSuccess:d,onFailure:f}}),he("MFA_ENROLLMENT_FLOW_SCREEN")})},async initEnrollmentWithTotp(){let p=await Re();if(!p||!_)throw new Error("Must have valid access token to enroll in MFA");let d=await _.initEnrollMfa({method:"totp",accessToken:p});return{secret:d.secret,authUrl:d.authUrl}},async submitEnrollmentWithSms(p){let d=await Re();if(!d||!_)throw new Error("Must have valid access token to enroll in MFA");await _.submitEnrollMfa({method:"sms",accessToken:d,phoneNumber:p.phoneNumber,code:p.mfaCode});let f=await t.getAuthenticatedUser();c(f)},async submitEnrollmentWithTotp(p){let d=await Re();if(!d||!_)throw new Error("Must have valid access token to enroll in MFA");await _.submitEnrollMfa({method:"totp",accessToken:d,code:p.mfaCode});let f=await t.getAuthenticatedUser();c(f)},async unenroll(p){let d=await Re();if(!d||!_)throw new Error("Must have valid access token to remove MFA");await _.unenrollMfa({method:p,accessToken:d});let f=await t.getAuthenticatedUser();c(f)},loginWithCode(p){return ve.loginWithCode(p)},initLoginWithEmail(p,d){return ve.initLoginWithEmail(p,d)}};Km=qr.signMessage,Ym=async(...p)=>{let d=await bl(...p);return F.embeddedWallets.waitForTransactionConfirmation&&await d.wait(),d};let ve=(()=>({isNewUserThisSession:y,isLinking:u,linkingHint:H,pendingTransaction:null,walletConnectionStatus:A,mipdStore:N,connectors:t.connectors?.walletConnectors??[],rpcConfig:F.rpcConfig,chains:F.chains,showFiatPrices:F.embeddedWallets.priceDisplay.primary!=="native-token",clientAnalyticsId:t.clientAnalyticsId,nativeTokenSymbolForChainId:p=>F.chains.find(d=>d.id===Number(p))?.nativeCurrency.symbol,initializeWalletProxy:async p=>{if(_)return _;let d=new Promise(U=>{oo(()=>X=>U(X))}),f=new Promise(U=>setTimeout(()=>U(null),p)),g=await Promise.race([d,f]);return oo(null),g},getAuthFlow:()=>t.authFlow,getAuthMeta:()=>t.authFlow?.meta,closePrivyModal:(p={shouldCallAuthOnSuccess:!0})=>{let d=n&&a&&s;p.shouldCallAuthOnSuccess&&d?(de(ie,"login","onComplete",s,y,!1,Lo.current??null),e.onSuccess?.(s,y)):M&&de(ie,"login","onError","exited_auth_flow"),D(null),k(!1),h(!1),x(!1),r(!1),setTimeout(()=>{t.authFlow=void 0},200),t.createAnalyticsEvent("modal_closed")},connectWallet:Oo,initLoginWithWallet:ot,loginWithWallet:async()=>{if(!n)throw new Kr;if(!(t.authFlow instanceof Fo))throw new C("Must initialize SIWE flow first.");let p,d;if(a)p=await t.link();else try{({user:p,isNewUser:d}=await t.authenticate())}catch(f){throw de(ie,"login","onError",f.privyErrorCode||"generic_connect_wallet_error"),f}c(p||s||null),x(d||!1),l(!0)},initLoginWithOAuth:async p=>{t.startAuthFlow(new no(p));let d=await t.authFlow.getAuthorizationUrl();d&&d.url&&window.location.assign(d.url)},loginWithOAuth:async p=>{if(!(t.authFlow instanceof no))throw new C("Must initialize OAuth flow before calling loginWithOAuth");let d,f;if(a)d=await t.link();else try{({user:d,isNewUser:f}=await t.authenticate()),Lo.current=p}catch(g){throw de(ie,"login","onError",g.privyErrorCode||"unknown_auth_error"),g}c(d),x(f||!1),l(!0)},initLoginWithEmail:async(p,d)=>{let f=new Uo(p,d);t.startAuthFlow(f);try{Lo.current="email",await f.sendCodeEmail()}catch(g){throw de(ie,"login","onError",g.privyErrorCode||"unknown_auth_error"),g}},initLoginWithSms:async(p,d)=>{let f=new Bo(p,d);t.startAuthFlow(f);try{Lo.current="sms",await f.sendSmsCode()}catch(g){throw de(ie,"login","onError",g.privyErrorCode||"unknown_auth_error"),g}},resendEmailCode:async()=>{await t.authFlow?.sendCodeEmail()},resendSmsCode:async()=>{await t.authFlow?.sendSmsCode()},loginWithCode:async p=>{if(!n)throw new Kr;if(t.authFlow instanceof Uo)t.authFlow.meta.emailCode=p.trim();else if(t.authFlow instanceof Bo)t.authFlow.meta.smsCode=p.trim();else throw new C("Must initialize a passwordless code flow first");let d,f;a?d=await t.link():{user:d,isNewUser:f}=await t.authenticate(),c(d||s||null),x(f||!1),l(!0)},refreshUser:async()=>{let p=await t.getAuthenticatedUser();return c(p),p},walletProxy:_,createAnalyticsEvent:(p,d,f)=>t.createAnalyticsEvent(p,d,f),getUsdTokenPrice:p=>t.getUsdTokenPrice(p),recoverEmbeddedWallet:async()=>new Promise(async(p,d)=>{let f=s?.linkedAccounts.find(U=>U.type==="wallet"&&U.walletClientType==="privy"),g=await Re();if(!g||!_||!f){d(new Error("Must have valid access token and Privy wallet to recover wallet"));return}fe(!0);try{await _.connect({accessToken:g,address:f.address}),p(!0)}catch(U){br(U)&&f.recoveryMethod==="privy"?(t.createAnalyticsEvent("embedded_wallet_pinless_recovery_started",{walletAddress:f.address}),(await _.recover({address:f.address,accessToken:g})).address||d(new Error("Unable to recover wallet")),t.createAnalyticsEvent("embedded_wallet_recovery_completed",{walletAddress:f.address}),p(!0)):br(U)?(Q({recoverWallet:{privyWallet:f,onFailure:d,onSuccess:()=>p(!0)}}),he("EMBEDDED_WALLET_RECOVERY_SCREEN")):d(U)}}),getFiatOnRampConfig:wl,setReadyToTrue:()=>{i(!0),re?.()},updateWallets:()=>qn()}))();Jm=ve.recoverEmbeddedWallet;let ef=H2(()=>({wallets:w}),[w]);return Io(Ie.Provider,{value:qr,children:Io(pl.Provider,{value:ie,children:Io(al.Provider,{value:ef,children:vl(Wp,{...F,children:[e.children,vl(os.Provider,{value:ve,children:[Io(bm,{theme:{...F.appearance.palette||{}}}),vl(Sc,{appConfig:F,data:se,setModalData:Q,setInitialScreen:I,initialScreen:E,visible:o,authenticated:a,children:[Io(Em,{open:o}),Io(Rm,{})]}),mt&&ue.id?Io(jm,{appId:e.appId,clientAnalyticsId:t.clientAnalyticsId,origin:t.apiUrl,mfaMethods:s?.mfaMethods,mfaPromise:Mo,mfaSubmitPromise:$n,onLoad:ee,onLoadFailed:()=>null}):null]})]})})})})};import{useContext as q2}from"react";function j2(e){let{login:t}=q2(Ie);return Nt("login",e),{login:t}}import{useContext as K2}from"react";function Y2(e){let{logout:t}=K2(Ie);return Nt("logout",e),{logout:t}}import{useCallback as Zm}from"react";var J2=()=>{let e=Wt(),{initLoginWithEmail:t,loginWithCode:o}=G(),r=Zm(async({email:i})=>{if(!i)throw new Error("Email required to send OTP code");if(e.status==="disabled")return t(i);let a=await e.waitForResult();return t(i,a)},[t,e]),n=Zm(async({code:i})=>{if(e.enabled&&e.status!=="success")throw new En(e.error,null,"captcha_failure");return o(i)},[o,e.status]);return{sendCode:r,loginWithCode:n}};import{useContext as Z2}from"react";function Q2(e){let{connectWallet:t}=Z2(Ie);return Nt("connectWallet",e),{connectWallet:t}}import{useContext as X2}from"react";function eC(e){let{createWallet:t}=X2(Ie);return Nt("createWallet",e),{createWallet:t}}export{xt as AsExternalProvider,Pn as Captcha,en as ConnectorManager,on as PrivyClient,V2 as PrivyProvider,oe as PrivyProxyProvider,Gn as SUPPORTED_CHAINS,Ba as VERSION,Fe as WalletConnector,xr as errorIndicatesMaxMfaRetries,Er as errorIndicatesMfaTimeout,Pr as errorIndicatesMfaVerificationFailed,Re as getAccessToken,Q2 as useConnectWallet,eC as useCreateWallet,j2 as useLogin,J2 as useLoginWithEmail,Y2 as useLogout,Ma as useMfa,Rn as useMfaEnrollment,G as usePrivy,ul as useRegisterMfaListener,Bn as useWallets};
|