In MembershipFactory.sol
variables proxyAdmin
and owpWallet
can be declared as immutable
.
In MembershipFactory
contract variables proxyAdmin
and owpWallet
are set only in the constructor so they can be declared as immutable
.
immutable
variables consume less gas compared to regular state variables because they are stored directly in the contract’s bytecode rather than the storage, making reads from these variables cheaper.
Slither, manual review
Declare variables as immutable:
The contest is live. Earn rewards by submitting a finding.
This is your time to appeal against judgements on your submissions.
Appeals are being carefully reviewed by our judges.