-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test futures API endpoints #25
Comments
Examples aren't working. Run with:
Error is:
|
Please kindly point to the outdated endpoints so I can remove the methods. |
@seongs1024 it's just that the endpoint needs to be removed from the API as it's not available anymore |
The error occurs from the function, Other functions are working well, so that the example is running if below codes are commented out. // from the line 107 to 112 in ./examples/binance-futures.rs
async fn market_data() {
/* snippet */
match market.get_all_liquidation_orders().await {
Ok(LiquidationOrders::AllLiquidationOrders(answer)) => {
info!("First liquidation order: {:?}", answer[0])
}
Err(e) => error!("Error: {:?}", e),
}
/* snippet */
} |
From binance API doc, the endpoint for
So the functionality can be served only by websocket. |
@seongs1024 I removed the method from 1.1.9 |
Hi, I implemented some functions for endpoints in account |
Hi, I am a heavy futures API user. Can there be an implementation to transfer futures assets to spot wallet? https://binance-docs.github.io/apidocs/spot/en/#new-future-account-transfer-user_data @Igosuki |
Going to use futures in production so this part of the client has to be battle tested.
The text was updated successfully, but these errors were encountered: