We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For HomeFiProxy and HomeFi a Transparent Proxy Pattern (TPP) has been used. According to https://docs.openzeppelin.com/contracts/4.x/api/proxy#transparent-vs-uups an UUPS pattern is more efficient in terms of gas consumption during deployment
At https://github.com/code-423n4/2022-08-rigor/blob/5ab7ea84a1516cb726421ef690af5bc41029f88f/contracts/HomeFi.sol#L191 and many other places instead of require, the custom errors shall be used which are more gas efficient https://blog.soliditylang.org/2021/04/21/custom-errors/
The text was updated successfully, but these errors were encountered:
PaludoX0 issue #146
74d5baf
No branches or pull requests
For HomeFiProxy and HomeFi a Transparent Proxy Pattern (TPP) has been used.
According to https://docs.openzeppelin.com/contracts/4.x/api/proxy#transparent-vs-uups an UUPS pattern is more efficient in terms of gas consumption during deployment
At https://github.com/code-423n4/2022-08-rigor/blob/5ab7ea84a1516cb726421ef690af5bc41029f88f/contracts/HomeFi.sol#L191 and many other places instead of require, the custom errors shall be used which are more gas efficient https://blog.soliditylang.org/2021/04/21/custom-errors/
The text was updated successfully, but these errors were encountered: