otterscan/src/transaction/Logs.tsx

64 lines
2.3 KiB
TypeScript
Raw Normal View History

2021-07-14 19:30:28 +00:00
import React from "react";
import ContentFrame from "../ContentFrame";
import DecoratedAddressLink from "../components/DecoratedAddressLink";
2021-07-14 19:30:28 +00:00
import { TransactionData } from "../types";
type LogsProps = {
txData: TransactionData;
};
const Logs: React.FC<LogsProps> = ({ txData }) => (
<ContentFrame tabs>
<div className="text-sm py-4">Transaction Receipt Event Logs</div>
{txData.confirmedData &&
txData.confirmedData.logs.map((l, i) => (
2021-07-14 19:30:28 +00:00
<div className="flex space-x-10 py-5" key={i}>
<div>
<span className="rounded-full w-12 h-12 flex items-center justify-center bg-green-50 text-green-500">
{l.logIndex}
</span>
</div>
<div className="w-full space-y-2">
<div className="grid grid-cols-12 gap-x-3 gap-y-5 text-sm">
<div className="font-bold text-right">Address</div>
2021-07-23 04:23:32 +00:00
<div className="col-span-11 mr-auto">
<DecoratedAddressLink
address={l.address}
miner={l.address === txData.confirmedData?.miner}
txFrom={l.address === txData.from}
txTo={l.address === txData.to}
/>
2021-07-14 19:30:28 +00:00
</div>
</div>
{l.topics.map((t, i) => (
<div
className="grid grid-cols-12 gap-x-3 gap-y-5 text-sm"
key={i}
>
<div className="text-right">{i === 0 && "Topics"}</div>
<div className="flex space-x-2 items-center col-span-11 font-mono">
<span className="rounded bg-gray-100 text-gray-500 px-2 py-1 text-xs">
{i}
</span>
<span>{t}</span>
</div>
</div>
))}
<div className="grid grid-cols-12 gap-x-3 gap-y-5 text-sm">
<div className="text-right pt-2">Data</div>
<div className="col-span-11">
<textarea
className="w-full h-20 bg-gray-50 font-mono focus:outline-none border rounded p-2"
value={l.data}
readOnly
2021-07-14 19:30:28 +00:00
/>
</div>
</div>
</div>
</div>
))}
</ContentFrame>
);
export default React.memo(Logs);