onbjerg
onbjerg
@lkngtn The subscription to the list (at least as I understood it when we talked about it) would be a part of the network, so it is already opt-in. I...
@kenshyx The search field for people only accepts lower case letters, can't enter capital ones
Radspec and Natspec are not entirely compatible, so I don't think the "slogan" should sort of say that they are
It's incompatible because Natspec is just JavaScript. Radspec is not fully compatible with JavaScript. Also Radspec requires type annotations in some situations, Natspec never requires it. I never thought of...
I wonder if it is feasible to just have a mapping of 4bytes -> description as opposed to having to apply descriptions to every method of every address, since a...
There is an on-chain registry? Also, if it is any help then we can fairly easily pull out a list of all 4bytes and their Radspec descriptions for all existing...
Moved to 1.1.0 since it depends on #5
@oivoodoo Your example is correct, however, when your addition expression gets turned into an AST node, the node should also look like this: ```js { type: 'BinaryExpression', operator: 'PLUS', //...
> Arent the inspector and traces good enought for inspecting internals? It's mostly for when we debug unexpected behavior etc in the Foundry executor, then we lack insight into what...
In anything between inspector calls, or outside of the reach of inspectors, e.g. the precondition checks in `transact`: https://github.com/bluealloy/revm/blob/71372fa9a2c2206c21448be0ec4b6dbece9ab281/crates/revm/src/evm_impl.rs#L43 Or the post checks in `finalize`: https://github.com/bluealloy/revm/blob/71372fa9a2c2206c21448be0ec4b6dbece9ab281/crates/revm/src/evm_impl.rs#L193 Maybe some of the...