web3_fe 0.1.0

Ethereum JSON-RPC client. Fathom Edition
Documentation
1
2
3
4
5
6
7
8
9
pragma solidity ^0.4.0;

contract SimpleEvent {
    event Hello(address sender);

    function hello() public {
        emit Hello(msg.sender);
    }
}