-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3394 from iotaledger/devx/add-quizzes-to-evm-to-m…
…ove-section feat (devx) - Add Quizzes to Developer > EVM to Move Section
- Loading branch information
Showing
7 changed files
with
109 additions
and
5 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
32 changes: 32 additions & 0 deletions
32
docs/site/static/json/developer/evm-to-move/creating-nft.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,32 @@ | ||
{ | ||
"questions": [ | ||
{ | ||
"questionText": "What is one key advantage of NFTs in IOTA Move compared to Solidity/EVM NFTs?", | ||
"answerOptions": [ | ||
{ "answerText": "Every object is an NFT by default.", "isCorrect": true }, | ||
{ "answerText": "NFTs can only be found if you have the smart contract address.", "isCorrect": false }, | ||
{ "answerText": "Token logic must be abstracted in external libraries.", "isCorrect": false }, | ||
{ "answerText": "Metadata is always hosted off-chain.", "isCorrect": false } | ||
] | ||
}, | ||
{ | ||
"questionText": "In the ERC-721 standard, what does the `tokenURI` typically point to?", | ||
"answerOptions": [ | ||
{ "answerText": "An on-chain metadata file.", "isCorrect": false }, | ||
{ "answerText": "A JSON file containing metadata.", "isCorrect": true }, | ||
{ "answerText": "The owner's wallet address.", "isCorrect": false }, | ||
{ "answerText": "The NFT's image data.", "isCorrect": false } | ||
] | ||
}, | ||
{ | ||
"questionText": "What is a disadvantage of using ERC-721 NFTs with off-chain metadata?", | ||
"answerOptions": [ | ||
{ "answerText": "Metadata cannot be accessed by other contracts.", "isCorrect": false }, | ||
{ "answerText": "There is no enforcement of standard NFT behavior.", "isCorrect": false }, | ||
{ "answerText": "If the off-chain data is lost, the metadata is also lost.", "isCorrect": true }, | ||
{ "answerText": "The NFTs cannot be transferred between owners.", "isCorrect": false } | ||
] | ||
} | ||
] | ||
} | ||
|
32 changes: 32 additions & 0 deletions
32
docs/site/static/json/developer/evm-to-move/creating-token.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,32 @@ | ||
{ | ||
"questions": [ | ||
{ | ||
"questionText": "What is a key difference between ERC-20 tokens in Solidity/EVM and tokens in IOTA Move?", | ||
"answerOptions": [ | ||
{ "answerText": "ERC-20 tokens are stored as owned objects in IOTA Move.", "isCorrect": false }, | ||
{ "answerText": "Both native tokens and custom tokens in IOTA Move are Coin objects.", "isCorrect": true }, | ||
{ "answerText": "Solidity uses TreasuryCap and Metadata objects for token management.", "isCorrect": false }, | ||
{ "answerText": "IOTA Move tokens can only be created using the wIOTA standard.", "isCorrect": false } | ||
] | ||
}, | ||
{ | ||
"questionText": "What is the purpose of the TreasuryCap in IOTA Move's token management?", | ||
"answerOptions": [ | ||
{ "answerText": "It manages token ownership", "isCorrect": false }, | ||
{ "answerText": "It enforces token transfers", "isCorrect": false }, | ||
{ "answerText": "It allows minting and burning of tokens", "isCorrect": true }, | ||
{ "answerText": "It defines the token's metadata", "isCorrect": false } | ||
] | ||
}, | ||
{ | ||
"questionText": "What is the benefit of using the CoinManager in IOTA Move?", | ||
"answerOptions": [ | ||
{ "answerText": "It provides transparent and standardized token management.", "isCorrect": true }, | ||
{ "answerText": "It allows tokens to bypass standard Coin functionality.", "isCorrect": false }, | ||
{ "answerText": "It supports unlimited minting without restrictions.", "isCorrect": false }, | ||
{ "answerText": "It disables the TreasuryCap object.", "isCorrect": false } | ||
] | ||
} | ||
] | ||
} | ||
|
23 changes: 23 additions & 0 deletions
23
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,23 @@ | ||
{ | ||
"questions": [ | ||
{ | ||
"questionText": "Which tool in the IOTA Move ecosystem is similar to Hardhat for building, testing, and deploying smart contracts?", | ||
"answerOptions": [ | ||
{ "answerText": "IOTA Client CLI", "isCorrect": true }, | ||
{ "answerText": "Remix", "isCorrect": false }, | ||
{ "answerText": "ethers.js", "isCorrect": false }, | ||
{ "answerText": "Metamask", "isCorrect": false } | ||
] | ||
}, | ||
{ | ||
"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": "IOTA Wallet", "isCorrect": true }, | ||
{ "answerText": "Gnosis", "isCorrect": false } | ||
] | ||
} | ||
] | ||
} | ||
|