type net/http.Response

452 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#L8337: 	Do(req *http.Request) (*http.Response, error)
		client.gen.go#L8404: 	ListDataTokenBalances(ctx context.Context, network ListEvmTokenBalancesNetwork, address string, params *ListDataTokenBalancesParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8407: 	ListTokensForAccount(ctx context.Context, network ListTokensForAccountParamsNetwork, address string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8410: 	GetSQLGrammar(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8413: 	RunSQLQueryWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8415: 	RunSQLQuery(ctx context.Context, body RunSQLQueryJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8418: 	GetSQLSchema(ctx context.Context, params *GetSQLSchemaParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8421: 	ListWebhookSubscriptions(ctx context.Context, params *ListWebhookSubscriptionsParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8424: 	CreateWebhookSubscriptionWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8426: 	CreateWebhookSubscription(ctx context.Context, body CreateWebhookSubscriptionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8429: 	DeleteWebhookSubscription(ctx context.Context, subscriptionId openapi_types.UUID, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8432: 	GetWebhookSubscription(ctx context.Context, subscriptionId openapi_types.UUID, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8435: 	UpdateWebhookSubscriptionWithBody(ctx context.Context, subscriptionId openapi_types.UUID, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8437: 	UpdateWebhookSubscription(ctx context.Context, subscriptionId openapi_types.UUID, body UpdateWebhookSubscriptionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8440: 	ListWebhookSubscriptionEvents(ctx context.Context, subscriptionId openapi_types.UUID, params *ListWebhookSubscriptionEventsParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8443: 	ListEndUsers(ctx context.Context, params *ListEndUsersParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8446: 	CreateEndUserWithBody(ctx context.Context, params *CreateEndUserParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8448: 	CreateEndUser(ctx context.Context, params *CreateEndUserParams, body CreateEndUserJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8451: 	ValidateEndUserAccessTokenWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8453: 	ValidateEndUserAccessToken(ctx context.Context, body ValidateEndUserAccessTokenJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8456: 	ImportEndUserWithBody(ctx context.Context, params *ImportEndUserParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8458: 	ImportEndUser(ctx context.Context, params *ImportEndUserParams, body ImportEndUserJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8461: 	GetEndUser(ctx context.Context, userId string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8464: 	AddEndUserEvmAccountWithBody(ctx context.Context, userId string, params *AddEndUserEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8466: 	AddEndUserEvmAccount(ctx context.Context, userId string, params *AddEndUserEvmAccountParams, body AddEndUserEvmAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8469: 	AddEndUserEvmSmartAccountWithBody(ctx context.Context, userId string, params *AddEndUserEvmSmartAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8471: 	AddEndUserEvmSmartAccount(ctx context.Context, userId string, params *AddEndUserEvmSmartAccountParams, body AddEndUserEvmSmartAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8474: 	AddEndUserSolanaAccountWithBody(ctx context.Context, userId string, params *AddEndUserSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8476: 	AddEndUserSolanaAccount(ctx context.Context, userId string, params *AddEndUserSolanaAccountParams, body AddEndUserSolanaAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8479: 	ListEvmAccounts(ctx context.Context, params *ListEvmAccountsParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8482: 	CreateEvmAccountWithBody(ctx context.Context, params *CreateEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8484: 	CreateEvmAccount(ctx context.Context, params *CreateEvmAccountParams, body CreateEvmAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8487: 	GetEvmAccountByName(ctx context.Context, name string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8490: 	ExportEvmAccountByNameWithBody(ctx context.Context, name string, params *ExportEvmAccountByNameParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8492: 	ExportEvmAccountByName(ctx context.Context, name string, params *ExportEvmAccountByNameParams, body ExportEvmAccountByNameJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8495: 	ImportEvmAccountWithBody(ctx context.Context, params *ImportEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8497: 	ImportEvmAccount(ctx context.Context, params *ImportEvmAccountParams, body ImportEvmAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8500: 	GetEvmAccount(ctx context.Context, address string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8503: 	UpdateEvmAccountWithBody(ctx context.Context, address string, params *UpdateEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8505: 	UpdateEvmAccount(ctx context.Context, address string, params *UpdateEvmAccountParams, body UpdateEvmAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8508: 	CreateEvmEip7702DelegationWithBody(ctx context.Context, address string, params *CreateEvmEip7702DelegationParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8510: 	CreateEvmEip7702Delegation(ctx context.Context, address string, params *CreateEvmEip7702DelegationParams, body CreateEvmEip7702DelegationJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8513: 	ExportEvmAccountWithBody(ctx context.Context, address string, params *ExportEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8515: 	ExportEvmAccount(ctx context.Context, address string, params *ExportEvmAccountParams, body ExportEvmAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8518: 	SendEvmTransactionWithBody(ctx context.Context, address string, params *SendEvmTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8520: 	SendEvmTransaction(ctx context.Context, address string, params *SendEvmTransactionParams, body SendEvmTransactionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8523: 	SignEvmHashWithBody(ctx context.Context, address string, params *SignEvmHashParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8525: 	SignEvmHash(ctx context.Context, address string, params *SignEvmHashParams, body SignEvmHashJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8528: 	SignEvmMessageWithBody(ctx context.Context, address string, params *SignEvmMessageParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8530: 	SignEvmMessage(ctx context.Context, address string, params *SignEvmMessageParams, body SignEvmMessageJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8533: 	SignEvmTransactionWithBody(ctx context.Context, address string, params *SignEvmTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8535: 	SignEvmTransaction(ctx context.Context, address string, params *SignEvmTransactionParams, body SignEvmTransactionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8538: 	SignEvmTypedDataWithBody(ctx context.Context, address string, params *SignEvmTypedDataParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8540: 	SignEvmTypedData(ctx context.Context, address string, params *SignEvmTypedDataParams, body SignEvmTypedDataJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8543: 	GetEvmEip7702DelegationOperationById(ctx context.Context, delegationOperationId openapi_types.UUID, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8546: 	RequestEvmFaucetWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8548: 	RequestEvmFaucet(ctx context.Context, body RequestEvmFaucetJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8551: 	ListEvmSmartAccounts(ctx context.Context, params *ListEvmSmartAccountsParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8554: 	CreateEvmSmartAccountWithBody(ctx context.Context, params *CreateEvmSmartAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8556: 	CreateEvmSmartAccount(ctx context.Context, params *CreateEvmSmartAccountParams, body CreateEvmSmartAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8559: 	GetEvmSmartAccountByName(ctx context.Context, name string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8562: 	GetEvmSmartAccount(ctx context.Context, address string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8565: 	UpdateEvmSmartAccountWithBody(ctx context.Context, address string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8567: 	UpdateEvmSmartAccount(ctx context.Context, address string, body UpdateEvmSmartAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8570: 	CreateSpendPermissionWithBody(ctx context.Context, address string, params *CreateSpendPermissionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8572: 	CreateSpendPermission(ctx context.Context, address string, params *CreateSpendPermissionParams, body CreateSpendPermissionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8575: 	ListSpendPermissions(ctx context.Context, address string, params *ListSpendPermissionsParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8578: 	RevokeSpendPermissionWithBody(ctx context.Context, address string, params *RevokeSpendPermissionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8580: 	RevokeSpendPermission(ctx context.Context, address string, params *RevokeSpendPermissionParams, body RevokeSpendPermissionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8583: 	PrepareUserOperationWithBody(ctx context.Context, address string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8585: 	PrepareUserOperation(ctx context.Context, address string, body PrepareUserOperationJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8588: 	PrepareAndSendUserOperationWithBody(ctx context.Context, address string, params *PrepareAndSendUserOperationParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8590: 	PrepareAndSendUserOperation(ctx context.Context, address string, params *PrepareAndSendUserOperationParams, body PrepareAndSendUserOperationJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8593: 	GetUserOperation(ctx context.Context, address string, userOpHash string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8596: 	SendUserOperationWithBody(ctx context.Context, address string, userOpHash string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8598: 	SendUserOperation(ctx context.Context, address string, userOpHash string, body SendUserOperationJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8601: 	CreateEvmSwapQuoteWithBody(ctx context.Context, params *CreateEvmSwapQuoteParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8603: 	CreateEvmSwapQuote(ctx context.Context, params *CreateEvmSwapQuoteParams, body CreateEvmSwapQuoteJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8606: 	GetEvmSwapPrice(ctx context.Context, params *GetEvmSwapPriceParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8609: 	ListEvmTokenBalances(ctx context.Context, network ListEvmTokenBalancesNetwork, address string, params *ListEvmTokenBalancesParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8612: 	GetOnrampUserLimitsWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8614: 	GetOnrampUserLimits(ctx context.Context, body GetOnrampUserLimitsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8617: 	CreateOnrampOrderWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8619: 	CreateOnrampOrder(ctx context.Context, body CreateOnrampOrderJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8622: 	GetOnrampOrderById(ctx context.Context, orderId string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8625: 	CreateOnrampSessionWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8627: 	CreateOnrampSession(ctx context.Context, body CreateOnrampSessionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8630: 	ListPolicies(ctx context.Context, params *ListPoliciesParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8633: 	CreatePolicyWithBody(ctx context.Context, params *CreatePolicyParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8635: 	CreatePolicy(ctx context.Context, params *CreatePolicyParams, body CreatePolicyJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8638: 	DeletePolicy(ctx context.Context, policyId string, params *DeletePolicyParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8641: 	GetPolicyById(ctx context.Context, policyId string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8644: 	UpdatePolicyWithBody(ctx context.Context, policyId string, params *UpdatePolicyParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8646: 	UpdatePolicy(ctx context.Context, policyId string, params *UpdatePolicyParams, body UpdatePolicyJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8649: 	ListSolanaAccounts(ctx context.Context, params *ListSolanaAccountsParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8652: 	CreateSolanaAccountWithBody(ctx context.Context, params *CreateSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8654: 	CreateSolanaAccount(ctx context.Context, params *CreateSolanaAccountParams, body CreateSolanaAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8657: 	GetSolanaAccountByName(ctx context.Context, name string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8660: 	ExportSolanaAccountByNameWithBody(ctx context.Context, name string, params *ExportSolanaAccountByNameParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8662: 	ExportSolanaAccountByName(ctx context.Context, name string, params *ExportSolanaAccountByNameParams, body ExportSolanaAccountByNameJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8665: 	ImportSolanaAccountWithBody(ctx context.Context, params *ImportSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8667: 	ImportSolanaAccount(ctx context.Context, params *ImportSolanaAccountParams, body ImportSolanaAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8670: 	SendSolanaTransactionWithBody(ctx context.Context, params *SendSolanaTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8672: 	SendSolanaTransaction(ctx context.Context, params *SendSolanaTransactionParams, body SendSolanaTransactionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8675: 	GetSolanaAccount(ctx context.Context, address string, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8678: 	UpdateSolanaAccountWithBody(ctx context.Context, address string, params *UpdateSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8680: 	UpdateSolanaAccount(ctx context.Context, address string, params *UpdateSolanaAccountParams, body UpdateSolanaAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8683: 	ExportSolanaAccountWithBody(ctx context.Context, address string, params *ExportSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8685: 	ExportSolanaAccount(ctx context.Context, address string, params *ExportSolanaAccountParams, body ExportSolanaAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8688: 	SignSolanaMessageWithBody(ctx context.Context, address string, params *SignSolanaMessageParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8690: 	SignSolanaMessage(ctx context.Context, address string, params *SignSolanaMessageParams, body SignSolanaMessageJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8693: 	SignSolanaTransactionWithBody(ctx context.Context, address string, params *SignSolanaTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8695: 	SignSolanaTransaction(ctx context.Context, address string, params *SignSolanaTransactionParams, body SignSolanaTransactionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8698: 	RequestSolanaFaucetWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8700: 	RequestSolanaFaucet(ctx context.Context, body RequestSolanaFaucetJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8703: 	ListSolanaTokenBalances(ctx context.Context, network ListSolanaTokenBalancesNetwork, address string, params *ListSolanaTokenBalancesParams, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8706: 	SettleX402PaymentWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8708: 	SettleX402Payment(ctx context.Context, body SettleX402PaymentJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8711: 	SupportedX402PaymentKinds(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8714: 	VerifyX402PaymentWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8716: 	VerifyX402Payment(ctx context.Context, body VerifyX402PaymentJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L8719: func (c *CDPClient) ListDataTokenBalances(ctx context.Context, network ListEvmTokenBalancesNetwork, address string, params *ListDataTokenBalancesParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L8731: func (c *CDPClient) ListTokensForAccount(ctx context.Context, network ListTokensForAccountParamsNetwork, address string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L8743: func (c *CDPClient) GetSQLGrammar(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L8755: func (c *CDPClient) RunSQLQueryWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L8767: func (c *CDPClient) RunSQLQuery(ctx context.Context, body RunSQLQueryJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L8779: func (c *CDPClient) GetSQLSchema(ctx context.Context, params *GetSQLSchemaParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L8791: func (c *CDPClient) ListWebhookSubscriptions(ctx context.Context, params *ListWebhookSubscriptionsParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L8803: func (c *CDPClient) CreateWebhookSubscriptionWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L8815: func (c *CDPClient) CreateWebhookSubscription(ctx context.Context, body CreateWebhookSubscriptionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L8827: func (c *CDPClient) DeleteWebhookSubscription(ctx context.Context, subscriptionId openapi_types.UUID, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L8839: func (c *CDPClient) GetWebhookSubscription(ctx context.Context, subscriptionId openapi_types.UUID, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L8851: func (c *CDPClient) UpdateWebhookSubscriptionWithBody(ctx context.Context, subscriptionId openapi_types.UUID, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L8863: func (c *CDPClient) UpdateWebhookSubscription(ctx context.Context, subscriptionId openapi_types.UUID, body UpdateWebhookSubscriptionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L8875: func (c *CDPClient) ListWebhookSubscriptionEvents(ctx context.Context, subscriptionId openapi_types.UUID, params *ListWebhookSubscriptionEventsParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L8887: func (c *CDPClient) ListEndUsers(ctx context.Context, params *ListEndUsersParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L8899: func (c *CDPClient) CreateEndUserWithBody(ctx context.Context, params *CreateEndUserParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L8911: func (c *CDPClient) CreateEndUser(ctx context.Context, params *CreateEndUserParams, body CreateEndUserJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L8923: func (c *CDPClient) ValidateEndUserAccessTokenWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L8935: func (c *CDPClient) ValidateEndUserAccessToken(ctx context.Context, body ValidateEndUserAccessTokenJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L8947: func (c *CDPClient) ImportEndUserWithBody(ctx context.Context, params *ImportEndUserParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L8959: func (c *CDPClient) ImportEndUser(ctx context.Context, params *ImportEndUserParams, body ImportEndUserJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L8971: func (c *CDPClient) GetEndUser(ctx context.Context, userId string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L8983: func (c *CDPClient) AddEndUserEvmAccountWithBody(ctx context.Context, userId string, params *AddEndUserEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L8995: func (c *CDPClient) AddEndUserEvmAccount(ctx context.Context, userId string, params *AddEndUserEvmAccountParams, body AddEndUserEvmAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9007: func (c *CDPClient) AddEndUserEvmSmartAccountWithBody(ctx context.Context, userId string, params *AddEndUserEvmSmartAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9019: func (c *CDPClient) AddEndUserEvmSmartAccount(ctx context.Context, userId string, params *AddEndUserEvmSmartAccountParams, body AddEndUserEvmSmartAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9031: func (c *CDPClient) AddEndUserSolanaAccountWithBody(ctx context.Context, userId string, params *AddEndUserSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9043: func (c *CDPClient) AddEndUserSolanaAccount(ctx context.Context, userId string, params *AddEndUserSolanaAccountParams, body AddEndUserSolanaAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9055: func (c *CDPClient) ListEvmAccounts(ctx context.Context, params *ListEvmAccountsParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9067: func (c *CDPClient) CreateEvmAccountWithBody(ctx context.Context, params *CreateEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9079: func (c *CDPClient) CreateEvmAccount(ctx context.Context, params *CreateEvmAccountParams, body CreateEvmAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9091: func (c *CDPClient) GetEvmAccountByName(ctx context.Context, name string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9103: func (c *CDPClient) ExportEvmAccountByNameWithBody(ctx context.Context, name string, params *ExportEvmAccountByNameParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9115: func (c *CDPClient) ExportEvmAccountByName(ctx context.Context, name string, params *ExportEvmAccountByNameParams, body ExportEvmAccountByNameJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9127: func (c *CDPClient) ImportEvmAccountWithBody(ctx context.Context, params *ImportEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9139: func (c *CDPClient) ImportEvmAccount(ctx context.Context, params *ImportEvmAccountParams, body ImportEvmAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9151: func (c *CDPClient) GetEvmAccount(ctx context.Context, address string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9163: func (c *CDPClient) UpdateEvmAccountWithBody(ctx context.Context, address string, params *UpdateEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9175: func (c *CDPClient) UpdateEvmAccount(ctx context.Context, address string, params *UpdateEvmAccountParams, body UpdateEvmAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9187: func (c *CDPClient) CreateEvmEip7702DelegationWithBody(ctx context.Context, address string, params *CreateEvmEip7702DelegationParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9199: func (c *CDPClient) CreateEvmEip7702Delegation(ctx context.Context, address string, params *CreateEvmEip7702DelegationParams, body CreateEvmEip7702DelegationJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9211: func (c *CDPClient) ExportEvmAccountWithBody(ctx context.Context, address string, params *ExportEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9223: func (c *CDPClient) ExportEvmAccount(ctx context.Context, address string, params *ExportEvmAccountParams, body ExportEvmAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9235: func (c *CDPClient) SendEvmTransactionWithBody(ctx context.Context, address string, params *SendEvmTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9247: func (c *CDPClient) SendEvmTransaction(ctx context.Context, address string, params *SendEvmTransactionParams, body SendEvmTransactionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9259: func (c *CDPClient) SignEvmHashWithBody(ctx context.Context, address string, params *SignEvmHashParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9271: func (c *CDPClient) SignEvmHash(ctx context.Context, address string, params *SignEvmHashParams, body SignEvmHashJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9283: func (c *CDPClient) SignEvmMessageWithBody(ctx context.Context, address string, params *SignEvmMessageParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9295: func (c *CDPClient) SignEvmMessage(ctx context.Context, address string, params *SignEvmMessageParams, body SignEvmMessageJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9307: func (c *CDPClient) SignEvmTransactionWithBody(ctx context.Context, address string, params *SignEvmTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9319: func (c *CDPClient) SignEvmTransaction(ctx context.Context, address string, params *SignEvmTransactionParams, body SignEvmTransactionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9331: func (c *CDPClient) SignEvmTypedDataWithBody(ctx context.Context, address string, params *SignEvmTypedDataParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9343: func (c *CDPClient) SignEvmTypedData(ctx context.Context, address string, params *SignEvmTypedDataParams, body SignEvmTypedDataJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9355: func (c *CDPClient) GetEvmEip7702DelegationOperationById(ctx context.Context, delegationOperationId openapi_types.UUID, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9367: func (c *CDPClient) RequestEvmFaucetWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9379: func (c *CDPClient) RequestEvmFaucet(ctx context.Context, body RequestEvmFaucetJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9391: func (c *CDPClient) ListEvmSmartAccounts(ctx context.Context, params *ListEvmSmartAccountsParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9403: func (c *CDPClient) CreateEvmSmartAccountWithBody(ctx context.Context, params *CreateEvmSmartAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9415: func (c *CDPClient) CreateEvmSmartAccount(ctx context.Context, params *CreateEvmSmartAccountParams, body CreateEvmSmartAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9427: func (c *CDPClient) GetEvmSmartAccountByName(ctx context.Context, name string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9439: func (c *CDPClient) GetEvmSmartAccount(ctx context.Context, address string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9451: func (c *CDPClient) UpdateEvmSmartAccountWithBody(ctx context.Context, address string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9463: func (c *CDPClient) UpdateEvmSmartAccount(ctx context.Context, address string, body UpdateEvmSmartAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9475: func (c *CDPClient) CreateSpendPermissionWithBody(ctx context.Context, address string, params *CreateSpendPermissionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9487: func (c *CDPClient) CreateSpendPermission(ctx context.Context, address string, params *CreateSpendPermissionParams, body CreateSpendPermissionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9499: func (c *CDPClient) ListSpendPermissions(ctx context.Context, address string, params *ListSpendPermissionsParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9511: func (c *CDPClient) RevokeSpendPermissionWithBody(ctx context.Context, address string, params *RevokeSpendPermissionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9523: func (c *CDPClient) RevokeSpendPermission(ctx context.Context, address string, params *RevokeSpendPermissionParams, body RevokeSpendPermissionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9535: func (c *CDPClient) PrepareUserOperationWithBody(ctx context.Context, address string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9547: func (c *CDPClient) PrepareUserOperation(ctx context.Context, address string, body PrepareUserOperationJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9559: func (c *CDPClient) PrepareAndSendUserOperationWithBody(ctx context.Context, address string, params *PrepareAndSendUserOperationParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9571: func (c *CDPClient) PrepareAndSendUserOperation(ctx context.Context, address string, params *PrepareAndSendUserOperationParams, body PrepareAndSendUserOperationJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9583: func (c *CDPClient) GetUserOperation(ctx context.Context, address string, userOpHash string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9595: func (c *CDPClient) SendUserOperationWithBody(ctx context.Context, address string, userOpHash string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9607: func (c *CDPClient) SendUserOperation(ctx context.Context, address string, userOpHash string, body SendUserOperationJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9619: func (c *CDPClient) CreateEvmSwapQuoteWithBody(ctx context.Context, params *CreateEvmSwapQuoteParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9631: func (c *CDPClient) CreateEvmSwapQuote(ctx context.Context, params *CreateEvmSwapQuoteParams, body CreateEvmSwapQuoteJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9643: func (c *CDPClient) GetEvmSwapPrice(ctx context.Context, params *GetEvmSwapPriceParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9655: func (c *CDPClient) ListEvmTokenBalances(ctx context.Context, network ListEvmTokenBalancesNetwork, address string, params *ListEvmTokenBalancesParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9667: func (c *CDPClient) GetOnrampUserLimitsWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9679: func (c *CDPClient) GetOnrampUserLimits(ctx context.Context, body GetOnrampUserLimitsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9691: func (c *CDPClient) CreateOnrampOrderWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9703: func (c *CDPClient) CreateOnrampOrder(ctx context.Context, body CreateOnrampOrderJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9715: func (c *CDPClient) GetOnrampOrderById(ctx context.Context, orderId string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9727: func (c *CDPClient) CreateOnrampSessionWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9739: func (c *CDPClient) CreateOnrampSession(ctx context.Context, body CreateOnrampSessionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9751: func (c *CDPClient) ListPolicies(ctx context.Context, params *ListPoliciesParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9763: func (c *CDPClient) CreatePolicyWithBody(ctx context.Context, params *CreatePolicyParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9775: func (c *CDPClient) CreatePolicy(ctx context.Context, params *CreatePolicyParams, body CreatePolicyJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9787: func (c *CDPClient) DeletePolicy(ctx context.Context, policyId string, params *DeletePolicyParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9799: func (c *CDPClient) GetPolicyById(ctx context.Context, policyId string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9811: func (c *CDPClient) UpdatePolicyWithBody(ctx context.Context, policyId string, params *UpdatePolicyParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9823: func (c *CDPClient) UpdatePolicy(ctx context.Context, policyId string, params *UpdatePolicyParams, body UpdatePolicyJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9835: func (c *CDPClient) ListSolanaAccounts(ctx context.Context, params *ListSolanaAccountsParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9847: func (c *CDPClient) CreateSolanaAccountWithBody(ctx context.Context, params *CreateSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9859: func (c *CDPClient) CreateSolanaAccount(ctx context.Context, params *CreateSolanaAccountParams, body CreateSolanaAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9871: func (c *CDPClient) GetSolanaAccountByName(ctx context.Context, name string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9883: func (c *CDPClient) ExportSolanaAccountByNameWithBody(ctx context.Context, name string, params *ExportSolanaAccountByNameParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9895: func (c *CDPClient) ExportSolanaAccountByName(ctx context.Context, name string, params *ExportSolanaAccountByNameParams, body ExportSolanaAccountByNameJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9907: func (c *CDPClient) ImportSolanaAccountWithBody(ctx context.Context, params *ImportSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9919: func (c *CDPClient) ImportSolanaAccount(ctx context.Context, params *ImportSolanaAccountParams, body ImportSolanaAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9931: func (c *CDPClient) SendSolanaTransactionWithBody(ctx context.Context, params *SendSolanaTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9943: func (c *CDPClient) SendSolanaTransaction(ctx context.Context, params *SendSolanaTransactionParams, body SendSolanaTransactionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9955: func (c *CDPClient) GetSolanaAccount(ctx context.Context, address string, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9967: func (c *CDPClient) UpdateSolanaAccountWithBody(ctx context.Context, address string, params *UpdateSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9979: func (c *CDPClient) UpdateSolanaAccount(ctx context.Context, address string, params *UpdateSolanaAccountParams, body UpdateSolanaAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L9991: func (c *CDPClient) ExportSolanaAccountWithBody(ctx context.Context, address string, params *ExportSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L10003: func (c *CDPClient) ExportSolanaAccount(ctx context.Context, address string, params *ExportSolanaAccountParams, body ExportSolanaAccountJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L10015: func (c *CDPClient) SignSolanaMessageWithBody(ctx context.Context, address string, params *SignSolanaMessageParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L10027: func (c *CDPClient) SignSolanaMessage(ctx context.Context, address string, params *SignSolanaMessageParams, body SignSolanaMessageJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L10039: func (c *CDPClient) SignSolanaTransactionWithBody(ctx context.Context, address string, params *SignSolanaTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L10051: func (c *CDPClient) SignSolanaTransaction(ctx context.Context, address string, params *SignSolanaTransactionParams, body SignSolanaTransactionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L10063: func (c *CDPClient) RequestSolanaFaucetWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L10075: func (c *CDPClient) RequestSolanaFaucet(ctx context.Context, body RequestSolanaFaucetJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L10087: func (c *CDPClient) ListSolanaTokenBalances(ctx context.Context, network ListSolanaTokenBalancesNetwork, address string, params *ListSolanaTokenBalancesParams, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L10099: func (c *CDPClient) SettleX402PaymentWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L10111: func (c *CDPClient) SettleX402Payment(ctx context.Context, body SettleX402PaymentJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L10123: func (c *CDPClient) SupportedX402PaymentKinds(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L10135: func (c *CDPClient) VerifyX402PaymentWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L10147: func (c *CDPClient) VerifyX402Payment(ctx context.Context, body VerifyX402PaymentJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L14876: 	HTTPResponse *http.Response
		client.gen.go#L14909: 	HTTPResponse *http.Response
		client.gen.go#L14935: 	HTTPResponse *http.Response
		client.gen.go#L14961: 	HTTPResponse *http.Response
		client.gen.go#L14991: 	HTTPResponse *http.Response
		client.gen.go#L15015: 	HTTPResponse *http.Response
		client.gen.go#L15041: 	HTTPResponse *http.Response
		client.gen.go#L15067: 	HTTPResponse *http.Response
		client.gen.go#L15092: 	HTTPResponse *http.Response
		client.gen.go#L15118: 	HTTPResponse *http.Response
		client.gen.go#L15145: 	HTTPResponse *http.Response
		client.gen.go#L15172: 	HTTPResponse *http.Response
		client.gen.go#L15205: 	HTTPResponse *http.Response
		client.gen.go#L15232: 	HTTPResponse *http.Response
		client.gen.go#L15258: 	HTTPResponse *http.Response
		client.gen.go#L15288: 	HTTPResponse *http.Response
		client.gen.go#L15312: 	HTTPResponse *http.Response
		client.gen.go#L15345: 	HTTPResponse *http.Response
		client.gen.go#L15378: 	HTTPResponse *http.Response
		client.gen.go#L15411: 	HTTPResponse *http.Response
		client.gen.go#L15442: 	HTTPResponse *http.Response
		client.gen.go#L15472: 	HTTPResponse *http.Response
		client.gen.go#L15499: 	HTTPResponse *http.Response
		client.gen.go#L15532: 	HTTPResponse *http.Response
		client.gen.go#L15562: 	HTTPResponse *http.Response
		client.gen.go#L15589: 	HTTPResponse *http.Response
		client.gen.go#L15618: 	HTTPResponse *http.Response
		client.gen.go#L15652: 	HTTPResponse *http.Response
		client.gen.go#L15685: 	HTTPResponse *http.Response
		client.gen.go#L15720: 	HTTPResponse *http.Response
		client.gen.go#L15753: 	HTTPResponse *http.Response
		client.gen.go#L15786: 	HTTPResponse *http.Response
		client.gen.go#L15821: 	HTTPResponse *http.Response
		client.gen.go#L15854: 	HTTPResponse *http.Response
		client.gen.go#L15881: 	HTTPResponse *http.Response
		client.gen.go#L15913: 	HTTPResponse *http.Response
		client.gen.go#L15945: 	HTTPResponse *http.Response
		client.gen.go#L15972: 	HTTPResponse *http.Response
		client.gen.go#L15999: 	HTTPResponse *http.Response
		client.gen.go#L16026: 	HTTPResponse *http.Response
		client.gen.go#L16055: 	HTTPResponse *http.Response
		client.gen.go#L16082: 	HTTPResponse *http.Response
		client.gen.go#L16115: 	HTTPResponse *http.Response
		client.gen.go#L16142: 	HTTPResponse *http.Response
		client.gen.go#L16170: 	HTTPResponse *http.Response
		client.gen.go#L16201: 	HTTPResponse *http.Response
		client.gen.go#L16228: 	HTTPResponse *http.Response
		client.gen.go#L16258: 	HTTPResponse *http.Response
		client.gen.go#L16285: 	HTTPResponse *http.Response
		client.gen.go#L16312: 	HTTPResponse *http.Response
		client.gen.go#L16345: 	HTTPResponse *http.Response
		client.gen.go#L16374: 	HTTPResponse *http.Response
		client.gen.go#L16408: 	HTTPResponse *http.Response
		client.gen.go#L16436: 	HTTPResponse *http.Response
		client.gen.go#L16468: 	HTTPResponse *http.Response
		client.gen.go#L16499: 	HTTPResponse *http.Response
		client.gen.go#L16527: 	HTTPResponse *http.Response
		client.gen.go#L16555: 	HTTPResponse *http.Response
		client.gen.go#L16581: 	HTTPResponse *http.Response
		client.gen.go#L16610: 	HTTPResponse *http.Response
		client.gen.go#L16641: 	HTTPResponse *http.Response
		client.gen.go#L16671: 	HTTPResponse *http.Response
		client.gen.go#L16698: 	HTTPResponse *http.Response
		client.gen.go#L16731: 	HTTPResponse *http.Response
		client.gen.go#L16761: 	HTTPResponse *http.Response
		client.gen.go#L16795: 	HTTPResponse *http.Response
		client.gen.go#L16822: 	HTTPResponse *http.Response
		client.gen.go#L16851: 	HTTPResponse *http.Response
		client.gen.go#L16884: 	HTTPResponse *http.Response
		client.gen.go#L16918: 	HTTPResponse *http.Response
		client.gen.go#L16953: 	HTTPResponse *http.Response
		client.gen.go#L16984: 	HTTPResponse *http.Response
		client.gen.go#L17017: 	HTTPResponse *http.Response
		client.gen.go#L17044: 	HTTPResponse *http.Response
		client.gen.go#L17069: 	HTTPResponse *http.Response
		client.gen.go#L18129: func ParseListDataTokenBalancesResponse(rsp *http.Response) (*ListDataTokenBalancesResponse, error) {
		client.gen.go#L18196: func ParseListTokensForAccountResponse(rsp *http.Response) (*ListTokensForAccountResponse, error) {
		client.gen.go#L18250: func ParseGetSQLGrammarResponse(rsp *http.Response) (*GetSQLGrammarResponse, error) {
		client.gen.go#L18304: func ParseRunSQLQueryResponse(rsp *http.Response) (*RunSQLQueryResponse, error) {
		client.gen.go#L18386: func ParseGetSQLSchemaResponse(rsp *http.Response) (*GetSQLSchemaResponse, error) {
		client.gen.go#L18426: func ParseListWebhookSubscriptionsResponse(rsp *http.Response) (*ListWebhookSubscriptionsResponse, error) {
		client.gen.go#L18480: func ParseCreateWebhookSubscriptionResponse(rsp *http.Response) (*CreateWebhookSubscriptionResponse, error) {
		client.gen.go#L18534: func ParseDeleteWebhookSubscriptionResponse(rsp *http.Response) (*DeleteWebhookSubscriptionResponse, error) {
		client.gen.go#L18581: func ParseGetWebhookSubscriptionResponse(rsp *http.Response) (*GetWebhookSubscriptionResponse, error) {
		client.gen.go#L18635: func ParseUpdateWebhookSubscriptionResponse(rsp *http.Response) (*UpdateWebhookSubscriptionResponse, error) {
		client.gen.go#L18696: func ParseListWebhookSubscriptionEventsResponse(rsp *http.Response) (*ListWebhookSubscriptionEventsResponse, error) {
		client.gen.go#L18757: func ParseListEndUsersResponse(rsp *http.Response) (*ListEndUsersResponse, error) {
		client.gen.go#L18824: func ParseCreateEndUserResponse(rsp *http.Response) (*CreateEndUserResponse, error) {
		client.gen.go#L18885: func ParseValidateEndUserAccessTokenResponse(rsp *http.Response) (*ValidateEndUserAccessTokenResponse, error) {
		client.gen.go#L18939: func ParseImportEndUserResponse(rsp *http.Response) (*ImportEndUserResponse, error) {
		client.gen.go#L19021: func ParseGetEndUserResponse(rsp *http.Response) (*GetEndUserResponse, error) {
		client.gen.go#L19061: func ParseAddEndUserEvmAccountResponse(rsp *http.Response) (*AddEndUserEvmAccountResponse, error) {
		client.gen.go#L19146: func ParseAddEndUserEvmSmartAccountResponse(rsp *http.Response) (*AddEndUserEvmSmartAccountResponse, error) {
		client.gen.go#L19231: func ParseAddEndUserSolanaAccountResponse(rsp *http.Response) (*AddEndUserSolanaAccountResponse, error) {
		client.gen.go#L19316: func ParseListEvmAccountsResponse(rsp *http.Response) (*ListEvmAccountsResponse, error) {
		client.gen.go#L19369: func ParseCreateEvmAccountResponse(rsp *http.Response) (*CreateEvmAccountResponse, error) {
		client.gen.go#L19451: func ParseGetEvmAccountByNameResponse(rsp *http.Response) (*GetEvmAccountByNameResponse, error) {
		client.gen.go#L19512: func ParseExportEvmAccountByNameResponse(rsp *http.Response) (*ExportEvmAccountByNameResponse, error) {
		client.gen.go#L19597: func ParseImportEvmAccountResponse(rsp *http.Response) (*ImportEvmAccountResponse, error) {
		client.gen.go#L19679: func ParseGetEvmAccountResponse(rsp *http.Response) (*GetEvmAccountResponse, error) {
		client.gen.go#L19740: func ParseUpdateEvmAccountResponse(rsp *http.Response) (*UpdateEvmAccountResponse, error) {
		client.gen.go#L19815: func ParseCreateEvmEip7702DelegationResponse(rsp *http.Response) (*CreateEvmEip7702DelegationResponse, error) {
		client.gen.go#L19907: func ParseExportEvmAccountResponse(rsp *http.Response) (*ExportEvmAccountResponse, error) {
		client.gen.go#L19992: func ParseSendEvmTransactionResponse(rsp *http.Response) (*SendEvmTransactionResponse, error) {
		client.gen.go#L20091: func ParseSignEvmHashResponse(rsp *http.Response) (*SignEvmHashResponse, error) {
		client.gen.go#L20176: func ParseSignEvmMessageResponse(rsp *http.Response) (*SignEvmMessageResponse, error) {
		client.gen.go#L20261: func ParseSignEvmTransactionResponse(rsp *http.Response) (*SignEvmTransactionResponse, error) {
		client.gen.go#L20360: func ParseSignEvmTypedDataResponse(rsp *http.Response) (*SignEvmTypedDataResponse, error) {
		client.gen.go#L20445: func ParseGetEvmEip7702DelegationOperationByIdResponse(rsp *http.Response) (*GetEvmEip7702DelegationOperationByIdResponse, error) {
		client.gen.go#L20506: func ParseRequestEvmFaucetResponse(rsp *http.Response) (*RequestEvmFaucetResponse, error) {
		client.gen.go#L20578: func ParseListEvmSmartAccountsResponse(rsp *http.Response) (*ListEvmSmartAccountsResponse, error) {
		client.gen.go#L20638: func ParseCreateEvmSmartAccountResponse(rsp *http.Response) (*CreateEvmSmartAccountResponse, error) {
		client.gen.go#L20699: func ParseGetEvmSmartAccountByNameResponse(rsp *http.Response) (*GetEvmSmartAccountByNameResponse, error) {
		client.gen.go#L20760: func ParseGetEvmSmartAccountResponse(rsp *http.Response) (*GetEvmSmartAccountResponse, error) {
		client.gen.go#L20821: func ParseUpdateEvmSmartAccountResponse(rsp *http.Response) (*UpdateEvmSmartAccountResponse, error) {
		client.gen.go#L20896: func ParseCreateSpendPermissionResponse(rsp *http.Response) (*CreateSpendPermissionResponse, error) {
		client.gen.go#L20957: func ParseListSpendPermissionsResponse(rsp *http.Response) (*ListSpendPermissionsResponse, error) {
		client.gen.go#L21024: func ParseRevokeSpendPermissionResponse(rsp *http.Response) (*RevokeSpendPermissionResponse, error) {
		client.gen.go#L21085: func ParsePrepareUserOperationResponse(rsp *http.Response) (*PrepareUserOperationResponse, error) {
		client.gen.go#L21153: func ParsePrepareAndSendUserOperationResponse(rsp *http.Response) (*PrepareAndSendUserOperationResponse, error) {
		client.gen.go#L21242: func ParseGetUserOperationResponse(rsp *http.Response) (*GetUserOperationResponse, error) {
		client.gen.go#L21303: func ParseSendUserOperationResponse(rsp *http.Response) (*SendUserOperationResponse, error) {
		client.gen.go#L21385: func ParseCreateEvmSwapQuoteResponse(rsp *http.Response) (*CreateEvmSwapQuoteResponse, error) {
		client.gen.go#L21446: func ParseGetEvmSwapPriceResponse(rsp *http.Response) (*GetEvmSwapPriceResponse, error) {
		client.gen.go#L21507: func ParseListEvmTokenBalancesResponse(rsp *http.Response) (*ListEvmTokenBalancesResponse, error) {
		client.gen.go#L21574: func ParseGetOnrampUserLimitsResponse(rsp *http.Response) (*GetOnrampUserLimitsResponse, error) {
		client.gen.go#L21631: func ParseCreateOnrampOrderResponse(rsp *http.Response) (*CreateOnrampOrderResponse, error) {
		client.gen.go#L21693: func ParseGetOnrampOrderByIdResponse(rsp *http.Response) (*GetOnrampOrderByIdResponse, error) {
		client.gen.go#L21743: func ParseCreateOnrampSessionResponse(rsp *http.Response) (*CreateOnrampSessionResponse, error) {
		client.gen.go#L21803: func ParseListPoliciesResponse(rsp *http.Response) (*ListPoliciesResponse, error) {
		client.gen.go#L21856: func ParseCreatePolicyResponse(rsp *http.Response) (*CreatePolicyResponse, error) {
		client.gen.go#L21924: func ParseDeletePolicyResponse(rsp *http.Response) (*DeletePolicyResponse, error) {
		client.gen.go#L21992: func ParseGetPolicyByIdResponse(rsp *http.Response) (*GetPolicyByIdResponse, error) {
		client.gen.go#L22046: func ParseUpdatePolicyResponse(rsp *http.Response) (*UpdatePolicyResponse, error) {
		client.gen.go#L22121: func ParseListSolanaAccountsResponse(rsp *http.Response) (*ListSolanaAccountsResponse, error) {
		client.gen.go#L22174: func ParseCreateSolanaAccountResponse(rsp *http.Response) (*CreateSolanaAccountResponse, error) {
		client.gen.go#L22256: func ParseGetSolanaAccountByNameResponse(rsp *http.Response) (*GetSolanaAccountByNameResponse, error) {
		client.gen.go#L22317: func ParseExportSolanaAccountByNameResponse(rsp *http.Response) (*ExportSolanaAccountByNameResponse, error) {
		client.gen.go#L22402: func ParseImportSolanaAccountResponse(rsp *http.Response) (*ImportSolanaAccountResponse, error) {
		client.gen.go#L22484: func ParseSendSolanaTransactionResponse(rsp *http.Response) (*SendSolanaTransactionResponse, error) {
		client.gen.go#L22576: func ParseGetSolanaAccountResponse(rsp *http.Response) (*GetSolanaAccountResponse, error) {
		client.gen.go#L22637: func ParseUpdateSolanaAccountResponse(rsp *http.Response) (*UpdateSolanaAccountResponse, error) {
		client.gen.go#L22712: func ParseExportSolanaAccountResponse(rsp *http.Response) (*ExportSolanaAccountResponse, error) {
		client.gen.go#L22797: func ParseSignSolanaMessageResponse(rsp *http.Response) (*SignSolanaMessageResponse, error) {
		client.gen.go#L22889: func ParseSignSolanaTransactionResponse(rsp *http.Response) (*SignSolanaTransactionResponse, error) {
		client.gen.go#L22988: func ParseRequestSolanaFaucetResponse(rsp *http.Response) (*RequestSolanaFaucetResponse, error) {
		client.gen.go#L23059: func ParseListSolanaTokenBalancesResponse(rsp *http.Response) (*ListSolanaTokenBalancesResponse, error) {
		client.gen.go#L23126: func ParseSettleX402PaymentResponse(rsp *http.Response) (*SettleX402PaymentResponse, error) {
		client.gen.go#L23187: func ParseSupportedX402PaymentKindsResponse(rsp *http.Response) (*SupportedX402PaymentKindsResponse, error) {
		client.gen.go#L23234: func ParseVerifyX402PaymentResponse(rsp *http.Response) (*VerifyX402PaymentResponse, error) {