type net/http.Response

404 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#L840: func Post(url, contentType string, body io.Reader) (resp *Response, err error) {
		client.go#L858: func (c *Client) Post(url, contentType string, body io.Reader) (resp *Response, err error) {
		client.go#L883: func PostForm(url string, data url.Values) (resp *Response, err error) {
		client.go#L901: func (c *Client) PostForm(url string, data url.Values) (resp *Response, err error) {
		client.go#L919: func Head(url string) (resp *Response, err error) {
		client.go#L935: 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#L6330: 	Do(req *http.Request) (*http.Response, error)
		client.gen.go#L6397: 	ListDataTokenBalances(ctx context.Context, network ListEvmTokenBalancesNetwork, address string, params *ListDataTokenBalancesParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6400: 	ListTokensForAccount(ctx context.Context, network ListTokensForAccountParamsNetwork, address string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6403: 	GetSQLGrammar(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6406: 	RunSQLQueryWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6408: 	RunSQLQuery(ctx context.Context, body RunSQLQueryJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6411: 	ListWebhookSubscriptions(ctx context.Context, params *ListWebhookSubscriptionsParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6414: 	CreateWebhookSubscriptionWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6416: 	CreateWebhookSubscription(ctx context.Context, body CreateWebhookSubscriptionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6419: 	DeleteWebhookSubscription(ctx context.Context, subscriptionId openapi_types.UUID, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6422: 	GetWebhookSubscription(ctx context.Context, subscriptionId openapi_types.UUID, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6425: 	UpdateWebhookSubscriptionWithBody(ctx context.Context, subscriptionId openapi_types.UUID, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6427: 	UpdateWebhookSubscription(ctx context.Context, subscriptionId openapi_types.UUID, body UpdateWebhookSubscriptionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6430: 	ListEndUsers(ctx context.Context, params *ListEndUsersParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6433: 	CreateEndUserWithBody(ctx context.Context, params *CreateEndUserParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6435: 	CreateEndUser(ctx context.Context, params *CreateEndUserParams, body CreateEndUserJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6438: 	ValidateEndUserAccessTokenWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6440: 	ValidateEndUserAccessToken(ctx context.Context, body ValidateEndUserAccessTokenJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6443: 	GetEndUser(ctx context.Context, userId string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6446: 	ListEvmAccounts(ctx context.Context, params *ListEvmAccountsParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6449: 	CreateEvmAccountWithBody(ctx context.Context, params *CreateEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6451: 	CreateEvmAccount(ctx context.Context, params *CreateEvmAccountParams, body CreateEvmAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6454: 	GetEvmAccountByName(ctx context.Context, name string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6457: 	ExportEvmAccountByNameWithBody(ctx context.Context, name string, params *ExportEvmAccountByNameParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6459: 	ExportEvmAccountByName(ctx context.Context, name string, params *ExportEvmAccountByNameParams, body ExportEvmAccountByNameJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6462: 	ImportEvmAccountWithBody(ctx context.Context, params *ImportEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6464: 	ImportEvmAccount(ctx context.Context, params *ImportEvmAccountParams, body ImportEvmAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6467: 	GetEvmAccount(ctx context.Context, address string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6470: 	UpdateEvmAccountWithBody(ctx context.Context, address string, params *UpdateEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6472: 	UpdateEvmAccount(ctx context.Context, address string, params *UpdateEvmAccountParams, body UpdateEvmAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6475: 	ExportEvmAccountWithBody(ctx context.Context, address string, params *ExportEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6477: 	ExportEvmAccount(ctx context.Context, address string, params *ExportEvmAccountParams, body ExportEvmAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6480: 	SendEvmTransactionWithBody(ctx context.Context, address string, params *SendEvmTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6482: 	SendEvmTransaction(ctx context.Context, address string, params *SendEvmTransactionParams, body SendEvmTransactionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6485: 	SignEvmHashWithBody(ctx context.Context, address string, params *SignEvmHashParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6487: 	SignEvmHash(ctx context.Context, address string, params *SignEvmHashParams, body SignEvmHashJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6490: 	SignEvmMessageWithBody(ctx context.Context, address string, params *SignEvmMessageParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6492: 	SignEvmMessage(ctx context.Context, address string, params *SignEvmMessageParams, body SignEvmMessageJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6495: 	SignEvmTransactionWithBody(ctx context.Context, address string, params *SignEvmTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6497: 	SignEvmTransaction(ctx context.Context, address string, params *SignEvmTransactionParams, body SignEvmTransactionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6500: 	SignEvmTypedDataWithBody(ctx context.Context, address string, params *SignEvmTypedDataParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6502: 	SignEvmTypedData(ctx context.Context, address string, params *SignEvmTypedDataParams, body SignEvmTypedDataJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6505: 	RequestEvmFaucetWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6507: 	RequestEvmFaucet(ctx context.Context, body RequestEvmFaucetJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6510: 	ListEvmSmartAccounts(ctx context.Context, params *ListEvmSmartAccountsParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6513: 	CreateEvmSmartAccountWithBody(ctx context.Context, params *CreateEvmSmartAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6515: 	CreateEvmSmartAccount(ctx context.Context, params *CreateEvmSmartAccountParams, body CreateEvmSmartAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6518: 	GetEvmSmartAccountByName(ctx context.Context, name string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6521: 	GetEvmSmartAccount(ctx context.Context, address string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6524: 	UpdateEvmSmartAccountWithBody(ctx context.Context, address string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6526: 	UpdateEvmSmartAccount(ctx context.Context, address string, body UpdateEvmSmartAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6529: 	CreateSpendPermissionWithBody(ctx context.Context, address string, params *CreateSpendPermissionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6531: 	CreateSpendPermission(ctx context.Context, address string, params *CreateSpendPermissionParams, body CreateSpendPermissionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6534: 	ListSpendPermissions(ctx context.Context, address string, params *ListSpendPermissionsParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6537: 	RevokeSpendPermissionWithBody(ctx context.Context, address string, params *RevokeSpendPermissionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6539: 	RevokeSpendPermission(ctx context.Context, address string, params *RevokeSpendPermissionParams, body RevokeSpendPermissionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6542: 	PrepareUserOperationWithBody(ctx context.Context, address string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6544: 	PrepareUserOperation(ctx context.Context, address string, body PrepareUserOperationJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6547: 	PrepareAndSendUserOperationWithBody(ctx context.Context, address string, params *PrepareAndSendUserOperationParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6549: 	PrepareAndSendUserOperation(ctx context.Context, address string, params *PrepareAndSendUserOperationParams, body PrepareAndSendUserOperationJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6552: 	GetUserOperation(ctx context.Context, address string, userOpHash string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6555: 	SendUserOperationWithBody(ctx context.Context, address string, userOpHash string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6557: 	SendUserOperation(ctx context.Context, address string, userOpHash string, body SendUserOperationJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6560: 	CreateEvmSwapQuoteWithBody(ctx context.Context, params *CreateEvmSwapQuoteParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6562: 	CreateEvmSwapQuote(ctx context.Context, params *CreateEvmSwapQuoteParams, body CreateEvmSwapQuoteJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6565: 	GetEvmSwapPrice(ctx context.Context, params *GetEvmSwapPriceParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6568: 	ListEvmTokenBalances(ctx context.Context, network ListEvmTokenBalancesNetwork, address string, params *ListEvmTokenBalancesParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6571: 	CreateOnrampOrderWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6573: 	CreateOnrampOrder(ctx context.Context, body CreateOnrampOrderJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6576: 	GetOnrampOrderById(ctx context.Context, orderId string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6579: 	CreateOnrampSessionWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6581: 	CreateOnrampSession(ctx context.Context, body CreateOnrampSessionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6584: 	ListPolicies(ctx context.Context, params *ListPoliciesParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6587: 	CreatePolicyWithBody(ctx context.Context, params *CreatePolicyParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6589: 	CreatePolicy(ctx context.Context, params *CreatePolicyParams, body CreatePolicyJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6592: 	DeletePolicy(ctx context.Context, policyId string, params *DeletePolicyParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6595: 	GetPolicyById(ctx context.Context, policyId string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6598: 	UpdatePolicyWithBody(ctx context.Context, policyId string, params *UpdatePolicyParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6600: 	UpdatePolicy(ctx context.Context, policyId string, params *UpdatePolicyParams, body UpdatePolicyJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6603: 	ListSolanaAccounts(ctx context.Context, params *ListSolanaAccountsParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6606: 	CreateSolanaAccountWithBody(ctx context.Context, params *CreateSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6608: 	CreateSolanaAccount(ctx context.Context, params *CreateSolanaAccountParams, body CreateSolanaAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6611: 	GetSolanaAccountByName(ctx context.Context, name string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6614: 	ExportSolanaAccountByNameWithBody(ctx context.Context, name string, params *ExportSolanaAccountByNameParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6616: 	ExportSolanaAccountByName(ctx context.Context, name string, params *ExportSolanaAccountByNameParams, body ExportSolanaAccountByNameJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6619: 	ImportSolanaAccountWithBody(ctx context.Context, params *ImportSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6621: 	ImportSolanaAccount(ctx context.Context, params *ImportSolanaAccountParams, body ImportSolanaAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6624: 	SendSolanaTransactionWithBody(ctx context.Context, params *SendSolanaTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6626: 	SendSolanaTransaction(ctx context.Context, params *SendSolanaTransactionParams, body SendSolanaTransactionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6629: 	GetSolanaAccount(ctx context.Context, address string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6632: 	UpdateSolanaAccountWithBody(ctx context.Context, address string, params *UpdateSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6634: 	UpdateSolanaAccount(ctx context.Context, address string, params *UpdateSolanaAccountParams, body UpdateSolanaAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6637: 	ExportSolanaAccountWithBody(ctx context.Context, address string, params *ExportSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6639: 	ExportSolanaAccount(ctx context.Context, address string, params *ExportSolanaAccountParams, body ExportSolanaAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6642: 	SignSolanaMessageWithBody(ctx context.Context, address string, params *SignSolanaMessageParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6644: 	SignSolanaMessage(ctx context.Context, address string, params *SignSolanaMessageParams, body SignSolanaMessageJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6647: 	SignSolanaTransactionWithBody(ctx context.Context, address string, params *SignSolanaTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6649: 	SignSolanaTransaction(ctx context.Context, address string, params *SignSolanaTransactionParams, body SignSolanaTransactionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6652: 	RequestSolanaFaucetWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6654: 	RequestSolanaFaucet(ctx context.Context, body RequestSolanaFaucetJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6657: 	ListSolanaTokenBalances(ctx context.Context, network ListSolanaTokenBalancesNetwork, address string, params *ListSolanaTokenBalancesParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6660: 	SettleX402PaymentWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6662: 	SettleX402Payment(ctx context.Context, body SettleX402PaymentJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6665: 	SupportedX402PaymentKinds(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6668: 	VerifyX402PaymentWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6670: 	VerifyX402Payment(ctx context.Context, body VerifyX402PaymentJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L6673: func (c *CDPClient) ListDataTokenBalances(ctx context.Context, network ListEvmTokenBalancesNetwork, address string, params *ListDataTokenBalancesParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6685: func (c *CDPClient) ListTokensForAccount(ctx context.Context, network ListTokensForAccountParamsNetwork, address string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6697: func (c *CDPClient) GetSQLGrammar(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6709: func (c *CDPClient) RunSQLQueryWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6721: func (c *CDPClient) RunSQLQuery(ctx context.Context, body RunSQLQueryJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6733: func (c *CDPClient) ListWebhookSubscriptions(ctx context.Context, params *ListWebhookSubscriptionsParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6745: func (c *CDPClient) CreateWebhookSubscriptionWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6757: func (c *CDPClient) CreateWebhookSubscription(ctx context.Context, body CreateWebhookSubscriptionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6769: func (c *CDPClient) DeleteWebhookSubscription(ctx context.Context, subscriptionId openapi_types.UUID, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6781: func (c *CDPClient) GetWebhookSubscription(ctx context.Context, subscriptionId openapi_types.UUID, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6793: func (c *CDPClient) UpdateWebhookSubscriptionWithBody(ctx context.Context, subscriptionId openapi_types.UUID, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6805: func (c *CDPClient) UpdateWebhookSubscription(ctx context.Context, subscriptionId openapi_types.UUID, body UpdateWebhookSubscriptionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6817: func (c *CDPClient) ListEndUsers(ctx context.Context, params *ListEndUsersParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6829: func (c *CDPClient) CreateEndUserWithBody(ctx context.Context, params *CreateEndUserParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6841: func (c *CDPClient) CreateEndUser(ctx context.Context, params *CreateEndUserParams, body CreateEndUserJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6853: func (c *CDPClient) ValidateEndUserAccessTokenWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6865: func (c *CDPClient) ValidateEndUserAccessToken(ctx context.Context, body ValidateEndUserAccessTokenJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6877: func (c *CDPClient) GetEndUser(ctx context.Context, userId string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6889: func (c *CDPClient) ListEvmAccounts(ctx context.Context, params *ListEvmAccountsParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6901: func (c *CDPClient) CreateEvmAccountWithBody(ctx context.Context, params *CreateEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6913: func (c *CDPClient) CreateEvmAccount(ctx context.Context, params *CreateEvmAccountParams, body CreateEvmAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6925: func (c *CDPClient) GetEvmAccountByName(ctx context.Context, name string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6937: func (c *CDPClient) ExportEvmAccountByNameWithBody(ctx context.Context, name string, params *ExportEvmAccountByNameParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6949: func (c *CDPClient) ExportEvmAccountByName(ctx context.Context, name string, params *ExportEvmAccountByNameParams, body ExportEvmAccountByNameJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6961: func (c *CDPClient) ImportEvmAccountWithBody(ctx context.Context, params *ImportEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6973: func (c *CDPClient) ImportEvmAccount(ctx context.Context, params *ImportEvmAccountParams, body ImportEvmAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6985: func (c *CDPClient) GetEvmAccount(ctx context.Context, address string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6997: func (c *CDPClient) UpdateEvmAccountWithBody(ctx context.Context, address string, params *UpdateEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7009: func (c *CDPClient) UpdateEvmAccount(ctx context.Context, address string, params *UpdateEvmAccountParams, body UpdateEvmAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7021: func (c *CDPClient) ExportEvmAccountWithBody(ctx context.Context, address string, params *ExportEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7033: func (c *CDPClient) ExportEvmAccount(ctx context.Context, address string, params *ExportEvmAccountParams, body ExportEvmAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7045: func (c *CDPClient) SendEvmTransactionWithBody(ctx context.Context, address string, params *SendEvmTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7057: func (c *CDPClient) SendEvmTransaction(ctx context.Context, address string, params *SendEvmTransactionParams, body SendEvmTransactionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7069: func (c *CDPClient) SignEvmHashWithBody(ctx context.Context, address string, params *SignEvmHashParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7081: func (c *CDPClient) SignEvmHash(ctx context.Context, address string, params *SignEvmHashParams, body SignEvmHashJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7093: func (c *CDPClient) SignEvmMessageWithBody(ctx context.Context, address string, params *SignEvmMessageParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7105: func (c *CDPClient) SignEvmMessage(ctx context.Context, address string, params *SignEvmMessageParams, body SignEvmMessageJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7117: func (c *CDPClient) SignEvmTransactionWithBody(ctx context.Context, address string, params *SignEvmTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7129: func (c *CDPClient) SignEvmTransaction(ctx context.Context, address string, params *SignEvmTransactionParams, body SignEvmTransactionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7141: func (c *CDPClient) SignEvmTypedDataWithBody(ctx context.Context, address string, params *SignEvmTypedDataParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7153: func (c *CDPClient) SignEvmTypedData(ctx context.Context, address string, params *SignEvmTypedDataParams, body SignEvmTypedDataJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7165: func (c *CDPClient) RequestEvmFaucetWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7177: func (c *CDPClient) RequestEvmFaucet(ctx context.Context, body RequestEvmFaucetJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7189: func (c *CDPClient) ListEvmSmartAccounts(ctx context.Context, params *ListEvmSmartAccountsParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7201: func (c *CDPClient) CreateEvmSmartAccountWithBody(ctx context.Context, params *CreateEvmSmartAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7213: func (c *CDPClient) CreateEvmSmartAccount(ctx context.Context, params *CreateEvmSmartAccountParams, body CreateEvmSmartAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7225: func (c *CDPClient) GetEvmSmartAccountByName(ctx context.Context, name string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7237: func (c *CDPClient) GetEvmSmartAccount(ctx context.Context, address string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7249: func (c *CDPClient) UpdateEvmSmartAccountWithBody(ctx context.Context, address string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7261: func (c *CDPClient) UpdateEvmSmartAccount(ctx context.Context, address string, body UpdateEvmSmartAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7273: func (c *CDPClient) CreateSpendPermissionWithBody(ctx context.Context, address string, params *CreateSpendPermissionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7285: func (c *CDPClient) CreateSpendPermission(ctx context.Context, address string, params *CreateSpendPermissionParams, body CreateSpendPermissionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7297: func (c *CDPClient) ListSpendPermissions(ctx context.Context, address string, params *ListSpendPermissionsParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7309: func (c *CDPClient) RevokeSpendPermissionWithBody(ctx context.Context, address string, params *RevokeSpendPermissionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7321: func (c *CDPClient) RevokeSpendPermission(ctx context.Context, address string, params *RevokeSpendPermissionParams, body RevokeSpendPermissionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7333: func (c *CDPClient) PrepareUserOperationWithBody(ctx context.Context, address string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7345: func (c *CDPClient) PrepareUserOperation(ctx context.Context, address string, body PrepareUserOperationJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7357: func (c *CDPClient) PrepareAndSendUserOperationWithBody(ctx context.Context, address string, params *PrepareAndSendUserOperationParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7369: func (c *CDPClient) PrepareAndSendUserOperation(ctx context.Context, address string, params *PrepareAndSendUserOperationParams, body PrepareAndSendUserOperationJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7381: func (c *CDPClient) GetUserOperation(ctx context.Context, address string, userOpHash string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7393: func (c *CDPClient) SendUserOperationWithBody(ctx context.Context, address string, userOpHash string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7405: func (c *CDPClient) SendUserOperation(ctx context.Context, address string, userOpHash string, body SendUserOperationJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7417: func (c *CDPClient) CreateEvmSwapQuoteWithBody(ctx context.Context, params *CreateEvmSwapQuoteParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7429: func (c *CDPClient) CreateEvmSwapQuote(ctx context.Context, params *CreateEvmSwapQuoteParams, body CreateEvmSwapQuoteJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7441: func (c *CDPClient) GetEvmSwapPrice(ctx context.Context, params *GetEvmSwapPriceParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7453: func (c *CDPClient) ListEvmTokenBalances(ctx context.Context, network ListEvmTokenBalancesNetwork, address string, params *ListEvmTokenBalancesParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7465: func (c *CDPClient) CreateOnrampOrderWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7477: func (c *CDPClient) CreateOnrampOrder(ctx context.Context, body CreateOnrampOrderJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7489: func (c *CDPClient) GetOnrampOrderById(ctx context.Context, orderId string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7501: func (c *CDPClient) CreateOnrampSessionWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7513: func (c *CDPClient) CreateOnrampSession(ctx context.Context, body CreateOnrampSessionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7525: func (c *CDPClient) ListPolicies(ctx context.Context, params *ListPoliciesParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7537: func (c *CDPClient) CreatePolicyWithBody(ctx context.Context, params *CreatePolicyParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7549: func (c *CDPClient) CreatePolicy(ctx context.Context, params *CreatePolicyParams, body CreatePolicyJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7561: func (c *CDPClient) DeletePolicy(ctx context.Context, policyId string, params *DeletePolicyParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7573: func (c *CDPClient) GetPolicyById(ctx context.Context, policyId string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7585: func (c *CDPClient) UpdatePolicyWithBody(ctx context.Context, policyId string, params *UpdatePolicyParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7597: func (c *CDPClient) UpdatePolicy(ctx context.Context, policyId string, params *UpdatePolicyParams, body UpdatePolicyJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7609: func (c *CDPClient) ListSolanaAccounts(ctx context.Context, params *ListSolanaAccountsParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7621: func (c *CDPClient) CreateSolanaAccountWithBody(ctx context.Context, params *CreateSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7633: func (c *CDPClient) CreateSolanaAccount(ctx context.Context, params *CreateSolanaAccountParams, body CreateSolanaAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7645: func (c *CDPClient) GetSolanaAccountByName(ctx context.Context, name string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7657: func (c *CDPClient) ExportSolanaAccountByNameWithBody(ctx context.Context, name string, params *ExportSolanaAccountByNameParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7669: func (c *CDPClient) ExportSolanaAccountByName(ctx context.Context, name string, params *ExportSolanaAccountByNameParams, body ExportSolanaAccountByNameJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7681: func (c *CDPClient) ImportSolanaAccountWithBody(ctx context.Context, params *ImportSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7693: func (c *CDPClient) ImportSolanaAccount(ctx context.Context, params *ImportSolanaAccountParams, body ImportSolanaAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7705: func (c *CDPClient) SendSolanaTransactionWithBody(ctx context.Context, params *SendSolanaTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7717: func (c *CDPClient) SendSolanaTransaction(ctx context.Context, params *SendSolanaTransactionParams, body SendSolanaTransactionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7729: func (c *CDPClient) GetSolanaAccount(ctx context.Context, address string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7741: func (c *CDPClient) UpdateSolanaAccountWithBody(ctx context.Context, address string, params *UpdateSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7753: func (c *CDPClient) UpdateSolanaAccount(ctx context.Context, address string, params *UpdateSolanaAccountParams, body UpdateSolanaAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7765: func (c *CDPClient) ExportSolanaAccountWithBody(ctx context.Context, address string, params *ExportSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7777: func (c *CDPClient) ExportSolanaAccount(ctx context.Context, address string, params *ExportSolanaAccountParams, body ExportSolanaAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7789: func (c *CDPClient) SignSolanaMessageWithBody(ctx context.Context, address string, params *SignSolanaMessageParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7801: func (c *CDPClient) SignSolanaMessage(ctx context.Context, address string, params *SignSolanaMessageParams, body SignSolanaMessageJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7813: func (c *CDPClient) SignSolanaTransactionWithBody(ctx context.Context, address string, params *SignSolanaTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7825: func (c *CDPClient) SignSolanaTransaction(ctx context.Context, address string, params *SignSolanaTransactionParams, body SignSolanaTransactionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7837: func (c *CDPClient) RequestSolanaFaucetWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7849: func (c *CDPClient) RequestSolanaFaucet(ctx context.Context, body RequestSolanaFaucetJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7861: func (c *CDPClient) ListSolanaTokenBalances(ctx context.Context, network ListSolanaTokenBalancesNetwork, address string, params *ListSolanaTokenBalancesParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7873: func (c *CDPClient) SettleX402PaymentWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7885: func (c *CDPClient) SettleX402Payment(ctx context.Context, body SettleX402PaymentJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7897: func (c *CDPClient) SupportedX402PaymentKinds(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7909: func (c *CDPClient) VerifyX402PaymentWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L7921: func (c *CDPClient) VerifyX402Payment(ctx context.Context, body VerifyX402PaymentJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L12010: 	HTTPResponse *http.Response
		client.gen.go#L12043: 	HTTPResponse *http.Response
		client.gen.go#L12069: 	HTTPResponse *http.Response
		client.gen.go#L12095: 	HTTPResponse *http.Response
		client.gen.go#L12123: 	HTTPResponse *http.Response
		client.gen.go#L12149: 	HTTPResponse *http.Response
		client.gen.go#L12175: 	HTTPResponse *http.Response
		client.gen.go#L12200: 	HTTPResponse *http.Response
		client.gen.go#L12226: 	HTTPResponse *http.Response
		client.gen.go#L12253: 	HTTPResponse *http.Response
		client.gen.go#L12286: 	HTTPResponse *http.Response
		client.gen.go#L12313: 	HTTPResponse *http.Response
		client.gen.go#L12339: 	HTTPResponse *http.Response
		client.gen.go#L12363: 	HTTPResponse *http.Response
		client.gen.go#L12394: 	HTTPResponse *http.Response
		client.gen.go#L12424: 	HTTPResponse *http.Response
		client.gen.go#L12451: 	HTTPResponse *http.Response
		client.gen.go#L12484: 	HTTPResponse *http.Response
		client.gen.go#L12514: 	HTTPResponse *http.Response
		client.gen.go#L12541: 	HTTPResponse *http.Response
		client.gen.go#L12570: 	HTTPResponse *http.Response
		client.gen.go#L12603: 	HTTPResponse *http.Response
		client.gen.go#L12638: 	HTTPResponse *http.Response
		client.gen.go#L12671: 	HTTPResponse *http.Response
		client.gen.go#L12704: 	HTTPResponse *http.Response
		client.gen.go#L12739: 	HTTPResponse *http.Response
		client.gen.go#L12772: 	HTTPResponse *http.Response
		client.gen.go#L12804: 	HTTPResponse *http.Response
		client.gen.go#L12836: 	HTTPResponse *http.Response
		client.gen.go#L12863: 	HTTPResponse *http.Response
		client.gen.go#L12890: 	HTTPResponse *http.Response
		client.gen.go#L12917: 	HTTPResponse *http.Response
		client.gen.go#L12946: 	HTTPResponse *http.Response
		client.gen.go#L12973: 	HTTPResponse *http.Response
		client.gen.go#L13006: 	HTTPResponse *http.Response
		client.gen.go#L13033: 	HTTPResponse *http.Response
		client.gen.go#L13061: 	HTTPResponse *http.Response
		client.gen.go#L13092: 	HTTPResponse *http.Response
		client.gen.go#L13119: 	HTTPResponse *http.Response
		client.gen.go#L13149: 	HTTPResponse *http.Response
		client.gen.go#L13176: 	HTTPResponse *http.Response
		client.gen.go#L13203: 	HTTPResponse *http.Response
		client.gen.go#L13236: 	HTTPResponse *http.Response
		client.gen.go#L13270: 	HTTPResponse *http.Response
		client.gen.go#L13298: 	HTTPResponse *http.Response
		client.gen.go#L13330: 	HTTPResponse *http.Response
		client.gen.go#L13361: 	HTTPResponse *http.Response
		client.gen.go#L13389: 	HTTPResponse *http.Response
		client.gen.go#L13417: 	HTTPResponse *http.Response
		client.gen.go#L13443: 	HTTPResponse *http.Response
		client.gen.go#L13472: 	HTTPResponse *http.Response
		client.gen.go#L13503: 	HTTPResponse *http.Response
		client.gen.go#L13533: 	HTTPResponse *http.Response
		client.gen.go#L13560: 	HTTPResponse *http.Response
		client.gen.go#L13593: 	HTTPResponse *http.Response
		client.gen.go#L13623: 	HTTPResponse *http.Response
		client.gen.go#L13657: 	HTTPResponse *http.Response
		client.gen.go#L13684: 	HTTPResponse *http.Response
		client.gen.go#L13713: 	HTTPResponse *http.Response
		client.gen.go#L13746: 	HTTPResponse *http.Response
		client.gen.go#L13780: 	HTTPResponse *http.Response
		client.gen.go#L13815: 	HTTPResponse *http.Response
		client.gen.go#L13846: 	HTTPResponse *http.Response
		client.gen.go#L13879: 	HTTPResponse *http.Response
		client.gen.go#L13905: 	HTTPResponse *http.Response
		client.gen.go#L13930: 	HTTPResponse *http.Response
		client.gen.go#L14861: func ParseListDataTokenBalancesResponse(rsp *http.Response) (*ListDataTokenBalancesResponse, error) {
		client.gen.go#L14928: func ParseListTokensForAccountResponse(rsp *http.Response) (*ListTokensForAccountResponse, error) {
		client.gen.go#L14982: func ParseGetSQLGrammarResponse(rsp *http.Response) (*GetSQLGrammarResponse, error) {
		client.gen.go#L15036: func ParseRunSQLQueryResponse(rsp *http.Response) (*RunSQLQueryResponse, error) {
		client.gen.go#L15104: func ParseListWebhookSubscriptionsResponse(rsp *http.Response) (*ListWebhookSubscriptionsResponse, error) {
		client.gen.go#L15158: func ParseCreateWebhookSubscriptionResponse(rsp *http.Response) (*CreateWebhookSubscriptionResponse, error) {
		client.gen.go#L15212: func ParseDeleteWebhookSubscriptionResponse(rsp *http.Response) (*DeleteWebhookSubscriptionResponse, error) {
		client.gen.go#L15259: func ParseGetWebhookSubscriptionResponse(rsp *http.Response) (*GetWebhookSubscriptionResponse, error) {
		client.gen.go#L15313: func ParseUpdateWebhookSubscriptionResponse(rsp *http.Response) (*UpdateWebhookSubscriptionResponse, error) {
		client.gen.go#L15374: func ParseListEndUsersResponse(rsp *http.Response) (*ListEndUsersResponse, error) {
		client.gen.go#L15441: func ParseCreateEndUserResponse(rsp *http.Response) (*CreateEndUserResponse, error) {
		client.gen.go#L15502: func ParseValidateEndUserAccessTokenResponse(rsp *http.Response) (*ValidateEndUserAccessTokenResponse, error) {
		client.gen.go#L15556: func ParseGetEndUserResponse(rsp *http.Response) (*GetEndUserResponse, error) {
		client.gen.go#L15596: func ParseListEvmAccountsResponse(rsp *http.Response) (*ListEvmAccountsResponse, error) {
		client.gen.go#L15649: func ParseCreateEvmAccountResponse(rsp *http.Response) (*CreateEvmAccountResponse, error) {
		client.gen.go#L15731: func ParseGetEvmAccountByNameResponse(rsp *http.Response) (*GetEvmAccountByNameResponse, error) {
		client.gen.go#L15792: func ParseExportEvmAccountByNameResponse(rsp *http.Response) (*ExportEvmAccountByNameResponse, error) {
		client.gen.go#L15877: func ParseImportEvmAccountResponse(rsp *http.Response) (*ImportEvmAccountResponse, error) {
		client.gen.go#L15959: func ParseGetEvmAccountResponse(rsp *http.Response) (*GetEvmAccountResponse, error) {
		client.gen.go#L16020: func ParseUpdateEvmAccountResponse(rsp *http.Response) (*UpdateEvmAccountResponse, error) {
		client.gen.go#L16095: func ParseExportEvmAccountResponse(rsp *http.Response) (*ExportEvmAccountResponse, error) {
		client.gen.go#L16180: func ParseSendEvmTransactionResponse(rsp *http.Response) (*SendEvmTransactionResponse, error) {
		client.gen.go#L16279: func ParseSignEvmHashResponse(rsp *http.Response) (*SignEvmHashResponse, error) {
		client.gen.go#L16364: func ParseSignEvmMessageResponse(rsp *http.Response) (*SignEvmMessageResponse, error) {
		client.gen.go#L16449: func ParseSignEvmTransactionResponse(rsp *http.Response) (*SignEvmTransactionResponse, error) {
		client.gen.go#L16548: func ParseSignEvmTypedDataResponse(rsp *http.Response) (*SignEvmTypedDataResponse, error) {
		client.gen.go#L16633: func ParseRequestEvmFaucetResponse(rsp *http.Response) (*RequestEvmFaucetResponse, error) {
		client.gen.go#L16705: func ParseListEvmSmartAccountsResponse(rsp *http.Response) (*ListEvmSmartAccountsResponse, error) {
		client.gen.go#L16765: func ParseCreateEvmSmartAccountResponse(rsp *http.Response) (*CreateEvmSmartAccountResponse, error) {
		client.gen.go#L16826: func ParseGetEvmSmartAccountByNameResponse(rsp *http.Response) (*GetEvmSmartAccountByNameResponse, error) {
		client.gen.go#L16887: func ParseGetEvmSmartAccountResponse(rsp *http.Response) (*GetEvmSmartAccountResponse, error) {
		client.gen.go#L16948: func ParseUpdateEvmSmartAccountResponse(rsp *http.Response) (*UpdateEvmSmartAccountResponse, error) {
		client.gen.go#L17023: func ParseCreateSpendPermissionResponse(rsp *http.Response) (*CreateSpendPermissionResponse, error) {
		client.gen.go#L17084: func ParseListSpendPermissionsResponse(rsp *http.Response) (*ListSpendPermissionsResponse, error) {
		client.gen.go#L17151: func ParseRevokeSpendPermissionResponse(rsp *http.Response) (*RevokeSpendPermissionResponse, error) {
		client.gen.go#L17212: func ParsePrepareUserOperationResponse(rsp *http.Response) (*PrepareUserOperationResponse, error) {
		client.gen.go#L17280: func ParsePrepareAndSendUserOperationResponse(rsp *http.Response) (*PrepareAndSendUserOperationResponse, error) {
		client.gen.go#L17369: func ParseGetUserOperationResponse(rsp *http.Response) (*GetUserOperationResponse, error) {
		client.gen.go#L17430: func ParseSendUserOperationResponse(rsp *http.Response) (*SendUserOperationResponse, error) {
		client.gen.go#L17512: func ParseCreateEvmSwapQuoteResponse(rsp *http.Response) (*CreateEvmSwapQuoteResponse, error) {
		client.gen.go#L17573: func ParseGetEvmSwapPriceResponse(rsp *http.Response) (*GetEvmSwapPriceResponse, error) {
		client.gen.go#L17634: func ParseListEvmTokenBalancesResponse(rsp *http.Response) (*ListEvmTokenBalancesResponse, error) {
		client.gen.go#L17701: func ParseCreateOnrampOrderResponse(rsp *http.Response) (*CreateOnrampOrderResponse, error) {
		client.gen.go#L17763: func ParseGetOnrampOrderByIdResponse(rsp *http.Response) (*GetOnrampOrderByIdResponse, error) {
		client.gen.go#L17813: func ParseCreateOnrampSessionResponse(rsp *http.Response) (*CreateOnrampSessionResponse, error) {
		client.gen.go#L17873: func ParseListPoliciesResponse(rsp *http.Response) (*ListPoliciesResponse, error) {
		client.gen.go#L17926: func ParseCreatePolicyResponse(rsp *http.Response) (*CreatePolicyResponse, error) {
		client.gen.go#L17994: func ParseDeletePolicyResponse(rsp *http.Response) (*DeletePolicyResponse, error) {
		client.gen.go#L18062: func ParseGetPolicyByIdResponse(rsp *http.Response) (*GetPolicyByIdResponse, error) {
		client.gen.go#L18116: func ParseUpdatePolicyResponse(rsp *http.Response) (*UpdatePolicyResponse, error) {
		client.gen.go#L18191: func ParseListSolanaAccountsResponse(rsp *http.Response) (*ListSolanaAccountsResponse, error) {
		client.gen.go#L18244: func ParseCreateSolanaAccountResponse(rsp *http.Response) (*CreateSolanaAccountResponse, error) {
		client.gen.go#L18326: func ParseGetSolanaAccountByNameResponse(rsp *http.Response) (*GetSolanaAccountByNameResponse, error) {
		client.gen.go#L18387: func ParseExportSolanaAccountByNameResponse(rsp *http.Response) (*ExportSolanaAccountByNameResponse, error) {
		client.gen.go#L18472: func ParseImportSolanaAccountResponse(rsp *http.Response) (*ImportSolanaAccountResponse, error) {
		client.gen.go#L18554: func ParseSendSolanaTransactionResponse(rsp *http.Response) (*SendSolanaTransactionResponse, error) {
		client.gen.go#L18646: func ParseGetSolanaAccountResponse(rsp *http.Response) (*GetSolanaAccountResponse, error) {
		client.gen.go#L18707: func ParseUpdateSolanaAccountResponse(rsp *http.Response) (*UpdateSolanaAccountResponse, error) {
		client.gen.go#L18782: func ParseExportSolanaAccountResponse(rsp *http.Response) (*ExportSolanaAccountResponse, error) {
		client.gen.go#L18867: func ParseSignSolanaMessageResponse(rsp *http.Response) (*SignSolanaMessageResponse, error) {
		client.gen.go#L18959: func ParseSignSolanaTransactionResponse(rsp *http.Response) (*SignSolanaTransactionResponse, error) {
		client.gen.go#L19058: func ParseRequestSolanaFaucetResponse(rsp *http.Response) (*RequestSolanaFaucetResponse, error) {
		client.gen.go#L19129: func ParseListSolanaTokenBalancesResponse(rsp *http.Response) (*ListSolanaTokenBalancesResponse, error) {
		client.gen.go#L19196: func ParseSettleX402PaymentResponse(rsp *http.Response) (*SettleX402PaymentResponse, error) {
		client.gen.go#L19250: func ParseSupportedX402PaymentKindsResponse(rsp *http.Response) (*SupportedX402PaymentKindsResponse, error) {
		client.gen.go#L19297: func ParseVerifyX402PaymentResponse(rsp *http.Response) (*VerifyX402PaymentResponse, error) {