+ {minerAddress !== undefined && minerAddress === address && (
+
+
+
+ )}
+ {address === selectedAddress ? (
+ <>
+ {ensName ? (
+
+ ) : (
+
+ )}
+ >
+ ) : (
+ <>
+ {ensName ? (
+
+ ) : (
+
+ )}
+ >
+ )}
+
+);
export default React.memo(AddressOrENSName);
diff --git a/src/search/TransactionItem.tsx b/src/search/TransactionItem.tsx
index 73fc211..7cfaf76 100644
--- a/src/search/TransactionItem.tsx
+++ b/src/search/TransactionItem.tsx
@@ -1,9 +1,6 @@
import React from "react";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
-import {
- faExclamationCircle,
- faCoins,
-} from "@fortawesome/free-solid-svg-icons";
+import { faExclamationCircle } from "@fortawesome/free-solid-svg-icons";
import MethodName from "../components/MethodName";
import BlockLink from "../components/BlockLink";
import TransactionLink from "../components/TransactionLink";
@@ -72,18 +69,12 @@ const TransactionItem: React.FC