File tree 3 files changed +6
-2
lines changed
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.12.1 - 2025-04-09
4
+ * Add optional http request logs (https://github.com/mana-ethereum/ethereumex/pull/176 )
5
+
3
6
## 0.12.0 - 2025-03-04
4
7
* Make json library configurable (https://github.com/mana-ethereum/ethereumex/pull/169 )
5
8
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Add `:ethereumex` to your list of dependencies in `mix.exs`:
19
19
``` elixir
20
20
def deps do
21
21
[
22
- {:ethereumex , " ~> 0.12.0 " },
22
+ {:ethereumex , " ~> 0.12.1 " },
23
23
# json library is configurable
24
24
{:jason , " ~> 1.4" }
25
25
]
@@ -48,6 +48,7 @@ config :ethereumex,
48
48
49
49
` :pool_timeout ` - This timeout is applied when we check out a connection from the pool. Default value is ` 5_000 ` .
50
50
` :receive_timeout ` - The maximum time to wait for a response before returning an error. Default value is ` 15_000 `
51
+ ` :enable_request_error_logs ` - Optional request error logs. Default value is false
51
52
52
53
### IPC
53
54
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ defmodule Ethereumex.Mixfile do
2
2
use Mix.Project
3
3
4
4
@ source_url "https://github.com/exthereum/ethereumex"
5
- @ version "0.12.0 "
5
+ @ version "0.12.1 "
6
6
7
7
def project do
8
8
[
You can’t perform that action at this time.
0 commit comments