Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@xact-wallet-sdk/nft

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@xact-wallet-sdk/nft

A SDK for NFT creation with Hedera and FileCoin

  • 0.1.2
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-92.86%
Maintainers
1
Weekly downloads
 
Created
Source

@xact-wallet-sdk/nft

Create a NFT with Hedera and FileCoin

Installation

  1. Install package from npm and dependencies.

npm i @xact-wallet-sdk/nft

Before Starting

  1. Please create your account on Hedera Portal.

  2. Please create your account on NFT Storage.

Usage

/* Create a new instance of Client */
const hederaAccount = {
    accountId: 'YOUR_ACCOUNTID',
    privateKey: 'YOUR_PRIVATEKEY',
    environment: HederaEnviroment.TESTNET, /* Default to MAINNET */
};
    
/* Construct an instance of Client */
const client = new ClientNFT({hederaAccount, nftStorageApiKey: 'YOUR_TOKEN', debugLevel:DebugLevel.DEBUG /* Default to OFF */});

/* Get NFT's creation Fees */
const fees = await client.getFees();

/* Create NFT */
const name = 'NFT Test';
const description = 'Description of my NFT';
const category = CategoryNFT.ART;
const creator = 'Johny.B';
const media = ''; /* File or Base64 format */
const supply = 1; /* Nb of NFT available */
await client.create({name, description, category, creator, media, supply});

Keywords

FAQs

Package last updated on 26 Aug 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc