6#ifndef ALT_INTEGRATION_INCLUDE_VERIBLOCK_BLOCKCHAIN_VBK_BLOCKCHAIN_UTIL_HPP_
7#define ALT_INTEGRATION_INCLUDE_VERIBLOCK_BLOCKCHAIN_VBK_BLOCKCHAIN_UTIL_HPP_
9#include <veriblock/pop/entities/vbkblock.hpp>
11#include "blockchain_util.hpp"
14#include "vbk_chain_params.hpp"
20uint32_t getNextWorkRequired(
const BlockIndex<VbkBlock>& currentTip,
21 const VbkBlock& block,
22 const VbkChainParams& params);
26VbkBlock Miner<VbkBlock, VbkChainParams>::getBlockTemplate(
27 const BlockIndex<VbkBlock>& tip,
const merkle_t& merkle);
31ArithUint256 getBlockProof(
const VbkBlock& block);
34int64_t getMedianTimePast(
const BlockIndex<VbkBlock>& prev);
38bool checkBlockTime(
const BlockIndex<VbkBlock>& prev,
39 const VbkBlock& block,
40 ValidationState& state,
41 const VbkChainParams& params);
44int64_t calculateMinimumTimestamp(
const BlockIndex<VbkBlock>& prev);
47bool validateKeystones(
const BlockIndex<VbkBlock>& prevBlock,
48 const VbkBlock& block,
49 std::shared_ptr<VbkChainParams> params);
53bool contextuallyCheckBlock(
const BlockIndex<VbkBlock>& prev,
54 const VbkBlock& block,
55 ValidationState& state,
56 const VbkChainParams& params,
57 bool shouldVerifyNextWork);