Skip to content

Commit 771bb47

Browse files
authored
updating cusd refs
1 parent 168e3e8 commit 771bb47

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

docs/developer-resources/walkthroughs/hellocelo.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
2-
title: Sending CELO & Stable Assets
2+
title: Sending CELO & Mento Stable Assets
33
slug: /developer-guide/start/hellocelo
44
---
5-
# Sending CELO & Stable Assets
5+
# Sending CELO & Mento Stable Assets
66

77
How to connect to the Celo test network and tranfer tokens using ContractKit.
88

@@ -23,9 +23,9 @@ We assume you already have Node.js and NPM installed on your computer.
2323
At the end of this guide, you will be able to:
2424

2525
* 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
2727
* 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
2929

3030
## Getting Started
3131

@@ -74,7 +74,7 @@ ContractKit contains a `contracts` property that we can use to access certain in
7474

7575
:::info
7676

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).
7878

7979
:::
8080

@@ -100,8 +100,8 @@ let cEURBalance = await cEURtoken.balanceOf(anAddress)
100100

101101
// Print balances
102102
console.log(`${anAddress} CELO balance: ${celoBalance.toString()}`)
103-
console.log(`${anAddress} cUSD balance: ${cUSDBalance.toString()}`)
104-
console.log(`${anAddress} cEUR balance: ${cEURBalance.toString()}`)
103+
console.log(`${anAddress} Mento cUSD balance: ${cUSDBalance.toString()}`)
104+
console.log(`${anAddress} Mento cEUR balance: ${cEURBalance.toString()}`)
105105
```
106106

107107
The `balanceOf(address)` function also returns a Promise, so we wait for the promise to resolve then we print the result.
@@ -123,7 +123,7 @@ Reading all account balances is a powerful feature of blockchains. Next, let's s
123123
In order to do transfers (aka [transactions](https://docs.celo.org/getting-started/glossary#transaction)), we need to:
124124

125125
1. Create an [account](https://docs.celo.org/getting-started/glossary#account) \(by creating a private key\)
126-
2. Fund it with test CELO and cUSDs
126+
2. Fund it with test CELO and Mento cUSDs
127127
3. Sign and send transactions to the network
128128

129129
## Accounts
@@ -173,28 +173,28 @@ async function getBalances(){
173173
// Print your account info
174174
console.log(`Your account address: ${account.address}`)
175175
console.log(`Your account CELO balance: ${celoBalance.toString()}`)
176-
console.log(`Your account cUSD balance: ${cUSDBalance.toString()}`)
177-
console.log(`Your account cEUR balance: ${cEURBalance.toString()}`)
176+
console.log(`Your account Mento cUSD balance: ${cUSDBalance.toString()}`)
177+
console.log(`Your account Mento cEUR balance: ${cEURBalance.toString()}`)
178178
}
179179
```
180180

181181
Run this script again with `node helloCelo.js`. This will print `0`, as we have not funded the associated account yet.
182182

183183
## Using the faucet
184184

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).
186186

187187
Copy your randomly generated account address from the console output mentioned above, and paste it into the faucet.
188188

189189
Once your account has been funded, run `$ node helloCelo.js` again to see your updated balance.
190190

191191
## Sending Value
192192

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\).
194194

195195
The token wrappers have a method called `transfer(address, amount)` that allows you to send value to the specified address \(line 14\).
196196

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.
198198

199199
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.
200200

@@ -236,8 +236,8 @@ async function send(){
236236

237237
// 17. Print receipts
238238
console.log('CELO Transaction receipt: %o', celoReceipt)
239-
console.log('cUSD Transaction receipt: %o', cUSDReceipt)
240-
console.log('cEUR Transaction receipt: %o', cEURReceipt)
239+
console.log('Mento cUSD Transaction receipt: %o', cUSDReceipt)
240+
console.log('Mento cEUR Transaction receipt: %o', cEURReceipt)
241241

242242
// 18. Get your new balances
243243
let celoBalance = await celotoken.balanceOf(account.address)
@@ -246,8 +246,8 @@ async function send(){
246246

247247
// 19. Print new balance
248248
console.log(`Your new account CELO balance: ${celoBalance.toString()}`)
249-
console.log(`Your new account cUSD balance: ${cUSDBalance.toString()}`)
250-
console.log(`Your new account cUSD balance: ${cEURBalance.toString()}`)
249+
console.log(`Your new account Mento cUSD balance: ${cUSDBalance.toString()}`)
250+
console.log(`Your new account Mento cUSD balance: ${cEURBalance.toString()}`)
251251
}
252252
```
253253

0 commit comments

Comments
 (0)