Getting Started
Niftron is a Blockchain as a Service platform which allows anyone to integrate blockchain with their products or projects easily and efficiently to improve trust by providing transparency, security and ownership.
Niftron SDK enables any application to create NFTs and in the process tokenizing everything.
Install SDK
Install the niftron sdk to your nodejs application.
npm install --save niftron-sdk
Configure SDK
Configure the Niftron sdk using your project key and dev console secret Key obtained from https://console.niftron.com/credentials.
import { NiftronConfig, NIFTRON } from "niftron-sdk";const niftronConfig: NiftronConfig = {projectKey: "--------- Project Key -----------",secretKey: "--------- Secret Key -----------",};const niftron: NIFTRON = new NIFTRON(niftronConfig);niftron.initialize()