Skip to content

Instantly share code, notes, and snippets.

View GunaShekar02's full-sized avatar

Guna Shekar Proddaturi GunaShekar02

View GitHub Profile
@VictorTaelin
VictorTaelin / upload_json_to_ipfs.js
Last active December 30, 2021 20:09
Upload a JSON to IPFS
const ipfs = require("nano-ipfs-store").at("https://ipfs.infura.io:5001");
(async () => {
const doc = JSON.stringify({
foo: "bar",
tic: "tac"
});
const cid = await ipfs.add(doc);