Interface AuthorityEvaluationResult

interface AuthorityEvaluationResult {
    approvedAccounts: string[];
    authorized: boolean;
    matchedKey: null | string;
    matchedKeys: string[];
    missingAccounts: string[];
    reason: AuthorityValidationReason;
    threshold: number;
    totalWeight: number;
    visitedAccounts: string[];
}

Properties

approvedAccounts: string[]
authorized: boolean
matchedKey: null | string
matchedKeys: string[]
missingAccounts: string[]
threshold: number
totalWeight: number
visitedAccounts: string[]