ipfs-http-client
Version:
A client library for the IPFS HTTP API
26 lines (21 loc) • 687 B
JavaScript
;
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 createNew = configure.configure(api => {
async function newObject(options = {}) {
const res = await api.post('object/new', {
signal: options.signal,
searchParams: toUrlSearchParams.toUrlSearchParams({
arg: options.template,
...options
}),
headers: options.headers
});
const {Hash} = await res.json();
return cid.CID.parse(Hash);
}
return newObject;
});
exports.createNew = createNew;