dxo

Results 118 comments of dxo

did not know about `$0` until now. TIL :)

> Any chance that it's pulling from the old repo? yeah we're still using 0.6.7 for the tests: https://github.com/dapphub/dapptools/blob/c3c761dc01d44389db67291f40561a71d2baff2b/nix/hevm-tests/default.nix#L7, if you're feeling motivated you can bump that to 0.8.7 and...

hmmm yeah this might actually be easy. Any thoughts @MrChico ?

I think that depends on the approach taken, the fanciest (and imo most flexible / powerful) would be to expand the current UI to allow setting breakpoints, this would probably...

I think to do that we would need access to the full import tree? The compiler does not expose this afaik and building this ourselves seems like a non trivial...

opened a solc issue regarding the import graph: https://github.com/ethereum/solidity/issues/11716

ok so it seems like we can use solc to parse the source files and then build the import graph without too much effort by processing the parsed soliditiy AST.

hevm expects at least the following components in the solc output json: - metadata - evm.bytecode - evm.deployedBytecode - abi - storageLayout - evm.bytecode.sourceMap - evm.bytecode.linkReferences - evm.bytecode.generatedSources - evm.deployedBytecode.sourceMap...

`seth bundle-source` should produce json files containing sourcemaps. Currently it only produces json output for one contract (this may have been produced from multiple source files if the multiple source...

hmmmm, interesting, I'm wondering if it's because you're applying our overlay to a different version of nixpkgs than we use in the dapptools repo? Does the following shell work for...