From 8f28408e7e0d7d66241f8d1caa5e38e6742bc523 Mon Sep 17 00:00:00 2001 From: Willian Mitsuda Date: Sat, 3 Jul 2021 17:20:28 -0300 Subject: [PATCH] Fix ETH internal transfers checksum --- src/Transaction.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Transaction.tsx b/src/Transaction.tsx index cbf149d..2d95833 100644 --- a/src/Transaction.tsx +++ b/src/Transaction.tsx @@ -217,8 +217,8 @@ const Transaction: React.FC = () => { const _transfers: Transfer[] = []; for (const t of r) { _transfers.push({ - from: t.from, - to: t.to, + from: ethers.utils.getAddress(t.from), + to: ethers.utils.getAddress(t.to), value: t.value, }); }