Skip to content
This repository has been archived by the owner on Jan 2, 2024. It is now read-only.

This project lets you take the output of HashLips and mint it on Algorand as ARC-69 Algorand Standard Assets.

License

Notifications You must be signed in to change notification settings

MakerXStudio/algorand-hashlips-minter

Repository files navigation

Algorand HashLips NFT Minter

This project lets you take the output of HashLips and mint it on Algorand as ARC-69 Algorand Standard Assets, including uploading asset images to IPFS using Web3.Storage.

The script in this project will mint against a local emulator by default, but the config can change to point to TestNet and MainNet. Once you mint against MainNet you can check out your collection at NFT Explorer.

Note: In order to mint, you need to hold a minimum balance in the minting account of 0.1 ALGO per each asset minted (+ 0.1 ALGOs as the minium balance to have an active account) and each minting transaction will cost 0.001 ALGOs. So if you have 1000 NFTs your minting account will need to have at least 110.100 ALGOs.

Developer setup

First time setup

(Optional) If you want to mint against a local Algorand emulator (recommended)

We recommend you first execute this against a locally running Algorand sandbox node so that you can check the minting works OK before running against MainNet.

  1. Ensure you have Docker Engine and/or Docker Desktop installed

  2. Make sure that you have Powershell Core (7+) installed

    • Windows: choco install pwsh -y
    • MacOS: brew install --cask powershell
  3. Clone the repository

  4. Run reset.ps1 if you want to reset your environment or setup.ps1 to setup environment for the first time

    • If you want to re-start the environment after say restarting your machine or pulling latest changes you can run update.ps1

Regardless of whether minting against local Algorand emulator or not

  1. Run your HashLips generator and copy the output from the build folder into the hashlips-output folder in this repository - that should result in a hashlips-output/images and hashlips-output/json folder

  2. Open in VS Code (or your IDE of choice, although you'll get a better developer experience in VS Code since there are run and debug configurations and settings specified)

  3. Install recommended extensions

  4. Inside minter:

    • Copy .env.sample to .env and fill in the relevant variables, including Web3.Storage token and, depending on whether you want to test against either the local sandbox or Algorand TestNet, the Algorand node config (e.g. via AlgoNode or via PureStake, for which you would need to create an account)
    • Run npm install
  5. Add the metadata for your particular NFT project in minter/index.ts (look for NFT metadata - edit this)

  6. (If using VS Code) Choose the thing you want to run/debug from the "Run and Debug" pane (ctrl+shift+D on Windows) and hit F5 and it will launch it with breakpoint debugging

  7. OR (If not using VS Code) run npm run dev in the minter folder

Ongoing development

There are a number of commandline scripts that you can use to ease local development:

  • reset.ps1 - Reset and recreates your environment including docker containers, npm installs, python installs, etc.
  • status.ps - Outputs the current status of the dependent docker container services (Reach Algorand sandbox and localstack)
  • update.ps1 - Ensures the docker containers and npm installs are up to date, useful to run this after pull code changes or computer restart etc.
  • goal.ps1 - This is a proxy to running the goal Algorand Command Line Interface (CLI) within the algod container

Components

This repository contains the following components:

  • Learning

    • Learning paths - We have developed a number of learning paths to help people quickly get up to speed with the various concepts to understand and develop for this solution.
  • Local development

    • Algorand Sandbox - A locally running instance of Algorand Sandbox in dev configuration via our customised Docker builds - this is automatically started via the setup.ps1 (which in turn calls docker-compose up -d)

      • You can interrogate the sandbox via the ./goal.ps1 and ./status.ps1 scripts in the project root once it's running

      • Useful commands:

        # Check current status
        ./status.ps1
        # See commandline options for goal (Algorand CLI): https://developer.algorand.org/docs/clis/goal/goal/
        ./goal.ps1
        # See global state of app with index 1
        ./goal.ps1 app read --app-id 1 --global
        # See high level info of app with index 1
        ./goal.ps1 app info --app-id 1
        # Dump out the balance of ALGOs and assets for account with address {addr}
        ./goal.ps1 account dump -a {addr}
        
    • VS Code - Extension recommendations, launch and task configuration and settings to set up a productive VS Code environment

  • App components

    • NFT Minter - TypeScript / Node.js app responsible for minting

About

This project lets you take the output of HashLips and mint it on Algorand as ARC-69 Algorand Standard Assets.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published