solidity

    Klaytn BaoBob Testnet에 Token Minting 해보기

    Token? 실습 /* practice.sol */ pragma solidity >= 0.4.24 string) public tokenURIs; constructor () public { owner = msg.sender; // 0: address: 0x5329220B8b8e57D033D6F6C5B0d66249f72fdfb9 } function getTotalSupply () public view returns (uint256){ // view is only viewing function return totalSupply + 10000000; // 0: uints256: 10000010 } function setTotalSupply(uint256 newSupply) public { require(owne..