Skip to content

Instantly share code, notes, and snippets.

View fredyteheranto's full-sized avatar
🧿
Working from home

Fredy Saul Teheran Tovar fredyteheranto

🧿
Working from home
View GitHub Profile
@fredyteheranto
fredyteheranto / upload_json_to_ipfs.js
Created September 22, 2021 03:27 — forked from VictorTaelin/upload_json_to_ipfs.js
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);