From e315504ed91af5e5656eb761d71ac3575a0ee709 Mon Sep 17 00:00:00 2001 From: Gino Date: Thu, 17 Oct 2024 14:35:28 +0100 Subject: [PATCH] feat(devx) create quizzes for tooling apis page --- .../developer/evm-to-move/tooling-apis.json | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 docs/site/static/json/developer/evm-to-move/tooling-apis.json diff --git a/docs/site/static/json/developer/evm-to-move/tooling-apis.json b/docs/site/static/json/developer/evm-to-move/tooling-apis.json new file mode 100644 index 00000000000..2cd9cdc14c4 --- /dev/null +++ b/docs/site/static/json/developer/evm-to-move/tooling-apis.json @@ -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 } + ] + } + ] + } + \ No newline at end of file