diff --git a/src/components/Body/TransactionRequests.tsx b/src/components/Body/TransactionRequests.tsx index cc0990d..a58225f 100644 --- a/src/components/Body/TransactionRequests.tsx +++ b/src/components/Body/TransactionRequests.tsx @@ -14,12 +14,14 @@ import { Tr, Th, Tbody, + Link, } from "@chakra-ui/react"; import { InfoIcon, ChevronDownIcon, ChevronUpIcon, DeleteIcon, + UnlockIcon, } from "@chakra-ui/icons"; import CopyToClipboard from "./CopyToClipboard"; import { TxnDataType } from "../../types"; @@ -41,14 +43,43 @@ const TD = ({ txt }: { txt: string }) => ( ); +const TData = ({ + calldata, + address, + networkId, +}: { + calldata: string; + address: string; + networkId: number; +}) => ( +