diff --git a/docs/src/api/methods/_getAccountInfo.mdx b/docs/src/api/methods/_getAccountInfo.mdx index 18a508075..35e55f0a7 100644 --- a/docs/src/api/methods/_getAccountInfo.mdx +++ b/docs/src/api/methods/_getAccountInfo.mdx @@ -56,13 +56,15 @@ Encoding format for Account data - - limit the returned account data using the provided "offset: <usize>" and - "length: <usize>" fields -
  • - only available for base58, base64 or{" "} - base64+zstd encodings. -
  • + + Request a slice of the account's data. + + - `length: ` - number of bytes to return + - `offset: ` - byte offset from which to start reading + +:::info +Data slicing is only available for base58, base64, or base64+zstd encodings. +::: diff --git a/docs/src/api/methods/_getMultipleAccounts.mdx b/docs/src/api/methods/_getMultipleAccounts.mdx index 207828fb4..feace5e86 100644 --- a/docs/src/api/methods/_getMultipleAccounts.mdx +++ b/docs/src/api/methods/_getMultipleAccounts.mdx @@ -40,9 +40,14 @@ Configuration object containing the following fields: + Request a slice of the account's data. -limit the returned account data using the provided `offset: ` and `length: ` fields; only available for "base58", "base64" or "base64+zstd" encodings. + - `length: ` - number of bytes to return + - `offset: ` - byte offset from which to start reading +:::info +Data slicing is only available for base58, base64, or base64+zstd encodings. +::: diff --git a/docs/src/api/methods/_getProgramAccounts.mdx b/docs/src/api/methods/_getProgramAccounts.mdx index 7b623849d..0104a0cfd 100644 --- a/docs/src/api/methods/_getProgramAccounts.mdx +++ b/docs/src/api/methods/_getProgramAccounts.mdx @@ -64,10 +64,14 @@ encoding format for the returned Account data -limit the returned account data using the provided `offset: usize` and `length: usize` fields; + Request a slice of the account's data. -- only available for "base58", "base64" or "base64+zstd" encodings. + - `length: ` - number of bytes to return + - `offset: ` - byte offset from which to start reading +:::info +Data slicing is only available for base58, base64, or base64+zstd encodings. +::: diff --git a/docs/src/api/methods/_getTokenAccountsByDelegate.mdx b/docs/src/api/methods/_getTokenAccountsByDelegate.mdx index be47c1305..712572457 100644 --- a/docs/src/api/methods/_getTokenAccountsByDelegate.mdx +++ b/docs/src/api/methods/_getTokenAccountsByDelegate.mdx @@ -48,11 +48,14 @@ Configuration object containing the following fields: + Request a slice of the account's data. -limit the returned account data using the provided `offset: ` -and `length: ` fields; only available for `base58`, -`base64` or `base64+zstd` encodings. + - `length: ` - number of bytes to return + - `offset: ` - byte offset from which to start reading +:::info +Data slicing is only available for base58, base64, or base64+zstd encodings. +::: diff --git a/docs/src/api/methods/_getTokenAccountsByOwner.mdx b/docs/src/api/methods/_getTokenAccountsByOwner.mdx index 06a7e5fe4..27aa97118 100644 --- a/docs/src/api/methods/_getTokenAccountsByOwner.mdx +++ b/docs/src/api/methods/_getTokenAccountsByOwner.mdx @@ -48,11 +48,14 @@ Configuration object containing the following fields: + Request a slice of the account's data. -limit the returned account data using the provided `offset: ` -and `length: ` fields; only available for -`base58`, `base64`, or `base64+zstd` encodings. + - `length: ` - number of bytes to return + - `offset: ` - byte offset from which to start reading +:::info +Data slicing is only available for base58, base64, or base64+zstd encodings. +:::