From 61eef31a9309c0a17e033cebbc46f1c1565c0ba0 Mon Sep 17 00:00:00 2001 From: Willian Mitsuda Date: Wed, 21 Jul 2021 01:46:10 -0300 Subject: [PATCH] Add contract creation display on block transactions list --- src/BlockTransactions.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/BlockTransactions.tsx b/src/BlockTransactions.tsx index 8ded619..5eed574 100644 --- a/src/BlockTransactions.tsx +++ b/src/BlockTransactions.tsx @@ -57,6 +57,7 @@ const BlockTransactions: React.FC = () => { hash: t.hash, from: t.from, to: t.to, + createdContractAddress: _receipts[i].contractAddress, value: t.value, fee: provider.formatter .bigNumber(_receipts[i].gasUsed)