Interface AccountAuthorityValidationOptions

interface AccountAuthorityValidationOptions {
    getAccount?: ((account: string) => undefined | Account);
    maxAccountAuths?: number;
    maxMembership?: number;
    maxRecursion?: number;
}

Properties

getAccount?: ((account: string) => undefined | Account)

Resolve delegated account objects. Posting validation uses delegated accounts' posting authorities.

maxAccountAuths?: number
maxMembership?: number
maxRecursion?: number