ic-web3 0.1.7

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