@item-systems/item
v0.3.3
Published
A package for interfacing with Non-Fungible Items
Downloads
11
Readme
Documentation
For a more complete set of project documentation, visit the developer portal.
For SDK specific documentation, you can look here.
Overview
This SDK provides bindings and workflows for use with various components in the NFI ecosystem. Scopes are broken into classes, typically falling along contract lines.
Quickstart
To install: npm install @item-systems/item --save
Getting an Item:
const item = new Item()
const itemJSON = await item.getItemJSON({
tokenId: 8
})
Getting a Quest:
const quests = new Quests()
const itemJSON = await quests.getQuestJSON({
questId: 1
})