Standard LibraryStorage Module

Storage Module

The storage module provides decentralized storage access.

IPFS

import dstore

let cid = dstore.ipfs.put(bytes("Hello"))
let data = dstore.ipfs.get(cid)

Filecoin

# Coming soon
let cid = dstore.filecoin.put(data, duration:365)

Arweave

# Coming soon
let tx_id = dstore.arweave.put(data)

Next Steps