SDK Reference
Introduction
Getting Started

Getting started with Orbis SDK

Installation

Orbis SDK is an open-source (opens in a new tab) Javascript package that can be installed using your favorite package manager.

npm install @orbisclub/orbis-sdk

Initialize the SDK

Once installed, you can import the SDK and initialize the Orbis object which will give you access to all of the SDK's features

index.js
/** Import Orbis SDK */
import { Orbis } from "@orbisclub/orbis-sdk";
 
/** Initialize the Orbis class object */
const orbis = new Orbis();

Building a mobile app (React Native)

React Native can be tricky when you have to deal with a ton of crypto-related libraries.
This is why we created an Expo template that can be used to build React Native applications powered by Orbis.

Next steps