Name of the FAVORLET app that will appear when the wallet is connected
Response
Name
Type
Description
requestId
string
ID to track the operation or transaction request
expiredAt
number
The amount of time (in seconds) that an operation or transaction request expires.
Example
import { Request } from"favorlet.js";constresponse=awaitRequest.connectWallet({ chainId:8217,// 해당 체인 id appName:"BlockChainApp"// FAVORLET 앱에 노출});console.log(response);/*{ requestId: "635b7750-5de2-48eb-9a6c-fba8763f7484", expiredAt: 1667890657,}*/
createDeepLink
Parameters
Type
Description
string
Request ID received upon making the request
Response
Type
Description
string
DeepLink to the specific request page within the FAVORLET app
Example
import { createDeepLink } from"favorlet.js";constdeepLink=createDeepLink(response.requestId); // Request를 통해 받은 requestId/*- PC: 생성된 deepLink를 qrcode 라이브러리를 이용하여 QR 생성 후 스마트폰으로 스캔- Mobile: window.location.href 등을 사용하여 생성된 deepLink로 직접 이동*/console.log(deepLink);// https://app.favorlet.link/?requestId=635b7750-5de2-48eb-9a6c-fba8763f7484
DeepLink to the specific request page within the FAVORLET app
Example
import { createDeepLink } from"favorlet.js";constdeepLink=createDeepLink(response.requestId); // Request를 통해 받은 requestId/*- PC: 생성된 deepLink를 qrcode 라이브러리를 이용하여 QR 생성 후 스마트폰으로 스캔- Mobile: window.location.href 등을 사용하여 생성된 deepLink로 직접 이동*/console.log(deepLink);// https://app.favorlet.link/?requestId=635b7750-5de2-48eb-9a6c-fba8763f7484