type net/http.Response

170 uses

	net/http (current package)
		client.go#L141: 	RoundTrip(*Request) (*Response, error)
		client.go#L174: func (c *Client) send(req *Request, deadline time.Time) (resp *Response, didTimeout func() bool, err error) {
		client.go#L211: func send(ireq *Request, rt RoundTripper, deadline time.Time) (resp *Response, didTimeout func() bool, err error) {
		client.go#L455: func Get(url string) (resp *Response, err error) {
		client.go#L482: func (c *Client) Get(url string) (resp *Response, err error) {
		client.go#L510: func redirectBehavior(reqMethod string, resp *Response, ireq *Request) (redirectMethod string, shouldRedirect, includeBody bool) {
		client.go#L589: func (c *Client) Do(req *Request) (*Response, error) {
		client.go#L593: var testHookClientDoResult func(retres *Response, reterr error)
		client.go#L595: func (c *Client) do(req *Request) (retres *Response, reterr error) {
		client.go#L611: 		resp          *Response
		client.go#L839: func Post(url, contentType string, body io.Reader) (resp *Response, err error) {
		client.go#L857: func (c *Client) Post(url, contentType string, body io.Reader) (resp *Response, err error) {
		client.go#L882: func PostForm(url string, data url.Values) (resp *Response, err error) {
		client.go#L900: func (c *Client) PostForm(url string, data url.Values) (resp *Response, err error) {
		client.go#L918: func Head(url string) (resp *Response, err error) {
		client.go#L934: func (c *Client) Head(url string) (resp *Response, err error) {
		filetransport.go#L53: func (t fileTransport) RoundTrip(req *Request) (resp *Response, err error) {
		filetransport.go#L68: func newPopulateResponseWriter() (*populateResponse, <-chan *Response) {
		filetransport.go#L71: 		ch: make(chan *Response),
		filetransport.go#L73: 		res: &Response{
		filetransport.go#L89: 	res          *Response
		filetransport.go#L90: 	ch           chan *Response
		h2_bundle.go#L7555: 	res            *Response     // set if respHeaderRecv is closed
		h2_bundle.go#L7696: func (t *http2Transport) RoundTrip(req *Request) (*Response, error) {
		h2_bundle.go#L7725: func (t *http2Transport) RoundTripOpt(req *Request, opt http2RoundTripOpt) (*Response, error) {
		h2_bundle.go#L8416: func (cc *http2ClientConn) RoundTrip(req *Request) (*Response, error) {
		h2_bundle.go#L8420: func (cc *http2ClientConn) roundTrip(req *Request, streamf func(*http2clientStream)) (*Response, error) {
		h2_bundle.go#L8469: 	handleResponseHeaders := func() (*Response, error) {
		h2_bundle.go#L9336: 	res *Response
		h2_bundle.go#L9619: func (rl *http2clientConnReadLoop) handleResponse(cs *http2clientStream, f *http2MetaHeadersFrame) (*Response, error) {
		h2_bundle.go#L9636: 	res := &Response{
		h2_bundle.go#L10309: func (rt http2erringRoundTripper) RoundTrip(*Request) (*Response, error) { return nil, rt.err }
		h2_bundle.go#L10370: func (rt http2noDialH2RoundTripper) RoundTrip(req *Request) (*Response, error) {
		request.go#L322: 	Response *Response
		response.go#L35: type Response struct {
		response.go#L125: func (r *Response) Cookies() []*Cookie {
		response.go#L137: func (r *Response) Location() (*url.URL, error) {
		response.go#L154: func ReadResponse(r *bufio.Reader, req *Request) (*Response, error) {
		response.go#L156: 	resp := &Response{
		response.go#L224: func (r *Response) ProtoAtLeast(major, minor int) bool {
		response.go#L245: func (r *Response) Write(w io.Writer) error {
		response.go#L264: 	r1 := new(Response)
		response.go#L336: func (r *Response) closeBody() {
		response.go#L349: func (r *Response) bodyIsWritable() bool {
		response.go#L356: func (r *Response) isProtocolSwitch() bool {
		roundtrip.go#L20: func badRoundTrip(*Transport, *Request) (*Response, error)
		roundtrip.go#L29: func (t *Transport) RoundTrip(req *Request) (*Response, error) {
		transfer.go#L110: 	case *Response:
		transfer.go#L496: 	case *Response:
		transfer.go#L553: 	case *Response:
		transfer.go#L594: 	case *Response:
		transfer.go#L946: 	case *Response:
		transport.go#L133: 	OnProxyConnectResponse func(ctx context.Context, proxyURL *url.URL, connectReq *Request, connectRes *Response) error
		transport.go#L530: func (t *Transport) roundTrip(req *Request) (_ *Response, err error) {
		transport.go#L639: 		var resp *Response
		transport.go#L1808: 			resp *Response
		transport.go#L2218: 		var resp *Response
		transport.go#L2384: func (pc *persistConn) readResponse(rc requestAndChan, trace *httptrace.ClientTrace) (resp *Response, err error) {
		transport.go#L2596: 	res *Response // else use this response (see res method)
		transport.go#L2669: func (pc *persistConn) roundTrip(req *transportRequest) (resp *Response, err error) {
		transport.go#L2737: 	handleResponse := func(re responseAndError) (*Response, error) {

	github.com/coinbase/cdp-sdk/go/openapi
		client.gen.go#L456: 	Do(req *http.Request) (*http.Response, error)
		client.gen.go#L523: 	ListEvmAccounts(ctx context.Context, params *ListEvmAccountsParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L526: 	CreateEvmAccountWithBody(ctx context.Context, params *CreateEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L528: 	CreateEvmAccount(ctx context.Context, params *CreateEvmAccountParams, body CreateEvmAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L531: 	GetEvmAccountByName(ctx context.Context, name string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L534: 	GetEvmAccount(ctx context.Context, address string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L537: 	SignEvmHashWithBody(ctx context.Context, address string, params *SignEvmHashParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L539: 	SignEvmHash(ctx context.Context, address string, params *SignEvmHashParams, body SignEvmHashJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L542: 	SignEvmMessageWithBody(ctx context.Context, address string, params *SignEvmMessageParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L544: 	SignEvmMessage(ctx context.Context, address string, params *SignEvmMessageParams, body SignEvmMessageJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L547: 	SignEvmTransactionWithBody(ctx context.Context, address string, params *SignEvmTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L549: 	SignEvmTransaction(ctx context.Context, address string, params *SignEvmTransactionParams, body SignEvmTransactionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L552: 	RequestEvmFaucetWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L554: 	RequestEvmFaucet(ctx context.Context, body RequestEvmFaucetJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L557: 	ListEvmSmartAccounts(ctx context.Context, params *ListEvmSmartAccountsParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L560: 	CreateEvmSmartAccountWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L562: 	CreateEvmSmartAccount(ctx context.Context, body CreateEvmSmartAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L565: 	GetEvmSmartAccount(ctx context.Context, address string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L568: 	PrepareUserOperationWithBody(ctx context.Context, address string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L570: 	PrepareUserOperation(ctx context.Context, address string, body PrepareUserOperationJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L573: 	GetUserOperation(ctx context.Context, address string, userOpHash string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L576: 	SendUserOperationWithBody(ctx context.Context, address string, userOpHash string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L578: 	SendUserOperation(ctx context.Context, address string, userOpHash string, body SendUserOperationJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L581: 	ListSolanaAccounts(ctx context.Context, params *ListSolanaAccountsParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L584: 	CreateSolanaAccountWithBody(ctx context.Context, params *CreateSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L586: 	CreateSolanaAccount(ctx context.Context, params *CreateSolanaAccountParams, body CreateSolanaAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L589: 	GetSolanaAccountByName(ctx context.Context, name string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L592: 	GetSolanaAccount(ctx context.Context, address string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L595: 	SignSolanaMessageWithBody(ctx context.Context, address string, params *SignSolanaMessageParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L597: 	SignSolanaMessage(ctx context.Context, address string, params *SignSolanaMessageParams, body SignSolanaMessageJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L600: 	SignSolanaTransactionWithBody(ctx context.Context, address string, params *SignSolanaTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L602: 	SignSolanaTransaction(ctx context.Context, address string, params *SignSolanaTransactionParams, body SignSolanaTransactionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L605: 	RequestSolanaFaucetWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L607: 	RequestSolanaFaucet(ctx context.Context, body RequestSolanaFaucetJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L610: func (c *CDPClient) ListEvmAccounts(ctx context.Context, params *ListEvmAccountsParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L622: func (c *CDPClient) CreateEvmAccountWithBody(ctx context.Context, params *CreateEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L634: func (c *CDPClient) CreateEvmAccount(ctx context.Context, params *CreateEvmAccountParams, body CreateEvmAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L646: func (c *CDPClient) GetEvmAccountByName(ctx context.Context, name string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L658: func (c *CDPClient) GetEvmAccount(ctx context.Context, address string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L670: func (c *CDPClient) SignEvmHashWithBody(ctx context.Context, address string, params *SignEvmHashParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L682: func (c *CDPClient) SignEvmHash(ctx context.Context, address string, params *SignEvmHashParams, body SignEvmHashJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L694: func (c *CDPClient) SignEvmMessageWithBody(ctx context.Context, address string, params *SignEvmMessageParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L706: func (c *CDPClient) SignEvmMessage(ctx context.Context, address string, params *SignEvmMessageParams, body SignEvmMessageJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L718: func (c *CDPClient) SignEvmTransactionWithBody(ctx context.Context, address string, params *SignEvmTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L730: func (c *CDPClient) SignEvmTransaction(ctx context.Context, address string, params *SignEvmTransactionParams, body SignEvmTransactionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L742: func (c *CDPClient) RequestEvmFaucetWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L754: func (c *CDPClient) RequestEvmFaucet(ctx context.Context, body RequestEvmFaucetJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L766: func (c *CDPClient) ListEvmSmartAccounts(ctx context.Context, params *ListEvmSmartAccountsParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L778: func (c *CDPClient) CreateEvmSmartAccountWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L790: func (c *CDPClient) CreateEvmSmartAccount(ctx context.Context, body CreateEvmSmartAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L802: func (c *CDPClient) GetEvmSmartAccount(ctx context.Context, address string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L814: func (c *CDPClient) PrepareUserOperationWithBody(ctx context.Context, address string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L826: func (c *CDPClient) PrepareUserOperation(ctx context.Context, address string, body PrepareUserOperationJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L838: func (c *CDPClient) GetUserOperation(ctx context.Context, address string, userOpHash string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L850: func (c *CDPClient) SendUserOperationWithBody(ctx context.Context, address string, userOpHash string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L862: func (c *CDPClient) SendUserOperation(ctx context.Context, address string, userOpHash string, body SendUserOperationJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L874: func (c *CDPClient) ListSolanaAccounts(ctx context.Context, params *ListSolanaAccountsParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L886: func (c *CDPClient) CreateSolanaAccountWithBody(ctx context.Context, params *CreateSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L898: func (c *CDPClient) CreateSolanaAccount(ctx context.Context, params *CreateSolanaAccountParams, body CreateSolanaAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L910: func (c *CDPClient) GetSolanaAccountByName(ctx context.Context, name string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L922: func (c *CDPClient) GetSolanaAccount(ctx context.Context, address string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L934: func (c *CDPClient) SignSolanaMessageWithBody(ctx context.Context, address string, params *SignSolanaMessageParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L946: func (c *CDPClient) SignSolanaMessage(ctx context.Context, address string, params *SignSolanaMessageParams, body SignSolanaMessageJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L958: func (c *CDPClient) SignSolanaTransactionWithBody(ctx context.Context, address string, params *SignSolanaTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L970: func (c *CDPClient) SignSolanaTransaction(ctx context.Context, address string, params *SignSolanaTransactionParams, body SignSolanaTransactionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L982: func (c *CDPClient) RequestSolanaFaucetWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L994: func (c *CDPClient) RequestSolanaFaucet(ctx context.Context, body RequestSolanaFaucetJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L2263: 	HTTPResponse *http.Response
		client.gen.go#L2292: 	HTTPResponse *http.Response
		client.gen.go#L2319: 	HTTPResponse *http.Response
		client.gen.go#L2344: 	HTTPResponse *http.Response
		client.gen.go#L2369: 	HTTPResponse *http.Response
		client.gen.go#L2399: 	HTTPResponse *http.Response
		client.gen.go#L2429: 	HTTPResponse *http.Response
		client.gen.go#L2461: 	HTTPResponse *http.Response
		client.gen.go#L2491: 	HTTPResponse *http.Response
		client.gen.go#L2521: 	HTTPResponse *http.Response
		client.gen.go#L2545: 	HTTPResponse *http.Response
		client.gen.go#L2570: 	HTTPResponse *http.Response
		client.gen.go#L2595: 	HTTPResponse *http.Response
		client.gen.go#L2620: 	HTTPResponse *http.Response
		client.gen.go#L2645: 	HTTPResponse *http.Response
		client.gen.go#L2674: 	HTTPResponse *http.Response
		client.gen.go#L2701: 	HTTPResponse *http.Response
		client.gen.go#L2726: 	HTTPResponse *http.Response
		client.gen.go#L2751: 	HTTPResponse *http.Response
		client.gen.go#L2782: 	HTTPResponse *http.Response
		client.gen.go#L2814: 	HTTPResponse *http.Response
		client.gen.go#L3127: func ParseListEvmAccountsResponse(rsp *http.Response) (*ListEvmAccountsResponse, error) {
		client.gen.go#L3166: func ParseCreateEvmAccountResponse(rsp *http.Response) (*CreateEvmAccountResponse, error) {
		client.gen.go#L3227: func ParseGetEvmAccountByNameResponse(rsp *http.Response) (*GetEvmAccountByNameResponse, error) {
		client.gen.go#L3274: func ParseGetEvmAccountResponse(rsp *http.Response) (*GetEvmAccountResponse, error) {
		client.gen.go#L3321: func ParseSignEvmHashResponse(rsp *http.Response) (*SignEvmHashResponse, error) {
		client.gen.go#L3385: func ParseSignEvmMessageResponse(rsp *http.Response) (*SignEvmMessageResponse, error) {
		client.gen.go#L3449: func ParseSignEvmTransactionResponse(rsp *http.Response) (*SignEvmTransactionResponse, error) {
		client.gen.go#L3527: func ParseRequestEvmFaucetResponse(rsp *http.Response) (*RequestEvmFaucetResponse, error) {
		client.gen.go#L3585: func ParseListEvmSmartAccountsResponse(rsp *http.Response) (*ListEvmSmartAccountsResponse, error) {
		client.gen.go#L3631: func ParseCreateEvmSmartAccountResponse(rsp *http.Response) (*CreateEvmSmartAccountResponse, error) {
		client.gen.go#L3671: func ParseGetEvmSmartAccountResponse(rsp *http.Response) (*GetEvmSmartAccountResponse, error) {
		client.gen.go#L3718: func ParsePrepareUserOperationResponse(rsp *http.Response) (*PrepareUserOperationResponse, error) {
		client.gen.go#L3765: func ParseGetUserOperationResponse(rsp *http.Response) (*GetUserOperationResponse, error) {
		client.gen.go#L3812: func ParseSendUserOperationResponse(rsp *http.Response) (*SendUserOperationResponse, error) {
		client.gen.go#L3859: func ParseListSolanaAccountsResponse(rsp *http.Response) (*ListSolanaAccountsResponse, error) {
		client.gen.go#L3898: func ParseCreateSolanaAccountResponse(rsp *http.Response) (*CreateSolanaAccountResponse, error) {
		client.gen.go#L3959: func ParseGetSolanaAccountByNameResponse(rsp *http.Response) (*GetSolanaAccountByNameResponse, error) {
		client.gen.go#L4006: func ParseGetSolanaAccountResponse(rsp *http.Response) (*GetSolanaAccountResponse, error) {
		client.gen.go#L4053: func ParseSignSolanaMessageResponse(rsp *http.Response) (*SignSolanaMessageResponse, error) {
		client.gen.go#L4124: func ParseSignSolanaTransactionResponse(rsp *http.Response) (*SignSolanaTransactionResponse, error) {
		client.gen.go#L4202: func ParseRequestSolanaFaucetResponse(rsp *http.Response) (*RequestSolanaFaucetResponse, error) {