Skip to content

Commit

Permalink
inheritdoc tags
Browse files Browse the repository at this point in the history
  • Loading branch information
dianakocsis committed Oct 7, 2024
1 parent 1af2165 commit e8a4854
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/UniswapV4DeployerCompetition.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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();
Expand All @@ -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
Expand Down

0 comments on commit e8a4854

Please sign in to comment.