kubo-rpc-client
Version:
A client library for the Kubo RPC API
24 lines (20 loc) • 749 B
text/typescript
import { mapEvent } from '../dht/map-event.js'
import { toUrlSearchParams } from '../lib/to-url-search-params.js'
import type { RoutingAPI } from './index.js'
import type { HTTPRPCClient } from '../lib/core.js'
export function createProvide (client: HTTPRPCClient): RoutingAPI['provide'] {
return async function * provide (cids, options = { recursive: false }) {
const cidArr = Array.isArray(cids) ? cids : [cids]
const res = await client.post('routing/provide', {
signal: options.signal,
searchParams: toUrlSearchParams({
arg: cidArr.map(cid => cid.toString()),
...options
}),
headers: options.headers
})
for await (const event of res.ndjson()) {
yield mapEvent(event)
}
}
}