Skip to content

Latest commit

 

History

History
46 lines (28 loc) · 1.05 KB

README.md

File metadata and controls

46 lines (28 loc) · 1.05 KB

TokenD JS SDK

Overview

TokenD JS SDK is a client-side Javascript library for TokenD tokenization platform.

Changelog

All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning.

Getting Started

  1. Add TokenD SDK to your project:

    npm install -S @tokend/js-sdk
  2. Create an SDK instance:

    import { TokenD } from '@tokend/js-sdk'
    
    let sdk = await TokenD.create('https://backend.tokend.com')
  3. Grab your TokenD wallet:

    let wallet = await sdk.api.wallets.get('[email protected]', '<my password>')
    sdk.useWallet(wallet)
  4. Read the docs and tokenize your assets!

Development

Check out our Development Guide.

Known issues

You have to add @babel/runtime-corejs2@^7.2.0 into your project due to a bug in one of SDK’s dependencies.

License

tokend-js-sdk is licensed under an Apache-2.0 license.