Thu Mar 30 2023 11:21:35 GMT+0000 (Coordinated Universal Time)
Saved by @RareSkills
contract ERC20 { string public name; string public symbol; mapping(address => uint256) public balanceOf; constructor(string memory _name, string memory _symbol) { name = _name; symbol = _symbol; } }
Copy this HTML code:
Preview:
open_in_newInstructions on embedding in Medium
Comments