You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(node-config): remove reth deps, add FromEnv to RPC configs (#113)
* refactor(node-config): remove reth deps, dead fields, and port/ipc config
Strip SignetNodeConfig of reth-coupled fields (static_path, http_port,
ws_port, ipc_endpoint) and methods (static_file_ro/rw, chain_spec,
spec_id). Remove reth, reth-chainspec, trevm, and signet-evm
dependencies from Cargo.toml. Simplify test_utils to match the reduced
API surface.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(rpc): add ServeConfigEnv with FromEnv for env-based RPC transport config
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(rpc): add StorageRpcConfigEnv with FromEnv for env-based RPC config
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat(host-rpc): add HostRpcConfig with FromEnv for env-based host config
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix(node-tests): adapt to SignetNodeConfig changes, inline IPC path
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix(rpc): error on invalid bind addr, fix doctests, add rustdoc examples
Make ServeConfigEnv-to-ServeConfig conversion fallible (TryFrom) so that
malformed SIGNET_HTTP_ADDR / SIGNET_WS_ADDR values surface an error
instead of silently falling back to 0.0.0.0. Replace `ignore` doctest
on HostRpcConfig with a compilable `no_run` example. Add rustdoc
examples to StorageRpcConfigEnv and ServeConfigEnv.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix(rpc): document env var defaults and add 0-to-disable for gas oracle prices
Address review feedback: the three gas oracle price fields
(default_gas_price, ignore_price, max_price) now treat 0 as a sentinel
to disable the guardrail (mapping to None), rather than silently
overriding None with the default. All FromEnv desc strings across
StorageRpcConfigEnv, ServeConfigEnv, and HostRpcConfig now document the
default value or behavior when unset.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
0 commit comments