Skip to content

Instantly share code, notes, and snippets.

View andreolf's full-sized avatar
🎯
Focusing

Francesco andreolf

🎯
Focusing
View GitHub Profile
@andreolf
andreolf / gist:42a457ba43bfa96118af39db14eef3be
Created December 23, 2022 10:55
Pass constructor arguments to a contract in an Echidna test
pragma solidity ^0.6.0;
contract MyContract {
uint public value;
constructor(uint _value) public {
value = _value;
}
}