@aster-rpc/aster API Reference
    Preparing search index...

    Interface AsterConfig

    Aster configuration.

    interface AsterConfig {
        rootPubkey?: Uint8Array<ArrayBufferLike>;
        rootPubkeyFile?: string;
        enrollmentCredentialFile?: string;
        allowAllConsumers: boolean;
        allowAllProducers: boolean;
        endpointAddr?: string;
        storagePath?: string;
        healthPort: number;
        healthHost: string;
        secretKey?: Uint8Array<ArrayBufferLike>;
        relayMode?: string;
        bindAddr?: string;
        enableMonitoring: boolean;
        enableHooks: boolean;
        hookTimeoutMs: number;
        logFormat: "json" | "text";
        logLevel: "debug" | "info" | "warning" | "error";
        logMask: boolean;
        identityFile?: string;
    }
    Index

    Properties

    rootPubkey?: Uint8Array<ArrayBufferLike>
    rootPubkeyFile?: string
    enrollmentCredentialFile?: string
    allowAllConsumers: boolean
    allowAllProducers: boolean
    endpointAddr?: string
    storagePath?: string
    healthPort: number
    healthHost: string
    secretKey?: Uint8Array<ArrayBufferLike>
    relayMode?: string
    bindAddr?: string
    enableMonitoring: boolean
    enableHooks: boolean
    hookTimeoutMs: number
    logFormat: "json" | "text"
    logLevel: "debug" | "info" | "warning" | "error"
    logMask: boolean
    identityFile?: string