
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
ethereum-dex-prices-service
Advanced tools
Search crypto asset prices from the most popular Ethereum decentralized exchanges, based on real liquidity
An open source utility for the Ethereum community.
Find the best price for any asset on any Decentralized Exchange (DEX) at any time.
ethereum-dex-prices-service is a JavaScript library for fetching real time price data from Ethereum decentralized exchanges. This repository contains free, open-source tools that anyone can use.
NPM
npm install --save ethereum-dex-prices-service
Yarn
yarn add ethereum-dex-prices-service
In your project
const { main } = require('ethereum-dex-prices-service')
async function getDexPrices() {
const results = await main('DAI', 500, 'BUY')
results.forEach(obj => {
// do some stuff
})
}
or just import individual DEX classes
const { AirSwap } = require('ethereum-dex-prices-service')
async function getAirSwapPrice() {
const result = await AirSwap.computePrice('DAI', 500, 'BUY', 0)
console.log(result)
}
The service is composed of modular ES6 classes. Each decentralized exchange or "DEX" has its own class inside the exchanges/ directory. Classic order book style DEX's inherit from the base OrderBookExchange class. Unique DEX's like AirSwap, Kyber, and Bancor use their own inidividual classes. Every class implements a method called computePrice to return price data in a generalized schema.
{
"exchangeName": "Bancor",
"totalPrice": 2.5494668914843825,
"tokenAmount": 300,
"tokenSymbol": "MKR",
"avgPrice": 0.008498222971614608,
"timestamp": 1548101818616,
"error": null
}
{
"exchangeName": "Bancor",
"totalPrice": null,
"tokenAmount": 300,
"tokenSymbol": "DAI",
"avgPrice": null,
"timestamp": 1548101818616,
"error": "DAI is not available on Bancor"
}
The data can be served in many different ways. There are currently three supported outputs:
entrypoints/cli.jsentrypoints/server.jshandler.jsWe would like to eventually add support for:
Interested in contributing? Check out the Contributing section below.
To run the service and get price data, follow these instructions:
yarn install
yarn search buy 500 DAI
yarn search sell 300 OMG
yarn serve:express
You should then see:
"Dex price server running on port 1337!"
Now, make an HTTP request:
curl http://localhost:1337/sell\?symbol\=DAI\&amount\=500
yarn search <BUY/SELL> <AMOUNT> <SYMBOL> - Run the command line tool
yarn serve:express - Start the web server
yarn debug:cli <BUY/SELL> <AMOUNT> <SYMBOL> - Run the command line tool in live debugger mode
yarn debug:server - Start the web server in live debugger mode
yarn lint - Lint the code
yarn prettier:check - Check code style
yarn prettier:fix - Fix code style
Contributions are welcome and encouraged!
Simply fork this repository or create a new branch and open a pull request against master.
Before doing so, make sure to check code quality with ESLint and Prettier. You can use the yarn Commands to accomplish this. You'll want to make sure your code passes yarn lint and yarn prettier:check.
When opening a PR, please provide a brief summary explaining the changes as well as some code examples to test the functionality. Also, please be prepared to edit your pull request based on comments and feedback.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Search crypto asset prices from the most popular Ethereum decentralized exchanges, based on real liquidity
We found that ethereum-dex-prices-service demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.