Skip to content

cipherarch/nyxance-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NYXANCE SDK

Official TypeScript/JavaScript SDK for the NYXANCE Exchange API.

Alpha — This SDK is under active development. API may change.

Installation

npm install @nyxance/sdk

Quick Start

import { NyxanceClient } from '@nyxance/sdk';

const client = new NyxanceClient({
  apiKey: 'your-api-key',
  apiSecret: 'your-api-secret',
});

// Get ticker
const ticker = await client.getTicker('BTC-USDT');
console.log(ticker);

// Place order
const order = await client.createOrder({
  symbol: 'BTC-USDT',
  side: 'buy',
  type: 'limit',
  quantity: 0.01,
  price: 70000,
  leverage: 10,
});

Features (Planned)

  • REST API client with full type safety
  • WebSocket real-time market data
  • Order management (limit, market, stop)
  • Position tracking and PnL
  • AI-powered risk scoring integration
  • Copy-trading API

Links

About

NYXANCE Exchange SDK - TypeScript/JavaScript client library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors