npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ethereum-dex-prices-service

v0.1.2

Published

Search crypto asset prices from the most popular Ethereum decentralized exchanges, based on real liquidity

Downloads

10

Readme

Ethereum DEX Prices Service

npm NPM LGTM Grade GitHub last commit

An open source utility for the Ethereum community.

Find the best price for any asset on any Decentralized Exchange (DEX) at any time.

Introduction

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.

  • Quickly launch an HTTP server to serve DEX prices in your applications
  • Execute price searches from the command line to find cheap prices and arbitrage opportunities
  • Add DEX prices API support in your NodeJS and web projects by simply importing the library's modular classes

Example Web App

Quick Start

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)
}

Architecture

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.

Example Data
Price data found
{
  "exchangeName": "Bancor",
  "totalPrice": 2.5494668914843825,
  "tokenAmount": 300,
  "tokenSymbol": "MKR",
  "avgPrice": 0.008498222971614608,
  "timestamp": 1548101818616,
  "error": null
}
No price data found
{
  "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:

  • A command line tool entrypoints/cli.js
  • A web server entrypoints/server.js
  • A Serverless handler.js

We would like to eventually add support for:

  • An NPM module
  • A standalone Electron app with a React UI

Interested in contributing? Check out the Contributing section below.

Getting started

Pre-requirements

To run the service and get price data, follow these instructions:

  1. Clone this repository
  2. Make sure you have Yarn installed.
  3. Install dependencies
yarn install

Running the service as a command line tool

yarn search buy 500 DAI
yarn search sell 300 OMG

Running the service as a web server

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

Commands

  • 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

Contributing

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.

License (MIT)

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.