#![cfg_attr(docsrs, feature(doc_auto_cfg))] #![doc = include_str!("../README.md")] #![deny(missing_docs)] #![cfg_attr(not(feature = "std"), no_std)] use core::fmt::Debug; #[cfg(not(feature = "std"))] use alloc::boxed::Box; use std_shims::{ vec::Vec, io, string::{String, ToString}, }; use zeroize::Zeroize; use async_trait::async_trait; use curve25519_dalek::edwards::EdwardsPoint; use serde::{Serialize, Deserialize, de::DeserializeOwned}; use serde_json::{Value, json}; use monero_serai::{ io::*, transaction::{Input, Timelock, Transaction}, block::Block, }; // Number of blocks the fee estimate will be valid for // https://github.com/monero-project/monero/blob/94e67bf96bbc010241f29ada6abc89f49a81759c/ // src/wallet/wallet2.cpp#L121 const GRACE_BLOCKS_FOR_FEE_ESTIMATE: u64 = 10; /// An error from the RPC. #[derive(Clone, PartialEq, Eq, Debug)] #[cfg_attr(feature = "std", derive(thiserror::Error))] pub enum RpcError { /// An internal error. #[cfg_attr(feature = "std", error("internal error ({0})"))] InternalError(String), /// A connection error with the node. #[cfg_attr(feature = "std", error("connection error ({0})"))] ConnectionError(String), /// The node is invalid per the expected protocol. #[cfg_attr(feature = "std", error("invalid node ({0})"))] InvalidNode(String), /// Requested transactions weren't found. #[cfg_attr(feature = "std", error("transactions not found"))] TransactionsNotFound(Vec<[u8; 32]>), /// The transaction was pruned. /// /// Pruned transactions are not supported at this time. #[cfg_attr(feature = "std", error("pruned transaction"))] PrunedTransaction, /// A transaction (sent or received) was invalid. #[cfg_attr(feature = "std", error("invalid transaction ({0:?})"))] InvalidTransaction([u8; 32]), /// The returned fee was unusable. #[cfg_attr(feature = "std", error("unexpected fee response"))] InvalidFee, /// The priority intended for use wasn't usable. #[cfg_attr(feature = "std", error("invalid priority"))] InvalidPriority, } /// A struct containing a fee rate. /// /// The fee rate is defined as a per-weight cost, along with a mask for rounding purposes. #[derive(Clone, Copy, PartialEq, Eq, Debug, Zeroize)] pub struct FeeRate { /// The fee per-weight of the transaction. pub per_weight: u64, /// The mask to round with. pub mask: u64, } impl FeeRate { /// Construct a new fee rate. pub fn new(per_weight: u64, mask: u64) -> Result { if (per_weight == 0) || (mask == 0) { Err(RpcError::InvalidFee)?; } Ok(FeeRate { per_weight, mask }) } /// Write the FeeRate. pub fn write(&self, w: &mut impl io::Write) -> io::Result<()> { w.write_all(&self.per_weight.to_le_bytes())?; w.write_all(&self.mask.to_le_bytes()) } /// Serialize the FeeRate to a `Vec`. pub fn serialize(&self) -> Vec { let mut res = Vec::with_capacity(16); self.write(&mut res).unwrap(); res } /// Read a FeeRate. pub fn read(r: &mut impl io::Read) -> io::Result { Ok(FeeRate { per_weight: read_u64(r)?, mask: read_u64(r)? }) } /// Calculate the fee to use from the weight. /// /// This function may panic if any of the `FeeRate`'s fields are zero. pub fn calculate_fee_from_weight(&self, weight: usize) -> u64 { let fee = self.per_weight * u64::try_from(weight).unwrap(); let fee = ((fee + self.mask - 1) / self.mask) * self.mask; debug_assert_eq!(weight, self.calculate_weight_from_fee(fee), "Miscalculated weight from fee"); fee } /// Calculate the weight from the fee. /// /// This function may panic if any of the `FeeRate`'s fields are zero. pub fn calculate_weight_from_fee(&self, fee: u64) -> usize { usize::try_from(fee / self.per_weight).unwrap() } } /// The priority for the fee. /// /// Higher-priority transactions will be included in blocks earlier. #[derive(Clone, Copy, PartialEq, Eq, Debug)] #[allow(non_camel_case_types)] pub enum FeePriority { /// The `Unimportant` priority, as defined by Monero. Unimportant, /// The `Normal` priority, as defined by Monero. Normal, /// The `Elevated` priority, as defined by Monero. Elevated, /// The `Priority` priority, as defined by Monero. Priority, /// A custom priority. Custom { /// The numeric representation of the priority, as used within the RPC. priority: u32, }, } /// https://github.com/monero-project/monero/blob/ac02af92867590ca80b2779a7bbeafa99ff94dcb/ /// src/simplewallet/simplewallet.cpp#L161 impl FeePriority { pub(crate) fn fee_priority(&self) -> u32 { match self { FeePriority::Unimportant => 1, FeePriority::Normal => 2, FeePriority::Elevated => 3, FeePriority::Priority => 4, FeePriority::Custom { priority, .. } => *priority, } } } #[derive(Deserialize, Debug)] struct EmptyResponse {} #[derive(Deserialize, Debug)] struct JsonRpcResponse { result: T, } #[derive(Deserialize, Debug)] struct TransactionResponse { tx_hash: String, as_hex: String, pruned_as_hex: String, } #[derive(Deserialize, Debug)] struct TransactionsResponse { #[serde(default)] missed_tx: Vec, txs: Vec, } /// The response to an output query. #[derive(Deserialize, Debug)] pub struct OutputResponse { /// The height of the block this output was added to the chain in. pub height: usize, /// If the output is unlocked, per the node's local view. pub unlocked: bool, /// The output's key. pub key: String, /// The output's commitment. pub mask: String, /// The transaction which created this output. pub txid: String, } fn rpc_hex(value: &str) -> Result, RpcError> { hex::decode(value).map_err(|_| RpcError::InvalidNode("expected hex wasn't hex".to_string())) } fn hash_hex(hash: &str) -> Result<[u8; 32], RpcError> { rpc_hex(hash)?.try_into().map_err(|_| RpcError::InvalidNode("hash wasn't 32-bytes".to_string())) } fn rpc_point(point: &str) -> Result { decompress_point( rpc_hex(point)? .try_into() .map_err(|_| RpcError::InvalidNode(format!("invalid point: {point}")))?, ) .ok_or_else(|| RpcError::InvalidNode(format!("invalid point: {point}"))) } // Read an EPEE VarInt, distinct from the VarInts used throughout the rest of the protocol fn read_epee_vi(reader: &mut R) -> io::Result { let vi_start = read_byte(reader)?; let len = match vi_start & 0b11 { 0 => 1, 1 => 2, 2 => 4, 3 => 8, _ => unreachable!(), }; let mut vi = u64::from(vi_start >> 2); for i in 1 .. len { vi |= u64::from(read_byte(reader)?) << (((i - 1) * 8) + 6); } Ok(vi) } /// An RPC connection to a Monero daemon. /// /// This is abstract such that users can use an HTTP library (which being their choice), a /// Tor/i2p-based transport, or even a memory buffer an external service somehow routes. /// /// While no implementors are directly provided, [monero-simple-request-rpc]( /// https://github.com/serai-dex/serai/tree/develop/coins/monero/rpc/simple-request /// ) is recommended. #[async_trait] pub trait Rpc: Sync + Clone + Debug { /// Perform a POST request to the specified route with the specified body. /// /// The implementor is left to handle anything such as authentication. async fn post(&self, route: &str, body: Vec) -> Result, RpcError>; /// Perform a RPC call to the specified route with the provided parameters. /// /// This is NOT a JSON-RPC call. They use a route of "json_rpc" and are available via /// `json_rpc_call`. async fn rpc_call( &self, route: &str, params: Option, ) -> Result { let res = self .post( route, if let Some(params) = params { serde_json::to_string(¶ms).unwrap().into_bytes() } else { vec![] }, ) .await?; let res_str = std_shims::str::from_utf8(&res) .map_err(|_| RpcError::InvalidNode("response wasn't utf-8".to_string()))?; serde_json::from_str(res_str) .map_err(|_| RpcError::InvalidNode(format!("response wasn't the expected json: {res_str}"))) } /// Perform a JSON-RPC call with the specified method with the provided parameters. async fn json_rpc_call( &self, method: &str, params: Option, ) -> Result { let mut req = json!({ "method": method }); if let Some(params) = params { req.as_object_mut().unwrap().insert("params".into(), params); } Ok(self.rpc_call::<_, JsonRpcResponse>("json_rpc", Some(req)).await?.result) } /// Perform a binary call to the specified route with the provided parameters. async fn bin_call(&self, route: &str, params: Vec) -> Result, RpcError> { self.post(route, params).await } /// Get the active blockchain protocol version. /// /// This is specifically the major version within the most recent block header. async fn get_hardfork_version(&self) -> Result { #[derive(Deserialize, Debug)] struct HeaderResponse { major_version: u8, } #[derive(Deserialize, Debug)] struct LastHeaderResponse { block_header: HeaderResponse, } Ok( self .json_rpc_call::("get_last_block_header", None) .await? .block_header .major_version, ) } /// Get the height of the Monero blockchain. /// /// The height is defined as the amount of blocks on the blockchain. For a blockchain with only /// its genesis block, the height will be 1. async fn get_height(&self) -> Result { #[derive(Deserialize, Debug)] struct HeightResponse { height: usize, } Ok(self.rpc_call::, HeightResponse>("get_height", None).await?.height) } /// Get the specified transactions. /// /// The received transactions will be hashed in order to verify the correct transactions were /// returned. async fn get_transactions(&self, hashes: &[[u8; 32]]) -> Result, RpcError> { if hashes.is_empty() { return Ok(vec![]); } let mut hashes_hex = hashes.iter().map(hex::encode).collect::>(); let mut all_txs = Vec::with_capacity(hashes.len()); while !hashes_hex.is_empty() { // Monero errors if more than 100 is requested unless using a non-restricted RPC const TXS_PER_REQUEST: usize = 100; let this_count = TXS_PER_REQUEST.min(hashes_hex.len()); let txs: TransactionsResponse = self .rpc_call( "get_transactions", Some(json!({ "txs_hashes": hashes_hex.drain(.. this_count).collect::>(), })), ) .await?; if !txs.missed_tx.is_empty() { Err(RpcError::TransactionsNotFound( txs.missed_tx.iter().map(|hash| hash_hex(hash)).collect::>()?, ))?; } all_txs.extend(txs.txs); } all_txs .iter() .enumerate() .map(|(i, res)| { let tx = Transaction::read::<&[u8]>( &mut rpc_hex(if !res.as_hex.is_empty() { &res.as_hex } else { &res.pruned_as_hex })? .as_ref(), ) .map_err(|_| match hash_hex(&res.tx_hash) { Ok(hash) => RpcError::InvalidTransaction(hash), Err(err) => err, })?; // https://github.com/monero-project/monero/issues/8311 if res.as_hex.is_empty() { match tx.prefix().inputs.first() { Some(Input::Gen { .. }) => (), _ => Err(RpcError::PrunedTransaction)?, } } // This does run a few keccak256 hashes, which is pointless if the node is trusted // In exchange, this provides resilience against invalid/malicious nodes if tx.hash() != hashes[i] { Err(RpcError::InvalidNode( "replied with transaction wasn't the requested transaction".to_string(), ))?; } Ok(tx) }) .collect() } /// Get the specified transaction. /// /// The received transaction will be hashed in order to verify the correct transaction was /// returned. async fn get_transaction(&self, tx: [u8; 32]) -> Result { self.get_transactions(&[tx]).await.map(|mut txs| txs.swap_remove(0)) } /// Get the hash of a block from the node. /// /// `number` is the block's zero-indexed position on the blockchain (`0` for the genesis block, /// `height - 1` for the latest block). async fn get_block_hash(&self, number: usize) -> Result<[u8; 32], RpcError> { #[derive(Deserialize, Debug)] struct BlockHeaderResponse { hash: String, } #[derive(Deserialize, Debug)] struct BlockHeaderByHeightResponse { block_header: BlockHeaderResponse, } let header: BlockHeaderByHeightResponse = self.json_rpc_call("get_block_header_by_height", Some(json!({ "height": number }))).await?; hash_hex(&header.block_header.hash) } /// Get a block from the node by its hash. /// /// The received block will be hashed in order to verify the correct block was returned. async fn get_block(&self, hash: [u8; 32]) -> Result { #[derive(Deserialize, Debug)] struct BlockResponse { blob: String, } let res: BlockResponse = self.json_rpc_call("get_block", Some(json!({ "hash": hex::encode(hash) }))).await?; let block = Block::read::<&[u8]>(&mut rpc_hex(&res.blob)?.as_ref()) .map_err(|_| RpcError::InvalidNode("invalid block".to_string()))?; if block.hash() != hash { Err(RpcError::InvalidNode("different block than requested (hash)".to_string()))?; } Ok(block) } /// Get a block from the node by its number. /// /// `number` is the block's zero-indexed position on the blockchain (`0` for the genesis block, /// `height - 1` for the latest block). async fn get_block_by_number(&self, number: usize) -> Result { #[derive(Deserialize, Debug)] struct BlockResponse { blob: String, } let res: BlockResponse = self.json_rpc_call("get_block", Some(json!({ "height": number }))).await?; let block = Block::read::<&[u8]>(&mut rpc_hex(&res.blob)?.as_ref()) .map_err(|_| RpcError::InvalidNode("invalid block".to_string()))?; // Make sure this is actually the block for this number match block.miner_transaction.prefix().inputs.first() { Some(Input::Gen(actual)) => { if usize::try_from(*actual) == Ok(number) { Ok(block) } else { Err(RpcError::InvalidNode("different block than requested (number)".to_string())) } } _ => Err(RpcError::InvalidNode( "block's miner_transaction didn't have an input of kind Input::Gen".to_string(), )), } } /// Get the transactions within a block. /// /// This function returns all transactions in the block, including the miner's transaction. /// /// This function does not verify the returned transactions are the ones committed to by the /// block's header. async fn get_block_transactions(&self, hash: [u8; 32]) -> Result, RpcError> { let block = self.get_block(hash).await?; let mut res = vec![block.miner_transaction]; res.extend(self.get_transactions(&block.transactions).await?); Ok(res) } /// Get the transactions within a block. /// /// This function returns all transactions in the block, including the miner's transaction. /// /// This function does not verify the returned transactions are the ones committed to by the /// block's header. async fn get_block_transactions_by_number( &self, number: usize, ) -> Result, RpcError> { self.get_block_transactions(self.get_block_hash(number).await?).await } /// Get the output indexes of the specified transaction. async fn get_o_indexes(&self, hash: [u8; 32]) -> Result, RpcError> { /* TODO: Use these when a suitable epee serde lib exists #[derive(Serialize, Debug)] struct Request { txid: [u8; 32], } #[derive(Deserialize, Debug)] struct OIndexes { o_indexes: Vec, } */ // Given the immaturity of Rust epee libraries, this is a homegrown one which is only validated // to work against this specific function // Header for EPEE, an 8-byte magic and a version const EPEE_HEADER: &[u8] = b"\x01\x11\x01\x01\x01\x01\x02\x01\x01"; let mut request = EPEE_HEADER.to_vec(); // Number of fields (shifted over 2 bits as the 2 LSBs are reserved for metadata) request.push(1 << 2); // Length of field name request.push(4); // Field name request.extend(b"txid"); // Type of field request.push(10); // Length of string, since this byte array is technically a string request.push(32 << 2); // The "string" request.extend(hash); let indexes_buf = self.bin_call("get_o_indexes.bin", request).await?; let mut indexes: &[u8] = indexes_buf.as_ref(); (|| { let mut res = None; let mut is_okay = false; if read_bytes::<_, { EPEE_HEADER.len() }>(&mut indexes)? != EPEE_HEADER { Err(io::Error::other("invalid header"))?; } let read_object = |reader: &mut &[u8]| -> io::Result> { let fields = read_byte(reader)? >> 2; for _ in 0 .. fields { let name_len = read_byte(reader)?; let name = read_raw_vec(read_byte, name_len.into(), reader)?; let type_with_array_flag = read_byte(reader)?; let kind = type_with_array_flag & (!0x80); let iters = if type_with_array_flag != kind { read_epee_vi(reader)? } else { 1 }; if (&name == b"o_indexes") && (kind != 5) { Err(io::Error::other("o_indexes weren't u64s"))?; } let f = match kind { // i64 1 => |reader: &mut &[u8]| read_raw_vec(read_byte, 8, reader), // i32 2 => |reader: &mut &[u8]| read_raw_vec(read_byte, 4, reader), // i16 3 => |reader: &mut &[u8]| read_raw_vec(read_byte, 2, reader), // i8 4 => |reader: &mut &[u8]| read_raw_vec(read_byte, 1, reader), // u64 5 => |reader: &mut &[u8]| read_raw_vec(read_byte, 8, reader), // u32 6 => |reader: &mut &[u8]| read_raw_vec(read_byte, 4, reader), // u16 7 => |reader: &mut &[u8]| read_raw_vec(read_byte, 2, reader), // u8 8 => |reader: &mut &[u8]| read_raw_vec(read_byte, 1, reader), // double 9 => |reader: &mut &[u8]| read_raw_vec(read_byte, 8, reader), // string, or any collection of bytes 10 => |reader: &mut &[u8]| { let len = read_epee_vi(reader)?; read_raw_vec( read_byte, len.try_into().map_err(|_| io::Error::other("u64 length exceeded usize"))?, reader, ) }, // bool 11 => |reader: &mut &[u8]| read_raw_vec(read_byte, 1, reader), // object, errors here as it shouldn't be used on this call 12 => { |_: &mut &[u8]| Err(io::Error::other("node used object in reply to get_o_indexes")) } // array, so far unused 13 => |_: &mut &[u8]| Err(io::Error::other("node used the unused array type")), _ => |_: &mut &[u8]| Err(io::Error::other("node used an invalid type")), }; let mut bytes_res = vec![]; for _ in 0 .. iters { bytes_res.push(f(reader)?); } let mut actual_res = Vec::with_capacity(bytes_res.len()); match name.as_slice() { b"o_indexes" => { for o_index in bytes_res { actual_res.push(u64::from_le_bytes( o_index .try_into() .map_err(|_| io::Error::other("node didn't provide 8 bytes for a u64"))?, )); } res = Some(actual_res); } b"status" => { if bytes_res .first() .ok_or_else(|| io::Error::other("status wasn't a string"))? .as_slice() != b"OK" { // TODO: Better handle non-OK responses Err(io::Error::other("response wasn't OK"))?; } is_okay = true; } _ => continue, } if is_okay && res.is_some() { break; } } // Didn't return a response with a status // (if the status wasn't okay, we would've already errored) if !is_okay { Err(io::Error::other("response didn't contain a status"))?; } // If the Vec was empty, it would've been omitted, hence the unwrap_or // TODO: Test against a 0-output TX, such as the ones found in block 202612 Ok(res.unwrap_or(vec![])) }; read_object(&mut indexes) })() .map_err(|_| RpcError::InvalidNode("invalid binary response".to_string())) } /// Get the output distribution. /// /// `from` and `to` are heights, not block numbers, and inclusive. async fn get_output_distribution(&self, from: usize, to: usize) -> Result, RpcError> { #[derive(Deserialize, Debug)] struct Distribution { distribution: Vec, } #[derive(Deserialize, Debug)] struct Distributions { distributions: Vec, } let mut distributions: Distributions = self .json_rpc_call( "get_output_distribution", Some(json!({ "binary": false, "amounts": [0], "cumulative": true, "from_height": from, "to_height": to, })), ) .await?; Ok(distributions.distributions.swap_remove(0).distribution) } /// Get the specified outputs from the RingCT (zero-amount) pool. async fn get_outs(&self, indexes: &[u64]) -> Result, RpcError> { #[derive(Deserialize, Debug)] struct OutsResponse { status: String, outs: Vec, } let res: OutsResponse = self .rpc_call( "get_outs", Some(json!({ "get_txid": true, "outputs": indexes.iter().map(|o| json!({ "amount": 0, "index": o })).collect::>() })), ) .await?; if res.status != "OK" { Err(RpcError::InvalidNode("bad response to get_outs".to_string()))?; } Ok(res.outs) } /// Get the specified outputs from the RingCT (zero-amount) pool, but only return them if their /// timelock has been satisfied. /// /// The timelock being satisfied is distinct from being free of the 10-block lock applied to all /// Monero transactions. /// /// The node is trusted for if the output is unlocked unless `fingerprintable_canonical` is set /// to true. If `fingerprintable_canonical` is set to true, the node's local view isn't used, yet /// the transaction's timelock is checked to be unlocked at the specified `height`. This offers a /// canonical decoy selection, yet is fingerprintable as time-based timelocks aren't evaluated /// (and considered locked, preventing their selection). async fn get_unlocked_outputs( &self, indexes: &[u64], height: usize, fingerprintable_canonical: bool, ) -> Result>, RpcError> { let outs: Vec = self.get_outs(indexes).await?; // Only need to fetch txs to do canonical check on timelock let txs = if fingerprintable_canonical { self .get_transactions( &outs.iter().map(|out| hash_hex(&out.txid)).collect::, _>>()?, ) .await? } else { Vec::new() }; // TODO: https://github.com/serai-dex/serai/issues/104 outs .iter() .enumerate() .map(|(i, out)| { // Allow keys to be invalid, though if they are, return None to trigger selection of a new // decoy // Only valid keys can be used in CLSAG proofs, hence the need for re-selection, yet // invalid keys may honestly exist on the blockchain // Only a recent hard fork checked output keys were valid points let Some(key) = decompress_point( rpc_hex(&out.key)? .try_into() .map_err(|_| RpcError::InvalidNode("non-32-byte point".to_string()))?, ) else { return Ok(None); }; Ok(Some([key, rpc_point(&out.mask)?]).filter(|_| { if fingerprintable_canonical { Timelock::Block(height) >= txs[i].prefix().additional_timelock } else { out.unlocked } })) }) .collect() } /// Get the currently estimated fee rate from the node. /// /// This may be manipulated to unsafe levels and MUST be sanity checked. /// /// This MUST NOT be expected to be deterministic in any way. // TODO: Take a sanity check argument async fn get_fee_rate(&self, priority: FeePriority) -> Result { #[derive(Deserialize, Debug)] struct FeeResponse { status: String, fees: Option>, fee: u64, quantization_mask: u64, } let res: FeeResponse = self .json_rpc_call( "get_fee_estimate", Some(json!({ "grace_blocks": GRACE_BLOCKS_FOR_FEE_ESTIMATE })), ) .await?; if res.status != "OK" { Err(RpcError::InvalidFee)?; } if let Some(fees) = res.fees { // https://github.com/monero-project/monero/blob/94e67bf96bbc010241f29ada6abc89f49a81759c/ // src/wallet/wallet2.cpp#L7615-L7620 let priority_idx = usize::try_from(if priority.fee_priority() >= 4 { 3 } else { priority.fee_priority().saturating_sub(1) }) .map_err(|_| RpcError::InvalidPriority)?; if priority_idx >= fees.len() { Err(RpcError::InvalidPriority) } else { FeeRate::new(fees[priority_idx], res.quantization_mask) } } else { // https://github.com/monero-project/monero/blob/94e67bf96bbc010241f29ada6abc89f49a81759c/ // src/wallet/wallet2.cpp#L7569-L7584 // https://github.com/monero-project/monero/blob/94e67bf96bbc010241f29ada6abc89f49a81759c/ // src/wallet/wallet2.cpp#L7660-L7661 let priority_idx = usize::try_from(if priority.fee_priority() == 0 { 1 } else { priority.fee_priority() - 1 }) .map_err(|_| RpcError::InvalidPriority)?; let multipliers = [1, 5, 25, 1000]; if priority_idx >= multipliers.len() { // though not an RPC error, it seems sensible to treat as such Err(RpcError::InvalidPriority)?; } let fee_multiplier = multipliers[priority_idx]; FeeRate::new(res.fee * fee_multiplier, res.quantization_mask) } } /// Publish a transaction. async fn publish_transaction(&self, tx: &Transaction) -> Result<(), RpcError> { #[allow(dead_code)] #[derive(Deserialize, Debug)] struct SendRawResponse { status: String, double_spend: bool, fee_too_low: bool, invalid_input: bool, invalid_output: bool, low_mixin: bool, not_relayed: bool, overspend: bool, too_big: bool, too_few_outputs: bool, reason: String, } let res: SendRawResponse = self .rpc_call("send_raw_transaction", Some(json!({ "tx_as_hex": hex::encode(tx.serialize()) }))) .await?; if res.status != "OK" { Err(RpcError::InvalidTransaction(tx.hash()))?; } Ok(()) } /// Generate blocks, with the specified address receiving the block reward. /// /// Returns the hashes of the generated blocks and the last block's number. // TODO: Take &Address, not &str? async fn generate_blocks( &self, address: &str, block_count: usize, ) -> Result<(Vec<[u8; 32]>, usize), RpcError> { #[derive(Debug, Deserialize)] struct BlocksResponse { blocks: Vec, height: usize, } let res = self .json_rpc_call::( "generateblocks", Some(json!({ "wallet_address": address, "amount_of_blocks": block_count })), ) .await?; let mut blocks = Vec::with_capacity(res.blocks.len()); for block in res.blocks { blocks.push(hash_hex(&block)?); } Ok((blocks, res.height)) } }