moh-eulith
Results
42
comments of
moh-eulith
Since there is no documentation for this, here is a working example: ``` [profile.default] src = "contracts/src/main/sol" test = "test" libs = ["forge_modules"] remappings = [ '@openzeppelin/=node_modules/@openzeppelin/', 'forge-std=forge_modules/forge-std/src/' ] via_ir...
Is there an efficient way to get the lowest N bits into `u` (`u8`, `u16`, etc)? I can do `u8` via `byte(0)`, but that's about it.