Skip to content

Instantly share code, notes, and snippets.

@dogecrypto
dogecrypto / TRX.sol
Created June 23, 2018 12:14
TRX.sol
pragma solidity ^0.4.11;
contract TronToken {
string public name = "Tronix"; // token name
string public symbol = "TRX"; // token symbol
uint256 public decimals = 6; // token digit
mapping (address => uint256) public balanceOf;
mapping (address => mapping (address => uint256)) public allowance;
@dogecrypto
dogecrypto / EOS.sol
Created June 23, 2018 12:14
EOS token
contract DSNote {
event LogNote(
bytes4 indexed sig,
address indexed guy,
bytes32 indexed foo,
bytes32 indexed bar,
uint wad,
bytes fax
) anonymous;