└── README.md
/README.md:
--------------------------------------------------------------------------------
1 | 
2 |
3 |
PingPong Reward Program
4 |
5 | > We are going to run a PingPong Mining Node in this tutorial
6 | >
7 | > This tutorial is for installing on Linux
8 | >
9 | > The stronger your server is, the more you will farm
10 |
11 | PingPong x MorphL2 Campaign
12 |
13 | > Before we start the mining node, there is now a live Ping Pong x MorphL2 campaign that you can participate-in just by claiming and staking tokens without running a node
14 | >
15 | > 1- Connect your wallet [here](https://app.pingpong.build/points?invite_code=yc76BLjH)
16 | >
17 | > 2- Claim a daily mLPT & mGRT token faucet on Holesky Network in `Points` tab
18 | >
19 | > 3- You can do the tasks in `Boost Your Rewards` section to increase your daily faucet
20 | >
21 | > 4- Bridge tokens to MorphL2: https://app.pingpong.build/bridge
22 | >
23 | > 5- Stake on MorphL2: https://app.pingpong.build/markets
24 | >
25 | > Now you are farming PPP + Morph points - the more you stake daily, the more you farm points
26 | >
27 | > Now let's go for PingPong Mining Program
28 |
29 | PingPong Mining Program
30 |
31 | ## 1- Register
32 | > Connect your Email in the [dashboard](https://harvester.pingpong.build/)
33 |
34 | ## 2- Install
35 | ```console
36 | # Downlaod linux files
37 | wget https://pingpong-build.s3.ap-southeast-1.amazonaws.com/linux/latest/PINGPONG
38 | ```
39 |
40 | ```console
41 | # Install and update your linux packages
42 | sudo apt-get update
43 | sudo apt-get install apt-transport-https ca-certificates curl software-properties-common screen
44 |
45 | # Downlaod Docker packages
46 | curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
47 |
48 | # Add docker to your packages
49 | sudo add-apt-repository \
50 | "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
51 | $(lsb_release -cs) \
52 | stable"
53 |
54 | # Update packages
55 | sudo apt-get update
56 |
57 | # Install Docker
58 | sudo apt-get install docker-ce
59 |
60 | # Start Docker
61 | sudo systemctl enable docker
62 |
63 | sudo systemctl start docker
64 |
65 | # Give Permissions to Docker
66 | sudo usermod -aG docker $USER
67 |
68 | # Test Docker
69 | docker run hello-world
70 | ```
71 |
72 | ## 3- Run
73 | > Add a device in [dashboard](https://harvester.pingpong.build/devices)
74 | >
75 | > Copy your Device ID
76 | >
77 | > 
78 |
79 | ```console
80 | # Start a screen
81 | screen -S pong
82 | ```
83 |
84 | ```console
85 | # Replace DEVICE_ID with your ID you copied
86 | chmod +x ./PINGPONG && ./PINGPONG --key DEVICE_ID
87 | ```
88 |
89 | > Ctrl+A+D to minimze your screen
90 | >
91 | > Check the results here ( You are farming AIOZ , MASQ , TITAN tokens and PPP points)
92 | >
93 | > 
94 | >
95 | > Remember to switch to Usage Priority in dashboard
96 | >
97 | > 
98 | >
99 | > You can now add more to run on more devices
100 | >
101 | ## Tokenomics
102 | 
103 |
104 | 
105 |
106 | Thanks Rues for the detailed guide - Follow [0xMoei](https://x.com/0xMoei) on Twitter
107 |
108 |
--------------------------------------------------------------------------------