Skip to content

Latest commit

 

History

History
39 lines (20 loc) · 1.21 KB

README.md

File metadata and controls

39 lines (20 loc) · 1.21 KB

Creator Tools

This repository provides helpful scripts for Algo NFT creators.

These scripts come with no warranty whatsoever, so please use them responsibly.

@algokittens' algoNFTs repository inspired this one, so definitely check it out, especially if you prefer Python over Nodejs!

Also, please read up on Algorand Standard Assets (ASAs), so you can understand things like minimum balance increases and transaction fees: https://developer.algorand.org/docs/features/asa/

Add NFTs

node add.js --to SOMEADDRESS --assetIds 123,456

This script adds NFTs to an account. This allows the account to receive the NFTs from another account later.

Send NFTs

node send.js --from SOMEADDRESS --to SOMEOTHERADDRESS --assetIds 123,456

This script sends NFTs from one account to another.

List NFTs

node list.js --from SOMEADDRESS

This script gets a list of available Asset IDs from account, then copies the list to the clipboard.

Collect Garbage

node collect-garbage.js --from SOMEADDRESS

This script opts an account out of NFTs it holds none of.

Close Out Account

node collect-garbage.js --from SOMEADDRESS --to SOMEOTHERADDRESS

This script closes out an account.