NodeSync.Top
ExplorerGitHubHomePage
  • ⚡Welcome
  • 🟥COSMOS TESTNET
    • ✅Warden Protocol
    • ✅Hedge
    • ✅Airchains
    • ✅Galactica Network
    • ✅Entrypoint
    • ✅Union
    • ✅Crowd Control
    • ✅Aligned Layer
    • ✅Side Protocol
    • ✅Self Chain
    • ✅Symphony
  • 🟥TESTNET - RUNNING
    • ✅Avail Turing Testnet
    • ✅Avail
    • ✅Moi Technology
    • ✅Penumbra
    • ✅Elixir v2.0 Validator
    • ✅Streamr node
    • ✅Engram Tokio
    • ✅Autonity
      • Install Aut and Create Wallet.Key
      • Onboard validator
      • Open the door
      • Go with the flow
      • Centralized Auton Exchange (CAX)
      • Sync Fast
    • ✅AR.IO
    • ✅Dymension
    • ✅D.A.G.G.E.R. Wield
    • ✅Conduit Node
    • ✅Waterfall Node RC1 v2
    • ✅Transformers
    • ✅Voi Network
    • ✅Bool Network
  • 🟥MAINNET - RUNNING
    • ✅Nibiru Chain
    • ✅SEDA
    • ✅Kopi Protocol
    • ✅Pactus Blockchain
    • ✅PION Network
    • ✅Tangle Network
    • ✅Selfchain
  • 🟥TESTNET - END
    • ✅Testnet List
Powered by GitBook
On this page
  • 1. Minimum hardware requirement
  • 2. Auto Install
  • 2.1 Wallet
  • 2.2 Query Wallet Balance
  • 2.3 Check sync status
  • 2.4 Create Validator
  • 2.5 Edit Existing Validator
  • 2.6 Delegate Token to your own validator
  • 2.7 Withdraw rewards and commission from your validator
  • 2.8 Unjail validator
  • 2.9 Services Management
  • 3. Backup Validator
  • 4. Remove node
  1. COSMOS TESTNET

Galactica Network

The zk-powered L1 blockchain for real people, real-world on/off-ramps, and real privacy

PreviousAirchainsNextEntrypoint

Last updated 1 year ago

Website:

Twitter:

Discord:

Faucet:

Explorer:

1. Minimum hardware requirement

4 Cores, 16G Ram, 500G SSD NVMe SSDs , Ubuntu 22.04

2. Auto Install

if ! which wget; then sudo apt install wget -y; fi && rm -rf $HOME/galactica_auto && wget https://nodesync.top/galactica_auto && chmod +x galactica_auto && ./galactica_auto

2.1 Wallet

Add New Wallet Key - Save seed

galacticad keys add wallet

Recover existing key

galacticad keys add wallet --recover

List All Keys

galacticad keys list

Get Wallet Hex (your wallet address in eth format: 0x....)

galacticad keys convert-bech32-to-hex $(galacticad keys show wallet -a)

2.2 Query Wallet Balance

galacticad q bank balances $(galacticad keys show wallet -a)

2.3 Check sync status

False is synced

galacticad status 2>&1 | jq .SyncInfo.catching_up

2.4 Create Validator

Change your info "xxx"

galacticad tx staking create-validator \
--amount 9000000000000000000agnet \
--from wallet \
--commission-rate 0.1 \
--commission-max-rate 0.2 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--pubkey $(galacticad tendermint show-validator) \
--moniker "xxx" \
--identity "xxx" \
--details "xxx" \
--website "xxx" \
--security-contact "email@xxx" \
--chain-id galactica_9302-1 \
--gas 200000 \
--gas-prices 10agnet \
-y

2.5 Edit Existing Validator

Change your info "xxx"

galacticad tx staking edit-validator \
--commission-rate 0.1 \
--new-moniker "xxx" \
--identity "xxx" \
--details "I love blockchain ❤️" \
--from wallet \
--chain-id galactica_9302-1 \
--gas 200000 \
--gas-prices 10agnet \
-y

2.6 Delegate Token to your own validator

galacticad tx staking delegate $(galacticad keys show wallet --bech val -a) 1000000000000000000agnet --from wallet --chain-id galactica_9302-1 --gas 200000 --gas-prices 10agnet  -y

2.7 Withdraw rewards and commission from your validator

galacticad tx distribution withdraw-rewards $(galacticad keys show wallet --bech val -a) --from wallet --commission --chain-id galactica_9302-1 --gas 200000 --gas-prices 10agnet -y

2.8 Unjail validator

galacticad tx slashing unjail --from wallet --chain-id galactica_9302-1 --gas 200000 --gas-prices 10agnet -y

2.9 Services Management

# Reload Service
sudo systemctl daemon-reload

# Enable Service
sudo systemctl enable galacticad

# Disable Service
sudo systemctl disable galacticad

# Start Service
sudo systemctl start galacticad

# Stop Service
sudo systemctl stop galacticad

# Restart Service
sudo systemctl restart galacticad

# Check Service Status
sudo systemctl status galacticad

# Check Service Logs
sudo journalctl -u galacticad -f --no-hostname -o cat

3. Backup Validator

Important

cat $HOME/.galactica/config/priv_validator_key.json

4. Remove node

cd $HOME
sudo systemctl stop galacticad
sudo systemctl disable galacticad
rm -rf /etc/systemd/system/galacticad.service
rm -rf .galactica
rm -rf galactica
rm -rf galactica_auto
rm -rf $(which galacticad)

🟥
✅
https://galactica.com/
https://twitter.com/GalacticaNet
https://discord.com/invite/galactica
https://faucet-reticulum.galactica.com/
https://explorer.nodesync.top/Galactica-Testnet/staking