veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
vbk_blockchain_util.hpp
1// Copyright (c) 2019-2022 Xenios SEZC
2// https://www.veriblock.org
3// Distributed under the MIT software license, see the accompanying
4// file LICENSE or http://www.opensource.org/licenses/mit-license.php.
5
6#ifndef ALT_INTEGRATION_INCLUDE_VERIBLOCK_BLOCKCHAIN_VBK_BLOCKCHAIN_UTIL_HPP_
7#define ALT_INTEGRATION_INCLUDE_VERIBLOCK_BLOCKCHAIN_VBK_BLOCKCHAIN_UTIL_HPP_
8
9#include <veriblock/pop/entities/vbkblock.hpp>
10
11#include "blockchain_util.hpp"
12#include "chain.hpp"
13#include "miner.hpp"
14#include "vbk_chain_params.hpp"
15
16namespace altintegration {
17
19template <>
20uint32_t getNextWorkRequired(const BlockIndex<VbkBlock>& currentTip,
21 const VbkBlock& block,
22 const VbkChainParams& params);
23
25template <>
26VbkBlock Miner<VbkBlock, VbkChainParams>::getBlockTemplate(
27 const BlockIndex<VbkBlock>& tip, const merkle_t& merkle);
28
30template <>
31ArithUint256 getBlockProof(const VbkBlock& block);
32
34int64_t getMedianTimePast(const BlockIndex<VbkBlock>& prev);
35
37template <>
38bool checkBlockTime(const BlockIndex<VbkBlock>& prev,
39 const VbkBlock& block,
40 ValidationState& state,
41 const VbkChainParams& params);
42
44int64_t calculateMinimumTimestamp(const BlockIndex<VbkBlock>& prev);
45
47bool validateKeystones(const BlockIndex<VbkBlock>& prevBlock,
48 const VbkBlock& block,
49 std::shared_ptr<VbkChainParams> params);
50
52template <>
53bool contextuallyCheckBlock(const BlockIndex<VbkBlock>& prev,
54 const VbkBlock& block,
55 ValidationState& state,
56 const VbkChainParams& params,
57 bool shouldVerifyNextWork);
58
59} // namespace altintegration
60
61#endif // ALT_INTEGRATION_INCLUDE_VERIBLOCK_BLOCKCHAIN_VBK_BLOCKCHAIN_UTIL_HPP_
Defines logging helpers.
Definition: block.hpp:14