pub type Sdk = GenericSdk<BabyBearPoseidon2Engine>;
Aliased Type§
struct Sdk { /* private fields */ }
Implementations
Source§impl<E: StarkFriEngine<SC>> GenericSdk<E>
impl<E: StarkFriEngine<SC>> GenericSdk<E>
pub fn new() -> Self
pub fn build<P: AsRef<Path>>( &self, guest_opts: GuestOptions, pkg_dir: P, target_filter: &Option<TargetFilter>, ) -> Result<Elf>
pub fn transpile( &self, elf: Elf, transpiler: Transpiler<F>, ) -> Result<VmExe<F>, TranspilerError>
pub fn execute<VC: VmConfig<F>>( &self, exe: VmExe<F>, vm_config: VC, inputs: StdIn, ) -> Result<Vec<F>, ExecutionError>
pub fn commit_app_exe( &self, app_fri_params: FriParameters, exe: VmExe<F>, ) -> Result<Arc<NonRootCommittedExe>>
pub fn app_keygen<VC: VmConfig<F>>( &self, config: AppConfig<VC>, ) -> Result<AppProvingKey<VC>>
pub fn generate_app_proof<VC: VmConfig<F>>( &self, app_pk: Arc<AppProvingKey<VC>>, app_committed_exe: Arc<NonRootCommittedExe>, inputs: StdIn, ) -> Result<ContinuationVmProof<SC>>
Sourcepub fn verify_app_proof(
&self,
app_vk: &AppVerifyingKey,
proof: &ContinuationVmProof<SC>,
) -> Result<VerifiedContinuationVmPayload, VmVerificationError>
pub fn verify_app_proof( &self, app_vk: &AppVerifyingKey, proof: &ContinuationVmProof<SC>, ) -> Result<VerifiedContinuationVmPayload, VmVerificationError>
Verifies the ContinuationVmProof, which is a collection of STARK proofs as well as additional Merkle proof for user public values.
This function verifies the STARK proofs and additional conditions to ensure that the
proof
is a valid proof of guest VM execution that terminates successfully (exit code 0)
with respect to a commitment to some VM executable.
It is the responsibility of the caller to check that the commitment matches the expected
VM executable.