mirror of
https://github.com/hinto-janai/cuprate.git
synced 2025-02-03 11:46:31 +00:00
docs
This commit is contained in:
parent
ea80e666b2
commit
aa94d93f4d
3 changed files with 27 additions and 11 deletions
|
@ -21,16 +21,7 @@ pub struct Block {
|
|||
pub tx_hashes: Vec<String>,
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, Default, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||
pub struct MinerTransactionPrefix {
|
||||
pub version: u8,
|
||||
pub unlock_time: u64,
|
||||
pub vin: Vec<Input>,
|
||||
pub vout: Vec<Output>,
|
||||
pub extra: Vec<u8>,
|
||||
}
|
||||
|
||||
/// [`Block::miner_tx`].
|
||||
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||
#[serde(untagged)]
|
||||
|
@ -58,18 +49,32 @@ impl Default for MinerTransaction {
|
|||
}
|
||||
}
|
||||
|
||||
/// [`MinerTransaction::V1::prefix`] & [`MinerTransaction::V2::prefix`].
|
||||
#[derive(Clone, Debug, Default, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||
pub struct MinerTransactionPrefix {
|
||||
pub version: u8,
|
||||
pub unlock_time: u64,
|
||||
pub vin: Vec<Input>,
|
||||
pub vout: Vec<Output>,
|
||||
pub extra: Vec<u8>,
|
||||
}
|
||||
|
||||
/// [`MinerTransaction::V2::rct_signatures`].
|
||||
#[derive(Copy, Clone, Default, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||
pub struct MinerTransactionRctSignatures {
|
||||
pub r#type: u8,
|
||||
}
|
||||
|
||||
/// [`MinerTransactionPrefix::vin`].
|
||||
#[derive(Copy, Clone, Default, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||
pub struct Input {
|
||||
pub r#gen: Gen,
|
||||
}
|
||||
|
||||
/// [`Input::gen`].
|
||||
#[derive(Copy, Clone, Default, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||
pub struct Gen {
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
//! JSON output types.
|
||||
//!
|
||||
//! The same [`Output`] is used in both
|
||||
//! [`crate::json::block::MinerTransaction::vout`] and [`crate::json::tx::Transaction::vout`].
|
||||
//! [`crate::json::block::MinerTransactionPrefix::vout`]
|
||||
//! and [`crate::json::tx::TransactionPrefix::vout`].
|
||||
|
||||
#[cfg(feature = "serde")]
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
@ -14,6 +15,7 @@ pub struct Output {
|
|||
pub target: Target,
|
||||
}
|
||||
|
||||
/// [`Output::target`].
|
||||
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||
#[serde(untagged)]
|
||||
|
@ -30,6 +32,7 @@ impl Default for Target {
|
|||
}
|
||||
}
|
||||
|
||||
/// [`Target::TaggedKey::tagged_key`].
|
||||
#[derive(Clone, Default, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||
pub struct TaggedKey {
|
||||
|
|
|
@ -34,6 +34,7 @@ pub enum Transaction {
|
|||
},
|
||||
}
|
||||
|
||||
/// [`Transaction::V1::prefix`] & [`Transaction::V2::prefix`].
|
||||
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||
pub struct TransactionPrefix {
|
||||
|
@ -44,6 +45,7 @@ pub struct TransactionPrefix {
|
|||
pub extra: Vec<u8>,
|
||||
}
|
||||
|
||||
/// [`Transaction::V2::rct_signatures`].
|
||||
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||
pub struct RctSignatures {
|
||||
|
@ -53,6 +55,7 @@ pub struct RctSignatures {
|
|||
pub outPk: Vec<String>,
|
||||
}
|
||||
|
||||
/// [`Transaction::V2::rctsig_prunable`].
|
||||
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||
pub struct RctSigPrunable {
|
||||
|
@ -62,6 +65,7 @@ pub struct RctSigPrunable {
|
|||
pub pseudoOuts: Vec<String>,
|
||||
}
|
||||
|
||||
/// [`RctSigPrunable::bpp`].
|
||||
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||
pub struct Bpp {
|
||||
|
@ -75,6 +79,7 @@ pub struct Bpp {
|
|||
pub R: Vec<String>,
|
||||
}
|
||||
|
||||
/// [`RctSigPrunable::CLSAGs`].
|
||||
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||
pub struct Clsag {
|
||||
|
@ -83,6 +88,7 @@ pub struct Clsag {
|
|||
pub D: String,
|
||||
}
|
||||
|
||||
/// [`RctSignatures::ecdhInfo`].
|
||||
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||
pub struct EcdhInfo {
|
||||
|
@ -91,12 +97,14 @@ pub struct EcdhInfo {
|
|||
pub mask: Option<String>,
|
||||
}
|
||||
|
||||
/// [`TransactionPrefix::vin`].
|
||||
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||
pub struct Input {
|
||||
pub key: Key,
|
||||
}
|
||||
|
||||
/// [`Input::key`].
|
||||
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||
pub struct Key {
|
||||
|
|
Loading…
Reference in a new issue