Skip to content

Send Your First Transaction

Ensure you are connected to your local network:

soma env active

This should show local. If not, switch to it:

soma env switch local

Request tokens from the faucet:

soma faucet

Verify your balance:

soma balance

Create a new address to use as the recipient:

soma wallet new --alias recipient

This creates a new address but does not switch to it. You can verify both addresses exist:

soma wallet list

Send 1 SOMA to the recipient:

soma send --to recipient --amount 1

The command returns a transaction digest confirming the transfer.

Check the sender’s balance (your active address):

soma balance

Check the recipient’s balance:

soma balance recipient

The recipient should now have the tokens you sent.