helia
    Preparing search index...

    Interface IPNSResolveOptions

    interface IPNSResolveOptions {
        nocache?: boolean;
        offline?: boolean;
        onProgress?: ProgressEventListener<
            IPNSRoutingProgressEvents
            | ResolveProgressEvents,
        >;
        signal?: AbortSignal;
        validate?: boolean;
    }

    Hierarchy

    Index

    Properties

    nocache?: boolean

    Do not use cached IPNS Record entries

    false
    
    offline?: boolean

    Do not query the network for the IPNS record

    false
    
    signal?: AbortSignal
    validate?: boolean

    If true, ensure the record fields and signature are valid. If false, just return the record.

    true