The AWS Blockchain service provides endpoints for HTTP and WebSocket protocols, but requires IAM signature verification to use them.
To use the HTTP endpoint, I just need to sign it in the http.RoundTripper interface via the AWS SDK. However, if I need to use a WebSocket endpoint, I can only pass in a websocket.Dialer structure via rpc.DialWebsocketWithDialer due to the limitations of go-ethereum, which means that I can't solve this problem by implementing an interface.
How do I use the AWS Blockchain Service's WebSocket endpoint with go-ethereum?
By reading the github.com/gorilla/websocket source code, I found out that there is a logic in the
(*Dialer) DialContext
function to pass the http.Request pointer into the customizableProxy
function, which means I can write a function that does the same thing ashttp.RoundTripper
for injecting header.WebSocket
HTTP