interface ModuleSecurityConfig {
    allowAnonymous?: boolean;
    allowed?: Record<string, (Lowercase<string> | CosigningAddressSet)[]>;
    disallowed?: Record<string, Lowercase<string>[]>;
}

Properties

allowAnonymous?: boolean
allowed?: Record<string, (Lowercase<string> | CosigningAddressSet)[]>
disallowed?: Record<string, Lowercase<string>[]>