Power SDK Quick Start Guide
Table of Contents
Introduction
Here is a JavaScript implementation of The Power API. The API description can be found here.
Quick start
To start using the JavaScript implementation of The Power API install the @thepowereco/tssdk
package:
- npm
- Yarn
- pnpm
npm i @thepowereco/tssdk
yarn add @thepowereco/tssdk
pnpm add @thepowereco/tssdk
This package now contains the necessary libraries for The Power API.
You can import the necessary libraries directly from the package. For example, if you need the address library or the transaction library, you can import them as follows:
import { AddressLib, TransactionsLib } from '@thepowereco/tssdk';
What's next?
-
Visit our Hello World apps section to learn how to work with our
-
Go get information about The Power libraries to dive into the development here.
For more detailed information about the API and its usage, please refer to the API reference documentation.