solidity/test/libsolidity/ABIJson/constructor_abi.sol
2020-07-07 12:16:18 +02:00

30 lines
582 B
Solidity

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