Work in progress repo of Rust client for dYdX (v3 API).
Install dydx-v3-rust from crates.io. Add the following line to your Cargo.toml
file's dependencies section:
rust
[dependencies]
dydx-v3-rust = "0.1.0"
tokio = { version = "1.18.2", features = ["full"] }
Sample code to call Get Markets API
```rust use dydxv3rust::*;
async fn main() { let options: ClientOptions = ClientOptions { networkid: None, apitimeout: None, apikeycredentials: None, starkprivatekey: None, web3: None, ethprivatekey: None, }; let client = DydxClient::new("https://api.dydx.exchange", options); let response = client .public .getmarkets(Some(types::DydxMarket::BTCUSD)) .await .unwrap(); dbg!(response); } ```
Sample code to call Get Accounts API
rust
use dydx_v3_rust::DydxClient;
see more examples in tests folder
If you send new orders or withdrawals, you need python shared library to generate DYDX-SIGNATURE through PyO3.
Here is sample installation steps via pyenv
```sh
brew install pyenv
$ echo 'export PYENVROOT="$HOME/.pyenv"' >> ~/.bashprofile $ echo 'export PATH="$PYENVROOT/bin:$PATH"' >> ~/.bashprofile $ echo 'eval "$(pyenv init -)"' >> ~/.bashprofile $ source ~/.bashprofile
env PYTHONCONFIGUREOPTS="--enable-shared" pyenv install 3.9.9 pyenv local 3.9.9 ```
Full installation guide: https://github.com/pyenv/pyenv#set-up-your-shell-environment-for-pyenv