Skip to content

Instantly share code, notes, and snippets.

View ajaadzul-bot's full-sized avatar

ajaadzul-bot

  • Joined Oct 29, 2025
View GitHub Profile
@ajaadzul-bot
ajaadzul-bot / Qilcoin.sol
Created November 1, 2025 05:46
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.30+commit.73712a01.js&optimize=false&runs=200&gist=
// 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;