# Command

**Command:**

Wallet:

```
// Add New Wallet
symphonyd keys add wallet

// Restore executing wallet
symphonyd keys add wallet --recover

//List All Wallets
symphonyd keys list

//Delete wallet
symphonyd keys delete wallet

//Check Balance
symphonyd q bank balances $(symphonyd keys show wallet -a)

//Export Key (save to wallet.backup)
symphonyd keys export sedad

//View EVM Prived Key
symphonyd keys unsafe-export-eth-key sedad

//Import Key (restore from wallet.backup)
symphonyd keys import sedad wallet.backup
```

Validator:

```
// Delegate
symphonyd tx staking delegate $(symphonyd keys show wallet --bech val -a) 1000000note --from wallet --chain-id symphony-testnet-2 --gas-prices 1note --gas-adjustment 1.5 --gas auto -y 

// Withdraw rewards and commission
symphonyd tx distribution withdraw-rewards $(symphonyd keys show wallet --bech val -a) --commission --from wallet --chain-id symphony-testnet-2 --gas-prices 1note --gas-adjustment 1.5 --gas auto -y 

// Unjail
symphonyd tx slashing unjail --from wallet --chain-id symphony-testnet-2 --gas-adjustment 1.5 --gas auto --gas-prices 1note -y

// Unbond
symphonyd tx staking unbond $(symphonyd keys show wallet --bech val -a) 1000000note --from wallet --chain-id symphony-testnet-2 --gas-prices 1note --gas-adjustment 1.5 --gas auto -y 
```

Vote:

```
symphonyd tx gov vote 1 yes --from wallet --chain-id symphony-testnet-2  --fees 800
```

System:

```
# Reload Service
sudo systemctl daemon-reload

# Enable Service
sudo systemctl enable symphonyd

# Disable Service
sudo systemctl disable symphonyd

# Start Service
sudo systemctl start symphonyd

# Stop Service
sudo systemctl stop symphonyd

# Restart Service
sudo systemctl restart symphonyd

# Check Service Status
sudo systemctl status symphonyd

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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://services.node39.top/index.html/end/symphony/command.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
