Interface DecodedInitializeAccount2InstructionUnchecked

A decoded, non-validated InitializeAccount2 instruction

interface DecodedInitializeAccount2InstructionUnchecked {
    data: {
        instruction: number;
        owner: PublicKey;
    };
    keys: {
        account: undefined | AccountMeta;
        mint: undefined | AccountMeta;
        rent: undefined | AccountMeta;
    };
    programId: PublicKey;
}

Properties

Properties

data: {
    instruction: number;
    owner: PublicKey;
}

Type declaration

  • instruction: number
  • owner: PublicKey
keys: {
    account: undefined | AccountMeta;
    mint: undefined | AccountMeta;
    rent: undefined | AccountMeta;
}

Type declaration

  • account: undefined | AccountMeta
  • mint: undefined | AccountMeta
  • rent: undefined | AccountMeta
programId: PublicKey

Generated using TypeDoc