Tephra SDK
  • Overview
  • Getting Started
    • Asset Creation
    • Grants & Transfers
    • Validation
    • Ejecting
  • Preservation
  • FAQs
Powered by GitBook
On this page
  • Installation
  • Authentication

Was this helpful?

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

PreviousOverviewNextAsset Creation

Last updated 3 years ago

Was this helpful?