getAccountInfo - Solana
Example code for the getAccountInfo json-rpc method. Сomplete guide on how to use getAccountInfo json-rpc in GetBlock.io Web3 documentation.
Parameters
Pubkey
- string
Pubkey of account to query, as base-58 encoded string
Config
- object
Optional.
Configuration object containing the following optional fields: - Commitment (optional) - encoding: string - encoding for Account data, either "base58" (slow), "base64", "base64+zstd", or "jsonParsed". "base58" is limited to Account data of less than 129 bytes. "base64" will return base64 encoded data for Account data of any size. "base64+zstd" compresses the Account data using Zstandard and base64-encodes the result. "jsonParsed" encoding attempts to use program-specific state parsers to return more human-readable and explicit account state data. If "jsonParsed" is requested but a parser cannot be found, the field falls back to "base64" encoding, detectable when the data field is type string. - dataSlice: object (optional) - limit the returned account data using the provided [offset: usize] and [length: usize] fields; only available for "base58", "base64" or "base64+zstd" encodings.
Request
Response
Last updated