64 lines
2.0 KiB
TypeScript
64 lines
2.0 KiB
TypeScript
|
import React from "react";
|
||
|
import AddressHighlighter from "../components/AddressHighlighter";
|
||
|
import DecoratedAddressLink from "../components/DecoratedAddressLink";
|
||
|
import Copy from "../components/Copy";
|
||
|
import { ParamType } from "@ethersproject/abi";
|
||
|
import { TransactionData } from "../types";
|
||
|
|
||
|
type DecodedParamRowProps = {
|
||
|
i?: number | undefined;
|
||
|
r: any;
|
||
|
paramType: ParamType;
|
||
|
txData: TransactionData;
|
||
|
};
|
||
|
|
||
|
const DecodedParamRow: React.FC<DecodedParamRowProps> = ({
|
||
|
i,
|
||
|
r,
|
||
|
paramType,
|
||
|
txData,
|
||
|
}) => {
|
||
|
return (
|
||
|
<tr className="grid grid-cols-12 gap-x-2 py-2">
|
||
|
<td className="col-span-3 pl-1">
|
||
|
{paramType.name}{" "}
|
||
|
{i !== undefined && (
|
||
|
<span className="text-gray-400 text-xs">({i})</span>
|
||
|
)}
|
||
|
</td>
|
||
|
<td className="col-span-1">{paramType.type}</td>
|
||
|
<td className="col-span-8 pr-1 font-code break-all">
|
||
|
{paramType.type === "address" ? (
|
||
|
<div className="flex items-baseline space-x-2 -ml-1 mr-3">
|
||
|
<AddressHighlighter address={r.toString()}>
|
||
|
<DecoratedAddressLink
|
||
|
address={r.toString()}
|
||
|
miner={r.toString() === txData.confirmedData?.miner}
|
||
|
txFrom={r.toString() === txData.from}
|
||
|
txTo={r.toString() === txData.to}
|
||
|
/>
|
||
|
</AddressHighlighter>
|
||
|
<Copy value={r.toString()} />
|
||
|
</div>
|
||
|
) : paramType.type === "bool" ? (
|
||
|
<span className={`${r ? "text-green-700" : "text-red-700"}`}>
|
||
|
{r.toString()}
|
||
|
</span>
|
||
|
) : paramType.type === "bytes" ? (
|
||
|
<span>
|
||
|
{r.toString()}{" "}
|
||
|
<span className="font-sans text-xs text-gray-400">
|
||
|
{r.toString().length / 2 - 1}{" "}
|
||
|
{r.toString().length / 2 - 1 === 1 ? "byte" : "bytes"}
|
||
|
</span>
|
||
|
</span>
|
||
|
) : (
|
||
|
r.toString()
|
||
|
)}
|
||
|
</td>
|
||
|
</tr>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default React.memo(DecodedParamRow);
|