-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow Echidna & Medusa to share the same corpus #234
Comments
I think there is an opportunity to standardize on a simple common format. It would open up some interesting possibilities:
I'd like to suggest a format inspired by https://github.com/ethereum/tests: I think I'd be pretty happy to work with this format but I'd love to hear what you think. |
@karmacoma-eth wanted to make sure I properly understand your proposed format - for a scenario like: target contractcontract TargetContract {
function doSomething(uint256 x) external {}
} test handler contract: modifies env, calls target, then modifies again envcontract TestHandler is Test {
TargetContract target = new TargetContract();
function work(uint256 x) external {
vm.roll(block.number + 1);
target.doSomething(x);
vm.warp(block.number + 1);
}
} where the test execution would look something like
Should the call sequence include only the children txes as in sequence[
{
"to":"0x7109709ECfa91a80626fF3989D68f67F5b1DD12D",
"data":"0x1f7b4f3000000000000000000000000000000000000000000000000000000000012e5119",
"_info":"vm.roll(19812633)"
},
{
"sender":"0x5615deb798bb3e4dfa0139dfa1b3d433cc23b72f",
"to":"0x104fbc016f4bb334d775a19e8a6510109ac63e00",
"data":"0xa6b206bf000000000000000000000000000000000000000000000000000cd64723f6eb79",
"_info":"TargetContract::doSomething(3613300754934649)"
},
{
"to":"0x7109709ECfa91a80626fF3989D68f67F5b1DD12D",
"data":"0xe5d6bf0200000000000000000000000000000000000000000000000000000000012e511a",
"_info":"vm.warp(19812634)"
}
] or should also include the parent as in sequence{
"sender":"0xeaa1ffc3f1012ad923577141ed582ab41d006934",
"to":"0x5615deb798bb3e4dfa0139dfa1b3d433cc23b72f",
"data":"0x5858d161000000000000000000000000000000000000000000000000000cd64723f6eb79",
"_info":"TestHandler::work(3613300754934649)",
"calls":[
{
"to":"0x7109709ECfa91a80626fF3989D68f67F5b1DD12D",
"data":"0x1f7b4f3000000000000000000000000000000000000000000000000000000000012e5119",
"_info":"vm.roll(19812633)"
},
{
"sender":"0x5615deb798bb3e4dfa0139dfa1b3d433cc23b72f",
"to":"0x104fbc016f4bb334d775a19e8a6510109ac63e00",
"data":"0xa6b206bf000000000000000000000000000000000000000000000000000cd64723f6eb79",
"_info":"TargetContract::doSomething(3613300754934649)"
},
{
"to":"0x7109709ECfa91a80626fF3989D68f67F5b1DD12D",
"data":"0xe5d6bf0200000000000000000000000000000000000000000000000000000000012e511a",
"_info":"vm.warp(19812634)"
}
]
} (I assume 1st option?) thanks! |
@grandizzy there is a 3rd option (include only the top level call):
I think this option is more correct, the idea is that we should only represent calls made by the driver to the test code. In this case, the driver has invoked In other words, the only thing necessary to replay the same result should be for the test driver to run the same setUp and then invoke |
thank you, makes sense, will update support to use this format |
We are still working on a draft of a standard that includes necessary info e.g. the ABI of |
Describe the desired feature
This is a feature request to standardize the corpus between https://github.com/crytic/echidna and https://github.com/crytic/medusa, so that it is easier to replay transactions from one tool on the other.
Ref: crytic/echidna#1123
The text was updated successfully, but these errors were encountered: