import React from "react"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faAngleRight } from "@fortawesome/free-solid-svg-icons"; import AddressHighlighter from "./AddressHighlighter"; import DecoratedAddressLink from "./DecoratedAddressLink"; import { TransactionData, InternalOperation } from "../types"; type InternalCreateProps = { txData: TransactionData; internalOp: InternalOperation; }; const InternalCreate: React.FC = ({ txData, internalOp, }) => { return ( <>
CREATE Contract
(Creator:{" "} )
); }; export default React.memo(InternalCreate);