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

binance-local-exchange

v1.0.9

Published

Binance local exchange

Downloads

30

Readme

🏦 What is "BLE" or "Binance Local Exchange"

You can interact with BLE as if you would be trading with the real Binance API without taking the risk of making an actual trade. All orders calls will be saved in memory (as long as the server is running) and will be internally matched once the price on Binance hits the expected target. In case of a MARKET order the order will be settled at the current market price on Binance.

Once the order is settled an ExecutionReport is emitted according to the interface of the Binance API. Note that BLE is not 100% local, some endpoints are (always) proxied to Binance. For example kline events will always be proxied to Binance so that BLE can correctly match the orders internally.

Quick start

  • npx binance-local-exchange
  • Make api calls or point your trading bot to: http://localhost:8000

Help, it's not working?

  • I can't create an order: make sure to call GET /api/v3/exchangeInfo. (why?)
  • I am not receiving any executionReports:
    • make sure to call POST /api/v3/userDataStream. (why?)
    • make sure to listen for Kline/Candlestick Streams. (why?)

Still not working? Please open a bug report

⚙️ Configuration

The following configuration options can be configured either by argument or by environment variable.

| Option | Env var | Description | |-----------------------------|------------------------|-------------------------------------| | -V, --version | | output the version number | | -p, --port | PORT | port number (default: 8000) | | -lt, --local-time | LOCAL_TIME | local time (default: true) | | -lei, --local-exchange-info | LOCAL_EXCHANGE_INFO | local exchange info (default: true) | | -fm, --fee-maker | FEES_MAKER | maker fee (default: 0.001) | | -ft, --fee-taker | FEES_TAKER | taker fee (default: 0.001) | | --I-KNOW-WHAT-I-AM-DOING | I_KNOW_WHAT_I_AM_DOING | removes all security warnings | | -h, --help | | display help for command |

For example: export PORT=8001 && npx binance-local-exchange or npx binance-local-exchange -p 8001

🪝 API endpoints

| Method | Path | Implemented | |--------|------------------------|-------------| | GET | /api/v3/exchangeInfo | ✅ | | POST | /api/v3/order | ✅ | | GET | /api/v3/time | ✅ | | POST | /api/v3/userDataStream | ✅ |

Websocket streams

| Stream | Implemented | |----------------|-------------| | kline | ✅ | | userDataStream | ✅ |

Internal server endpoints

Can be used to debug or get more information about the internal state of the server

| Method | Path | Implemented | Body / Query | Info | |--------|----------------|-------------|-----------------------------------|------------------------------------------------------| | GET | /server/debug | ✅ | | Returns the state of the internal stores | | GET | /server/config | ✅ | | Returns the configuration that is used by the server | | POST | /server/match | ✅ | { symbol: string, price: number } | Tries to match open orders. |

🗺️ Roadmap

  • Add support for additional API endpoints
  • Spot account trades
  • Margin account trades
  • ...

💁 How to contribute?

  • Clone repo git clone https://github.com/SockTrader/Binance-local-exchange
  • Install dependencies cd Binance-local-exchange && npm install
  • Start server npm run start or in watch mode npm run watch
  • Make code changes, test with Postman, create unit tests
  • Open pull request

✨ Contributors

⚠️ DISCLAIMER

Use at your own risk. Neither SockTrader nor any project contributor can be held responsible for any potential losses.