-
It should suffice to start `omg_eth` application from mix to reproduce this. I'm doing:
```
user@user:~/sources/elixir-omg$ iex -S mix run --no-start
Erlang/OTP 21 [erts-10.2.2] [source] [64-bit]…
-
@jbunce spotted exceptions after deploying fcb7088 to an environment
```elixir
2019-12-26 06:24:52.110 [info] module=OMG.Watcher.ExitProcessor function=init/1 ⋅Initializing with: {:ok, %OMG.Watche…
-
I am trying the following configs:
```
config :ethereumex,
url: "https://mainnet.infura.io/v3/MY_KEY",
request_timeout: :infinity
```
But I get the following response:
```
{: error, :tim…
-
I'm trying to call one of such functions:
```
Ethereumex.HttpClient.eth_get_block_by_number("0x0", false)
```
(boolean at 2nd argument) and all works fine but dialyzer complains:
```
apps/…
-
Hi,
I'm using exw3 to deploy a ETH 2 Validator Deposit Contract via a Mix Task:
https://github.com/timjp87/panacea/blob/master/apps/beaconchain/lib/mix/tasks/deploy.ex
However, when I run "mix …
-
This issue consists in implementing a module that will generate a new Ethereum account and all the needed helper functions. From it, we should be able to get a private key, a public key and an address…
-
```
> personal.unlockAccount("0x7e56a10f5eb2578d4864e22da8cf30cec3f92d68", "", 0)
true
```
This is definitely the account used by the Childchain:
```elixir-user@childchain-0:~$ cat config.e…
0x234 updated
5 years ago
-
Implement Ipc Client like HttpClient is implemented (with Ethereumex.Client.Macro)
```
defmodule Ethereumex.IpcClient do
use Ethereumex.Client.Macro
def request(payload) do
// request w…
-
I'm trying to connect to `geth` and receiving following error:
```elixir
23:29:41.836 [info] Application ethereumex exited: Ethereumex.start(:normal, []) returned an error: shutdown: failed to st…
-
`geth` returns an empty-body HTTP response, when it happens to be brought down when a request is being handled (so it seems at least). Such response is coded `200` and as such is passed onto `Jason.de…