mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-06-14 20:21:07 +00:00
cffa14a4d2
Provide a modified (and incomplete) version of ZKSync zksolc that can compile the most basic contracts
22 lines
348 B
Rust
22 lines
348 B
Rust
//!
|
|
//! The EVM instructions translation utils.
|
|
//!
|
|
|
|
pub mod arithmetic;
|
|
pub mod bitwise;
|
|
pub mod call;
|
|
pub mod calldata;
|
|
pub mod comparison;
|
|
pub mod context;
|
|
pub mod create;
|
|
pub mod crypto;
|
|
pub mod ether_gas;
|
|
pub mod event;
|
|
pub mod ext_code;
|
|
pub mod immutable;
|
|
pub mod math;
|
|
pub mod memory;
|
|
pub mod r#return;
|
|
pub mod return_data;
|
|
pub mod storage;
|