diff --git a/src/pages/SignWithCosmos.tsx b/src/pages/SignWithCosmos.tsx index c5db0a2..478dad9 100644 --- a/src/pages/SignWithCosmos.tsx +++ b/src/pages/SignWithCosmos.tsx @@ -100,6 +100,8 @@ const SignWithCosmos = () => { try { setIsLoading(true); + enqueueSnackbar("View and sign the message from your Laconic Wallet", { variant: "info" }); + const params = { transactionMessage, signer: cosmosAddress }; const responseFromWallet = await signClient!.request<{ code: number; diff --git a/src/pages/SignWithNitroKey.tsx b/src/pages/SignWithNitroKey.tsx index 5e0e06e..73349c2 100644 --- a/src/pages/SignWithNitroKey.tsx +++ b/src/pages/SignWithNitroKey.tsx @@ -57,6 +57,9 @@ const SignWithNitroKey = () => { if (session && signClient) { try { setIsLoading(true); + + enqueueSnackbar("View and sign the message from your Laconic Wallet", { variant: "info" }); + const jsonMessage = canonicalStringify(message); const hexMsg = utf8ToHex(jsonMessage, true); const receivedEthSig: string = await signClient!.request({