Sending Move Coin
Overview
This tutorial will guide you through the process of sending coins on the Initia blockchain, covering both Initia (Layer 1) and Minitias (Layer 2). Whether you're testing out transactions in a development environment or preparing to deploy your application, understanding how to manage and transfer tokens is essential.
Tutorial
Step 1: Acquire Coins from the Faucet (Optional)
If your account doesn't already hold tokens, you'll need to obtain some Testnet INIT tokens from the Initia Faucet. This step is crucial for testing transactions without using real assets.
Step 2: Check Balances
Before initiating a transaction, it's good practice to check the account balances. This verification ensures that the account has sufficient funds for the transaction and the associated gas fees.
Example Response:
In the Cosmos ecosystem, the prefix u
in the token denom (uinit
) stands for micro (μ), equivalent to 0.000001. Therefore, 100,000,000 uinit
translates to 100 INIT.
Step 3: Execute a Send Transaction
To send coins to another address, use the following command, adjusting the parameters as needed for your specific transaction:
The CLI will provide a gas estimate and transaction details. Review these carefully before confirming the transaction.
Step 4: Verify Balances Post-Transaction
After sending the coin, verify both the sender's and receiver's balances to confirm the transaction's success.
The sender's balance will decrease by the amount sent plus the transaction fee, while the receiver's balance will increase by the sent amount.
Last updated