From bbfcfce5d1abe43ec2a00fbd183ad2382afd480f Mon Sep 17 00:00:00 2001 From: geovgy Date: Thu, 21 Sep 2023 12:54:31 -0400 Subject: [PATCH] Convert address inputs to lowercase to fix signature verification issue --- src/context/transportContext.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/context/transportContext.jsx b/src/context/transportContext.jsx index c2e43a6..0f7eb07 100644 --- a/src/context/transportContext.jsx +++ b/src/context/transportContext.jsx @@ -105,8 +105,8 @@ export function TransportProvider({ children }) { type, value: { amount: amount.toString(), - from_address: userAddress, - to_address: toAddress, + from_address: userAddress.toLowerCase(), + to_address: toAddress.toString().toLowerCase(), }, }, };