You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Use await to return a promise
(async () => {
let result;
try {
result = await window.lynxMobile.requestArbitrarySignature({
data: "the string you wish to sign",
whatFor: "The reason you want the signature. This will displayed to the user."
});
} catch (err) {
console.log(err);
}
console.log(result); // "SIG_K1_JvbGYMSe7auMt8TvLUkoi1A1ywdqoNMmZ4vSeMfaFFtLL58eRGBtzk8HqbmyyrGWTUvhmFAQFHoMeF4icHrtwJQAqynqcD"
})();
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: