You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/developer-resources/walkthroughs/hellocelo.md
+17-17
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
---
2
-
title: Sending CELO & Stable Assets
2
+
title: Sending CELO & Mento Stable Assets
3
3
slug: /developer-guide/start/hellocelo
4
4
---
5
-
# Sending CELO & Stable Assets
5
+
# Sending CELO & Mento Stable Assets
6
6
7
7
How to connect to the Celo test network and tranfer tokens using ContractKit.
8
8
@@ -23,9 +23,9 @@ We assume you already have Node.js and NPM installed on your computer.
23
23
At the end of this guide, you will be able to:
24
24
25
25
* Connect to the Celo test network, called Alfajores
26
-
* Get test CELO, Celo Dollars (cUSD) and Celo Euros (cEUR) from the faucet
26
+
* Get test CELO, Mento cUSD (USD) and Mento cEUR (EUR) from the faucet
27
27
* Read account and contract information from the test network
28
-
* Transferring CELO, cUSD and cEUR on the test network
28
+
* Transferring CELO, Mento cUSD and Mento cEUR on the test network
29
29
30
30
## Getting Started
31
31
@@ -74,7 +74,7 @@ ContractKit contains a `contracts` property that we can use to access certain in
74
74
75
75
:::info
76
76
77
-
The Celo blockchain has two native assets, CELO \(CELO\) and the Celo Dollar \(cUSD\). Both of these assets implement the [ERC20 token standard](https://eips.ethereum.org/EIPS/eip-20) from Ethereum. The CELO asset is managed by the CELO smart contract and Celo Dollars is managed by the cUSD contract. We can access the CELO contract via the SDK with `kit.contracts.getGoldToken()` and the cUSD contract with `kit.contracts.getStableToken()`. These functions return promises, so we have to wait for them to resolve before we can interact with the token contracts. If you are unfamiliar with Promises in Javascript, [check out this documentation.](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) Promises are a common tool in blockchain development. In this guide, we use the [async/await syntax for promises](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/await).
77
+
The Celo blockchain has two native assets, CELO \(CELO\) and the Mento cUSD. Both of these assets implement the [ERC20 token standard](https://eips.ethereum.org/EIPS/eip-20) from Ethereum. The CELO asset is managed by the CELO smart contract and Mento cUSD is managed by the cUSD contract. We can access the CELO contract via the SDK with `kit.contracts.getGoldToken()` and the Mento cUSD contract with `kit.contracts.getStableToken()`. These functions return promises, so we have to wait for them to resolve before we can interact with the token contracts. If you are unfamiliar with Promises in Javascript, [check out this documentation.](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) Promises are a common tool in blockchain development. In this guide, we use the [async/await syntax for promises](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/await).
78
78
79
79
:::
80
80
@@ -100,8 +100,8 @@ let cEURBalance = await cEURtoken.balanceOf(anAddress)
100
100
101
101
// Print balances
102
102
console.log(`${anAddress} CELO balance: ${celoBalance.toString()}`)
Run this script again with `node helloCelo.js`. This will print `0`, as we have not funded the associated account yet.
182
182
183
183
## Using the faucet
184
184
185
-
We can get free test CELO and cUSDs on the test network for development via [the Celo Alfajores faucet](https://celo.org/build/faucet).
185
+
We can get free test CELO and Mento cUSDs on the test network for development via [the Celo Alfajores faucet](https://celo.org/build/faucet).
186
186
187
187
Copy your randomly generated account address from the console output mentioned above, and paste it into the faucet.
188
188
189
189
Once your account has been funded, run `$ node helloCelo.js` again to see your updated balance.
190
190
191
191
## Sending Value
192
192
193
-
We have an account with CELO and cUSD in it, now how do we send tokens to another account? Remember the token wrappers we used to read account balances earlier? We can use the same wrappers to send tokens, you just need to add the private key associated with your account to ContractKit \(see line 10\).
193
+
We have an account with CELO and Mento cUSD in it, now how do we send tokens to another account? Remember the token wrappers we used to read account balances earlier? We can use the same wrappers to send tokens, you just need to add the private key associated with your account to ContractKit \(see line 10\).
194
194
195
195
The token wrappers have a method called `transfer(address, amount)` that allows you to send value to the specified address \(line 14\).
196
196
197
-
You need to `send()` the transaction to the network after you construct it. The `send()` methods accepts an option that allows you to specify the `feeCurrency`, which allows the sender to pay transaction fees in CELO or cUSD. The default `feeCurrency` is CELO. In the following example, let's pay transaction fees in CELO when we transfer CELO and pay with cUSD when we transfer cUSD.
197
+
You need to `send()` the transaction to the network after you construct it. The `send()` methods accepts an option that allows you to specify the `feeCurrency`, which allows the sender to pay transaction fees in CELO or Mento cUSD. The default `feeCurrency` is CELO. In the following example, let's pay transaction fees in CELO when we transfer CELO and pay with Mento cUSD when we transfer Mento cUSD.
198
198
199
199
The `send()` method returns a transaction object. We will wait for the transaction receipt \(which will be returned when the transaction has been included in the blockchain\) and print it when we get it. This receipt contains information about the transaction.
0 commit comments