Rustlang implementation of the BitGo API.
BitGo provides a simple and robust RESTful API and client SDK to integrate digital currency wallets with your application. In Platform V2, we have extended our API and SDK to allow the management of multiple digital currencies and wallets through a single, unified interface.
The BitGo SDK enables the following:
Make sure you have the below line in your Cargo.toml:
toml
[dependencies]
bitgo_api = {version="0.1.11"}
You can mock the APIs for testing purpose like this:
``` let mut mock = MockBitGo::new(); mock.expectcreateaddress().return_const(Ok( json!({ "address": "2MvrwRYBAuRtPTiZ5MyKg42Ke55W3fZJfZS" }), ));
let v = mock.createaddress("any", " any").await.unwrap(); asserteq!( valueorerror(v, "address").unwrap().to_owned(), "2MvrwRYBAuRtPTiZ5MyKg42Ke55W3fZJfZS" ); ```
This project is licensed under the [MIT license].
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in BitGo by you, shall be licensed as Apache, without any additional terms or conditions.