The DAppNode Package manifest defines all the necessary information for a DAppNode to understand this package:
{
"name": "ipfs.dnp.dappnode.eth",
"version": "0.2.0",
"upstreamVersion": "2.6.0-beta",
"shortDescription": "Distributed file system for storing and accessing data.",
"description": "Welcome! IPFS is a distributed system for storing and accessing files, websites, applications, and data. If you’re new to IPFS, check our [introductory page](https://ipfs.io/#why) for an easy overview. \n\nWith this node you can upload and download files from IPFS using it own fancy web console at [http://ipfs.dappnode:5001/webui](http://ipfs.dappnode:5001/webui). Other DAppNode Packages and external applications can use its API at the endpoint `http://ipfs.dappnode:5001/api`. Go to the [IPFS HTTP API full reference](https://docs.ipfs.io/reference/api/http/) to check all the features of the API.",
"avatar": "/ipfs/QmWwMb3XhuCH6JnCF6m6EQzA4mW9pHHtg7rqAfhDr2ofi8",
"type": "service",
"chain": "ethereum",
"dependencies": {
"bitcoin.dnp.dappnode.eth": "^0.1.2",
"swarm.dnp.dappnode.eth": "latest"
},
"requirements": {
"minimumDappnodeVersion": "0.2.0"
},
"backup": [
{
"name": "keystore",
"path": "/root/.raiden/secret/keystore"
}
],
"changelog": "Brief summary of the most relevant changes that the user must known before installing",
"warnings": {
"onInstall": "You must set the PASSWORD ENV before installing the DAppNode Package in order for the setup to work correctly.",
"onUpdate": "Your VPN connection will be lost when the VPN finalizes updating. Leave 1-2 minutes after executing the update and then reconnect and refresh this site.",
"onReset": "You MUST properly close your open channels before resetting this DAppNode Package or you may lose your funds.",
"onRemove": "You MUST properly close your open channels before removing this DAppNode Package or you may lose your funds."
},
"updateAlerts": [
{
"from": "0.1.x",
"to": "0.1.x",
"message": "Major update to OpenVPN: This update breaks compatibility with the last VPN version. Please read the migration guide: https://migration020.dappnode.io"
}
],
"disclaimer": {
"message": "This software is experimental, presented “as is” and inherently carries risks."
},
"style": {
"featuredBackground": "linear-gradient(to right, #323131, #395353)",
"featuredColor": "white",
"featuredAvatarFilter": "invert(1)"
},
"author": "DAppNode Association <admin@dappnode.io> (https://github.com/dappnode)",
"contributors": [
"Michael First <developerHanlder@project.io> (https://github.com/developerHanlder)",
"Michael Second <developerHanlder@project.io> (https://github.com/developerHanlder)"
],
"categories": ["Developer tools", "Blockchain"],
"keywords": ["DAppNodeCore"],
"links": {
"homepage": "https://github.com/dappnode/DNP_IPFS#readme",
"ui": "http://ipfs.dappnode:5001/webui",
"api": "http://ipfs.dappnode:5001/api/v0",
"gateway": "http://ipfs.dappnode:8080/ipfs"
},
"repository": {
"type": "git",
"url": "https://github.com/dappnode/DNP_IPFS.git",
"directory": "packages/react-dom"
},
"bugs": {
"url": "https://github.com/dappnode/DNP_IPFS/issues"
},
"license": "GPL-3.0"
}
Property | Type | Required |
---|---|---|
name | string |
Required |
version | string |
Required |
upstreamVersion | string |
Optional |
shortDescription | string |
Optional |
description | string |
Required |
avatar | string |
Required |
type | enum |
Required |
chain | enum |
Optional |
dependencies | object |
Optional |
requirements | object |
Optional |
backup | object[] |
Optional |
changelog | string |
Optional |
warnings | object |
Optional |
updateAlerts | object[] |
Optional |
disclaimer | object |
Optional |
style | object |
Optional |
author | string |
Optional |
contributors | string[] |
Optional |
categories | enum[] |
Optional |
keywords | string[] |
Optional |
links | object |
Optional |
repository | object |
Optional |
bugs | object |
Optional |
license | string |
Required |
DAppNode Package ENS name.
string
Example:
"ipfs.dnp.dappnode.eth"
DAppNode Package semantic version (semver).
string
All instances must conform to this regular expression
^((([0-9]).([0-9]).([0-9])))$
Example:
"0.2.0"
For DAppNode Packages that only wrap existing software (i.e. Bitcoin node, Ethereum node), the underlying software
version can be specified here. It will be shown in the admin UI alongside the field version
.
string
Examples:
"2.6.0-beta"
"any-text"
Short DAppNode Package description, 6-8 words sentence briefly describing the purpose of this DAppNode Package. The purpose is to quickly grab users’ attention and clearly define its purpose. Markdown is discouraged as it will NOT be rendered on the DAppNode Package store view.
string
Example:
"Distributed file system for storing and accessing data."
DAppNode Package description. Markdown and links are allowed and ecouraged to give users the option to read more information about this DAppNode Package.
string
Example:
"Welcome! IPFS is a distributed system for storing and accessing files, websites, applications, and data. If you’re new to IPFS, check our [introductory page](https://ipfs.io/#why) for an easy overview. \n\nWith this node you can upload and download files from IPFS using it own fancy web console at [http://ipfs.dappnode:5001/webui](http://ipfs.dappnode:5001/webui). Other DAppNode Packages and external applications can use its API at the endpoint `http://ipfs.dappnode:5001/api`. Go to the [IPFS HTTP API full reference](https://docs.ipfs.io/reference/api/http/) to check all the features of the API."
IPFS / BZZ hash of the Avatar of this DAppNode Package. Must be a 300 x 300px transparent PNG. It is strongly encouraged that you optimize the .png before uploading it to minimize its size.
string
All instances must conform to this regular expression
^/(ipfs|bzz)/\w$
Example:
"/ipfs/QmWwMb3XhuCH6JnCF6m6EQzA4mW9pHHtg7rqAfhDr2ofi8"
Type of this DAppNode Package. It is used to trigger some special features such as core functionality.
"service"
string
The value of this property must be equal to one of the known values below.
Value | Description |
---|---|
service |
Can have ENVs a depend on library DAppNode Packages |
library |
Should not have ENVs and cannot depend on service DAppNode Packages |
dncore |
DAppNode Packages that are part of the DAppNode core and have special permissions |
Examples:
"service"
"dncore"
Indicate that this DAppNode Package is a blockchain node so the admin UI shows its syncing status
string
The value of this property must be equal to one of the known values below.
Value | Description |
---|---|
ethereum |
Must have an Ethereum JSON RPC exposed internally at port 8545 |
bitcoin |
Must have a standard Bitcoin JSON API exposed at the default port (8332). Uses the NPM package bitcoin-core |
monero |
Must have a Monero API exposed internally at port 18081. Uses the NPM package monero-rpc |
Examples:
"ethereum"
"bitcoin"
"monero"
DAppNode Package dependencies. Must be an object where the keys are the DAppNode Package’s ENS. The values must be a
semantic range, i.e. '0.2.0'
, '^0.2.1'
, '*'
, 'latest'
,
'/ipfs/QmWwMb3XhuCH6JnCF6m6EQzA4mW9pHHtg7rqAfhDr2ofi8'
.
object
with the following properties:| Property | Type | Required | | ——– | —- | ——– |
Examples:
{
"bitcoin.dnp.dappnode.eth": "^0.1.2",
"swarm.dnp.dappnode.eth": "latest"
}
{
"only-for-dev-1.dappnode.eth": "/ipfs/QmYjtig7VJQ6XsnUjqqJvj7QaMcCAwtrgNdahSiFofrE7o",
"only-for-dev-2.dappnode.eth": "/ipfs/zdj7WWeQ43G6JJvLWQWZpyHuAMq6uYWRjkBXFad11vE2LHhQ7"
}
Specify requirements to be met before allowing users to install this DAppNode Package.
object
with the following properties:Property | Type | Required |
---|---|---|
minimumDappnodeVersion |
string | Optional |
Minimum DAppNode version that includes all the features necessary to run this DAppNode Package.
string
All instances must conform to this regular expression
^((([0-9]).([0-9]).([0-9])))$
Example:
"0.2.0"
Allows users to download and restore a backup of key files of this package. If this property is non-empty array, a new view will be available in the admin UI for this DAppNode Package. The files or directories specified in the array will be bundled in a tarball. As long as the name properties stay the same, their associated paths can change in future versions. Then, when restoring an old backup, the new paths will be associated to files stored under the same name keys. Note: it is recommended to only backup lightweight files such as configs, keys or passwords.
object[]
All items must be of the type: object
with the following properties:
Property | Type | Required |
---|---|---|
name |
string | Required |
path |
string | Required |
A key identifier of this file or directory. Its purpose is to allow the path to change in the future.
string
Examples:
"keystore"
"config"
"keys"
Path to the file or directory to backup. It MUST be an absolute path (do not use the ~
character) for the backup
tool to work correctly.
string
Examples:
"/root/.raiden/secret/keystore"
"/usr/src/app/config.json"
Description of relevant changes of this specific version. Supports markdown and links.
string
Example:
"Brief summary of the most relevant changes that the user must known before installing"
Very relevant information that MUST be shown to the user BEFORE executing a specific action in the DAppNode Package’s lifecycle.
object
with the following properties:Property | Type | Required |
---|---|---|
onInstall |
string | Optional |
onUpdate |
string | Optional |
onReset |
string | Optional |
onRemove |
string | Optional |
Will be shown before installing the DAppNode Package.
string
Example:
"You must set the PASSWORD ENV before installing the DAppNode Package in order for the setup to work correctly."
Will be shown before updating the DAppNode Package, not in the first installation.
string
Example:
"Your VPN connection will be lost when the VPN finalizes updating. Leave 1-2 minutes after executing the update and then reconnect and refresh this site."
Will be shown before resetting the DAppNode Package.
string
Example:
"You MUST properly close your open channels before resetting this DAppNode Package or you may lose your funds."
Will be shown before removing the DAppNode Package.
string
Example:
"You MUST properly close your open channels before removing this DAppNode Package or you may lose your funds."
Alerts targeted to a specific update jump.
object[]
All items must be of the type: object
with the following properties:
Property | Type | Required | Default |
---|---|---|---|
from |
string | Required | |
to |
string | Optional | "*" |
message |
string | Required |
Semver range, show this message when a user updates this DAppNode Package FROM a version that satisfies this range.
string
Examples:
"0.1.x"
"^0.2.0"
Semver range, show this message when a user updates this DAppNode Package TO a version that satisfies this range.
"*"
string
Examples:
"0.1.x"
"^0.2.0"
"*"
Alert message to be shown when from
and to
ranges are satisfied.
string
Example:
"Major update to OpenVPN: This update breaks compatibility with the last VPN version. Please read the migration guide: https://migration020.dappnode.io"
Specific update jump alert.
Disclaimer to be shown to the user on install, and will require the user to approve it.
object
with the following properties:Property | Type | Required |
---|---|---|
message |
string | Required |
The message shown in the pop-up. Markdown and links are allowed.
string
Example:
"This software is experimental, presented “as is” and inherently carries risks."
Graphic information to control the appearance of DAppNode Package related items in the admin UI.
object
with the following properties:Property | Type | Required |
---|---|---|
featuredBackground |
string | Optional |
featuredColor |
string | Optional |
featuredAvatarFilter |
string | Optional |
CSS background property to be applied to the DAppNode Package card in the DAppNode Package store if featured. Go to the Mozilla CSS background reference for valid values.
string
Examples:
"linear-gradient(to right, #323131, #395353)"
"black"
CSS color property to be applied to the DAppNode Package card in the DAppNode Package store if featured. Go to the Mozilla CSS color reference for valid values.
string
Examples:
"white"
"#fff"
CSS filter property to be applied to <img>
component (avatar) of the DAppNode Package card in the DAppNode Package
store if featured. Go to the Mozilla CSS filter reference for
valid values.
string
Examples:
"invert(1)"
"grayscale(80%);"
Main author of this DAppNode Package. Must follow the structure ${name} <${email}> (${githubUserLink})
.
string
Example:
"DAppNode Association <admin@dappnode.io> (https://github.com/dappnode)"
Contributing authors of this DAppNode Package.
string[]
All items must be of the type: string
Contributor author. Must follow the structure ${name} <${email}> (${githubUserLink})
.
Example:
[
"Michael First <developerHanlder@project.io> (https://github.com/developerHanlder)",
"Michael Second <developerHanlder@project.io> (https://github.com/developerHanlder)"
]
Categories to organize and group DAppNode Packages in the DAppNode Package store. Only one or two categories maximum should be specified per package. If you feel that any of the current categories represent the nature of your package, please open an issue requesting a new category https://github.com/dappnode/dnp-manifest/issues/new
enum[]
All items must be of the type: string
The value of this property must be equal to one of the known values below.
Value | Description |
---|---|
Blockchain |
Blockchain nodes, i.e. Bitcoin, Monero |
Communications |
Decentralized networking or chat solutions, i.e. Swarm |
Developer tools |
Packages that their main purpose is to aid in developing, i.e. testnets |
ETH2.0 |
Packages to participate or use the Eth2.0 network |
Economic incentive |
Packages that offer an economic incentive or reward to the admin that runs it, i.e. Lightning Network |
Monitoring |
Packages that track metrics |
Payment channels |
Packages whose main purpose is to manage or control payment channels, i.e. Raiden |
Storage |
Decentralized storage solutions, i.e. Swarm |
Example:
["Developer tools", "Blockchain"]
Keywords, relevant and descriptive of this DAppNode Package. They will be shown in the admin UI DAppNode Package store.
string[]
All items must be of the type: string
Single keyword.
Various links (URLs) useful for the user of this package. All links will be shown in the dedicated view of this package in the admin UI. The predefined links properties below will be shown with concept related icons. Other links will be shown as well but with their plain name instead of an icon.
object
with the following properties:Property | Type | Required |
---|---|---|
homepage |
string | Optional |
ui |
string | Optional |
api |
string | Optional |
gateway |
string | Optional |
Url to an informative homepage for this DAppNode Package. Should be a README or landing website.
string
Example:
"https://github.com/dappnode/DNP_IPFS#readme"
Url to this DNP’s DAppNode local UI.
string
Example:
"http://ipfs.dappnode:5001/webui"
Url to this DNP’s DAppNode local HTTP API endpoint.
string
Example:
"http://ipfs.dappnode:5001/api/v0"
Url to this DNP’s DAppNode local gateway.
string
Example:
"http://ipfs.dappnode:8080/ipfs"
DAppNode Package’s repository. Must be a publicly available url that can be handed directly to a VCS program.
object
with the following properties:Property | Type | Required |
---|---|---|
type |
string | Required |
url |
string | Required |
directory |
string | Optional |
string
Example:
"git"
string
Example:
"https://github.com/dappnode/DNP_IPFS.git"
string
Example:
"packages/react-dom"
Url to your project’s issue tracker.
object
with the following properties:Property | Type | Required |
---|---|---|
url |
string | Required |
string
Example:
"https://github.com/dappnode/DNP_IPFS/issues"
DAppNode Package’s License.
string
Example:
"GPL-3.0"