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