interface DHTRequest {
    cid?: Uint8Array;
    count?: number;
    key?: Uint8Array;
    peer?: Uint8Array;
    timeout?: bigint;
    type?: DHTRequest.Type;
    value?: Uint8Array;
}

Properties

count?: number
peer?: Uint8Array
timeout?: bigint
value?: Uint8Array