Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/konstantinzolotarev/binance_futures
Binance Futures API
https://github.com/konstantinzolotarev/binance_futures
Last synced: about 1 month ago
JSON representation
Binance Futures API
- Host: GitHub
- URL: https://github.com/konstantinzolotarev/binance_futures
- Owner: konstantinzolotarev
- License: mit
- Created: 2021-03-21T17:42:35.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-22T19:46:22.000Z (almost 4 years ago)
- Last Synced: 2024-10-18T05:07:57.572Z (2 months ago)
- Language: Elixir
- Size: 19.5 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BinanceFutures
Binance Futures API Elixir implementation.
## Installation
1. The package can be installed by adding `binance_futures` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:binance_futures, "~> 0.1.0"}
]
end
```2. Add `:binance_futures` to your applications list if your Elixir version is 1.3 or lower:
```elixir
def application do
[applications: [:binance_futures]]
end
```3. Add your Binance API credentials to your `config.exs` file, like so (you can create a new API
key [here](https://www.binance.com/en/support/faq/360002502072)):```elixir
config :binance,
api_key: "xxx",
secret_key: "xxx"
```## Usage
TBD.
Documentation can be found at [https://hexdocs.pm/binance_futures](https://hexdocs.pm/binance_futures).