Asset Management
Access and account management for holding, exchanging, or sending Celo Dollars (cUSD) and Mento stablecoins.
Prerequisites
This guide assumes:
- You have read Key Management on Celo
- You have installed the Celo Command Line Interface (Celo CLI)
Choose a Node
In order to execute the tasks listed below, you will need to point the Celo CLI to a node that is synchronized with the Mainnet.
Create an Account
There are two ways to create an account:
- (Recommended) use accounts generated by Ledger, if you possess a Ledger hardware wallet
- Use CLI to generate an account -- this approach is less secure and hence not recommended
After creating an account, record its address in environment variables:
export CELO_ACCOUNT_ADDRESS=<YOUR-CELO-ACCOUNT-ADDRESS>
Exchange CELO for Mento Stablecoins
Once you have deposited CELO to your account, you can check your balance:
celocli account:balance $CELO_ACCOUNT_ADDRESS
As an example of a common stablecoin swap, you can exchange CELO for cUSD using the following command. This exchanges CELO for stable tokens (cUSD by default) via the stability mechanism. Note that the unit of value is CELO Wei (1 CELO = 10^18 CELO Wei).
celocli exchange:celo --value <VALUE-TO-EXCHANGE> --from $CELO_ACCOUNT_ADDRESS
Transfer Mento Stablecoins
When you have sufficient balance, you can send Mento stablecoins such as cUSD to other accounts. Note that the unit of value is cUSD Wei (1 cUSD = 10^18 cUSD Wei).
celocli transfer:dollars --from $CELO_ACCOUNT_ADDRESS --to <RECIPIENT-ADDRESS> --value <VALUE-TO-TRANSFER>