logoAcademy

Sending Tokens

Learn how to send tokens on your EVM blockchain.

To make sure the the blockchain is up and running, let's make a simple token transfer to a random address 0x321f6B73b6dFdE5C73731C39Fd9C89c7788D5EBc with foundry:

cast send --rpc-url myblockchain --private-key $PK 0x321f6B73b6dFdE5C73731C39Fd9C89c7788D5EBc --value 1ether

Now let's check if the transaction was successful:

cast balance --rpc-url myblockchain 0x321f6B73b6dFdE5C73731C39Fd9C89c7788D5EBc

You should see the balance of the address 0x321f6B73b6dFdE5C73731C39Fd9C89c7788D5EBc as 1.

On this page

No Headings