Results 52 comments of snd

@pepyakin really like how your modification removed the need for lifetime params for the real (non testing) case

polkadot uses the concept of an `Externalities` trait (similar to `Context` idea) as well: https://github.com/paritytech/polkadot/blob/2ae67514569af4c1c55f19692bf2dd84307af78c/state_machine/src/lib.rs#L164 maybe we can get some useful ideas from their code i like the word `Externalities`

it has quite a bit to do with context in the sense that the context idea and externalities both model abilities of an execution environment (and those environments are even...

where does one find libsolidity? a google search didn't bring up any meaningful results

> It will allow us to compile contracts (and extract ABIs) without any need to shell-out to the compiler. personally i don't think shelling out to the compiler is much...

@tomusdrw is there something that comes to mind that would require little/medium work but should give us a big reduction in ethabi compilation time?

i'll figure this out and try to make it easy to use from sol-rs

my hope is that the parity EVM gives us enough tracing/introspection/statistics to achieve this. possibly through some slight modification. and in combination with source maps. if it works it would...