UNPKG

ipfs-http-client

Version:
22 lines (17 loc) 661 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var cid = require('multiformats/cid'); var configure = require('../lib/configure.js'); var toUrlSearchParams = require('../lib/to-url-search-params.js'); const createWantlist = configure.configure(api => { async function wantlist(options = {}) { const res = await (await api.post('bitswap/wantlist', { signal: options.signal, searchParams: toUrlSearchParams.toUrlSearchParams(options), headers: options.headers })).json(); return (res.Keys || []).map(k => cid.CID.parse(k['/'])); } return wantlist; }); exports.createWantlist = createWantlist;