ParsedAllocateWithSeedInstruction
type ParsedAllocateWithSeedInstruction<TProgram, TAccountMetas> = {
accounts: {
baseAccount: TAccountMetas[1];
newAccount: TAccountMetas[0];
};
data: AllocateWithSeedInstructionData;
programAddress: Address<TProgram>;
};Type Parameters
| Type Parameter | Default type |
|---|---|
TProgram extends string | typeof SYSTEM_PROGRAM_ADDRESS |
TAccountMetas extends readonly AccountMeta[] | readonly AccountMeta[] |
Properties
accounts
accounts: {
baseAccount: TAccountMetas[1];
newAccount: TAccountMetas[0];
};| Name | Type |
|---|---|
baseAccount | TAccountMetas[1] |
newAccount | TAccountMetas[0] |
data
data: AllocateWithSeedInstructionData;programAddress
programAddress: Address<TProgram>;