1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! # Storage Subqueries Circuit //! //! Storage subquery //! - `blockNumber` (uint32) //! - `addr` (address = bytes20) //! - `slot` (uint256) //! /// Circuit and Component Implementation. pub mod circuit; /// Types pub mod types; #[cfg(test)] pub mod tests;