2022-03-24 18:20:54 +00:00
|
|
|
import React, { useContext } from "react";
|
2021-11-07 11:21:56 +00:00
|
|
|
import AddressHighlighter from "./AddressHighlighter";
|
|
|
|
import DecoratedAddressLink from "./DecoratedAddressLink";
|
|
|
|
import { useSelectedTransaction } from "../useSelectedTransaction";
|
2022-03-24 18:20:54 +00:00
|
|
|
import { useBlockNumberContext } from "../useBlockTagContext";
|
|
|
|
import { RuntimeContext } from "../useRuntime";
|
|
|
|
import { useHasCode } from "../useErigonHooks";
|
|
|
|
import { AddressContext, ChecksummedAddress } from "../types";
|
2021-11-07 11:21:56 +00:00
|
|
|
|
|
|
|
type TransactionAddressProps = {
|
2022-03-24 18:20:54 +00:00
|
|
|
address: ChecksummedAddress;
|
2021-11-07 11:56:12 +00:00
|
|
|
addressCtx?: AddressContext | undefined;
|
2022-03-24 18:20:54 +00:00
|
|
|
showCodeIndicator?: boolean;
|
2021-11-07 11:21:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const TransactionAddress: React.FC<TransactionAddressProps> = ({
|
|
|
|
address,
|
2021-11-07 11:56:12 +00:00
|
|
|
addressCtx,
|
2022-03-24 18:20:54 +00:00
|
|
|
showCodeIndicator = false,
|
2021-11-07 11:21:56 +00:00
|
|
|
}) => {
|
|
|
|
const txData = useSelectedTransaction();
|
|
|
|
// TODO: push down creation coloring logic into DecoratedAddressLink
|
|
|
|
const creation = address === txData?.confirmedData?.createdContractAddress;
|
|
|
|
|
2022-03-24 18:20:54 +00:00
|
|
|
const { provider } = useContext(RuntimeContext);
|
|
|
|
const blockNumber = useBlockNumberContext();
|
|
|
|
const toHasCode = useHasCode(
|
|
|
|
provider,
|
|
|
|
address,
|
2022-03-24 18:39:09 +00:00
|
|
|
blockNumber !== undefined
|
|
|
|
? blockNumber === "latest"
|
|
|
|
? "latest"
|
|
|
|
: blockNumber - 1
|
|
|
|
: undefined
|
2022-03-24 18:20:54 +00:00
|
|
|
);
|
|
|
|
|
2021-11-07 11:21:56 +00:00
|
|
|
return (
|
|
|
|
<AddressHighlighter address={address}>
|
|
|
|
<DecoratedAddressLink
|
|
|
|
address={address}
|
2021-11-07 11:56:12 +00:00
|
|
|
addressCtx={addressCtx}
|
2021-11-07 11:21:56 +00:00
|
|
|
miner={address === txData?.confirmedData?.miner}
|
|
|
|
txFrom={address === txData?.from}
|
|
|
|
txTo={address === txData?.to || creation}
|
|
|
|
creation={creation}
|
2022-03-24 18:20:54 +00:00
|
|
|
eoa={
|
2022-03-25 05:07:02 +00:00
|
|
|
showCodeIndicator && blockNumber !== undefined
|
2022-03-24 18:20:54 +00:00
|
|
|
? !toHasCode
|
|
|
|
: undefined
|
|
|
|
}
|
2021-11-07 11:21:56 +00:00
|
|
|
/>
|
|
|
|
</AddressHighlighter>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default TransactionAddress;
|