@stiacs/dextools-api
v2.0.0
Published
A simple Node.js library for DEXTools's API V2 with network selection, promise operations and optional requests logging.
Downloads
7
Maintainers
Readme
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!