Build an End-to-End Dapp on Aptos
A common way to learn a new framework or programming language is to build a simple todo list. In this tutorial, we will learn how to build an end-to-end todo list dapp, starting from the smart contract side through the front-end side and finally use of a wallet to interact with the two.
See the completed code in the my_first_dapp.
Chapters
After meeting the prerequisites and getting set up as described below, you will follow this tutorial in this order:
- Create a smart contract
- Set up React app
- Add Wallet support
- Fetch Data from Chain
- Submit data to chain
- Handle Tasks
Prerequisites
You must have:
Although we will explain some React decisions, we are not going to deep dive into how React works; so we assume you have some previous experience with React.
Setup
In this section, we will create a my-first-dapp
directory to hold our project files, both client-side code (React based)and the Move code (our smart contract).
- Open a terminal and navigate to the desired directory for the project (for example, the
Desktop
directory). - Create a new directory called
my-first-dapp
, for example:
mkdir my-first-dapp
- Navigate into that directory:
cd my-first-dapp
Now let's create a smart contract.