Interfaces
Account
Contains all the information relevant to a Solana account. It includes the account's address and data, as well as the properties of BaseAccount.
Example
Type Parameters
Type Parameter | Default type | Description |
---|---|---|
TData extends Uint8Array | object | - | The nature of this account's data. It can be represented as either a Uint8Array – meaning the account is encoded – or a custom data type – meaning the account is decoded. |
TAddress extends string | string | Supply a string literal to define an account having a particular address. |