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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@toncodex/tetra-sdk

v1.0.2

Published

<p align="center"> <a href="https://tonco.io/"><img alt="TONCO" src="https://app.tonco.io/tonco-logo.svg" width="360"></a> </p>

Readme

✨ Features


📦 Installation

Using npm:

npm install @toncodex/sdk@mainnet

or yarn:

yarn add @toncodex/sdk@mainnet

The SDK works with types from the @ton/ton library and uses JSBI for calculations. For the best experience, make sure to install these dependencies as well:

yarn add @ton/ton @ton/core @ton/crypto
yarn add [email protected]

🚀 Getting Started

Creating Jetton instance

const jetton0 = new Jetton(
  pTON_MINTER, // address
  9, // decimals
  'TON', // symbol
  'TON', // name
  'https://cache.tonapi.io/imgproxy/0boBDKrVQY502vqLLXqwwZTS87PyqSQq0hke-x11lqs/rs:fill:200:200:1/g:no/aHR0cHM6Ly90b25jby5pby9zdGF0aWMvdG9rZW4vVE9OX1RPS0VOLndlYnA.webp' // image
)

Retrieving pool data

import { TonClient } from '@ton/ton';
import { Address, OpenedContract } from '@ton/core';

const client = new TonClient({
  endpoint: 'https://toncenter.com/api/v2/jsonRPC',
});

const poolAddress = "EQD25vStEwc-h1QT1qlsYPQwqU5IiOhox5II0C_xsDNpMVo7" // TON - USDT

const contract = new PoolV3Contract(Address.parse(poolAddress));
const poolContract = client.open(contract) as OpenedContract<PoolV3Contract>;
const poolData = await poolContract.getPoolStateAndConfiguration();

Creating Pool instance

const jetton0 = new Jetton(
  pTON_MINTER,
  9,
  'TON',
  'TON',
  'https://cache.tonapi.io/imgproxy/0boBDKrVQY502vqLLXqwwZTS87PyqSQq0hke-x11lqs/rs:fill:200:200:1/g:no/aHR0cHM6Ly90b25jby5pby9zdGF0aWMvdG9rZW4vVE9OX1RPS0VOLndlYnA.webp'
)
const jetton1 = new Jetton(
  'EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs'
  6,
  'USD₮',
  'Tether USD',
  'https://tether.to/images/logoCircle.png'
)

const pool = new Pool(
  jetton0,
  jetton1,
  poolData.lp_fee_current,
  poolData.price_sqrt.toString(),
  poolData.liquidity.toString(),
  poolData.tick,
  poolData.tick_spacing,
);

Retrieving position data

import { TonClient } from '@ton/ton';
import { Address, OpenedContract } from '@ton/core';

const client = new TonClient({
  endpoint: 'https://toncenter.com/api/v2/jsonRPC',
});

const positionNFTAddress = "EQAy5YMXX7e3916Io3Mi9DG3Xf7UAz2bKMMioYCOeYlDm7Ry" // #3143 LP Position: [ -62160 -> -56100 ]

const positionContract = client.open(
  new PositionNFTV3Contract(Address.parse(positionNFTAddress)),
);

const positionInfo = await positionContract.getPositionInfo();

Creating Position instance

const liquidity = positionInfo.liquidity.toString();
const tickLower = positionInfo.tickLow;
const tickUpper = positionInfo.tickHigh;

const position = new Position({
  pool, // pool instance
  tickLower,
  tickUpper,
  liquidity,
});

📚 Examples & Integration

Usage examples and integration guide are available on the official TONCO documentation:

📄 License

This project is licensed under the MIT License. See the LICENSE file for more details.