Initial commit with 🏗️ Scaffold-ETH 2 @ 1.0.2
This commit is contained in:
10
packages/hardhat/contracts/Balloons.sol
Normal file
10
packages/hardhat/contracts/Balloons.sol
Normal file
@@ -0,0 +1,10 @@
|
||||
//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!
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user