Interface IPFSStatusResponse

Response from IPFS status query

interface IPFSStatusResponse {
    error?: string;
    healthy: boolean;
    peerCount?: number;
    peerId?: string;
    timestamp: number;
}

Properties

error?: string
healthy: boolean
peerCount?: number
peerId?: string
timestamp: number