Ethernaut Solutions: 18-MagicNumber
The idea we are exploring here is what is the least amount of code that a contract can contain. Here are the sources that helped me understand the basics: https://www.youtube.com/watch?v=RxL_1AfV7N4https://blog.openzeppelin.com/deconstructing-a-solidity-contract-part-i-introduction-832efd2d7737/ When we compile a .sol file, it creates two files: .ABI and .BIN. When we deploy a contract we have to create a transaction that … Read more