UNPKG

ipfs

Version:

JavaScript implementation of the IPFS specification

13 lines (11 loc) 277 B
'use strict' exports.get = async (request, h) => { const id = await request.server.app.ipfs.id() return h.response({ ID: id.id, PublicKey: id.publicKey, Addresses: id.addresses, AgentVersion: id.agentVersion, ProtocolVersion: id.protocolVersion }) }