Articles about my Blockchain and Software Engineering journey.
This is my last entry to my "The Ethernaut by OpenZeppelin" series of articles. I successfully completed all 27 levels using the address...
Solidity Code // SPDX-License-Identifier: MIT pragma solidity <0.7.0; import "@openzeppelin/contracts/utils/Address.sol"; import...
Solidity Code // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; pragma experimental ABIEncoderV2; import...
Solidity Code // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import...
Solidity Code // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; interface Buyer { function price() external view returns (uint); } contract...