Nibiru public testnet phase 1
Nibiru是一个基于Cosmos Sdk的DEFI Hub,为衍生品和现货交易提供动力。安全、无需许可、完全上链。其种子轮融资了750万美元,Tribe captital, Kraken, Republic Crypto,Guardian 创始人Strafach guardian参投。
参考文档:https://docs.nibiru.fi/run-nodes/testnet/#
关注➕推特:
关注必回:跟着我,抄捷径
参考官网教程:
下载安装 node guru 脚本:
1.Use our script for a quick installation:
wget -q -O nibiru.sh https://api.nodes.guru/nibiru.sh && chmod +x nibiru.sh && sudo /bin/bash nibiru.sh
2.Set a name for your node and wait for the installation to complete. After that execute the following command:
source $HOME/.bash_profile
3.Create a wallet, don’t forget to save the mnemonic.
nibid keys add wallet
4.Get tokens in the discord, #faucet section.After full synchronization, check the balance, if everything is okay go to the next step.
nibid q bank balances YOUR_WALLET_ADDRESS
Also you can check balance in the explorer.Create a validator:
nibid tx staking create-validator \
--amount=1000000unibi \
--pubkey=$(nibid tendermint show-validator) \
--moniker="$NIBIRU_NODENAME" \
--chain-id=nibiru-testnet-1 \
--commission-rate="0.1" \
--commission-max-rate="0.10" \
--commission-max-change-rate="0.01" \
--min-self-delegation="1000000" \
--fees=10000unibi \
--from=wallet \
-y