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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
/// Module with a set of node answer struct
pub mod response;

use response::*;

/// Mainnet node REST API
pub const MAINNET_URL: &str = "https://nodes.wavesnodes.com";
/// Testnet node REST API
pub const TESTNET_URL: &str = "https://nodes-testnet.wavesnodes.com";
/// Stagenet node REST API
pub const STAGENET_URL: &str = "https://nodes-stagenet.wavesnodes.com";
/// Local node REST API
pub const LOCAL_URL: &str = "http://127.0.0.1:6869";

/// [`Node`] client for executing asynchronous requests.
///
/// [`Node`] client has url as the configuration value, but the default is set to what is usually the most commonly desired value. Use [`Node::from_url()`] to create the node client.
pub struct Node<'a> {
    url: &'a str,
}

impl<'a> Default for Node<'a> {
    fn default() -> Self {
        Node { url: MAINNET_URL }
    }
}

impl<'a> Node<'a> {
    /// Create an [`Node`] from url string.
    pub fn from_url(url: &'a str) -> Self {
        Node { url }
    }

    /// Get the regular balance in WAVES at a given address
    /// ```no_run
    /// use gemblockchain::node::{Node, MAINNET_URL};
    /// use gemblockchain::util::Amount;
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
    ///     let node = Node::from_url(MAINNET_URL);
    ///
    ///     let result = node
    ///         .get_balance("3PEktVux2RhchSN63DsDo4b4mz4QqzKSeDv")
    ///         .await?;
    ///
    ///     let balance = Amount::from_wavelet(result.balance());
    ///
    ///     println!("Balance: {} WAVES", balance);
    ///
    ///     Ok(())
    /// }
    /// ```
    pub async fn get_balance(
        &self,
        address: &str,
    ) -> Result<ResponseBalance, Box<dyn std::error::Error>> {
        let url = format!("{}/addresses/balance/{}", self.url, address);

        let res = reqwest::get(url).await?.json::<ResponseBalance>().await?;

        Ok(res)
    }

    /// Get the available, regular, generating, and effective balance
    /// ```no_run
    /// use gemblockchain::node::{Node, MAINNET_URL};
    /// use gemblockchain::util::Amount;
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
    ///     let node = Node::from_url(MAINNET_URL);
    ///
    ///     let result = node
    ///         .get_balance_details("3PEktVux2RhchSN63DsDo4b4mz4QqzKSeDv")
    ///         .await?;
    ///
    ///     let balance = Amount::from_wavelet(result.regular());
    ///
    ///     println!("Regular balance: {} WAVES", balance);
    ///
    ///     Ok(())
    /// }
    /// ```
    pub async fn get_balance_details(
        &self,
        address: &str,
    ) -> Result<ResponseBalanceDetails, Box<dyn std::error::Error>> {
        let url = format!("{}/addresses/balance/details/{}", self.url, address);

        let res = reqwest::get(url)
            .await?
            .json::<ResponseBalanceDetails>()
            .await?;

        Ok(res)
    }

    /// Get an address associated with a given alias.
    /// ```no_run
    /// use gemblockchain::node::{Node, MAINNET_URL};
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
    ///     let node = Node::from_url(MAINNET_URL);
    ///
    ///     let result = node.get_address_by_alias("vlzhr").await?;
    ///
    ///     println!("vlzhr -> {}", result.address());
    ///
    ///     Ok(())
    /// }
    /// ```
    pub async fn get_address_by_alias(
        &self,
        alias: &str,
    ) -> Result<ResponseAddress, Box<dyn std::error::Error>> {
        let url = format!("{}/alias/by-alias/{}", self.url, alias);

        let res = reqwest::get(url).await?.json::<ResponseAddress>().await?;

        Ok(res)
    }

    /// Get detailed information about given asset
    /// ```no_run
    /// use gemblockchain::node::{Node, MAINNET_URL};
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
    ///     let node = Node::from_url(MAINNET_URL);
    ///
    ///     let result = node
    ///         .get_assets_details("34N9YcEETLWn93qYQ64EsP1x89tSruJU44RrEMSXXEPJ")
    ///         .await?;
    ///
    ///     println!("{:?}", result);
    ///
    ///     Ok(())
    /// }
    /// ```
    pub async fn get_assets_details(
        &self,
        asset_id: &str,
    ) -> Result<ResponseAsset, Box<dyn std::error::Error>> {
        let url = format!("{}/assets/details/{}", self.url, asset_id);

        let res = reqwest::get(url).await?.json::<ResponseAsset>().await?;

        Ok(res)
    }

    /// Get headers of a given block
    /// ```no_run
    /// use gemblockchain::node::{Node, MAINNET_URL};
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
    ///     let node = Node::from_url(MAINNET_URL);
    ///
    ///     let result = node
    ///         .get_blocks_headers("3cBRMpKHjPNKUXkgGJNGAaPviY4LmE8urTwd4B2J8v9M")
    ///         .await?;
    ///
    ///     println!("{:?}", result);
    ///
    ///     Ok(())
    /// }
    /// ```
    pub async fn get_blocks_headers(
        &self,
        id: &str,
    ) -> Result<ResponseBlock, Box<dyn std::error::Error>> {
        let url = format!("{}/blocks/headers/{}", self.url, id);

        let res = reqwest::get(url).await?.json::<ResponseBlock>().await?;

        Ok(res)
    }

    /// Get headers of a given block
    /// ```no_run
    /// use gemblockchain::node::{Node, MAINNET_URL};
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
    ///     let node = Node::from_url(MAINNET_URL);
    ///
    ///     let result = node.get_blocks_headers_at_height(3341874).await?;
    ///
    ///     println!("{:?}", result);
    ///
    ///     Ok(())
    /// }
    /// ```
    pub async fn get_blocks_headers_at_height(
        &self,
        height: u64,
    ) -> Result<ResponseBlock, Box<dyn std::error::Error>> {
        let url = format!("{}/blocks/headers/at/{}", self.url, height);

        let res = reqwest::get(url).await?.json::<ResponseBlock>().await?;

        Ok(res)
    }

    /// Get the block at the current blockchain height
    /// ```no_run
    /// use gemblockchain::node::{Node, MAINNET_URL};
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
    ///     let node = Node::from_url(MAINNET_URL);
    ///
    ///     let result = node.get_blocks_last().await?;
    ///
    ///     println!("{:?}", result);
    ///
    ///     Ok(())
    /// }
    /// ```
    pub async fn get_blocks_last(&self) -> Result<ResponseBlock, Box<dyn std::error::Error>> {
        let url = format!("{}/blocks/last", self.url);

        let res = reqwest::get(url).await?.json::<ResponseBlock>().await?;

        Ok(res)
    }

    /// Get lease parameters by lease ID
    /// ```no_run
    /// use gemblockchain::node::{Node, MAINNET_URL};
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
    ///     let node = Node::from_url(MAINNET_URL);
    ///
    ///     let result = node
    ///         .get_leasing_info("YwVPf35VckF4Yu5XwF18P9VwWwfQVGAQmqDp4bpgtuV")
    ///         .await?;
    ///
    ///     println!("{:?}", result);
    ///
    ///     Ok(())
    /// }
    /// ```
    pub async fn get_leasing_info(
        &self,
        id: &str,
    ) -> Result<ResponseLease, Box<dyn std::error::Error>> {
        let url = format!("{}/leasing/info/{}", self.url, id);

        let res = reqwest::get(url).await?.json::<ResponseLease>().await?;

        Ok(res)
    }

    /// Get node version
    /// ```no_run
    /// use gemblockchain::node::{Node, MAINNET_URL};
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
    ///     let node = Node::from_url(MAINNET_URL);
    ///
    ///     let result = node.get_node_version().await?;
    ///
    ///     println!("Version: {}", result.version());
    ///
    ///     Ok(())
    /// }
    /// ```
    pub async fn get_node_version(
        &self,
    ) -> Result<ResponseNodeVersion, Box<dyn std::error::Error>> {
        let url = format!("{}/node/version", self.url);

        let res = reqwest::get(url)
            .await?
            .json::<ResponseNodeVersion>()
            .await?;

        Ok(res)
    }

    /// Get a transaction by its ID
    /// ```no_run
    /// use gemblockchain::node::{Node, MAINNET_URL};
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
    ///     let node = Node::from_url(MAINNET_URL);
    ///
    ///     let result = node
    ///         .get_transactions_info("YwVPf35VckF4Yu5XwF18P9VwWwfQVGAQmqDp4bpgtuV")
    ///         .await?;
    ///
    ///     println!("{:?}", result);
    ///
    ///     Ok(())
    /// }
    /// ```
    pub async fn get_transactions_info(
        &self,
        id: &str,
    ) -> Result<ResponseTransaction, Box<dyn std::error::Error>> {
        let url = format!("{}/transactions/info/{}", self.url, id);

        let res = reqwest::get(url)
            .await?
            .json::<ResponseTransaction>()
            .await?;

        Ok(res)
    }

    /// Get transaction status by its ID
    /// ```no_run
    /// use gemblockchain::node::{Node, MAINNET_URL};
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
    ///     let node = Node::from_url(MAINNET_URL);
    ///
    ///     let result = node
    ///         .get_transactions_status("YwVPf35VckF4Yu5XwF18P9VwWwfQVGAQmqDp4bpgtuV")
    ///         .await?;
    ///
    ///     println!("{:?}", result);
    ///
    ///     Ok(())
    /// }
    /// ```
    pub async fn get_transactions_status(
        &self,
        id: &str,
    ) -> Result<ResponseTransactionStatus, Box<dyn std::error::Error>> {
        let url = format!("{}/transactions/status/{}", self.url, id);

        let res = reqwest::get(url)
            .await?
            .json::<ResponseTransactionStatus>()
            .await?;

        Ok(res)
    }
}