otterscan/src/components/InternalSelfDestruct.tsx

73 lines
2.6 KiB
TypeScript
Raw Normal View History

import React, { useContext } from "react";
import { formatEther } from "@ethersproject/units";
2021-07-17 18:58:33 +00:00
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faAngleRight } from "@fortawesome/free-solid-svg-icons/faAngleRight";
2021-07-17 18:58:33 +00:00
import AddressHighlighter from "./AddressHighlighter";
import DecoratedAddressLink from "./DecoratedAddressLink";
import { RuntimeContext } from "../useRuntime";
2021-07-21 19:06:51 +00:00
import { TransactionData, InternalOperation } from "../types";
2021-07-17 18:58:33 +00:00
const CHI_ADDRESS = "0x0000000000004946c0e9F43F4Dee607b0eF1fA1c";
const GST2_ADDRESS = "0x0000000000b3F879cb30FE243b4Dfee438691c04";
2021-07-17 18:58:33 +00:00
type InternalSelfDestructProps = {
txData: TransactionData;
2021-07-21 19:06:51 +00:00
internalOp: InternalOperation;
2021-07-17 18:58:33 +00:00
};
const InternalSelfDestruct: React.FC<InternalSelfDestructProps> = ({
txData,
2021-07-21 19:06:51 +00:00
internalOp,
2021-07-17 18:58:33 +00:00
}) => {
const { provider } = useContext(RuntimeContext);
const network = provider?.network;
const toMiner =
txData.confirmedData?.miner !== undefined &&
internalOp.to === txData.confirmedData.miner;
2021-07-17 18:58:33 +00:00
return (
<>
<div className="flex items-baseline space-x-1 text-xs">
<span className="text-gray-500">
<FontAwesomeIcon icon={faAngleRight} size="1x" /> SELF DESTRUCT
2021-07-17 18:58:33 +00:00
</span>
<span>Contract</span>
<div className="flex items-baseline">
2021-07-21 19:06:51 +00:00
<AddressHighlighter address={internalOp.from}>
<DecoratedAddressLink address={internalOp.from} selfDestruct />
2021-07-17 18:58:33 +00:00
</AddressHighlighter>
</div>
2021-07-21 19:06:51 +00:00
{network?.chainId === 1 && internalOp.to === CHI_ADDRESS && (
2021-07-19 07:19:24 +00:00
<span className="text-gray-400">(Chi Gastoken)</span>
)}
2021-07-21 19:06:51 +00:00
{network?.chainId === 1 && internalOp.to === GST2_ADDRESS && (
<span className="text-gray-400">(GST2 Gastoken)</span>
)}
2021-07-17 18:58:33 +00:00
</div>
2021-07-21 19:06:51 +00:00
{!internalOp.value.isZero() && (
2021-07-17 18:58:33 +00:00
<div className="ml-5 flex items-baseline space-x-1 text-xs">
<span className="text-gray-500">
<FontAwesomeIcon icon={faAngleRight} size="1x" /> TRANSFER
</span>
<span>{formatEther(internalOp.value)} Ether</span>
2021-07-17 18:58:33 +00:00
<div className="flex items-baseline">
<span className="text-gray-500">To</span>
2021-07-21 19:06:51 +00:00
<AddressHighlighter address={internalOp.to}>
2021-07-17 18:58:33 +00:00
<div
className={`flex items-baseline space-x-1 ${
toMiner ? "rounded px-2 py-1 bg-yellow-100" : ""
}`}
>
2021-07-21 19:06:51 +00:00
<DecoratedAddressLink address={internalOp.to} miner={toMiner} />
2021-07-17 18:58:33 +00:00
</div>
</AddressHighlighter>
</div>
</div>
)}
</>
);
};
export default React.memo(InternalSelfDestruct);