Skip to content

Instantly share code, notes, and snippets.

@oluwaseye
Created July 8, 2021 19:53
Show Gist options
  • Save oluwaseye/385bc03d8a353a2f5b871a253315c7f2 to your computer and use it in GitHub Desktop.
Save oluwaseye/385bc03d8a353a2f5b871a253315c7f2 to your computer and use it in GitHub Desktop.
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.4+commit.c7e474f2.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/presets/ERC20PresetFixedSupply.sol";
contract VolaToken is ERC20PresetFixedSupply {
constructor() ERC20PresetFixedSupply("Vola", "VOLA", 1000000000 * 10 ** decimals(), msg.sender) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment