dapptools
dapptools copied to clipboard
Dapp, Seth, Hevm, and more
### Description When sending a transaction with a very large amount of calldata the 'show memory' section of the UI only show the calldata and it cannot be scrolled through...
Is it possible to use dapptools to deploy to other EVM compatible chains like fantom and the fantom testnet? From looking at the seth docs the chains are only ethereum...
``` pragma solidity ^0.8.6; import "ds-test/test.sol"; contract HevmbugTest is DSTest { // Passes function prove_dog(uint8[255] memory dog) public {} // Reverts function prove_cat(uint8[256] memory cat) public {} // Passes function...
Run `seth bundle-source 0x374ABb8cE19A73f2c4EFAd642bda76c797f19233` (on linux only?) and you will see: ```sh /nix/store/cicalla8af9c2aj1f5i52zj3r6imscph-seth-0.11.0/libexec/seth/seth-bundle-source: line 37: /nix/store/cicalla8af9c2aj1f5i52zj3r6imscph-seth-0.11.0/libexec/seth/seth: Argument list too long ``` Seems likely that [this](https://stackoverflow.com/questions/26268969/argument-list-too-long-for-every-command/26270155#26270155) is the root cause.
it would be nice if `dapp testnet` would spit out a bunch of env vars or some file that could be sourced or whatever that would configure seth to connect...
## Description This adds a simple [mutation testing](https://en.wikipedia.org/wiki/Mutation_testing) framework to dapptools based on [`universalmutator`](https://github.com/agroce/universalmutator). Mutation testing can be thought of as a kind of reverse fuzzing, where instead of generating...
## Description I *think* this fixes https://github.com/dapphub/dapptools/issues/686, but since the source map format and parser are very mysterious to me I'm not really sure that I've done the right thing....
Trying to decode the below data results in an error. Seems like it's because of the double parenthesis wrapping the arguments. I believe they signify the input is encoded as...
While debugging recently I've noticed that the code panel goes completely blank. Is this normal? If you'd like a reproduction case clone this branch, run `make`, and then run `dapp...
## Description Solidity fixes all the issues found: https://github.com/ethereum/solidity/issues/9500 Did not test it locally :( Hopefully the CI can do it? ## Checklist - [ ] tested locally - [...