Paul Berg
Paul Berg
If I add `` wrapper like this: ``` ``` I am getting an error like this: ``` Preprocessing error: Unexpected character `{` (U+007B) before name, expected a character that can...
A custom `mdx/no-unused-expressions` sounds good
Seconded. The last point, in particular, is critical because depending upon the compiler flags (e.g. optimizer) there might no difference between the suggested optimizations.
To be more specific, this is the error I am getting when I am using `if (foo == null)`: Toggle to see error log ```text Whoops, the AssemblyScript compiler has...
In retrospect, I suspect that this issue should have been opened in the [graph-tooling](https://github.com/graphprotocol/graph-tooling) repo
Is this the [MultiSend](https://etherscan.io/address/0x8d29be29923b68abfdd21e541b9374737b49cdad) contract that you referred to here, @mmv08?
Thanks for the quick answer @mmv08! Related issue: https://github.com/safe-global/safe-core-sdk/issues/1182
Haha no, it wasn't.
Thanks @asparuhdamyanov for your feature request. Extending things like Forge's `console.log` and `console2.log` is difficult in Solidity because [Rust-like traits are not supported](https://x.com/PaulRBerg/status/1531652974161838082). One idea is to create a bespoke...
Note that in the meantime, you can unwrap the PRBMath types like so: ```solidity import { ud, unwrap } from "@prb/math/src/UD60x18.sol"; import { console2 } from "forge-std/src/console2.sol"; function testFoo() external...