gill
gill/programs/system/Type aliases

ParsedAllocateWithSeedInstruction

type ParsedAllocateWithSeedInstruction<TProgram, TAccountMetas> = {
  accounts: {
     baseAccount: TAccountMetas[1];
     newAccount: TAccountMetas[0];
  };
  data: AllocateWithSeedInstructionData;
  programAddress: Address<TProgram>;
};

Type Parameters

Type ParameterDefault type
TProgram extends stringtypeof SYSTEM_PROGRAM_ADDRESS
TAccountMetas extends readonly IAccountMeta[]readonly IAccountMeta[]

Properties

accounts

accounts: {
  baseAccount: TAccountMetas[1];
  newAccount: TAccountMetas[0];
};
NameType
baseAccountTAccountMetas[1]
newAccountTAccountMetas[0]

data

data: AllocateWithSeedInstructionData;

programAddress

programAddress: Address<TProgram>;

On this page