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
try this snippet, it return false always when I use Coinbase Smart Wallet and true when I use metamask . Did I do something wrong?
const publicClient = createPublicClient({
chain: mainnet,
transport: http()
});
// provider = pointer to the wallet provider
const walletClient = createWalletClient({
transport: custom(provider)
});
// in this step Smart Wallet request user to sign the message
const signature = await walletClient.signMessage({
account,
message: 'hello world'
});
const valid = await publicClient.verifyMessage({
address: account.address,
message: 'hello world',
signature
});
console.log({ valid });```
Hello @oleggrib
We sincerely apologize for the delay and any inconvenience this may have caused. It appears that your query would be best handled by our support team.
I’ll need to refer you to the official support live chat, where you can use the ticket ID ERR128809 for rectification guidelines.
Please use the following link to access our dedicated support line: Coinbase Wallet Node Support Ticket Requests.
Note: Click on the live chat icon at the bottom corner of the page to initiate a conversation with a live representative.
try this snippet, it return false always when I use Coinbase Smart Wallet and true when I use metamask . Did I do something wrong?
The text was updated successfully, but these errors were encountered: