Advertisement
EvenoR

Drosera Node Installation

May 8th, 2025 (edited)
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.28 KB | None | 0 0
  1. You will need:
  2.  - New metamask(evm) wallet with 0.5 Holesky ETH
  3.  - VPS with any specs
  4.  - GitHub Account
  5.  
  6. #1 Download and run installation script, pick "Install dependencies"
  7. wget --no-cache -q -O drosera.sh https://raw.githubusercontent.com/Evenorchik/drosera/refs/heads/main/drosera.sh && sudo chmod +x drosera.sh && ./drosera.sh
  8.  
  9. #2 Apply config
  10. source $HOME/.bashrc
  11.  
  12. #3 Run script again and pick "Deploy trap"
  13. ./drosera.sh
  14.  
  15. #4 Go here and click "Traps owned"
  16. https://app.drosera.io/
  17.  
  18. #5 Run trap
  19. cd my-drosera-trap && drosera dryrun
  20.  
  21. #6 Return to home dir
  22. cd
  23.  
  24. #7 Run script again and pick "Install node"
  25. ./drosera.sh
  26.  
  27. #8 If you have error on previous stage run this:
  28. #8.1
  29. cd ~
  30. sudo apt update && sudo apt install -y tar
  31. #8.2
  32. curl -LO https://github.com/drosera-network/releases/releases/download/v1.17.1/drosera-operator-v1.17.1-x86_64-unknown-linux-gnu.tar.gz
  33. tar -xvf drosera-operator-v1.17.1-x86_64-unknown-linux-gnu.tar.gz
  34. #8.3
  35. sudo systemctl stop drosera          
  36. sudo cp drosera-operator /usr/bin/  
  37. sudo systemctl start drosera  
  38. #8.4
  39. drosera-operator --version
  40. #8.5
  41. cd ~
  42. export DROSERA_PRIVATE_KEY="YOUR_PRIVATE_KEY"
  43. drosera-operator register \
  44.   --eth-rpc-url https://ethereum-holesky-rpc.publicnode.com \
  45.   --eth-private-key "$DROSERA_PRIVATE_KEY"
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement