kubo-rpc-client
Version:
A client library for the Kubo RPC API
21 lines (18 loc) • 616 B
text/typescript
import { objectToCamel } from '../lib/object-to-camel.js'
import { toUrlSearchParams } from '../lib/to-url-search-params.js'
import type { KeyAPI } from './index.js'
import type { HTTPRPCClient } from '../lib/core.js'
export function createRm (client: HTTPRPCClient): KeyAPI['rm'] {
return async function rm (name, options = {}) {
const res = await client.post('key/rm', {
signal: options.signal,
searchParams: toUrlSearchParams({
arg: name,
...options
}),
headers: options.headers
})
const data = await res.json()
return objectToCamel(data.Keys[0])
}
}