Update Titan.sh

This commit is contained in:
smeb y 2024-03-14 15:06:43 +08:00 committed by GitHub
parent 02383425a9
commit 742cba24d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,10 +10,10 @@ start_node() {
# 下载并解压 titan-node 到 /usr/local/bin
echo "正在下载并解压 titan-node..."
wget -c https://github.com/Titannet-dao/titan-node/releases/download/0.1.12/titan_v0.1.12_linux_amd64.tar.gz -O - | sudo tar -xz -C /usr/local/bin --strip-components=1
titan-edge daemon start --init --url https://test-locator.titannet.io:5000/rpc/v0
nohup titan-edge daemon start --init --url https://test-locator.titannet.io:5000/rpc/v0
else
echo "启动节点..."
titan-edge daemon start
nohup titan-edge daemon start
fi
}
@ -21,7 +21,7 @@ bind_node() {
echo "绑定节点..."
read -p "请输入身份码: " identity_code
echo "绑定节点,身份码为: $identity_code ..."
titan-edge bind --hash=$identity_code https://api-test1.container1.titannet.io/api/v2/device/binding
nohup titan-edge bind --hash=$identity_code https://api-test1.container1.titannet.io/api/v2/device/binding
}
stop_node() {