> For the complete documentation index, see [llms.txt](https://validators.spicenet.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://validators.spicenet.io/working-with-transactions/5.3-submitting-transactions.md).

# 5.3 Submitting Transactions

Once you've generated a transaction, you need to submit it to the network. Here's how:

{% code overflow="wrap" %}

```bash
./target/debug/sov-cli node submit-batch --wait-for-processing by-address YOUR_ADDRESS
```

{% endcode %}

Replace `YOUR_ADDRESS` with your actual Spicenet address.

This command submits all pending transactions in your local pool to the network. The `--wait-for-processing` flag ensures that the command doesn't return until the transactions have been processed by the network.

After submitting, you should see output similar to:

```
Submitted batch of 1 transactions.
Transaction hash: 0x1234...5678
Waiting for processing...
Transaction processed successfully.
```
