This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.30; | |
| contract QilCoin { | |
| string public name = "QilCoin"; | |
| string public symbol = "QIL"; | |
| uint8 public decimals = 18; | |
| uint256 public totalSupply = 100_000_000 * 10 ** uint256(decimals); | |
| address public owner; |