12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- use std::sync::Arc;
- use std::time::Duration;
- use cdk::amount::SplitTarget;
- use cdk::cdk_database::WalletMemoryDatabase;
- use cdk::nuts::nut00::ProofsMethods;
- use cdk::nuts::{CurrencyUnit, MintQuoteState};
- use cdk::wallet::types::SendKind;
- use cdk::wallet::Wallet;
- use cdk::Amount;
- use rand::Rng;
- use tokio::time::sleep;
- #[tokio::main]
- async fn main() -> Result<(), Box<dyn std::error::Error>> {
- // Generate a random seed for the wallet
- let seed = rand::thread_rng().gen::<[u8; 32]>();
- // Mint URL and currency unit
- let mint_url = "https://testnut.cashu.space";
- let unit = CurrencyUnit::Sat;
- let amount = Amount::from(10);
- // Initialize the memory store
- let localstore = WalletMemoryDatabase::default();
- // Create a new wallet
- let wallet = Wallet::new(mint_url, unit, Arc::new(localstore), &seed, None)?;
- // Request a mint quote from the wallet
- let quote = wallet.mint_quote(amount, None).await?;
- println!("Pay request: {}", quote.request);
- // Check the quote state in a loop with a timeout
- let timeout = Duration::from_secs(60); // Set a timeout duration
- let start = std::time::Instant::now();
- loop {
- let status = wallet.mint_quote_state("e.id).await?;
- if status.state == MintQuoteState::Paid {
- break;
- }
- if start.elapsed() >= timeout {
- eprintln!("Timeout while waiting for mint quote to be paid");
- return Err("Timeout while waiting for mint quote to be paid".into());
- }
- println!("Quote state: {}", status.state);
- sleep(Duration::from_secs(5)).await;
- }
- // Mint the received amount
- let proofs = wallet.mint("e.id, SplitTarget::default(), None).await?;
- let receive_amount = proofs.total_amount()?;
- println!("Minted {}", receive_amount);
- // Send the token
- let token = wallet
- .send(
- amount,
- None,
- None,
- &SplitTarget::None,
- &SendKind::default(),
- false,
- )
- .await?;
- println!("{}", token);
- Ok(())
- }
|