You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Title: Use Solidity v0.8.4 because of Solidity Custom Errors
Impact
Starting from Solidity v0.8.4, there is a convenient and gas-efficient way to explain to users why an operation failed through the use of custom errors. Custom errors decrease both deploy and runtime gas costs. Source: https://blog.soliditylang.org/2021/04/21/custom-errors/
Title: Use immutable variables
Impact
For any variable that is only set once, either use a constant or immutable to save gas. The compiler does not reserve a storage slot for these variables, and every occurrence is replaced by the respective value (Source: https://docs.soliditylang.org/en/v0.6.5/contracts.html#constant-and-immutable-state-variables)
Recommended Mitigation Steps
Change variables as immutable.
globalBeneficiary PermissionlessBasicPoolFactory.sol:
https://github.com/code-423n4/2022-05-factorydao/blob/main/contracts/PermissionlessBasicPoolFactory.sol#L51
gateMaster MerkleEligibility.sol:
https://github.com/code-423n4/2022-05-factorydao/blob/main/contracts/MerkleEligibility.sol#L16
Title: Use Solidity v0.8.4 because of Solidity Custom Errors
Impact
Starting from Solidity v0.8.4, there is a convenient and gas-efficient way to explain to users why an operation failed through the use of custom errors. Custom errors decrease both deploy and runtime gas costs. Source: https://blog.soliditylang.org/2021/04/21/custom-errors/
OpenZeppelin is also planing to use custom errors starting with next major release 5.0.
Source release v5.0: OpenZeppelin/openzeppelin-contracts#2961
Source OZ custom error issue: OpenZeppelin/openzeppelin-contracts#2839
Recommended Mitigation Steps
Refactor code and use Solidity custom errors.
Title: Unused .call() return data
Impact
Removing unused return variable improves code readability and can improve gas costs
Recommended Mitigation Steps
Change:
(bool sent, bytes memory data) = gate.beneficiary.call{value: msg.value}("");
To:
(bool sent, ) = gate.beneficiary.call{value: msg.value}("");
https://github.com/code-423n4/2022-05-factorydao/blob/main/contracts/SpeedBumpPriceGate.sol#L79
The text was updated successfully, but these errors were encountered: