Skip to content
This repository has been archived by the owner on Jun 14, 2024. It is now read-only.

Latest commit

 

History

History
18 lines (12 loc) · 319 Bytes

README.md

File metadata and controls

18 lines (12 loc) · 319 Bytes

Mantle Server

Mantle Server SDK repository

Examples

ipfs

const MantleServer = require('@appliedblockchain/mantle-server')
const ipfs = MantleServer.ipfs({ host: '127.0.0.1' })

const data = 'foo'

const hash = await ipfs.store(data)
const retrievedData = await ipfs.cat(hash)
await ipfs.rm(hash)