Files
2026-01-21 20:45:23 +07:00

11 lines
266 B
Solidity

//SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract Balloons is ERC20 {
constructor() ERC20("Balloons", "BAL") {
_mint(msg.sender, 1000 ether); // mints 1000 balloons!
}
}