type io.Reader

372 uses

	io (current package)
		io.go#L86: type Reader interface {
		io.go#L132: 	Reader
		io.go#L138: 	Reader
		io.go#L150: 	Reader
		io.go#L157: 	Reader
		io.go#L164: 	Reader
		io.go#L177: 	Reader
		io.go#L190: 	ReadFrom(r Reader) (n int64, err error)
		io.go#L329: func ReadAtLeast(r Reader, buf []byte, min int) (n int, err error) {
		io.go#L353: func ReadFull(r Reader, buf []byte) (n int, err error) {
		io.go#L363: func CopyN(dst Writer, src Reader, n int64) (written int64, err error) {
		io.go#L387: func Copy(dst Writer, src Reader) (written int64, err error) {
		io.go#L398: func CopyBuffer(dst Writer, src Reader, buf []byte) (written int64, err error) {
		io.go#L407: func copyBuffer(dst Writer, src Reader, buf []byte) (written int64, err error) {
		io.go#L461: func LimitReader(r Reader, n int64) Reader { return &LimitedReader{r, n} }
		io.go#L468: 	R Reader // underlying reader
		io.go#L618: func TeeReader(r Reader, w Writer) Reader {
		io.go#L623: 	r Reader
		io.go#L662: func (discard) ReadFrom(r Reader) (n int64, err error) {
		io.go#L682: func NopCloser(r Reader) ReadCloser {
		io.go#L690: 	Reader
		io.go#L696: 	Reader
		io.go#L709: func ReadAll(r Reader) ([]byte, error) {
		multi.go#L14: 	readers []Reader
		multi.go#L73: func MultiReader(readers ...Reader) Reader {
		multi.go#L74: 	r := make([]Reader, len(readers))

	bufio
		bufio.go#L34: 	rd           io.Reader // reader provided by the client
		bufio.go#L47: func NewReaderSize(rd io.Reader, size int) *Reader {
		bufio.go#L59: func NewReader(rd io.Reader) *Reader {
		bufio.go#L71: func (b *Reader) Reset(r io.Reader) {
		bufio.go#L84: func (b *Reader) reset(buf []byte, r io.Reader) {
		bufio.go#L781: func (b *Writer) ReadFrom(r io.Reader) (n int64, err error) {
		scan.go#L30: 	r            io.Reader // The reader provided by the client.
		scan.go#L89: func NewScanner(r io.Reader) *Scanner {

	bytes
		buffer.go#L206: func (b *Buffer) ReadFrom(r io.Reader) (n int64, err error) {

	compress/flate
		inflate.go#L74: 	Reset(r io.Reader, dict []byte) error
		inflate.go#L262: 	io.Reader
		inflate.go#L750: func (f *decompressor) makeReader(r io.Reader) {
		inflate.go#L786: func (f *decompressor) Reset(r io.Reader, dict []byte) error {
		inflate.go#L807: func NewReader(r io.Reader) io.ReadCloser {
		inflate.go#L826: func NewReaderDict(r io.Reader, dict []byte) io.ReadCloser {

	compress/gzip
		gunzip.go#L92: func NewReader(r io.Reader) (*Reader, error) {
		gunzip.go#L103: func (z *Reader) Reset(r io.Reader) error {

	crypto
		crypto.go#L198: 	Sign(rand io.Reader, digest []byte, opts SignerOpts) (signature []byte, err error)
		crypto.go#L220: 	Decrypt(rand io.Reader, msg []byte, opts DecrypterOpts) (plaintext []byte, err error)

	crypto/cipher
		io.go#L16: 	R io.Reader

	crypto/dsa
		dsa.go#L65: func GenerateParameters(params *Parameters, rand io.Reader, sizes ParameterSizes) error {
		dsa.go#L159: func GenerateKey(priv *PrivateKey, rand io.Reader) error {
		dsa.go#L205: func Sign(rand io.Reader, priv *PrivateKey, hash []byte) (r, s *big.Int, err error) {

	crypto/ecdh
		ecdh.go#L24: 	GenerateKey(rand io.Reader) (*PrivateKey, error)
		nist.go#L38: func (c *nistCurve[Point]) GenerateKey(rand io.Reader) (*PrivateKey, error) {
		x25519.go#L35: func (c *x25519Curve) GenerateKey(rand io.Reader) (*PrivateKey, error) {

	crypto/ecdsa
		ecdsa.go#L153: func (priv *PrivateKey) Sign(rand io.Reader, digest []byte, opts crypto.SignerOpts) ([]byte, error) {
		ecdsa.go#L162: func GenerateKey(c elliptic.Curve, rand io.Reader) (*PrivateKey, error) {
		ecdsa.go#L188: func generateNISTEC[Point nistPoint[Point]](c *nistCurve[Point], rand io.Reader) (*PrivateKey, error) {
		ecdsa.go#L206: func randomPoint[Point nistPoint[Point]](c *nistCurve[Point], rand io.Reader) (k *bigmod.Nat, p Point, err error) {
		ecdsa.go#L260: func SignASN1(rand io.Reader, priv *PrivateKey, hash []byte) ([]byte, error) {
		ecdsa.go#L295: func signNISTEC[Point nistPoint[Point]](c *nistCurve[Point], priv *PrivateKey, csprng io.Reader, hash []byte) (sig []byte, err error) {
		ecdsa.go#L417: func mixedCSPRNG(rand io.Reader, priv *PrivateKey, hash []byte) (io.Reader, error) {
		ecdsa_legacy.go#L20: func generateLegacy(c elliptic.Curve, rand io.Reader) (*PrivateKey, error) {
		ecdsa_legacy.go#L58: func Sign(rand io.Reader, priv *PrivateKey, hash []byte) (r, s *big.Int, err error) {
		ecdsa_legacy.go#L77: func signLegacy(priv *PrivateKey, csprng io.Reader, hash []byte) (sig []byte, err error) {
		ecdsa_legacy.go#L173: func randFieldElement(c elliptic.Curve, rand io.Reader) (k *big.Int, err error) {
		ecdsa_noasm.go#L15: func signAsm(priv *PrivateKey, csprng io.Reader, hash []byte) (sig []byte, err error) {

	crypto/ed25519
		ed25519.go#L91: func (priv PrivateKey) Sign(rand io.Reader, message []byte, opts crypto.SignerOpts) (signature []byte, err error) {
		ed25519.go#L141: func GenerateKey(rand io.Reader) (PublicKey, PrivateKey, error) {

	crypto/elliptic
		elliptic.go#L75: func GenerateKey(curve Curve, rand io.Reader) (priv []byte, x, y *big.Int, err error) {

	crypto/internal/randutil
		randutil.go#L25: func MaybeReadByte(r io.Reader) {

	crypto/rand
		rand.go#L22: var Reader io.Reader
		rand_unix.go#L35: 	f    io.Reader
		rand_unix.go#L78: 	r io.Reader
		util.go#L16: func Prime(rand io.Reader, bits int) (*big.Int, error) {
		util.go#L62: func Int(rand io.Reader, max *big.Int) (n *big.Int, err error) {

	crypto/rsa
		pkcs1v15.go#L42: func EncryptPKCS1v15(random io.Reader, pub *PublicKey, msg []byte) ([]byte, error) {
		pkcs1v15.go#L93: func DecryptPKCS1v15(random io.Reader, priv *PrivateKey, ciphertext []byte) ([]byte, error) {
		pkcs1v15.go#L154: func DecryptPKCS1v15SessionKey(random io.Reader, priv *PrivateKey, ciphertext []byte, key []byte) error {
		pkcs1v15.go#L234: func nonZeroRandomBytes(s []byte, random io.Reader) (err error) {
		pkcs1v15.go#L288: func SignPKCS1v15(random io.Reader, priv *PrivateKey, hash crypto.Hash, hashed []byte) ([]byte, error) {
		pss.go#L292: func SignPSS(rand io.Reader, priv *PrivateKey, hash crypto.Hash, digest []byte, opts *PSSOptions) ([]byte, error) {
		rsa.go#L163: func (priv *PrivateKey) Sign(rand io.Reader, digest []byte, opts crypto.SignerOpts) ([]byte, error) {
		rsa.go#L174: func (priv *PrivateKey) Decrypt(rand io.Reader, ciphertext []byte, opts crypto.DecrypterOpts) (plaintext []byte, err error) {
		rsa.go#L274: func GenerateKey(random io.Reader, bits int) (*PrivateKey, error) {
		rsa.go#L297: func GenerateMultiPrimeKey(random io.Reader, nprimes int, bits int) (*PrivateKey, error) {
		rsa.go#L515: func EncryptOAEP(hash hash.Hash, random io.Reader, pub *PublicKey, msg []byte, label []byte) ([]byte, error) {
		rsa.go#L707: func DecryptOAEP(hash hash.Hash, random io.Reader, priv *PrivateKey, ciphertext []byte, label []byte) ([]byte, error) {
		rsa.go#L711: func decryptOAEP(hash, mgfHash hash.Hash, random io.Reader, priv *PrivateKey, ciphertext []byte, label []byte) ([]byte, error) {

	crypto/tls
		common.go#L536: 	Rand io.Reader
		common.go#L1042: func (c *Config) rand() io.Reader {
		conn.go#L482: func (hc *halfConn) encrypt(record, payload []byte, rand io.Reader) ([]byte, error) {
		conn.go#L801: 	R io.Reader
		conn.go#L822: func (c *Conn) readFromUntil(r io.Reader, n int) error {
		key_schedule.go#L163: func generateECDHEKey(rand io.Reader, curveID CurveID) (*ecdh.PrivateKey, error) {

	crypto/x509
		pem_decrypt.go#L195: func EncryptPEMBlock(rand io.Reader, blockType string, data, password []byte, alg PEMCipher) (*pem.Block, error) {
		x509.go#L1505: func signTBS(tbs []byte, key crypto.Signer, sigAlg SignatureAlgorithm, rand io.Reader) ([]byte, error) {
		x509.go#L1599: func CreateCertificate(rand io.Reader, template, parent *Certificate, pub, priv any) ([]byte, error) {
		x509.go#L1746: func (c *Certificate) CreateCRL(rand io.Reader, priv any, revokedCerts []pkix.RevokedCertificate, now, expiry time.Time) (crlBytes []byte, err error) {
		x509.go#L1959: func CreateCertificateRequest(rand io.Reader, template *CertificateRequest, priv any) (csr []byte, err error) {
		x509.go#L2307: func CreateRevocationList(rand io.Reader, template *RevocationList, issuer *Certificate, priv crypto.Signer) ([]byte, error) {

	encoding/base64
		base64.go#L436: 	r       io.Reader
		base64.go#L619: 	wrapped io.Reader
		base64.go#L644: func NewDecoder(enc *Encoding, r io.Reader) io.Reader {

	encoding/binary
		binary.go#L240: func Read(r io.Reader, order ByteOrder, data any) error {

	encoding/hex
		hex.go#L194: 	r   io.Reader
		hex.go#L202: func NewDecoder(r io.Reader) io.Reader {

	encoding/json
		stream.go#L15: 	r       io.Reader
		stream.go#L31: func NewDecoder(r io.Reader) *Decoder {
		stream.go#L83: func (dec *Decoder) Buffered() io.Reader {

	fmt
		scan.go#L121: func Fscan(r io.Reader, a ...any) (n int, err error) {
		scan.go#L130: func Fscanln(r io.Reader, a ...any) (n int, err error) {
		scan.go#L141: func Fscanf(r io.Reader, format string, a ...any) (n int, err error) {
		scan.go#L305: 	reader   io.Reader
		scan.go#L383: func newScanState(r io.Reader, nlIsSpace, nlIsEnd bool) (s *ss, old ssave) {

	github.com/coinbase/cdp-sdk/go/openapi
		client.gen.go#L4792: 	RunSQLQueryWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4800: 	CreateEvmAccountWithBody(ctx context.Context, params *CreateEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4808: 	ExportEvmAccountByNameWithBody(ctx context.Context, name string, params *ExportEvmAccountByNameParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4813: 	ImportEvmAccountWithBody(ctx context.Context, params *ImportEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4821: 	UpdateEvmAccountWithBody(ctx context.Context, address string, params *UpdateEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4826: 	ExportEvmAccountWithBody(ctx context.Context, address string, params *ExportEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4831: 	SendEvmTransactionWithBody(ctx context.Context, address string, params *SendEvmTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4836: 	SignEvmHashWithBody(ctx context.Context, address string, params *SignEvmHashParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4841: 	SignEvmMessageWithBody(ctx context.Context, address string, params *SignEvmMessageParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4846: 	SignEvmTransactionWithBody(ctx context.Context, address string, params *SignEvmTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4851: 	SignEvmTypedDataWithBody(ctx context.Context, address string, params *SignEvmTypedDataParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4856: 	RequestEvmFaucetWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4864: 	CreateEvmSmartAccountWithBody(ctx context.Context, params *CreateEvmSmartAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4875: 	UpdateEvmSmartAccountWithBody(ctx context.Context, address string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4880: 	CreateSpendPermissionWithBody(ctx context.Context, address string, params *CreateSpendPermissionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4888: 	RevokeSpendPermissionWithBody(ctx context.Context, address string, params *RevokeSpendPermissionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4893: 	PrepareUserOperationWithBody(ctx context.Context, address string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4901: 	SendUserOperationWithBody(ctx context.Context, address string, userOpHash string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4906: 	CreateEvmSwapQuoteWithBody(ctx context.Context, params *CreateEvmSwapQuoteParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4917: 	CreateOnrampOrderWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4931: 	CreatePaymentTransferQuoteWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4945: 	CreatePolicyWithBody(ctx context.Context, params *CreatePolicyParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4956: 	UpdatePolicyWithBody(ctx context.Context, policyId string, params *UpdatePolicyParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4964: 	CreateSolanaAccountWithBody(ctx context.Context, params *CreateSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4972: 	ExportSolanaAccountByNameWithBody(ctx context.Context, name string, params *ExportSolanaAccountByNameParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4977: 	ImportSolanaAccountWithBody(ctx context.Context, params *ImportSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4982: 	SendSolanaTransactionWithBody(ctx context.Context, params *SendSolanaTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4990: 	UpdateSolanaAccountWithBody(ctx context.Context, address string, params *UpdateSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L4995: 	ExportSolanaAccountWithBody(ctx context.Context, address string, params *ExportSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L5000: 	SignSolanaMessageWithBody(ctx context.Context, address string, params *SignSolanaMessageParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L5005: 	SignSolanaTransactionWithBody(ctx context.Context, address string, params *SignSolanaTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L5010: 	RequestSolanaFaucetWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
		client.gen.go#L5042: func (c *CDPClient) RunSQLQueryWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5078: func (c *CDPClient) CreateEvmAccountWithBody(ctx context.Context, params *CreateEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5114: func (c *CDPClient) ExportEvmAccountByNameWithBody(ctx context.Context, name string, params *ExportEvmAccountByNameParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5138: func (c *CDPClient) ImportEvmAccountWithBody(ctx context.Context, params *ImportEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5174: func (c *CDPClient) UpdateEvmAccountWithBody(ctx context.Context, address string, params *UpdateEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5198: func (c *CDPClient) ExportEvmAccountWithBody(ctx context.Context, address string, params *ExportEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5222: func (c *CDPClient) SendEvmTransactionWithBody(ctx context.Context, address string, params *SendEvmTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5246: func (c *CDPClient) SignEvmHashWithBody(ctx context.Context, address string, params *SignEvmHashParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5270: func (c *CDPClient) SignEvmMessageWithBody(ctx context.Context, address string, params *SignEvmMessageParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5294: func (c *CDPClient) SignEvmTransactionWithBody(ctx context.Context, address string, params *SignEvmTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5318: func (c *CDPClient) SignEvmTypedDataWithBody(ctx context.Context, address string, params *SignEvmTypedDataParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5342: func (c *CDPClient) RequestEvmFaucetWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5378: func (c *CDPClient) CreateEvmSmartAccountWithBody(ctx context.Context, params *CreateEvmSmartAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5426: func (c *CDPClient) UpdateEvmSmartAccountWithBody(ctx context.Context, address string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5450: func (c *CDPClient) CreateSpendPermissionWithBody(ctx context.Context, address string, params *CreateSpendPermissionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5486: func (c *CDPClient) RevokeSpendPermissionWithBody(ctx context.Context, address string, params *RevokeSpendPermissionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5510: func (c *CDPClient) PrepareUserOperationWithBody(ctx context.Context, address string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5546: func (c *CDPClient) SendUserOperationWithBody(ctx context.Context, address string, userOpHash string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5570: func (c *CDPClient) CreateEvmSwapQuoteWithBody(ctx context.Context, params *CreateEvmSwapQuoteParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5618: func (c *CDPClient) CreateOnrampOrderWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5678: func (c *CDPClient) CreatePaymentTransferQuoteWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5738: func (c *CDPClient) CreatePolicyWithBody(ctx context.Context, params *CreatePolicyParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5786: func (c *CDPClient) UpdatePolicyWithBody(ctx context.Context, policyId string, params *UpdatePolicyParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5822: func (c *CDPClient) CreateSolanaAccountWithBody(ctx context.Context, params *CreateSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5858: func (c *CDPClient) ExportSolanaAccountByNameWithBody(ctx context.Context, name string, params *ExportSolanaAccountByNameParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5882: func (c *CDPClient) ImportSolanaAccountWithBody(ctx context.Context, params *ImportSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5906: func (c *CDPClient) SendSolanaTransactionWithBody(ctx context.Context, params *SendSolanaTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5942: func (c *CDPClient) UpdateSolanaAccountWithBody(ctx context.Context, address string, params *UpdateSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5966: func (c *CDPClient) ExportSolanaAccountWithBody(ctx context.Context, address string, params *ExportSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L5990: func (c *CDPClient) SignSolanaMessageWithBody(ctx context.Context, address string, params *SignSolanaMessageParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6014: func (c *CDPClient) SignSolanaTransactionWithBody(ctx context.Context, address string, params *SignSolanaTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6038: func (c *CDPClient) RequestSolanaFaucetWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
		client.gen.go#L6196: 	var bodyReader io.Reader
		client.gen.go#L6206: func NewRunSQLQueryRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L6301: 	var bodyReader io.Reader
		client.gen.go#L6311: func NewCreateEvmAccountRequestWithBody(server string, params *CreateEvmAccountParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L6401: 	var bodyReader io.Reader
		client.gen.go#L6411: func NewExportEvmAccountByNameRequestWithBody(server string, name string, params *ExportEvmAccountByNameParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L6474: 	var bodyReader io.Reader
		client.gen.go#L6484: func NewImportEvmAccountRequestWithBody(server string, params *ImportEvmAccountParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L6574: 	var bodyReader io.Reader
		client.gen.go#L6584: func NewUpdateEvmAccountRequestWithBody(server string, address string, params *UpdateEvmAccountParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L6636: 	var bodyReader io.Reader
		client.gen.go#L6646: func NewExportEvmAccountRequestWithBody(server string, address string, params *ExportEvmAccountParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L6709: 	var bodyReader io.Reader
		client.gen.go#L6719: func NewSendEvmTransactionRequestWithBody(server string, address string, params *SendEvmTransactionParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L6782: 	var bodyReader io.Reader
		client.gen.go#L6792: func NewSignEvmHashRequestWithBody(server string, address string, params *SignEvmHashParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L6855: 	var bodyReader io.Reader
		client.gen.go#L6865: func NewSignEvmMessageRequestWithBody(server string, address string, params *SignEvmMessageParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L6928: 	var bodyReader io.Reader
		client.gen.go#L6938: func NewSignEvmTransactionRequestWithBody(server string, address string, params *SignEvmTransactionParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L7001: 	var bodyReader io.Reader
		client.gen.go#L7011: func NewSignEvmTypedDataRequestWithBody(server string, address string, params *SignEvmTypedDataParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L7074: 	var bodyReader io.Reader
		client.gen.go#L7084: func NewRequestEvmFaucetRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L7179: 	var bodyReader io.Reader
		client.gen.go#L7189: func NewCreateEvmSmartAccountRequestWithBody(server string, params *CreateEvmSmartAccountParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L7302: 	var bodyReader io.Reader
		client.gen.go#L7312: func NewUpdateEvmSmartAccountRequestWithBody(server string, address string, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L7349: 	var bodyReader io.Reader
		client.gen.go#L7359: func NewCreateSpendPermissionRequestWithBody(server string, address string, params *CreateSpendPermissionParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L7494: 	var bodyReader io.Reader
		client.gen.go#L7504: func NewRevokeSpendPermissionRequestWithBody(server string, address string, params *RevokeSpendPermissionParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L7567: 	var bodyReader io.Reader
		client.gen.go#L7577: func NewPrepareUserOperationRequestWithBody(server string, address string, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L7655: 	var bodyReader io.Reader
		client.gen.go#L7665: func NewSendUserOperationRequestWithBody(server string, address string, userOpHash string, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L7709: 	var bodyReader io.Reader
		client.gen.go#L7719: func NewCreateEvmSwapQuoteRequestWithBody(server string, params *CreateEvmSwapQuoteParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L7984: 	var bodyReader io.Reader
		client.gen.go#L7994: func NewCreateOnrampOrderRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L8134: 	var bodyReader io.Reader
		client.gen.go#L8144: func NewCreatePaymentTransferQuoteRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L8323: 	var bodyReader io.Reader
		client.gen.go#L8333: func NewCreatePolicyRequestWithBody(server string, params *CreatePolicyParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L8461: 	var bodyReader io.Reader
		client.gen.go#L8471: func NewUpdatePolicyRequestWithBody(server string, policyId string, params *UpdatePolicyParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L8588: 	var bodyReader io.Reader
		client.gen.go#L8598: func NewCreateSolanaAccountRequestWithBody(server string, params *CreateSolanaAccountParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L8688: 	var bodyReader io.Reader
		client.gen.go#L8698: func NewExportSolanaAccountByNameRequestWithBody(server string, name string, params *ExportSolanaAccountByNameParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L8761: 	var bodyReader io.Reader
		client.gen.go#L8771: func NewImportSolanaAccountRequestWithBody(server string, params *ImportSolanaAccountParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L8827: 	var bodyReader io.Reader
		client.gen.go#L8837: func NewSendSolanaTransactionRequestWithBody(server string, params *SendSolanaTransactionParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L8927: 	var bodyReader io.Reader
		client.gen.go#L8937: func NewUpdateSolanaAccountRequestWithBody(server string, address string, params *UpdateSolanaAccountParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L8989: 	var bodyReader io.Reader
		client.gen.go#L8999: func NewExportSolanaAccountRequestWithBody(server string, address string, params *ExportSolanaAccountParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L9062: 	var bodyReader io.Reader
		client.gen.go#L9072: func NewSignSolanaMessageRequestWithBody(server string, address string, params *SignSolanaMessageParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L9135: 	var bodyReader io.Reader
		client.gen.go#L9145: func NewSignSolanaTransactionRequestWithBody(server string, address string, params *SignSolanaTransactionParams, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L9208: 	var bodyReader io.Reader
		client.gen.go#L9218: func NewRequestSolanaFaucetRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) {
		client.gen.go#L9375: 	RunSQLQueryWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*RunSQLQueryResponse, error)
		client.gen.go#L9383: 	CreateEvmAccountWithBodyWithResponse(ctx context.Context, params *CreateEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreateEvmAccountResponse, error)
		client.gen.go#L9391: 	ExportEvmAccountByNameWithBodyWithResponse(ctx context.Context, name string, params *ExportEvmAccountByNameParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ExportEvmAccountByNameResponse, error)
		client.gen.go#L9396: 	ImportEvmAccountWithBodyWithResponse(ctx context.Context, params *ImportEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ImportEvmAccountResponse, error)
		client.gen.go#L9404: 	UpdateEvmAccountWithBodyWithResponse(ctx context.Context, address string, params *UpdateEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*UpdateEvmAccountResponse, error)
		client.gen.go#L9409: 	ExportEvmAccountWithBodyWithResponse(ctx context.Context, address string, params *ExportEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ExportEvmAccountResponse, error)
		client.gen.go#L9414: 	SendEvmTransactionWithBodyWithResponse(ctx context.Context, address string, params *SendEvmTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SendEvmTransactionResponse, error)
		client.gen.go#L9419: 	SignEvmHashWithBodyWithResponse(ctx context.Context, address string, params *SignEvmHashParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SignEvmHashResponse, error)
		client.gen.go#L9424: 	SignEvmMessageWithBodyWithResponse(ctx context.Context, address string, params *SignEvmMessageParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SignEvmMessageResponse, error)
		client.gen.go#L9429: 	SignEvmTransactionWithBodyWithResponse(ctx context.Context, address string, params *SignEvmTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SignEvmTransactionResponse, error)
		client.gen.go#L9434: 	SignEvmTypedDataWithBodyWithResponse(ctx context.Context, address string, params *SignEvmTypedDataParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SignEvmTypedDataResponse, error)
		client.gen.go#L9439: 	RequestEvmFaucetWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*RequestEvmFaucetResponse, error)
		client.gen.go#L9447: 	CreateEvmSmartAccountWithBodyWithResponse(ctx context.Context, params *CreateEvmSmartAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreateEvmSmartAccountResponse, error)
		client.gen.go#L9458: 	UpdateEvmSmartAccountWithBodyWithResponse(ctx context.Context, address string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*UpdateEvmSmartAccountResponse, error)
		client.gen.go#L9463: 	CreateSpendPermissionWithBodyWithResponse(ctx context.Context, address string, params *CreateSpendPermissionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreateSpendPermissionResponse, error)
		client.gen.go#L9471: 	RevokeSpendPermissionWithBodyWithResponse(ctx context.Context, address string, params *RevokeSpendPermissionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*RevokeSpendPermissionResponse, error)
		client.gen.go#L9476: 	PrepareUserOperationWithBodyWithResponse(ctx context.Context, address string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PrepareUserOperationResponse, error)
		client.gen.go#L9484: 	SendUserOperationWithBodyWithResponse(ctx context.Context, address string, userOpHash string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SendUserOperationResponse, error)
		client.gen.go#L9489: 	CreateEvmSwapQuoteWithBodyWithResponse(ctx context.Context, params *CreateEvmSwapQuoteParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreateEvmSwapQuoteResponse, error)
		client.gen.go#L9500: 	CreateOnrampOrderWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreateOnrampOrderResponse, error)
		client.gen.go#L9514: 	CreatePaymentTransferQuoteWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreatePaymentTransferQuoteResponse, error)
		client.gen.go#L9528: 	CreatePolicyWithBodyWithResponse(ctx context.Context, params *CreatePolicyParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreatePolicyResponse, error)
		client.gen.go#L9539: 	UpdatePolicyWithBodyWithResponse(ctx context.Context, policyId string, params *UpdatePolicyParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*UpdatePolicyResponse, error)
		client.gen.go#L9547: 	CreateSolanaAccountWithBodyWithResponse(ctx context.Context, params *CreateSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreateSolanaAccountResponse, error)
		client.gen.go#L9555: 	ExportSolanaAccountByNameWithBodyWithResponse(ctx context.Context, name string, params *ExportSolanaAccountByNameParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ExportSolanaAccountByNameResponse, error)
		client.gen.go#L9560: 	ImportSolanaAccountWithBodyWithResponse(ctx context.Context, params *ImportSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ImportSolanaAccountResponse, error)
		client.gen.go#L9565: 	SendSolanaTransactionWithBodyWithResponse(ctx context.Context, params *SendSolanaTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SendSolanaTransactionResponse, error)
		client.gen.go#L9573: 	UpdateSolanaAccountWithBodyWithResponse(ctx context.Context, address string, params *UpdateSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*UpdateSolanaAccountResponse, error)
		client.gen.go#L9578: 	ExportSolanaAccountWithBodyWithResponse(ctx context.Context, address string, params *ExportSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ExportSolanaAccountResponse, error)
		client.gen.go#L9583: 	SignSolanaMessageWithBodyWithResponse(ctx context.Context, address string, params *SignSolanaMessageParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SignSolanaMessageResponse, error)
		client.gen.go#L9588: 	SignSolanaTransactionWithBodyWithResponse(ctx context.Context, address string, params *SignSolanaTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SignSolanaTransactionResponse, error)
		client.gen.go#L9593: 	RequestSolanaFaucetWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*RequestSolanaFaucetResponse, error)
		client.gen.go#L11299: func (c *ClientWithResponses) RunSQLQueryWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*RunSQLQueryResponse, error) {
		client.gen.go#L11325: func (c *ClientWithResponses) CreateEvmAccountWithBodyWithResponse(ctx context.Context, params *CreateEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreateEvmAccountResponse, error) {
		client.gen.go#L11351: func (c *ClientWithResponses) ExportEvmAccountByNameWithBodyWithResponse(ctx context.Context, name string, params *ExportEvmAccountByNameParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ExportEvmAccountByNameResponse, error) {
		client.gen.go#L11368: func (c *ClientWithResponses) ImportEvmAccountWithBodyWithResponse(ctx context.Context, params *ImportEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ImportEvmAccountResponse, error) {
		client.gen.go#L11394: func (c *ClientWithResponses) UpdateEvmAccountWithBodyWithResponse(ctx context.Context, address string, params *UpdateEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*UpdateEvmAccountResponse, error) {
		client.gen.go#L11411: func (c *ClientWithResponses) ExportEvmAccountWithBodyWithResponse(ctx context.Context, address string, params *ExportEvmAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ExportEvmAccountResponse, error) {
		client.gen.go#L11428: func (c *ClientWithResponses) SendEvmTransactionWithBodyWithResponse(ctx context.Context, address string, params *SendEvmTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SendEvmTransactionResponse, error) {
		client.gen.go#L11445: func (c *ClientWithResponses) SignEvmHashWithBodyWithResponse(ctx context.Context, address string, params *SignEvmHashParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SignEvmHashResponse, error) {
		client.gen.go#L11462: func (c *ClientWithResponses) SignEvmMessageWithBodyWithResponse(ctx context.Context, address string, params *SignEvmMessageParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SignEvmMessageResponse, error) {
		client.gen.go#L11479: func (c *ClientWithResponses) SignEvmTransactionWithBodyWithResponse(ctx context.Context, address string, params *SignEvmTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SignEvmTransactionResponse, error) {
		client.gen.go#L11496: func (c *ClientWithResponses) SignEvmTypedDataWithBodyWithResponse(ctx context.Context, address string, params *SignEvmTypedDataParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SignEvmTypedDataResponse, error) {
		client.gen.go#L11513: func (c *ClientWithResponses) RequestEvmFaucetWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*RequestEvmFaucetResponse, error) {
		client.gen.go#L11539: func (c *ClientWithResponses) CreateEvmSmartAccountWithBodyWithResponse(ctx context.Context, params *CreateEvmSmartAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreateEvmSmartAccountResponse, error) {
		client.gen.go#L11574: func (c *ClientWithResponses) UpdateEvmSmartAccountWithBodyWithResponse(ctx context.Context, address string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*UpdateEvmSmartAccountResponse, error) {
		client.gen.go#L11591: func (c *ClientWithResponses) CreateSpendPermissionWithBodyWithResponse(ctx context.Context, address string, params *CreateSpendPermissionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreateSpendPermissionResponse, error) {
		client.gen.go#L11617: func (c *ClientWithResponses) RevokeSpendPermissionWithBodyWithResponse(ctx context.Context, address string, params *RevokeSpendPermissionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*RevokeSpendPermissionResponse, error) {
		client.gen.go#L11634: func (c *ClientWithResponses) PrepareUserOperationWithBodyWithResponse(ctx context.Context, address string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PrepareUserOperationResponse, error) {
		client.gen.go#L11660: func (c *ClientWithResponses) SendUserOperationWithBodyWithResponse(ctx context.Context, address string, userOpHash string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SendUserOperationResponse, error) {
		client.gen.go#L11677: func (c *ClientWithResponses) CreateEvmSwapQuoteWithBodyWithResponse(ctx context.Context, params *CreateEvmSwapQuoteParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreateEvmSwapQuoteResponse, error) {
		client.gen.go#L11712: func (c *ClientWithResponses) CreateOnrampOrderWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreateOnrampOrderResponse, error) {
		client.gen.go#L11756: func (c *ClientWithResponses) CreatePaymentTransferQuoteWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreatePaymentTransferQuoteResponse, error) {
		client.gen.go#L11800: func (c *ClientWithResponses) CreatePolicyWithBodyWithResponse(ctx context.Context, params *CreatePolicyParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreatePolicyResponse, error) {
		client.gen.go#L11835: func (c *ClientWithResponses) UpdatePolicyWithBodyWithResponse(ctx context.Context, policyId string, params *UpdatePolicyParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*UpdatePolicyResponse, error) {
		client.gen.go#L11861: func (c *ClientWithResponses) CreateSolanaAccountWithBodyWithResponse(ctx context.Context, params *CreateSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreateSolanaAccountResponse, error) {
		client.gen.go#L11887: func (c *ClientWithResponses) ExportSolanaAccountByNameWithBodyWithResponse(ctx context.Context, name string, params *ExportSolanaAccountByNameParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ExportSolanaAccountByNameResponse, error) {
		client.gen.go#L11904: func (c *ClientWithResponses) ImportSolanaAccountWithBodyWithResponse(ctx context.Context, params *ImportSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ImportSolanaAccountResponse, error) {
		client.gen.go#L11921: func (c *ClientWithResponses) SendSolanaTransactionWithBodyWithResponse(ctx context.Context, params *SendSolanaTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SendSolanaTransactionResponse, error) {
		client.gen.go#L11947: func (c *ClientWithResponses) UpdateSolanaAccountWithBodyWithResponse(ctx context.Context, address string, params *UpdateSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*UpdateSolanaAccountResponse, error) {
		client.gen.go#L11964: func (c *ClientWithResponses) ExportSolanaAccountWithBodyWithResponse(ctx context.Context, address string, params *ExportSolanaAccountParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ExportSolanaAccountResponse, error) {
		client.gen.go#L11981: func (c *ClientWithResponses) SignSolanaMessageWithBodyWithResponse(ctx context.Context, address string, params *SignSolanaMessageParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SignSolanaMessageResponse, error) {
		client.gen.go#L11998: func (c *ClientWithResponses) SignSolanaTransactionWithBodyWithResponse(ctx context.Context, address string, params *SignSolanaTransactionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SignSolanaTransactionResponse, error) {
		client.gen.go#L12015: func (c *ClientWithResponses) RequestSolanaFaucetWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*RequestSolanaFaucetResponse, error) {

	github.com/google/uuid
		uuid.go#L319: func SetRand(r io.Reader) {
		version4.go#L47: func NewRandomFromReader(r io.Reader) (UUID, error) {
		version7.go#L35: func NewV7FromReader(r io.Reader) (UUID, error) {

	mime
		encodedword.go#L194: 	CharsetReader func(charset string, input io.Reader) (io.Reader, error)

	mime/multipart
		formdata.go#L288: 	io.Reader
		multipart.go#L66: 	r io.Reader
		multipart.go#L119: func NewReader(r io.Reader, boundary string) *Reader {
		multipart.go#L136: 	r   io.Reader

	mime/quotedprintable
		reader.go#L24: func NewReader(r io.Reader) *Reader {

	net
		net.go#L746: func (noReadFrom) ReadFrom(io.Reader) (int64, error) {
		net.go#L760: func genericReadFrom(c *TCPConn, r io.Reader) (n int64, err error) {
		net.go#L832: 	_ io.Reader   = (*Buffers)(nil)
		sendfile_linux.go#L22: func sendFile(c *netFD, r io.Reader) (written int64, err error, handled bool) {
		splice_linux.go#L19: func spliceFrom(c *netFD, r io.Reader) (written int64, err error, handled bool) {
		tcpsock.go#L161: func (c *TCPConn) ReadFrom(r io.Reader) (int64, error) {
		tcpsock_posix.go#L47: func (c *TCPConn) readFrom(r io.Reader) (int64, error) {

	net/http
		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) {
		fs.go#L110: 	io.Reader
		fs.go#L313: 	var sendContent io.Reader = content
		h2_bundle.go#L1635: func http2ReadFrameHeader(r io.Reader) (http2FrameHeader, error) {
		h2_bundle.go#L1641: func http2readFrameHeader(buf []byte, r io.Reader) (http2FrameHeader, error) {
		h2_bundle.go#L1671: 	r         io.Reader
		h2_bundle.go#L1838: func http2NewFramer(w io.Writer, r io.Reader) *http2Framer {
		h2_bundle.go#L3728: 	io.Reader
		request.go#L871: func NewRequest(method, url string, body io.Reader) (*Request, error) {
		request.go#L898: func NewRequestWithContext(ctx context.Context, method, url string, body io.Reader) (*Request, error) {
		request.go#L1286: 		var reader io.Reader = r.Body
		response.go#L280: 				io.Reader
		server.go#L586: func (w *response) ReadFrom(src io.Reader) (n int64, err error) {
		server.go#L851: func newBufioReader(r io.Reader) *bufio.Reader {
		transfer.go#L62: 	Body             io.Reader
		transfer.go#L209: 	go func(body io.Reader) {
		transfer.go#L412: func (t *transferWriter) doBodyCopy(dst io.Writer, src io.Reader) (n int64, err error) {
		transfer.go#L428: func (t *transferWriter) unwrapBody() io.Reader {
		transfer.go#L811: 	src          io.Reader
		transfer.go#L1096: 	io.Reader
		transfer.go#L1102: func unwrapNopCloser(r io.Reader) (underlyingReader io.Reader, isNopCloser bool) {
		transfer.go#L1105: 		return reflect.ValueOf(r).Field(0).Interface().(io.Reader), true
		transfer.go#L1114: func isKnownInMemoryReader(r io.Reader) bool {
		transport.go#L1898: func (w persistConnWriter) ReadFrom(r io.Reader) (n int64, err error) {

	net/http/internal
		chunked.go#L29: func NewChunkedReader(r io.Reader) io.Reader {

	net/textproto
		reader.go#L328: func (r *Reader) DotReader() io.Reader {

	os
		file.go#L155: func (f *File) ReadFrom(r io.Reader) (n int64, err error) {
		file.go#L172: func (noReadFrom) ReadFrom(io.Reader) (int64, error) {
		file.go#L184: func genericReadFrom(f *File, r io.Reader) (int64, error) {
		zero_copy_linux.go#L51: func (f *File) readFrom(r io.Reader) (written int64, handled bool, err error) {
		zero_copy_linux.go#L68: func (f *File) spliceToFile(r io.Reader) (written int64, handled bool, err error) {
		zero_copy_linux.go#L98: func (f *File) copyFileRange(r io.Reader) (written int64, handled bool, err error) {
		zero_copy_linux.go#L155: func tryLimitedReader(r io.Reader) (*io.LimitedReader, io.Reader, int64) {

	vendor/golang.org/x/crypto/hkdf
		hkdf.go#L85: func Expand(hash func() hash.Hash, pseudorandomKey, info []byte) io.Reader {
		hkdf.go#L92: func New(hash func() hash.Hash, secret, salt, info []byte) io.Reader {

	vendor/golang.org/x/crypto/sha3
		shake.go#L35: 	io.Reader

	vendor/golang.org/x/text/transform
		transform.go#L111: 	r   io.Reader
		transform.go#L134: func NewReader(r io.Reader, t Transformer) *Reader {

	vendor/golang.org/x/text/unicode/norm
		readwriter.go#L74: 	r            io.Reader
		readwriter.go#L119: func (f Form) Reader(r io.Reader) io.Reader {