Interface DecodedSetAuthorityInstructionUnchecked

A decoded, non-validated SetAuthority instruction

interface DecodedSetAuthorityInstructionUnchecked {
    data: {
        authorityType: AuthorityType;
        instruction: number;
        newAuthority: null | PublicKey;
    };
    keys: {
        account: undefined | AccountMeta;
        currentAuthority: undefined | AccountMeta;
        multiSigners: AccountMeta[];
    };
    programId: PublicKey;
}

Properties

Properties

data: {
    authorityType: AuthorityType;
    instruction: number;
    newAuthority: null | PublicKey;
}

Type declaration

  • authorityType: AuthorityType
  • instruction: number
  • newAuthority: null | PublicKey
keys: {
    account: undefined | AccountMeta;
    currentAuthority: undefined | AccountMeta;
    multiSigners: AccountMeta[];
}

Type declaration

  • account: undefined | AccountMeta
  • currentAuthority: undefined | AccountMeta
  • multiSigners: AccountMeta[]
programId: PublicKey

Generated using TypeDoc