Alexander Kondratskiy
Alexander Kondratskiy
I see what you mean. I'm going to give an extremely contrived example of my usecase: ```cpp struct Product { int id; }; struct Hat : Product { Color color;...
Good question about how to handle > uint64 strings. If we look at APIs like charconv they have an error code for overflow. So if a user asks to parse...
Hey Steven! Sure, I don't mind at all. Perhaps I can work on setting up Travis CI or something like that to make sure all the compilers are supported. I...
Hi, I think this should be higher priority. The hardhat ecosystem is missing something to manage deployments, and something like `hardhat-deploy` is desperately needed. However it's currently a non-starter because...
@aspiers I took a look at https://github.com/NomicFoundation/hardhat-ignition , and there haven't been any commits since July 2021. There is only a single release on npm https://www.npmjs.com/package/hardhat-ignition from a year ago....
`rtags` monitors file-system events, and checks for changes in the `compile_commands.json` file. As a test I manually removed and added a _single_ entry from the json with vim, saving the...
Any update on this? Having a simple alias to reduce typing would be nice. No fancy side effects, just a "dumb" type alias.
Not sure why I am being "thumbs down"ed ```solidity contract SomeContract { struct ComplexParams { //... } function func(ComplexParams params) internal { //... } } contract SomeContractFactory { using ComplexParams...
@taye000 Can you give more information that "solved it" in case others run into this issue? I am getting the same problem now, and was wondering if you had suggestions...
@mds1 I'd like to chime and say detecting whether `--broadcast` is enabled is useful. If we take a step back and look at the big picture, we write scripts in...