2021-07-01 18:21:40 +00:00
|
|
|
import React, { useEffect, useState, useMemo } from "react";
|
|
|
|
import { useParams, NavLink } from "react-router-dom";
|
|
|
|
import { ethers, BigNumber } from "ethers";
|
2021-07-04 01:33:34 +00:00
|
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
|
|
import {
|
|
|
|
faChevronLeft,
|
|
|
|
faChevronRight,
|
|
|
|
} from "@fortawesome/free-solid-svg-icons";
|
2021-07-01 18:21:40 +00:00
|
|
|
import { provider } from "./ethersconfig";
|
|
|
|
import StandardFrame from "./StandardFrame";
|
|
|
|
import StandardSubtitle from "./StandardSubtitle";
|
|
|
|
import ContentFrame from "./ContentFrame";
|
2021-07-04 01:33:34 +00:00
|
|
|
import NavButton from "./components/NavButton";
|
2021-07-01 18:21:40 +00:00
|
|
|
import Timestamp from "./components/Timestamp";
|
|
|
|
import GasValue from "./components/GasValue";
|
|
|
|
import BlockLink from "./components/BlockLink";
|
|
|
|
import AddressLink from "./components/AddressLink";
|
2021-07-03 21:51:57 +00:00
|
|
|
import TransactionValue from "./components/TransactionValue";
|
2021-07-03 22:40:47 +00:00
|
|
|
import HexValue from "./components/HexValue";
|
2021-07-04 01:42:06 +00:00
|
|
|
import { useLatestBlockNumber } from "./useLatestBlock";
|
2021-07-01 18:21:40 +00:00
|
|
|
|
|
|
|
type BlockParams = {
|
|
|
|
blockNumberOrHash: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
interface ExtendedBlock extends ethers.providers.Block {
|
2021-07-03 21:51:57 +00:00
|
|
|
blockReward: BigNumber;
|
|
|
|
unclesReward: BigNumber;
|
|
|
|
feeReward: BigNumber;
|
2021-07-01 18:21:40 +00:00
|
|
|
size: number;
|
|
|
|
sha3Uncles: string;
|
|
|
|
stateRoot: string;
|
|
|
|
totalDifficulty: BigNumber;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Block: React.FC = () => {
|
|
|
|
const params = useParams<BlockParams>();
|
|
|
|
|
|
|
|
const [block, setBlock] = useState<ExtendedBlock>();
|
|
|
|
useEffect(() => {
|
|
|
|
const readBlock = async () => {
|
2021-07-03 21:51:57 +00:00
|
|
|
let blockPromise: Promise<any>;
|
2021-07-01 18:21:40 +00:00
|
|
|
if (ethers.utils.isHexString(params.blockNumberOrHash, 32)) {
|
2021-07-03 21:51:57 +00:00
|
|
|
blockPromise = provider.send("eth_getBlockByHash", [
|
2021-07-01 18:21:40 +00:00
|
|
|
params.blockNumberOrHash,
|
|
|
|
false,
|
|
|
|
]);
|
|
|
|
} else {
|
2021-07-03 21:51:57 +00:00
|
|
|
blockPromise = provider.send("eth_getBlockByNumber", [
|
2021-07-01 18:21:40 +00:00
|
|
|
params.blockNumberOrHash,
|
|
|
|
false,
|
|
|
|
]);
|
|
|
|
}
|
2021-07-03 22:14:03 +00:00
|
|
|
const [_rawBlock, _rawIssuance, _rawReceipts] = await Promise.all([
|
2021-07-03 21:51:57 +00:00
|
|
|
blockPromise,
|
|
|
|
provider.send("erigon_issuance", [params.blockNumberOrHash]),
|
2021-07-03 22:14:03 +00:00
|
|
|
provider.send("eth_getBlockReceipts", [params.blockNumberOrHash]),
|
2021-07-03 21:51:57 +00:00
|
|
|
]);
|
2021-07-03 22:14:03 +00:00
|
|
|
const receipts = (_rawReceipts as any[]).map((r) =>
|
|
|
|
provider.formatter.receipt(r)
|
|
|
|
);
|
|
|
|
const fees = receipts.reduce(
|
|
|
|
(acc, r) => acc.add(r.effectiveGasPrice.mul(r.gasUsed)),
|
|
|
|
BigNumber.from(0)
|
|
|
|
);
|
2021-07-01 18:21:40 +00:00
|
|
|
|
|
|
|
const _block = provider.formatter.block(_rawBlock);
|
|
|
|
const extBlock: ExtendedBlock = {
|
2021-07-03 21:51:57 +00:00
|
|
|
blockReward: provider.formatter.bigNumber(_rawIssuance.blockReward),
|
|
|
|
unclesReward: provider.formatter.bigNumber(_rawIssuance.uncleReward),
|
2021-07-03 22:14:03 +00:00
|
|
|
feeReward: fees,
|
2021-07-01 18:21:40 +00:00
|
|
|
size: provider.formatter.number(_rawBlock.size),
|
|
|
|
sha3Uncles: _rawBlock.sha3Uncles,
|
|
|
|
stateRoot: _rawBlock.stateRoot,
|
|
|
|
totalDifficulty: provider.formatter.bigNumber(
|
|
|
|
_rawBlock.totalDifficulty
|
|
|
|
),
|
|
|
|
..._block,
|
|
|
|
};
|
|
|
|
setBlock(extBlock);
|
|
|
|
};
|
|
|
|
readBlock();
|
|
|
|
}, [params.blockNumberOrHash]);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (block) {
|
|
|
|
document.title = `Block #${block.number} | Otterscan`;
|
|
|
|
}
|
|
|
|
}, [block]);
|
|
|
|
|
|
|
|
const extraStr = useMemo(() => {
|
|
|
|
try {
|
|
|
|
return block && ethers.utils.toUtf8String(block.extraData);
|
|
|
|
} catch (err) {
|
2021-07-03 22:15:22 +00:00
|
|
|
console.error("Error while converting block extra data to string");
|
2021-07-01 18:21:40 +00:00
|
|
|
console.error(err);
|
|
|
|
}
|
|
|
|
}, [block]);
|
|
|
|
|
2021-07-04 01:42:06 +00:00
|
|
|
const latestBlockNumber = useLatestBlockNumber();
|
|
|
|
|
2021-07-01 18:21:40 +00:00
|
|
|
return (
|
|
|
|
<StandardFrame>
|
|
|
|
<StandardSubtitle>
|
|
|
|
Block{" "}
|
|
|
|
<span className="text-base text-gray-500">
|
|
|
|
#{params.blockNumberOrHash}
|
|
|
|
</span>
|
|
|
|
</StandardSubtitle>
|
|
|
|
{block && (
|
|
|
|
<ContentFrame>
|
|
|
|
<InfoRow title="Block Height">
|
2021-07-04 01:33:34 +00:00
|
|
|
<div className="flex space-x-1 items-baseline">
|
|
|
|
<span className="font-bold mr-1">
|
|
|
|
{ethers.utils.commify(block.number)}
|
|
|
|
</span>
|
|
|
|
<NavButton
|
|
|
|
blockNum={block.number - 1}
|
|
|
|
disabled={block.number === 0}
|
|
|
|
>
|
|
|
|
<FontAwesomeIcon icon={faChevronLeft} />
|
|
|
|
</NavButton>
|
|
|
|
<NavButton
|
|
|
|
blockNum={block.number + 1}
|
2021-07-04 01:42:06 +00:00
|
|
|
disabled={
|
|
|
|
latestBlockNumber === undefined ||
|
|
|
|
block.number >= latestBlockNumber
|
|
|
|
}
|
2021-07-04 01:33:34 +00:00
|
|
|
>
|
|
|
|
<FontAwesomeIcon icon={faChevronRight} />
|
|
|
|
</NavButton>
|
|
|
|
</div>
|
2021-07-01 18:21:40 +00:00
|
|
|
</InfoRow>
|
|
|
|
<InfoRow title="Timestamp">
|
|
|
|
<Timestamp value={block.timestamp} />
|
|
|
|
</InfoRow>
|
|
|
|
<InfoRow title="Transactions">
|
|
|
|
<NavLink
|
|
|
|
className="bg-link-blue bg-opacity-10 text-link-blue hover:bg-opacity-100 hover:text-white rounded-lg px-2 py-1 text-xs"
|
|
|
|
to={`/block/${block.number}/txs`}
|
|
|
|
>
|
|
|
|
{block.transactions.length} transactions
|
|
|
|
</NavLink>{" "}
|
|
|
|
in this block
|
|
|
|
</InfoRow>
|
|
|
|
<InfoRow title="Mined by">
|
|
|
|
<div className="flex">
|
|
|
|
<AddressLink address={block.miner} />
|
|
|
|
</div>
|
|
|
|
</InfoRow>
|
2021-07-03 21:51:57 +00:00
|
|
|
<InfoRow title="Block Reward">
|
2021-07-03 22:14:03 +00:00
|
|
|
<TransactionValue value={block.blockReward.add(block.feeReward)} />
|
|
|
|
{!block.feeReward.isZero() && (
|
|
|
|
<>
|
|
|
|
{" "}
|
|
|
|
(<TransactionValue value={block.blockReward} hideUnit /> +{" "}
|
|
|
|
<TransactionValue value={block.feeReward} hideUnit />)
|
|
|
|
</>
|
|
|
|
)}
|
2021-07-03 21:51:57 +00:00
|
|
|
</InfoRow>
|
|
|
|
<InfoRow title="Uncles Reward">
|
|
|
|
<TransactionValue value={block.unclesReward} />
|
|
|
|
</InfoRow>
|
2021-07-01 18:21:40 +00:00
|
|
|
<InfoRow title="Difficult">
|
|
|
|
{ethers.utils.commify(block.difficulty)}
|
|
|
|
</InfoRow>
|
|
|
|
<InfoRow title="Total Difficult">
|
|
|
|
{ethers.utils.commify(block.totalDifficulty.toString())}
|
|
|
|
</InfoRow>
|
|
|
|
<InfoRow title="Size">
|
|
|
|
{ethers.utils.commify(block.size)} bytes
|
|
|
|
</InfoRow>
|
|
|
|
<InfoRow title="Gas Used">
|
|
|
|
<GasValue value={block.gasUsed} />
|
|
|
|
</InfoRow>
|
|
|
|
<InfoRow title="Gas Limit">
|
|
|
|
<GasValue value={block.gasLimit} />
|
|
|
|
</InfoRow>
|
|
|
|
<InfoRow title="Extra Data">
|
|
|
|
{extraStr} (Hex:{" "}
|
|
|
|
<span className="font-data">{block.extraData}</span>)
|
|
|
|
</InfoRow>
|
|
|
|
<InfoRow title="Ether Price">N/A</InfoRow>
|
|
|
|
<InfoRow title="Hash">
|
2021-07-04 01:33:34 +00:00
|
|
|
<HexValue value={block.hash} />
|
2021-07-01 18:21:40 +00:00
|
|
|
</InfoRow>
|
|
|
|
<InfoRow title="Parent Hash">
|
|
|
|
<BlockLink blockTag={block.parentHash} />
|
|
|
|
</InfoRow>
|
|
|
|
<InfoRow title="Sha3Uncles">
|
2021-07-03 22:40:47 +00:00
|
|
|
<HexValue value={block.sha3Uncles} />
|
2021-07-01 18:21:40 +00:00
|
|
|
</InfoRow>
|
|
|
|
<InfoRow title="StateRoot">
|
2021-07-03 22:40:47 +00:00
|
|
|
<HexValue value={block.stateRoot} />
|
2021-07-01 18:21:40 +00:00
|
|
|
</InfoRow>
|
|
|
|
<InfoRow title="Nonce">
|
|
|
|
<span className="font-data">{block.nonce}</span>
|
|
|
|
</InfoRow>
|
|
|
|
</ContentFrame>
|
|
|
|
)}
|
|
|
|
</StandardFrame>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
type InfoRowProps = {
|
|
|
|
title: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
const InfoRow: React.FC<InfoRowProps> = ({ title, children }) => (
|
|
|
|
<div className="grid grid-cols-4 py-4 text-sm">
|
|
|
|
<div>{title}:</div>
|
|
|
|
<div className="col-span-3">{children}</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default React.memo(Block);
|