snarkvm_ledger_narwhal_transmission_id/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#![forbid(unsafe_code)]
#![warn(clippy::cast_possible_truncation)]

mod bytes;
mod serialize;
mod string;

use console::{network::TRANSACTION_PREFIX, prelude::*};
use ledger_puzzle::{SOLUTION_ID_PREFIX, SolutionID};

#[derive(Copy, Clone, PartialEq, Eq, Hash)]
pub enum TransmissionID<N: Network> {
    /// A ratification.
    Ratification,
    /// A solution.
    Solution(SolutionID<N>, N::TransmissionChecksum),
    /// A transaction.
    Transaction(N::TransactionID, N::TransmissionChecksum),
}

impl<N: Network> From<(SolutionID<N>, N::TransmissionChecksum)> for TransmissionID<N> {
    /// Converts the solution ID and checksum into a transmission ID.
    fn from((solution_id, checksum): (SolutionID<N>, N::TransmissionChecksum)) -> Self {
        Self::Solution(solution_id, checksum)
    }
}

impl<N: Network> From<(&N::TransactionID, &N::TransmissionChecksum)> for TransmissionID<N> {
    /// Converts the transaction ID and checksum into a transmission ID.
    fn from((transaction_id, checksum): (&N::TransactionID, &N::TransmissionChecksum)) -> Self {
        Self::Transaction(*transaction_id, *checksum)
    }
}

impl<N: Network> TransmissionID<N> {
    /// Returns the solution ID if the transmission is a solution.
    pub fn solution(&self) -> Option<SolutionID<N>> {
        match self {
            Self::Solution(solution_id, _) => Some(*solution_id),
            _ => None,
        }
    }

    /// Returns the transaction ID if the transmission is a transaction.
    pub fn transaction(&self) -> Option<N::TransactionID> {
        match self {
            Self::Transaction(transaction_id, _) => Some(*transaction_id),
            _ => None,
        }
    }

    /// Returns the checksum if the transmission is a solution or a transaction.
    pub fn checksum(&self) -> Option<N::TransmissionChecksum> {
        match self {
            Self::Ratification => None,
            Self::Solution(_, checksum) => Some(*checksum),
            Self::Transaction(_, checksum) => Some(*checksum),
        }
    }
}

#[cfg(any(test, feature = "test-helpers"))]
pub mod test_helpers {
    use super::*;
    use console::{
        network::MainnetV0,
        prelude::{Rng, TestRng, Uniform},
        types::Field,
    };

    type CurrentNetwork = MainnetV0;

    /// Returns a list of sample transmission IDs, sampled at random.
    pub fn sample_transmission_ids(rng: &mut TestRng) -> Vec<TransmissionID<CurrentNetwork>> {
        // Initialize a sample vector.
        let mut sample = Vec::with_capacity(10);
        // Append sample solution IDs.
        for _ in 0..5 {
            sample.push(TransmissionID::Solution(
                SolutionID::from(rng.gen::<u64>()),
                <CurrentNetwork as Network>::TransmissionChecksum::from(rng.gen::<u128>()),
            ));
        }
        // Append sample transaction IDs.
        for _ in 0..5 {
            let id = TransmissionID::Transaction(
                <CurrentNetwork as Network>::TransactionID::from(Field::rand(rng)),
                <CurrentNetwork as Network>::TransmissionChecksum::from(rng.gen::<u128>()),
            );
            sample.push(id);
        }
        // Return the sample vector.
        sample
    }
}