Skip to content

Commit 1e88968

Browse files
committed
Merge remote-tracking branch 'upstream/dev' into migrate/dataproductcard
2 parents 2a96348 + 75836bf commit 1e88968

File tree

9 files changed

+318
-125
lines changed

9 files changed

+318
-125
lines changed

.all-contributorsrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12261,7 +12261,8 @@
1226112261
"profile": "https://github.com/Shiva-Sai-ssb",
1226212262
"contributions": [
1226312263
"bug",
12264-
"maintenance"
12264+
"maintenance",
12265+
"content"
1226512266
]
1226612267
},
1226712268
{

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1875,7 +1875,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
18751875
<td align="center" valign="top" width="14.28%"><a href="https://github.com/abonnaudet-ledger"><img src="https://avatars.githubusercontent.com/u/71646516?v=4?s=100" width="100px;" alt="abonnaudet-ledger"/><br /><sub><b>abonnaudet-ledger</b></sub></a><br /><a href="https://github.com/ethereum/ethereum-org-website/issues?q=author%3Aabonnaudet-ledger" title="Bug reports">🐛</a></td>
18761876
<td align="center" valign="top" width="14.28%"><a href="https://github.com/JacobSharples"><img src="https://avatars.githubusercontent.com/u/45126111?v=4?s=100" width="100px;" alt="Jacob Sharples"/><br /><sub><b>Jacob Sharples</b></sub></a><br /><a href="#content-JacobSharples" title="Content">🖋</a></td>
18771877
<td align="center" valign="top" width="14.28%"><a href="https://github.com/omahs"><img src="https://avatars.githubusercontent.com/u/73983677?v=4?s=100" width="100px;" alt="omahs"/><br /><sub><b>omahs</b></sub></a><br /><a href="#translation-omahs" title="Translation">🌍</a> <a href="#maintenance-omahs" title="Maintenance">🚧</a></td>
1878-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Shiva-Sai-ssb"><img src="https://avatars.githubusercontent.com/u/112751524?v=4?s=100" width="100px;" alt="Shiva Sai"/><br /><sub><b>Shiva Sai</b></sub></a><br /><a href="https://github.com/ethereum/ethereum-org-website/issues?q=author%3AShiva-Sai-ssb" title="Bug reports">🐛</a> <a href="#maintenance-Shiva-Sai-ssb" title="Maintenance">🚧</a></td>
1878+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Shiva-Sai-ssb"><img src="https://avatars.githubusercontent.com/u/112751524?v=4?s=100" width="100px;" alt="Shiva Sai"/><br /><sub><b>Shiva Sai</b></sub></a><br /><a href="https://github.com/ethereum/ethereum-org-website/issues?q=author%3AShiva-Sai-ssb" title="Bug reports">🐛</a> <a href="#maintenance-Shiva-Sai-ssb" title="Maintenance">🚧</a> <a href="#content-Shiva-Sai-ssb" title="Content">🖋</a></td>
18791879
<td align="center" valign="top" width="14.28%"><a href="https://bsaurabh.xyz/"><img src="https://avatars.githubusercontent.com/u/39492927?v=4?s=100" width="100px;" alt="Saurabh Burade"/><br /><sub><b>Saurabh Burade</b></sub></a><br /><a href="https://github.com/ethereum/ethereum-org-website/commits?author=saurabhburade" title="Code">💻</a></td>
18801880
</tr>
18811881
<tr>

src/components/Quiz/stories/QuizzesStats.stories.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ const meta = {
2020
wallets: [false, 0],
2121
web3: [false, 0],
2222
daos: [false, 0],
23+
stablecoins: [false, 0],
2324
},
2425
totalCorrectAnswers: 0,
2526
},

src/data/quizzes/index.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ const quizzes = {
5050
title: "run-a-node",
5151
questions: ["l001", "l002", "l003", "l004", "l005", "l006"],
5252
},
53+
stablecoins: {
54+
title: "stablecoins",
55+
questions: ["m001", "m002", "m003", "m004", "m005"],
56+
},
5357
} satisfies RawQuizzes
5458

5559
export const ethereumBasicsQuizzes: QuizzesSection[] = [
@@ -83,6 +87,11 @@ export const usingEthereumQuizzes: QuizzesSection[] = [
8387
{
8488
id: "nfts",
8589
level: "beginner",
90+
next: "stablecoins",
91+
},
92+
{
93+
id: "stablecoins",
94+
level: "beginner",
8695
next: "layer-2",
8796
},
8897
{

src/data/quizzes/questionBank.ts

Lines changed: 131 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1479,6 +1479,137 @@ const questionBank = {
14791479
],
14801480
correctAnswerId: "l006-b",
14811481
},
1482+
// Stablecoins
1483+
m001: {
1484+
prompt: "m001-prompt",
1485+
answers: [
1486+
{
1487+
id: "m001-a",
1488+
label: "m001-a-label",
1489+
explanation: "m001-a-explanation",
1490+
},
1491+
{
1492+
id: "m001-b",
1493+
label: "m001-b-label",
1494+
explanation: "m001-b-explanation",
1495+
},
1496+
{
1497+
id: "m001-c",
1498+
label: "m001-c-label",
1499+
explanation: "m001-c-explanation",
1500+
},
1501+
{
1502+
id: "m001-d",
1503+
label: "m001-d-label",
1504+
explanation: "m001-d-explanation",
1505+
},
1506+
],
1507+
correctAnswerId: "m001-a",
1508+
},
1509+
m002: {
1510+
prompt: "m002-prompt",
1511+
answers: [
1512+
{
1513+
id: "m002-a",
1514+
label: "m002-a-label",
1515+
explanation: "m002-a-explanation",
1516+
},
1517+
{
1518+
id: "m002-b",
1519+
label: "m002-b-label",
1520+
explanation: "m002-b-explanation",
1521+
},
1522+
{
1523+
id: "m002-c",
1524+
label: "m002-c-label",
1525+
explanation: "m002-c-explanation",
1526+
},
1527+
{
1528+
id: "m002-d",
1529+
label: "m002-d-label",
1530+
explanation: "m002-d-explanation",
1531+
},
1532+
],
1533+
correctAnswerId: "m002-c",
1534+
},
1535+
m003: {
1536+
prompt: "m003-prompt",
1537+
answers: [
1538+
{
1539+
id: "m003-a",
1540+
label: "m003-a-label",
1541+
explanation: "m003-a-explanation",
1542+
},
1543+
{
1544+
id: "m003-b",
1545+
label: "m003-b-label",
1546+
explanation: "m003-b-explanation",
1547+
},
1548+
{
1549+
id: "m003-c",
1550+
label: "m003-c-label",
1551+
explanation: "m003-c-explanation",
1552+
},
1553+
{
1554+
id: "m003-d",
1555+
label: "m003-d-label",
1556+
explanation: "m003-d-explanation",
1557+
},
1558+
],
1559+
correctAnswerId: "m003-d",
1560+
},
1561+
m004: {
1562+
prompt: "m004-prompt",
1563+
answers: [
1564+
{
1565+
id: "m004-a",
1566+
label: "m004-a-label",
1567+
explanation: "m004-a-explanation",
1568+
},
1569+
{
1570+
id: "m004-b",
1571+
label: "m004-b-label",
1572+
explanation: "m004-b-explanation",
1573+
},
1574+
{
1575+
id: "m004-c",
1576+
label: "m004-c-label",
1577+
explanation: "m004-c-explanation",
1578+
},
1579+
{
1580+
id: "m004-d",
1581+
label: "m004-d-label",
1582+
explanation: "m004-d-explanation",
1583+
},
1584+
],
1585+
correctAnswerId: "m004-b",
1586+
},
1587+
m005: {
1588+
prompt: "m005-prompt",
1589+
answers: [
1590+
{
1591+
id: "m005-a",
1592+
label: "m005-a-label",
1593+
explanation: "m005-a-explanation",
1594+
},
1595+
{
1596+
id: "m005-b",
1597+
label: "m005-b-label",
1598+
explanation: "m005-b-explanation",
1599+
},
1600+
{
1601+
id: "m005-c",
1602+
label: "m005-c-label",
1603+
explanation: "m005-c-explanation",
1604+
},
1605+
{
1606+
id: "m005-d",
1607+
label: "m005-d-label",
1608+
explanation: "m005-d-explanation",
1609+
},
1610+
],
1611+
correctAnswerId: "m005-d",
1612+
},
14821613
} as const satisfies QuestionBank
14831614

14841615
export default questionBank

0 commit comments

Comments
 (0)