Add snackbar to direct user to the wallet

This commit is contained in:
IshaVenikar 2024-08-08 18:47:55 +05:30 committed by Adw8
parent a42684533b
commit c461e90768
2 changed files with 5 additions and 0 deletions

View File

@ -100,6 +100,8 @@ const SignWithCosmos = () => {
try { try {
setIsLoading(true); setIsLoading(true);
enqueueSnackbar("View and sign the message from your Laconic Wallet", { variant: "info" });
const params = { transactionMessage, signer: cosmosAddress }; const params = { transactionMessage, signer: cosmosAddress };
const responseFromWallet = await signClient!.request<{ const responseFromWallet = await signClient!.request<{
code: number; code: number;

View File

@ -57,6 +57,9 @@ const SignWithNitroKey = () => {
if (session && signClient) { if (session && signClient) {
try { try {
setIsLoading(true); setIsLoading(true);
enqueueSnackbar("View and sign the message from your Laconic Wallet", { variant: "info" });
const jsonMessage = canonicalStringify(message); const jsonMessage = canonicalStringify(message);
const hexMsg = utf8ToHex(jsonMessage, true); const hexMsg = utf8ToHex(jsonMessage, true);
const receivedEthSig: string = await signClient!.request({ const receivedEthSig: string = await signClient!.request({