Protected
_honeycombGets the connection object used by the RpcClient.
The connection object.
Checks if an account exists for the specified public key.
The public key to check.
Optional
commitment: CommitmentThe desired commitment level.
True if the account exists, otherwise false.
Confirms an array of processed contexts as transactions on the Solana network.
An array of processed contexts.
Optional
commitment: CommitmentThe desired commitment level for the confirmation.
Optional
doNotThrowOnError: booleanIf true, it won't throw an error on confirmation failure.
An array of confirmed contexts.
Retrieves the account information for the specified public key.
The public key for the account.
Optional
commitment: CommitmentThe desired commitment level.
The account information.
Retrieves the latest blockhash with its block height.
Optional
commitmentOrConfig: Commitment | GetLatestBlockhashConfigCommitment level or configuration.
The blockhash with its block height.
Retrieves the account information for multiple public keys.
An array of public keys to retrieve account information for.
Optional
commitment: CommitmentThe desired commitment level.
An array of account information for the specified public keys.
Retrieves program accounts for the specified program ID.
The program ID to query for accounts.
Optional
configOrCommitment: Commitment | GetProgramAccountsConfigConfiguration or commitment level.
An array of program accounts.
Retrieves the minimum balance required to rent an account with the specified data size.
The size of the account data in bytes.
Optional
commitment: CommitmentThe desired commitment level.
The minimum balance required for rent exemption.
Prepares an array of operation contexts for transaction serialization and signing.
An array of operation contexts.
An array of prepared contexts.
Sends a transaction context and confirms it on the Solana network.
The operation context to send and confirm.
Optional
confirmOptions: ConfirmOptionsOptions for confirming the transaction.
The confirmed context.
Sends an array of transaction contexts in batches and confirms them on the Solana network.
An array of operation contexts.
Optional
options: ConfirmOptions & { Options for confirming the transactions in batches.
An array of confirmed contexts.
Sends an array of prepared contexts as transactions to the Solana RPC.
An array of prepared contexts.
Optional
sendOptions: SendOptionsOptions for sending the transactions.
An array of processed contexts.
Transfers lamports to the specified destination address.
The recipient's public key.
The amount of lamports to transfer.
The confirmed context of the transaction.
Generated using TypeDoc
Represents the RpcClient used for interacting with the Solana RPC.