Alex Beregszaszi
Alex Beregszaszi
And provide two implementations: - native - scaffolded (* maybe look for a better name) The native one wraps around the C functions, while the scaffolded can be used for...
Depends on #13537
Pulled out from #13532
`abi.encodePacked` was introduced in 0.4.22 as a backwards compatibility measure for the irregular "packed" encoding. Since then we have introduced `bytes.concat` (#10903) and learned that most projects (rightly) do not...
This seems to be not too intuitive: ``` $ test/tools/isoltest -t smtCheckerTests/control_flow/revert.sol Invalid test unit filter - can only contain '[a-zA-Z1-9_/*]*: smtCheckerTests/control_flow/revert.sol ``` While of course `-t smtCheckerTests/control_flow/*` or `-t...
When we made the coloured output default (aka the new error message formatter), we did not enable it for standard json, only the CLI. In the standard json we currently...
It seems there is a very large number of includes which are imported without any reason. Most of these are remnants of old code. Removing them could allow for nicer...
For a while internal types are exposed in the ABI, which can be used to do type checking stricter than the encoding allows. Such an example when enums are used...
Does the `using MyLIb for *;` statement saves that much typing/space as opposed to clearly typing out the intended types?