web3 0.19.0

Ethereum JSON-RPC client.
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);
    }
}