βοΈSetup Guide
Follow the guide to set up your AssetMantle Mainnet node
Step 1: Update and install necessary packages
sudo apt update && sudo apt upgrade --yes && \
sudo apt install git build-essential ufw curl jq snapd screen ncdu nano fuse ufw --yesStep 2: Install Go
sudo snap install go --classic && \
echo 'export GOPATH="$HOME/go"' >> ~/.profile && \
echo 'export GOBIN="$GOPATH/bin"' >> ~/.profile && \
echo 'export PATH="$GOBIN:$PATH"' >> ~/.profile && \
source ~/.profile && \
go versionStep 3: Clone the repository and compile binary
git clone https://github.com/AssetMantle/node.git
cd node
git checkout tags/v0.3.0
make installStep 4: Init your keys and download genesis file
mantleNode init <moniker> --chain-id mantle-1
mantleNode keys add <keyname>
curl https://raw.githubusercontent.com/AssetMantle/genesisTransactions/main/mantle-1/final_genesis.json > $HOME/.mantleNode/config/genesis.jsonStep 5: Set up AssetMantle system service
Step 6: Enable AssetMantle daemon
If you want to synchronize your node from the 0 block:
Start AssetMantle service and watch logs
Or you can quickly synchronize your node through State Sync:
πState Sync GuideLast updated