From ab6553cf4e007b776622ca54437255e5f6128fbe Mon Sep 17 00:00:00 2001 From: Shiva-Sai-ssb Date: Thu, 22 Aug 2024 19:08:03 +0530 Subject: [PATCH 01/12] add stablecoin quiz --- src/data/quizzes/index.ts | 9 +++ src/data/quizzes/questionBank.ts | 131 +++++++++++++++++++++++++++++++ src/intl/en/learn-quizzes.json | 47 ++++++++++- 3 files changed, 186 insertions(+), 1 deletion(-) diff --git a/src/data/quizzes/index.ts b/src/data/quizzes/index.ts index 42dc14f80f8..30b355bd0cf 100644 --- a/src/data/quizzes/index.ts +++ b/src/data/quizzes/index.ts @@ -50,6 +50,10 @@ const quizzes = { title: "run-a-node", questions: ["l001", "l002", "l003", "l004", "l005", "l006"], }, + stablecoins: { + title: "stablecoins", + questions: ["m001", "m002", "m003", "m004", "m005"], + }, } satisfies RawQuizzes export const ethereumBasicsQuizzes: QuizzesSection[] = [ @@ -88,6 +92,11 @@ export const usingEthereumQuizzes: QuizzesSection[] = [ { id: "nfts", level: "beginner", + next: "stablecoins", + }, + { + id: "stablecoins", + level: "beginner", next: "layer-2", }, { diff --git a/src/data/quizzes/questionBank.ts b/src/data/quizzes/questionBank.ts index ad4e11c3ed4..cdf24060459 100644 --- a/src/data/quizzes/questionBank.ts +++ b/src/data/quizzes/questionBank.ts @@ -1479,6 +1479,137 @@ const questionBank = { ], correctAnswerId: "l006-b", }, + // Stablecoins + m001: { + prompt: "m001-prompt", + answers: [ + { + id: "m001-a", + label: "m001-a-label", + explanation: "m001-a-explanation", + }, + { + id: "m001-b", + label: "m001-b-label", + explanation: "m001-b-explanation", + }, + { + id: "m001-c", + label: "m001-c-label", + explanation: "m001-c-explanation", + }, + { + id: "m001-d", + label: "m001-d-label", + explanation: "m001-d-explanation", + }, + ], + correctAnswerId: "m001-a", + }, + m002: { + prompt: "m002-prompt", + answers: [ + { + id: "m002-a", + label: "m002-a-label", + explanation: "m002-a-explanation", + }, + { + id: "m002-b", + label: "m002-b-label", + explanation: "m002-b-explanation", + }, + { + id: "m002-c", + label: "m002-c-label", + explanation: "m002-c-explanation", + }, + { + id: "m002-d", + label: "m002-d-label", + explanation: "m002-d-explanation", + }, + ], + correctAnswerId: "m002-c", + }, + m003: { + prompt: "m003-prompt", + answers: [ + { + id: "m003-a", + label: "m003-a-label", + explanation: "m003-a-explanation", + }, + { + id: "m003-b", + label: "m003-b-label", + explanation: "m003-b-explanation", + }, + { + id: "m003-c", + label: "m003-c-label", + explanation: "m003-c-explanation", + }, + { + id: "m003-d", + label: "m003-d-label", + explanation: "m003-d-explanation", + }, + ], + correctAnswerId: "m003-d", + }, + m004: { + prompt: "m004-prompt", + answers: [ + { + id: "m004-a", + label: "m004-a-label", + explanation: "m004-a-explanation", + }, + { + id: "m004-b", + label: "m004-b-label", + explanation: "m004-b-explanation", + }, + { + id: "m004-c", + label: "m004-c-label", + explanation: "m004-c-explanation", + }, + { + id: "m004-d", + label: "m004-d-label", + explanation: "m004-d-explanation", + }, + ], + correctAnswerId: "m004-b", + }, + m005: { + prompt: "m005-prompt", + answers: [ + { + id: "m005-a", + label: "m005-a-label", + explanation: "m005-a-explanation", + }, + { + id: "m005-b", + label: "m005-b-label", + explanation: "m005-b-explanation", + }, + { + id: "m005-c", + label: "m005-c-label", + explanation: "m005-c-explanation", + }, + { + id: "m005-d", + label: "m005-d-label", + explanation: "m005-d-explanation", + }, + ], + correctAnswerId: "m005-d", + }, } as const satisfies QuestionBank export default questionBank diff --git a/src/intl/en/learn-quizzes.json b/src/intl/en/learn-quizzes.json index ee424da93d0..015efb7aaf4 100644 --- a/src/intl/en/learn-quizzes.json +++ b/src/intl/en/learn-quizzes.json @@ -523,5 +523,50 @@ "l006-prompt": "Running a node earns network rewards", "l006-a-label": "True", "l006-a-explanation": "Simply running client software does not earn you rewards. To earn rewards, you must also be staking.", - "l006-b-label": "False" + "l006-b-label": "False", + "m001-prompt": "What are Stablecoins?", + "m001-a-label": "Cryptocurrencies with low price volatility, their value is steady and similar to traditional currencies", + "m001-a-explanation": "Correct! Stablecoins are designed to address the volatility issue common in many cryptocurrencies.", + "m001-b-label": "Digital representations of gold", + "m001-b-explanation": "This is incorrect. While some stablecoins might be backed by precious metals, they can also be backed by fiat currency or other cryptocurrencies.", + "m001-c-label": "A new type of credit card", + "m001-c-explanation": "This is incorrect. Stablecoins are a type of cryptocurrency, not a credit card.", + "m001-d-label": "A replacement for Ether", + "m001-d-explanation": "This is incorrect. Stablecoins are not designed to replace Ether. They are another token on the Ethereum network and are designed to have the opposite characteristic of Ether, notably its volatility.", + "m002-prompt": "Which of the following is a stablecoin?", + "m002-a-label": "US Dollar", + "m002-a-explanation": "This is incorrect. While stablecoins can represent the US dollar, a US dollar is not a cryptocurrency.", + "m002-b-label": "Aave token", + "m002-b-explanation": "This is incorrect. Aave token is a cryptocurrency, but its price is not intended to be stable.", + "m002-c-label": "Dai", + "m002-c-explanation": "Correct! Dai is probably the most famous decentralized stablecoin, and its value is roughly 1 US Dollar.", + "m002-d-label": "Ether", + "m002-d-explanation": "This is incorrect. Ether is the native currency of the Ethereum network, but it is not intended to be stable.", + "m003-prompt": "What can stablecoins be used for?", + "m003-a-label": "To shield its users from volatile changes in price", + "m003-a-explanation": "Not quite. This answer is partially correct, but it's only one of the many things stablecoins can be used for.", + "m003-b-label": "To buy things on the internet anywhere in the world", + "m003-b-explanation": "Not quite. This answer is partially correct, but it's only one of the many things stablecoins can be used for.", + "m003-c-label": "To earn money by lending to others", + "m003-c-explanation": "Not quite. This answer is partially correct, but it's only one of the many things stablecoins can be used for.", + "m003-d-label": "All of the above", + "m003-d-explanation": "Correct! Stablecoins can be used to hold cryptocurrency with less volatility, transact globally on the internet, and earn interest when you lend them out.", + "m004-prompt": "What makes stablecoins unique?", + "m004-a-label": "It is a token that is tied to an asset in the real world", + "m004-a-explanation": "This is incorrect. While this is often the case, it is not unique to stablecoins.", + "m004-b-label": "It is a cryptocurrency token specifically designed to keep its value steady", + "m004-b-explanation": "Correct! Stablecoins are unique in that they are tokens designed to keep their value equal to the asset they are pegged to (most commonly traditional currencies, e.g., 1 USDC = 1 US dollar).", + "m004-c-label": "It is capable of being sent over the internet", + "m004-c-explanation": "This is incorrect. While this is a capability, it is not unique to stablecoins.", + "m004-d-label": "It can be used on the Ethereum network.", + "m004-d-explanation": "This is incorrect. Many other cryptocurrency tokens can be used on the Ethereum network.", + "m005-prompt": "What is NOT a way to get stablecoins?", + "m005-a-label": "Swap them with other tokens", + "m005-a-explanation": "Incorrect, this is a way to get stablecoins. One of the most common ways people acquire stablecoins is by swapping their existing cryptocurrencies for stablecoins.", + "m005-b-label": "Borrow them", + "m005-b-explanation": "Incorrect, this is a way to get stablecoins. You can borrow some stablecoins by using your existing cryptocurrencies, such as Ether, as collateral. You will need to pay the borrowed stablecoins back at some point.", + "m005-c-label": "Buy them from an exchange", + "m005-c-explanation": "Incorrect, this is a way to get stablecoins. Many exchanges and wallets let you buy stablecoins directly, though geographical restrictions may apply.", + "m005-d-label": "Mine them", + "m005-d-explanation": "Correct! Unlike Bitcoin, you are unable to mine stablecoins." } From ec878bab25bd35b75edb71650fe3fbe0a4f7e014 Mon Sep 17 00:00:00 2001 From: Shiva-Sai-ssb Date: Thu, 22 Aug 2024 19:50:51 +0530 Subject: [PATCH 02/12] fix --- src/components/Quiz/stories/QuizzesStats.stories.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Quiz/stories/QuizzesStats.stories.tsx b/src/components/Quiz/stories/QuizzesStats.stories.tsx index ba452be99ab..1025ef7dfe0 100644 --- a/src/components/Quiz/stories/QuizzesStats.stories.tsx +++ b/src/components/Quiz/stories/QuizzesStats.stories.tsx @@ -20,6 +20,7 @@ const meta = { wallets: [false, 0], web3: [false, 0], daos: [false, 0], + stablecoins: [false, 0], }, totalCorrectAnswers: 0, }, From 138b7532b0026990f5c22e67b6fe7f04c1038775 Mon Sep 17 00:00:00 2001 From: Shiva-Sai-ssb <112751524+Shiva-Sai-ssb@users.noreply.github.com> Date: Tue, 3 Sep 2024 13:28:40 +0530 Subject: [PATCH 03/12] feat:add quiz to stablecoins page --- src/pages/stablecoins.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pages/stablecoins.tsx b/src/pages/stablecoins.tsx index 2e93a0ab03a..c439cbfbca2 100644 --- a/src/pages/stablecoins.tsx +++ b/src/pages/stablecoins.tsx @@ -30,6 +30,7 @@ import Text from "@/components/OldText" import PageHero from "@/components/PageHero" import PageMetadata from "@/components/PageMetadata" import ProductList from "@/components/ProductList" +import { StandaloneQuizWidget } from "@/components/Quiz/QuizWidget" import StablecoinAccordion from "@/components/StablecoinAccordion" import StablecoinBoxGrid from "@/components/StablecoinBoxGrid" import StablecoinsTable from "@/components/StablecoinsTable" @@ -775,6 +776,8 @@ const StablecoinsPage = ({ markets, marketsHasError }) => { + {/* Stablecoins Quiz Section */} + From 776b638852ab2a8216f787e76f33d1caae2ce901 Mon Sep 17 00:00:00 2001 From: Shiva-Sai-ssb <112751524+Shiva-Sai-ssb@users.noreply.github.com> Date: Tue, 3 Sep 2024 18:01:43 +0530 Subject: [PATCH 04/12] fix --- src/pages/stablecoins.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pages/stablecoins.tsx b/src/pages/stablecoins.tsx index c439cbfbca2..0e7c3a3ac54 100644 --- a/src/pages/stablecoins.tsx +++ b/src/pages/stablecoins.tsx @@ -776,9 +776,8 @@ const StablecoinsPage = ({ markets, marketsHasError }) => { - {/* Stablecoins Quiz Section */} - + From 5a5b1c03725284857c8b5f06eb319dce2956f2ad Mon Sep 17 00:00:00 2001 From: Shiva-Sai-ssb <112751524+Shiva-Sai-ssb@users.noreply.github.com> Date: Wed, 4 Sep 2024 21:56:05 +0530 Subject: [PATCH 05/12] Update:translations.ts --- src/lib/utils/translations.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/utils/translations.ts b/src/lib/utils/translations.ts index 69dafc7003d..bdaa1b04fe5 100644 --- a/src/lib/utils/translations.ts +++ b/src/lib/utils/translations.ts @@ -206,7 +206,8 @@ const getRequiredNamespacesForPath = (relativePath: string) => { path.startsWith("/wallets/") || path.startsWith("/web3/") || path.startsWith("/what-is-ethereum/") || - path.startsWith("/quizzes/") + path.startsWith("/quizzes/") || + path.startsWith("/stablecoins/") ) { requiredNamespaces = [...requiredNamespaces, "learn-quizzes"] } From 0824199f549055721fd6269467a4959d6973c542 Mon Sep 17 00:00:00 2001 From: Shiva Sai <112751524+Shiva-Sai-ssb@users.noreply.github.com> Date: Tue, 24 Sep 2024 15:06:41 +0530 Subject: [PATCH 06/12] Update learn-quizzes.json --- src/intl/en/learn-quizzes.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/intl/en/learn-quizzes.json b/src/intl/en/learn-quizzes.json index 015efb7aaf4..d30382facc1 100644 --- a/src/intl/en/learn-quizzes.json +++ b/src/intl/en/learn-quizzes.json @@ -531,13 +531,13 @@ "m001-b-explanation": "This is incorrect. While some stablecoins might be backed by precious metals, they can also be backed by fiat currency or other cryptocurrencies.", "m001-c-label": "A new type of credit card", "m001-c-explanation": "This is incorrect. Stablecoins are a type of cryptocurrency, not a credit card.", - "m001-d-label": "A replacement for Ether", - "m001-d-explanation": "This is incorrect. Stablecoins are not designed to replace Ether. They are another token on the Ethereum network and are designed to have the opposite characteristic of Ether, notably its volatility.", + "m001-d-label": "A replacement for ether", + "m001-d-explanation": "This is incorrect. Stablecoins are not designed to replace ether (ETH). They are another token on the Ethereum network and are designed to have the opposite characteristic of ETH, notably its volatility.", "m002-prompt": "Which of the following is a stablecoin?", "m002-a-label": "US Dollar", "m002-a-explanation": "This is incorrect. While stablecoins can represent the US dollar, a US dollar is not a cryptocurrency.", "m002-b-label": "Aave token", - "m002-b-explanation": "This is incorrect. Aave token is a cryptocurrency, but its price is not intended to be stable.", + "m002-b-explanation": "This is incorrect. AAVE is a governance token for the Aave protocol, which provides marketplaces for stablecoins, but AAVE itself is not a stablecoin.", "m002-c-label": "Dai", "m002-c-explanation": "Correct! Dai is probably the most famous decentralized stablecoin, and its value is roughly 1 US Dollar.", "m002-d-label": "Ether", @@ -553,9 +553,9 @@ "m003-d-explanation": "Correct! Stablecoins can be used to hold cryptocurrency with less volatility, transact globally on the internet, and earn interest when you lend them out.", "m004-prompt": "What makes stablecoins unique?", "m004-a-label": "It is a token that is tied to an asset in the real world", - "m004-a-explanation": "This is incorrect. While this is often the case, it is not unique to stablecoins.", + "m004-a-explanation": "This is incorrect. While many stablecoins are pegged to real-world assets, this characteristic is not exclusive to stablecoins (e.g., ETH-collateralized tokens).", "m004-b-label": "It is a cryptocurrency token specifically designed to keep its value steady", - "m004-b-explanation": "Correct! Stablecoins are unique in that they are tokens designed to keep their value equal to the asset they are pegged to (most commonly traditional currencies, e.g., 1 USDC = 1 US dollar).", + "m004-b-explanation": "Correct! Stablecoins are designed to keep their value relatively stable, typically pegged to assets like currencies (e.g., 1 USDC = 1 US dollar), but not all stablecoins follow this model (e.g., RAI).", "m004-c-label": "It is capable of being sent over the internet", "m004-c-explanation": "This is incorrect. While this is a capability, it is not unique to stablecoins.", "m004-d-label": "It can be used on the Ethereum network.", From 40f2d8d00ef678f1a12f65f40b6da72fdbcc05de Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 4 Oct 2024 16:29:07 +0000 Subject: [PATCH 07/12] Update Crowdin translation progress --- src/data/translationProgress.json | 240 +++++++++++++++--------------- 1 file changed, 120 insertions(+), 120 deletions(-) diff --git a/src/data/translationProgress.json b/src/data/translationProgress.json index b78255b303c..8218caddacb 100644 --- a/src/data/translationProgress.json +++ b/src/data/translationProgress.json @@ -3,679 +3,679 @@ "languageId": "af", "words": { "approved": 1562, - "total": 277336 + "total": 277348 } }, { "languageId": "am", "words": { "approved": 11001, - "total": 277336 + "total": 277348 } }, { "languageId": "ar", "words": { "approved": 39967, - "total": 277336 + "total": 277348 } }, { "languageId": "az", "words": { "approved": 24535, - "total": 277336 + "total": 277348 } }, { "languageId": "be", "words": { - "approved": 6646, - "total": 277336 + "approved": 36609, + "total": 277348 } }, { "languageId": "bg", "words": { - "approved": 19481, - "total": 277336 + "approved": 19472, + "total": 277348 } }, { "languageId": "bi", "words": { "approved": 0, - "total": 277336 + "total": 277348 } }, { "languageId": "bn", "words": { "approved": 32023, - "total": 277336 + "total": 277348 } }, { "languageId": "br-FR", "words": { "approved": 43, - "total": 277336 + "total": 277348 } }, { "languageId": "bs", "words": { "approved": 7597, - "total": 277336 + "total": 277348 } }, { "languageId": "ca", "words": { "approved": 24465, - "total": 277336 + "total": 277348 } }, { "languageId": "cs", "words": { "approved": 106758, - "total": 277336 + "total": 277348 } }, { "languageId": "da", "words": { "approved": 2538, - "total": 277336 + "total": 277348 } }, { "languageId": "de", "words": { - "approved": 191559, - "total": 277336 + "approved": 192870, + "total": 277348 } }, { "languageId": "dv", "words": { "approved": 0, - "total": 277336 + "total": 277348 } }, { "languageId": "ee", "words": { "approved": 2555, - "total": 277336 + "total": 277348 } }, { "languageId": "el", "words": { - "approved": 136488, - "total": 277336 + "approved": 137338, + "total": 277348 } }, { "languageId": "eo", "words": { "approved": 46, - "total": 277336 + "total": 277348 } }, { "languageId": "es-EM", "words": { - "approved": 267183, - "total": 277336 + "approved": 276163, + "total": 277348 } }, { "languageId": "et", "words": { "approved": 19, - "total": 277336 + "total": 277348 } }, { "languageId": "eu", "words": { "approved": 10, - "total": 277336 + "total": 277348 } }, { "languageId": "fa", "words": { - "approved": 104988, - "total": 277336 + "approved": 271494, + "total": 277348 } }, { "languageId": "fa-AF", "words": { "approved": 64, - "total": 277336 + "total": 277348 } }, { "languageId": "fi", "words": { "approved": 20906, - "total": 277336 + "total": 277348 } }, { "languageId": "fil", "words": { - "approved": 57405, - "total": 277336 + "approved": 58949, + "total": 277348 } }, { "languageId": "fr", "words": { "approved": 277336, - "total": 277336 + "total": 277348 } }, { "languageId": "gi", "words": { "approved": 0, - "total": 277336 + "total": 277348 } }, { "languageId": "gl", "words": { "approved": 2540, - "total": 277336 + "total": 277348 } }, { "languageId": "gu-IN", "words": { "approved": 2652, - "total": 277336 + "total": 277348 } }, { "languageId": "ha", "words": { - "approved": 37029, - "total": 277336 + "approved": 38047, + "total": 277348 } }, { "languageId": "he", "words": { "approved": 3259, - "total": 277336 + "total": 277348 } }, { "languageId": "hi", "words": { - "approved": 50634, - "total": 277336 + "approved": 54878, + "total": 277348 } }, { "languageId": "hr", "words": { "approved": 21121, - "total": 277336 + "total": 277348 } }, { "languageId": "hu", "words": { "approved": 277336, - "total": 277336 + "total": 277348 } }, { "languageId": "hy-AM", "words": { "approved": 9746, - "total": 277336 + "total": 277348 } }, { "languageId": "id", "words": { - "approved": 113017, - "total": 277336 + "approved": 135884, + "total": 277348 } }, { "languageId": "ig", "words": { "approved": 25849, - "total": 277336 + "total": 277348 } }, { "languageId": "it", "words": { "approved": 277336, - "total": 277336 + "total": 277348 } }, { "languageId": "ja", "words": { "approved": 277304, - "total": 277336 + "total": 277348 } }, { "languageId": "ka", "words": { "approved": 5462, - "total": 277336 + "total": 277348 } }, { "languageId": "kk", "words": { "approved": 2692, - "total": 277336 + "total": 277348 } }, { "languageId": "km", "words": { "approved": 13805, - "total": 277336 + "total": 277348 } }, { "languageId": "kn", "words": { "approved": 39686, - "total": 277336 + "total": 277348 } }, { "languageId": "ko", "words": { "approved": 54945, - "total": 277336 + "total": 277348 } }, { "languageId": "ku", "words": { "approved": 0, - "total": 277336 + "total": 277348 } }, { "languageId": "ky", "words": { "approved": 72, - "total": 277336 + "total": 277348 } }, { "languageId": "lb", "words": { "approved": 0, - "total": 277336 + "total": 277348 } }, { "languageId": "lt", "words": { "approved": 3032, - "total": 277336 + "total": 277348 } }, { "languageId": "lv", "words": { "approved": 0, - "total": 277336 + "total": 277348 } }, { "languageId": "mai", "words": { "approved": 0, - "total": 277336 + "total": 277348 } }, { "languageId": "mk", "words": { "approved": 54, - "total": 277336 + "total": 277348 } }, { "languageId": "ml-IN", "words": { "approved": 18396, - "total": 277336 + "total": 277348 } }, { "languageId": "mn", "words": { "approved": 46, - "total": 277336 + "total": 277348 } }, { "languageId": "mr", "words": { "approved": 23577, - "total": 277336 + "total": 277348 } }, { "languageId": "ms", "words": { - "approved": 38760, - "total": 277336 + "approved": 52562, + "total": 277348 } }, { "languageId": "my", "words": { "approved": 65, - "total": 277336 + "total": 277348 } }, { "languageId": "ne-NP", "words": { "approved": 2551, - "total": 277336 + "total": 277348 } }, { "languageId": "nl", "words": { - "approved": 52579, - "total": 277336 + "approved": 66292, + "total": 277348 } }, { "languageId": "no", "words": { "approved": 3010, - "total": 277336 + "total": 277348 } }, { "languageId": "ny", "words": { "approved": 0, - "total": 277336 + "total": 277348 } }, { "languageId": "or", "words": { "approved": 0, - "total": 277336 + "total": 277348 } }, { "languageId": "pa-IN", "words": { "approved": 3, - "total": 277336 + "total": 277348 } }, { "languageId": "pcm", "words": { - "approved": 36684, - "total": 277336 + "approved": 41760, + "total": 277348 } }, { "languageId": "pl", "words": { - "approved": 110041, - "total": 277336 + "approved": 120875, + "total": 277348 } }, { "languageId": "ps", "words": { "approved": 0, - "total": 277336 + "total": 277348 } }, { "languageId": "pt-BR", "words": { "approved": 244988, - "total": 277336 + "total": 277348 } }, { "languageId": "pt-PT", "words": { - "approved": 37497, - "total": 277336 + "approved": 37495, + "total": 277348 } }, { "languageId": "ro", "words": { "approved": 43696, - "total": 277336 + "total": 277348 } }, { "languageId": "ru", "words": { - "approved": 121899, - "total": 277336 + "approved": 127494, + "total": 277348 } }, { "languageId": "sat", "words": { "approved": 57, - "total": 277336 + "total": 277348 } }, { "languageId": "si-LK", "words": { "approved": 65, - "total": 277336 + "total": 277348 } }, { "languageId": "sk", "words": { - "approved": 26231, - "total": 277336 + "approved": 47141, + "total": 277348 } }, { "languageId": "sl", "words": { "approved": 26522, - "total": 277336 + "total": 277348 } }, { "languageId": "sn", "words": { "approved": 5686, - "total": 277336 + "total": 277348 } }, { "languageId": "so", "words": { "approved": 62, - "total": 277336 + "total": 277348 } }, { "languageId": "sq", "words": { "approved": 67, - "total": 277336 + "total": 277348 } }, { "languageId": "sr-CS", "words": { - "approved": 40759, - "total": 277336 + "approved": 40756, + "total": 277348 } }, { "languageId": "sv-SE", "words": { "approved": 10412, - "total": 277336 + "total": 277348 } }, { "languageId": "sw", "words": { "approved": 26695, - "total": 277336 + "total": 277348 } }, { "languageId": "ta", "words": { "approved": 2817, - "total": 277336 + "total": 277348 } }, { "languageId": "te", "words": { "approved": 26774, - "total": 277336 + "total": 277348 } }, { "languageId": "tg", "words": { "approved": 0, - "total": 277336 + "total": 277348 } }, { "languageId": "th", "words": { "approved": 6421, - "total": 277336 + "total": 277348 } }, { "languageId": "ti", "words": { "approved": 0, - "total": 277336 + "total": 277348 } }, { "languageId": "tk", "words": { "approved": 6309, - "total": 277336 + "total": 277348 } }, { "languageId": "tl", "words": { - "approved": 2542, - "total": 277336 + "approved": 53044, + "total": 277348 } }, { "languageId": "tr", "words": { - "approved": 276863, - "total": 277336 + "approved": 277336, + "total": 277348 } }, { "languageId": "tw", "words": { "approved": 6216, - "total": 277336 + "total": 277348 } }, { "languageId": "uk", "words": { "approved": 90081, - "total": 277336 + "total": 277348 } }, { "languageId": "ur-IN", "words": { "approved": 2531, - "total": 277336 + "total": 277348 } }, { "languageId": "ur-PK", "words": { "approved": 905, - "total": 277336 + "total": 277348 } }, { "languageId": "uz", "words": { "approved": 3272, - "total": 277336 + "total": 277348 } }, { "languageId": "vi", "words": { "approved": 38137, - "total": 277336 + "total": 277348 } }, { "languageId": "yo", "words": { - "approved": 46631, - "total": 277336 + "approved": 52834, + "total": 277348 } }, { "languageId": "zh-CN", "words": { - "approved": 277335, - "total": 277336 + "approved": 277336, + "total": 277348 } }, { "languageId": "zh-TW", "words": { - "approved": 223581, - "total": 277336 + "approved": 244023, + "total": 277348 } }, { "languageId": "zu", "words": { "approved": 43, - "total": 277336 + "total": 277348 } } ] \ No newline at end of file From 19733172853d6092a364269d67c4dd1e01217efb Mon Sep 17 00:00:00 2001 From: Paul Wackerow <54227730+wackerow@users.noreply.github.com> Date: Tue, 8 Oct 2024 20:12:46 +0000 Subject: [PATCH 08/12] chore: copy adjustments from review --- src/intl/en/learn-quizzes.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/intl/en/learn-quizzes.json b/src/intl/en/learn-quizzes.json index d30382facc1..36b730ccc13 100644 --- a/src/intl/en/learn-quizzes.json +++ b/src/intl/en/learn-quizzes.json @@ -532,18 +532,18 @@ "m001-c-label": "A new type of credit card", "m001-c-explanation": "This is incorrect. Stablecoins are a type of cryptocurrency, not a credit card.", "m001-d-label": "A replacement for ether", - "m001-d-explanation": "This is incorrect. Stablecoins are not designed to replace ether (ETH). They are another token on the Ethereum network and are designed to have the opposite characteristic of ETH, notably its volatility.", + "m001-d-explanation": "This is incorrect. Stablecoins are not designed to replace ether (ETH). They are another token on the Ethereum network designed to maintain steady value over time.", "m002-prompt": "Which of the following is a stablecoin?", "m002-a-label": "US Dollar", "m002-a-explanation": "This is incorrect. While stablecoins can represent the US dollar, a US dollar is not a cryptocurrency.", - "m002-b-label": "Aave token", + "m002-b-label": "AAVE token", "m002-b-explanation": "This is incorrect. AAVE is a governance token for the Aave protocol, which provides marketplaces for stablecoins, but AAVE itself is not a stablecoin.", "m002-c-label": "Dai", "m002-c-explanation": "Correct! Dai is probably the most famous decentralized stablecoin, and its value is roughly 1 US Dollar.", "m002-d-label": "Ether", "m002-d-explanation": "This is incorrect. Ether is the native currency of the Ethereum network, but it is not intended to be stable.", "m003-prompt": "What can stablecoins be used for?", - "m003-a-label": "To shield its users from volatile changes in price", + "m003-a-label": "To protect its users from volatile changes in price", "m003-a-explanation": "Not quite. This answer is partially correct, but it's only one of the many things stablecoins can be used for.", "m003-b-label": "To buy things on the internet anywhere in the world", "m003-b-explanation": "Not quite. This answer is partially correct, but it's only one of the many things stablecoins can be used for.", @@ -555,7 +555,7 @@ "m004-a-label": "It is a token that is tied to an asset in the real world", "m004-a-explanation": "This is incorrect. While many stablecoins are pegged to real-world assets, this characteristic is not exclusive to stablecoins (e.g., ETH-collateralized tokens).", "m004-b-label": "It is a cryptocurrency token specifically designed to keep its value steady", - "m004-b-explanation": "Correct! Stablecoins are designed to keep their value relatively stable, typically pegged to assets like currencies (e.g., 1 USDC = 1 US dollar), but not all stablecoins follow this model (e.g., RAI).", + "m004-b-explanation": "Correct! Stablecoins are designed to keep their value relatively stable, typically pegged to assets like currencies (e.g., 1 USDC = 1 US dollar), but not all stablecoins follow this model (e.g., RAI or HAI).", "m004-c-label": "It is capable of being sent over the internet", "m004-c-explanation": "This is incorrect. While this is a capability, it is not unique to stablecoins.", "m004-d-label": "It can be used on the Ethereum network.", @@ -564,9 +564,9 @@ "m005-a-label": "Swap them with other tokens", "m005-a-explanation": "Incorrect, this is a way to get stablecoins. One of the most common ways people acquire stablecoins is by swapping their existing cryptocurrencies for stablecoins.", "m005-b-label": "Borrow them", - "m005-b-explanation": "Incorrect, this is a way to get stablecoins. You can borrow some stablecoins by using your existing cryptocurrencies, such as Ether, as collateral. You will need to pay the borrowed stablecoins back at some point.", + "m005-b-explanation": "Incorrect, this is a way to get stablecoins. You can borrow some stablecoins by using your existing cryptocurrencies, such as ether, as collateral. You will need to pay the borrowed stablecoins back to reclaim your locked collateral.", "m005-c-label": "Buy them from an exchange", - "m005-c-explanation": "Incorrect, this is a way to get stablecoins. Many exchanges and wallets let you buy stablecoins directly, though geographical restrictions may apply.", + "m005-c-explanation": "Incorrect, this is a way to get stablecoins. Many exchanges and wallets let you buy stablecoins directly. Geographical restrictions may apply for centralized exchanges.", "m005-d-label": "Mine them", - "m005-d-explanation": "Correct! Unlike Bitcoin, you are unable to mine stablecoins." + "m005-d-explanation": "Correct! Unlike bitcoin, you are unable to mine stablecoins." } From 667fcd4755928b3ba6fd2884d3f70165c66d1c88 Mon Sep 17 00:00:00 2001 From: Paul Wackerow <54227730+wackerow@users.noreply.github.com> Date: Tue, 8 Oct 2024 21:16:46 +0000 Subject: [PATCH 09/12] chore: update listing --- src/intl/en/learn-quizzes.json | 2 +- src/pages/stablecoins.tsx | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/intl/en/learn-quizzes.json b/src/intl/en/learn-quizzes.json index 36b730ccc13..9c912232df0 100644 --- a/src/intl/en/learn-quizzes.json +++ b/src/intl/en/learn-quizzes.json @@ -555,7 +555,7 @@ "m004-a-label": "It is a token that is tied to an asset in the real world", "m004-a-explanation": "This is incorrect. While many stablecoins are pegged to real-world assets, this characteristic is not exclusive to stablecoins (e.g., ETH-collateralized tokens).", "m004-b-label": "It is a cryptocurrency token specifically designed to keep its value steady", - "m004-b-explanation": "Correct! Stablecoins are designed to keep their value relatively stable, typically pegged to assets like currencies (e.g., 1 USDC = 1 US dollar), but not all stablecoins follow this model (e.g., RAI or HAI).", + "m004-b-explanation": "Correct! Stablecoins are designed to keep their value relatively stable, typically pegged to assets like currencies (e.g., 1 USDC = 1 US dollar), but not all stablecoins follow this model (e.g., RAI).", "m004-c-label": "It is capable of being sent over the internet", "m004-c-explanation": "This is incorrect. While this is a capability, it is not unique to stablecoins.", "m004-d-label": "It can be used on the Ethereum network.", diff --git a/src/pages/stablecoins.tsx b/src/pages/stablecoins.tsx index 0e7c3a3ac54..cff42d0b487 100644 --- a/src/pages/stablecoins.tsx +++ b/src/pages/stablecoins.tsx @@ -283,7 +283,10 @@ const StablecoinsPage = ({ markets, marketsHasError }) => { t("page-stablecoins-crypto-backed-con-1"), t("page-stablecoins-crypto-backed-con-2"), ], - links: [{ text: "Dai", url: "https://makerdao.com/en/" }], + links: [ + { text: "DAI", url: "https://makerdao.com/en/" }, + { text: "RAI", url: "https://reflexer.finance/" }, + ], }, { title: t("page-stablecoins-precious-metals"), From a66c73dfc4bdb2be599701d23a4954caf77fe8c6 Mon Sep 17 00:00:00 2001 From: Paul Wackerow <54227730+wackerow@users.noreply.github.com> Date: Wed, 9 Oct 2024 07:50:35 +0000 Subject: [PATCH 10/12] fix: casing --- src/intl/en/learn-quizzes.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intl/en/learn-quizzes.json b/src/intl/en/learn-quizzes.json index 9c912232df0..cb534e9412f 100644 --- a/src/intl/en/learn-quizzes.json +++ b/src/intl/en/learn-quizzes.json @@ -524,7 +524,7 @@ "l006-a-label": "True", "l006-a-explanation": "Simply running client software does not earn you rewards. To earn rewards, you must also be staking.", "l006-b-label": "False", - "m001-prompt": "What are Stablecoins?", + "m001-prompt": "What are stablecoins?", "m001-a-label": "Cryptocurrencies with low price volatility, their value is steady and similar to traditional currencies", "m001-a-explanation": "Correct! Stablecoins are designed to address the volatility issue common in many cryptocurrencies.", "m001-b-label": "Digital representations of gold", From 7e558b583273e6dce08269a18fefa5a9bf851cbb Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Wed, 9 Oct 2024 07:54:44 +0000 Subject: [PATCH 11/12] docs: update README.md [skip ci] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e451b3c9eac..d66c8b05648 100644 --- a/README.md +++ b/README.md @@ -1875,7 +1875,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d abonnaudet-ledger
abonnaudet-ledger

🐛 Jacob Sharples
Jacob Sharples

🖋 omahs
omahs

🌍 🚧 - Shiva Sai
Shiva Sai

🐛 🚧 + Shiva Sai
Shiva Sai

🐛 🚧 🖋 Saurabh Burade
Saurabh Burade

💻 From 52030fc607b5f1142049c4e22f1a677cfa9fc4e6 Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Wed, 9 Oct 2024 07:54:45 +0000 Subject: [PATCH 12/12] docs: update .all-contributorsrc [skip ci] --- .all-contributorsrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index 3627c82a31f..542e8d1a2b1 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -12261,7 +12261,8 @@ "profile": "https://github.com/Shiva-Sai-ssb", "contributions": [ "bug", - "maintenance" + "maintenance", + "content" ] }, {