Merge branch 'feature/ui-tweaks' into develop

This commit is contained in:
Willian Mitsuda 2021-07-30 18:33:54 -03:00
commit 01a2af1d7b
3 changed files with 3 additions and 3 deletions

View File

@ -62,7 +62,7 @@ const Home: React.FC = () => {
<span>
<FontAwesomeIcon icon={faBurn} />
</span>
<span>Check the special dashboard for EIP-1559</span>
<span>Check out the special dashboard for EIP-1559</span>
<span>
<FontAwesomeIcon icon={faBurn} />
</span>

View File

@ -143,7 +143,7 @@ const Blocks: React.FC<BlocksProps> = ({ latestBlock, targetBlockNumber }) => {
<span>
<FontAwesomeIcon icon={faBurn} />
</span>
<span>London Hardfork is here. Watch the base fees burn.</span>
<span>EIP-1559 is activated. Watch the fees burn.</span>
<span>
<FontAwesomeIcon icon={faBurn} />
</span>

View File

@ -33,7 +33,7 @@ const Countdown: React.FC<CountdownProps> = ({
<h2 className="text-5xl">
{ethers.utils.commify(targetBlock - currentBlock.number)}
</h2>
<h6 className="text-sm mb-10">Block remaining</h6>
<h6 className="text-sm mb-10">Blocks remaining</h6>
<h2 className="inline-flex space-x-10 text-base mb-10">
<div>Current block: {ethers.utils.commify(currentBlock.number)}</div>
<div>Target block: {ethers.utils.commify(targetBlock)}</div>