From 2440f6177af0b0c282e2c17cbbe30c32e72b106d Mon Sep 17 00:00:00 2001 From: toschdev <8368497+toschdev@users.noreply.github.com> Date: Tue, 7 Nov 2023 19:19:34 +0100 Subject: [PATCH 1/4] Improve the Introduction chapter --- docs/docs/02-guide/00-introduction.md | 59 +++++++++++++-------------- 1 file changed, 29 insertions(+), 30 deletions(-) diff --git a/docs/docs/02-guide/00-introduction.md b/docs/docs/02-guide/00-introduction.md index 1af3f532f5..c875997246 100644 --- a/docs/docs/02-guide/00-introduction.md +++ b/docs/docs/02-guide/00-introduction.md @@ -4,33 +4,32 @@ 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 crucial for all the tutorials that follow. + +- **Creating and Running 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. + +- **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! From c0d358869196ef40ec339c2a6571cc3f6213026b Mon Sep 17 00:00:00 2001 From: Tobias <8368497+toschdev@users.noreply.github.com> Date: Wed, 8 Nov 2023 16:32:11 +0100 Subject: [PATCH 2/4] Update docs/docs/02-guide/00-introduction.md Co-authored-by: Danny --- docs/docs/02-guide/00-introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/02-guide/00-introduction.md b/docs/docs/02-guide/00-introduction.md index c875997246..432a79ab97 100644 --- a/docs/docs/02-guide/00-introduction.md +++ b/docs/docs/02-guide/00-introduction.md @@ -10,7 +10,7 @@ Welcome to the Ignite Developer Tutorials, your gateway to mastering blockchain ## What You Will Learn -- **Getting Started with Ignite CLI**: Install the Ignite CLI and set up your development environment. This foundational step is crucial for all the tutorials that follow. +- **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. - **Creating and Running Your First Blockchain**: Learn to create and run your own blockchain, understanding how to start and manage a node locally for development purposes. From 2564b891b70a21f8a0509df903e5a09f6e56f520 Mon Sep 17 00:00:00 2001 From: Tobias <8368497+toschdev@users.noreply.github.com> Date: Wed, 8 Nov 2023 16:32:23 +0100 Subject: [PATCH 3/4] Update docs/docs/02-guide/00-introduction.md Co-authored-by: Danny --- docs/docs/02-guide/00-introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/02-guide/00-introduction.md b/docs/docs/02-guide/00-introduction.md index 432a79ab97..81e92a17d4 100644 --- a/docs/docs/02-guide/00-introduction.md +++ b/docs/docs/02-guide/00-introduction.md @@ -12,7 +12,7 @@ Welcome to the Ignite Developer Tutorials, your gateway to mastering blockchain - **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. -- **Creating and Running Your First Blockchain**: Learn to create and run your own blockchain, understanding how to start and manage a node locally for development purposes. +- **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. From af5646a2114912b0b200accb88dfdead8a97fcd0 Mon Sep 17 00:00:00 2001 From: toschdev <8368497+toschdev@users.noreply.github.com> Date: Sat, 11 Nov 2023 21:17:10 +0100 Subject: [PATCH 4/4] Add the tokenfactory tutorial --- docs/docs/02-guide/00-introduction.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/docs/02-guide/00-introduction.md b/docs/docs/02-guide/00-introduction.md index 81e92a17d4..398acb58fd 100644 --- a/docs/docs/02-guide/00-introduction.md +++ b/docs/docs/02-guide/00-introduction.md @@ -20,6 +20,8 @@ Welcome to the Ignite Developer Tutorials, your gateway to mastering blockchain - **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.