The Ethernaut CTF Solutions | 05 - Token
Goals
The Contract
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
contract Token {
mapping(address => uint) balances;
uint public totalSupply;
constructor(uint _initialSupply) public {
balances[msg.sender] = totalSuppl...
blog.pedrojok.com3 min read