最低要求:
- 中央处理器:
- 核心:4
- 线程数:8
- 内存:8GB
- 存储:100GB SSD(250+GB 用于存档)
- 软件:
- Linux 版本:18.04 LTS 或以上
- 纱线:1.22.19或以上版本
- Docker:版本20.10.10或以上
推荐要求:
- 中央处理器:
- 核心:8
- 线程数:16
- 内存:32GB
- 存储:100GB SSD(250+GB 用于存档)
- 软件:
- Linux 版本:18.04 LTS 或以上
- 纱线:1.22.19或以上版本
- Docker:版本20.10.10或以上
成为 5ireChain 验证者的最低要求是 200 5ire 币。网络参与者需要能够投入足够的 5ire 币才能设置为验证器,并且还需要持有一些额外的交易费用。剩余的可以来自提名人。
注意:运行 5ireChain 测试网的验证器节点需要至少 200 个 5ire 币:Thunder。
水龙头地址https://explorer.5ire.network/faucet
[crypto-block]
更新包: sudo apt update && sudo apt upgrade - y 使用以下命令安装所需的库: sudo apt install pkg- config curl git build-essential libssl-dev -y 安装Screen apt install screen -y 安装 docker compose: if ! command -v docker > /dev/null; then apt-get update apt install -y docker.io fi sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compo sudo chmod +x /usr/local/bin/docker-compose docker-compose -v 安装和运行 使用以下命令下载 Docker 镜像: docker pull 5irechain/5ire-thunder-node:0.12 对于完整节点,运行以下命令: sudo docker run -p 30333:30333 -p 9933:9933 -p 9944:9944 5irechain/5ire-thunder-node:0.12 --port 30333 --no-telemetry --name 5ire-thunder-archive --base-path /5ire/data --keystore-path /5ire/data --node-key-file /5ire/secrets/node.key --chain /5ire/thunder-chain-spec.json --bootnodes /ip4/3.128.99.18/tcp/30333/p2p/12D3KooWSTawLxMkCoRMyzALFegVwp7YsNVJqh8D2p7pVJDqQLhm --pruning archive --ws-external --rpc-external --rpc-cors all 对于验证者节点,运行以下命令: docker run -p 30333:30333 5irechain/5ire-thunder-node:0.12 --port 30333 --no-telemetry --name 5ire-thunder-validator --base-path /5ire/data --keystore-path /5ire/data --node-key-file /5ire/secrets/node.key --chain /5ire/thunder-chain-spec.json --bootnodes /ip4/3.128.99.18/tcp/30333/p2p/12D3KooWSTawLxMkCoRMyzALFegVwp7YsNVJqh8D2p7pVJDqQLhm --validator 可以用screen -dmS Node后台运行 成为验证者还没有开放 https://docs.5ire.org/docs/system-admin/how-to-onboard-as-a-validator/
[/crypto-block]