Fix ETH internal transfers checksum
This commit is contained in:
parent
a852418cb6
commit
8f28408e7e
@ -217,8 +217,8 @@ const Transaction: React.FC = () => {
|
|||||||
const _transfers: Transfer[] = [];
|
const _transfers: Transfer[] = [];
|
||||||
for (const t of r) {
|
for (const t of r) {
|
||||||
_transfers.push({
|
_transfers.push({
|
||||||
from: t.from,
|
from: ethers.utils.getAddress(t.from),
|
||||||
to: t.to,
|
to: ethers.utils.getAddress(t.to),
|
||||||
value: t.value,
|
value: t.value,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user