Anchor Todo List

Based on the Building A To Do List with Anchor lesson, this project shows how to mint your first NFT on the Solana blockchain using Anchor.

Table of Contents

Getting Started

To use this fork, you need to have yarn, Anchor and the Solana cli suite installed on your machine.

It is highly recommended that you start this project from scratch, following along with the tutorial.

To use the fork, follow the steps outlined below:

  1. Clone your forked repo.
git clone https://github.com/<YOUR-USERNAME>/anchor-todo-list
  1. Change directory into the root of your cloned repo and install missing node packages
yarn install

NOTE: You must use yarn to install the dependencies. If you use a different package manager, you will run into issues minting the NFT.

  1. Build your anchor project.
anchor build
  1. List the project deployment keys and copy the address to a clipboard
anchor keys list
  1. Update your Anchor.toml file, by using the address generated in the previous step.
[programs.devnet]
todo_list_app = "<ADD YOUR ADDRESS HERE>"
  1. Update your lib.rs file by adding the the address generated in step 4 to the declare_id!() macro
use anchor_lang::prelude::*;

declare_id!("<PLACE YOUR ADDRESS HERE>");

#[program]
pub mod todo_list_app {
    // snip

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Questions

Did you encounter a challenge following the tutorial or running the fork? Head over to our learning support channel on our Discord or alternatively, raise a ticket.

We are always happy to lend a helping hand

License

All files within this repository are licensed under the MIT License unless explicitly stated otherwise.

100% Open Source software.

© 2023 [Calyptus] - See LICENSE for details.