//! Typestate markers for ReceiveIntent state transitions
/// Marker for a detected incoming UTXO awaiting confirmation
#[derive(Debug, Clone)]pubstructDetected{/// Quote ID linking this intent to a mint quote
pubquote_id: String,
/// Bitcoin address that received the payment
pubaddress: String,
/// Transaction ID containing the payment
pubtxid: String,
/// Outpoint string (txid:vout) identifying the specific UTXO
puboutpoint: String,
/// Payment amount in satoshis
pubamount_sat:u64,
/// Block height at which the UTXO was first detected
#[allow(dead_code)]pubblock_height:u32,
}