A fully typed, validated async client for the dYdX Indexer, Node, Cosmos gRPC, and CometBFT APIs.
- Documentation: https://dydx.tribulnation.com
- Source Code: https://github.com/tribulnation/dydx
from dydx import Dydx
async with Dydx.testnet(public=True) as client:
market = await client.indexer.data.get_market('BTC-USD')
stream = await client.indexer.streams.candles('ETH-USD', resolution='1MIN')
async for candle in stream:
await stream.unsubscribe()
balances = await client.chain.bank.all_balances('dydx1...')
block = await client.chain.comet.block()
result = await client.node.place_order(market, order={
'side': 'BUY',
'size': '0.0001',
'price': '50000',
'flags': 'LONG_TERM'
})
Why Typed dYdX?
- 🎯 Precise Types: Typed endpoint inputs and responses across dYdX services.
- ✅ Runtime Validation: Validated Indexer and Comet responses by default.
- ⚡ Async First: HTTP, WebSocket streams, gRPC queries, and transaction helpers.
- 📚 Full dYdX Surface:
client.indexer,client.chain, andclient.node.
Installation
pip install typed-dydx
How To
- Place & Manage Orders
- Fetch Market Data
- Manage Account Data
- Query Chain State
- Inspect Blocks & Transactions
- Listen To Streams
- Paginate Through Results
Reference
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
typed_dydx-2.0.9.tar.gz
(255.7 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
typed_dydx-2.0.9-py3-none-any.whl
(404.4 kB
view details)
File details
Details for the file typed_dydx-2.0.9.tar.gz.
File metadata
- Download URL: typed_dydx-2.0.9.tar.gz
- Upload date:
- Size: 255.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43fead4cb0de4f51be308bd471a1e92ec4f0c3ddcc4d1e8f0588d8c83af5df9f
|
|
| MD5 |
7017f7093dcd9b52a8f8552d20af654d
|
|
| BLAKE2b-256 |
9f9473a52b0572ad0f15e5ba25799f3ddaad7145804c75c3ad2c8bcfd482372c
|
File details
Details for the file typed_dydx-2.0.9-py3-none-any.whl.
File metadata
- Download URL: typed_dydx-2.0.9-py3-none-any.whl
- Upload date:
- Size: 404.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9bf0fc501c5b5557d696162cc606c32f134b32929acf716d7c22b2a56bd52481
|
|
| MD5 |
3e132427748dfd5cda0e90991ab03c96
|
|
| BLAKE2b-256 |
a935ac1ad16f570a8f1309728a87d3de5306d5076ef09517d4d89eccb18fe9c6
|