dappnodesdk is a tool to make as simple as possible the creation of new dappnode packages. It helps to initialize and publish an Aragon Package Manager Repo in the ethereum mainnet.
We have deployed a public APM (Aragon Package Manager) registry in which anyone can create their own APM repository: public.dappnode.eth
$ npm install -g @dappnode/dappnodesdk
$ dappnodesdk init
Only generates the IPFS Hash to be able to install it without needing to create the APM Repo
$ dappnodesdk build
It does the build of the image and shows the necessary transaction to be able to publish the package. The first time will create the repository but the rest will be updates of it.
To be able to update a repository you must be the authorized dev.
the script increases the current version of the repository based on the specified type (patch, minor, major), unless a version hasn't yet been published
for more information about versioning check semver
$ dappnodesdk publish < patch | minor | major >
Please take in account that the package version is not the internal version of the package you want to upload.
We use Aragon package manager, and it only lets starting with version 1 and increment one by one. Valid initial versions are 1.0.0
, 0.1.0
or 0.0.1
If your system does not find the binary dappnodesdk
, please try these other methods
- Run with
npx
which may handle better global NPM packages
npx @dappnode/dappnodesdk <command>
- Prefix the binary with the location of your global NPM package installation, for example:
~/.npm-packages/bin/dappnodesdk <command>
Github Action to open upstream version bumps on DAppNode Packages
.github/workflows/auto_check.yml
name: Bump upstream version
on:
schedule:
- cron: "00 */4 * * *"
push:
branches:
- "master"
jobs:
bump-upstream:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: npx @dappnode/dappnodesdk github-action bump-upstream
with:
github_token: ${{ secrets.PERSONAL_TOKEN }}
You must specify in the package manifest what upstream Github repo the package is tracking. Also indicate what build variable in the docker-compose should be updated
dappnode_package.json
{
"name": "prysm.dnp.dappnode.eth",
"upstreamVersion": "v1.0.0",
"upstreamRepo": "prysmaticlabs/prysm",
"upstreamArg": "UPSTREAM_VERSION"
}
docker-compose.yml
version: "3.4"
services:
beacon-chain:
build:
args:
UPSTREAM_VERSION: v1.0.0
This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details