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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
use crate::types::{
AccountBalanceRequest, AccountBalanceResponse, AccountCoinsRequest, AccountCoinsResponse,
AccountFaucetRequest, BlockRequest, BlockResponse, BlockTransactionRequest,
BlockTransactionResponse, ConstructionCombineRequest, ConstructionCombineResponse,
ConstructionDeriveRequest, ConstructionDeriveResponse, ConstructionHashRequest,
ConstructionMetadataRequest, ConstructionMetadataResponse, ConstructionParseRequest,
ConstructionParseResponse, ConstructionPayloadsRequest, ConstructionPayloadsResponse,
ConstructionPreprocessRequest, ConstructionPreprocessResponse, ConstructionSubmitRequest,
EventsBlocksRequest, EventsBlocksResponse, MempoolResponse, MempoolTransactionRequest,
MempoolTransactionResponse, MetadataRequest, NetworkIdentifier, NetworkListResponse,
NetworkOptionsResponse, NetworkRequest, NetworkStatusResponse, SearchTransactionsRequest,
SearchTransactionsResponse, TransactionIdentifierResponse,
};
use anyhow::Result;
use rosetta_core::types::{CallRequest, CallResponse};
use serde::{de::DeserializeOwned, Serialize};
#[derive(Clone)]
pub struct Client {
http: surf::Client,
}
impl Client {
pub fn new(url: &str) -> Result<Self> {
let http = surf::Config::new().set_base_url(url.parse()?).try_into()?;
Ok(Self { http })
}
async fn post<Q: Serialize, R: DeserializeOwned>(&self, path: &str, request: &Q) -> Result<R> {
let mut res = self
.http
.post(path)
.body_json(request)
.map_err(|e| e.into_inner())?
.send()
.await
.map_err(|e| e.into_inner())?;
match res.status() as u16 {
200 => Ok(res.body_json().await.map_err(|e| e.into_inner())?),
404 => anyhow::bail!("unsupported endpoint {}", path),
500 => {
let error: crate::types::Error =
res.body_json().await.map_err(|e| e.into_inner())?;
log::error!("{:#?}", error);
Err(error.into())
}
_ => anyhow::bail!("unexpected status code {}", res.status()),
}
}
pub async fn network_list(&self) -> Result<Vec<NetworkIdentifier>> {
let request = MetadataRequest { metadata: None };
let response: NetworkListResponse = self.post("/network/list", &request).await?;
Ok(response.network_identifiers)
}
pub async fn network_options(
&self,
network_identifier: NetworkIdentifier,
) -> Result<NetworkOptionsResponse> {
let request = NetworkRequest {
network_identifier,
metadata: None,
};
self.post("/network/options", &request).await
}
pub async fn network_status(
&self,
network_identifier: NetworkIdentifier,
) -> Result<NetworkStatusResponse> {
let request = NetworkRequest {
network_identifier,
metadata: None,
};
self.post("/network/status", &request).await
}
pub async fn account_balance(
&self,
request: &AccountBalanceRequest,
) -> Result<AccountBalanceResponse> {
self.post("/account/balance", &request).await
}
pub async fn account_coins(
&self,
request: &AccountCoinsRequest,
) -> Result<AccountCoinsResponse> {
self.post("/account/coins", &request).await
}
pub async fn account_faucet(
&self,
request: &AccountFaucetRequest,
) -> Result<TransactionIdentifierResponse> {
self.post("/account/faucet", &request).await
}
pub async fn block(&self, request: &BlockRequest) -> Result<BlockResponse> {
self.post("/block", &request).await
}
pub async fn block_transaction(
&self,
request: &BlockTransactionRequest,
) -> Result<BlockTransactionResponse> {
self.post("/block/transaction", &request).await
}
pub async fn mempool(&self, network_identifier: NetworkIdentifier) -> Result<MempoolResponse> {
let request = NetworkRequest {
network_identifier,
metadata: None,
};
self.post("/mempool", &request).await
}
pub async fn mempool_transaction(
&self,
request: &MempoolTransactionRequest,
) -> Result<MempoolTransactionResponse> {
self.post("/mempool/transaction", &request).await
}
pub async fn call(&self, request: &CallRequest) -> Result<CallResponse> {
self.post("/call", &request).await
}
pub async fn construction_combine(
&self,
request: &ConstructionCombineRequest,
) -> Result<ConstructionCombineResponse> {
self.post("/construction/combine", &request).await
}
pub async fn construction_derive(
&self,
request: &ConstructionDeriveRequest,
) -> Result<ConstructionDeriveResponse> {
self.post("/construction/derive", &request).await
}
pub async fn construction_hash(
&self,
request: &ConstructionHashRequest,
) -> Result<TransactionIdentifierResponse> {
self.post("/construction/hash", &request).await
}
pub async fn construction_metadata(
&self,
request: &ConstructionMetadataRequest,
) -> Result<ConstructionMetadataResponse> {
self.post("/construction/metadata", &request).await
}
pub async fn construction_parse(
&self,
request: &ConstructionParseRequest,
) -> Result<ConstructionParseResponse> {
self.post("/construction/parse", &request).await
}
pub async fn construction_payloads(
&self,
request: &ConstructionPayloadsRequest,
) -> Result<ConstructionPayloadsResponse> {
self.post("/construction/payloads", &request).await
}
pub async fn construction_preprocess(
&self,
request: &ConstructionPreprocessRequest,
) -> Result<ConstructionPreprocessResponse> {
self.post("/construction/preprocess", &request).await
}
pub async fn construction_submit(
&self,
request: &ConstructionSubmitRequest,
) -> Result<TransactionIdentifierResponse> {
self.post("/construction/submit", &request).await
}
pub async fn events_blocks(
&self,
request: &EventsBlocksRequest,
) -> Result<EventsBlocksResponse> {
self.post("/events/blocks", &request).await
}
pub async fn search_transactions(
&self,
request: &SearchTransactionsRequest,
) -> Result<SearchTransactionsResponse> {
self.post("/search/transactions", &request).await
}
}