根据官方Twitter此次测试如果没有问题的话,会直接启动激励性测试网,建议有条件的可以跑下。
以下运行步骤已在Ubuntu 20.04 上测试通过
git clone https://github.com/skyMetaverse/subspace-3F.git
cd subspace-3F/
vi node.sh
# 示例
# nohup ./node \
# --chain gemini-3f \
# --execution wasm \
# --blocks-pruning 256 \
# --state-pruning archive \
# --no-private-ipv4 \
# --validator \
# --name syskey \
# >> node.log 2>&1 &
vi farmer.sh
# 绘图路径
PATH_TO_PLOT=
# 绘图大小
PLOT_SIZE=
# 钱包地址
WALLET_ADDRESS=
nohup ./farmer farm --reward-address ${WALLET_ADDRESS} path=${PATH_TO_PLOT},size=${PLOT_SIZE} >> farmer.log 2>&1 &