Interface AuthorityEvaluationOptions

interface AuthorityEvaluationOptions {
    getAuthority?: ((account: string) => undefined | AuthorityType);
    maxAccountAuths?: number;
    maxMembership?: number;
    maxRecursion?: number;
}

Properties

getAuthority?: ((account: string) => undefined | AuthorityType)

Resolve delegated account authorities. For posting checks, return the delegated account's posting authority.

maxAccountAuths?: number

Canonical Layer 1 delegated-account check limit. Defaults to BLURT_MAX_SIG_CHECK_ACCOUNTS.

maxMembership?: number

Canonical Layer 1 authority membership limit. Defaults to BLURT_MAX_AUTHORITY_MEMBERSHIP.

maxRecursion?: number

Canonical Layer 1 recursion limit. Defaults to BLURT_MAX_SIG_CHECK_DEPTH.