# 国内有金主支持 每个账号收2000元 Fluence Developer Rewards
account_line 白名单见附件
# 感兴趣的请留言 或加微信
Fluence Developer Rewards
This repo allows one to generate a proof signature for Fluence dev reward claiming.
感兴趣
Caution
Beware of scam emails, asking you to generate proofs for someone! See #98.
The methods for generating signature are described below:
Generate proof in docker
-
Build docker image
docker build -t dev-reward-script .
-
If your ssh keys are in ~/.ssh, run the script:
docker run -it --rm --network none -v ~/.ssh:/root/.ssh:ro dev-reward-script
If your ssh keys are in other directories, replace
{dir_path_for_your_ssh_keys} with your directory path:docker run -it --rm --network none -v /{dir_path_for_your_ssh_keys}:/root/.ssh:ro dev-reward-script
Generate proof via local sh script
-
Install dependencies
./install.sh
-
Run the script
./proof-sh/proof.sh
Generate proof via local python script
-
Install python
Download Python | Python.org
-
Install dependencies
./install.sh
python3 -m venv claim-venv
source claim-venv/bin/activate
pip3 install -r python/requirements.txt
-
Run the script
python3 python/proof.py
Generate proof through a website
-
Enter the
web
directorycd web
-
Download the metadata.json file
curl https://fluence-dao.s3.eu-west-1.amazonaws.com/metadata.json > metadata.json
-
Spin up an HTTP server
python3 -m http.server
-
Open
http://127.0.0.1:8000
in your browser and follow the instructions
Notes:
Also check out paranoid instruction
in case you have any security concerns regarding the methods above.