A fully typed, validated async client for the dYdX Indexer, Node and CosmosSDK/CometBFT APIs.
Project description
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:
...
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
Project details
Release history Release notifications | RSS feed
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.2.tar.gz
(263.2 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.2-py3-none-any.whl
(406.8 kB
view details)
File details
Details for the file typed_dydx-2.0.2.tar.gz.
File metadata
- Download URL: typed_dydx-2.0.2.tar.gz
- Upload date:
- Size: 263.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1deca590610b4dd5536a140fddf51c8bd9d3feaac2f7f547db3d13bb4bf4f526
|
|
| MD5 |
5929335cfa06646a8c36d0bcb189941a
|
|
| BLAKE2b-256 |
5054699af758fa2a80817a2f09aadb28facbd3fb0e59d045b72f91bfe299cd2c
|
File details
Details for the file typed_dydx-2.0.2-py3-none-any.whl.
File metadata
- Download URL: typed_dydx-2.0.2-py3-none-any.whl
- Upload date:
- Size: 406.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fc52896d04f715fb8fa5b44f2be5ef4f53dafd5527d2d25f738ff3b66509246
|
|
| MD5 |
398cd27af9815264c743586ff17923b8
|
|
| BLAKE2b-256 |
ba571c4b40730cb6ca41c72f2c76216b945f24f54c64fe90cecc15f8167307bb
|