0.3.3 • Published 2 months ago

@item-systems/item v0.3.3

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
2 months ago

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
})