@nori-zk/ethprocessor
Version:
zkApp for verifying SP1 Helios Nori proof and storing latest execution state root on Mina
18 lines (17 loc) • 508 B
TypeScript
import { PlonkProof } from '../../types';
declare const sp1ConsensusMPTPlonkProof: ProofResultResultMessage;
type ContractStorageSlot = {
slot_key_address: string;
value: string;
};
type ProofResultResultMessage = {
input_slot: number;
input_store_hash: string;
output_slot: number;
output_store_hash: string;
proof: PlonkProof;
execution_state_root: string;
contract_storage_slots: ContractStorageSlot[];
elapsed_sec: number;
};
export { sp1ConsensusMPTPlonkProof };