Skip to content

Commit

Permalink
🩹 change max contest period to 60 days
Browse files Browse the repository at this point in the history
  • Loading branch information
thurendous committed Oct 5, 2023
1 parent 2a33bed commit 4c1d1ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ProxyFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ contract ProxyFactory is Ownable, EIP712 {
bytes32 internal constant _DEPLOY_AND_DISTRIBUTE_TYPEHASH =
keccak256("DeployAndDistribute(bytes32 contestId,address implementation,bytes data)");
uint256 public constant EXPIRATION_TIME = 7 days;
uint256 public constant MAX_CONTEST_PERIOD = 29 days;
uint256 public constant MAX_CONTEST_PERIOD = 60 days;
address public stadiumAddress; // official address to receive commission fee

This comment has been minimized.

Copy link
@thurendous

thurendous Oct 5, 2023

Author Member

changed after discussion


/// @notice record contest close time by salt
Expand Down

0 comments on commit 4c1d1ae

Please sign in to comment.