Unofficial Rust Library for the Binance Pay API
:warning: The APIs are expected to work fine, still, You might encounter bugs. Please use at your own risk.
The current version implements all the API endpoints as documented in the Binance pay developer documentation.
Make sure the following env variables are set:
To generate the api key visit Developers -
BINANCE_PAY_API_KEY
-BINANCE_PAY_API_SECRET
In your Cargo.toml
file
toml
[dependencies]
binance-pay-rs = "^0"
tokio = { version = "1.18.0", features = ["rt-multi-thread", "macros"] }
In your main.rs
file
```rust use bpay::api::order::create::{ Currency, Env, Goods, GoodsCategory, GoodsType, Request as OrderRequest, TerminalType, }; use bpay::api::Binance; use bpay::client::Client; use bpay::errors::Result; use bpay::utils::create_nonce; use tokio;
async fn main() -> Result<()> { let order = OrderRequest { env: Env { terminaltype: TerminalType::Web, }, merchanttradeno: createnonce(10), orderamount: 10.0, currency: Currency::USDT, goods: Goods { goodstype: GoodsType::VirtualGoods, goodscategory: GoodsCategory::Electronics, referencegoodsid: "sku1234".into(), goodsname: "Laptop".into(), goods_detail: None, }, };
let client = Client::from_env();
let create_order_result = order.create(&client).await?;
println!(
"This url can be sent across to complete the payment procedure: {}",
create_order_result.universal_url
);
Ok(())
} ```
sh
cargo run --example notification_axum_server
Simply create a pull request. Properly documented code and tests.
To run the tests:
sh
cargo t