New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@stiacs/dextools-api

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stiacs/dextools-api

A simple Node.js library for DEXTools's API V2 with network selection, promise operations and optional requests logging.

latest
Source
npmnpm
Version
2.0.0
Version published
Maintainers
1
Created
Source

dextools api

Total Hits Downloads Version License

DEXTools-api is a nodejs module for DEXTools.io API v1 (use version 1.x) and v2 (use version 2.x). This library provides support for many blockchains with promise support for smooth integration into your NodeJs project.

🌟 Key Features:

  • ⚡️ High Performance: Enjoy super-fast access to blockchain data.
  • ⛓️ Multi-chain support: Choose between different chains (default is ethereum).
  • 📄 Requests logging: You can see logs for all requests done
  • ✨ Promise Support: Simplify asynchronous operations with built-in promises.

📦 Install

npm i dextools-api

Usage

const DEXToolsApi = require('dextools-api');

// Create an instance of DEXtoolsApi with your API key
const apiClient = new DEXToolsApi(apiKey); 

// or with logging enabled
// const apiClient = new DEXToolsApi(apiKey, true);

// Get information about the DEXT/WETH pair using its address
try {
    const poolInformation = await apiClient.getPool('ether', '0xa43fe16908251ee70ef74718545e4fe6c5ccec9f');
    console.log('PEPE/WETH pool information:\n');
    console.log(JSON.stringify(poolInformation, null, 2));
} catch (error) {
    console.error(`Error fetching pool information: ${error}`);
}

// Chain list to be used with DEXToolsApi
try {
    const chains = await apiClient.getChainList();
    console.log('Chain list:\n');
    console.log(JSON.stringify(chains, null, 2));
} catch (error) {
    console.error('Error fetching chain list', error);
}

More examples can be found in tests.js

Contributing

Contributions are welcome! Feel free to fork the repository and submit pull requests as well.

License

This project is licensed under the MIT license.

Contacts

Feel free to contact me for any project-related queries or collaborations. I'd be happy to discuss ideas!

Telegram

Keywords

dextools

FAQs

Package last updated on 12 Dec 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts