Hey guys is it still a good idea to extend from OpenZeppelin's ERC20 base contract when compiling with Solidity >= 0.8.0 ? OpenZeppelin contract keeps _name and _symbol as private variables (why aren't they immutable btw ?) and then exposes public methods to get the values but with 0.8.0 we get automatic getter functions for public variables correct? so by declaring them manually as public and not extending ERC20 we are making our contract size smaller. Or will the compiler just optimize things like this automatically?
Related topics
Topic | Replies | Views | Activity | |
---|---|---|---|---|
OpenZeppelin Smart Contract Design Rationale | 5 | 818 | May 12, 2020 | |
Beginners question Re: Solidity compiler versions & OpenZeppelin contracts | 1 | 674 | May 31, 2023 | |
Using Remix to Deploy OpenZeppelin ERC20 contract | 2 | 3699 | March 22, 2021 | |
ERC20.sol private variables with no setters | 5 | 597 | September 16, 2022 | |
Noob solidity dev needs help to build a simple contract | 4 | 300 | February 7, 2024 |