From f7522d9972a331ba450357cfc7df4f7051516168 Mon Sep 17 00:00:00 2001 From: Aditya Anand M C Date: Wed, 16 Apr 2025 20:01:25 +0530 Subject: [PATCH] chore: ensure all wallets work --- src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index c817a72..1267d10 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -48,7 +48,7 @@ export async function recoverSignerAddress( signature: Hex ): Promise { return await recoverMessageAddress({ - message: await deterministicKeccakHash(obj), + message: { raw: await deterministicKeccakHash(obj) }, signature, }); }