module Web3::ShhCalls

Public Instance Methods

shh_addToGroup(address) click to toggle source

See github.com/ethereum/wiki/wiki/JSON-RPC#shh_addtogroup

# File shh_calls.rb, line 34
def shh_addToGroup(address)
response = do_request("shh_addToGroup",[address])
response["result"]
end
shh_getFilterChanges(id) click to toggle source

See github.com/ethereum/wiki/wiki/JSON-RPC#shh_getfilterchanges

# File shh_calls.rb, line 52
def shh_getFilterChanges(id)
response = do_request("shh_getFilterChanges",[id])
response["result"]
end
shh_getMessages(id) click to toggle source

See github.com/ethereum/wiki/wiki/JSON-RPC#shh_getmessages

# File shh_calls.rb, line 58
def shh_getMessages(id)
response = do_request("shh_getMessages",[id])
response["result"]
end
shh_hasIdentity(address) click to toggle source

See github.com/ethereum/wiki/wiki/JSON-RPC#shh_hasidentity

# File shh_calls.rb, line 22
def shh_hasIdentity(address)
response = do_request("shh_hasIdentity",[address])
response["result"]
end
shh_newFilter(filter_object) click to toggle source

See github.com/ethereum/wiki/wiki/JSON-RPC#shh_newfilter

# File shh_calls.rb, line 40
def shh_newFilter(filter_object)
response = do_request("shh_newFilter",[filter_object])
to_decimal response["result"]
end
shh_newGroup() click to toggle source

See github.com/ethereum/wiki/wiki/JSON-RPC#shh_newgroup

# File shh_calls.rb, line 28
def shh_newGroup()
response = do_request("shh_newGroup")
response["result"]
end
shh_newIdentity() click to toggle source

See github.com/ethereum/wiki/wiki/JSON-RPC#shh_newidentity

# File shh_calls.rb, line 16
def shh_newIdentity()
response = do_request("shh_newIdentity")
response["result"]
end
shh_post(post_object) click to toggle source

See github.com/ethereum/wiki/wiki/JSON-RPC#shh_post

# File shh_calls.rb, line 10
def shh_post(post_object)
response = do_request("shh_post",[post_object])
response["result"]
end
shh_uninstallFilter(id) click to toggle source

See github.com/ethereum/wiki/wiki/JSON-RPC#shh_uninstallfilter

# File shh_calls.rb, line 46
def shh_uninstallFilter(id)
response = do_request("shh_uninstallFilter",[id])
response["result"]
end
shh_version() click to toggle source

See github.com/ethereum/wiki/wiki/JSON-RPC#shh_version

# File shh_calls.rb, line 4
def shh_version()
response = do_request("shh_version")
response["result"]
end