From f5eb5de3297c59a6c9d27d858fd1b68445a663f4 Mon Sep 17 00:00:00 2001 From: smeb y <48400087+a3165458@users.noreply.github.com> Date: Wed, 8 May 2024 13:36:57 +0800 Subject: [PATCH] Update 0g.sh --- 0g.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/0g.sh b/0g.sh index 8a54c74..4661f33 100644 --- a/0g.sh +++ b/0g.sh @@ -146,12 +146,12 @@ function import_wallet() { # 查询余额 function check_balances() { read -p "请输入钱包地址: " wallet_address - 0gchaind query bank balances "$wallet_address" --node $OG_RPC_PORT + 0gchaind query bank balances "$wallet_address" } # 查看节点同步状态 function check_sync_status() { - 0gchaind status 2>&1 --node $OG_RPC_PORT | jq .sync_info + 0gchaind status 2>&1 | jq .sync_info } # 创建验证者 @@ -271,7 +271,7 @@ screen -dmS storage_kv ../target/release/zgs_kv --config config.toml function delegate_self_validator() { read -p "请输入质押代币数量(单位为evmos,比如你有1个evmos,留点水给自己,输入0.9回车就行): " math read -p "请输入钱包名称: " wallet_name -0gchaind tx staking delegate $(0gchaind keys show $wallet_name --bech val -a) ${math}evmos --from $wallet_name --gas=500000 --gas-prices=99999aevmos --node $OG_RPC_PORT -y +0gchaind tx staking delegate $(0gchaind keys show $wallet_name --bech val -a) ${math}evmos --from $wallet_name --gas=500000 --gas-prices=99999aevmos -y }