@tabcat/zzzync
    Preparing search index...

    Interface Allow

    interface Allow {
        multihash(
            name: IpnsMultihash,
            options?: AllowOptions,
        ): boolean | Promise<boolean>;
        record(
            name: IpnsMultihash,
            record: IPNSRecord,
            options?: AbortOptions,
        ): boolean | Promise<boolean>;
    }
    Index
    • Whether the dialer's key may push at all. publicKeyFromIpnsMultihash recovers the key itself where the decision needs it.

      Parameters

      Returns boolean | Promise<boolean>

    • Whether to accept record for name. The authoritative downgrade guard: reject (return false) to abort the stream before the CAR is imported.

      Parameters

      • name: IpnsMultihash
      • record: IPNSRecord
      • Optionaloptions: AbortOptions

      Returns boolean | Promise<boolean>