wallet.rs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. use std::sync::Arc;
  2. use std::time::Duration;
  3. use cdk::amount::SplitTarget;
  4. use cdk::cdk_database::WalletMemoryDatabase;
  5. use cdk::nuts::nut00::ProofsMethods;
  6. use cdk::nuts::{CurrencyUnit, MintQuoteState};
  7. use cdk::wallet::types::SendKind;
  8. use cdk::wallet::Wallet;
  9. use cdk::Amount;
  10. use rand::Rng;
  11. use tokio::time::sleep;
  12. #[tokio::main]
  13. async fn main() -> Result<(), Box<dyn std::error::Error>> {
  14. // Generate a random seed for the wallet
  15. let seed = rand::thread_rng().gen::<[u8; 32]>();
  16. // Mint URL and currency unit
  17. let mint_url = "https://testnut.cashu.space";
  18. let unit = CurrencyUnit::Sat;
  19. let amount = Amount::from(10);
  20. // Initialize the memory store
  21. let localstore = WalletMemoryDatabase::default();
  22. // Create a new wallet
  23. let wallet = Wallet::new(mint_url, unit, Arc::new(localstore), &seed, None)?;
  24. // Request a mint quote from the wallet
  25. let quote = wallet.mint_quote(amount, None).await?;
  26. println!("Pay request: {}", quote.request);
  27. // Check the quote state in a loop with a timeout
  28. let timeout = Duration::from_secs(60); // Set a timeout duration
  29. let start = std::time::Instant::now();
  30. loop {
  31. let status = wallet.mint_quote_state(&quote.id).await?;
  32. if status.state == MintQuoteState::Paid {
  33. break;
  34. }
  35. if start.elapsed() >= timeout {
  36. eprintln!("Timeout while waiting for mint quote to be paid");
  37. return Err("Timeout while waiting for mint quote to be paid".into());
  38. }
  39. println!("Quote state: {}", status.state);
  40. sleep(Duration::from_secs(5)).await;
  41. }
  42. // Mint the received amount
  43. let proofs = wallet.mint(&quote.id, SplitTarget::default(), None).await?;
  44. let receive_amount = proofs.total_amount()?;
  45. println!("Minted {}", receive_amount);
  46. // Send the token
  47. let token = wallet
  48. .send(
  49. amount,
  50. None,
  51. None,
  52. &SplitTarget::None,
  53. &SendKind::default(),
  54. false,
  55. )
  56. .await?;
  57. println!("{}", token);
  58. Ok(())
  59. }