p2pk.rs 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. use std::sync::Arc;
  2. use cdk::amount::SplitTarget;
  3. use cdk::error::Error;
  4. use cdk::nuts::{CurrencyUnit, MintQuoteState, NotificationPayload, SecretKey, SpendingConditions};
  5. use cdk::wallet::types::SendKind;
  6. use cdk::wallet::{Wallet, WalletSubscription};
  7. use cdk::Amount;
  8. use cdk_sqlite::wallet::memory;
  9. use rand::Rng;
  10. use tracing_subscriber::EnvFilter;
  11. #[tokio::main]
  12. async fn main() -> Result<(), Error> {
  13. let default_filter = "debug";
  14. let sqlx_filter = "sqlx=warn,hyper_util=warn,reqwest=warn,rustls=warn";
  15. let env_filter = EnvFilter::new(format!("{},{}", default_filter, sqlx_filter));
  16. // Parse input
  17. tracing_subscriber::fmt().with_env_filter(env_filter).init();
  18. // Initialize the memory store for the wallet
  19. let localstore = memory::empty().await?;
  20. // Generate a random seed for the wallet
  21. let seed = rand::thread_rng().gen::<[u8; 32]>();
  22. // Define the mint URL and currency unit
  23. let mint_url = "https://testnut.cashu.space";
  24. let unit = CurrencyUnit::Sat;
  25. let amount = Amount::from(50);
  26. // Create a new wallet
  27. let wallet = Wallet::new(mint_url, unit, Arc::new(localstore), &seed, None)?;
  28. // Request a mint quote from the wallet
  29. let quote = wallet.mint_quote(amount, None).await?;
  30. println!("Minting nuts ...");
  31. // Subscribe to updates on the mint quote state
  32. let mut subscription = wallet
  33. .subscribe(WalletSubscription::Bolt11MintQuoteState(vec![quote
  34. .id
  35. .clone()]))
  36. .await;
  37. // Wait for the mint quote to be paid
  38. while let Some(msg) = subscription.recv().await {
  39. if let NotificationPayload::MintQuoteBolt11Response(response) = msg {
  40. if response.state == MintQuoteState::Paid {
  41. break;
  42. }
  43. }
  44. }
  45. // Mint the received amount
  46. let _receive_amount = wallet.mint(&quote.id, SplitTarget::default(), None).await?;
  47. // Generate a secret key for spending conditions
  48. let secret = SecretKey::generate();
  49. // Create spending conditions using the generated public key
  50. let spending_conditions = SpendingConditions::new_p2pk(secret.public_key(), None);
  51. // Get the total balance of the wallet
  52. let bal = wallet.total_balance().await?;
  53. println!("{}", bal);
  54. // Send a token with the specified amount and spending conditions
  55. let token = wallet
  56. .send(
  57. 10.into(),
  58. None,
  59. Some(spending_conditions),
  60. &SplitTarget::default(),
  61. &SendKind::default(),
  62. false,
  63. )
  64. .await?;
  65. println!("Created token locked to pubkey: {}", secret.public_key());
  66. println!("{}", token);
  67. // Receive the token using the secret key
  68. let amount = wallet
  69. .receive(&token.to_string(), SplitTarget::default(), &[secret], &[])
  70. .await?;
  71. println!("Redeemed locked token worth: {}", u64::from(amount));
  72. Ok(())
  73. }