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 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
// Copyright (c) 2022 Espresso Systems (espressosys.com)
// This file is part of the Reef library.
// This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
// You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
//! Traits describing the interface of a CAP ledger.
use crate::types::{ViewingError, ViewingMemoOpening};
use ark_serialize::{CanonicalDeserialize, CanonicalSerialize};
use jf_cap::{
keys::{ViewerKeyPair, ViewerPubKey},
proof::UniversalParam,
structs::{AssetCode, AssetDefinition, Nullifier, RecordCommitment, RecordOpening},
MerkleTree, TransactionNote,
};
use serde::{de::DeserializeOwned, Serialize};
use std::collections::HashMap;
use std::fmt::{Debug, Display};
use std::hash::Hash;
/// A set of nullifiers which have been spent.
///
/// In its simplest form this is just a set of nullifiers; however, notice that the only required
/// interface is for inserting new nullifiers. Querying nullifiers is done on a network-specific
/// basis, and we do not assume that the [NullifierSet] data structure will provide an interface for
/// querying every nullifier that has been published. This could, for example, be implemented as a
/// cryptographic commitment to a set of nullifiers, where `multi_insert` simply updates the
/// commitment.
///
/// Since [NullifierSet] may be a commitment to a set that is actually represented elsewhere, it
/// includes a notion of a [Proof](NullifierSet::Proof) which can be used to authenticate that a
/// particular nullifier is or isn't in the set. All interfaces involving [NullifierSet] are
/// written with the assumption that proofs are always necessary for inserting nullifiers, and must
/// always be returned as authentication when querying nullifiers. An implementation of this trait
/// which does not require authentication (for example, an implementation that maintains the
/// entire nullifiers set in memory) may use trivial proofs, like `()`.
pub trait NullifierSet:
Clone + Debug + PartialEq + Serialize + DeserializeOwned + Send + Sync
{
/// Authentication that a given nullifier is or isn't in the set.
type Proof: Clone + Debug + Send + Sync;
/// Update the set to include additional nullifiers.
///
/// Insert a collection of nullifiers into the set given proofs that the nullifiers are not
/// already in the set. If this function fails, it returns one of the input proofs which was
/// invalid.
fn multi_insert(&mut self, nullifiers: &[(Nullifier, Self::Proof)]) -> Result<(), Self::Proof>;
}
/// The types of transactions supported by this network.
///
/// This trait represents an enum-like interface, with a variant for each transaction. Thus, the
/// public interface consists of constructors for the CAP transaction type variants. The
/// implementation may include additional variants for extensions to the protocol. It is required
/// that two transaction kinds representing different kinds of transactiosn compare unequal. For
/// example, `TransactionKind::send() != TransactionKind::mint()`.
pub trait TransactionKind:
Clone + Debug + Display + PartialEq + Eq + Hash + Serialize + DeserializeOwned + Send + Sync
{
fn send() -> Self;
fn receive() -> Self;
fn mint() -> Self;
fn freeze() -> Self;
fn unfreeze() -> Self;
fn unknown() -> Self;
}
/// A CAP transaction.
///
/// A CAP transaction is an operation on the CAP ledger -- it consumes a set of records, adding
/// their nullifiers to the nullifier set, and produces a list of new records, adding their
/// commitments to the record set. It may also contain viewing information encrypted under the
/// viewing key of the transaction's asset type.
///
/// The transaction may also contain information specific to a particular instantiation of CAP, such
/// as a proof that the transaction is valid, bookkeeping related to fees and rewards, or optional
/// plaintext record openings for the transaction outputs, in the case of a non-private type of
/// transaction.
///
/// Regardless of the exact structure of the transaction, this interface captures the transaction's
/// effects on the ledger when it is executed -- the exact nullifiers and record commitments which
/// will be added to the ledger, regardless of how they are encoded in the transaction.
pub trait Transaction: Clone + Debug + Serialize + DeserializeOwned + Send + Sync {
/// Nullifier set to be updated when a transaction is added to the ledger.
type NullifierSet: NullifierSet;
/// Transaction digest.
///
/// This should be a determinstic, injective, committing function of the transaction.
type Hash: Clone
+ Debug
+ Eq
+ Hash
+ Send
+ Sync
+ Serialize
+ DeserializeOwned
+ CanonicalSerialize
+ CanonicalDeserialize;
/// Supported transaction types.
type Kind: TransactionKind;
/// Wrap a raw CAP transaction in this network's transaction type.
fn cap(note: TransactionNote, proofs: Vec<<Self::NullifierSet as NullifierSet>::Proof>)
-> Self;
/// Attempt to decrypt the attached viewing memo.
///
/// Given a collection of asset types for which the caller holds the viewing key, attempt to
/// open the viewing memos attached to this transaction.
///
/// `viewable_assets` should be the set of asset types which the caller can view, indexed by
/// asset code. This determines which asset types can be viewed by this method. `viewing_keys`
/// is the caller's collection of viewing key pairs, indexed by public key. `viewing_keys` must
/// contain every public key which is listed as a viewer in the policy of one of the
/// `viewable_assets`.
fn open_viewing_memo(
&self,
viewable_assets: &HashMap<AssetCode, AssetDefinition>,
viewing_keys: &HashMap<ViewerPubKey, ViewerKeyPair>,
) -> Result<ViewingMemoOpening, ViewingError>;
/// Nullifiers for the records that this transaction will consume when executed.
///
/// The results should contain authentication that the nullifiers were unspent at the time the
/// transaction was constructed.
fn proven_nullifiers(&self) -> Vec<(Nullifier, <Self::NullifierSet as NullifierSet>::Proof)>;
/// Commitments to the records that this transaction will create when executed.
fn output_commitments(&self) -> Vec<RecordCommitment>;
/// If this is not a private transaction, get the openings of its output records.
///
/// The implementation must ensure that if `self.output_openings().is_some()`, then
/// `self.output_commitments()` is a list of the commitments of each [RecordOpening] in
/// `self.output_openings().unwrap()`.
fn output_openings(&self) -> Option<Vec<RecordOpening>> {
// Most transactions do not have attached record openings. Override this default if the
// implementing transaction type does.
None
}
/// A committing hash of this transaction.
fn hash(&self) -> Self::Hash;
/// The type of this transaction.
fn kind(&self) -> Self::Kind;
/// Update the proofs that this transaction's nullifiers are unspent.
fn set_proofs(&mut self, proofs: Vec<<Self::NullifierSet as NullifierSet>::Proof>);
/// The number of outputs.
///
/// This is equivalent to `self.output_commitments().len()`, but may be more efficient in some
/// implementations.
fn output_len(&self) -> usize {
// Override with a more efficient implementation if the output length can be calculated
// without building the vector of outputs.
self.output_commitments().len()
}
/// This transaction's inputs, without authentication.
fn input_nullifiers(&self) -> Vec<Nullifier> {
self.proven_nullifiers()
.into_iter()
.map(|(n, _)| n)
.collect()
}
}
/// Errors that can occur when validating a [Transaction] or [Block].
pub trait ValidationError:
'static + Clone + Debug + Display + snafu::Error + Serialize + DeserializeOwned + Send + Sync
{
/// A catch-all error variant with a helpful message.
fn new(msg: impl Display) -> Self;
/// Whether validation failed because a transaction's nullifier proof was invalid.
fn is_bad_nullifier_proof(&self) -> bool;
}
/// A block of transactions.
///
/// From the point of view of this abstraction, a [Block] is just a list of transactions, although
/// the implementation of [Block] may contain additional metadata.
pub trait Block: Clone + Debug + Serialize + DeserializeOwned + Send + Sync {
/// Transactions in this block.
type Transaction: Transaction;
/// Errors that can occur when validation this block.
type Error: ValidationError;
/// Add a new [Transaction] to this block.
///
/// Fails if the transaction would make the block inconsistent, for example if the new
/// transaction is incompatible with a transaction already in the block.
fn add_transaction(&mut self, txn: Self::Transaction) -> Result<(), Self::Error>;
/// The transactions in this block.
fn txns(&self) -> Vec<Self::Transaction>;
/// The number of transactions in this block.
fn len(&self) -> usize {
self.txns().len()
}
/// Whether there are no transactions in this block.
fn is_empty(&self) -> bool {
self.len() == 0
}
}
/// State required to validate a [Block] of [Transaction]s.
///
/// Technically, this interface does not actually require blocks to be validated. It merely requires
/// that the [Validator] state is sufficient to produce the outputs of each block, and that each
/// state has a unique commitment. If the network as a whole uses commitments to authenticate ledger
/// states, then [Validator::StateCommitment] should match that commitment after each block.
pub trait Validator:
Clone + Debug + PartialEq + Serialize + DeserializeOwned + Send + Sync
{
/// A commitment to the state of the validator.
type StateCommitment: Copy + Debug + PartialEq + Serialize + DeserializeOwned + Send + Sync;
/// Blocks applied by this validator.
type Block: Block;
/// Additional data required to authenticate a committed block, not contained in the block
/// itself.
type Proof: Clone + Debug + Serialize + DeserializeOwned + Send + Sync;
/// The number of blocks this validator has applied.
fn block_height(&self) -> u64;
/// The commitment to the current state of the validator.
fn commit(&self) -> Self::StateCommitment;
/// Build a block on top of the current state of this validator.
///
/// The block is initially empty. Transactions can be appended using
/// [add_transaction](Block::add_transaction).
fn next_block(&self) -> Self::Block;
/// Apply a new block, updating the state and returning UIDs and Merkle paths for each output.
///
/// For each output, the returned UID is the index of that output; that is, the total number of
/// outputs which had been generated before that one. The returned [MerkleTree] should be a
/// sparse [MerkleTree] with the same commitment as the updated [Validator], containing paths
/// to each leaf whose index is listed in the UIDs.
fn validate_and_apply(
&mut self,
block: Self::Block,
proof: Self::Proof,
) -> Result<(Vec<u64>, MerkleTree), <Self::Block as Block>::Error>;
}
/// A CAP ledger.
///
/// This trait aggregates various other traits that constitute a ledger and network. It also
/// provides whole-ledger information.
pub trait Ledger: Copy + Debug + Send + Sync {
/// The state of a validator for this ledger.
///
/// Note that this determines all of the other types, such as [Block] and [Transaction], used by
/// this ledger.
type Validator: Validator;
/// A human-readable name for this ledger.
fn name() -> String;
/// The number of past [MerkleTree](jf_cap::MerkleTree) roots maintained by validators.
///
/// This determines how out of data a CAP transaction can be and still be accepted by a
/// validator. If a transaction was constructed against a ledger state which is less than
/// [record_root_history](Ledger::record_root_history) transactions old, the transaction can be
/// accepted.
fn record_root_history() -> usize;
/// The height of the ledger's records [MerkleTree](jf_cap::MerkleTree).
fn merkle_height() -> u8;
/// The universal setup for PLONK proofs.
fn srs() -> &'static UniversalParam;
}