Add `debug_traceBlockByNumber` to `method_to_url`

pull/9440/head
Maxim Filonov 8 months ago
parent a0e801ac41
commit 97ea7ccf17
  1. 1
      CHANGELOG.md
  2. 3
      apps/explorer/config/dev/geth.exs
  3. 3
      apps/explorer/config/prod/geth.exs
  4. 3
      apps/indexer/config/dev/geth.exs
  5. 3
      apps/indexer/config/prod/geth.exs

@ -20,6 +20,7 @@
### Fixes
- [#9440](https://github.com/blockscout/blockscout/pull/9440) - Add `debug_traceBlockByNumber` to `method_to_url`
- [#9387](https://github.com/blockscout/blockscout/pull/9387) - Filter out Vyper contracts in Solidityscan API endpoint
- [#9377](https://github.com/blockscout/blockscout/pull/9377) - Speed up account abstraction proxy
- [#9371](https://github.com/blockscout/blockscout/pull/9371) - Filter empty values before token update

@ -17,7 +17,8 @@ config :explorer,
fallback_trace_url: System.get_env("ETHEREUM_JSONRPC_FALLBACK_TRACE_URL"),
method_to_url: [
eth_call: ConfigHelper.eth_call_url("http://localhost:8545"),
debug_traceTransaction: System.get_env("ETHEREUM_JSONRPC_TRACE_URL") || "http://localhost:8545"
debug_traceTransaction: System.get_env("ETHEREUM_JSONRPC_TRACE_URL") || "http://localhost:8545",
debug_traceBlockByNumber: System.get_env("ETHEREUM_JSONRPC_TRACE_URL") || "http://localhost:8545"
],
http_options: [recv_timeout: timeout, timeout: timeout, hackney: hackney_opts]
],

@ -17,7 +17,8 @@ config :explorer,
fallback_trace_url: System.get_env("ETHEREUM_JSONRPC_FALLBACK_TRACE_URL"),
method_to_url: [
eth_call: ConfigHelper.eth_call_url(),
debug_traceTransaction: System.get_env("ETHEREUM_JSONRPC_TRACE_URL")
debug_traceTransaction: System.get_env("ETHEREUM_JSONRPC_TRACE_URL"),
debug_traceBlockByNumber: System.get_env("ETHEREUM_JSONRPC_TRACE_URL")
],
http_options: [recv_timeout: timeout, timeout: timeout, hackney: hackney_opts]
],

@ -22,7 +22,8 @@ config :indexer,
fallback_trace_url: System.get_env("ETHEREUM_JSONRPC_FALLBACK_TRACE_URL"),
method_to_url: [
eth_call: ConfigHelper.eth_call_url("http://localhost:8545"),
debug_traceTransaction: System.get_env("ETHEREUM_JSONRPC_TRACE_URL") || "http://localhost:8545"
debug_traceTransaction: System.get_env("ETHEREUM_JSONRPC_TRACE_URL") || "http://localhost:8545",
debug_traceBlockByNumber: System.get_env("ETHEREUM_JSONRPC_TRACE_URL") || "http://localhost:8545"
],
http_options: [recv_timeout: timeout, timeout: timeout, hackney: hackney_opts]
],

@ -22,7 +22,8 @@ config :indexer,
fallback_trace_url: System.get_env("ETHEREUM_JSONRPC_FALLBACK_TRACE_URL"),
method_to_url: [
eth_call: ConfigHelper.eth_call_url(),
debug_traceTransaction: System.get_env("ETHEREUM_JSONRPC_TRACE_URL")
debug_traceTransaction: System.get_env("ETHEREUM_JSONRPC_TRACE_URL"),
debug_traceBlockByNumber: System.get_env("ETHEREUM_JSONRPC_TRACE_URL")
],
http_options: [recv_timeout: timeout, timeout: timeout, hackney: hackney_opts]
],

Loading…
Cancel
Save