zkevm_opcode_defs 0.153.11

ZKsync EraVM opcode definitions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use super::*;

use ethereum_types::U256;

pub mod far_call;
pub mod fat_pointer;
pub mod meta;
pub mod near_call;
pub mod precompile_call;
pub mod ret;

pub use self::far_call::*;
pub use self::fat_pointer::*;
pub use self::meta::*;
pub use self::near_call::*;
pub use self::precompile_call::*;
pub use self::ret::*;