Getting Started

Installation

You can add the Tephra SDK to your project using npm or yarn.

npm install @tephranet/tephra-sdk
# or ...
yarn add @tephranet/tephra-sdk

Authentication

Once the SDK is installed, you can create a new instance with your Tephra key and secret.

// Import our SDK
import { TephraSDK } from '@tephranet/tephra-sdk'

// Authenticate
const tephra = new TephraSDK(KEY, SECRET)

Now you can use Tephra to perform

Last updated

Was this helpful?