solidity/test/libsolidity/ABIJson/multiple_params.sol
2019-09-06 14:42:09 +02:00

34 lines
635 B
Solidity

contract test {
function f(uint a, uint b) public returns (uint d) { return a + b; }
}
// ----
// :test
// [
// {
// "inputs":
// [
// {
// "internalType": "uint256",
// "name": "a",
// "type": "uint256"
// },
// {
// "internalType": "uint256",
// "name": "b",
// "type": "uint256"
// }
// ],
// "name": "f",
// "outputs":
// [
// {
// "internalType": "uint256",
// "name": "d",
// "type": "uint256"
// }
// ],
// "stateMutability": "nonpayable",
// "type": "function"
// }
// ]