@web3-storage/pail
Version:
DAG based key value store.
11 lines (10 loc) • 377 B
JavaScript
import { CID } from 'multiformats/cid';
import * as raw from 'multiformats/codecs/raw';
import { sha256 } from 'multiformats/hashes/sha2';
import { randomBytes } from '../test/helpers.js';
async function main() {
const bytes = await randomBytes(32);
const hash = await sha256.digest(bytes);
process.stdout.write(CID.create(1, raw.code, hash).toString());
}
main();