tonapi-sdk-js
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

tonapi-sdk-js

Overview

This SDK, automatically generated, facilitates access to endpoints provided by tonapi.io. For detailed API information, visit the swagger documentation.

To utilize tonapi, please set up an account.

Installation

Install the package using npm or yarn:

npm install tonapi-sdk-js
# or
yarn add tonapi-sdk-js

Usage

Below is an example of how to use the SDK in your JavaScript project:

// client.js

import { HttpClient, Api } from 'tonapi-sdk-js';

// Configure the HTTP client with your host and token
const httpClient = new HttpClient({
    baseUrl: 'https://tonapi.io/',
    baseApiParams: {
        headers: {
            Authorization: `Bearer ${YOUR_TOKEN}`,
            'Content-type': 'application/json'
        }
    }
});

// Initialize the API client
const client = new Api(httpClient);

// Fetch a typed array of account events
const events = await client.accounts.getAccountEvents(address, { limit: 50 });

// Retrieve an NFT collection
const collection = await client.nft.getNftCollection(address);

// Obtain information about a specific jetton
const jetton = await client.jettons.getJettonInfo(address);

For those upgrading from v0 to v1, please refer to the migration guide for detailed instructions.

Readme

Keywords

Package Sidebar

Install

npm i tonapi-sdk-js

Weekly Downloads

1,639

Version

1.0.2

License

GPL-3.0

Unpacked Size

203 kB

Total Files

5

Last publish

Collaborators

  • brainfucker
  • vlkmx