Skip to content

Instantly share code, notes, and snippets.

View RuslanGavrilyuk's full-sized avatar

RuslanGavrilyuk

View GitHub Profile
@RuslanGavrilyuk
RuslanGavrilyuk / FlybyToken.sol
Last active August 16, 2018 16:29
FlybyToken Smart Contract
pragma solidity ^0.4.18;
contract FlybyToken {
mapping (address => uint256) public balanceOf;
string public name = "FlybyToken";
string public symbol = "FBTN";
uint256 public max_supply = 20000000000000;
uint256 public unspent_supply = 0;
uint256 public spendable_supply = 0;