Aleo测试链节点详情:https://www.aleo.org/post/incentivized-testnet-announcement

image.png

这次的测试链测试为期10周,将在11月30日开始,2月8日结束

跑节点的目标也很明确,就是出块。每出一块就有奖励

db6944e32c35f8b1a76c2a6a592d9ae.png

如果你成为前100位矿工,还可以分享5,000,000 Aleo 的奖励

跑了一下,比evmos那个节点可简单多了

节点设置指南: https://github.com/AleoHQ/snarkOS#2-build-guide

最低配置

  • CPU: 16-cores (32-cores preferred)
  • RAM: 16GB of memory (32GB preferred)
  • Storage: 128GB of disk space
  • Network: 50 Mbps of upload and download bandwidth

安装Rust v1.56+

1
2
3
4
sudo apt update
sudo apt upgrade
curl https://sh.rustup.rs -sSf | sh
source $HOME/.cargo/env

安装Aleo节点

1
2
3
git clone https://github.com/AleoHQ/snarkOS.git --depth 1
cd snarkOS
./testnet2_ubuntu.sh

创建账号私钥

1
cargo run --release -- experimental new_account

运行上面命令后,会创建你的账号的私钥,请保持好。

1
2
3
4
5
Attention - Remember to store this account private key and view key.

Private Key APrivateKey1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx <-- Save Me
View Key AViewKey1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx <-- Save Me
Address aleo1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx <-- Use Me For The Next Step

运行Aleo矿工节点

在运行节点前,先创建一个screen,这样可以在背景运行

1
screen -S aleo

运行节点:

1
./run-miner.sh

运行后,会要求输入Aleo的地址。填入上面生成的Aleo地址

1
2
Enter your Aleo miner address:
aleo1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

这样节点就跑起来了~

退出要按ctrl+A+D, 下回要返回输入

1
screen -r aleo

查看节点是否正常运行

https://nodes.guru/aleo/aleochecker

希望是个省心的节点测试