Ben Scherrey
Ben Scherrey
Definitely don't care for 'await' being used in this regard because it strongly infers asynchronous semantics which are not present in the EVM. 'call' or 'send' (as in sending a...
Any thoughts on priority/timeframe for this? I'm starting to see some layer2 EVMs that extend the VM by adding new built-in contract primitives. So they have Solidity functions that do...
Can mythril analyze contracts compiled from Vyper presently or is it completely useless for all non-Solildity contracts for now?
Just noticed this issue today when my team was asking me about how to implement PUT with multiple statements. My first reaction was that this doesn't seem to jive with...
Any progress on this project? I know LLVM is very much biased towards register based architectures. Has that been an issue with resulting code (dis-)satisfaction? Or have you just basically...
Disabling re-entrancy by default fits with the 'default safe' policies of Vyper. Definitely lets do this. How to deal with the change in backwards compatibility is a bigger question. Maybe...
> @external > @reentrant(call_A, call_B, max_calls=5) > def only_A_and_B_reentrancy_allowed(): > """ > @dev Can only call this function if call-out from inside `call_A` or `call_B`. > Overall maximum of 5...
Typically when I do a delegate call it's because I want to catch a revert and maybe do something about it rather than just let it throw. (I guess this...
This is killing us in terms of being able to diagnose issues inside boa. Any chance this can be remedied any time soon? We've just moved our dev environment to...