-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(devx) create quizzes for tooling apis page
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
docs/site/static/json/developer/evm-to-move/tooling-apis.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 } | ||
] | ||
} | ||
] | ||
} | ||
|