6#ifndef ALT_INTEGRATION_INCLUDE_VERIBLOCK_BLOCKCHAIN_BTC_BLOCKCHAIN_UTIL_HPP_
7#define ALT_INTEGRATION_INCLUDE_VERIBLOCK_BLOCKCHAIN_BTC_BLOCKCHAIN_UTIL_HPP_
9#include <veriblock/pop/entities/btcblock.hpp>
11#include "blockchain_util.hpp"
12#include "btc_chain_params.hpp"
20uint32_t getNextWorkRequired(
const BlockIndex<BtcBlock>& prevBlock,
21 const BtcBlock& block,
22 const BtcChainParams& params);
26BtcBlock Miner<BtcBlock, BtcChainParams>::getBlockTemplate(
27 const BlockIndex<BtcBlock>& tip,
const merkle_t& merkle);
31ArithUint256 getBlockProof(
const BtcBlock& block);
35int64_t getMedianTimePast(
const BlockIndex<BtcBlock>& prev);
39bool checkBlockTime(
const BlockIndex<BtcBlock>& prev,
40 const BtcBlock& block,
41 ValidationState& state,
42 const BtcChainParams& param);
46bool contextuallyCheckBlock(
const BlockIndex<BtcBlock>& prev,
47 const BtcBlock& block,
48 ValidationState& state,
49 const BtcChainParams& params,
50 bool shouldVerifyNextWork);