1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
use crate::{BlockingClient, Error, Result};
use diem_types::transaction::{authenticator::AuthenticationKey, SignedTransaction};
pub struct FaucetClient {
url: String,
json_rpc_client: BlockingClient,
}
impl FaucetClient {
pub fn new(url: String, json_rpc_url: String) -> Self {
Self {
url,
json_rpc_client: BlockingClient::new(json_rpc_url),
}
}
pub fn fund(
&self,
currency_code: &str,
auth_key: AuthenticationKey,
amount: u64,
) -> Result<()> {
let client = reqwest::blocking::Client::new();
let url = format!(
"{}?amount={}&auth_key={}¤cy_code={}&return_txns=true",
self.url, amount, auth_key, currency_code,
);
let response = client.post(&url).send().map_err(Error::request)?;
let status_code = response.status();
let body = response.text().map_err(Error::decode)?;
if !status_code.is_success() {
return Err(Error::status(status_code.as_u16()));
}
let bytes = hex::decode(body).map_err(Error::decode)?;
let txns: Vec<SignedTransaction> = bcs::from_bytes(&bytes).map_err(Error::decode)?;
for txn in txns {
self.json_rpc_client
.wait_for_signed_transaction(&txn, None, None)
.map_err(Error::unknown)?;
}
Ok(())
}
}