UNPKG

ipfs-http-client

Version:
12 lines 406 B
import { createWantlist } from './wantlist.js'; import { createWantlistForPeer } from './wantlist-for-peer.js'; import { createStat } from './stat.js'; import { createUnwant } from './unwant.js'; export function createBitswap(config) { return { wantlist: createWantlist(config), wantlistForPeer: createWantlistForPeer(config), unwant: createUnwant(config), stat: createStat(config) }; }