Paul Berg
Paul Berg
Also how does `vercel deploy --prebuilt` work in conjunction with `vercel deploy --with-cache`? What is the difference between `--prebuilt` and `--with-cache`?
Thank you @juanfranblanco 😊
I'm wrestling with a similar issue now, after having recently upgraded to [email protected]. Some obvious errors are correctly highlighted: But others, such as incorrect types, are not (`underlyingOut` should be...
I don't think I am using custom rules. This is my [.solhint.json file](https://github.com/paulrberg/solidity-template/blob/8c266a343ac751b2b73f79783498fd35b5bc5f08/.solhint.json). Also the type error above is not triggered by solhint, but the solidity compiler itself.
Ah so that's what you mean by custom rules. Gotcha. Tagging @fvictorio (creator of the prettier plugin), in case he knows how to patch this.
What I'm doing now is to have this in my "Workspace Settings": ```javascript { "solidity.compileUsingRemoteVersion": "v0.4.24+commit.e67f0147" } ``` But indeed, my suggestion was to have the vscode extension automatically detect...
I'm posting the default "Hello World" code here to make it easier for posterity to copy and paste it: ```rust fn main() { println!("Hello, world!"); } ```
Closing this since I have switched to Foundry in the meantime, and Forge has support for fuzzing by default.
Hello @Atarpara, I'm sorry for the delayed response. I ran a few tests and indeed you are right - your approach is faster than mine. Happy to accept this PR,...
Hi @Atarpara, I'm sorry, I accidentally closed your PR. But I managed to implement your proposal, and credit you as a git author in commit https://github.com/paulrberg/prb-math/commit/a490c088c5de0564d48064b0c2a0647ab9d4299c. Thanks again for your...