2.0.0 ā€¢ Published 5 months ago

@stiacs/dextools-api v2.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

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!