No project description provided
Project description
Python Client (async) for dYdX (v4 API)
Quick links
Install
Install from PyPI:
pip install dydx-v4-client
Install from github:
pip install git+https://github.com/dydxprotocol/v4-clients/blob/main/v4-client-py-v2
Certainly! Here's the continued README section:
Installation
Install from PyPI:
To install the client from PyPI, run:
pip install dydx-v4-client
Install from GitHub:
To install directly from the GitHub repository, run:
pip install git+https://github.com/dydxprotocol/v4-clients/blob/main/v4-client-py-v2
Common Installation Issue on Ubuntu
If you're using Ubuntu and encounter the following error when trying to install dydx-v4-client
:
Failed building wheel for ed25519-blake2b
This error suggests there might be some compatibility issues or missing dependencies. The likely cause is that the ed25519-blake2b
package requires Rust to be installed for building the necessary components. Here’s how you can fix this:
-
Ensure Necessary Build Tools Are Installed:
First, update your package list and install the essential build tools:
sudo apt-get update sudo apt-get install build-essential python3-dev
-
Install Additional System Libraries:
Install the SSL development libraries:
sudo apt-get install libssl-dev
-
Install Rust Using rustup:
Rust is required to build certain packages. Install it using the following command:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Follow the prompts to complete the installation. After installation, you may need to restart your terminal or run:
source $HOME/.cargo/env
to update your PATH.
-
Upgrade pip, setuptools, and wheel:
Ensure you have the latest versions of pip, setuptools, and wheel:
pip install --upgrade pip setuptools wheel
-
Install the ed25519-blake2b Package Separately:
To isolate the issue, try installing the
ed25519-blake2b
package first:pip install ed25519-blake2b
-
Reattempt Installation of dydx-v4-client:
If the above steps succeed, try installing
dydx-v4-client
again:pip install dydx-v4-client
Getting Started Guide
dYdX Python SDK Trading Documentation: go-to resource for starting trades on dYdX using the Python SDK. Follow this guide to learn the basics and begin trading.
Table of Contents
- Introduction
- Network Setup
- Using the Testnet Faucet
- Account Details
- Getting Price Quotes
- Placing Orders
- Placing Native Orders
- Using WebSockets
Quick Start
To place an order, you first need to build the order. Here's a basic overview of the process:
- Set up your network connection (see Network Setup)
- If using testnet, obtain funds from the faucet (see Using the Testnet Faucet)
- Check your account details (see Account Details)
- Get current market prices (see Getting Price Quotes)
- Build and place your order (see Placing Orders or Placing Native Orders)
- Optionally, set up WebSocket connections for real-time updates (see Using WebSockets)
For more detailed examples, see the examples directory. Note that some examples may require installation of additional packages to work.
Changes
Migration
If you are transitioning from a previous version of the Python client, please note the following differences:
NodeClient
ValidatorClient
is renamed to NodeClient
.
All provided methods are asynchronous.
Methods are available directly, no methods get
or post
needed, since the client uses inheritance, and consists of three layers:
QueryNodeClient
, the basic layer that send queries to a nodeMutatingNodeClient
- the extension on top of the query client, that support transation simulation and sendingNodeClient
the toppest layer that provides methods to control orders
For parameters raw types used.
For construcint order the Market
builder is provided, that helps to calculate quantums and subticks values.
IndexerClient
The IndexerClient
has the similar structure, but provides
asynchronous methods as well.
IndexerSocket
The SocketClient
is replaced with the IndexerSocket
that provides separate channels concept and allow to add per-channel processing.
Key Improvements
The latest version of the Python async client for dYdX offers notable enhancements over previous iterations. These improvements make it a more efficient tool for trading and integration.
Asynchronous Execution
The methods leverage Python's async features, allowing you to fully harness concurrency benefits. This approach optimizes resource usage, minimizes unnecessary threads, and reduces latency.
Enhanced Type Hints
Expanded type hint coverage enhances code readability and provides better tooling support. Additionally, it helps detect errors early during development.
API Reflection
The client closely mirrors the dYdX API, enabling seamless access to the exchange's features and parameters. This makes integrating the client with your applications intuitive and straightforward.
Lightweight Implementation
The client is built using pure Python libraries and maintains a thin, transparent layer that follows the Principle of Least Astonishment (POLA). This ensures explicit behavior and gives you greater control.
MIT License
Licensed under the permissive MIT license, the client can be easily integrated into your software projects without restrictive legal hurdles.
Development
The project is divided into three main parts:
- node - contains the
NodeClient
, transaction builder and other utilities - indexer - contains rest api indexer client and websocket indexer client
- faucet - contains faucet client
Installing from source
The project employs poetry
. To install dependencies, run:
poetry install
Preparing development environment
Install git hooks:
pre-commit install
Testing
To run tests use:
poetry run pytest
Acknowledgements
Built by Nethermind: @piwonskp, @samtin0x, @therustmonk
For more details about the grant see link.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for dydx_v4_client-1.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5498d17e2da6571473c9deb607055f113d996aa9bc3007b78f94e0c77eae23bf |
|
MD5 | 4534a3ab4246a053ac9d5578dc0e067a |
|
BLAKE2b-256 | 78ac0097c1ba81940656e9d2893694e9bb2c905b3d556d750d5cc79a99d7ace1 |