This is a basic NFT minter inspired by the DIP 721 standard (implementation not guarantee, consider this example as an educational ressource. For a production project with DIP721, please take a look at the official DIP721 repo).
Before proceeding it's good to get acquainted with:
- Quick Start
- SDK Developer Tools
- Motoko Programming Language Guide
- Motoko Language Quick Reference
- JavaScript API Reference
If you want to test your project locally, you can use the following commands:
Select a folder in your directory and clone the project
mkdir motoko
cd motoko
git clone https://github.com/hboshnak/togetherness_nft
cd togetherness_nft
It's assumed that you're fullfilled the prerequisites ( as dfx for e.g.) Just in case, start with a stop. It'll not hurt
dfx stop
Starts a clean local replica
dfx start --clean
There are some issues due to the different dfx versions. I solve them like that
export NODE_OPTIONS=--openssl-legacy-provider
After that we need to install the npm modules
npm i
Now we're goot to go deploy the canisters locally, be creative with the names. This deploys your canisters to the local replica and generates your candid interface
dfx deploy --argument '("somint","SMNT")'
Now we can start also the npm services
npm run start
npm start
Once the job completes, your application will be available at http://localhost:8000?canisterId={asset_canister_id}
.
Here is where your replica lives.
dfx deploy --argument '("somint","SMNT")'
is needed to rebuild and see the changes you made Additionally, if you are making frontend changes, you can start a development server with
npm start
Which will start a server at http://localhost:8080
, proxying API requests to the replica at port 8000.
If changes are satisfying just redeploy the dfx
#WEN MAINNET?
If you want to go live do the following steps Again just in case... upgrade your wallet
dfx wallet --network ic upgrade
dfx canister --network ic --wallet "$(dfx identity --network ic get-wallet)" update-settings --all --add-controller "$(dfx identity get-principal)"
Short pray and... we go live over ICP
dfx deploy --network ic --argument '("ICFoxy","ICFX")'
If you are hosting frontend code somewhere without using DFX, you may need to make one of the following adjustments to ensure your project does not fetch the root key in production:
- set
NODE_ENV
toproduction
if you are using Webpack - use your own preferred method to replace
process.env.NODE_ENV
in the autogenerated declarations - Write your own
createActor
constructor