Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@haechi-labs/face-types

Package Overview
Dependencies
Maintainers
3
Versions
93
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@haechi-labs/face-types - npm Package Compare versions

Comparing version 1.10.7 to 1.10.8

2

./dist/index.js

@@ -1,2 +0,2 @@

"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("ethers");var r;exports.Network=void 0,(r=exports.Network||(exports.Network={})).ETHEREUM="ethereum",r.ROPSTEN="ropsten",r.GOERLI="goerli",r.POLYGON="polygon",r.MUMBAI="mumbai",r.BNB_SMART_CHAIN="bnb_smart_chain",r.BNB_SMART_CHAIN_TESTNET="bnb_smart_chain_testnet",r.KLAYTN="klaytn",r.BAOBAB="baobab",r.SOLANA="solana",r.SOLANA_DEVNET="solana_devnet",r.NEAR="near",r.NEAR_TESTNET="near_testnet",r.BORA="bora",r.BORA_TESTNET="bora_testnet",r.ETH_MAINNET="ethereum",r.ETH_TESTNET="ropsten",r.MATIC_MAINNET="polygon",r.MATIC_TESTNET="mumbai",r.BINANCE_COIN_MAINNET="bnb_smart_chain",r.BINANCE_COIN_TESTNET="bnb_smart_chain_testnet",r.KLAYTN_MAINNET="klaytn",r.KLAYTN_TESTNET="baobab",r.APTOS="aptoslab",r.APTOS_TESTNET="aptoslab_testnet",r.MEVERSE="meverse",r.MEVERSE_TESTNET="meverse_testnet",r.PSM="psm",r.PSM_TESTNET="psm_testnet",r.HOME_VERSE="home_verse",r.HOME_VERSE_TESTNET="home_verse_testnet";const t={[exports.Network.ETHEREUM]:1,[exports.Network.ROPSTEN]:3,[exports.Network.GOERLI]:5,[exports.Network.POLYGON]:137,[exports.Network.MUMBAI]:80001,[exports.Network.BNB_SMART_CHAIN]:56,[exports.Network.BNB_SMART_CHAIN_TESTNET]:97,[exports.Network.KLAYTN]:8217,[exports.Network.BAOBAB]:1001,[exports.Network.SOLANA]:0,[exports.Network.SOLANA_DEVNET]:0,[exports.Network.NEAR]:0,[exports.Network.NEAR_TESTNET]:0,[exports.Network.BORA]:77001,[exports.Network.BORA_TESTNET]:99001,[exports.Network.APTOS]:1,[exports.Network.APTOS_TESTNET]:2,[exports.Network.MEVERSE]:7518,[exports.Network.MEVERSE_TESTNET]:4759,[exports.Network.PSM_TESTNET]:100,[exports.Network.PSM]:91002,[exports.Network.HOME_VERSE]:19011,[exports.Network.HOME_VERSE_TESTNET]:40875,1:exports.Network.ETHEREUM,3:exports.Network.ROPSTEN,5:exports.Network.GOERLI,137:exports.Network.POLYGON,80001:exports.Network.MUMBAI,56:exports.Network.BNB_SMART_CHAIN,97:exports.Network.BNB_SMART_CHAIN_TESTNET,8217:exports.Network.KLAYTN,1001:exports.Network.BAOBAB,77001:exports.Network.BORA,99001:exports.Network.BORA_TESTNET,7518:exports.Network.MEVERSE,4759:exports.Network.MEVERSE_TESTNET,100:exports.Network.PSM_TESTNET,91002:exports.Network.PSM,19011:exports.Network.HOME_VERSE,40875:exports.Network.HOME_VERSE_TESTNET};var o;exports.Blockchain=void 0,(o=exports.Blockchain||(exports.Blockchain={})).ETHEREUM="ETHEREUM",o.POLYGON="POLYGON",o.BNB_SMART_CHAIN="BNB_SMART_CHAIN",o.KLAYTN="KLAYTN",o.SOLANA="SOLANA",o.NEAR="NEAR",o.BORA="BORA",o.APTOS="APTOS",o.MEVERSE="MEVERSE",o.PSM="PSM",o.HOME_VERSE="HOME_VERSE";const s=[exports.Blockchain.ETHEREUM,exports.Blockchain.POLYGON,exports.Blockchain.BNB_SMART_CHAIN,exports.Blockchain.KLAYTN,exports.Blockchain.BORA,exports.Blockchain.MEVERSE,exports.Blockchain.PSM,exports.Blockchain.HOME_VERSE];var n,a,E,c,N,i,_,p;exports.BoraPortalConnectStatusEnum=void 0,(n=exports.BoraPortalConnectStatusEnum||(exports.BoraPortalConnectStatusEnum={})).Connected="CONNECTED",n.Unconnected="UNCONNECTED";class T{constructor(e,r){T.ensureHexString(e),T.checkLength(e,r),this.hex=e,this.length=r}static empty(){return new T("",0)}static fromUint8Array(e){return new T(A(e),e.length)}static fromHex(e,r){return new T(e,r)}static ensureHexString(e){try{if(""===e)return;if(null==e)throw new Error(`hex is null ${e}`);if(!e.startsWith("0x"))throw new Error(`hex does not start with 0x ${e}`);if(null==e.match("0x[0-9a-fA-F]+"))throw new Error(`invalid hex data ${e}`)}catch(e){throw e}}static checkLength(e,r){if(0===e.length)return;if(4*(e.length-2)/8>r)throw new Error(`length is less than hex data ${e}, ${r}`)}toString(){return this.hex}toHex(){return this.hex}toBigNumber(){return e.BigNumber.from(this.hex)}toJSON(){return{hex:this.hex,length:this.length}}static fromJSON(e){const{hex:r,length:t}=JSON.parse(e);return new T(r,t)}static fromBigNumber(e,r){return T.fromHex(e.toHexString(),r)}toUInt8Array(){const e=this.hex.substring(2),r=[];for(let t=0;t<e.length;t+=2)r.push(parseInt(e.substring(t,t+2),16));return new Uint8Array(r)}static concat(e,r){try{const t=e.toUInt8Array(),o=r.toUInt8Array(),s=new Uint8Array(t.length+o.length);s.set(t),s.set(o,t.length);const n=A(s);return new T(n,t.length+o.length)}catch(e){return console.debug("concat error",e),T.empty()}}split(e){const r=this.toUInt8Array();return[T.fromUint8Array(r.slice(0,e)),T.fromUint8Array(r.slice(e))]}clone(){return new T(this.hex,this.length)}unsafeSetLength(e){this.length=e}}function A(e){return"0x"+[...e].map((e=>e.toString(16).padStart(2,"0"))).join("")}function R(e){return function(e){return null===e}(e)||function(e){return void 0===e}(e)}exports.Env=void 0,(a=exports.Env||(exports.Env={})).Local="Local",a.Dev="Dev",a.StageTest="StageTest",a.StageMainnet="StageMainnet",a.ProdTest="ProdTest",a.ProdMainnet="ProdMainnet",exports.JsonRpcMethod=void 0,(E=exports.JsonRpcMethod||(exports.JsonRpcMethod={})).face_logInSignUp="face_logInSignUp",E.face_loggedIn="face_loggedIn",E.face_logOut="face_logOut",E.face_open2fa="face_open2fa",E.face_currentUser="face_currentUser",E.face_accounts="face_accounts",E.face_openIframe="face_openIframe",E.face_closeIframe="face_closeIframe",E.face_ready="face_ready",E.face_openHome="face_openHome",E.face_openKit="face_openKit",E.face_connectExternalWallet="face_connectExternalWallet",E.face_openWalletConnect="face_openWalletConnect",E.face_confirmWalletConnectDapp="face_confirmWalletConnectDapp",E.face_switchNetwork="face_switchNetwork",E.face_directSocialLogin="face_directSocialLogin",E.face_getIdToken="face_getIdToken",E.face_loginWithIdToken="face_loginWithIdToken",E.face_loginWithAccessToken="face_loginWithAccessToken",E.bora_connect="bora_connect",E.bora_isConnected="bora_isConnected",E.eth_sendTransaction="eth_sendTransaction",E.eth_getBalance="eth_getBalance",E.eth_call="eth_call",E.eth_estimateGas="eth_estimateGas",E.eth_sign="eth_sign",E.eth_signTypedData_v3="eth_signTypedData_v3",E.eth_signTypedData_v4="eth_signTypedData_v4",E.eth_accounts="eth_accounts",E.personal_sign="personal_sign",E.personal_listAccounts="personal_listAccounts",E.wallet_switchEthereumChain="wallet_switchEthereumChain",E.solana_sendTransaction="solana_sendTransaction",E.near_broadcast_tx_async="near_broadcast_tx_async",E.near_get_balance="near_get_balance",E.aptos_signMultiAgentTransaction="aptos_signMultiAgentTransaction",E.aptos_signMessage="aptos_signMessage",E.aptos_signTransaction="aptos_signTransaction",E.aptos_signAndSubmitTransaction="aptos_signAndSubmitTransaction",exports.JsonRpcSource=void 0,(c=exports.JsonRpcSource||(exports.JsonRpcSource={})).FACE_SDK="FACE_SDK",c.FACE_IFRAME="FACE_IFRAME",c.FACE_WALLET_CONNECT="FACE_WALLET_CONNECT",c.FACE_NATIVE_SDK="FACE_NATIVE_SDK",exports.RpcErrorCode=void 0,(N=exports.RpcErrorCode||(exports.RpcErrorCode={}))[N.PARSE_ERROR=-32700]="PARSE_ERROR",N[N.INVALID_REQUEST=-32600]="INVALID_REQUEST",N[N.METHOD_NOT_FOUND=-32601]="METHOD_NOT_FOUND",N[N.INVALID_PARAMS=-32602]="INVALID_PARAMS",N[N.INTERNAL_ERROR=-32603]="INTERNAL_ERROR",exports.HttpStatus=void 0,(i=exports.HttpStatus||(exports.HttpStatus={}))[i.SUCCESS=200]="SUCCESS",i[i.CREATED=201]="CREATED",i[i.BAD_REQUEST=400]="BAD_REQUEST",i[i.UNAUTHORIZED=401]="UNAUTHORIZED",i[i.FORBIDDEN=403]="FORBIDDEN",i[i.NOT_FOUND=404]="NOT_FOUND",i[i.INTERNAL_SERVER_ERROR=500]="INTERNAL_SERVER_ERROR",exports.FaceErrorCode=void 0,(_=exports.FaceErrorCode||(exports.FaceErrorCode={}))[_.INVALID_ARGUMENT=4e3]="INVALID_ARGUMENT",_[_.USER_REJECTED_REQUEST=4001]="USER_REJECTED_REQUEST",_[_.NOT_IMPLEMENTED=4002]="NOT_IMPLEMENTED",_[_.BAD_REQUEST=4003]="BAD_REQUEST",_[_.SEND_TRANSACTION_FAILED=4004]="SEND_TRANSACTION_FAILED",_[_.SIGN_FAILED=4005]="SIGN_FAILED",_[_.UNAUTHORIZED=4100]="UNAUTHORIZED",_[_.NO_USER_DATA=4101]="NO_USER_DATA",_[_.AUTHENTICATION=4102]="AUTHENTICATION",_[_.UNSUPPORTED_SOCIAL_PROVIDER=4103]="UNSUPPORTED_SOCIAL_PROVIDER",_[_.INVALID_ENVIRONMENT=4200]="INVALID_ENVIRONMENT",_[_.UNSUPPORTED_METHOD=4201]="UNSUPPORTED_METHOD",_[_.UNSUPPORTED_CHAIN=4202]="UNSUPPORTED_CHAIN",_[_.INVALID_WALLET=4300]="INVALID_WALLET",_[_.PROVIDERS_AND_WALLETS_CONFIG_ERROR=4301]="PROVIDERS_AND_WALLETS_CONFIG_ERROR",_[_.INVALID_SIGNATURE_MESSAGE=4906]="INVALID_SIGNATURE_MESSAGE",_[_.INVALID_BORA_API_AND_SECRET_KEY=4907]="INVALID_BORA_API_AND_SECRET_KEY",_[_.ALREADY_CONNECTED_OTHER_BAPP_USN=4909]="ALREADY_CONNECTED_OTHER_BAPP_USN",_[_.BORA_SERVICE_REGION_IS_WRONG=4910]="BORA_SERVICE_REGION_IS_WRONG",_[_.INTERNAL=5e3]="INTERNAL";class S extends Error{static isFaceError(e){return e.isFaceError}isValidErrorCode(e){return!R(r=e)&&"number"==typeof r&&Object.values(exports.RpcErrorCode).includes(r)||function(e){return!R(e)&&"number"==typeof e&&Object.values(exports.FaceErrorCode).includes(e)}(e);var r}constructor(e){super(),this.isFaceError=!0,this.code=this.isValidErrorCode(e.code)?e.code:exports.FaceErrorCode.INTERNAL,this.message=`Face Error: [${this.code}] ${e.message}`,e.origin&&(e.origin.isFaceError&&e.origin.origin?this.origin=e.origin.origin:this.origin=e.origin),e.data&&(this.data=e.data),Object.setPrototypeOf(this,S.prototype),Error.captureStackTrace(this,this.constructor)}}function x(e){return l({message:`invalid ${e}`,code:exports.FaceErrorCode.INVALID_ARGUMENT})}function l(e){return new S(e)}function u(e,r,t){if(!e)throw r(...null!=t?t:[])}exports.TxType=void 0,(p=exports.TxType||(exports.TxType={})).COIN="COIN",p.ERC20="ERC20",p.ERC721="ERC721",p.ERC1155="ERC1155",p.FT="FT",p.CONVERT="CONVERT";var O;exports.UserStatus=void 0,(O=exports.UserStatus||(exports.UserStatus={})).isWalletCreated="isWalletCreated",O.isNewUser="isNewUser",O.isRegisteredPinCode="isRegisteredPinCode",O.isAdmin="isAdmin",exports.CryptoBuffer=T,exports.FaceAuthSessionKey="Face-Auth-Session",exports.FaceError=S,exports.FaceOAuthResultKey="Face-OAuth-Result",exports.FaceVersionLocalKey="Face-Version",exports.LoginProvider={Google:"google.com",Apple:"apple.com",Twitter:"twitter.com",Discord:"discord.com",Facebook:"facebook.com",Kakao:"kakao.com"},exports.NetworkChainIdMap=t,exports.WalletPath="m/44'/60'/1'/0/0",exports.alreadyConnectedToOtherBappusn=function(e){return l({message:"already connected to other bappusn",code:exports.FaceErrorCode.ALREADY_CONNECTED_OTHER_BAPP_USN,origin:e})},exports.assert=u,exports.assertArgument=function(e,r,t,o=!0){(o||e)&&u(!!e&&r,x,[t])},exports.boraServiceRegionIsWrong=function(e){return new S({message:"bora service region is wrong",code:exports.FaceErrorCode.BORA_SERVICE_REGION_IS_WRONG,origin:e})},exports.getEthlikeBlockchains=function(){return s},exports.getPlatFormCoinDecimalByBlockchain=e=>{switch(e){case exports.Blockchain.ETHEREUM:case exports.Blockchain.POLYGON:case exports.Blockchain.KLAYTN:case exports.Blockchain.BNB_SMART_CHAIN:case exports.Blockchain.BORA:case exports.Blockchain.MEVERSE:case exports.Blockchain.PSM:case exports.Blockchain.HOME_VERSE:return 18;case exports.Blockchain.SOLANA:return 9;case exports.Blockchain.NEAR:return 24;case exports.Blockchain.APTOS:return 8;default:throw new Error("unsupported blockchain")}},exports.invalidApiKeyError=function(e){return l({message:"invalid api key error",code:exports.FaceErrorCode.UNAUTHORIZED,origin:e})},exports.invalidArgumentError=x,exports.invalidBoraPortalIdAndSecretKey=function(e){return l({message:"Not found bapp. please contact FaceWallet Team to register BoraPortal Client Id/SecretKey.",code:exports.FaceErrorCode.INVALID_BORA_API_AND_SECRET_KEY,origin:e})},exports.invalidEnvironmentError=function(e){return l({message:"invalid environment",code:exports.FaceErrorCode.INVALID_ENVIRONMENT,data:{env:e}})},exports.invalidHostNameError=function(e){return l({message:"invalid host name error",code:exports.FaceErrorCode.UNAUTHORIZED,origin:e})},exports.invalidSignatureError=function(e){return l({message:"Invalid Signature message.",code:exports.FaceErrorCode.INVALID_SIGNATURE_MESSAGE,origin:e})},exports.invalidWallet=function(){return l({message:"invalid wallet error",code:exports.FaceErrorCode.INVALID_WALLET})},exports.isEthlikeBlockchain=function(e){return-1!==s.indexOf(e)},exports.isSupportedNetwork=e=>{switch(e){case exports.Network.ETHEREUM:case exports.Network.GOERLI:case exports.Network.POLYGON:case exports.Network.MUMBAI:case exports.Network.BNB_SMART_CHAIN:case exports.Network.BNB_SMART_CHAIN_TESTNET:case exports.Network.KLAYTN:case exports.Network.BAOBAB:case exports.Network.SOLANA:case exports.Network.SOLANA_DEVNET:case exports.Network.NEAR:case exports.Network.NEAR_TESTNET:case exports.Network.BORA:case exports.Network.BORA_TESTNET:case exports.Network.APTOS:case exports.Network.APTOS_TESTNET:case exports.Network.MEVERSE:case exports.Network.MEVERSE_TESTNET:case exports.Network.PSM_TESTNET:case exports.Network.HOME_VERSE:case exports.Network.HOME_VERSE_TESTNET:return!0;default:return!1}},exports.kitProvidersAndWalletsConfigError=function(){return l({message:"Both wallets and providers cannot be empty.",code:exports.FaceErrorCode.PROVIDERS_AND_WALLETS_CONFIG_ERROR})},exports.makeError=l,exports.networkToBlockchain=function(e){switch(e){case exports.Network.ETHEREUM:case exports.Network.ROPSTEN:case exports.Network.GOERLI:return exports.Blockchain.ETHEREUM;case exports.Network.POLYGON:case exports.Network.MUMBAI:return exports.Blockchain.POLYGON;case exports.Network.BNB_SMART_CHAIN:case exports.Network.BNB_SMART_CHAIN_TESTNET:return exports.Blockchain.BNB_SMART_CHAIN;case exports.Network.KLAYTN:case exports.Network.BAOBAB:return exports.Blockchain.KLAYTN;case exports.Network.SOLANA:case exports.Network.SOLANA_DEVNET:return exports.Blockchain.SOLANA;case exports.Network.BORA:case exports.Network.BORA_TESTNET:return exports.Blockchain.BORA;case exports.Network.NEAR:case exports.Network.NEAR_TESTNET:return exports.Blockchain.NEAR;case exports.Network.APTOS:case exports.Network.APTOS_TESTNET:return exports.Blockchain.APTOS;case exports.Network.MEVERSE:case exports.Network.MEVERSE_TESTNET:return exports.Blockchain.MEVERSE;case exports.Network.PSM:case exports.Network.PSM_TESTNET:return exports.Blockchain.PSM;case exports.Network.HOME_VERSE:case exports.Network.HOME_VERSE_TESTNET:return exports.Blockchain.HOME_VERSE}throw new Error(`Unsupported network: ${e}`)},exports.noUserDataError=function(){return l({message:"no user data",code:exports.FaceErrorCode.NO_USER_DATA})},exports.notImplementedError=function(e){return l({message:e,code:exports.FaceErrorCode.NOT_IMPLEMENTED})},exports.oauthError=function(e,r){return l({message:`OAuth 2.0 Error: ${e}`,code:exports.FaceErrorCode.AUTHENTICATION,origin:r})},exports.parseFaceSolanaNearTransactionPayload=function(e){return null==e||"object"!=typeof e||null==e.serializedHex||"string"!=typeof e.serializedHex?null:e},exports.sendTransactionError=function(e){return l({message:e.message,code:exports.FaceErrorCode.SEND_TRANSACTION_FAILED,data:e.data})},exports.signError=function(e){return l({message:e,code:exports.FaceErrorCode.SIGN_FAILED})},exports.unknownError=function(e){return l({message:"unknown error",code:exports.FaceErrorCode.INTERNAL,origin:e})},exports.unsupportedChainError=function(e){return l({message:"unsupported chain error",code:exports.FaceErrorCode.UNSUPPORTED_CHAIN,origin:e})},exports.unsupportedProviderError=function(e){return l({message:`${e} login is not supported.`,code:exports.FaceErrorCode.UNSUPPORTED_SOCIAL_PROVIDER})},exports.unsupportedTokenProviderError=function(e){return l({message:`${e} is not support get id token`,code:exports.FaceErrorCode.UNSUPPORTED_SOCIAL_PROVIDER})},exports.userRejectedRequest=function(e){return l({code:exports.FaceErrorCode.USER_REJECTED_REQUEST,message:"user rejected request",data:{path:e}})};
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("ethers");var r;exports.Network=void 0,(r=exports.Network||(exports.Network={})).ETHEREUM="ethereum",r.ROPSTEN="ropsten",r.GOERLI="goerli",r.POLYGON="polygon",r.MUMBAI="mumbai",r.BNB_SMART_CHAIN="bnb_smart_chain",r.BNB_SMART_CHAIN_TESTNET="bnb_smart_chain_testnet",r.KLAYTN="klaytn",r.BAOBAB="baobab",r.SOLANA="solana",r.SOLANA_DEVNET="solana_devnet",r.NEAR="near",r.NEAR_TESTNET="near_testnet",r.BORA="bora",r.BORA_TESTNET="bora_testnet",r.ETH_MAINNET="ethereum",r.ETH_TESTNET="ropsten",r.MATIC_MAINNET="polygon",r.MATIC_TESTNET="mumbai",r.BINANCE_COIN_MAINNET="bnb_smart_chain",r.BINANCE_COIN_TESTNET="bnb_smart_chain_testnet",r.KLAYTN_MAINNET="klaytn",r.KLAYTN_TESTNET="baobab",r.APTOS="aptoslab",r.APTOS_TESTNET="aptoslab_testnet",r.MEVERSE="meverse",r.MEVERSE_TESTNET="meverse_testnet",r.PSM="psm",r.PSM_TESTNET="psm_testnet",r.HOME_VERSE="home_verse",r.HOME_VERSE_TESTNET="home_verse_testnet";const t={[exports.Network.ETHEREUM]:1,[exports.Network.ROPSTEN]:3,[exports.Network.GOERLI]:5,[exports.Network.POLYGON]:137,[exports.Network.MUMBAI]:80001,[exports.Network.BNB_SMART_CHAIN]:56,[exports.Network.BNB_SMART_CHAIN_TESTNET]:97,[exports.Network.KLAYTN]:8217,[exports.Network.BAOBAB]:1001,[exports.Network.SOLANA]:0,[exports.Network.SOLANA_DEVNET]:0,[exports.Network.NEAR]:0,[exports.Network.NEAR_TESTNET]:0,[exports.Network.BORA]:77001,[exports.Network.BORA_TESTNET]:99001,[exports.Network.APTOS]:1,[exports.Network.APTOS_TESTNET]:2,[exports.Network.MEVERSE]:7518,[exports.Network.MEVERSE_TESTNET]:4759,[exports.Network.PSM_TESTNET]:500,[exports.Network.PSM]:91002,[exports.Network.HOME_VERSE]:19011,[exports.Network.HOME_VERSE_TESTNET]:40875,1:exports.Network.ETHEREUM,3:exports.Network.ROPSTEN,5:exports.Network.GOERLI,137:exports.Network.POLYGON,80001:exports.Network.MUMBAI,56:exports.Network.BNB_SMART_CHAIN,97:exports.Network.BNB_SMART_CHAIN_TESTNET,8217:exports.Network.KLAYTN,1001:exports.Network.BAOBAB,77001:exports.Network.BORA,99001:exports.Network.BORA_TESTNET,7518:exports.Network.MEVERSE,4759:exports.Network.MEVERSE_TESTNET,500:exports.Network.PSM_TESTNET,91002:exports.Network.PSM,19011:exports.Network.HOME_VERSE,40875:exports.Network.HOME_VERSE_TESTNET};var o;exports.Blockchain=void 0,(o=exports.Blockchain||(exports.Blockchain={})).ETHEREUM="ETHEREUM",o.POLYGON="POLYGON",o.BNB_SMART_CHAIN="BNB_SMART_CHAIN",o.KLAYTN="KLAYTN",o.SOLANA="SOLANA",o.NEAR="NEAR",o.BORA="BORA",o.APTOS="APTOS",o.MEVERSE="MEVERSE",o.PSM="PSM",o.HOME_VERSE="HOME_VERSE";const s=[exports.Blockchain.ETHEREUM,exports.Blockchain.POLYGON,exports.Blockchain.BNB_SMART_CHAIN,exports.Blockchain.KLAYTN,exports.Blockchain.BORA,exports.Blockchain.MEVERSE,exports.Blockchain.PSM,exports.Blockchain.HOME_VERSE];var n,a,E,c,N,i,_,T;exports.BoraPortalConnectStatusEnum=void 0,(n=exports.BoraPortalConnectStatusEnum||(exports.BoraPortalConnectStatusEnum={})).Connected="CONNECTED",n.Unconnected="UNCONNECTED";class p{constructor(e,r){p.ensureHexString(e),p.checkLength(e,r),this.hex=e,this.length=r}static empty(){return new p("",0)}static fromUint8Array(e){return new p(A(e),e.length)}static fromHex(e,r){return new p(e,r)}static ensureHexString(e){try{if(""===e)return;if(null==e)throw new Error(`hex is null ${e}`);if(!e.startsWith("0x"))throw new Error(`hex does not start with 0x ${e}`);if(null==e.match("0x[0-9a-fA-F]+"))throw new Error(`invalid hex data ${e}`)}catch(e){throw e}}static checkLength(e,r){if(0===e.length)return;if(4*(e.length-2)/8>r)throw new Error(`length is less than hex data ${e}, ${r}`)}toString(){return this.hex}toHex(){return this.hex}toBigNumber(){return e.BigNumber.from(this.hex)}toJSON(){return{hex:this.hex,length:this.length}}static fromJSON(e){const{hex:r,length:t}=JSON.parse(e);return new p(r,t)}static fromBigNumber(e,r){return p.fromHex(e.toHexString(),r)}toUInt8Array(){const e=this.hex.substring(2),r=[];for(let t=0;t<e.length;t+=2)r.push(parseInt(e.substring(t,t+2),16));return new Uint8Array(r)}static concat(e,r){try{const t=e.toUInt8Array(),o=r.toUInt8Array(),s=new Uint8Array(t.length+o.length);s.set(t),s.set(o,t.length);const n=A(s);return new p(n,t.length+o.length)}catch(e){return console.debug("concat error",e),p.empty()}}split(e){const r=this.toUInt8Array();return[p.fromUint8Array(r.slice(0,e)),p.fromUint8Array(r.slice(e))]}clone(){return new p(this.hex,this.length)}unsafeSetLength(e){this.length=e}}function A(e){return"0x"+[...e].map((e=>e.toString(16).padStart(2,"0"))).join("")}function R(e){return function(e){return null===e}(e)||function(e){return void 0===e}(e)}exports.Env=void 0,(a=exports.Env||(exports.Env={})).Local="Local",a.Dev="Dev",a.StageTest="StageTest",a.StageMainnet="StageMainnet",a.ProdTest="ProdTest",a.ProdMainnet="ProdMainnet",exports.JsonRpcMethod=void 0,(E=exports.JsonRpcMethod||(exports.JsonRpcMethod={})).face_logInSignUp="face_logInSignUp",E.face_loggedIn="face_loggedIn",E.face_logOut="face_logOut",E.face_open2fa="face_open2fa",E.face_currentUser="face_currentUser",E.face_accounts="face_accounts",E.face_openIframe="face_openIframe",E.face_closeIframe="face_closeIframe",E.face_ready="face_ready",E.face_openHome="face_openHome",E.face_openKit="face_openKit",E.face_connectExternalWallet="face_connectExternalWallet",E.face_openWalletConnect="face_openWalletConnect",E.face_confirmWalletConnectDapp="face_confirmWalletConnectDapp",E.face_switchNetwork="face_switchNetwork",E.face_directSocialLogin="face_directSocialLogin",E.face_getIdToken="face_getIdToken",E.face_loginWithIdToken="face_loginWithIdToken",E.face_loginWithAccessToken="face_loginWithAccessToken",E.face_showToast="face_showToast",E.bora_connect="bora_connect",E.bora_isConnected="bora_isConnected",E.eth_sendTransaction="eth_sendTransaction",E.eth_getBalance="eth_getBalance",E.eth_call="eth_call",E.eth_estimateGas="eth_estimateGas",E.eth_sign="eth_sign",E.eth_signTypedData_v3="eth_signTypedData_v3",E.eth_signTypedData_v4="eth_signTypedData_v4",E.eth_accounts="eth_accounts",E.personal_sign="personal_sign",E.personal_listAccounts="personal_listAccounts",E.wallet_switchEthereumChain="wallet_switchEthereumChain",E.solana_sendTransaction="solana_sendTransaction",E.near_broadcast_tx_async="near_broadcast_tx_async",E.near_get_balance="near_get_balance",E.aptos_signMultiAgentTransaction="aptos_signMultiAgentTransaction",E.aptos_signMessage="aptos_signMessage",E.aptos_signTransaction="aptos_signTransaction",E.aptos_signAndSubmitTransaction="aptos_signAndSubmitTransaction",exports.JsonRpcSource=void 0,(c=exports.JsonRpcSource||(exports.JsonRpcSource={})).FACE_SDK="FACE_SDK",c.FACE_IFRAME="FACE_IFRAME",c.FACE_WALLET_CONNECT="FACE_WALLET_CONNECT",c.FACE_NATIVE_SDK="FACE_NATIVE_SDK",exports.RpcErrorCode=void 0,(N=exports.RpcErrorCode||(exports.RpcErrorCode={}))[N.PARSE_ERROR=-32700]="PARSE_ERROR",N[N.INVALID_REQUEST=-32600]="INVALID_REQUEST",N[N.METHOD_NOT_FOUND=-32601]="METHOD_NOT_FOUND",N[N.INVALID_PARAMS=-32602]="INVALID_PARAMS",N[N.INTERNAL_ERROR=-32603]="INTERNAL_ERROR",exports.HttpStatus=void 0,(i=exports.HttpStatus||(exports.HttpStatus={}))[i.SUCCESS=200]="SUCCESS",i[i.CREATED=201]="CREATED",i[i.BAD_REQUEST=400]="BAD_REQUEST",i[i.UNAUTHORIZED=401]="UNAUTHORIZED",i[i.FORBIDDEN=403]="FORBIDDEN",i[i.NOT_FOUND=404]="NOT_FOUND",i[i.INTERNAL_SERVER_ERROR=500]="INTERNAL_SERVER_ERROR",exports.FaceErrorCode=void 0,(_=exports.FaceErrorCode||(exports.FaceErrorCode={}))[_.INVALID_ARGUMENT=4e3]="INVALID_ARGUMENT",_[_.USER_REJECTED_REQUEST=4001]="USER_REJECTED_REQUEST",_[_.NOT_IMPLEMENTED=4002]="NOT_IMPLEMENTED",_[_.BAD_REQUEST=4003]="BAD_REQUEST",_[_.SEND_TRANSACTION_FAILED=4004]="SEND_TRANSACTION_FAILED",_[_.SIGN_FAILED=4005]="SIGN_FAILED",_[_.UNAUTHORIZED=4100]="UNAUTHORIZED",_[_.NO_USER_DATA=4101]="NO_USER_DATA",_[_.AUTHENTICATION=4102]="AUTHENTICATION",_[_.UNSUPPORTED_SOCIAL_PROVIDER=4103]="UNSUPPORTED_SOCIAL_PROVIDER",_[_.INVALID_ENVIRONMENT=4200]="INVALID_ENVIRONMENT",_[_.UNSUPPORTED_METHOD=4201]="UNSUPPORTED_METHOD",_[_.UNSUPPORTED_CHAIN=4202]="UNSUPPORTED_CHAIN",_[_.INVALID_WALLET=4300]="INVALID_WALLET",_[_.PROVIDERS_AND_WALLETS_CONFIG_ERROR=4301]="PROVIDERS_AND_WALLETS_CONFIG_ERROR",_[_.INVALID_SIGNATURE_MESSAGE=4906]="INVALID_SIGNATURE_MESSAGE",_[_.INVALID_BORA_API_AND_SECRET_KEY=4907]="INVALID_BORA_API_AND_SECRET_KEY",_[_.ALREADY_CONNECTED_OTHER_BAPP_USN=4909]="ALREADY_CONNECTED_OTHER_BAPP_USN",_[_.BORA_SERVICE_REGION_IS_WRONG=4910]="BORA_SERVICE_REGION_IS_WRONG",_[_.INTERNAL=5e3]="INTERNAL";class S extends Error{static isFaceError(e){return e.isFaceError}isValidErrorCode(e){return!R(r=e)&&"number"==typeof r&&Object.values(exports.RpcErrorCode).includes(r)||function(e){return!R(e)&&"number"==typeof e&&Object.values(exports.FaceErrorCode).includes(e)}(e);var r}constructor(e){super(),this.isFaceError=!0,this.code=this.isValidErrorCode(e.code)?e.code:exports.FaceErrorCode.INTERNAL,this.message=`Face Error: [${this.code}] ${e.message}`,e.origin&&(e.origin.isFaceError&&e.origin.origin?this.origin=e.origin.origin:this.origin=e.origin),e.data&&(this.data=e.data),Object.setPrototypeOf(this,S.prototype),Error.captureStackTrace(this,this.constructor)}}function x(e){return l({message:`invalid ${e}`,code:exports.FaceErrorCode.INVALID_ARGUMENT})}function l(e){return new S(e)}function u(e,r,t){if(!e)throw r(...null!=t?t:[])}exports.TxType=void 0,(T=exports.TxType||(exports.TxType={})).COIN="COIN",T.ERC20="ERC20",T.ERC721="ERC721",T.ERC1155="ERC1155",T.FT="FT",T.CONVERT="CONVERT";var O;exports.UserStatus=void 0,(O=exports.UserStatus||(exports.UserStatus={})).isWalletCreated="isWalletCreated",O.isNewUser="isNewUser",O.isRegisteredPinCode="isRegisteredPinCode",O.isAdmin="isAdmin",exports.CryptoBuffer=p,exports.FaceAuthSessionKey="Face-Auth-Session",exports.FaceError=S,exports.FaceOAuthResultKey="Face-OAuth-Result",exports.FaceVersionLocalKey="Face-Version",exports.LoginProvider={Google:"google.com",Apple:"apple.com",Twitter:"twitter.com",Discord:"discord.com",Facebook:"facebook.com",Kakao:"kakao.com"},exports.NetworkChainIdMap=t,exports.WalletPath="m/44'/60'/1'/0/0",exports.alreadyConnectedToOtherBappusn=function(e){return l({message:"already connected to other bappusn",code:exports.FaceErrorCode.ALREADY_CONNECTED_OTHER_BAPP_USN,origin:e})},exports.assert=u,exports.assertArgument=function(e,r,t,o=!0){(o||e)&&u(!!e&&r,x,[t])},exports.boraServiceRegionIsWrong=function(e){return new S({message:"bora service region is wrong",code:exports.FaceErrorCode.BORA_SERVICE_REGION_IS_WRONG,origin:e})},exports.getEthlikeBlockchains=function(){return s},exports.getPlatFormCoinDecimalByBlockchain=e=>{switch(e){case exports.Blockchain.ETHEREUM:case exports.Blockchain.POLYGON:case exports.Blockchain.KLAYTN:case exports.Blockchain.BNB_SMART_CHAIN:case exports.Blockchain.BORA:case exports.Blockchain.MEVERSE:case exports.Blockchain.PSM:case exports.Blockchain.HOME_VERSE:return 18;case exports.Blockchain.SOLANA:return 9;case exports.Blockchain.NEAR:return 24;case exports.Blockchain.APTOS:return 8;default:throw new Error("unsupported blockchain")}},exports.invalidApiKeyError=function(e){return l({message:"invalid api key error",code:exports.FaceErrorCode.UNAUTHORIZED,origin:e})},exports.invalidArgumentError=x,exports.invalidBoraPortalIdAndSecretKey=function(e){return l({message:"Not found bapp. please contact FaceWallet Team to register BoraPortal Client Id/SecretKey.",code:exports.FaceErrorCode.INVALID_BORA_API_AND_SECRET_KEY,origin:e})},exports.invalidEnvironmentError=function(e){return l({message:"invalid environment",code:exports.FaceErrorCode.INVALID_ENVIRONMENT,data:{env:e}})},exports.invalidHostNameError=function(e){return l({message:"invalid host name error",code:exports.FaceErrorCode.UNAUTHORIZED,origin:e})},exports.invalidSignatureError=function(e){return l({message:"Invalid Signature message.",code:exports.FaceErrorCode.INVALID_SIGNATURE_MESSAGE,origin:e})},exports.invalidWallet=function(){return l({message:"invalid wallet error",code:exports.FaceErrorCode.INVALID_WALLET})},exports.isEthlikeBlockchain=function(e){return-1!==s.indexOf(e)},exports.isSupportedNetwork=e=>{switch(e){case exports.Network.ETHEREUM:case exports.Network.GOERLI:case exports.Network.POLYGON:case exports.Network.MUMBAI:case exports.Network.BNB_SMART_CHAIN:case exports.Network.BNB_SMART_CHAIN_TESTNET:case exports.Network.KLAYTN:case exports.Network.BAOBAB:case exports.Network.SOLANA:case exports.Network.SOLANA_DEVNET:case exports.Network.NEAR:case exports.Network.NEAR_TESTNET:case exports.Network.BORA:case exports.Network.BORA_TESTNET:case exports.Network.APTOS:case exports.Network.APTOS_TESTNET:case exports.Network.MEVERSE:case exports.Network.MEVERSE_TESTNET:case exports.Network.PSM_TESTNET:case exports.Network.HOME_VERSE:case exports.Network.HOME_VERSE_TESTNET:return!0;default:return!1}},exports.kitProvidersAndWalletsConfigError=function(){return l({message:"Both wallets and providers cannot be empty.",code:exports.FaceErrorCode.PROVIDERS_AND_WALLETS_CONFIG_ERROR})},exports.makeError=l,exports.networkToBlockchain=function(e){switch(e){case exports.Network.ETHEREUM:case exports.Network.ROPSTEN:case exports.Network.GOERLI:return exports.Blockchain.ETHEREUM;case exports.Network.POLYGON:case exports.Network.MUMBAI:return exports.Blockchain.POLYGON;case exports.Network.BNB_SMART_CHAIN:case exports.Network.BNB_SMART_CHAIN_TESTNET:return exports.Blockchain.BNB_SMART_CHAIN;case exports.Network.KLAYTN:case exports.Network.BAOBAB:return exports.Blockchain.KLAYTN;case exports.Network.SOLANA:case exports.Network.SOLANA_DEVNET:return exports.Blockchain.SOLANA;case exports.Network.BORA:case exports.Network.BORA_TESTNET:return exports.Blockchain.BORA;case exports.Network.NEAR:case exports.Network.NEAR_TESTNET:return exports.Blockchain.NEAR;case exports.Network.APTOS:case exports.Network.APTOS_TESTNET:return exports.Blockchain.APTOS;case exports.Network.MEVERSE:case exports.Network.MEVERSE_TESTNET:return exports.Blockchain.MEVERSE;case exports.Network.PSM:case exports.Network.PSM_TESTNET:return exports.Blockchain.PSM;case exports.Network.HOME_VERSE:case exports.Network.HOME_VERSE_TESTNET:return exports.Blockchain.HOME_VERSE}throw new Error(`Unsupported network: ${e}`)},exports.noUserDataError=function(){return l({message:"no user data",code:exports.FaceErrorCode.NO_USER_DATA})},exports.notImplementedError=function(e){return l({message:e,code:exports.FaceErrorCode.NOT_IMPLEMENTED})},exports.oauthError=function(e,r){return l({message:`OAuth 2.0 Error: ${e}`,code:exports.FaceErrorCode.AUTHENTICATION,origin:r})},exports.parseFaceSolanaNearTransactionPayload=function(e){return null==e||"object"!=typeof e||null==e.serializedHex||"string"!=typeof e.serializedHex?null:e},exports.sendTransactionError=function(e){return l({message:e.message,code:exports.FaceErrorCode.SEND_TRANSACTION_FAILED,data:e.data})},exports.signError=function(e){return l({message:e,code:exports.FaceErrorCode.SIGN_FAILED})},exports.unknownError=function(e){return l({message:"unknown error",code:exports.FaceErrorCode.INTERNAL,origin:e})},exports.unsupportedChainError=function(e){return l({message:"unsupported chain error",code:exports.FaceErrorCode.UNSUPPORTED_CHAIN,origin:e})},exports.unsupportedProviderError=function(e){return l({message:`${e} login is not supported.`,code:exports.FaceErrorCode.UNSUPPORTED_SOCIAL_PROVIDER})},exports.unsupportedTokenProviderError=function(e){return l({message:`${e} is not support get id token`,code:exports.FaceErrorCode.UNSUPPORTED_SOCIAL_PROVIDER})},exports.userRejectedRequest=function(e){return l({code:exports.FaceErrorCode.USER_REJECTED_REQUEST,message:"user rejected request",data:{path:e}})};
//# sourceMappingURL=index.js.map

@@ -23,2 +23,3 @@ import { Network } from './blockchain';

face_loginWithAccessToken = "face_loginWithAccessToken",
face_showToast = "face_showToast",
bora_connect = "bora_connect",

@@ -61,2 +62,3 @@ bora_isConnected = "bora_isConnected",

metaData?: DappMetaData;
result?: any;
}

@@ -63,0 +65,0 @@ export interface JsonRpcRequestCallback {

@@ -204,2 +204,3 @@ import { BigNumber, BigNumberish } from 'ethers';

face_loginWithAccessToken = "face_loginWithAccessToken",
face_showToast = "face_showToast",
bora_connect = "bora_connect",

@@ -242,2 +243,3 @@ bora_isConnected = "bora_isConnected",

metaData?: DappMetaData;
result?: any;
}

@@ -244,0 +246,0 @@ interface JsonRpcRequestCallback {

@@ -1,2 +0,2 @@

"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("ethers");var r;exports.Network=void 0,(r=exports.Network||(exports.Network={})).ETHEREUM="ethereum",r.ROPSTEN="ropsten",r.GOERLI="goerli",r.POLYGON="polygon",r.MUMBAI="mumbai",r.BNB_SMART_CHAIN="bnb_smart_chain",r.BNB_SMART_CHAIN_TESTNET="bnb_smart_chain_testnet",r.KLAYTN="klaytn",r.BAOBAB="baobab",r.SOLANA="solana",r.SOLANA_DEVNET="solana_devnet",r.NEAR="near",r.NEAR_TESTNET="near_testnet",r.BORA="bora",r.BORA_TESTNET="bora_testnet",r.ETH_MAINNET="ethereum",r.ETH_TESTNET="ropsten",r.MATIC_MAINNET="polygon",r.MATIC_TESTNET="mumbai",r.BINANCE_COIN_MAINNET="bnb_smart_chain",r.BINANCE_COIN_TESTNET="bnb_smart_chain_testnet",r.KLAYTN_MAINNET="klaytn",r.KLAYTN_TESTNET="baobab",r.APTOS="aptoslab",r.APTOS_TESTNET="aptoslab_testnet",r.MEVERSE="meverse",r.MEVERSE_TESTNET="meverse_testnet",r.PSM="psm",r.PSM_TESTNET="psm_testnet",r.HOME_VERSE="home_verse",r.HOME_VERSE_TESTNET="home_verse_testnet";const t={[exports.Network.ETHEREUM]:1,[exports.Network.ROPSTEN]:3,[exports.Network.GOERLI]:5,[exports.Network.POLYGON]:137,[exports.Network.MUMBAI]:80001,[exports.Network.BNB_SMART_CHAIN]:56,[exports.Network.BNB_SMART_CHAIN_TESTNET]:97,[exports.Network.KLAYTN]:8217,[exports.Network.BAOBAB]:1001,[exports.Network.SOLANA]:0,[exports.Network.SOLANA_DEVNET]:0,[exports.Network.NEAR]:0,[exports.Network.NEAR_TESTNET]:0,[exports.Network.BORA]:77001,[exports.Network.BORA_TESTNET]:99001,[exports.Network.APTOS]:1,[exports.Network.APTOS_TESTNET]:2,[exports.Network.MEVERSE]:7518,[exports.Network.MEVERSE_TESTNET]:4759,[exports.Network.PSM_TESTNET]:100,[exports.Network.PSM]:91002,[exports.Network.HOME_VERSE]:19011,[exports.Network.HOME_VERSE_TESTNET]:40875,1:exports.Network.ETHEREUM,3:exports.Network.ROPSTEN,5:exports.Network.GOERLI,137:exports.Network.POLYGON,80001:exports.Network.MUMBAI,56:exports.Network.BNB_SMART_CHAIN,97:exports.Network.BNB_SMART_CHAIN_TESTNET,8217:exports.Network.KLAYTN,1001:exports.Network.BAOBAB,77001:exports.Network.BORA,99001:exports.Network.BORA_TESTNET,7518:exports.Network.MEVERSE,4759:exports.Network.MEVERSE_TESTNET,100:exports.Network.PSM_TESTNET,91002:exports.Network.PSM,19011:exports.Network.HOME_VERSE,40875:exports.Network.HOME_VERSE_TESTNET};var o;exports.Blockchain=void 0,(o=exports.Blockchain||(exports.Blockchain={})).ETHEREUM="ETHEREUM",o.POLYGON="POLYGON",o.BNB_SMART_CHAIN="BNB_SMART_CHAIN",o.KLAYTN="KLAYTN",o.SOLANA="SOLANA",o.NEAR="NEAR",o.BORA="BORA",o.APTOS="APTOS",o.MEVERSE="MEVERSE",o.PSM="PSM",o.HOME_VERSE="HOME_VERSE";const s=[exports.Blockchain.ETHEREUM,exports.Blockchain.POLYGON,exports.Blockchain.BNB_SMART_CHAIN,exports.Blockchain.KLAYTN,exports.Blockchain.BORA,exports.Blockchain.MEVERSE,exports.Blockchain.PSM,exports.Blockchain.HOME_VERSE];var n,a,E,c,N,i,_,p;exports.BoraPortalConnectStatusEnum=void 0,(n=exports.BoraPortalConnectStatusEnum||(exports.BoraPortalConnectStatusEnum={})).Connected="CONNECTED",n.Unconnected="UNCONNECTED";class T{constructor(e,r){T.ensureHexString(e),T.checkLength(e,r),this.hex=e,this.length=r}static empty(){return new T("",0)}static fromUint8Array(e){return new T(A(e),e.length)}static fromHex(e,r){return new T(e,r)}static ensureHexString(e){try{if(""===e)return;if(null==e)throw new Error(`hex is null ${e}`);if(!e.startsWith("0x"))throw new Error(`hex does not start with 0x ${e}`);if(null==e.match("0x[0-9a-fA-F]+"))throw new Error(`invalid hex data ${e}`)}catch(e){throw e}}static checkLength(e,r){if(0===e.length)return;if(4*(e.length-2)/8>r)throw new Error(`length is less than hex data ${e}, ${r}`)}toString(){return this.hex}toHex(){return this.hex}toBigNumber(){return e.BigNumber.from(this.hex)}toJSON(){return{hex:this.hex,length:this.length}}static fromJSON(e){const{hex:r,length:t}=JSON.parse(e);return new T(r,t)}static fromBigNumber(e,r){return T.fromHex(e.toHexString(),r)}toUInt8Array(){const e=this.hex.substring(2),r=[];for(let t=0;t<e.length;t+=2)r.push(parseInt(e.substring(t,t+2),16));return new Uint8Array(r)}static concat(e,r){try{const t=e.toUInt8Array(),o=r.toUInt8Array(),s=new Uint8Array(t.length+o.length);s.set(t),s.set(o,t.length);const n=A(s);return new T(n,t.length+o.length)}catch(e){return console.debug("concat error",e),T.empty()}}split(e){const r=this.toUInt8Array();return[T.fromUint8Array(r.slice(0,e)),T.fromUint8Array(r.slice(e))]}clone(){return new T(this.hex,this.length)}unsafeSetLength(e){this.length=e}}function A(e){return"0x"+[...e].map((e=>e.toString(16).padStart(2,"0"))).join("")}function R(e){return function(e){return null===e}(e)||function(e){return void 0===e}(e)}exports.Env=void 0,(a=exports.Env||(exports.Env={})).Local="Local",a.Dev="Dev",a.StageTest="StageTest",a.StageMainnet="StageMainnet",a.ProdTest="ProdTest",a.ProdMainnet="ProdMainnet",exports.JsonRpcMethod=void 0,(E=exports.JsonRpcMethod||(exports.JsonRpcMethod={})).face_logInSignUp="face_logInSignUp",E.face_loggedIn="face_loggedIn",E.face_logOut="face_logOut",E.face_open2fa="face_open2fa",E.face_currentUser="face_currentUser",E.face_accounts="face_accounts",E.face_openIframe="face_openIframe",E.face_closeIframe="face_closeIframe",E.face_ready="face_ready",E.face_openHome="face_openHome",E.face_openKit="face_openKit",E.face_connectExternalWallet="face_connectExternalWallet",E.face_openWalletConnect="face_openWalletConnect",E.face_confirmWalletConnectDapp="face_confirmWalletConnectDapp",E.face_switchNetwork="face_switchNetwork",E.face_directSocialLogin="face_directSocialLogin",E.face_getIdToken="face_getIdToken",E.face_loginWithIdToken="face_loginWithIdToken",E.face_loginWithAccessToken="face_loginWithAccessToken",E.bora_connect="bora_connect",E.bora_isConnected="bora_isConnected",E.eth_sendTransaction="eth_sendTransaction",E.eth_getBalance="eth_getBalance",E.eth_call="eth_call",E.eth_estimateGas="eth_estimateGas",E.eth_sign="eth_sign",E.eth_signTypedData_v3="eth_signTypedData_v3",E.eth_signTypedData_v4="eth_signTypedData_v4",E.eth_accounts="eth_accounts",E.personal_sign="personal_sign",E.personal_listAccounts="personal_listAccounts",E.wallet_switchEthereumChain="wallet_switchEthereumChain",E.solana_sendTransaction="solana_sendTransaction",E.near_broadcast_tx_async="near_broadcast_tx_async",E.near_get_balance="near_get_balance",E.aptos_signMultiAgentTransaction="aptos_signMultiAgentTransaction",E.aptos_signMessage="aptos_signMessage",E.aptos_signTransaction="aptos_signTransaction",E.aptos_signAndSubmitTransaction="aptos_signAndSubmitTransaction",exports.JsonRpcSource=void 0,(c=exports.JsonRpcSource||(exports.JsonRpcSource={})).FACE_SDK="FACE_SDK",c.FACE_IFRAME="FACE_IFRAME",c.FACE_WALLET_CONNECT="FACE_WALLET_CONNECT",c.FACE_NATIVE_SDK="FACE_NATIVE_SDK",exports.RpcErrorCode=void 0,(N=exports.RpcErrorCode||(exports.RpcErrorCode={}))[N.PARSE_ERROR=-32700]="PARSE_ERROR",N[N.INVALID_REQUEST=-32600]="INVALID_REQUEST",N[N.METHOD_NOT_FOUND=-32601]="METHOD_NOT_FOUND",N[N.INVALID_PARAMS=-32602]="INVALID_PARAMS",N[N.INTERNAL_ERROR=-32603]="INTERNAL_ERROR",exports.HttpStatus=void 0,(i=exports.HttpStatus||(exports.HttpStatus={}))[i.SUCCESS=200]="SUCCESS",i[i.CREATED=201]="CREATED",i[i.BAD_REQUEST=400]="BAD_REQUEST",i[i.UNAUTHORIZED=401]="UNAUTHORIZED",i[i.FORBIDDEN=403]="FORBIDDEN",i[i.NOT_FOUND=404]="NOT_FOUND",i[i.INTERNAL_SERVER_ERROR=500]="INTERNAL_SERVER_ERROR",exports.FaceErrorCode=void 0,(_=exports.FaceErrorCode||(exports.FaceErrorCode={}))[_.INVALID_ARGUMENT=4e3]="INVALID_ARGUMENT",_[_.USER_REJECTED_REQUEST=4001]="USER_REJECTED_REQUEST",_[_.NOT_IMPLEMENTED=4002]="NOT_IMPLEMENTED",_[_.BAD_REQUEST=4003]="BAD_REQUEST",_[_.SEND_TRANSACTION_FAILED=4004]="SEND_TRANSACTION_FAILED",_[_.SIGN_FAILED=4005]="SIGN_FAILED",_[_.UNAUTHORIZED=4100]="UNAUTHORIZED",_[_.NO_USER_DATA=4101]="NO_USER_DATA",_[_.AUTHENTICATION=4102]="AUTHENTICATION",_[_.UNSUPPORTED_SOCIAL_PROVIDER=4103]="UNSUPPORTED_SOCIAL_PROVIDER",_[_.INVALID_ENVIRONMENT=4200]="INVALID_ENVIRONMENT",_[_.UNSUPPORTED_METHOD=4201]="UNSUPPORTED_METHOD",_[_.UNSUPPORTED_CHAIN=4202]="UNSUPPORTED_CHAIN",_[_.INVALID_WALLET=4300]="INVALID_WALLET",_[_.PROVIDERS_AND_WALLETS_CONFIG_ERROR=4301]="PROVIDERS_AND_WALLETS_CONFIG_ERROR",_[_.INVALID_SIGNATURE_MESSAGE=4906]="INVALID_SIGNATURE_MESSAGE",_[_.INVALID_BORA_API_AND_SECRET_KEY=4907]="INVALID_BORA_API_AND_SECRET_KEY",_[_.ALREADY_CONNECTED_OTHER_BAPP_USN=4909]="ALREADY_CONNECTED_OTHER_BAPP_USN",_[_.BORA_SERVICE_REGION_IS_WRONG=4910]="BORA_SERVICE_REGION_IS_WRONG",_[_.INTERNAL=5e3]="INTERNAL";class S extends Error{static isFaceError(e){return e.isFaceError}isValidErrorCode(e){return!R(r=e)&&"number"==typeof r&&Object.values(exports.RpcErrorCode).includes(r)||function(e){return!R(e)&&"number"==typeof e&&Object.values(exports.FaceErrorCode).includes(e)}(e);var r}constructor(e){super(),this.isFaceError=!0,this.code=this.isValidErrorCode(e.code)?e.code:exports.FaceErrorCode.INTERNAL,this.message=`Face Error: [${this.code}] ${e.message}`,e.origin&&(e.origin.isFaceError&&e.origin.origin?this.origin=e.origin.origin:this.origin=e.origin),e.data&&(this.data=e.data),Object.setPrototypeOf(this,S.prototype),Error.captureStackTrace(this,this.constructor)}}function x(e){return l({message:`invalid ${e}`,code:exports.FaceErrorCode.INVALID_ARGUMENT})}function l(e){return new S(e)}function u(e,r,t){if(!e)throw r(...null!=t?t:[])}exports.TxType=void 0,(p=exports.TxType||(exports.TxType={})).COIN="COIN",p.ERC20="ERC20",p.ERC721="ERC721",p.ERC1155="ERC1155",p.FT="FT",p.CONVERT="CONVERT";var O;exports.UserStatus=void 0,(O=exports.UserStatus||(exports.UserStatus={})).isWalletCreated="isWalletCreated",O.isNewUser="isNewUser",O.isRegisteredPinCode="isRegisteredPinCode",O.isAdmin="isAdmin",exports.CryptoBuffer=T,exports.FaceAuthSessionKey="Face-Auth-Session",exports.FaceError=S,exports.FaceOAuthResultKey="Face-OAuth-Result",exports.FaceVersionLocalKey="Face-Version",exports.LoginProvider={Google:"google.com",Apple:"apple.com",Twitter:"twitter.com",Discord:"discord.com",Facebook:"facebook.com",Kakao:"kakao.com"},exports.NetworkChainIdMap=t,exports.WalletPath="m/44'/60'/1'/0/0",exports.alreadyConnectedToOtherBappusn=function(e){return l({message:"already connected to other bappusn",code:exports.FaceErrorCode.ALREADY_CONNECTED_OTHER_BAPP_USN,origin:e})},exports.assert=u,exports.assertArgument=function(e,r,t,o=!0){(o||e)&&u(!!e&&r,x,[t])},exports.boraServiceRegionIsWrong=function(e){return new S({message:"bora service region is wrong",code:exports.FaceErrorCode.BORA_SERVICE_REGION_IS_WRONG,origin:e})},exports.getEthlikeBlockchains=function(){return s},exports.getPlatFormCoinDecimalByBlockchain=e=>{switch(e){case exports.Blockchain.ETHEREUM:case exports.Blockchain.POLYGON:case exports.Blockchain.KLAYTN:case exports.Blockchain.BNB_SMART_CHAIN:case exports.Blockchain.BORA:case exports.Blockchain.MEVERSE:case exports.Blockchain.PSM:case exports.Blockchain.HOME_VERSE:return 18;case exports.Blockchain.SOLANA:return 9;case exports.Blockchain.NEAR:return 24;case exports.Blockchain.APTOS:return 8;default:throw new Error("unsupported blockchain")}},exports.invalidApiKeyError=function(e){return l({message:"invalid api key error",code:exports.FaceErrorCode.UNAUTHORIZED,origin:e})},exports.invalidArgumentError=x,exports.invalidBoraPortalIdAndSecretKey=function(e){return l({message:"Not found bapp. please contact FaceWallet Team to register BoraPortal Client Id/SecretKey.",code:exports.FaceErrorCode.INVALID_BORA_API_AND_SECRET_KEY,origin:e})},exports.invalidEnvironmentError=function(e){return l({message:"invalid environment",code:exports.FaceErrorCode.INVALID_ENVIRONMENT,data:{env:e}})},exports.invalidHostNameError=function(e){return l({message:"invalid host name error",code:exports.FaceErrorCode.UNAUTHORIZED,origin:e})},exports.invalidSignatureError=function(e){return l({message:"Invalid Signature message.",code:exports.FaceErrorCode.INVALID_SIGNATURE_MESSAGE,origin:e})},exports.invalidWallet=function(){return l({message:"invalid wallet error",code:exports.FaceErrorCode.INVALID_WALLET})},exports.isEthlikeBlockchain=function(e){return-1!==s.indexOf(e)},exports.isSupportedNetwork=e=>{switch(e){case exports.Network.ETHEREUM:case exports.Network.GOERLI:case exports.Network.POLYGON:case exports.Network.MUMBAI:case exports.Network.BNB_SMART_CHAIN:case exports.Network.BNB_SMART_CHAIN_TESTNET:case exports.Network.KLAYTN:case exports.Network.BAOBAB:case exports.Network.SOLANA:case exports.Network.SOLANA_DEVNET:case exports.Network.NEAR:case exports.Network.NEAR_TESTNET:case exports.Network.BORA:case exports.Network.BORA_TESTNET:case exports.Network.APTOS:case exports.Network.APTOS_TESTNET:case exports.Network.MEVERSE:case exports.Network.MEVERSE_TESTNET:case exports.Network.PSM_TESTNET:case exports.Network.HOME_VERSE:case exports.Network.HOME_VERSE_TESTNET:return!0;default:return!1}},exports.kitProvidersAndWalletsConfigError=function(){return l({message:"Both wallets and providers cannot be empty.",code:exports.FaceErrorCode.PROVIDERS_AND_WALLETS_CONFIG_ERROR})},exports.makeError=l,exports.networkToBlockchain=function(e){switch(e){case exports.Network.ETHEREUM:case exports.Network.ROPSTEN:case exports.Network.GOERLI:return exports.Blockchain.ETHEREUM;case exports.Network.POLYGON:case exports.Network.MUMBAI:return exports.Blockchain.POLYGON;case exports.Network.BNB_SMART_CHAIN:case exports.Network.BNB_SMART_CHAIN_TESTNET:return exports.Blockchain.BNB_SMART_CHAIN;case exports.Network.KLAYTN:case exports.Network.BAOBAB:return exports.Blockchain.KLAYTN;case exports.Network.SOLANA:case exports.Network.SOLANA_DEVNET:return exports.Blockchain.SOLANA;case exports.Network.BORA:case exports.Network.BORA_TESTNET:return exports.Blockchain.BORA;case exports.Network.NEAR:case exports.Network.NEAR_TESTNET:return exports.Blockchain.NEAR;case exports.Network.APTOS:case exports.Network.APTOS_TESTNET:return exports.Blockchain.APTOS;case exports.Network.MEVERSE:case exports.Network.MEVERSE_TESTNET:return exports.Blockchain.MEVERSE;case exports.Network.PSM:case exports.Network.PSM_TESTNET:return exports.Blockchain.PSM;case exports.Network.HOME_VERSE:case exports.Network.HOME_VERSE_TESTNET:return exports.Blockchain.HOME_VERSE}throw new Error(`Unsupported network: ${e}`)},exports.noUserDataError=function(){return l({message:"no user data",code:exports.FaceErrorCode.NO_USER_DATA})},exports.notImplementedError=function(e){return l({message:e,code:exports.FaceErrorCode.NOT_IMPLEMENTED})},exports.oauthError=function(e,r){return l({message:`OAuth 2.0 Error: ${e}`,code:exports.FaceErrorCode.AUTHENTICATION,origin:r})},exports.parseFaceSolanaNearTransactionPayload=function(e){return null==e||"object"!=typeof e||null==e.serializedHex||"string"!=typeof e.serializedHex?null:e},exports.sendTransactionError=function(e){return l({message:e.message,code:exports.FaceErrorCode.SEND_TRANSACTION_FAILED,data:e.data})},exports.signError=function(e){return l({message:e,code:exports.FaceErrorCode.SIGN_FAILED})},exports.unknownError=function(e){return l({message:"unknown error",code:exports.FaceErrorCode.INTERNAL,origin:e})},exports.unsupportedChainError=function(e){return l({message:"unsupported chain error",code:exports.FaceErrorCode.UNSUPPORTED_CHAIN,origin:e})},exports.unsupportedProviderError=function(e){return l({message:`${e} login is not supported.`,code:exports.FaceErrorCode.UNSUPPORTED_SOCIAL_PROVIDER})},exports.unsupportedTokenProviderError=function(e){return l({message:`${e} is not support get id token`,code:exports.FaceErrorCode.UNSUPPORTED_SOCIAL_PROVIDER})},exports.userRejectedRequest=function(e){return l({code:exports.FaceErrorCode.USER_REJECTED_REQUEST,message:"user rejected request",data:{path:e}})};
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("ethers");var r;exports.Network=void 0,(r=exports.Network||(exports.Network={})).ETHEREUM="ethereum",r.ROPSTEN="ropsten",r.GOERLI="goerli",r.POLYGON="polygon",r.MUMBAI="mumbai",r.BNB_SMART_CHAIN="bnb_smart_chain",r.BNB_SMART_CHAIN_TESTNET="bnb_smart_chain_testnet",r.KLAYTN="klaytn",r.BAOBAB="baobab",r.SOLANA="solana",r.SOLANA_DEVNET="solana_devnet",r.NEAR="near",r.NEAR_TESTNET="near_testnet",r.BORA="bora",r.BORA_TESTNET="bora_testnet",r.ETH_MAINNET="ethereum",r.ETH_TESTNET="ropsten",r.MATIC_MAINNET="polygon",r.MATIC_TESTNET="mumbai",r.BINANCE_COIN_MAINNET="bnb_smart_chain",r.BINANCE_COIN_TESTNET="bnb_smart_chain_testnet",r.KLAYTN_MAINNET="klaytn",r.KLAYTN_TESTNET="baobab",r.APTOS="aptoslab",r.APTOS_TESTNET="aptoslab_testnet",r.MEVERSE="meverse",r.MEVERSE_TESTNET="meverse_testnet",r.PSM="psm",r.PSM_TESTNET="psm_testnet",r.HOME_VERSE="home_verse",r.HOME_VERSE_TESTNET="home_verse_testnet";const t={[exports.Network.ETHEREUM]:1,[exports.Network.ROPSTEN]:3,[exports.Network.GOERLI]:5,[exports.Network.POLYGON]:137,[exports.Network.MUMBAI]:80001,[exports.Network.BNB_SMART_CHAIN]:56,[exports.Network.BNB_SMART_CHAIN_TESTNET]:97,[exports.Network.KLAYTN]:8217,[exports.Network.BAOBAB]:1001,[exports.Network.SOLANA]:0,[exports.Network.SOLANA_DEVNET]:0,[exports.Network.NEAR]:0,[exports.Network.NEAR_TESTNET]:0,[exports.Network.BORA]:77001,[exports.Network.BORA_TESTNET]:99001,[exports.Network.APTOS]:1,[exports.Network.APTOS_TESTNET]:2,[exports.Network.MEVERSE]:7518,[exports.Network.MEVERSE_TESTNET]:4759,[exports.Network.PSM_TESTNET]:500,[exports.Network.PSM]:91002,[exports.Network.HOME_VERSE]:19011,[exports.Network.HOME_VERSE_TESTNET]:40875,1:exports.Network.ETHEREUM,3:exports.Network.ROPSTEN,5:exports.Network.GOERLI,137:exports.Network.POLYGON,80001:exports.Network.MUMBAI,56:exports.Network.BNB_SMART_CHAIN,97:exports.Network.BNB_SMART_CHAIN_TESTNET,8217:exports.Network.KLAYTN,1001:exports.Network.BAOBAB,77001:exports.Network.BORA,99001:exports.Network.BORA_TESTNET,7518:exports.Network.MEVERSE,4759:exports.Network.MEVERSE_TESTNET,500:exports.Network.PSM_TESTNET,91002:exports.Network.PSM,19011:exports.Network.HOME_VERSE,40875:exports.Network.HOME_VERSE_TESTNET};var o;exports.Blockchain=void 0,(o=exports.Blockchain||(exports.Blockchain={})).ETHEREUM="ETHEREUM",o.POLYGON="POLYGON",o.BNB_SMART_CHAIN="BNB_SMART_CHAIN",o.KLAYTN="KLAYTN",o.SOLANA="SOLANA",o.NEAR="NEAR",o.BORA="BORA",o.APTOS="APTOS",o.MEVERSE="MEVERSE",o.PSM="PSM",o.HOME_VERSE="HOME_VERSE";const s=[exports.Blockchain.ETHEREUM,exports.Blockchain.POLYGON,exports.Blockchain.BNB_SMART_CHAIN,exports.Blockchain.KLAYTN,exports.Blockchain.BORA,exports.Blockchain.MEVERSE,exports.Blockchain.PSM,exports.Blockchain.HOME_VERSE];var n,a,E,c,N,i,_,T;exports.BoraPortalConnectStatusEnum=void 0,(n=exports.BoraPortalConnectStatusEnum||(exports.BoraPortalConnectStatusEnum={})).Connected="CONNECTED",n.Unconnected="UNCONNECTED";class p{constructor(e,r){p.ensureHexString(e),p.checkLength(e,r),this.hex=e,this.length=r}static empty(){return new p("",0)}static fromUint8Array(e){return new p(A(e),e.length)}static fromHex(e,r){return new p(e,r)}static ensureHexString(e){try{if(""===e)return;if(null==e)throw new Error(`hex is null ${e}`);if(!e.startsWith("0x"))throw new Error(`hex does not start with 0x ${e}`);if(null==e.match("0x[0-9a-fA-F]+"))throw new Error(`invalid hex data ${e}`)}catch(e){throw e}}static checkLength(e,r){if(0===e.length)return;if(4*(e.length-2)/8>r)throw new Error(`length is less than hex data ${e}, ${r}`)}toString(){return this.hex}toHex(){return this.hex}toBigNumber(){return e.BigNumber.from(this.hex)}toJSON(){return{hex:this.hex,length:this.length}}static fromJSON(e){const{hex:r,length:t}=JSON.parse(e);return new p(r,t)}static fromBigNumber(e,r){return p.fromHex(e.toHexString(),r)}toUInt8Array(){const e=this.hex.substring(2),r=[];for(let t=0;t<e.length;t+=2)r.push(parseInt(e.substring(t,t+2),16));return new Uint8Array(r)}static concat(e,r){try{const t=e.toUInt8Array(),o=r.toUInt8Array(),s=new Uint8Array(t.length+o.length);s.set(t),s.set(o,t.length);const n=A(s);return new p(n,t.length+o.length)}catch(e){return console.debug("concat error",e),p.empty()}}split(e){const r=this.toUInt8Array();return[p.fromUint8Array(r.slice(0,e)),p.fromUint8Array(r.slice(e))]}clone(){return new p(this.hex,this.length)}unsafeSetLength(e){this.length=e}}function A(e){return"0x"+[...e].map((e=>e.toString(16).padStart(2,"0"))).join("")}function R(e){return function(e){return null===e}(e)||function(e){return void 0===e}(e)}exports.Env=void 0,(a=exports.Env||(exports.Env={})).Local="Local",a.Dev="Dev",a.StageTest="StageTest",a.StageMainnet="StageMainnet",a.ProdTest="ProdTest",a.ProdMainnet="ProdMainnet",exports.JsonRpcMethod=void 0,(E=exports.JsonRpcMethod||(exports.JsonRpcMethod={})).face_logInSignUp="face_logInSignUp",E.face_loggedIn="face_loggedIn",E.face_logOut="face_logOut",E.face_open2fa="face_open2fa",E.face_currentUser="face_currentUser",E.face_accounts="face_accounts",E.face_openIframe="face_openIframe",E.face_closeIframe="face_closeIframe",E.face_ready="face_ready",E.face_openHome="face_openHome",E.face_openKit="face_openKit",E.face_connectExternalWallet="face_connectExternalWallet",E.face_openWalletConnect="face_openWalletConnect",E.face_confirmWalletConnectDapp="face_confirmWalletConnectDapp",E.face_switchNetwork="face_switchNetwork",E.face_directSocialLogin="face_directSocialLogin",E.face_getIdToken="face_getIdToken",E.face_loginWithIdToken="face_loginWithIdToken",E.face_loginWithAccessToken="face_loginWithAccessToken",E.face_showToast="face_showToast",E.bora_connect="bora_connect",E.bora_isConnected="bora_isConnected",E.eth_sendTransaction="eth_sendTransaction",E.eth_getBalance="eth_getBalance",E.eth_call="eth_call",E.eth_estimateGas="eth_estimateGas",E.eth_sign="eth_sign",E.eth_signTypedData_v3="eth_signTypedData_v3",E.eth_signTypedData_v4="eth_signTypedData_v4",E.eth_accounts="eth_accounts",E.personal_sign="personal_sign",E.personal_listAccounts="personal_listAccounts",E.wallet_switchEthereumChain="wallet_switchEthereumChain",E.solana_sendTransaction="solana_sendTransaction",E.near_broadcast_tx_async="near_broadcast_tx_async",E.near_get_balance="near_get_balance",E.aptos_signMultiAgentTransaction="aptos_signMultiAgentTransaction",E.aptos_signMessage="aptos_signMessage",E.aptos_signTransaction="aptos_signTransaction",E.aptos_signAndSubmitTransaction="aptos_signAndSubmitTransaction",exports.JsonRpcSource=void 0,(c=exports.JsonRpcSource||(exports.JsonRpcSource={})).FACE_SDK="FACE_SDK",c.FACE_IFRAME="FACE_IFRAME",c.FACE_WALLET_CONNECT="FACE_WALLET_CONNECT",c.FACE_NATIVE_SDK="FACE_NATIVE_SDK",exports.RpcErrorCode=void 0,(N=exports.RpcErrorCode||(exports.RpcErrorCode={}))[N.PARSE_ERROR=-32700]="PARSE_ERROR",N[N.INVALID_REQUEST=-32600]="INVALID_REQUEST",N[N.METHOD_NOT_FOUND=-32601]="METHOD_NOT_FOUND",N[N.INVALID_PARAMS=-32602]="INVALID_PARAMS",N[N.INTERNAL_ERROR=-32603]="INTERNAL_ERROR",exports.HttpStatus=void 0,(i=exports.HttpStatus||(exports.HttpStatus={}))[i.SUCCESS=200]="SUCCESS",i[i.CREATED=201]="CREATED",i[i.BAD_REQUEST=400]="BAD_REQUEST",i[i.UNAUTHORIZED=401]="UNAUTHORIZED",i[i.FORBIDDEN=403]="FORBIDDEN",i[i.NOT_FOUND=404]="NOT_FOUND",i[i.INTERNAL_SERVER_ERROR=500]="INTERNAL_SERVER_ERROR",exports.FaceErrorCode=void 0,(_=exports.FaceErrorCode||(exports.FaceErrorCode={}))[_.INVALID_ARGUMENT=4e3]="INVALID_ARGUMENT",_[_.USER_REJECTED_REQUEST=4001]="USER_REJECTED_REQUEST",_[_.NOT_IMPLEMENTED=4002]="NOT_IMPLEMENTED",_[_.BAD_REQUEST=4003]="BAD_REQUEST",_[_.SEND_TRANSACTION_FAILED=4004]="SEND_TRANSACTION_FAILED",_[_.SIGN_FAILED=4005]="SIGN_FAILED",_[_.UNAUTHORIZED=4100]="UNAUTHORIZED",_[_.NO_USER_DATA=4101]="NO_USER_DATA",_[_.AUTHENTICATION=4102]="AUTHENTICATION",_[_.UNSUPPORTED_SOCIAL_PROVIDER=4103]="UNSUPPORTED_SOCIAL_PROVIDER",_[_.INVALID_ENVIRONMENT=4200]="INVALID_ENVIRONMENT",_[_.UNSUPPORTED_METHOD=4201]="UNSUPPORTED_METHOD",_[_.UNSUPPORTED_CHAIN=4202]="UNSUPPORTED_CHAIN",_[_.INVALID_WALLET=4300]="INVALID_WALLET",_[_.PROVIDERS_AND_WALLETS_CONFIG_ERROR=4301]="PROVIDERS_AND_WALLETS_CONFIG_ERROR",_[_.INVALID_SIGNATURE_MESSAGE=4906]="INVALID_SIGNATURE_MESSAGE",_[_.INVALID_BORA_API_AND_SECRET_KEY=4907]="INVALID_BORA_API_AND_SECRET_KEY",_[_.ALREADY_CONNECTED_OTHER_BAPP_USN=4909]="ALREADY_CONNECTED_OTHER_BAPP_USN",_[_.BORA_SERVICE_REGION_IS_WRONG=4910]="BORA_SERVICE_REGION_IS_WRONG",_[_.INTERNAL=5e3]="INTERNAL";class S extends Error{static isFaceError(e){return e.isFaceError}isValidErrorCode(e){return!R(r=e)&&"number"==typeof r&&Object.values(exports.RpcErrorCode).includes(r)||function(e){return!R(e)&&"number"==typeof e&&Object.values(exports.FaceErrorCode).includes(e)}(e);var r}constructor(e){super(),this.isFaceError=!0,this.code=this.isValidErrorCode(e.code)?e.code:exports.FaceErrorCode.INTERNAL,this.message=`Face Error: [${this.code}] ${e.message}`,e.origin&&(e.origin.isFaceError&&e.origin.origin?this.origin=e.origin.origin:this.origin=e.origin),e.data&&(this.data=e.data),Object.setPrototypeOf(this,S.prototype),Error.captureStackTrace(this,this.constructor)}}function x(e){return l({message:`invalid ${e}`,code:exports.FaceErrorCode.INVALID_ARGUMENT})}function l(e){return new S(e)}function u(e,r,t){if(!e)throw r(...null!=t?t:[])}exports.TxType=void 0,(T=exports.TxType||(exports.TxType={})).COIN="COIN",T.ERC20="ERC20",T.ERC721="ERC721",T.ERC1155="ERC1155",T.FT="FT",T.CONVERT="CONVERT";var O;exports.UserStatus=void 0,(O=exports.UserStatus||(exports.UserStatus={})).isWalletCreated="isWalletCreated",O.isNewUser="isNewUser",O.isRegisteredPinCode="isRegisteredPinCode",O.isAdmin="isAdmin",exports.CryptoBuffer=p,exports.FaceAuthSessionKey="Face-Auth-Session",exports.FaceError=S,exports.FaceOAuthResultKey="Face-OAuth-Result",exports.FaceVersionLocalKey="Face-Version",exports.LoginProvider={Google:"google.com",Apple:"apple.com",Twitter:"twitter.com",Discord:"discord.com",Facebook:"facebook.com",Kakao:"kakao.com"},exports.NetworkChainIdMap=t,exports.WalletPath="m/44'/60'/1'/0/0",exports.alreadyConnectedToOtherBappusn=function(e){return l({message:"already connected to other bappusn",code:exports.FaceErrorCode.ALREADY_CONNECTED_OTHER_BAPP_USN,origin:e})},exports.assert=u,exports.assertArgument=function(e,r,t,o=!0){(o||e)&&u(!!e&&r,x,[t])},exports.boraServiceRegionIsWrong=function(e){return new S({message:"bora service region is wrong",code:exports.FaceErrorCode.BORA_SERVICE_REGION_IS_WRONG,origin:e})},exports.getEthlikeBlockchains=function(){return s},exports.getPlatFormCoinDecimalByBlockchain=e=>{switch(e){case exports.Blockchain.ETHEREUM:case exports.Blockchain.POLYGON:case exports.Blockchain.KLAYTN:case exports.Blockchain.BNB_SMART_CHAIN:case exports.Blockchain.BORA:case exports.Blockchain.MEVERSE:case exports.Blockchain.PSM:case exports.Blockchain.HOME_VERSE:return 18;case exports.Blockchain.SOLANA:return 9;case exports.Blockchain.NEAR:return 24;case exports.Blockchain.APTOS:return 8;default:throw new Error("unsupported blockchain")}},exports.invalidApiKeyError=function(e){return l({message:"invalid api key error",code:exports.FaceErrorCode.UNAUTHORIZED,origin:e})},exports.invalidArgumentError=x,exports.invalidBoraPortalIdAndSecretKey=function(e){return l({message:"Not found bapp. please contact FaceWallet Team to register BoraPortal Client Id/SecretKey.",code:exports.FaceErrorCode.INVALID_BORA_API_AND_SECRET_KEY,origin:e})},exports.invalidEnvironmentError=function(e){return l({message:"invalid environment",code:exports.FaceErrorCode.INVALID_ENVIRONMENT,data:{env:e}})},exports.invalidHostNameError=function(e){return l({message:"invalid host name error",code:exports.FaceErrorCode.UNAUTHORIZED,origin:e})},exports.invalidSignatureError=function(e){return l({message:"Invalid Signature message.",code:exports.FaceErrorCode.INVALID_SIGNATURE_MESSAGE,origin:e})},exports.invalidWallet=function(){return l({message:"invalid wallet error",code:exports.FaceErrorCode.INVALID_WALLET})},exports.isEthlikeBlockchain=function(e){return-1!==s.indexOf(e)},exports.isSupportedNetwork=e=>{switch(e){case exports.Network.ETHEREUM:case exports.Network.GOERLI:case exports.Network.POLYGON:case exports.Network.MUMBAI:case exports.Network.BNB_SMART_CHAIN:case exports.Network.BNB_SMART_CHAIN_TESTNET:case exports.Network.KLAYTN:case exports.Network.BAOBAB:case exports.Network.SOLANA:case exports.Network.SOLANA_DEVNET:case exports.Network.NEAR:case exports.Network.NEAR_TESTNET:case exports.Network.BORA:case exports.Network.BORA_TESTNET:case exports.Network.APTOS:case exports.Network.APTOS_TESTNET:case exports.Network.MEVERSE:case exports.Network.MEVERSE_TESTNET:case exports.Network.PSM_TESTNET:case exports.Network.HOME_VERSE:case exports.Network.HOME_VERSE_TESTNET:return!0;default:return!1}},exports.kitProvidersAndWalletsConfigError=function(){return l({message:"Both wallets and providers cannot be empty.",code:exports.FaceErrorCode.PROVIDERS_AND_WALLETS_CONFIG_ERROR})},exports.makeError=l,exports.networkToBlockchain=function(e){switch(e){case exports.Network.ETHEREUM:case exports.Network.ROPSTEN:case exports.Network.GOERLI:return exports.Blockchain.ETHEREUM;case exports.Network.POLYGON:case exports.Network.MUMBAI:return exports.Blockchain.POLYGON;case exports.Network.BNB_SMART_CHAIN:case exports.Network.BNB_SMART_CHAIN_TESTNET:return exports.Blockchain.BNB_SMART_CHAIN;case exports.Network.KLAYTN:case exports.Network.BAOBAB:return exports.Blockchain.KLAYTN;case exports.Network.SOLANA:case exports.Network.SOLANA_DEVNET:return exports.Blockchain.SOLANA;case exports.Network.BORA:case exports.Network.BORA_TESTNET:return exports.Blockchain.BORA;case exports.Network.NEAR:case exports.Network.NEAR_TESTNET:return exports.Blockchain.NEAR;case exports.Network.APTOS:case exports.Network.APTOS_TESTNET:return exports.Blockchain.APTOS;case exports.Network.MEVERSE:case exports.Network.MEVERSE_TESTNET:return exports.Blockchain.MEVERSE;case exports.Network.PSM:case exports.Network.PSM_TESTNET:return exports.Blockchain.PSM;case exports.Network.HOME_VERSE:case exports.Network.HOME_VERSE_TESTNET:return exports.Blockchain.HOME_VERSE}throw new Error(`Unsupported network: ${e}`)},exports.noUserDataError=function(){return l({message:"no user data",code:exports.FaceErrorCode.NO_USER_DATA})},exports.notImplementedError=function(e){return l({message:e,code:exports.FaceErrorCode.NOT_IMPLEMENTED})},exports.oauthError=function(e,r){return l({message:`OAuth 2.0 Error: ${e}`,code:exports.FaceErrorCode.AUTHENTICATION,origin:r})},exports.parseFaceSolanaNearTransactionPayload=function(e){return null==e||"object"!=typeof e||null==e.serializedHex||"string"!=typeof e.serializedHex?null:e},exports.sendTransactionError=function(e){return l({message:e.message,code:exports.FaceErrorCode.SEND_TRANSACTION_FAILED,data:e.data})},exports.signError=function(e){return l({message:e,code:exports.FaceErrorCode.SIGN_FAILED})},exports.unknownError=function(e){return l({message:"unknown error",code:exports.FaceErrorCode.INTERNAL,origin:e})},exports.unsupportedChainError=function(e){return l({message:"unsupported chain error",code:exports.FaceErrorCode.UNSUPPORTED_CHAIN,origin:e})},exports.unsupportedProviderError=function(e){return l({message:`${e} login is not supported.`,code:exports.FaceErrorCode.UNSUPPORTED_SOCIAL_PROVIDER})},exports.unsupportedTokenProviderError=function(e){return l({message:`${e} is not support get id token`,code:exports.FaceErrorCode.UNSUPPORTED_SOCIAL_PROVIDER})},exports.userRejectedRequest=function(e){return l({code:exports.FaceErrorCode.USER_REJECTED_REQUEST,message:"user rejected request",data:{path:e}})};
//# sourceMappingURL=index.js.map

@@ -23,2 +23,3 @@ import { Network } from './blockchain';

face_loginWithAccessToken = "face_loginWithAccessToken",
face_showToast = "face_showToast",
bora_connect = "bora_connect",

@@ -61,2 +62,3 @@ bora_isConnected = "bora_isConnected",

metaData?: DappMetaData;
result?: any;
}

@@ -63,0 +65,0 @@ export interface JsonRpcRequestCallback {

@@ -1,2 +0,2 @@

!function(e,r){"object"==typeof exports&&"undefined"!=typeof module?r(exports,require("ethers")):"function"==typeof define&&define.amd?define(["exports","ethers"],r):r((e="undefined"!=typeof globalThis?globalThis:e||self).FaceTypes={},e.ethers)}(this,(function(e,r){"use strict";var t;e.Network=void 0,(t=e.Network||(e.Network={})).ETHEREUM="ethereum",t.ROPSTEN="ropsten",t.GOERLI="goerli",t.POLYGON="polygon",t.MUMBAI="mumbai",t.BNB_SMART_CHAIN="bnb_smart_chain",t.BNB_SMART_CHAIN_TESTNET="bnb_smart_chain_testnet",t.KLAYTN="klaytn",t.BAOBAB="baobab",t.SOLANA="solana",t.SOLANA_DEVNET="solana_devnet",t.NEAR="near",t.NEAR_TESTNET="near_testnet",t.BORA="bora",t.BORA_TESTNET="bora_testnet",t.ETH_MAINNET="ethereum",t.ETH_TESTNET="ropsten",t.MATIC_MAINNET="polygon",t.MATIC_TESTNET="mumbai",t.BINANCE_COIN_MAINNET="bnb_smart_chain",t.BINANCE_COIN_TESTNET="bnb_smart_chain_testnet",t.KLAYTN_MAINNET="klaytn",t.KLAYTN_TESTNET="baobab",t.APTOS="aptoslab",t.APTOS_TESTNET="aptoslab_testnet",t.MEVERSE="meverse",t.MEVERSE_TESTNET="meverse_testnet",t.PSM="psm",t.PSM_TESTNET="psm_testnet",t.HOME_VERSE="home_verse",t.HOME_VERSE_TESTNET="home_verse_testnet";const o={[e.Network.ETHEREUM]:1,[e.Network.ROPSTEN]:3,[e.Network.GOERLI]:5,[e.Network.POLYGON]:137,[e.Network.MUMBAI]:80001,[e.Network.BNB_SMART_CHAIN]:56,[e.Network.BNB_SMART_CHAIN_TESTNET]:97,[e.Network.KLAYTN]:8217,[e.Network.BAOBAB]:1001,[e.Network.SOLANA]:0,[e.Network.SOLANA_DEVNET]:0,[e.Network.NEAR]:0,[e.Network.NEAR_TESTNET]:0,[e.Network.BORA]:77001,[e.Network.BORA_TESTNET]:99001,[e.Network.APTOS]:1,[e.Network.APTOS_TESTNET]:2,[e.Network.MEVERSE]:7518,[e.Network.MEVERSE_TESTNET]:4759,[e.Network.PSM_TESTNET]:100,[e.Network.PSM]:91002,[e.Network.HOME_VERSE]:19011,[e.Network.HOME_VERSE_TESTNET]:40875,1:e.Network.ETHEREUM,3:e.Network.ROPSTEN,5:e.Network.GOERLI,137:e.Network.POLYGON,80001:e.Network.MUMBAI,56:e.Network.BNB_SMART_CHAIN,97:e.Network.BNB_SMART_CHAIN_TESTNET,8217:e.Network.KLAYTN,1001:e.Network.BAOBAB,77001:e.Network.BORA,99001:e.Network.BORA_TESTNET,7518:e.Network.MEVERSE,4759:e.Network.MEVERSE_TESTNET,100:e.Network.PSM_TESTNET,91002:e.Network.PSM,19011:e.Network.HOME_VERSE,40875:e.Network.HOME_VERSE_TESTNET};var n;e.Blockchain=void 0,(n=e.Blockchain||(e.Blockchain={})).ETHEREUM="ETHEREUM",n.POLYGON="POLYGON",n.BNB_SMART_CHAIN="BNB_SMART_CHAIN",n.KLAYTN="KLAYTN",n.SOLANA="SOLANA",n.NEAR="NEAR",n.BORA="BORA",n.APTOS="APTOS",n.MEVERSE="MEVERSE",n.PSM="PSM",n.HOME_VERSE="HOME_VERSE";const a=[e.Blockchain.ETHEREUM,e.Blockchain.POLYGON,e.Blockchain.BNB_SMART_CHAIN,e.Blockchain.KLAYTN,e.Blockchain.BORA,e.Blockchain.MEVERSE,e.Blockchain.PSM,e.Blockchain.HOME_VERSE];var E,c,s,N,i,_,T,A;e.BoraPortalConnectStatusEnum=void 0,(E=e.BoraPortalConnectStatusEnum||(e.BoraPortalConnectStatusEnum={})).Connected="CONNECTED",E.Unconnected="UNCONNECTED";class R{constructor(e,r){R.ensureHexString(e),R.checkLength(e,r),this.hex=e,this.length=r}static empty(){return new R("",0)}static fromUint8Array(e){return new R(S(e),e.length)}static fromHex(e,r){return new R(e,r)}static ensureHexString(e){try{if(""===e)return;if(null==e)throw new Error(`hex is null ${e}`);if(!e.startsWith("0x"))throw new Error(`hex does not start with 0x ${e}`);if(null==e.match("0x[0-9a-fA-F]+"))throw new Error(`invalid hex data ${e}`)}catch(e){throw e}}static checkLength(e,r){if(0===e.length)return;if(4*(e.length-2)/8>r)throw new Error(`length is less than hex data ${e}, ${r}`)}toString(){return this.hex}toHex(){return this.hex}toBigNumber(){return r.BigNumber.from(this.hex)}toJSON(){return{hex:this.hex,length:this.length}}static fromJSON(e){const{hex:r,length:t}=JSON.parse(e);return new R(r,t)}static fromBigNumber(e,r){return R.fromHex(e.toHexString(),r)}toUInt8Array(){const e=this.hex.substring(2),r=[];for(let t=0;t<e.length;t+=2)r.push(parseInt(e.substring(t,t+2),16));return new Uint8Array(r)}static concat(e,r){try{const t=e.toUInt8Array(),o=r.toUInt8Array(),n=new Uint8Array(t.length+o.length);n.set(t),n.set(o,t.length);const a=S(n);return new R(a,t.length+o.length)}catch(e){return console.debug("concat error",e),R.empty()}}split(e){const r=this.toUInt8Array();return[R.fromUint8Array(r.slice(0,e)),R.fromUint8Array(r.slice(e))]}clone(){return new R(this.hex,this.length)}unsafeSetLength(e){this.length=e}}function S(e){return"0x"+[...e].map((e=>e.toString(16).padStart(2,"0"))).join("")}function l(e){return function(e){return null===e}(e)||function(e){return void 0===e}(e)}e.Env=void 0,(c=e.Env||(e.Env={})).Local="Local",c.Dev="Dev",c.StageTest="StageTest",c.StageMainnet="StageMainnet",c.ProdTest="ProdTest",c.ProdMainnet="ProdMainnet",e.JsonRpcMethod=void 0,(s=e.JsonRpcMethod||(e.JsonRpcMethod={})).face_logInSignUp="face_logInSignUp",s.face_loggedIn="face_loggedIn",s.face_logOut="face_logOut",s.face_open2fa="face_open2fa",s.face_currentUser="face_currentUser",s.face_accounts="face_accounts",s.face_openIframe="face_openIframe",s.face_closeIframe="face_closeIframe",s.face_ready="face_ready",s.face_openHome="face_openHome",s.face_openKit="face_openKit",s.face_connectExternalWallet="face_connectExternalWallet",s.face_openWalletConnect="face_openWalletConnect",s.face_confirmWalletConnectDapp="face_confirmWalletConnectDapp",s.face_switchNetwork="face_switchNetwork",s.face_directSocialLogin="face_directSocialLogin",s.face_getIdToken="face_getIdToken",s.face_loginWithIdToken="face_loginWithIdToken",s.face_loginWithAccessToken="face_loginWithAccessToken",s.bora_connect="bora_connect",s.bora_isConnected="bora_isConnected",s.eth_sendTransaction="eth_sendTransaction",s.eth_getBalance="eth_getBalance",s.eth_call="eth_call",s.eth_estimateGas="eth_estimateGas",s.eth_sign="eth_sign",s.eth_signTypedData_v3="eth_signTypedData_v3",s.eth_signTypedData_v4="eth_signTypedData_v4",s.eth_accounts="eth_accounts",s.personal_sign="personal_sign",s.personal_listAccounts="personal_listAccounts",s.wallet_switchEthereumChain="wallet_switchEthereumChain",s.solana_sendTransaction="solana_sendTransaction",s.near_broadcast_tx_async="near_broadcast_tx_async",s.near_get_balance="near_get_balance",s.aptos_signMultiAgentTransaction="aptos_signMultiAgentTransaction",s.aptos_signMessage="aptos_signMessage",s.aptos_signTransaction="aptos_signTransaction",s.aptos_signAndSubmitTransaction="aptos_signAndSubmitTransaction",e.JsonRpcSource=void 0,(N=e.JsonRpcSource||(e.JsonRpcSource={})).FACE_SDK="FACE_SDK",N.FACE_IFRAME="FACE_IFRAME",N.FACE_WALLET_CONNECT="FACE_WALLET_CONNECT",N.FACE_NATIVE_SDK="FACE_NATIVE_SDK",e.RpcErrorCode=void 0,(i=e.RpcErrorCode||(e.RpcErrorCode={}))[i.PARSE_ERROR=-32700]="PARSE_ERROR",i[i.INVALID_REQUEST=-32600]="INVALID_REQUEST",i[i.METHOD_NOT_FOUND=-32601]="METHOD_NOT_FOUND",i[i.INVALID_PARAMS=-32602]="INVALID_PARAMS",i[i.INTERNAL_ERROR=-32603]="INTERNAL_ERROR",e.HttpStatus=void 0,(_=e.HttpStatus||(e.HttpStatus={}))[_.SUCCESS=200]="SUCCESS",_[_.CREATED=201]="CREATED",_[_.BAD_REQUEST=400]="BAD_REQUEST",_[_.UNAUTHORIZED=401]="UNAUTHORIZED",_[_.FORBIDDEN=403]="FORBIDDEN",_[_.NOT_FOUND=404]="NOT_FOUND",_[_.INTERNAL_SERVER_ERROR=500]="INTERNAL_SERVER_ERROR",e.FaceErrorCode=void 0,(T=e.FaceErrorCode||(e.FaceErrorCode={}))[T.INVALID_ARGUMENT=4e3]="INVALID_ARGUMENT",T[T.USER_REJECTED_REQUEST=4001]="USER_REJECTED_REQUEST",T[T.NOT_IMPLEMENTED=4002]="NOT_IMPLEMENTED",T[T.BAD_REQUEST=4003]="BAD_REQUEST",T[T.SEND_TRANSACTION_FAILED=4004]="SEND_TRANSACTION_FAILED",T[T.SIGN_FAILED=4005]="SIGN_FAILED",T[T.UNAUTHORIZED=4100]="UNAUTHORIZED",T[T.NO_USER_DATA=4101]="NO_USER_DATA",T[T.AUTHENTICATION=4102]="AUTHENTICATION",T[T.UNSUPPORTED_SOCIAL_PROVIDER=4103]="UNSUPPORTED_SOCIAL_PROVIDER",T[T.INVALID_ENVIRONMENT=4200]="INVALID_ENVIRONMENT",T[T.UNSUPPORTED_METHOD=4201]="UNSUPPORTED_METHOD",T[T.UNSUPPORTED_CHAIN=4202]="UNSUPPORTED_CHAIN",T[T.INVALID_WALLET=4300]="INVALID_WALLET",T[T.PROVIDERS_AND_WALLETS_CONFIG_ERROR=4301]="PROVIDERS_AND_WALLETS_CONFIG_ERROR",T[T.INVALID_SIGNATURE_MESSAGE=4906]="INVALID_SIGNATURE_MESSAGE",T[T.INVALID_BORA_API_AND_SECRET_KEY=4907]="INVALID_BORA_API_AND_SECRET_KEY",T[T.ALREADY_CONNECTED_OTHER_BAPP_USN=4909]="ALREADY_CONNECTED_OTHER_BAPP_USN",T[T.BORA_SERVICE_REGION_IS_WRONG=4910]="BORA_SERVICE_REGION_IS_WRONG",T[T.INTERNAL=5e3]="INTERNAL";class u extends Error{static isFaceError(e){return e.isFaceError}isValidErrorCode(r){return!l(t=r)&&"number"==typeof t&&Object.values(e.RpcErrorCode).includes(t)||function(r){return!l(r)&&"number"==typeof r&&Object.values(e.FaceErrorCode).includes(r)}(r);var t}constructor(r){super(),this.isFaceError=!0,this.code=this.isValidErrorCode(r.code)?r.code:e.FaceErrorCode.INTERNAL,this.message=`Face Error: [${this.code}] ${r.message}`,r.origin&&(r.origin.isFaceError&&r.origin.origin?this.origin=r.origin.origin:this.origin=r.origin),r.data&&(this.data=r.data),Object.setPrototypeOf(this,u.prototype),Error.captureStackTrace(this,this.constructor)}}function O(r){return d({message:`invalid ${r}`,code:e.FaceErrorCode.INVALID_ARGUMENT})}function d(e){return new u(e)}function h(e,r,t){if(!e)throw r(...null!=t?t:[])}e.TxType=void 0,(A=e.TxType||(e.TxType={})).COIN="COIN",A.ERC20="ERC20",A.ERC721="ERC721",A.ERC1155="ERC1155",A.FT="FT",A.CONVERT="CONVERT";var I;e.UserStatus=void 0,(I=e.UserStatus||(e.UserStatus={})).isWalletCreated="isWalletCreated",I.isNewUser="isNewUser",I.isRegisteredPinCode="isRegisteredPinCode",I.isAdmin="isAdmin",e.CryptoBuffer=R,e.FaceAuthSessionKey="Face-Auth-Session",e.FaceError=u,e.FaceOAuthResultKey="Face-OAuth-Result",e.FaceVersionLocalKey="Face-Version",e.LoginProvider={Google:"google.com",Apple:"apple.com",Twitter:"twitter.com",Discord:"discord.com",Facebook:"facebook.com",Kakao:"kakao.com"},e.NetworkChainIdMap=o,e.WalletPath="m/44'/60'/1'/0/0",e.alreadyConnectedToOtherBappusn=function(r){return d({message:"already connected to other bappusn",code:e.FaceErrorCode.ALREADY_CONNECTED_OTHER_BAPP_USN,origin:r})},e.assert=h,e.assertArgument=function(e,r,t,o=!0){(o||e)&&h(!!e&&r,O,[t])},e.boraServiceRegionIsWrong=function(r){return new u({message:"bora service region is wrong",code:e.FaceErrorCode.BORA_SERVICE_REGION_IS_WRONG,origin:r})},e.getEthlikeBlockchains=function(){return a},e.getPlatFormCoinDecimalByBlockchain=r=>{switch(r){case e.Blockchain.ETHEREUM:case e.Blockchain.POLYGON:case e.Blockchain.KLAYTN:case e.Blockchain.BNB_SMART_CHAIN:case e.Blockchain.BORA:case e.Blockchain.MEVERSE:case e.Blockchain.PSM:case e.Blockchain.HOME_VERSE:return 18;case e.Blockchain.SOLANA:return 9;case e.Blockchain.NEAR:return 24;case e.Blockchain.APTOS:return 8;default:throw new Error("unsupported blockchain")}},e.invalidApiKeyError=function(r){return d({message:"invalid api key error",code:e.FaceErrorCode.UNAUTHORIZED,origin:r})},e.invalidArgumentError=O,e.invalidBoraPortalIdAndSecretKey=function(r){return d({message:"Not found bapp. please contact FaceWallet Team to register BoraPortal Client Id/SecretKey.",code:e.FaceErrorCode.INVALID_BORA_API_AND_SECRET_KEY,origin:r})},e.invalidEnvironmentError=function(r){return d({message:"invalid environment",code:e.FaceErrorCode.INVALID_ENVIRONMENT,data:{env:r}})},e.invalidHostNameError=function(r){return d({message:"invalid host name error",code:e.FaceErrorCode.UNAUTHORIZED,origin:r})},e.invalidSignatureError=function(r){return d({message:"Invalid Signature message.",code:e.FaceErrorCode.INVALID_SIGNATURE_MESSAGE,origin:r})},e.invalidWallet=function(){return d({message:"invalid wallet error",code:e.FaceErrorCode.INVALID_WALLET})},e.isEthlikeBlockchain=function(e){return-1!==a.indexOf(e)},e.isSupportedNetwork=r=>{switch(r){case e.Network.ETHEREUM:case e.Network.GOERLI:case e.Network.POLYGON:case e.Network.MUMBAI:case e.Network.BNB_SMART_CHAIN:case e.Network.BNB_SMART_CHAIN_TESTNET:case e.Network.KLAYTN:case e.Network.BAOBAB:case e.Network.SOLANA:case e.Network.SOLANA_DEVNET:case e.Network.NEAR:case e.Network.NEAR_TESTNET:case e.Network.BORA:case e.Network.BORA_TESTNET:case e.Network.APTOS:case e.Network.APTOS_TESTNET:case e.Network.MEVERSE:case e.Network.MEVERSE_TESTNET:case e.Network.PSM_TESTNET:case e.Network.HOME_VERSE:case e.Network.HOME_VERSE_TESTNET:return!0;default:return!1}},e.kitProvidersAndWalletsConfigError=function(){return d({message:"Both wallets and providers cannot be empty.",code:e.FaceErrorCode.PROVIDERS_AND_WALLETS_CONFIG_ERROR})},e.makeError=d,e.networkToBlockchain=function(r){switch(r){case e.Network.ETHEREUM:case e.Network.ROPSTEN:case e.Network.GOERLI:return e.Blockchain.ETHEREUM;case e.Network.POLYGON:case e.Network.MUMBAI:return e.Blockchain.POLYGON;case e.Network.BNB_SMART_CHAIN:case e.Network.BNB_SMART_CHAIN_TESTNET:return e.Blockchain.BNB_SMART_CHAIN;case e.Network.KLAYTN:case e.Network.BAOBAB:return e.Blockchain.KLAYTN;case e.Network.SOLANA:case e.Network.SOLANA_DEVNET:return e.Blockchain.SOLANA;case e.Network.BORA:case e.Network.BORA_TESTNET:return e.Blockchain.BORA;case e.Network.NEAR:case e.Network.NEAR_TESTNET:return e.Blockchain.NEAR;case e.Network.APTOS:case e.Network.APTOS_TESTNET:return e.Blockchain.APTOS;case e.Network.MEVERSE:case e.Network.MEVERSE_TESTNET:return e.Blockchain.MEVERSE;case e.Network.PSM:case e.Network.PSM_TESTNET:return e.Blockchain.PSM;case e.Network.HOME_VERSE:case e.Network.HOME_VERSE_TESTNET:return e.Blockchain.HOME_VERSE}throw new Error(`Unsupported network: ${r}`)},e.noUserDataError=function(){return d({message:"no user data",code:e.FaceErrorCode.NO_USER_DATA})},e.notImplementedError=function(r){return d({message:r,code:e.FaceErrorCode.NOT_IMPLEMENTED})},e.oauthError=function(r,t){return d({message:`OAuth 2.0 Error: ${r}`,code:e.FaceErrorCode.AUTHENTICATION,origin:t})},e.parseFaceSolanaNearTransactionPayload=function(e){return null==e||"object"!=typeof e||null==e.serializedHex||"string"!=typeof e.serializedHex?null:e},e.sendTransactionError=function(r){return d({message:r.message,code:e.FaceErrorCode.SEND_TRANSACTION_FAILED,data:r.data})},e.signError=function(r){return d({message:r,code:e.FaceErrorCode.SIGN_FAILED})},e.unknownError=function(r){return d({message:"unknown error",code:e.FaceErrorCode.INTERNAL,origin:r})},e.unsupportedChainError=function(r){return d({message:"unsupported chain error",code:e.FaceErrorCode.UNSUPPORTED_CHAIN,origin:r})},e.unsupportedProviderError=function(r){return d({message:`${r} login is not supported.`,code:e.FaceErrorCode.UNSUPPORTED_SOCIAL_PROVIDER})},e.unsupportedTokenProviderError=function(r){return d({message:`${r} is not support get id token`,code:e.FaceErrorCode.UNSUPPORTED_SOCIAL_PROVIDER})},e.userRejectedRequest=function(r){return d({code:e.FaceErrorCode.USER_REJECTED_REQUEST,message:"user rejected request",data:{path:r}})},Object.defineProperty(e,"__esModule",{value:!0})}));
!function(e,r){"object"==typeof exports&&"undefined"!=typeof module?r(exports,require("ethers")):"function"==typeof define&&define.amd?define(["exports","ethers"],r):r((e="undefined"!=typeof globalThis?globalThis:e||self).FaceTypes={},e.ethers)}(this,(function(e,r){"use strict";var t;e.Network=void 0,(t=e.Network||(e.Network={})).ETHEREUM="ethereum",t.ROPSTEN="ropsten",t.GOERLI="goerli",t.POLYGON="polygon",t.MUMBAI="mumbai",t.BNB_SMART_CHAIN="bnb_smart_chain",t.BNB_SMART_CHAIN_TESTNET="bnb_smart_chain_testnet",t.KLAYTN="klaytn",t.BAOBAB="baobab",t.SOLANA="solana",t.SOLANA_DEVNET="solana_devnet",t.NEAR="near",t.NEAR_TESTNET="near_testnet",t.BORA="bora",t.BORA_TESTNET="bora_testnet",t.ETH_MAINNET="ethereum",t.ETH_TESTNET="ropsten",t.MATIC_MAINNET="polygon",t.MATIC_TESTNET="mumbai",t.BINANCE_COIN_MAINNET="bnb_smart_chain",t.BINANCE_COIN_TESTNET="bnb_smart_chain_testnet",t.KLAYTN_MAINNET="klaytn",t.KLAYTN_TESTNET="baobab",t.APTOS="aptoslab",t.APTOS_TESTNET="aptoslab_testnet",t.MEVERSE="meverse",t.MEVERSE_TESTNET="meverse_testnet",t.PSM="psm",t.PSM_TESTNET="psm_testnet",t.HOME_VERSE="home_verse",t.HOME_VERSE_TESTNET="home_verse_testnet";const o={[e.Network.ETHEREUM]:1,[e.Network.ROPSTEN]:3,[e.Network.GOERLI]:5,[e.Network.POLYGON]:137,[e.Network.MUMBAI]:80001,[e.Network.BNB_SMART_CHAIN]:56,[e.Network.BNB_SMART_CHAIN_TESTNET]:97,[e.Network.KLAYTN]:8217,[e.Network.BAOBAB]:1001,[e.Network.SOLANA]:0,[e.Network.SOLANA_DEVNET]:0,[e.Network.NEAR]:0,[e.Network.NEAR_TESTNET]:0,[e.Network.BORA]:77001,[e.Network.BORA_TESTNET]:99001,[e.Network.APTOS]:1,[e.Network.APTOS_TESTNET]:2,[e.Network.MEVERSE]:7518,[e.Network.MEVERSE_TESTNET]:4759,[e.Network.PSM_TESTNET]:500,[e.Network.PSM]:91002,[e.Network.HOME_VERSE]:19011,[e.Network.HOME_VERSE_TESTNET]:40875,1:e.Network.ETHEREUM,3:e.Network.ROPSTEN,5:e.Network.GOERLI,137:e.Network.POLYGON,80001:e.Network.MUMBAI,56:e.Network.BNB_SMART_CHAIN,97:e.Network.BNB_SMART_CHAIN_TESTNET,8217:e.Network.KLAYTN,1001:e.Network.BAOBAB,77001:e.Network.BORA,99001:e.Network.BORA_TESTNET,7518:e.Network.MEVERSE,4759:e.Network.MEVERSE_TESTNET,500:e.Network.PSM_TESTNET,91002:e.Network.PSM,19011:e.Network.HOME_VERSE,40875:e.Network.HOME_VERSE_TESTNET};var n;e.Blockchain=void 0,(n=e.Blockchain||(e.Blockchain={})).ETHEREUM="ETHEREUM",n.POLYGON="POLYGON",n.BNB_SMART_CHAIN="BNB_SMART_CHAIN",n.KLAYTN="KLAYTN",n.SOLANA="SOLANA",n.NEAR="NEAR",n.BORA="BORA",n.APTOS="APTOS",n.MEVERSE="MEVERSE",n.PSM="PSM",n.HOME_VERSE="HOME_VERSE";const a=[e.Blockchain.ETHEREUM,e.Blockchain.POLYGON,e.Blockchain.BNB_SMART_CHAIN,e.Blockchain.KLAYTN,e.Blockchain.BORA,e.Blockchain.MEVERSE,e.Blockchain.PSM,e.Blockchain.HOME_VERSE];var E,c,s,N,i,_,T,A;e.BoraPortalConnectStatusEnum=void 0,(E=e.BoraPortalConnectStatusEnum||(e.BoraPortalConnectStatusEnum={})).Connected="CONNECTED",E.Unconnected="UNCONNECTED";class R{constructor(e,r){R.ensureHexString(e),R.checkLength(e,r),this.hex=e,this.length=r}static empty(){return new R("",0)}static fromUint8Array(e){return new R(S(e),e.length)}static fromHex(e,r){return new R(e,r)}static ensureHexString(e){try{if(""===e)return;if(null==e)throw new Error(`hex is null ${e}`);if(!e.startsWith("0x"))throw new Error(`hex does not start with 0x ${e}`);if(null==e.match("0x[0-9a-fA-F]+"))throw new Error(`invalid hex data ${e}`)}catch(e){throw e}}static checkLength(e,r){if(0===e.length)return;if(4*(e.length-2)/8>r)throw new Error(`length is less than hex data ${e}, ${r}`)}toString(){return this.hex}toHex(){return this.hex}toBigNumber(){return r.BigNumber.from(this.hex)}toJSON(){return{hex:this.hex,length:this.length}}static fromJSON(e){const{hex:r,length:t}=JSON.parse(e);return new R(r,t)}static fromBigNumber(e,r){return R.fromHex(e.toHexString(),r)}toUInt8Array(){const e=this.hex.substring(2),r=[];for(let t=0;t<e.length;t+=2)r.push(parseInt(e.substring(t,t+2),16));return new Uint8Array(r)}static concat(e,r){try{const t=e.toUInt8Array(),o=r.toUInt8Array(),n=new Uint8Array(t.length+o.length);n.set(t),n.set(o,t.length);const a=S(n);return new R(a,t.length+o.length)}catch(e){return console.debug("concat error",e),R.empty()}}split(e){const r=this.toUInt8Array();return[R.fromUint8Array(r.slice(0,e)),R.fromUint8Array(r.slice(e))]}clone(){return new R(this.hex,this.length)}unsafeSetLength(e){this.length=e}}function S(e){return"0x"+[...e].map((e=>e.toString(16).padStart(2,"0"))).join("")}function l(e){return function(e){return null===e}(e)||function(e){return void 0===e}(e)}e.Env=void 0,(c=e.Env||(e.Env={})).Local="Local",c.Dev="Dev",c.StageTest="StageTest",c.StageMainnet="StageMainnet",c.ProdTest="ProdTest",c.ProdMainnet="ProdMainnet",e.JsonRpcMethod=void 0,(s=e.JsonRpcMethod||(e.JsonRpcMethod={})).face_logInSignUp="face_logInSignUp",s.face_loggedIn="face_loggedIn",s.face_logOut="face_logOut",s.face_open2fa="face_open2fa",s.face_currentUser="face_currentUser",s.face_accounts="face_accounts",s.face_openIframe="face_openIframe",s.face_closeIframe="face_closeIframe",s.face_ready="face_ready",s.face_openHome="face_openHome",s.face_openKit="face_openKit",s.face_connectExternalWallet="face_connectExternalWallet",s.face_openWalletConnect="face_openWalletConnect",s.face_confirmWalletConnectDapp="face_confirmWalletConnectDapp",s.face_switchNetwork="face_switchNetwork",s.face_directSocialLogin="face_directSocialLogin",s.face_getIdToken="face_getIdToken",s.face_loginWithIdToken="face_loginWithIdToken",s.face_loginWithAccessToken="face_loginWithAccessToken",s.face_showToast="face_showToast",s.bora_connect="bora_connect",s.bora_isConnected="bora_isConnected",s.eth_sendTransaction="eth_sendTransaction",s.eth_getBalance="eth_getBalance",s.eth_call="eth_call",s.eth_estimateGas="eth_estimateGas",s.eth_sign="eth_sign",s.eth_signTypedData_v3="eth_signTypedData_v3",s.eth_signTypedData_v4="eth_signTypedData_v4",s.eth_accounts="eth_accounts",s.personal_sign="personal_sign",s.personal_listAccounts="personal_listAccounts",s.wallet_switchEthereumChain="wallet_switchEthereumChain",s.solana_sendTransaction="solana_sendTransaction",s.near_broadcast_tx_async="near_broadcast_tx_async",s.near_get_balance="near_get_balance",s.aptos_signMultiAgentTransaction="aptos_signMultiAgentTransaction",s.aptos_signMessage="aptos_signMessage",s.aptos_signTransaction="aptos_signTransaction",s.aptos_signAndSubmitTransaction="aptos_signAndSubmitTransaction",e.JsonRpcSource=void 0,(N=e.JsonRpcSource||(e.JsonRpcSource={})).FACE_SDK="FACE_SDK",N.FACE_IFRAME="FACE_IFRAME",N.FACE_WALLET_CONNECT="FACE_WALLET_CONNECT",N.FACE_NATIVE_SDK="FACE_NATIVE_SDK",e.RpcErrorCode=void 0,(i=e.RpcErrorCode||(e.RpcErrorCode={}))[i.PARSE_ERROR=-32700]="PARSE_ERROR",i[i.INVALID_REQUEST=-32600]="INVALID_REQUEST",i[i.METHOD_NOT_FOUND=-32601]="METHOD_NOT_FOUND",i[i.INVALID_PARAMS=-32602]="INVALID_PARAMS",i[i.INTERNAL_ERROR=-32603]="INTERNAL_ERROR",e.HttpStatus=void 0,(_=e.HttpStatus||(e.HttpStatus={}))[_.SUCCESS=200]="SUCCESS",_[_.CREATED=201]="CREATED",_[_.BAD_REQUEST=400]="BAD_REQUEST",_[_.UNAUTHORIZED=401]="UNAUTHORIZED",_[_.FORBIDDEN=403]="FORBIDDEN",_[_.NOT_FOUND=404]="NOT_FOUND",_[_.INTERNAL_SERVER_ERROR=500]="INTERNAL_SERVER_ERROR",e.FaceErrorCode=void 0,(T=e.FaceErrorCode||(e.FaceErrorCode={}))[T.INVALID_ARGUMENT=4e3]="INVALID_ARGUMENT",T[T.USER_REJECTED_REQUEST=4001]="USER_REJECTED_REQUEST",T[T.NOT_IMPLEMENTED=4002]="NOT_IMPLEMENTED",T[T.BAD_REQUEST=4003]="BAD_REQUEST",T[T.SEND_TRANSACTION_FAILED=4004]="SEND_TRANSACTION_FAILED",T[T.SIGN_FAILED=4005]="SIGN_FAILED",T[T.UNAUTHORIZED=4100]="UNAUTHORIZED",T[T.NO_USER_DATA=4101]="NO_USER_DATA",T[T.AUTHENTICATION=4102]="AUTHENTICATION",T[T.UNSUPPORTED_SOCIAL_PROVIDER=4103]="UNSUPPORTED_SOCIAL_PROVIDER",T[T.INVALID_ENVIRONMENT=4200]="INVALID_ENVIRONMENT",T[T.UNSUPPORTED_METHOD=4201]="UNSUPPORTED_METHOD",T[T.UNSUPPORTED_CHAIN=4202]="UNSUPPORTED_CHAIN",T[T.INVALID_WALLET=4300]="INVALID_WALLET",T[T.PROVIDERS_AND_WALLETS_CONFIG_ERROR=4301]="PROVIDERS_AND_WALLETS_CONFIG_ERROR",T[T.INVALID_SIGNATURE_MESSAGE=4906]="INVALID_SIGNATURE_MESSAGE",T[T.INVALID_BORA_API_AND_SECRET_KEY=4907]="INVALID_BORA_API_AND_SECRET_KEY",T[T.ALREADY_CONNECTED_OTHER_BAPP_USN=4909]="ALREADY_CONNECTED_OTHER_BAPP_USN",T[T.BORA_SERVICE_REGION_IS_WRONG=4910]="BORA_SERVICE_REGION_IS_WRONG",T[T.INTERNAL=5e3]="INTERNAL";class u extends Error{static isFaceError(e){return e.isFaceError}isValidErrorCode(r){return!l(t=r)&&"number"==typeof t&&Object.values(e.RpcErrorCode).includes(t)||function(r){return!l(r)&&"number"==typeof r&&Object.values(e.FaceErrorCode).includes(r)}(r);var t}constructor(r){super(),this.isFaceError=!0,this.code=this.isValidErrorCode(r.code)?r.code:e.FaceErrorCode.INTERNAL,this.message=`Face Error: [${this.code}] ${r.message}`,r.origin&&(r.origin.isFaceError&&r.origin.origin?this.origin=r.origin.origin:this.origin=r.origin),r.data&&(this.data=r.data),Object.setPrototypeOf(this,u.prototype),Error.captureStackTrace(this,this.constructor)}}function O(r){return d({message:`invalid ${r}`,code:e.FaceErrorCode.INVALID_ARGUMENT})}function d(e){return new u(e)}function h(e,r,t){if(!e)throw r(...null!=t?t:[])}e.TxType=void 0,(A=e.TxType||(e.TxType={})).COIN="COIN",A.ERC20="ERC20",A.ERC721="ERC721",A.ERC1155="ERC1155",A.FT="FT",A.CONVERT="CONVERT";var I;e.UserStatus=void 0,(I=e.UserStatus||(e.UserStatus={})).isWalletCreated="isWalletCreated",I.isNewUser="isNewUser",I.isRegisteredPinCode="isRegisteredPinCode",I.isAdmin="isAdmin",e.CryptoBuffer=R,e.FaceAuthSessionKey="Face-Auth-Session",e.FaceError=u,e.FaceOAuthResultKey="Face-OAuth-Result",e.FaceVersionLocalKey="Face-Version",e.LoginProvider={Google:"google.com",Apple:"apple.com",Twitter:"twitter.com",Discord:"discord.com",Facebook:"facebook.com",Kakao:"kakao.com"},e.NetworkChainIdMap=o,e.WalletPath="m/44'/60'/1'/0/0",e.alreadyConnectedToOtherBappusn=function(r){return d({message:"already connected to other bappusn",code:e.FaceErrorCode.ALREADY_CONNECTED_OTHER_BAPP_USN,origin:r})},e.assert=h,e.assertArgument=function(e,r,t,o=!0){(o||e)&&h(!!e&&r,O,[t])},e.boraServiceRegionIsWrong=function(r){return new u({message:"bora service region is wrong",code:e.FaceErrorCode.BORA_SERVICE_REGION_IS_WRONG,origin:r})},e.getEthlikeBlockchains=function(){return a},e.getPlatFormCoinDecimalByBlockchain=r=>{switch(r){case e.Blockchain.ETHEREUM:case e.Blockchain.POLYGON:case e.Blockchain.KLAYTN:case e.Blockchain.BNB_SMART_CHAIN:case e.Blockchain.BORA:case e.Blockchain.MEVERSE:case e.Blockchain.PSM:case e.Blockchain.HOME_VERSE:return 18;case e.Blockchain.SOLANA:return 9;case e.Blockchain.NEAR:return 24;case e.Blockchain.APTOS:return 8;default:throw new Error("unsupported blockchain")}},e.invalidApiKeyError=function(r){return d({message:"invalid api key error",code:e.FaceErrorCode.UNAUTHORIZED,origin:r})},e.invalidArgumentError=O,e.invalidBoraPortalIdAndSecretKey=function(r){return d({message:"Not found bapp. please contact FaceWallet Team to register BoraPortal Client Id/SecretKey.",code:e.FaceErrorCode.INVALID_BORA_API_AND_SECRET_KEY,origin:r})},e.invalidEnvironmentError=function(r){return d({message:"invalid environment",code:e.FaceErrorCode.INVALID_ENVIRONMENT,data:{env:r}})},e.invalidHostNameError=function(r){return d({message:"invalid host name error",code:e.FaceErrorCode.UNAUTHORIZED,origin:r})},e.invalidSignatureError=function(r){return d({message:"Invalid Signature message.",code:e.FaceErrorCode.INVALID_SIGNATURE_MESSAGE,origin:r})},e.invalidWallet=function(){return d({message:"invalid wallet error",code:e.FaceErrorCode.INVALID_WALLET})},e.isEthlikeBlockchain=function(e){return-1!==a.indexOf(e)},e.isSupportedNetwork=r=>{switch(r){case e.Network.ETHEREUM:case e.Network.GOERLI:case e.Network.POLYGON:case e.Network.MUMBAI:case e.Network.BNB_SMART_CHAIN:case e.Network.BNB_SMART_CHAIN_TESTNET:case e.Network.KLAYTN:case e.Network.BAOBAB:case e.Network.SOLANA:case e.Network.SOLANA_DEVNET:case e.Network.NEAR:case e.Network.NEAR_TESTNET:case e.Network.BORA:case e.Network.BORA_TESTNET:case e.Network.APTOS:case e.Network.APTOS_TESTNET:case e.Network.MEVERSE:case e.Network.MEVERSE_TESTNET:case e.Network.PSM_TESTNET:case e.Network.HOME_VERSE:case e.Network.HOME_VERSE_TESTNET:return!0;default:return!1}},e.kitProvidersAndWalletsConfigError=function(){return d({message:"Both wallets and providers cannot be empty.",code:e.FaceErrorCode.PROVIDERS_AND_WALLETS_CONFIG_ERROR})},e.makeError=d,e.networkToBlockchain=function(r){switch(r){case e.Network.ETHEREUM:case e.Network.ROPSTEN:case e.Network.GOERLI:return e.Blockchain.ETHEREUM;case e.Network.POLYGON:case e.Network.MUMBAI:return e.Blockchain.POLYGON;case e.Network.BNB_SMART_CHAIN:case e.Network.BNB_SMART_CHAIN_TESTNET:return e.Blockchain.BNB_SMART_CHAIN;case e.Network.KLAYTN:case e.Network.BAOBAB:return e.Blockchain.KLAYTN;case e.Network.SOLANA:case e.Network.SOLANA_DEVNET:return e.Blockchain.SOLANA;case e.Network.BORA:case e.Network.BORA_TESTNET:return e.Blockchain.BORA;case e.Network.NEAR:case e.Network.NEAR_TESTNET:return e.Blockchain.NEAR;case e.Network.APTOS:case e.Network.APTOS_TESTNET:return e.Blockchain.APTOS;case e.Network.MEVERSE:case e.Network.MEVERSE_TESTNET:return e.Blockchain.MEVERSE;case e.Network.PSM:case e.Network.PSM_TESTNET:return e.Blockchain.PSM;case e.Network.HOME_VERSE:case e.Network.HOME_VERSE_TESTNET:return e.Blockchain.HOME_VERSE}throw new Error(`Unsupported network: ${r}`)},e.noUserDataError=function(){return d({message:"no user data",code:e.FaceErrorCode.NO_USER_DATA})},e.notImplementedError=function(r){return d({message:r,code:e.FaceErrorCode.NOT_IMPLEMENTED})},e.oauthError=function(r,t){return d({message:`OAuth 2.0 Error: ${r}`,code:e.FaceErrorCode.AUTHENTICATION,origin:t})},e.parseFaceSolanaNearTransactionPayload=function(e){return null==e||"object"!=typeof e||null==e.serializedHex||"string"!=typeof e.serializedHex?null:e},e.sendTransactionError=function(r){return d({message:r.message,code:e.FaceErrorCode.SEND_TRANSACTION_FAILED,data:r.data})},e.signError=function(r){return d({message:r,code:e.FaceErrorCode.SIGN_FAILED})},e.unknownError=function(r){return d({message:"unknown error",code:e.FaceErrorCode.INTERNAL,origin:r})},e.unsupportedChainError=function(r){return d({message:"unsupported chain error",code:e.FaceErrorCode.UNSUPPORTED_CHAIN,origin:r})},e.unsupportedProviderError=function(r){return d({message:`${r} login is not supported.`,code:e.FaceErrorCode.UNSUPPORTED_SOCIAL_PROVIDER})},e.unsupportedTokenProviderError=function(r){return d({message:`${r} is not support get id token`,code:e.FaceErrorCode.UNSUPPORTED_SOCIAL_PROVIDER})},e.userRejectedRequest=function(r){return d({code:e.FaceErrorCode.USER_REJECTED_REQUEST,message:"user rejected request",data:{path:r}})},Object.defineProperty(e,"__esModule",{value:!0})}));
//# sourceMappingURL=index.js.map

@@ -23,2 +23,3 @@ import { Network } from './blockchain';

face_loginWithAccessToken = "face_loginWithAccessToken",
face_showToast = "face_showToast",
bora_connect = "bora_connect",

@@ -61,2 +62,3 @@ bora_isConnected = "bora_isConnected",

metaData?: DappMetaData;
result?: any;
}

@@ -63,0 +65,0 @@ export interface JsonRpcRequestCallback {

{
"name": "@haechi-labs/face-types",
"version": "1.10.7",
"version": "1.10.8",
"description": "",

@@ -46,3 +46,3 @@ "author": "",

},
"gitHead": "96429247fdd689ce760198e7d14e4869efb49061",
"gitHead": "83419fb8305ac536d9f8b4435f6f80c9f22e996d",
"publishConfig": {

@@ -49,0 +49,0 @@ "access": "public"

@@ -93,3 +93,3 @@ export enum Network {

[Network.MEVERSE_TESTNET]: 4759,
[Network.PSM_TESTNET]: 100,
[Network.PSM_TESTNET]: 500,
[Network.PSM]: 91002,

@@ -112,3 +112,3 @@ [Network.HOME_VERSE]: 19011,

4759: Network.MEVERSE_TESTNET,
100: Network.PSM_TESTNET,
500: Network.PSM_TESTNET,
91002: Network.PSM,

@@ -115,0 +115,0 @@ 19011: Network.HOME_VERSE,

@@ -24,2 +24,3 @@ import { Network } from './blockchain';

face_loginWithAccessToken = 'face_loginWithAccessToken',
face_showToast = 'face_showToast',

@@ -71,2 +72,3 @@ bora_connect = 'bora_connect',

metaData?: DappMetaData;
result?: any;
}

@@ -73,0 +75,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc