ResolvedInstructionAccount
Represents a resolved account input for an instruction.
During instruction building, account inputs are resolved to this type which
captures both the account value and whether it should be marked as writable.
The value can be an Address, a ProgramDerivedAddress, a
TransactionSigner, or null for optional accounts.
Example
Type Parameters
| Type Parameter | Default type | Description |
|---|---|---|
TAddress extends string | string | The address type, defaults to string. |
TValue extends | Address<TAddress> | ProgramDerivedAddress<TAddress> | TransactionSigner<TAddress> | null | | Address<TAddress> | ProgramDerivedAddress<TAddress> | TransactionSigner<TAddress> | null | The type of the resolved value. |