An NFT Collection Manager for the EOS/AtomicAssets ecosystem built by FACINGS as per our ENF Grant Proposal.
This project is meant to both work as a stand-alone NFT publishing platform, as well as a launchpad for NFT developers on EOS.
The core feature set is very simple:
- Login and view resource usage
- View/explore collections (schemas, templates, and NFTs)
- Create and edit collections
- Mint and transfer NFTs
Important principles:
- Keep the core simple and secure with minimal dependencies
- Allow publishers, developers, and businesses to build faster
- Grow open-source community around core EOS/AtomicAssets needs
- Getting Started (this README document) - Project overview and "Getting Started" guide for devs.
- User Guide - For users. Basic tutorial explaining how to create a collection and mint NFTs.
- Plugin System - For devs, describing how the plugin system works.
- Contributing - For devs, describing how to contribute to this project.
- Testing Guide - For reviewers/testers, full run-through of functionality.
- Data Import Plugin - For users, guide to using the CSV import plugin.
- Data Types - An overview of AtomicAssets data types.
- Public AtomicAsset API (AGPLv3; use any public endpoint)
- Public Node API endpoint (MIT; use any public EOS or WAX endpoint)
- Public IPFS endpoint (MIT; e.g. https://ipfs.ledgerwise.io/ipfs)
Ensure all project dependencies are installed:
yarn
The following command will prep the environment, and, using the API endpoints
specified in .env
, start the application server in development
mode with features like hot-code reloading and dev-friendly error reporting.
yarn dev
Now you may open http://localhost:3000 to access the app.
Install Docker and execute:
docker-compose up --build --force-recreate
After build, open http://localhost:3000 to access the app.
Next.js allows you to set defaults in .env
(all environments),
.env.development
(development environment), and
.env.production
(production environment).
Variables set in .env.local
always override any defaults set.
If you do not wish to publish on EOS mainnet, you may select the "Jungle4 (EOS Testnet)" chain in the upper left-hand corner.
Currently this app supports both EOS Jungle4 Testnet and WAX Testnet. (Click either link to create a free testnet account.)
GPLv3