npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@acelon/acelon-sdk

v1.4.4

Published

The Acelon SDK is a TypeScript library that provides a simple interface to interact with the Acelon Service. It allows developers to fetch price data for various cryptocurrency pairs, with signatures from multiple oracles.

Downloads

1,064

Readme

Acelon SDK

The Acelon SDK is a TypeScript library that provides a simple interface to interact with the Acelon Service. It allows developers to fetch price data for various cryptocurrency pairs, with signatures from multiple oracles.

Features

  • Fetch price data for multiple cryptocurrency pairs
  • Verify price data across multiple oracles
  • Check the health status of supported exchanges
  • Support for different blockchain protocols (Substrate, EVM, WASM, Tezos)

Installation

To install the Acelon SDK, use yarn:

yarn add @acelon/acelon-sdk

Usage

Initializing the SDK

First, import and initialize the Acelon Sdk:

import { AcelonSdk } from '@acelon/acelon-sdk'

const sdk = new AcelonSdk({
  timeout: 20000, // (optional) default 20 seconds
  logging: true, // (optional) default false
  errorThreshold: 3, // (optional) default 3
})

Fetching Price Data

To fetch price data for cryptocurrency pairs:

const fetchPricesParams = {
  pairs: [
    { from: 'BTC', to: 'USDT' },
    { from: 'ETH', to: 'USDT' },
  ],
  protocol: 'EVM',
  aggregation: 'median',
}

try {
  const priceData = await sdk.getPrices(fetchPricesParams, 2) // Require 2 verifications
  console.log('Price data:', priceData)
} catch (error) {
  console.error('Error fetching prices:', error)
}

Checking Exchange Health

To check the health status of supported exchanges:

try {
  const exchanges = await sdk.getExchanges()
  console.log('Available exchanges:', exchanges)
} catch (error) {
  console.error('Error checking exchange health:', error)
}

Closing the Connection

When you're done using the SDK, close the connection:

await sdk.close()

Response Examples

getPrices Response

;[
  {
    priceData: {
      from: 'BTC',
      to: 'USDT',
      decimals: 8,
      price: 5000000000000,
      timestamp: 1629300000000,
      sources: [
        { exchangeId: 'BNC', certificate: 'cert1' },
        { exchangeId: 'CBP', certificate: 'cert2' },
      ],
      requestHash: '0x1234567890abcdef',
    },
    packed: ['packed_data_1', 'packed_data_2'],
    signatures: ['signature1', 'signature2'],
    pubKeys: ['pubKey1', 'pubKey2'],
  },
  {
    priceData: {
      from: 'ETH',
      to: 'USDT',
      decimals: 8,
      price: 300000000000,
      timestamp: 1629300000000,
      sources: [
        { exchangeId: 'BNC', certificate: 'cert1' },
        { exchangeId: 'CBP', certificate: 'cert2' },
      ],
      requestHash: '0x1234567890abcdef',
    },
    packed: ['packed_data_3', 'packed_data_4'],
    signatures: ['signature3', 'signature4'],
    pubKeys: ['pubKey1', 'pubKey2'],
  },
]

getExchanges Response

;['BNC', 'CBP', 'BFX', 'KRK', 'GEM']

Description

AcelonSdk

Constructor

new AcelonSdk(options: AcelonSdkOptions)
  • options.wssUrls: (Optional) Array of WebSocket URLs to connect to the Acurast processors.
  • options.oracles: (Optional) Array of processor public keys. These have to be public keys of processors that are running the Acelon Oracle. By default it will use the public keys from the Acelon Service.
  • options.timeout: (Optional) Timeout in milliseconds for the requests. Default: 20 seconds.
  • options.logging: (Optional) Enable or disable logs. Default: false.
  • options.errorThreshold: (Optional) Number of oracles that have to respond with the same error for it to be thrown by the sdk. Default: 3.

Custom Oracles

If you want to use your own oracles :

  1. First you will need to deploy your own Acelon Oracles on Acurast. Here you can find the Acelon Oracle to deploy. See the documentation for deployment creation.
  2. Once deployed, you will be able to get the public keys to use in the options when initializing the SDK.

Methods

getPrices(params: FetchPricesParams, verifications: number = 0): Promise<GetPricesResult[]>

Fetches price data from the oracle network.

  • params: The parameters for fetching prices. It includes:
    • pairs: Array of Pairs, Pairs to fetch prices for:
      • from: String, from symbol.
      • to: String, to symbol.
      • decimals: Number of decimals for the price.
      • exchanges: (Optional) List of exchange IDs to use as sources on the oracles. Default: all available exchanges.
      • price: (Optional) Price(s) to verify against the oracle price. (Provide a price per aggregatyion type requested)
      • timestamp: (Optional) Number, timestamp of the provided prices.
    • protocol: Protocol to package and sign the price data for.
    • minSources: (Optional) Minimum number of sources required. Default: 3.
    • tradeAgeLimit: (Optional) Maximum age of trade data in seconds. Default: 5 minutes.
    • aggregation: (Optional) Types of price aggregation requested from the oracles. Default: mean.
    • maxSourcesDeviation: (Optional) Maximum allowed standard deviation between prices in the sources. Default: no limit.
    • maxValidationDiff: (Optional) Maximum allowed price difference for validation against client. Default: 0.05%.
  • verifications: The number of verifications required. Default: 0.

getPrices Response

GetPricesResult[] Each object contains the following properties:

  1. priceData:

    • from: String - From symbol.
    • to: String - To symbol.
    • decimals: Number of decimals for the price.
    • price: Number or Number[] - Aggregated price(s).
    • timestamp: Number - Timestamp of the price data in ms.
    • sources: Array of Objects - Map exchangeID to the certificate for sources used.
      • exchangeId: String - The unique identifier of the exchange.
      • certificate: String - The API certificate.
    • requestHash: String - Hash of the original request parameters.
  2. packed: String[] - Price data in the packed format for the chosen protocol.

  3. signatures: String[] - Oracle signatures.

  4. pubKeys: String[] - Oracle public keys.

getExchanges(params?: CheckExchangeHealthParams, requiredResponses: number = 0): Promise<string[]>

Retrieves a list of available exchanges.

  • params: (Optional) The parameters for checking exchange health. It includes:
    • exchanges: (Optional) List of exchange IDs to check. Default: all available exchanges.
  • requiredResponses: (Optional) The number of required responses from the oracles. Default: 0.
close(): Promise<void>

Closes the WebSocket connection.

Exchange ID table

| Exchange ID | Exchange Name | | ----------- | ------------- | | BNU | Binance US | | BNC | Binance | | CBP | Coinbase | | BFX | Bitfinex | | KRK | Kraken | | BYB | Bybit | | GEM | Gemini | | KUC | Kucoin | | GIO | Gate IO | | CRY | Crypto.com | | HTX | HTX | | MEXC | MEXC | | WBIT | Whitebit | | OKX | OKX | | UPB | Upbit |

License

This project is licensed under the MIT License.