Installation
Step 1: Deploy your Operator
Visit this site and connect your Owner Metamask wallet
Request test tokens from the faucet
Click "Become an Operator" and complete the dialog
Join Discord and request DATA test tokens in # faucet-bot
Import token to MetaMask (Contract: 0x53d8268307c6EE131AafDe5E6FD3575bADbB3D20)
Step 2: Run a Streamr node
Automatic Installation
# Soon...
# source <(curl -s https://raw.githubusercontent.com/NodersUA/Scripts/main/streamer)
Manual Installation
# Update the repositories
apt update && apt upgrade -y
# Install Docker
if ! [ -x "$(command -v docker)" ]; then
curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh
sudo usermod -aG docker $USER
docker --version
else
echo $(docker --version)
fi
# Run the config wizard
mkdir ~/.streamrDocker
sudo chmod -R 777 ~/.streamrDocker/
sudo docker run -it -v $(cd ~/.streamrDocker && pwd):/home/streamr/.streamr streamr/broker-node:v100.0.0-testnet-two.2 bin/config-wizard

# Run node
sudo docker run -p 32200:32200 --name streamr --restart unless-stopped -d -v $(cd ~/.streamrDocker && pwd):/home/streamr/.streamr streamr/broker-node:v100.0.0-testnet-two.2
# Check logs
sudo docker logs --follow streamr
# Restart
sudo docker restart streamr
Step 3: Pair your Operator to your Streamr Node
Visit your Operator page and find the "Operator's node addresses"
Click the Add node address button, paste in your node address (the Ethereum public address, not its private key!), click the button in the dialog and remember to click the Save button.
Ensure sufficient MATIC wallet balance, it is required to pay fees
- Join sponsorships
Visit the Sponsorships page and find a Sponsorship you want your Operator to start working on. Click the "Join as Operator" button and select your stake. Note there is a minimum stake of 5000
DATA
tokens for each Sponsorship that you join. Joining Sponsorships may lock your tokens for a period of time, defined in the Sponsorship contract.
Last updated
Was this helpful?