Skip to content

Commit

Permalink
fix(devx) implement review suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
Ginowine committed Oct 25, 2024
1 parent b26870d commit e1c5283
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,6 @@
{ "answerText": "It supports unlimited minting without restrictions.", "isCorrect": false },
{ "answerText": "It disables the TreasuryCap object.", "isCorrect": false }
]
},
{
"questionText": "What happens when a Coin object is transferred in IOTA Move?",
"answerOptions": [
{ "answerText": "The Coin object must be split if it's a partial amount.", "isCorrect": true },
{ "answerText": "The entire Coin is burned and a new one is minted.", "isCorrect": false },
{ "answerText": "The Coin is moved to the system's TreasuryCap.", "isCorrect": false },
{ "answerText": "A separate smart contract records the balance.", "isCorrect": false }
]
}
]
}
Expand Down
24 changes: 3 additions & 21 deletions docs/site/static/json/developer/evm-to-move/tooling-apis.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,20 @@
{
"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": "IOTA Client 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?",
"questionText": "Which of the following is a wallet commonly used for IOTA Move-based dApps?",
"answerOptions": [
{ "answerText": "Safe", "isCorrect": false },
{ "answerText": "WalletConnect", "isCorrect": false },
{ "answerText": "Metamask", "isCorrect": true },
{ "answerText": "IOTA Wallet", "isCorrect": true },
{ "answerText": "Gnosis", "isCorrect": false }
]
}
Expand Down

0 comments on commit e1c5283

Please sign in to comment.