# Quick commands

### Check node status

```
artelad status | jq
```

### Query your wallet balance

```
artelad q bank balances $WALLET
```

### Check logs

```
sudo journalctl -u artelad -f -o cat
```

### Stop the node

```
sudo systemctl stop artelad
```

### Restart the node

```
sudo systemctl restart artelad 
```

### Query  sync status

```
artelad status | jq -r .sync_info
```

### Send tokens function

```
artelad tx bank send wallet <TO_WALLET_ADDRESS> 1000000uart --from wallet --chain-id $CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 10uart -y
```
