Your first Blockchain Application is just minutes away
Getting Started
Make use of our npm repository to add it to your node project of choice or Clone the Relysia SDK repository from https://github.com/kohze/relysiaSDK to add it locally to your project. Alternatively we also offer a CDN to integrate the Relysia SDK into traditional html pages.
1
npm i relysia
Copied!
Alternatively, install the newest development version via GitHub
1
git clone https://github.com/kohze/relysiaSDK
Copied!
Initialize the Library
Each Relysia SDK interaction starts with getting the Authentication Token. To get a Authentication token, load the Relysia SDK either via NPM or CDN and start with the following lines.
In case you already have the authentication token from your firebase frontend application use:
1
const relysia =newRelysiaSDK(authToken:'');
Copied!
Account details
User details are typically an essential part of your user management and platform experience. To access user account details, such as email, name or profile picture, call the getUserDetails() function as indicated below.