From ff72fd5c5c68ccfd28a7fd24bbf6e848002961b2 Mon Sep 17 00:00:00 2001 From: Tobias <8368497+toschdev@users.noreply.github.com> Date: Sun, 12 Nov 2023 08:33:35 +0100 Subject: [PATCH] docs: Improve the Introduction chapter (#3736) * Improve the Introduction chapter * Update docs/docs/02-guide/00-introduction.md Co-authored-by: Danny * Update docs/docs/02-guide/00-introduction.md Co-authored-by: Danny * Add the tokenfactory tutorial --------- Co-authored-by: Danny Co-authored-by: Danilo Pantani --- docs/docs/02-guide/00-introduction.md | 61 ++++++++++++++------------- 1 file changed, 31 insertions(+), 30 deletions(-) diff --git a/docs/docs/02-guide/00-introduction.md b/docs/docs/02-guide/00-introduction.md index 1af3f532f5..398acb58fd 100644 --- a/docs/docs/02-guide/00-introduction.md +++ b/docs/docs/02-guide/00-introduction.md @@ -4,33 +4,34 @@ title: Introduction slug: /guide --- -# Introduction - -Developer tutorials provide step-by-step instructions to help you build blockchain developer skills. - -By following these developer tutorials you will learn how to: - -* Install Ignite CLI on your local machine -* Create a new blockchain and start a node locally for development -* Make your blockchain say "Hello, World!" - * Scaffold a Cosmos SDK query - * Modify a keeper method to return a static string - * Use the blockchain CLI to make a query -* Write and read blog posts to your chain in the Blog tutorial - * Scaffold a Cosmos SDK message - * Define new types in protocol buffer files - * Write keeper methods to write data to the store - * Read data from the store and return it as a result a query - * Use the blockchain CLI to broadcast transactions -* Build a blockchain for buying and selling names in the Nameservice tutorial - * Scaffold CRUD logic with `map` - * Use other module methods in your custom module - * Send tokens between addresses -* Build a guessing game with rewards - * Use an escrow account to store tokens -* Use the Inter-Blockchain Communication (IBC) protocol - * Scaffold an IBC-enabled module - * Send and receive IBC packets - * Configure and run a built-in IBC relayer -* Build a decentralized order-book token exchange - * Build an advanced IBC-enabled module +# Introduction to Ignite's Developer Tutorials + +Welcome to the Ignite Developer Tutorials, your gateway to mastering blockchain development. These comprehensive tutorials are designed for learners at all levels, from beginners to seasoned developers, offering both foundational knowledge and hands-on experience. + +## What You Will Learn + +- **Getting Started with Ignite CLI**: Install the Ignite CLI and set up your development environment. This foundational step is necessary for all the tutorials that follow. + +- **Create and Run Your First Blockchain**: Learn to create and run your own blockchain, understanding how to start and manage a node locally for development purposes. + +- **Hello World Tutorial**: Engage in the excitement of blockchain development by making your blockchain respond with "Hello, World!" This includes learning to scaffold a Cosmos SDK query and modify keeper methods. + +- **Blog Tutorial**: Step into decentralized applications (dApps) with the ability to write and read blog posts on your blockchain. This tutorial covers everything from defining new types in protocol buffer files to writing and reading data from the store. + +- **DeFi Loan Tutorial**: Dive into Decentralized Finance (DeFi) by building a blockchain for managing loans. Gain insights into CRUD logic, module method integration, and token transaction management. + +**Token Factory Tutorial**: Master the creation and management of digital assets on your blockchain by building a token factory module, learning module development, CRUD operations without delete functionality, and native denomination integration. + +- **Inter-blockchain Communication (IBC) Basics**: Explore the interconnected world of blockchains with the IBC protocol. Learn how to scaffold an IBC-enabled module, manage IBC packets, and configure a built-in IBC relayer. + +- **Interchange Module**: Advance your IBC knowledge by building a module for decentralized token exchanges and order books. + +- **Debugging a Blockchain**: Develop essential skills in debugging to maintain efficient and effective blockchain development. + +- **Running in a Docker Container**: Learn how to use Docker to containerize your blockchain environment, ensuring consistency and portability across development stages. + +- **Chain Simulation**: Understand the importance and method of simulating blockchain environments for testing and validating functionality under various scenarios. + +Each tutorial builds upon the previous, enhancing your understanding and skills progressively. By completing these tutorials, you will gain a robust understanding of blockchain principles, the Cosmos SDK, and practical experience in developing and managing blockchain projects. + +Embark on your journey to become a proficient blockchain developer with Ignite's Developer Tutorials!