-
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 token 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/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,41 @@ | ||
{ | ||
"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 } | ||
] | ||
}, | ||
{ | ||
"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 } | ||
] | ||
} | ||
] | ||
} | ||
|