Storage Node

Operate a DÆTA node to contribute storage, support the network and earn tokens.

Running a DÆTA storage node allows you to participate in the network, contribute storage capacity and earn DÆTA tokens.

System Requirements

Minimum: 4 cores.

Recommended: 8+ cores.

Installation Process

sudo apt update && sudo apt upgrade -y
sudo apt install -y curl build-essential git
curl -sSL https://get.daeta.xyz | sudo bash
daeta-node init --wallet-address YOUR_ETHEREUM_WALLET_ADDRESS
Edit the configuration file at /etc/daeta/config.yaml:
node:
  id: "auto"
  wallet_address: "YOUR_ETHEREUM_WALLET_ADDRESS"
  storage_path: "/mnt/data"
  storage_allocation: "1TB"

network:
  port: 28967
  public_address: "YOUR_PUBLIC_IP"

satellite:
  address: "satellite.daeta.xyz:7777"

metrics:
  address: ":9000"
sudo systemctl start daeta-node
sudo systemctl enable daeta-node

Last updated