123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343 |
- //! Types
- use serde::{Deserialize, Serialize};
- use crate::error::Error;
- use crate::mint_url::MintUrl;
- use crate::nuts::nut00::ProofsMethods;
- use crate::nuts::{
- CurrencyUnit, MeltQuoteState, PaymentMethod, Proof, Proofs, PublicKey, SpendingConditions,
- State,
- };
- use crate::Amount;
- /// Melt response with proofs
- #[derive(Debug, Clone, Hash, PartialEq, Eq, Default, Serialize, Deserialize)]
- pub struct Melted {
- /// State of quote
- pub state: MeltQuoteState,
- /// Preimage of melt payment
- pub preimage: Option<String>,
- /// Melt change
- pub change: Option<Proofs>,
- /// Melt amount
- pub amount: Amount,
- /// Fee paid
- pub fee_paid: Amount,
- }
- impl Melted {
- /// Create new [`Melted`]
- pub fn from_proofs(
- state: MeltQuoteState,
- preimage: Option<String>,
- amount: Amount,
- proofs: Proofs,
- change_proofs: Option<Proofs>,
- ) -> Result<Self, Error> {
- let proofs_amount = proofs.total_amount()?;
- let change_amount = match &change_proofs {
- Some(change_proofs) => change_proofs.total_amount()?,
- None => Amount::ZERO,
- };
- let fee_paid = proofs_amount
- .checked_sub(amount + change_amount)
- .ok_or(Error::AmountOverflow)?;
- Ok(Self {
- state,
- preimage,
- change: change_proofs,
- amount,
- fee_paid,
- })
- }
- /// Total amount melted
- pub fn total_amount(&self) -> Amount {
- self.amount + self.fee_paid
- }
- }
- /// Prooinfo
- #[derive(Debug, Clone, Hash, PartialEq, Eq, Serialize, Deserialize)]
- pub struct ProofInfo {
- /// Proof
- pub proof: Proof,
- /// y
- pub y: PublicKey,
- /// Mint Url
- pub mint_url: MintUrl,
- /// Proof State
- pub state: State,
- /// Proof Spending Conditions
- pub spending_condition: Option<SpendingConditions>,
- /// Unit
- pub unit: CurrencyUnit,
- }
- impl ProofInfo {
- /// Create new [`ProofInfo`]
- pub fn new(
- proof: Proof,
- mint_url: MintUrl,
- state: State,
- unit: CurrencyUnit,
- ) -> Result<Self, Error> {
- let y = proof.y()?;
- let spending_condition: Option<SpendingConditions> = (&proof.secret).try_into().ok();
- Ok(Self {
- proof,
- y,
- mint_url,
- state,
- spending_condition,
- unit,
- })
- }
- /// Check if [`Proof`] matches conditions
- pub fn matches_conditions(
- &self,
- mint_url: &Option<MintUrl>,
- unit: &Option<CurrencyUnit>,
- state: &Option<Vec<State>>,
- spending_conditions: &Option<Vec<SpendingConditions>>,
- ) -> bool {
- if let Some(mint_url) = mint_url {
- if mint_url.ne(&self.mint_url) {
- return false;
- }
- }
- if let Some(unit) = unit {
- if unit.ne(&self.unit) {
- return false;
- }
- }
- if let Some(state) = state {
- if !state.contains(&self.state) {
- return false;
- }
- }
- if let Some(spending_conditions) = spending_conditions {
- match &self.spending_condition {
- None => {
- if !spending_conditions.is_empty() {
- return false;
- }
- }
- Some(s) => {
- if !spending_conditions.contains(s) {
- return false;
- }
- }
- }
- }
- true
- }
- }
- /// Key used in hashmap of ln backends to identify what unit and payment method
- /// it is for
- #[derive(Debug, Clone, Hash, PartialEq, Eq, Serialize, Deserialize)]
- pub struct PaymentProcessorKey {
- /// Unit of Payment backend
- pub unit: CurrencyUnit,
- /// Method of payment backend
- pub method: PaymentMethod,
- }
- impl PaymentProcessorKey {
- /// Create new [`LnKey`]
- pub fn new(unit: CurrencyUnit, method: PaymentMethod) -> Self {
- Self { unit, method }
- }
- }
- /// Secs wuotes are valid
- #[derive(Debug, Clone, Copy, Hash, PartialEq, Eq, Serialize, Deserialize, Default)]
- pub struct QuoteTTL {
- /// Seconds mint quote is valid
- pub mint_ttl: u64,
- /// Seconds melt quote is valid
- pub melt_ttl: u64,
- }
- impl QuoteTTL {
- /// Create new [`QuoteTTL`]
- pub fn new(mint_ttl: u64, melt_ttl: u64) -> QuoteTTL {
- Self { mint_ttl, melt_ttl }
- }
- }
- #[cfg(test)]
- mod tests {
- use std::str::FromStr;
- use cashu::SecretKey;
- use super::{Melted, ProofInfo};
- use crate::mint_url::MintUrl;
- use crate::nuts::{CurrencyUnit, Id, Proof, PublicKey, SpendingConditions, State};
- use crate::secret::Secret;
- use crate::Amount;
- #[test]
- fn test_melted() {
- let keyset_id = Id::from_str("00deadbeef123456").unwrap();
- let proof = Proof::new(
- Amount::from(64),
- keyset_id,
- Secret::generate(),
- PublicKey::from_hex(
- "02deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef",
- )
- .unwrap(),
- );
- let melted = Melted::from_proofs(
- super::MeltQuoteState::Paid,
- Some("preimage".to_string()),
- Amount::from(64),
- vec![proof.clone()],
- None,
- )
- .unwrap();
- assert_eq!(melted.amount, Amount::from(64));
- assert_eq!(melted.fee_paid, Amount::ZERO);
- assert_eq!(melted.total_amount(), Amount::from(64));
- }
- #[test]
- fn test_melted_with_change() {
- let keyset_id = Id::from_str("00deadbeef123456").unwrap();
- let proof = Proof::new(
- Amount::from(64),
- keyset_id,
- Secret::generate(),
- PublicKey::from_hex(
- "02deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef",
- )
- .unwrap(),
- );
- let change_proof = Proof::new(
- Amount::from(32),
- keyset_id,
- Secret::generate(),
- PublicKey::from_hex(
- "03deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef",
- )
- .unwrap(),
- );
- let melted = Melted::from_proofs(
- super::MeltQuoteState::Paid,
- Some("preimage".to_string()),
- Amount::from(31),
- vec![proof.clone()],
- Some(vec![change_proof.clone()]),
- )
- .unwrap();
- assert_eq!(melted.amount, Amount::from(31));
- assert_eq!(melted.fee_paid, Amount::from(1));
- assert_eq!(melted.total_amount(), Amount::from(32));
- }
- #[test]
- fn test_matches_conditions() {
- let keyset_id = Id::from_str("00deadbeef123456").unwrap();
- let proof = Proof::new(
- Amount::from(64),
- keyset_id,
- Secret::new("test_secret"),
- PublicKey::from_hex(
- "02deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef",
- )
- .unwrap(),
- );
- let mint_url = MintUrl::from_str("https://example.com").unwrap();
- let proof_info =
- ProofInfo::new(proof, mint_url.clone(), State::Unspent, CurrencyUnit::Sat).unwrap();
- // Test matching mint_url
- assert!(proof_info.matches_conditions(&Some(mint_url.clone()), &None, &None, &None));
- assert!(!proof_info.matches_conditions(
- &Some(MintUrl::from_str("https://different.com").unwrap()),
- &None,
- &None,
- &None
- ));
- // Test matching unit
- assert!(proof_info.matches_conditions(&None, &Some(CurrencyUnit::Sat), &None, &None));
- assert!(!proof_info.matches_conditions(&None, &Some(CurrencyUnit::Msat), &None, &None));
- // Test matching state
- assert!(proof_info.matches_conditions(&None, &None, &Some(vec![State::Unspent]), &None));
- assert!(proof_info.matches_conditions(
- &None,
- &None,
- &Some(vec![State::Unspent, State::Spent]),
- &None
- ));
- assert!(!proof_info.matches_conditions(&None, &None, &Some(vec![State::Spent]), &None));
- // Test with no conditions (should match)
- assert!(proof_info.matches_conditions(&None, &None, &None, &None));
- // Test with multiple conditions
- assert!(proof_info.matches_conditions(
- &Some(mint_url),
- &Some(CurrencyUnit::Sat),
- &Some(vec![State::Unspent]),
- &None
- ));
- }
- #[test]
- fn test_matches_conditions_with_spending_conditions() {
- // This test would need to be expanded with actual SpendingConditions
- // implementation, but we can test the basic case where no spending
- // conditions are present
- let keyset_id = Id::from_str("00deadbeef123456").unwrap();
- let proof = Proof::new(
- Amount::from(64),
- keyset_id,
- Secret::new("test_secret"),
- PublicKey::from_hex(
- "02deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef",
- )
- .unwrap(),
- );
- let mint_url = MintUrl::from_str("https://example.com").unwrap();
- let proof_info =
- ProofInfo::new(proof, mint_url, State::Unspent, CurrencyUnit::Sat).unwrap();
- // Test with empty spending conditions (should match when proof has none)
- assert!(proof_info.matches_conditions(&None, &None, &None, &Some(vec![])));
- // Test with non-empty spending conditions (should not match when proof has none)
- let dummy_condition = SpendingConditions::P2PKConditions {
- data: SecretKey::generate().public_key(),
- conditions: None,
- };
- assert!(!proof_info.matches_conditions(&None, &None, &None, &Some(vec![dummy_condition])));
- }
- }
- /// Mint Fee Reserve
- #[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
- pub struct FeeReserve {
- /// Absolute expected min fee
- pub min_fee_reserve: Amount,
- /// Percentage expected fee
- pub percent_fee_reserve: f32,
- }
|