module Web3::Web3Calls
Public Instance Methods
web3_clientVersion()
click to toggle source
See github.com/ethereum/wiki/wiki/JSON-RPC#web3_clientversion
# File web3_calls.rb, line 4 def web3_clientVersion() response = do_request("web3_clientVersion") response["result"] end
web3_sha3(data)
click to toggle source
See github.com/ethereum/wiki/wiki/JSON-RPC#web3_sha3
# File web3_calls.rb, line 10 def web3_sha3(data) response = do_request("web3_sha3",[data]) response["result"] end