Exthereum v0.1.0 Exthereum.Personal View Source

Personal namespace for Ethereum JSON-RPC This could be considered dangerous as it requires the admin api to be exposed over JSON-RPC. Use only in a safe environment and see README to enable this namespace in Geth.

Link to this section Summary

Link to this section Functions

Link to this function lock_account(account) View Source
lock_account(account :: String.t) ::
  {:ok, boolean} |
  {:error, String.t}
Link to this function new_account(password, password_confirmation) View Source
new_account(password :: String.t, password_confirmation :: String.t) ::
  {:ok, String.t} |
  {:error, String.t}
Link to this function send(method, params \\ %{}) View Source
send(method :: String.t, params :: map) ::
  {:ok, map} |
  {:error, String.t}
Link to this function send_transaction(from, to, value, password) View Source
send_transaction(from :: String.t, to :: String, value :: float, password :: String.t) ::
  {:ok, boolean} |
  {:error, String.t}
Link to this function unlock_account(account, password) View Source
unlock_account(account :: String.t, password :: String.t) ::
  {:ok, boolean} |
  {:error, String.t}