Interface AccountAuthorityValidationResult

interface AccountAuthorityValidationResult {
    account: string;
    authority: AccountAuthorityClass;
    authorized: boolean;
    key: string;
    matches: Record<AccountAuthorityClass, AuthorityEvaluationResult>;
    missingAccounts: string[];
    reason: AuthorityValidationReason;
}

Properties

account: string
authorized: boolean
key: string
missingAccounts: string[]