Skip to content

Instantly share code, notes, and snippets.

View RadoslavAleksiev's full-sized avatar

Radoslav Aleksiev RadoslavAleksiev

  • Bulgaria
View GitHub Profile
@RadoslavAleksiev
RadoslavAleksiev / rax.sol
Created August 12, 2024 16:12
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.26+commit.8a97fa7a.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract RAX is ERC20 {
constructor() ERC20("RAX", "RAX") {
// Mint the initial supply of tokens to the deployer
_mint(msg.sender, 999000000 * 10 ** decimals());
}