nut07.rs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. //! NUT-07: Spendable Check
  2. //!
  3. //! <https://github.com/cashubtc/nuts/blob/main/07.md>
  4. use std::fmt;
  5. use std::str::FromStr;
  6. use serde::{Deserialize, Serialize};
  7. use thiserror::Error;
  8. use super::nut01::PublicKey;
  9. /// NUT07 Error
  10. #[derive(Debug, Error, PartialEq, Eq)]
  11. pub enum Error {
  12. /// Unknown State error
  13. #[error("Unknown state")]
  14. UnknownState,
  15. }
  16. /// State of Proof
  17. #[derive(Debug, Clone, Copy, Hash, PartialEq, Eq, Serialize, Deserialize)]
  18. #[serde(rename_all = "UPPERCASE")]
  19. #[cfg_attr(feature = "swagger", derive(utoipa::ToSchema))]
  20. pub enum State {
  21. /// Spent
  22. Spent,
  23. /// Unspent
  24. Unspent,
  25. /// Pending
  26. ///
  27. /// Currently being used in a transaction i.e. melt in progress
  28. Pending,
  29. /// Proof is reserved
  30. ///
  31. /// i.e. used to create a token
  32. Reserved,
  33. }
  34. impl fmt::Display for State {
  35. fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
  36. let s = match self {
  37. Self::Spent => "SPENT",
  38. Self::Unspent => "UNSPENT",
  39. Self::Pending => "PENDING",
  40. Self::Reserved => "RESERVED",
  41. };
  42. write!(f, "{}", s)
  43. }
  44. }
  45. impl FromStr for State {
  46. type Err = Error;
  47. fn from_str(state: &str) -> Result<Self, Self::Err> {
  48. match state {
  49. "SPENT" => Ok(Self::Spent),
  50. "UNSPENT" => Ok(Self::Unspent),
  51. "PENDING" => Ok(Self::Pending),
  52. "RESERVED" => Ok(Self::Reserved),
  53. _ => Err(Error::UnknownState),
  54. }
  55. }
  56. }
  57. /// Check spendable request [NUT-07]
  58. #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
  59. #[cfg_attr(feature = "swagger", derive(utoipa::ToSchema))]
  60. pub struct CheckStateRequest {
  61. /// Y's of the proofs to check
  62. #[serde(rename = "Ys")]
  63. #[cfg_attr(feature = "swagger", schema(value_type = Vec<String>, max_items = 1_000))]
  64. pub ys: Vec<PublicKey>,
  65. }
  66. /// Proof state [NUT-07]
  67. #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
  68. #[cfg_attr(feature = "swagger", derive(utoipa::ToSchema))]
  69. pub struct ProofState {
  70. /// Y of proof
  71. #[serde(rename = "Y")]
  72. #[cfg_attr(feature = "swagger", schema(value_type = String))]
  73. pub y: PublicKey,
  74. /// State of proof
  75. pub state: State,
  76. /// Witness data if it is supplied
  77. pub witness: Option<String>,
  78. }
  79. impl From<(PublicKey, State)> for ProofState {
  80. fn from(value: (PublicKey, State)) -> Self {
  81. Self {
  82. y: value.0,
  83. state: value.1,
  84. witness: None,
  85. }
  86. }
  87. }
  88. /// Check Spendable Response [NUT-07]
  89. #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
  90. #[cfg_attr(feature = "swagger", derive(utoipa::ToSchema))]
  91. pub struct CheckStateResponse {
  92. /// Proof states
  93. pub states: Vec<ProofState>,
  94. }