Skip to content

Commit 8a02ef9

Browse files
committed
docs: Update Mento stablecoin names to new branding
Update all references to Mento stablecoins to use the new naming convention: - cUSD → USDm (Mento Dollar) - cEUR → EURm (Mento Euro) - cREAL → BRLm (Mento Brazilian Real) - eXOF → XOFm (Mento West African CFA Franc) - cKES → KESm (Mento Kenyan Shilling) - PUSO → PHPm (Mento Philippine Peso) - cCOP → COPm (Mento Colombian Peso) - cGBP → GBPm (Mento British Pound) - cCAD → CADm (Mento Canadian Dollar) - cAUD → AUDm (Mento Australian Dollar) - cZAR → ZARm (Mento South African Rand) - cGHS → GHSm (Mento Ghanaian Cedi) - cNGN → NGNm (Mento Nigerian Naira) - cJPY → JPYm (Mento Japanese Yen) - cCHF → CHFm (Mento Swiss Franc) Also updates long-form names (Celo Dollar → Mento Dollar, etc.) Ref: https://x.com/MentoLabs/status/2001349234038313230
1 parent c870058 commit 8a02ef9

34 files changed

Lines changed: 119 additions & 119 deletions

File tree

build-on-celo/build-on-minipay/code-library.mdx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -53,17 +53,17 @@ To use the code snippets below, install the following packages:
5353
</CodeGroup>
5454

5555

56-
## Check cUSD Balance of an address
56+
## Check USDm Balance of an address
5757

5858
```js
5959
import { getContract, formatEther, createPublicClient, http } from "viem";
6060
import { celo } from "viem/chains";
6161
import { stableTokenABI } from "@celo/abis";
6262

63-
// cUSD address on Celo mainnet
63+
// USDm address on Celo mainnet
6464
const STABLE_TOKEN_ADDRESS = "0x765DE816845861e75A25fCA122bb6898B8B1282a";
6565

66-
async function checkCUSDBalance(publicClient, address) {
66+
async function checkUSDmBalance(publicClient, address) {
6767
const StableTokenContract = getContract({
6868
abi: stableTokenABI,
6969
address: STABLE_TOKEN_ADDRESS,
@@ -85,7 +85,7 @@ const publicClient = createPublicClient({
8585
transport: http(),
8686
}); // Mainnet
8787

88-
const balance = await checkCUSDBalance(publicClient, address); // In Ether unit
88+
const balance = await checkUSDmBalance(publicClient, address); // In Ether unit
8989
```
9090

9191

@@ -146,7 +146,7 @@ const gasLimit = await estimateGas(publicClient, {
146146

147147

148148

149-
## Estimate Gas for a transaction (in cUSD)
149+
## Estimate Gas for a transaction (in USDm)
150150

151151
```js
152152
import { createPublicClient, http } from "viem";
@@ -201,7 +201,7 @@ const publicClient = createPublicClient({
201201
const gasPrice = await estimateGasPrice(publicClient);
202202
```
203203

204-
## Estimate Gas Price for a transaction (in cUSD)
204+
## Estimate Gas Price for a transaction (in USDm)
205205

206206
```js
207207
import { createPublicClient, http } from "viem";
@@ -225,7 +225,7 @@ const gasPrice = await estimateGasPrice(publicClient, STABLE_TOKEN_ADDRESS);
225225
```
226226

227227

228-
## Calculate cUSD to be spent for transaction fees
228+
## Calculate USDm to be spent for transaction fees
229229

230230
```js
231231
import { createPublicClient, http, formatEther, fromHex } from "viem";
@@ -255,7 +255,7 @@ const gasPrice = await estimateGasPrice(publicClient, STABLE_TOKEN_ADDRESS);
255255

256256
// Convert hex gas price to BigInt and calculate fees
257257
const gasPriceBigInt = fromHex(gasPrice, "bigint");
258-
const transactionFeesInCUSD = formatEther(gasLimit * gasPriceBigInt);
258+
const transactionFeesInUSDm = formatEther(gasLimit * gasPriceBigInt);
259259
```
260260

261261

@@ -379,15 +379,15 @@ async function requestTransfer(tokenAddress, transferValue, tokenDecimals, recei
379379
const hash = await walletClient.sendTransaction({
380380
to: tokenAddress,
381381
// Mainnet addresses:
382-
// cUSD: '0x765DE816845861e75A25fCA122bb6898B8B1282a'
382+
// USDm: '0x765DE816845861e75A25fCA122bb6898B8B1282a'
383383
// USDC: '0xcebA9300f2b948710d2653dD7B07f33A8B32118C'
384384
// USDT: '0x48065fbbe25f71c9282ddf5e1cd6d6a887483d5e'
385385
data: encodeFunctionData({
386386
abi: stableTokenABI, // Token ABI from @celo/abis
387387
functionName: "transfer",
388388
args: [
389389
receiverAddress,
390-
// Different tokens can have different decimals, cUSD (18), USDC (6)
390+
// Different tokens can have different decimals, USDm (18), USDC (6)
391391
parseUnits(`${Number(transferValue)}`, tokenDecimals),
392392
],
393393
}),

build-on-celo/build-on-minipay/quickstart.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ MiniPay is designed for mainstream adoption, making digital payments simple and
1515
#### Key Features:
1616

1717
- **Currency Display**: Balances appear in your local currency.
18-
- **Stablecoin Support**: Only stablecoins (cUSD, USDC, and USDT) are supported.
18+
- **Stablecoin Support**: Only stablecoins (USDm, USDC, and USDT) are supported.
1919
- **Simple Swaps**: The pocket swap feature allows for easy swaps between stablecoins by dragging one pocket into another.
2020

2121
<Note>
@@ -52,7 +52,7 @@ npx @celo/celo-composer@latest create -t minipay
5252

5353
## 3. Get Testnet Tokens
5454

55-
Request CELO testnet tokens from the Celo [faucet](https://faucet.celo.org/celo-sepolia/) to test your Mini App. After you got the CELO tokens, you can exchange them for stablecoins like cUSD, USDT and USDC in the [mento app](https://app.mento.org/).
55+
Request CELO testnet tokens from the Celo [faucet](https://faucet.celo.org/celo-sepolia/) to test your Mini App. After you got the CELO tokens, you can exchange them for stablecoins like USDm, USDT and USDC in the [mento app](https://app.mento.org/).
5656

5757
## 4. Test your Mini App inside MiniPay
5858

@@ -213,7 +213,7 @@ export default function Header() {
213213
- Always verify the existence of `window.provider` before initializing your web3 library to ensure seamless compatibility with the MiniPay wallet.
214214
- When using `ngrok`, remember that the tunneling URL is temporary. You'll get a new URL every time you restart ngrok.
215215
- Be cautious about exposing sensitive information or functionality when using public tunneling services like ngrok. Always use them in a controlled environment.
216-
- MiniPay currently supports setting the `feeCurrency` property when running `eth_sendTransaction`. However, currency support is limited to `cUSD`. More currencies might be supported in future.
216+
- MiniPay currently supports setting the `feeCurrency` property when running `eth_sendTransaction`. However, currency support is limited to `USDm`. More currencies might be supported in future.
217217
- MiniPay only accepts legacy transactions at the moment. EIP-1559 properties won't be considered when handling requests.
218218

219219
## Testing Local Development with MiniPay

build-on-celo/build-with-ai/mcp/celo-mcp.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The **Celo MCP Server** is a Model Context Protocol (MCP) server that provides c
77
## Key Features
88

99
- 🔗 **Blockchain Data Access**: Real-time access to blocks, transactions, and account information
10-
- 💰 **Token Operations**: Complete ERC20 and Celo stable token support (cUSD, cEUR, cREAL)
10+
- 💰 **Token Operations**: Complete ERC20 and Mento stable token support (USDm, EURm, BRLm)
1111
- 🖼️ **NFT Management**: Support for ERC721 and ERC1155 standards with metadata fetching
1212
- 📄 **Smart Contract Interactions**: Call functions, estimate gas, and manage ABIs
1313
- 📊 **Transaction Handling**: Gas estimation, EIP-1559 support, and transaction simulation

build-on-celo/build-with-defi.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Oracles are a crucial part to get real time price information on tokens. Speed i
8181
- **[Noves](https://docs.noves.fi/reference/api-overview)** - Deciphering onchain activity and standardizing the results
8282
- Human‑readable DeFi, ReFi & bridge txs
8383
- Pre‑sign safety simulations in any Celo wallet
84-
- Real‑time CELO / cUSD / stCELO pricing
84+
- Real‑time CELO / USDm / stCELO pricing
8585

8686
## Get Started
8787

build-on-celo/build-with-local-stablecoin.mdx

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,21 @@ Celo supports a diverse range of fiat-referenced stablecoins designed for differ
99

1010
| Stablecoin | Issuer | Use Case |Contract Address Mainnet|Contract Address Celo Sepolia Testnet|
1111
| ---------------- | ----------------------------------------------------------------------- | ------------------------------------------------- |-------------|---------|
12-
| **cUSD** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | US Dollar-pegged stablecoin | [0x765de816845861e75a25fca122bb6898b8b1282a](https://celoscan.io/address/0x765de816845861e75a25fca122bb6898b8b1282a) | [0xdE9e4C3ce781b4bA68120d6261cbad65ce0aB00b](https://sepolia.celoscan.io/address/0xdE9e4C3ce781b4bA68120d6261cbad65ce0aB00b) |
13-
| **cEUR** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | Euro-pegged stablecoin | [0xd8763cba276a3738e6de85b4b3bf5fded6d6ca73](https://celoscan.io/address/0xd8763cba276a3738e6de85b4b3bf5fded6d6ca73) | [0xA99dC247d6b7B2E3ab48a1fEE101b83cD6aCd82a](https://sepolia.celoscan.io/address/0xA99dC247d6b7B2E3ab48a1fEE101b83cD6aCd82a) |
14-
| **cREAL** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | Brazilian Real-pegged stablecoin | [0xe8537a3d056da446677b9e9d6c5db704eaab4787](https://celoscan.io/address/0xe8537a3d056da446677b9e9d6c5db704eaab4787) | [0x2294298942fdc79417DE9E0D740A4957E0e7783a](https://sepolia.celoscan.io/address/0x2294298942fdc79417DE9E0D740A4957E0e7783a) |
15-
| **eXOF** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | CFA Franc-pegged stablecoin | [0x73F93dcc49cB8A239e2032663e9475dd5ef29A08](https://celoscan.io/address/0x73F93dcc49cB8A239e2032663e9475dd5ef29A08) | [0x5505b70207aE3B826c1A7607F19F3Bf73444A082](https://sepolia.celoscan.io/address/0x5505b70207aE3B826c1A7607F19F3Bf73444A082) |
16-
| **cKES** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | Kenya Shilling-pegged stablecoin | [0x456a3D042C0DbD3db53D5489e98dFb038553B0d0](https://celoscan.io/address/0x456a3D042C0DbD3db53D5489e98dFb038553B0d0) | [0xC7e4635651E3e3Af82b61d3E23c159438daE3BbF](https://sepolia.celoscan.io/address/0xC7e4635651E3e3Af82b61d3E23c159438daE3BbF) |
17-
| **PUSO** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | Philippine Peso-pegged stablecoin | [0x105d4A9306D2E55a71d2Eb95B81553AE1dC20d7B](https://celoscan.io/address/0x105d4A9306D2E55a71d2Eb95B81553AE1dC20d7B) | [0x0352976d940a2C3FBa0C3623198947Ee1d17869E](https://sepolia.celoscan.io/address/0x0352976d940a2C3FBa0C3623198947Ee1d17869E) |
18-
| **cCOP** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | Colombia Peso-pegged stablecoin | [0x8a567e2ae79ca692bd748ab832081c45de4041ea](https://celoscan.io/address/0x8a567e2ae79ca692bd748ab832081c45de4041ea) | [0x5F8d55c3627d2dc0a2B4afa798f877242F382F67](https://sepolia.celoscan.io/address/0x5F8d55c3627d2dc0a2B4afa798f877242F382F67) |
19-
| **cGBP** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | British Pound-pegged stablecoin | [0xCCF663b1fF11028f0b19058d0f7B674004a40746](https://celoscan.io/address/0xCCF663b1fF11028f0b19058d0f7B674004a40746) | [0x85F5181Abdbf0e1814Fc4358582Ae07b8eBA3aF3](https://sepolia.celoscan.io/address/0x85F5181Abdbf0e1814Fc4358582Ae07b8eBA3aF3) |
20-
| **cCAD** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | Canadian Dollar-pegged stablecoin | [0xff4Ab19391af240c311c54200a492233052B6325](https://celoscan.io/address/0xff4Ab19391af240c311c54200a492233052B6325) | [0xF151c9a13b78C84f93f50B8b3bC689fedc134F60](https://sepolia.celoscan.io/address/0xF151c9a13b78C84f93f50B8b3bC689fedc134F60) |
21-
| **cAUD** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | Australian Dollar-pegged stablecoin | [0x7175504C455076F15c04A2F90a8e352281F492F9](https://celoscan.io/address/0x7175504C455076F15c04A2F90a8e352281F492F9) | [0x5873Faeb42F3563dcD77F0fbbdA818E6d6DA3139](https://sepolia.celoscan.io/address/0x5873Faeb42F3563dcD77F0fbbdA818E6d6DA3139) |
22-
| **cZAR** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | South African Rand-pegged stablecoin | [0x4c35853A3B4e647fD266f4de678dCc8fEC410BF6](https://celoscan.io/address/0x4c35853A3B4e647fD266f4de678dCc8fEC410BF6) | [0x10CCfB235b0E1Ed394bACE4560C3ed016697687e](https://sepolia.celoscan.io/address/0x10CCfB235b0E1Ed394bACE4560C3ed016697687e) |
23-
| **cGHS** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | Ghanaian Cedi-pegged stablecoin | [0xfAeA5F3404bbA20D3cc2f8C4B0A888F55a3c7313](https://celoscan.io/address/0xfAeA5F3404bbA20D3cc2f8C4B0A888F55a3c7313) | [0x5e94B8C872bD47BC4255E60ECBF44D5E66e7401C](https://sepolia.celoscan.io/address/0x5e94B8C872bD47BC4255E60ECBF44D5E66e7401C) |
24-
| **cNGN** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | Nigerian Naira-pegged stablecoin | [0xE2702Bd97ee33c88c8f6f92DA3B733608aa76F71](https://celoscan.io/address/0xE2702Bd97ee33c88c8f6f92DA3B733608aa76F71) | [0x3d5ae86F34E2a82771496D140daFAEf3789dF888](https://sepolia.celoscan.io/address/0x3d5ae86F34E2a82771496D140daFAEf3789dF888) |
25-
| **cJPY** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | Japanese Yen-pegged stablecoin | [0xc45eCF20f3CD864B32D9794d6f76814aE8892e20](https://celoscan.io/address/0xc45eCF20f3CD864B32D9794d6f76814aE8892e20) | [0x85Bee67D435A39f7467a8a9DE34a5B73D25Df426](https://sepolia.celoscan.io/address/0x85Bee67D435A39f7467a8a9DE34a5B73D25Df426) |
26-
| **cCHF** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | Swiss Franc-pegged stablecoin | [0xb55a79F398E759E43C95b979163f30eC87Ee131D](https://celoscan.io/address/0xb55a79F398E759E43C95b979163f30eC87Ee131D) | [0x284E9b7B623eAE866914b7FA0eB720C2Bb3C2980](https://sepolia.celoscan.io/address/0x284E9b7B623eAE866914b7FA0eB720C2Bb3C2980) |
12+
| **USDm** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | US Dollar-pegged stablecoin (Mento Dollar) | [0x765de816845861e75a25fca122bb6898b8b1282a](https://celoscan.io/address/0x765de816845861e75a25fca122bb6898b8b1282a) | [0xdE9e4C3ce781b4bA68120d6261cbad65ce0aB00b](https://sepolia.celoscan.io/address/0xdE9e4C3ce781b4bA68120d6261cbad65ce0aB00b) |
13+
| **EURm** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | Euro-pegged stablecoin (Mento Euro) | [0xd8763cba276a3738e6de85b4b3bf5fded6d6ca73](https://celoscan.io/address/0xd8763cba276a3738e6de85b4b3bf5fded6d6ca73) | [0xA99dC247d6b7B2E3ab48a1fEE101b83cD6aCd82a](https://sepolia.celoscan.io/address/0xA99dC247d6b7B2E3ab48a1fEE101b83cD6aCd82a) |
14+
| **BRLm** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | Brazilian Real-pegged stablecoin (Mento Brazilian Real) | [0xe8537a3d056da446677b9e9d6c5db704eaab4787](https://celoscan.io/address/0xe8537a3d056da446677b9e9d6c5db704eaab4787) | [0x2294298942fdc79417DE9E0D740A4957E0e7783a](https://sepolia.celoscan.io/address/0x2294298942fdc79417DE9E0D740A4957E0e7783a) |
15+
| **XOFm** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | CFA Franc-pegged stablecoin (Mento West African CFA Franc) | [0x73F93dcc49cB8A239e2032663e9475dd5ef29A08](https://celoscan.io/address/0x73F93dcc49cB8A239e2032663e9475dd5ef29A08) | [0x5505b70207aE3B826c1A7607F19F3Bf73444A082](https://sepolia.celoscan.io/address/0x5505b70207aE3B826c1A7607F19F3Bf73444A082) |
16+
| **KESm** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | Kenyan Shilling-pegged stablecoin (Mento Kenyan Shilling) | [0x456a3D042C0DbD3db53D5489e98dFb038553B0d0](https://celoscan.io/address/0x456a3D042C0DbD3db53D5489e98dFb038553B0d0) | [0xC7e4635651E3e3Af82b61d3E23c159438daE3BbF](https://sepolia.celoscan.io/address/0xC7e4635651E3e3Af82b61d3E23c159438daE3BbF) |
17+
| **PHPm** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | Philippine Peso-pegged stablecoin (Mento Philippine Peso) | [0x105d4A9306D2E55a71d2Eb95B81553AE1dC20d7B](https://celoscan.io/address/0x105d4A9306D2E55a71d2Eb95B81553AE1dC20d7B) | [0x0352976d940a2C3FBa0C3623198947Ee1d17869E](https://sepolia.celoscan.io/address/0x0352976d940a2C3FBa0C3623198947Ee1d17869E) |
18+
| **COPm** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | Colombian Peso-pegged stablecoin (Mento Colombian Peso) | [0x8a567e2ae79ca692bd748ab832081c45de4041ea](https://celoscan.io/address/0x8a567e2ae79ca692bd748ab832081c45de4041ea) | [0x5F8d55c3627d2dc0a2B4afa798f877242F382F67](https://sepolia.celoscan.io/address/0x5F8d55c3627d2dc0a2B4afa798f877242F382F67) |
19+
| **GBPm** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | British Pound-pegged stablecoin (Mento British Pound) | [0xCCF663b1fF11028f0b19058d0f7B674004a40746](https://celoscan.io/address/0xCCF663b1fF11028f0b19058d0f7B674004a40746) | [0x85F5181Abdbf0e1814Fc4358582Ae07b8eBA3aF3](https://sepolia.celoscan.io/address/0x85F5181Abdbf0e1814Fc4358582Ae07b8eBA3aF3) |
20+
| **CADm** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | Canadian Dollar-pegged stablecoin (Mento Canadian Dollar) | [0xff4Ab19391af240c311c54200a492233052B6325](https://celoscan.io/address/0xff4Ab19391af240c311c54200a492233052B6325) | [0xF151c9a13b78C84f93f50B8b3bC689fedc134F60](https://sepolia.celoscan.io/address/0xF151c9a13b78C84f93f50B8b3bC689fedc134F60) |
21+
| **AUDm** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | Australian Dollar-pegged stablecoin (Mento Australian Dollar) | [0x7175504C455076F15c04A2F90a8e352281F492F9](https://celoscan.io/address/0x7175504C455076F15c04A2F90a8e352281F492F9) | [0x5873Faeb42F3563dcD77F0fbbdA818E6d6DA3139](https://sepolia.celoscan.io/address/0x5873Faeb42F3563dcD77F0fbbdA818E6d6DA3139) |
22+
| **ZARm** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | South African Rand-pegged stablecoin (Mento South African Rand) | [0x4c35853A3B4e647fD266f4de678dCc8fEC410BF6](https://celoscan.io/address/0x4c35853A3B4e647fD266f4de678dCc8fEC410BF6) | [0x10CCfB235b0E1Ed394bACE4560C3ed016697687e](https://sepolia.celoscan.io/address/0x10CCfB235b0E1Ed394bACE4560C3ed016697687e) |
23+
| **GHSm** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | Ghanaian Cedi-pegged stablecoin (Mento Ghanaian Cedi) | [0xfAeA5F3404bbA20D3cc2f8C4B0A888F55a3c7313](https://celoscan.io/address/0xfAeA5F3404bbA20D3cc2f8C4B0A888F55a3c7313) | [0x5e94B8C872bD47BC4255E60ECBF44D5E66e7401C](https://sepolia.celoscan.io/address/0x5e94B8C872bD47BC4255E60ECBF44D5E66e7401C) |
24+
| **NGNm** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | Nigerian Naira-pegged stablecoin (Mento Nigerian Naira) | [0xE2702Bd97ee33c88c8f6f92DA3B733608aa76F71](https://celoscan.io/address/0xE2702Bd97ee33c88c8f6f92DA3B733608aa76F71) | [0x3d5ae86F34E2a82771496D140daFAEf3789dF888](https://sepolia.celoscan.io/address/0x3d5ae86F34E2a82771496D140daFAEf3789dF888) |
25+
| **JPYm** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | Japanese Yen-pegged stablecoin (Mento Japanese Yen) | [0xc45eCF20f3CD864B32D9794d6f76814aE8892e20](https://celoscan.io/address/0xc45eCF20f3CD864B32D9794d6f76814aE8892e20) | [0x85Bee67D435A39f7467a8a9DE34a5B73D25Df426](https://sepolia.celoscan.io/address/0x85Bee67D435A39f7467a8a9DE34a5B73D25Df426) |
26+
| **CHFm** | [Mento](https://www.mentolabs.xyz/blog/3-new-decentralized-stablecoins) | Swiss Franc-pegged stablecoin (Mento Swiss Franc) | [0xb55a79F398E759E43C95b979163f30eC87Ee131D](https://celoscan.io/address/0xb55a79F398E759E43C95b979163f30eC87Ee131D) | [0x284E9b7B623eAE866914b7FA0eB720C2Bb3C2980](https://sepolia.celoscan.io/address/0x284E9b7B623eAE866914b7FA0eB720C2Bb3C2980) |
2727
| **USDT** | [Tether](https://tether.to/en/) | Popular stablecoin on multiple blockchains | [0x48065fbbe25f71c9282ddf5e1cd6d6a887483d5e](https://celoscan.io/token/0x48065fbbe25f71c9282ddf5e1cd6d6a887483d5e) | [0xd077A400968890Eacc75cdc901F0356c943e4fDb](https://celo-sepolia.blockscout.com/address/0xd077A400968890Eacc75cdc901F0356c943e4fDb) |
2828
| **USDC** | [Circle](https://www.circle.com/usdc) | Widely used stablecoin with high liquidity | [0xceba9300f2b948710d2653dd7b07f33a8b32118c](https://celoscan.io/token/0xceba9300f2b948710d2653dd7b07f33a8b32118c) | - |
2929
| **vEUR** | [VNX](https://vnx.li/) | Euro-pegged stablecoin | [0x9346f43c1588b6df1d52bdd6bf846064f92d9cba](https://celoscan.io/token/0x9346f43c1588b6df1d52bdd6bf846064f92d9cba) | - |

build-on-celo/build-with-thirdweb/celo-nft-drop-tutorial.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,5 +80,5 @@ Once the project is running, you’ll see the first NFT displayed along with a d
8080

8181
1. Create a project profile on [Karma GAP](https://docs.gap.karmahq.xyz/how-to-guides/integrations/celo-proof-of-ship)**.
8282
2. Sign up to join [Proof of Ship](https://celo-devs.beehiiv.com/subscribe).
83-
3. You can win up to **`5k cUSD`** + Track Bounties.
83+
3. You can win up to **`5k USDm`** + Track Bounties.
8484
4. Build with **`Celo`**.

0 commit comments

Comments
 (0)