🏅Pactus Blockchain
Pactus is a community-run blockchain technology with a revolutionary and secure Solid Proof of Stake Consensus. Come join us and build a decentralized future together!
website: https://pactus.org/
docs: https://pactus.org/learn/
x: https://twitter.com/PactusChain
Pactus Mainnet
System: Ubuntu 22.04 , Open port: 21888 TCP and UDP
Min: 1CPU, 2G Ram, 40SSD
1. Server preparation
sudo apt update && apt upgrade -y
sudo apt install tmux git curl -y
sudo apt install make clang pkg-config libssl-dev build-essential -y
2. Download the binary file or Upgrade Version 1.1.4
cd $HOME && rm -rf node_pactus && wget https://github.com/pactus-project/pactus/releases/download/v1.1.4/pactus-cli_1.1.4_linux_amd64.tar.gz && tar -xzf pactus-cli_1.1.4_linux_amd64.tar.gz && rm -rf pactus-cli_1.1.4_linux_amd64.tar.gz && mv pactus-cli_1.1.4 node_pactus && cd node_pactus
3. Initializing the Node
Run Command below and choose number 1 Validator (no choose 7 or 32)
Save all: Your wallet seed, Wallet address, Validator address
sudo ./pactus-daemon init
4. Run node
tmux new -s pactus
sudo ./pactus-daemon start
5. Wallet
5.1 Restoring the Node
./pactus-daemon init --restore "<your-mnemonic>"
5.2 Wallet Seed
./pactus-wallet seed
5.3. List of Addresses
./pactus-wallet address all
5.4 Get Address Balance
./pactus-wallet address balance <ADDRESS>
Replace <ADDRESS>
with the address for which you want to retrieve your balance.
5.5 Sending Bond
./pactus-wallet tx bond <Reward address> <Validator address> <AMOUNT>
5.6 Sending Transfer
./pactus-wallet tx transfer <sender address> <receiver address> <AMOUNT>
Last updated