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
// Copyright (C) 2019-2023 Aleo Systems Inc.
// 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.
use super::*;
impl<N: Network, C: ConsensusStorage<N>> Ledger<N, C> {
/// Returns a candidate for the next block in the ledger.
pub fn prepare_advance_to_next_block<R: Rng + CryptoRng>(
&self,
private_key: &PrivateKey<N>,
candidate_transactions: Vec<Transaction<N>>,
candidate_solutions: Option<Vec<ProverSolution<N>>>,
rng: &mut R,
) -> Result<Block<N>> {
// Retrieve the latest state root.
let latest_state_root = *self.latest_state_root();
// Retrieve the latest block.
let latest_block = self.latest_block();
// Retrieve the latest round.
let latest_round = latest_block.round();
// Retrieve the latest height.
let latest_height = latest_block.height();
// Retrieve the latest total supply in microcredits.
let latest_total_supply = latest_block.total_supply_in_microcredits();
// Retrieve the latest cumulative weight.
let latest_cumulative_weight = latest_block.cumulative_weight();
// Construct the coinbase solution.
let (coinbase, coinbase_accumulator_point, cumulative_proof_target) = match &candidate_solutions {
Some(solutions) => {
// Accumulate the prover solutions into a coinbase solution.
let coinbase = self.coinbase_puzzle.accumulate_unchecked(&self.latest_epoch_challenge()?, solutions)?;
// Compute the accumulator point of the coinbase solution.
let coinbase_accumulator_point = coinbase.to_accumulator_point()?;
// Compute the cumulative proof target. Using '.sum' here is safe because we sum u64s into a u128.
let cumulative_proof_target =
solutions.iter().map(|s| Ok(s.to_target()? as u128)).sum::<Result<u128>>()?;
// Output the coinbase solution, coinbase accumulator point, and cumulative proof target.
(Some(coinbase), coinbase_accumulator_point, cumulative_proof_target)
}
None => (None, Field::<N>::zero(), 0u128),
};
// Compute the next round number.
let next_round = latest_round.saturating_add(1);
// Compute the next height.
let next_height = latest_height.saturating_add(1);
// Compute the next cumulative weight.
let next_cumulative_weight = latest_cumulative_weight.saturating_add(cumulative_proof_target);
// Construct the finalize state.
let state = FinalizeGlobalState::new::<N>(
next_round,
next_height,
next_cumulative_weight,
cumulative_proof_target,
latest_block.hash(),
)?;
// Select the transactions from the memory pool.
let transactions = self.vm.speculate(state, candidate_transactions.iter())?;
// Compute the next total supply in microcredits.
let next_total_supply_in_microcredits = update_total_supply(latest_total_supply, &transactions)?;
// Checkpoint the timestamp for the next block.
let next_timestamp = OffsetDateTime::now_utc().unix_timestamp();
// TODO (raychu86): Pay the provers.
let (proving_rewards, staking_rewards) = match candidate_solutions {
Some(prover_solutions) => {
// Calculate the coinbase reward.
let coinbase_reward = coinbase_reward(
latest_block.last_coinbase_timestamp(),
next_timestamp,
next_height,
N::STARTING_SUPPLY,
N::ANCHOR_TIME,
)?;
// Calculate the proving rewards.
let proving_rewards = proving_rewards(prover_solutions, coinbase_reward, cumulative_proof_target)?;
// Calculate the staking rewards.
let staking_rewards = Vec::<Ratify<N>>::new();
// Output the proving and staking rewards.
(proving_rewards, staking_rewards)
}
None => {
// Output the proving and staking rewards.
(vec![], vec![])
}
};
// Construct the ratifications.
let mut ratifications = Vec::<Ratify<N>>::new();
ratifications.extend_from_slice(&proving_rewards);
ratifications.extend_from_slice(&staking_rewards);
// Compute the ratifications root.
let ratifications_root = *N::merkle_tree_bhp::<RATIFICATIONS_DEPTH>(
// TODO (howardwu): Formalize the Merklization of each Ratify enum.
&ratifications
.iter()
.map(|r| Ok::<_, Error>(r.to_bytes_le()?.to_bits_le()))
.collect::<Result<Vec<_>, _>>()?,
)?
.root();
// Construct the next coinbase target.
let next_coinbase_target = coinbase_target(
latest_block.last_coinbase_target(),
latest_block.last_coinbase_timestamp(),
next_timestamp,
N::ANCHOR_TIME,
N::NUM_BLOCKS_PER_EPOCH,
N::GENESIS_COINBASE_TARGET,
)?;
// Construct the next proof target.
let next_proof_target = proof_target(next_coinbase_target, N::GENESIS_PROOF_TARGET);
// Construct the next last coinbase target and next last coinbase timestamp.
let (next_last_coinbase_target, next_last_coinbase_timestamp) = match coinbase {
Some(_) => (next_coinbase_target, next_timestamp),
None => (latest_block.last_coinbase_target(), latest_block.last_coinbase_timestamp()),
};
// Construct the metadata.
let metadata = Metadata::new(
N::ID,
next_round,
next_height,
next_total_supply_in_microcredits,
next_cumulative_weight,
cumulative_proof_target,
next_coinbase_target,
next_proof_target,
next_last_coinbase_target,
next_last_coinbase_timestamp,
next_timestamp,
)?;
// Construct the header.
let header = Header::from(
latest_state_root,
transactions.to_transactions_root()?,
transactions.to_finalize_root()?,
ratifications_root,
coinbase_accumulator_point,
metadata,
)?;
// Construct the new block.
Block::new(private_key, latest_block.hash(), header, transactions, ratifications, coinbase, rng)
}
/// Adds the given block as the next block in the ledger.
pub fn advance_to_next_block(&self, block: &Block<N>) -> Result<()> {
// Acquire the write lock on the current block.
let mut current_block = self.current_block.write();
// Update the VM.
self.vm.add_next_block(block)?;
// Update the current block.
*current_block = block.clone();
// Drop the write lock on the current block.
drop(current_block);
// If the block is the start of a new epoch, or the epoch challenge has not been set, update the current epoch challenge.
if block.height() % N::NUM_BLOCKS_PER_EPOCH == 0 || self.current_epoch_challenge.read().is_none() {
// Update the current epoch challenge.
self.current_epoch_challenge.write().clone_from(&self.get_epoch_challenge(block.height()).ok());
}
Ok(())
}
}