breez_sdk_core/
chain.rs

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
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
use std::sync::Arc;

use anyhow::Result;
use sdk_common::prelude::*;
use serde::{Deserialize, Serialize};

use crate::bitcoin::hashes::hex::FromHex;
use crate::bitcoin::{OutPoint, Txid};
use crate::error::{SdkError, SdkResult};

pub const DEFAULT_MEMPOOL_SPACE_URL: &str = "https://mempool.space/api";

#[tonic::async_trait]
pub trait ChainService: Send + Sync {
    async fn recommended_fees(&self) -> SdkResult<RecommendedFees>;
    /// Gets up to 50 onchain and up to 25 mempool transactions associated with this address.
    ///
    /// See <https://mempool.space/docs/api/rest#get-address-transactions>
    async fn address_transactions(&self, address: String) -> SdkResult<Vec<OnchainTx>>;
    async fn current_tip(&self) -> SdkResult<u32>;
    /// Gets the spending status of all tx outputs for this tx.
    ///
    /// See <https://mempool.space/docs/api/rest#get-transaction-outspends>
    async fn transaction_outspends(&self, txid: String) -> SdkResult<Vec<Outspend>>;
    /// If successful, it returns the transaction ID. Otherwise returns an `Err` describing the error.
    async fn broadcast_transaction(&self, tx: Vec<u8>) -> SdkResult<String>;
}

pub trait RedundantChainServiceTrait: ChainService {
    fn from_base_urls(rest_client: Arc<dyn RestClient>, base_urls: Vec<String>) -> Self;
}

#[derive(Clone)]
pub struct RedundantChainService {
    instances: Vec<MempoolSpace>,
}
impl RedundantChainServiceTrait for RedundantChainService {
    fn from_base_urls(rest_client: Arc<dyn RestClient>, base_urls: Vec<String>) -> Self {
        Self {
            instances: base_urls
                .iter()
                .map(|url: &String| url.trim_end_matches('/'))
                .map(|url| MempoolSpace::from_base_url(rest_client.clone(), url))
                .collect(),
        }
    }
}

#[tonic::async_trait]
impl ChainService for RedundantChainService {
    async fn recommended_fees(&self) -> SdkResult<RecommendedFees> {
        for inst in &self.instances {
            match inst.recommended_fees().await {
                Ok(res) => {
                    return Ok(res);
                }
                Err(e) => error!("Call to chain service {} failed: {e}", inst.base_url),
            }
        }
        Err(SdkError::service_connectivity(
            "All chain service instances failed",
        ))
    }

    async fn address_transactions(&self, address: String) -> SdkResult<Vec<OnchainTx>> {
        for inst in &self.instances {
            match inst.address_transactions(address.clone()).await {
                Ok(res) => {
                    return Ok(res);
                }
                Err(e) => error!("Call to chain service {} failed: {e}", inst.base_url),
            }
        }
        Err(SdkError::service_connectivity(
            "All chain service instances failed",
        ))
    }

    async fn current_tip(&self) -> SdkResult<u32> {
        for inst in &self.instances {
            match inst.current_tip().await {
                Ok(res) => {
                    return Ok(res);
                }
                Err(e) => error!("Call to chain service {} failed: {e}", inst.base_url),
            }
        }
        Err(SdkError::service_connectivity(
            "All chain service instances failed",
        ))
    }

    async fn transaction_outspends(&self, txid: String) -> SdkResult<Vec<Outspend>> {
        for inst in &self.instances {
            match inst.transaction_outspends(txid.clone()).await {
                Ok(res) => {
                    return Ok(res);
                }
                Err(e) => error!("Call to chain service {} failed: {e}", inst.base_url),
            }
        }
        Err(SdkError::service_connectivity(
            "All chain service instances failed",
        ))
    }

    async fn broadcast_transaction(&self, tx: Vec<u8>) -> SdkResult<String> {
        for inst in &self.instances {
            match inst.broadcast_transaction(tx.clone()).await {
                Ok(res) => {
                    return Ok(res);
                }
                Err(e) => error!("Call to chain service {} failed: {e}", inst.base_url),
            }
        }
        Err(SdkError::service_connectivity(
            "All chain service instances failed",
        ))
    }
}

#[derive(Clone)]
pub struct Utxo {
    pub out: OutPoint,
    pub value: u64,
    pub block_height: Option<u32>,
}

#[derive(Clone)]
pub struct AddressUtxos {
    pub unconfirmed: Vec<Utxo>,
    pub confirmed: Vec<Utxo>,
}

impl AddressUtxos {
    pub(crate) fn unconfirmed_sats(&self) -> u64 {
        self.unconfirmed
            .iter()
            .fold(0, |accum, item| accum + item.value)
    }

    pub(crate) fn unconfirmed_tx_ids(&self) -> Vec<String> {
        self.unconfirmed
            .iter()
            .map(|c| c.out.txid.to_string())
            .collect()
    }

    pub(crate) fn confirmed_sats(&self) -> u64 {
        self.confirmed
            .iter()
            .fold(0, |accum, item| accum + item.value)
    }

    pub(crate) fn confirmed_tx_ids(&self) -> Vec<String> {
        self.confirmed
            .iter()
            .map(|c| c.out.txid.to_string())
            .collect()
    }

    /// Get the highest block height of all confirmed transactions that paid to the given onchain address
    pub(crate) fn _confirmed_block(&self) -> u32 {
        self.confirmed.iter().fold(0, |b, item| {
            let confirmed_block = item.block_height.unwrap_or_default();
            if confirmed_block != 0 || confirmed_block < b {
                confirmed_block
            } else {
                b
            }
        })
    }
}

/// Gets unspent tx outputs. Specifically filters out inbound utxos that have been spent.
/// If include_unconfirmed_spends is true, then the result won't include utxos that were spent
/// in unconfirmed transactions.
pub(crate) fn get_utxos(
    address: String,
    transactions: Vec<OnchainTx>,
    include_unconfirmed_spends: bool,
) -> Result<AddressUtxos> {
    let mut spent_outputs: Vec<OutPoint> = Vec::new();
    let mut utxos: Vec<Utxo> = Vec::new();
    for tx in transactions.iter() {
        for vin in tx.vin.iter() {
            if vin.prevout.scriptpubkey_address == address.clone()
                && (include_unconfirmed_spends || tx.status.confirmed)
            {
                spent_outputs.push(OutPoint {
                    txid: Txid::from_hex(vin.txid.as_str())?,
                    vout: vin.vout,
                })
            }
        }
    }

    for tx in transactions.iter() {
        for (index, vout) in tx.vout.iter().enumerate() {
            if vout.scriptpubkey_address == address {
                let outpoint = OutPoint {
                    txid: Txid::from_hex(tx.txid.as_str())?,
                    vout: index as u32,
                };
                if !spent_outputs.contains(&outpoint) {
                    utxos.push(Utxo {
                        out: outpoint,
                        value: vout.value,
                        block_height: tx.status.block_height,
                    });
                }
            }
        }
    }
    let address_utxos = AddressUtxos {
        unconfirmed: utxos
            .clone()
            .into_iter()
            .filter(|u| u.block_height.is_none())
            .collect(),
        confirmed: utxos
            .clone()
            .into_iter()
            .filter(|u| u.block_height.is_some())
            .collect(),
    };
    Ok(address_utxos)
}

/// Get the total count of transactions that have been sent to the given onchain address
pub(crate) fn get_total_incoming_txs(address: String, transactions: Vec<OnchainTx>) -> u64 {
    let mut total_incoming_txs = 0;
    for tx in transactions.iter() {
        if tx.status.confirmed {
            for vout in tx.vout.iter() {
                if vout.scriptpubkey_address == address {
                    total_incoming_txs += 1;
                }
            }
        }
    }
    total_incoming_txs
}

#[derive(Clone)]
pub(crate) struct MempoolSpace {
    rest_client: Arc<dyn RestClient>,
    pub(crate) base_url: String,
}

/// Wrapper containing the result of the recommended fees query, in sat/vByte, based on mempool.space data
#[derive(Deserialize, Serialize, Clone, Debug)]
pub struct RecommendedFees {
    #[serde(rename(deserialize = "fastestFee"))]
    pub fastest_fee: u64,

    #[serde(rename(deserialize = "halfHourFee"))]
    pub half_hour_fee: u64,

    #[serde(rename(deserialize = "hourFee"))]
    pub hour_fee: u64,

    #[serde(rename(deserialize = "economyFee"))]
    pub economy_fee: u64,

    #[serde(rename(deserialize = "minimumFee"))]
    pub minimum_fee: u64,
}

#[derive(Deserialize, Serialize, Clone, Debug)]
pub struct OnchainTx {
    pub txid: String,
    pub version: u32,
    pub locktime: u32,
    pub vin: Vec<Vin>,
    pub vout: Vec<Vout>,
    pub size: u32,
    pub weight: u32,
    pub fee: u32,
    pub status: TxStatus,
}

#[derive(Deserialize, Serialize, Clone, Debug)]
pub struct TxStatus {
    pub confirmed: bool,
    pub block_height: Option<u32>,
    pub block_hash: Option<String>,
    pub block_time: Option<u64>,
}

#[derive(Deserialize, Serialize, Clone, Debug)]
pub struct Vout {
    pub scriptpubkey: String,
    pub scriptpubkey_asm: String,
    pub scriptpubkey_type: String,
    pub scriptpubkey_address: String,
    pub value: u64,
}

#[derive(Deserialize, Serialize, Clone, Debug)]
pub struct Vin {
    pub txid: String,
    pub vout: u32,
    pub prevout: Vout,
    pub scriptsig: String,
    pub scriptsig_asm: String,
    pub witness: Option<Vec<String>>,
    pub is_coinbase: bool,
    pub sequence: u32,
}

/// Spending status of a transaction output.
///
/// If this is an outspend of a confirmed tx, `spent` is true and all other fields are set.
/// If this is an outspend of an unconfirmed tx, `spent` is false and none of the other fields are set.
#[derive(Serialize, Deserialize, Clone, Debug)]
pub struct Outspend {
    pub spent: bool,
    pub txid: Option<String>,
    pub vin: Option<u32>,
    pub status: Option<TxStatus>,
}

impl MempoolSpace {
    #[allow(dead_code)]
    pub fn new(rest_client: Arc<dyn RestClient>) -> MempoolSpace {
        MempoolSpace {
            rest_client,
            base_url: DEFAULT_MEMPOOL_SPACE_URL.into(),
        }
    }

    pub fn from_base_url(rest_client: Arc<dyn RestClient>, base_url: &str) -> MempoolSpace {
        MempoolSpace {
            rest_client,
            base_url: base_url.into(),
        }
    }
}

#[tonic::async_trait]
impl ChainService for MempoolSpace {
    async fn recommended_fees(&self) -> SdkResult<RecommendedFees> {
        let (response, _) = get_and_check_success(
            self.rest_client.as_ref(),
            &format!("{}/v1/fees/recommended", self.base_url),
        )
        .await?;
        Ok(parse_json(&response)?)
    }

    async fn address_transactions(&self, address: String) -> SdkResult<Vec<OnchainTx>> {
        let (response, _) = get_and_check_success(
            self.rest_client.as_ref(),
            &format!("{}/address/{address}/txs", self.base_url),
        )
        .await?;
        Ok(parse_json(&response)?)
    }

    async fn current_tip(&self) -> SdkResult<u32> {
        let (response, _) = get_and_check_success(
            self.rest_client.as_ref(),
            &format!("{}/blocks/tip/height", self.base_url),
        )
        .await?;
        Ok(parse_json(&response)?)
    }

    async fn transaction_outspends(&self, txid: String) -> SdkResult<Vec<Outspend>> {
        let (response, _) = get_and_check_success(
            self.rest_client.as_ref(),
            &format!("{}/tx/{txid}/outspends", self.base_url),
        )
        .await?;
        Ok(parse_json(&response)?)
    }

    async fn broadcast_transaction(&self, tx: Vec<u8>) -> SdkResult<String> {
        let (txid_or_error, _) = self
            .rest_client
            .post(
                &format!("{}/tx", self.base_url),
                None,
                Some(hex::encode(tx)),
            )
            .await?;
        match txid_or_error.contains("error") {
            true => Err(SdkError::Generic {
                err: format!("Error fetching tx: {txid_or_error}"),
            }),
            false => Ok(txid_or_error),
        }
    }
}
#[cfg(test)]
mod tests {
    use std::sync::Arc;

    use crate::{
        chain::{MempoolSpace, OnchainTx, RedundantChainService, RedundantChainServiceTrait},
        error::SdkError,
    };
    use anyhow::Result;
    use sdk_common::prelude::{MockResponse, MockRestClient, RestClient};
    use serde_json::json;
    use tokio::test;

    use super::ChainService;

    #[test]
    async fn test_recommended_fees() -> Result<()> {
        let mock_rest_client = MockRestClient::new();

        let response_body = json!({
            "economyFee": 2,
            "fastestFee": 3,
            "halfHourFee": 2,
            "hourFee": 2,
            "minimumFee": 1,
        })
        .to_string();

        mock_rest_client.add_response(MockResponse::new(200, response_body));
        let rest_client: Arc<dyn RestClient> = Arc::new(mock_rest_client);

        let ms = MempoolSpace::new(rest_client);
        let fees = ms.recommended_fees().await?;
        assert_eq!(fees.economy_fee, 2);
        assert_eq!(fees.fastest_fee, 3);
        assert_eq!(fees.half_hour_fee, 2);
        assert_eq!(fees.hour_fee, 2);
        assert_eq!(fees.minimum_fee, 1);

        Ok(())
    }

    #[test]
    async fn test_recommended_fees_with_fallback() -> Result<()> {
        let mock_rest_client = MockRestClient::new();

        let unreachable_response_body = "";
        let response_body = json!({
            "economyFee": 2,
            "fastestFee": 3,
            "halfHourFee": 2,
            "hourFee": 2,
            "minimumFee": 1,
        });

        mock_rest_client.add_response(MockResponse::new(
            400,
            unreachable_response_body.to_string(),
        ));
        mock_rest_client.add_response(MockResponse::new(
            400,
            unreachable_response_body.to_string(),
        ));
        mock_rest_client.add_response(MockResponse::new(200, response_body.to_string()));
        mock_rest_client.add_response(MockResponse::new(
            400,
            unreachable_response_body.to_string(),
        ));
        mock_rest_client.add_response(MockResponse::new(
            400,
            unreachable_response_body.to_string(),
        ));
        mock_rest_client.add_response(MockResponse::new(
            400,
            unreachable_response_body.to_string(),
        ));
        mock_rest_client.add_response(MockResponse::new(
            400,
            unreachable_response_body.to_string(),
        ));
        mock_rest_client.add_response(MockResponse::new(200, response_body.to_string()));

        let rest_client: Arc<dyn RestClient> = Arc::new(mock_rest_client);

        let ms = RedundantChainService::from_base_urls(
            rest_client.clone(),
            vec!["https://mempool-url-unreachable.space/api/".into()],
        );
        assert!(ms.recommended_fees().await.is_err());

        let ms = RedundantChainService::from_base_urls(
            rest_client.clone(),
            vec![
                "https://mempool-url-unreachable.space/api/".into(),
                "https://mempool.emzy.de/api/".into(),
            ],
        );
        assert!(ms.recommended_fees().await.is_ok());

        let ms = RedundantChainService::from_base_urls(
            rest_client.clone(),
            vec![
                "https://mempool-url-unreachable.space/api/".into(),
                "https://another-mempool-url-unreachable.space/api/".into(),
            ],
        );
        assert!(ms.recommended_fees().await.is_err());

        let ms = RedundantChainService::from_base_urls(
            rest_client,
            vec![
                "https://mempool-url-unreachable.space/api/".into(),
                "https://another-mempool-url-unreachable.space/api/".into(),
                "https://mempool.emzy.de/api/".into(),
            ],
        );
        assert!(ms.recommended_fees().await.is_ok());

        Ok(())
    }

    #[test]
    async fn test_address_transactions() -> Result<()> {
        let mock_rest_client = MockRestClient::new();

        let address_transactions_response_body = r#"[{"txid":"5e0668bf1cd24f2f8656ee82d4886f5303a06b26838e24b7db73afc59e228985","version":2,"locktime":0,"vin":[{"txid":"07c9d3fbffc20f96ea7c93ef3bcdf346c8a8456c25850ea76be62b24a7cf690c","vout":0,"prevout":{"scriptpubkey":"001465c96c830168b8f0b584294d3b9716bb8584c2d8","scriptpubkey_asm":"OP_0 OP_PUSHBYTES_20 65c96c830168b8f0b584294d3b9716bb8584c2d8","scriptpubkey_type":"v0_p2wpkh","scriptpubkey_address":"bc1qvhykeqcpdzu0pdvy99xnh9ckhwzcfskct6h6l2","value":263216},"scriptsig":"","scriptsig_asm":"","witness":["3045022100a2f0ac810ce88625890f7e212d175eb1cd6b7c73ffed95a2bec06b38e0b2de060220036675c6a5c89845988cc27e7acba772e7655f2abb0575449471d8323d5900b301","026b815dddaf1687a05349d75d25911c9b6e2381e55ba72148009cfa0a577c89d9"],"is_coinbase":false,"sequence":0},{"txid":"6d6766c283093e2d043ae877bb915175b3d8672a20f0459300267aaab1b5766a","vout":0,"prevout":{"scriptpubkey":"001485b33c1937058ed08b5b122e30caf18e67ccb282","scriptpubkey_asm":"OP_0 OP_PUSHBYTES_20 85b33c1937058ed08b5b122e30caf18e67ccb282","scriptpubkey_type":"v0_p2wpkh","scriptpubkey_address":"bc1qskencxfhqk8dpz6mzghrpjh33enuev5zh0mrjw","value":33247},"scriptsig":"","scriptsig_asm":"","witness":["304402200272cac1a312aae2a4ee64150e5b26e611a56509a467176e38c905b632d3ce56022005497d0d3ff14911214cb0fbb22a1aa16830ba669f6ff38723684750ceb4b11a01","0397d3b72557bd2044508ee3b22d1216b3f871c0963500f8c8dc6a143ee7a6a206"],"is_coinbase":false,"sequence":0},{"txid":"81af33ae00a9dadeb83b915b05742e986a470fff7456540e3f018deb94abda0e","vout":1,"prevout":{"scriptpubkey":"001431505647092347abb0e4d2a34f6773b74a999d45","scriptpubkey_asm":"OP_0 OP_PUSHBYTES_20 31505647092347abb0e4d2a34f6773b74a999d45","scriptpubkey_type":"v0_p2wpkh","scriptpubkey_address":"bc1qx9g9v3cfydr6hv8y62357emnka9fn8294e73yl","value":172952},"scriptsig":"","scriptsig_asm":"","witness":["30450221008426c1b3d535f10c7cbccec6be3ea9be3514f3a86bf234584722665325283f35022010b6a617a465d1d7eea45562632f0ab80b0894da44b67fab65191a98fd9d3acb01","0221250914423379d3caf662297e8069621ca2c362cf92107388483929f4d9eb67"],"is_coinbase":false,"sequence":0}],"vout":[{"scriptpubkey":"001459c70c09f22b1bb007439af43b6809d6a2bc31b5","scriptpubkey_asm":"OP_0 OP_PUSHBYTES_20 59c70c09f22b1bb007439af43b6809d6a2bc31b5","scriptpubkey_type":"v0_p2wpkh","scriptpubkey_address":"bc1qt8rscz0j9vdmqp6rnt6rk6qf663tcvd44f6gxa","value":2920},{"scriptpubkey":"00202c404e6e9c4d032267a29a6074c5db9333c6ccae0c9d430ced666316233d8c2f","scriptpubkey_asm":"OP_0 OP_PUSHBYTES_32 2c404e6e9c4d032267a29a6074c5db9333c6ccae0c9d430ced666316233d8c2f","scriptpubkey_type":"v0_p2wsh","scriptpubkey_address":"bc1q93qyum5uf5pjyeaznfs8f3wmjveudn9wpjw5xr8dve33vgea3shs9jhvww","value":442557}],"size":532,"weight":1153,"fee":23938,"status":{"confirmed":true,"block_height":674358,"block_hash":"00000000000000000004c6171622f56692cc480d3c76ecae4355e69699a6ae44","block_time":1615595727}},{"txid":"07c9d3fbffc20f96ea7c93ef3bcdf346c8a8456c25850ea76be62b24a7cf690c","version":2,"locktime":0,"vin":[{"txid":"9332d8d11d81c3b674caff75db5543491e7f22e619ecc034bedf4a007518fe3a","vout":0,"prevout":{"scriptpubkey":"001415f0dad74806b03612687038d4f5bab200afcf8e","scriptpubkey_asm":"OP_0 OP_PUSHBYTES_20 15f0dad74806b03612687038d4f5bab200afcf8e","scriptpubkey_type":"v0_p2wpkh","scriptpubkey_address":"bc1qzhcd446gq6crvyngwqudfad6kgq2lnuw9r2a86","value":470675},"scriptsig":"","scriptsig_asm":"","witness":["3045022100f30d84532f96b5e489047174e81394883cd519d427ca8f4facc2366f718cc678022007c083634402f40708c645cd0c1a2757b56de2076ca6ee856e514859381cd93801","02942b44eb4289e3af0aeeb73dfa82b0a5c8a3a06ae85bfd22aa3dcfcd64096462"],"is_coinbase":false,"sequence":0},{"txid":"c62da0c2d1929ab2a2c04d4fbae2a6e4e947f867cba584d1f80c4a1a62f4a75f","vout":1,"prevout":{"scriptpubkey":"0014f0c1d6b471d5e4a483fc146d4220a4e81587bf11","scriptpubkey_asm":"OP_0 OP_PUSHBYTES_20 f0c1d6b471d5e4a483fc146d4220a4e81587bf11","scriptpubkey_type":"v0_p2wpkh","scriptpubkey_address":"bc1q7rqaddr36hj2fqluz3k5yg9yaq2c00c3tw4qy5","value":899778},"scriptsig":"","scriptsig_asm":"","witness":["304402202da0eac25786003181526c4fe1592f982aa8d0f32c642a5103cdebbf4aa8b5a80220750cd6859bfb9a7df8d7c4d79a70e17a6df87f150fe1fdaade4650332ef0f47c01","02ecab80fcfe949633064c25fc33854fd09b8730decdf679db1f429bce201ec685"],"is_coinbase":false,"sequence":0}],"vout":[{"scriptpubkey":"001465c96c830168b8f0b584294d3b9716bb8584c2d8","scriptpubkey_asm":"OP_0 OP_PUSHBYTES_20 65c96c830168b8f0b584294d3b9716bb8584c2d8","scriptpubkey_type":"v0_p2wpkh","scriptpubkey_address":"bc1qvhykeqcpdzu0pdvy99xnh9ckhwzcfskct6h6l2","value":263216},{"scriptpubkey":"00200cea60ae9eea43e64b17ba65a4c17bd3acf9dac307825deda85d5a093181dbc0","scriptpubkey_asm":"OP_0 OP_PUSHBYTES_32 0cea60ae9eea43e64b17ba65a4c17bd3acf9dac307825deda85d5a093181dbc0","scriptpubkey_type":"v0_p2wsh","scriptpubkey_address":"bc1qpn4xpt57afp7vjchhfj6fstm6wk0nkkrq7p9mmdgt4dqjvvpm0qqlxqrns","value":1088924}],"size":383,"weight":881,"fee":18313,"status":{"confirmed":true,"block_height":674357,"block_hash":"00000000000000000008d0d007995a8bc9d60de17bd6b55e28a6e4c6918cb206","block_time":1615594996}}]"#;
        let transaction_outspends_response_body = r#"[{"spent":true,"txid":"4da22eff957b855c8bde2d8b61bdb9e10add799a04c709dd7142cc796cee0b65","vin":1,"status":{"confirmed":true,"block_height":674365,"block_hash":"000000000000000000038f780364221846a3c11e2a5b33eee69029afe5775a0f","block_time":1615598852}},{"spent":true,"txid":"61585c400d8cfe490d3d3c6e1e3177edb9b6f43e337772530ab32ea4e54db3b4","vin":0,"status":{"confirmed":true,"block_height":797168,"block_hash":"0000000000000000000569b9dca483f10ed6c2bf9245b5a9b45519dd4f3dd40d","block_time":1688489603}}]"#;
        mock_rest_client.add_response(MockResponse::new(
            200,
            address_transactions_response_body.to_string(),
        ));
        mock_rest_client.add_response(MockResponse::new(
            200,
            transaction_outspends_response_body.to_string(),
        ));
        mock_rest_client.add_response(MockResponse::new(404, "".to_string()));

        let rest_client: Arc<dyn RestClient> = Arc::new(mock_rest_client);

        let ms = MempoolSpace::new(rest_client);
        let txs = ms
            .address_transactions("bc1qvhykeqcpdzu0pdvy99xnh9ckhwzcfskct6h6l2".to_string())
            .await?;
        let serialized_res = serde_json::to_string(&txs)?;

        let expected_txs: Vec<OnchainTx> =
            serde_json::from_str(address_transactions_response_body)?;
        let expected_serialized = serde_json::to_string(&expected_txs)?;

        assert_eq!(expected_serialized, serialized_res);

        let outspends = ms
            .transaction_outspends(
                "5e0668bf1cd24f2f8656ee82d4886f5303a06b26838e24b7db73afc59e228985".to_string(),
            )
            .await?;
        assert_eq!(outspends.len(), 2);

        let outspends = ms
            .transaction_outspends(
                "07c9d3fbffc20f96ea7c93ef3bcdf346c8a8456c25850ea76be62b24a7cf6901".to_string(),
            )
            .await;
        match outspends {
            Ok(_) => panic!("Expected an error"),
            Err(e) => match e {
                SdkError::ServiceConnectivity { err } => {
                    assert_eq!(err, "GET request https://mempool.space/api/tx/07c9d3fbffc20f96ea7c93ef3bcdf346c8a8456c25850ea76be62b24a7cf6901/outspends failed with status: 404")
                }
                _ => panic!("Expected a service connectivity error"),
            },
        };

        Ok(())
    }

    // #[test]
    // async fn test_address_transactions_mempool() {
    //     let mock_rest_client = MockRestClient::new();
    //     let ms = MempoolSpace::new(mock_rest_client);
    //
    //     let response_body = r#"[{"txid":"5e0668bf1cd24f2f8656ee82d4886f5303a06b26838e24b7db73afc59e228985","version":2,"locktime":0,"vin":[{"txid":"07c9d3fbffc20f96ea7c93ef3bcdf346c8a8456c25850ea76be62b24a7cf690c","vout":0,"prevout":{"scriptpubkey":"001465c96c830168b8f0b584294d3b9716bb8584c2d8","scriptpubkey_asm":"OP_0 OP_PUSHBYTES_20 65c96c830168b8f0b584294d3b9716bb8584c2d8","scriptpubkey_type":"v0_p2wpkh","scriptpubkey_address":"bc1qvhykeqcpdzu0pdvy99xnh9ckhwzcfskct6h6l2","value":263216},"scriptsig":"","scriptsig_asm":"","witness":["3045022100a2f0ac810ce88625890f7e212d175eb1cd6b7c73ffed95a2bec06b38e0b2de060220036675c6a5c89845988cc27e7acba772e7655f2abb0575449471d8323d5900b301","026b815dddaf1687a05349d75d25911c9b6e2381e55ba72148009cfa0a577c89d9"],"is_coinbase":false,"sequence":0},{"txid":"6d6766c283093e2d043ae877bb915175b3d8672a20f0459300267aaab1b5766a","vout":0,"prevout":{"scriptpubkey":"001485b33c1937058ed08b5b122e30caf18e67ccb282","scriptpubkey_asm":"OP_0 OP_PUSHBYTES_20 85b33c1937058ed08b5b122e30caf18e67ccb282","scriptpubkey_type":"v0_p2wpkh","scriptpubkey_address":"bc1qskencxfhqk8dpz6mzghrpjh33enuev5zh0mrjw","value":33247},"scriptsig":"","scriptsig_asm":"","witness":["304402200272cac1a312aae2a4ee64150e5b26e611a56509a467176e38c905b632d3ce56022005497d0d3ff14911214cb0fbb22a1aa16830ba669f6ff38723684750ceb4b11a01","0397d3b72557bd2044508ee3b22d1216b3f871c0963500f8c8dc6a143ee7a6a206"],"is_coinbase":false,"sequence":0},{"txid":"81af33ae00a9dadeb83b915b05742e986a470fff7456540e3f018deb94abda0e","vout":1,"prevout":{"scriptpubkey":"001431505647092347abb0e4d2a34f6773b74a999d45","scriptpubkey_asm":"OP_0 OP_PUSHBYTES_20 31505647092347abb0e4d2a34f6773b74a999d45","scriptpubkey_type":"v0_p2wpkh","scriptpubkey_address":"bc1qx9g9v3cfydr6hv8y62357emnka9fn8294e73yl","value":172952},"scriptsig":"","scriptsig_asm":"","witness":["30450221008426c1b3d535f10c7cbccec6be3ea9be3514f3a86bf234584722665325283f35022010b6a617a465d1d7eea45562632f0ab80b0894da44b67fab65191a98fd9d3acb01","0221250914423379d3caf662297e8069621ca2c362cf92107388483929f4d9eb67"],"is_coinbase":false,"sequence":0}],"vout":[{"scriptpubkey":"001459c70c09f22b1bb007439af43b6809d6a2bc31b5","scriptpubkey_asm":"OP_0 OP_PUSHBYTES_20 59c70c09f22b1bb007439af43b6809d6a2bc31b5","scriptpubkey_type":"v0_p2wpkh","scriptpubkey_address":"bc1qt8rscz0j9vdmqp6rnt6rk6qf663tcvd44f6gxa","value":2920},{"scriptpubkey":"00202c404e6e9c4d032267a29a6074c5db9333c6ccae0c9d430ced666316233d8c2f","scriptpubkey_asm":"OP_0 OP_PUSHBYTES_32 2c404e6e9c4d032267a29a6074c5db9333c6ccae0c9d430ced666316233d8c2f","scriptpubkey_type":"v0_p2wsh","scriptpubkey_address":"bc1q93qyum5uf5pjyeaznfs8f3wmjveudn9wpjw5xr8dve33vgea3shs9jhvww","value":442557}],"size":532,"weight":1153,"fee":23938,"status":{"confirmed":true,"block_height":674358,"block_hash":"00000000000000000004c6171622f56692cc480d3c76ecae4355e69699a6ae44","block_time":1615595727}},{"txid":"07c9d3fbffc20f96ea7c93ef3bcdf346c8a8456c25850ea76be62b24a7cf690c","version":2,"locktime":0,"vin":[{"txid":"9332d8d11d81c3b674caff75db5543491e7f22e619ecc034bedf4a007518fe3a","vout":0,"prevout":{"scriptpubkey":"001415f0dad74806b03612687038d4f5bab200afcf8e","scriptpubkey_asm":"OP_0 OP_PUSHBYTES_20 15f0dad74806b03612687038d4f5bab200afcf8e","scriptpubkey_type":"v0_p2wpkh","scriptpubkey_address":"bc1qzhcd446gq6crvyngwqudfad6kgq2lnuw9r2a86","value":470675},"scriptsig":"","scriptsig_asm":"","witness":["3045022100f30d84532f96b5e489047174e81394883cd519d427ca8f4facc2366f718cc678022007c083634402f40708c645cd0c1a2757b56de2076ca6ee856e514859381cd93801","02942b44eb4289e3af0aeeb73dfa82b0a5c8a3a06ae85bfd22aa3dcfcd64096462"],"is_coinbase":false,"sequence":0},{"txid":"c62da0c2d1929ab2a2c04d4fbae2a6e4e947f867cba584d1f80c4a1a62f4a75f","vout":1,"prevout":{"scriptpubkey":"0014f0c1d6b471d5e4a483fc146d4220a4e81587bf11","scriptpubkey_asm":"OP_0 OP_PUSHBYTES_20 f0c1d6b471d5e4a483fc146d4220a4e81587bf11","scriptpubkey_type":"v0_p2wpkh","scriptpubkey_address":"bc1q7rqaddr36hj2fqluz3k5yg9yaq2c00c3tw4qy5","value":899778},"scriptsig":"","scriptsig_asm":"","witness":["304402202da0eac25786003181526c4fe1592f982aa8d0f32c642a5103cdebbf4aa8b5a80220750cd6859bfb9a7df8d7c4d79a70e17a6df87f150fe1fdaade4650332ef0f47c01","02ecab80fcfe949633064c25fc33854fd09b8730decdf679db1f429bce201ec685"],"is_coinbase":false,"sequence":0}],"vout":[{"scriptpubkey":"001465c96c830168b8f0b584294d3b9716bb8584c2d8","scriptpubkey_asm":"OP_0 OP_PUSHBYTES_20 65c96c830168b8f0b584294d3b9716bb8584c2d8","scriptpubkey_type":"v0_p2wpkh","scriptpubkey_address":"bc1qvhykeqcpdzu0pdvy99xnh9ckhwzcfskct6h6l2","value":263216},{"scriptpubkey":"00200cea60ae9eea43e64b17ba65a4c17bd3acf9dac307825deda85d5a093181dbc0","scriptpubkey_asm":"OP_0 OP_PUSHBYTES_32 0cea60ae9eea43e64b17ba65a4c17bd3acf9dac307825deda85d5a093181dbc0","scriptpubkey_type":"v0_p2wsh","scriptpubkey_address":"bc1qpn4xpt57afp7vjchhfj6fstm6wk0nkkrq7p9mmdgt4dqjvvpm0qqlxqrns","value":1088924}],"size":383,"weight":881,"fee":18313,"status":{"confirmed":true,"block_height":674357,"block_hash":"00000000000000000008d0d007995a8bc9d60de17bd6b55e28a6e4c6918cb206","block_time":1615594996}}]"#;
    //     mock_rest_client.add_response(MockResponse::new(200, response_body.to_string()));
    //
    //     let txs = ms
    //         .address_transactions("1N4f3y3LYJZ2Qd9FyPt3AcHp451qt12paR".to_string())
    //         .await
    //         .unwrap();
    //     let serialized_res = serde_json::to_string(&txs).unwrap();

    //     let expected_txs: Vec<OnchainTx> = serde_json::from_str(response_body).unwrap();
    //     let expected_serialized = serde_json::to_string(&expected_txs).unwrap();

    //     assert_eq!(expected_serialized, serialized_res);
    // }
}