ipfs-http-client
Version:
A client library for the IPFS HTTP API
28 lines (24 loc) • 863 B
JavaScript
import { CID } from 'multiformats/cid'
import { configure } from '../lib/configure.js'
import { toUrlSearchParams } from '../lib/to-url-search-params.js'
/**
* @typedef {import('../types').HTTPClientExtraOptions} HTTPClientExtraOptions
* @typedef {import('ipfs-core-types/src/bitswap').API<HTTPClientExtraOptions>} BitswapAPI
*/
export const createWantlistForPeer = configure(api => {
/**
* @type {BitswapAPI["wantlistForPeer"]}
*/
async function wantlistForPeer (peerId, options = {}) {
const res = await (await api.post('bitswap/wantlist', {
signal: options.signal,
searchParams: toUrlSearchParams({
...options,
peer: peerId.toString()
}),
headers: options.headers
})).json()
return (res.Keys || []).map((/** @type {{ '/': string }} */ k) => CID.parse(k['/']))
}
return wantlistForPeer
})