veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
endorsements.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 ALTINTEGRATION_ENDORSEMENTS_HPP
7#define ALTINTEGRATION_ENDORSEMENTS_HPP
8
9#include <veriblock/pop/entities/endorsement.hpp>
10#include <veriblock/pop/fmt.hpp>
11
13
14namespace altintegration {
15
16struct VTB;
17struct ATV;
18
19// endorsement of VBK blocks in BTC
20using VbkEndorsement = Endorsement<uint192, uint256, VTB>;
21
22template <>
23VbkEndorsement VbkEndorsement ::fromContainer(const VTB& c);
24template <>
25VbkEndorsement::id_t VbkEndorsement::getId(const VTB& c);
26
27// endorsement of ALT blocks in VBK
28using AltEndorsement = Endorsement<std::vector<uint8_t>, uint192, ATV>;
29
30template <>
31AltEndorsement AltEndorsement ::fromContainer(
32 const ATV& c,
33 const std::vector<uint8_t>& containingHash,
34 const std::vector<uint8_t>& endorsedHash);
35template <>
36AltEndorsement::id_t AltEndorsement::getId(const ATV& c);
37
38template <>
39inline const std::string AltEndorsement::name() {
40 return "ALT";
41}
42
43template <>
44inline const std::string VbkEndorsement::name() {
45 return "VBK";
46}
47
48bool DeserializeFromVbkEncoding(ReadStream& stream,
49 VbkEndorsement& out,
50 ValidationState& state);
51
52bool DeserializeFromVbkEncoding(ReadStream& stream,
53 AltEndorsement& out,
54 ValidationState& state);
55
56} // namespace altintegration
57
59template <>
60struct std::hash<altintegration::VbkEndorsement> {
61 size_t operator()(const altintegration::VbkEndorsement& e) const {
62 using eid = altintegration::VbkEndorsement::id_t;
63 return std::hash<eid>{}(e.id);
64 }
65};
66
68template <>
69struct std::hash<altintegration::AltEndorsement> {
70 size_t operator()(const altintegration::AltEndorsement& e) const {
71 using eid = altintegration::AltEndorsement::id_t;
72 return std::hash<eid>{}(e.id);
73 }
74};
75
77
78#endif // ALTINTEGRATION_ENDORSEMENTS_HPP
Defines logging helpers.
Definition: block.hpp:14
Blob< VBK_BLOCK_HASH_SIZE > uint192
This is an overloaded member function, provided for convenience. It differs from the above function o...
Definition: uint.hpp:30
bool DeserializeFromVbkEncoding(ReadStream &stream, AltBlockAddon &out, ValidationState &state)
This is an overloaded member function, provided for convenience. It differs from the above function o...