p2pk.rs 2.5 KB

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