AllocateWithSeedParams constructor

const AllocateWithSeedParams({
  1. required Pubkey accountPubkey,
  2. required Pubkey basePubkey,
  3. required String seed,
  4. required u64 space,
  5. required Pubkey programId,
})

Allocate account with seed system transaction params.

Implementation

const AllocateWithSeedParams({
  required this.accountPubkey,
  required this.basePubkey,
  required this.seed,
  required this.space,
  required this.programId,
});