@appliedblockchain/mantle-server
v2.0.0
Published
Mantle Server SDK repository
Downloads
18
Maintainers
Keywords
Readme
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)