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: UNLICENSED | |
| pragma solidity >= 0.8.2 < 0.9.0; | |
| contract Khara{ | |
| string public symbol; | |
| string public name; | |
| uint public totalSupply; | |
| mapping(address => uint) public balanceOf; | |
| mapping(address => mapping(address => uint)) public allowance; | |
| constructor(string memory _symbol, string memory _name, uint _totalSupply){ | |
| symbol = _symbol; |