diff --git a/src/components/InternalCreate.tsx b/src/components/InternalCreate.tsx index fbb7f8f..7fa5850 100644 --- a/src/components/InternalCreate.tsx +++ b/src/components/InternalCreate.tsx @@ -1,6 +1,7 @@ import React from "react"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faAngleRight } from "@fortawesome/free-solid-svg-icons/faAngleRight"; +import { faCaretRight } from "@fortawesome/free-solid-svg-icons/faCaretRight"; import TransactionAddress from "./TransactionAddress"; import AddressHighlighter from "./AddressHighlighter"; import DecoratedAddressLink from "./DecoratedAddressLink"; @@ -15,16 +16,17 @@ const InternalCreate: React.FC = ({ internalOp }) => ( CREATE - Contract + + + + + +
- - (Creator:{" "} - ) - ); diff --git a/src/components/InternalSelfDestruct.tsx b/src/components/InternalSelfDestruct.tsx index 8cb828e..bc6029b 100644 --- a/src/components/InternalSelfDestruct.tsx +++ b/src/components/InternalSelfDestruct.tsx @@ -30,7 +30,6 @@ const InternalSelfDestruct: React.FC = ({ SELF DESTRUCT - Contract
diff --git a/src/components/InternalTransfer.tsx b/src/components/InternalTransfer.tsx index b52acb9..09c3111 100644 --- a/src/components/InternalTransfer.tsx +++ b/src/components/InternalTransfer.tsx @@ -2,6 +2,8 @@ import React, { useContext } from "react"; import { formatEther } from "@ethersproject/units"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faAngleRight } from "@fortawesome/free-solid-svg-icons/faAngleRight"; +import { faCaretRight } from "@fortawesome/free-solid-svg-icons/faCaretRight"; +import { faSackDollar } from "@fortawesome/free-solid-svg-icons/faSackDollar"; import AddressHighlighter from "./AddressHighlighter"; import DecoratedAddressLink from "./DecoratedAddressLink"; import { RuntimeContext } from "../useRuntime"; @@ -41,48 +43,58 @@ const InternalTransfer: React.FC = ({ ); return ( -
- - TRANSFER - - - {formatEther(internalOp.value)} {symbol} - -
- From - -
- +
+
+
+ + TRANSFER + +
+ +
+ +
+
- -
-
- To - -
- -
-
+
+
+ + + + +
+ +
+
+
+
+ + + + + {formatEther(internalOp.value)} {symbol} + +
);