Skip to content

Instantly share code, notes, and snippets.

View lingxiao's full-sized avatar

Xiao Ling lingxiao

View GitHub Profile
pragma solidity ^0.4.2;
contract Hello{
mapping (address => uint) public coinBalanceOf;
event CoinTransfer(address sender, address receiver, uint amount);
function hello(uint supply){