npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

javascript-algorand-nft-sdk

v0.0.9

Published

JavaScript Algorand NFT SDK

Downloads

5

Readme

jsAlgoNftSdk

Introduction

This SDK builds upon the Algorand JavaScript SDK's NFT minting and updating capabilities, making it a lot easier for developers to create and update NFTs on testnet, betanet and mainnet using the different ARC standards.

The developer simply needs to call the appropriate function to either mint or update an NFT, providing the necessary arguments including the metadata url in accordance with the ARC standard they intend to use.

The ARC standards for NFTs include

  • ARC3

  • ARC19

    • https://github.com/algorandfoundation/ARCs/blob/main/ARCs/arc-0019.md
    • NFT metadata focused standard.
    • Enforces off-chain IPFS metadata by using the url field as a template populated by the reserve address field which holds the IPFS CID. Easy to update since the reserve address value can be replaced with a single transaction, which in turn changes the metadata. The reserve address is only irrelevant (and thus can be used in this way) for pure NFTs (1 of 1).
    • Suitable for mutable NFTs intended to transition into immutable NFTs, with complete metadata (+mediafile) changes.
  • ARC69

    • https://github.com/algorandfoundation/ARCs/blob/main/ARCs/arc-0069.md
    • NFT mediafile focused standard.
    • The url field points to the NFT digital asset file. The ASA metadata is stored on-chain and represented by the note field of the latest valid assetconfig transaction. Since the note field is limited to 1KB the metadata JSON is also restricted to this size. This design means fetching the metadata is complex and requires access to an archive node, but also allows metadata to be updated with a single transaction and simple access to the mediafile url.
    • Suitable for mutable NFTs where the mediafile is locked, easily accessed, but the compact metadata associated with it changes over time.

Getting Started

Prerequisites

At least Node 18

Install

npm install javascript-algorand-nft-sdk

Usage

To use the SDK in your JavaScript script you simply need to follow the steps below.

Step 1

Import SDK

'''
import the file coresponding to the network that you intend to connect to and alias it.
Testnet: testnet
Betanet: betanet
Mainnet: mainnet
'''
import loadNFTSDK from 'javascript-algorand-nft-sdk'
const nftSDK = loadNFTSDK()

Step 2

Call the function to mint an NFT

nftSDK['mainNet' || 'betaNet' || 'testNet'].createNFT({name, symbol, metadataUrl, address, reserve, freeze, clawback})

Description: This function mints a new NFT.

Arguments:

Required :-

  • name: This should be passed as a string and denotes the name of the NFT.
  • symbol: This should be no more than 8 chararacters and passed as a string. It denotes symbol that would be associated with the NFT.
  • metadataUrl: This should be passed as a string and should be a URL pointing to a file where the NFT metadata such as an image is stored. If you wish for this NFT to be mutable, then the metadata_url passed must be in accordance with ARC-19 standards.

Optional :- -address: This is an argument of type string and denotes the receiving address of the NFT(i.e) where the NFT would be stored after creation. If no Address is passed, then an address would be generated for the user and information about this address such as the secrete key, the public key and the mnemonic seed phrase would be printed out to the CLI. These must be copied and stored in a secure manner and later import the wallet to GUI such as MyAlgo wallet or Pera Algo wallet

  • freeze: This is an argument of type string. It denotes a wallet that can sign a transaction to freeze the asset. It usually does not apply to NFTs.
  • clawback: This is an argument of type string. It denotes a wallet that can reclaim an asset.

Side Effects: -The function prints out the metadata hash, transaction ID, transaction information and the asset ID to the CLI.

Return: -The function returns the NFT ID (success) or False (failure)

Example: In this example, we create an NFT that can be updated (ARC-19 standard), but with no clawback or freeze address.

nftSDK.testNet.createNFT({name: "labi", symbol: "LA", url: "https://bit.ly/3iLVoA3#i", address: "BKULWP4WWNEFJRAUEZJD4RCWQ6G4XVH24MZINYOHB76SF2MTMFEOM5CABY"})

Step 3

Fund wallet and Opt-in to asset

-The User or receiver of the NFT must opt-in to the NFT in their wallet by adding the asset ID generated in the previous step to their wallet. -The user must also have few algos in their wallet. You can get algos from the testnet dispenser.

You can also use the utility function verifyOptIn() to ensure that the receiver address has opted in to the asset before moving on to the next step.

nftSDK['mainNet' || 'betaNet' || 'testNet'].verifyOptIn(address, assetId)

Description: checks if an address has opted-in to an asset.

Arguments:

Required:- -address: This is an argument of type string. It denotes the wallet to be checked for an opt-in for a particular asset. -assetId: This is passed an an integer. It denotes the asset ID of the asset to be checked.

Side Effects: None

Return: -true (if the wallet has opted in) else false.

Example:

nftSDK.testNet.verifyOptIn("BKULWP4WWNEFJRAUEZJD4RCWQ6G4XVH24MZINYOHB76SF2MTMFEOM5CABY", 156938060)

You can also use the utility function createAccount() to generate a new account

nftSDK['mainNet' || 'betaNet' || 'testNet'].createAccount()

Description: Creates a new account.

Arguments: Takes no arguments.

Side Effects: -Prints the public key (wallet address) and mnemonic seed phrase to the CLI.

Return: -The public key / wallet address.

Example:

nftSDK.testNet.createAccount()

This function prints out the account information which you can then copy from the CLI and store in a safe place and later import the wallet to GUI such as MyAlgo wallet or Pera Algo wallet

Optional Step

This step is only required when a user wants to update a mutable NFT. Remember that an NFT is only mutable if the metadataUrl passed while creating the NFT was created and passed as specified by the ARC-19 standard.

nftSDK['mainNet' || 'betaNet' || 'testNet'].updateNft({assetId, reserve, freeze, clawback})

Description: This function updates an NFT.

Arguments:

Required :-

  • metadatUrl: This should be passed as a string and should be a URL pointing to a file where the NFT metadata stored. The URL must be in accordance with ARC-19 standards and must be stored on IPFS

Optional :-

  • freeze: This is an argument of type string. It denotes a wallet that can sign a transaction to freeze the asset. It usually does not apply to NFTs.
  • clawback: This is an argument of type string. It denotes a wallet that can reclaim an asset.

Side Effects: -The function prints out the metadata hash, transaction ID, transaction information and the asset ID to the CLI.

Return: -The function returns the NFT ID (success) or false (failure)

Example:

nftSDK.testNet.updateNft({assetId: 0000000, ...assetParams})

Deployment

Authors

  • Owolabi Adeyemi
  • Emmanuel Agbavwe

Acknowledgements

  • Barnji

  • Nullun

  • Joe Polony

  • JP Miller

  • Nick Stanford

The ALgorand foundation and the awesome Green House Hacks Team.