Getting Started

Creating a Project

Access our Dev Portal and create a project for your organization. You will be given the Client ID and Client Secret for authentication.

Installation

npm install @ordanetwork/sdk

Requirements: Node.js 18.0.0+

Initialize SDK

import { OrdaSDK } from '@ordanetwork/sdk';

const orda = new OrdaSDK({
  clientId: process.env.ORDA_CLIENT_ID,
  clientSecret: process.env.ORDA_CLIENT_SECRET
});

Module Formats

The orda SDK is compatible with ES Modules and CommonJS:

import { OrdaSDK } from '@ordanetwork/sdk';

Security

Last updated