solidity/test/libsolidity/ABIJson/constructor_abi.sol
2019-07-18 16:54:11 +02:00

31 lines
614 B
Solidity

contract test {
constructor(uint param1, test param2, bool param3) public {}
}
// ----
// :test
// [
// {
// "inputs":
// [
// {
// "internalType": "uint256",
// "name": "param1",
// "type": "uint256"
// },
// {
// "internalType": "contract test",
// "name": "param2",
// "type": "address"
// },
// {
// "internalType": "bool",
// "name": "param3",
// "type": "bool"
// }
// ],
// "payable": false,
// "stateMutability": "nonpayable",
// "type": "constructor"
// }
// ]