ethrex-rpc 17.0.0

JSON-RPC and Engine API server for the ethrex Ethereum execution client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(Debug, thiserror::Error)]
pub enum BeaconClientError {
    #[error("reqwest error: {0}")]
    ReqwestError(#[from] reqwest::Error),
    #[error("Beacon RPC error (code: {0}): {1}")]
    RpcError(u64, String),
    #[error("Response deserialization error: {0}")]
    DeserializeError(#[from] serde_json::Error),
    #[error("Failed to set url endpoint: {0}")]
    FailedToSetURLEndpointError(String),
    #[error("Error: {0}")]
    Custom(String),
}