From e8a4854db2bbab886c92ad128a3a0873ce8f9b62 Mon Sep 17 00:00:00 2001 From: dianakocsis Date: Mon, 7 Oct 2024 15:21:51 -0400 Subject: [PATCH] inheritdoc tags --- src/UniswapV4DeployerCompetition.sol | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/UniswapV4DeployerCompetition.sol b/src/UniswapV4DeployerCompetition.sol index 3f179419..7c5b38fd 100644 --- a/src/UniswapV4DeployerCompetition.sol +++ b/src/UniswapV4DeployerCompetition.sol @@ -25,6 +25,7 @@ contract UniswapV4DeployerCompetition is ERC721, IUniswapV4DeployerCompetition { v4Owner = _v4Owner; } + /// @inheritdoc IUniswapV4DeployerCompetition function updateBestAddress(bytes32 salt) external override { if (block.timestamp > competitionDeadline) { revert CompetitionOver(block.timestamp, competitionDeadline); @@ -41,6 +42,7 @@ contract UniswapV4DeployerCompetition is ERC721, IUniswapV4DeployerCompetition { emit NewAddressFound(newAddress, msg.sender, newAddress.score()); } + /// @inheritdoc IUniswapV4DeployerCompetition function deploy(bytes memory bytecode) external override { if (keccak256(bytecode) != initCodeHash) { revert InvalidBytecode(); @@ -64,6 +66,7 @@ contract UniswapV4DeployerCompetition is ERC721, IUniswapV4DeployerCompetition { Owned(bestAddress).transferOwnership(v4Owner); } + /// @inheritdoc ERC721 /// @notice Returns the URI for the token /// @param id The token id /// @return The URI for the token