mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
30 lines
587 B
Solidity
30 lines
587 B
Solidity
contract test {
|
|
constructor(uint param1, test param2, bool param3) payable {}
|
|
}
|
|
// ----
|
|
// :test
|
|
// [
|
|
// {
|
|
// "inputs":
|
|
// [
|
|
// {
|
|
// "internalType": "uint256",
|
|
// "name": "param1",
|
|
// "type": "uint256"
|
|
// },
|
|
// {
|
|
// "internalType": "contract test",
|
|
// "name": "param2",
|
|
// "type": "address"
|
|
// },
|
|
// {
|
|
// "internalType": "bool",
|
|
// "name": "param3",
|
|
// "type": "bool"
|
|
// }
|
|
// ],
|
|
// "stateMutability": "payable",
|
|
// "type": "constructor"
|
|
// }
|
|
// ]
|