Move Monsters is an interactive platform for learning Move and Sui programming through hands-on lessons and exercises. It leverages the Sui blockchain to mint non-transferable NFTs as verifiable credentials for lesson completion, providing an engaging and rewarding educational experience.
Move Monsters offers an engaging way to understand and apply the concepts of the Move programming language and the Sui blockchain. Through interactive lessons written in Markdown, users can learn by doing and earn verifiable NFTs upon successful completion of each lesson.
- Interactive Learning: Hands-on lessons with real-time feedback.
- NFT Credentials: Mint non-transferable NFTs to verify proficiency.
- Gamified Experience: Motivating learning process with rewards.
- Comprehensive Curriculum: Covers basics to advanced topics in Move and Sui.
- Clone the repository:
git clone https://github.com/pedrocruzio/move-monsters.git cd move-monsters
- Install dependencies:
yarn install
Start the development server:
yarn dev
Navigate to http://localhost:3000 in your browser to see the app in action.
Lessons are written in Markdown and stored in the lessons directory. Each lesson follows this format:
---
title: "Lesson Title"
description: "Brief description of the lesson."
initial_code: |
// Starter code here
correct_code: |
// Correct solution code here
expected_output: "Expected output"
---
# Lesson Title
Content of the lesson goes here.
## Code Exercise
Instructions for the exercise.
// Exercise code block
To run the Sui part of the project, follow these steps:
-
Navigate to the
move_monsters_module
directory:cd move_monsters_module
-
Build the Move modules:
sui move build
-
Publish the Move modules to the Sui testnet:
sui client publish --gas-budget 1000000
For more details on using the Sui CLI, refer to the Sui documentation.
Contributions are welcome! Please read our contributing guidelines for more information.
This project is licensed under the MIT License. See the LICENSE file for details.
- Sui Foundation
- Mysten Labs