Skip to content

Commit

Permalink
feat(devx) create quizzes for tooling apis page
Browse files Browse the repository at this point in the history
  • Loading branch information
Ginowine committed Oct 25, 2024
1 parent d16a3ef commit e315504
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions docs/site/static/json/developer/evm-to-move/tooling-apis.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"questions": [
{
"questionText": "What is the most commonly used tool for EVM development?",
"answerOptions": [
{ "answerText": "Remix", "isCorrect": false },
{ "answerText": "Metamask", "isCorrect": false },
{ "answerText": "Hardhat", "isCorrect": true },
{ "answerText": "web3.js", "isCorrect": false }
]
},
{
"questionText": "Which tool in the IOTA Move ecosystem is similar to Hardhat for building, testing, and deploying smart contracts?",
"answerOptions": [
{ "answerText": "Move CLI", "isCorrect": true },
{ "answerText": "Remix", "isCorrect": false },
{ "answerText": "ethers.js", "isCorrect": false },
{ "answerText": "Metamask", "isCorrect": false }
]
},
{
"questionText": "Which API is most commonly used within the EVM ecosystem?",
"answerOptions": [
{ "answerText": "GraphQL", "isCorrect": false },
{ "answerText": "JSON-RPC", "isCorrect": true },
{ "answerText": "REST API", "isCorrect": false },
{ "answerText": "Move API", "isCorrect": false }
]
},
{
"questionText": "Which of the following is a wallet commonly used for EVM-based dApps?",
"answerOptions": [
{ "answerText": "Safe", "isCorrect": false },
{ "answerText": "WalletConnect", "isCorrect": false },
{ "answerText": "Metamask", "isCorrect": true },
{ "answerText": "Gnosis", "isCorrect": false }
]
}
]
}

0 comments on commit e315504

Please sign in to comment.