ziskos 1.1.0-alpha

Guest runtime and entrypoint for programs targeting the ZisK zkVM
1
2
3
4
5
6
7
8
9
10
11
use crate::hints::macros::define_hint_ptr;
use zisk_definitions::{HINT_KECCAK256, KECCAK_RESULTS};

define_hint_ptr! {
    keccak256 => {
        hint_id: HINT_KECCAK256,
        param: input,
        is_result: false,
        enabled: KECCAK_RESULTS,
    }
}