Classes
Last updated
Last updated
This release is compatible with Polymesh v4.1.0
The Polymesh SDK's main goal is to provide external developers with a set of tools that will allow them to build powerful applications that interact with the Polymesh protocol. It focuses on abstracting away all the complexities of the Polymesh blockchain and expose a simple but complete interface. The result is a feature-rich, user-friendly node.js library.
This document assumes you are already familiar with Security Tokens in general and Polymath as well as Polymesh in particular.
In order to use the Polymath SDK, you must install node (version 10) and npm. The library is written in typescript, but can also be used in plain javascript. This document will assume you are using typescript, but the translation to javascript is very simple.
Token Studio SDK Walkthrough:
https://developers.polymath.network/token-studio-api-walkthrough/
Polymesh SDK API Reference:
https://developers.polymath.network/polymesh-sdk-api-reference/
npm i @polymathnetwork/polymesh-sdk --save
Or, if you're using yarn
yarn add @polymathnetwork/polymesh-sdk
Before you can start registering Tickers and creating Security Tokens, you have to connect the Polymesh SDK client to a Polymesh node. This is a pretty straightforward process:
Here is an overview of the parameters passed to the connect
function:
nodeUrl
is a URL that points to a running Polymesh node
accountSeed
is the seed (akin to a private key) of the account that will be performing transactions
NOTE: if using the SDK on a browser environment (i.e. with the Polymesh wallet browser extension), there is no need to provide the account seed. Instead, you pass a Keyring object that contains the address, and a signer for that address (which you would typically get from the wallet extension)