solidity/test/libsolidity/ABIJson/constructor_abi.sol

30 lines
582 B
Solidity
Raw Normal View History

2019-07-02 15:30:54 +00:00
contract test {
2020-06-23 12:14:24 +00:00
constructor(uint param1, test param2, bool param3) {}
2019-07-02 15:30:54 +00:00
}
// ----
// :test
// [
// {
// "inputs":
// [
// {
2019-07-02 14:04:52 +00:00
// "internalType": "uint256",
2019-07-02 15:30:54 +00:00
// "name": "param1",
// "type": "uint256"
// },
// {
2019-07-02 14:04:52 +00:00
// "internalType": "contract test",
2019-07-02 15:30:54 +00:00
// "name": "param2",
// "type": "address"
// },
// {
2019-07-02 14:04:52 +00:00
// "internalType": "bool",
2019-07-02 15:30:54 +00:00
// "name": "param3",
// "type": "bool"
// }
// ],
// "stateMutability": "nonpayable",
// "type": "constructor"
// }
// ]