Documentation ¶
Overview ¶
Package gateway defines a gRPC gateway to serve HTTP-JSON traffic as a proxy and forward it to a beacon node's gRPC service.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func SwaggerServer ¶
func SwaggerServer() http.HandlerFunc
SwaggerServer returns swagger specification files located under "/swagger/"
Types ¶
type Gateway ¶
type Gateway struct {
// contains filtered or unexported fields
}
Gateway is the gRPC gateway to serve HTTP JSON traffic as a proxy and forward it to the beacon-chain gRPC server.
func New ¶
func New( ctx context.Context, remoteAddress, gatewayAddress string, mux *http.ServeMux, allowedOrigins []string, enableDebugRPCEndpoints bool, maxCallRecvMsgSize uint64, ) *Gateway
New returns a new gateway server which translates HTTP into gRPC. Accepts a context and optional http.ServeMux.
func (*Gateway) Start ¶
func (g *Gateway) Start()
Start the gateway service. This serves the HTTP JSON traffic on the specified port.
Click to show internal directories.
Click to hide internal directories.