Automated ABI Json tests.

This commit is contained in:
chriseth
2019-07-02 18:11:49 +02:00
parent 776fec1913
commit a4ef435c07
30 changed files with 1137 additions and 1088 deletions
@@ -0,0 +1,27 @@
contract test {
constructor(uint param1, test param2, bool param3) public payable {}
}
// ----
// :test
// [
// {
// "inputs":
// [
// {
// "name": "param1",
// "type": "uint256"
// },
// {
// "name": "param2",
// "type": "address"
// },
// {
// "name": "param3",
// "type": "bool"
// }
// ],
// "payable": true,
// "stateMutability": "payable",
// "type": "constructor"
// }
// ]