Note:
Select your network: Froopyland
Select your execution environment: EVM
Specify your RollApp denom: Name options (You should choose a personal name to avoid duplicates)
Set the genesis token supply: Enter for default
Choose your data layer: Celestia
Faucet:
// Faucet for DYM: Discord channel #froodyland-faucet
Command:
$request <dym-address>
$request <dym-address>
//Faucet for Celestia: https://faucet.celestia-arabica-11.com or Discord
Register:
roller tx register
//Rollapp '<rollapp-id>' has been successfully registered on the hub.
Run:
roller run
Err Releyer stating... or create :
nano ~/.roller/relayer/config/config.yaml
// Edit:
min-loop-duration: 100ms
and
src-channel-filter:
rule: "allowlist"
channel-list: ["channel-0", "channel-49"]
// Download & tar binary relayer new version:
wget https://github.com/dymensionxyz/go-relayer/releases/download/v0.3.1-v2.5.2-relayer/Cosmos.Relayer_0.3.1-v2.5.2-relayer_linux_amd64.tar.gz
tar -xvf Cosmos.Relayer_0.3.1-v2.5.2-relayer_linux_arm64.tar.gz
mv Cosmos\ Relayer_0.3.1-v2.5.2-relayer_linux_arm64/rly /usr/local/bin/roller_bins/
After the installation is complete. Please restart the server
Check Node & Validator status:
curl http://127.0.0.1:26657/status
Check DYM
curl -X POST \
-H "Content-Type: application/json" \
--data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}' \
http://<your_node_ip>:<your_node_port>
// The results you will get are similar
curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}' http://ip:8545
{"jsonrpc":"2.0","id":1,"result":"0xcbc"}
Wallet & Backup:
// Check balance
viper wallet query account-balance your_wallet_address
// Recovery Wallet
viper wallet import-encrypted
or
viper wallet import-raw
// Fetch Wallet Info
viper wallet fetch-account your_wallet_address
// List all account
viper wallet list-accounts
//Change wallet password
viper wallet change-pass your_wallet_address --pwd-new input-new-passwd --pwd-old input-old-passwd
// See Private key
viper wallet export-encrypted
or
viper wallet export-raw
// Query Your Validator
viper servicers query servicer your_wallet_address
// Backup
Folder .viper or validator_private_key.json
Command:
// Reload Service
sudo systemctl daemon-reload
// Check logs of the node
sudo journalctl -u viper -f -o cat
// Restart the node
sudo systemctl restart viper.service
//Stop the node
sudo systemctl stop viper.service
// Check height
viper network query current-heights
// Check Node
curl http://127.0.0.1:26657/status