proof-selection.rs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. //! Wallet example with memory store
  2. use std::sync::Arc;
  3. use cdk::amount::SplitTarget;
  4. use cdk::cdk_database::WalletMemoryDatabase;
  5. use cdk::nuts::nut00::ProofsMethods;
  6. use cdk::nuts::{CurrencyUnit, MintQuoteState, NotificationPayload};
  7. use cdk::wallet::{Wallet, WalletSubscription};
  8. use cdk::Amount;
  9. use rand::Rng;
  10. #[tokio::main]
  11. async fn main() -> Result<(), Box<dyn std::error::Error>> {
  12. // Generate a random seed for the wallet
  13. let seed = rand::thread_rng().gen::<[u8; 32]>();
  14. // Mint URL and currency unit
  15. let mint_url = "https://testnut.cashu.space";
  16. let unit = CurrencyUnit::Sat;
  17. // Initialize the memory store
  18. let localstore = WalletMemoryDatabase::default();
  19. // Create a new wallet
  20. let wallet = Wallet::new(mint_url, unit, Arc::new(localstore), &seed, None)?;
  21. // Amount to mint
  22. for amount in [64] {
  23. let amount = Amount::from(amount);
  24. // Request a mint quote from the wallet
  25. let quote = wallet.mint_quote(amount, None).await?;
  26. println!("Pay request: {}", quote.request);
  27. // Subscribe to the wallet for updates on the mint quote state
  28. let mut subscription = wallet
  29. .subscribe(WalletSubscription::Bolt11MintQuoteState(vec![quote
  30. .id
  31. .clone()]))
  32. .await;
  33. // Wait for the mint quote to be paid
  34. while let Some(msg) = subscription.recv().await {
  35. if let NotificationPayload::MintQuoteBolt11Response(response) = msg {
  36. if response.state == MintQuoteState::Paid {
  37. break;
  38. }
  39. }
  40. }
  41. // Mint the received amount
  42. let proofs = wallet.mint(&quote.id, SplitTarget::default(), None).await?;
  43. let receive_amount = proofs.total_amount()?;
  44. println!("Minted {}", receive_amount);
  45. }
  46. // Get unspent proofs
  47. let proofs = wallet.get_unspent_proofs().await?;
  48. // Select proofs to send
  49. let selected = wallet
  50. .select_proofs_to_send(Amount::from(64), proofs, false)
  51. .await?;
  52. for (i, proof) in selected.iter().enumerate() {
  53. println!("{}: {}", i, proof.amount);
  54. }
  55. Ok(())
  56. }