Barretenberg
The ZK-SNARK library at the core of Aztec
Loading...
Searching...
No Matches
chonk_base.hpp
Go to the documentation of this file.
1// === AUDIT STATUS ===
2// internal: { status: not started, auditors: [], date: YYYY-MM-DD }
3// external_1: { status: not started, auditors: [], date: YYYY-MM-DD }
4// external_2: { status: not started, auditors: [], date: YYYY-MM-DD }
5// =====================
6
7#pragma once
8
12
13namespace bb {
14
21class IVCBase {
22 // CHONK: "Client Honk" - An UltraHonk variant with incremental folding and delayed non-native arithmetic.
23 public:
26
27 virtual ~IVCBase() = default;
28
29 virtual Goblin& get_goblin() = 0;
30 virtual const Goblin& get_goblin() const = 0;
31
32 virtual void accumulate(ClientCircuit& circuit, const std::shared_ptr<MegaVerificationKey>& precomputed_vk) = 0;
33
34 protected:
35 IVCBase() = default;
36};
37
38} // namespace bb
Base class interface for IVC schemes.
virtual const Goblin & get_goblin() const =0
IVCBase()=default
virtual void accumulate(ClientCircuit &circuit, const std::shared_ptr< MegaVerificationKey > &precomputed_vk)=0
virtual ~IVCBase()=default
virtual Goblin & get_goblin()=0
The verification key is responsible for storing the commitments to the precomputed (non-witness) poly...
Entry point for Barretenberg command-line interface.
Definition api.hpp:5
MegaCircuitBuilder_< field< Bn254FrParams > > MegaCircuitBuilder
constexpr decltype(auto) get(::tuplet::tuple< T... > &&t) noexcept
Definition tuple.hpp:13