Crate reth_rpc_layer

source ·
Expand description

Layer implementations used in RPC

Structs§

  • A layer that adds a new JWT token to every request using AuthClientService.
  • Automatically authenticates every client request with the given secret.
  • This is an Http middleware layer that acts as an interceptor for Authorization headers. Incoming requests are dispatched to an inner AuthValidator. Invalid requests are blocked and the validator’s error response is returned. Valid requests are instead dispatched to the next layer along the chain.
  • This type is the actual implementation of the middleware. It follows the [Service] specification to correctly proxy Http requests to its inner service after headers validation.
  • Claims in JWT are used to represent a set of information about an entity.
  • Implements JWT validation logics and integrates to an Http AuthLayer by implementing the AuthValidator trait.
  • Value-object holding a reference to a hex-encoded 256-bit secret key.
  • A future representing the response of an RPC request

Enums§

Traits§

  • General purpose trait to validate Http Authorization headers. It’s supposed to be integrated as a validator trait into an AuthLayer.

Functions§