solidity/test/libsolidity/ABIJson/multiple_params.sol

34 lines
635 B
Solidity
Raw Normal View History

2019-07-02 15:30:54 +00:00
contract test {
function f(uint a, uint b) public returns (uint d) { return a + b; }
}
// ----
// :test
// [
// {
// "inputs":
// [
// {
2019-07-02 14:04:52 +00:00
// "internalType": "uint256",
2019-07-02 15:30:54 +00:00
// "name": "a",
// "type": "uint256"
// },
// {
2019-07-02 14:04:52 +00:00
// "internalType": "uint256",
2019-07-02 15:30:54 +00:00
// "name": "b",
// "type": "uint256"
// }
// ],
// "name": "f",
// "outputs":
// [
// {
2019-07-02 14:04:52 +00:00
// "internalType": "uint256",
2019-07-02 15:30:54 +00:00
// "name": "d",
// "type": "uint256"
// }
// ],
// "stateMutability": "nonpayable",
// "type": "function"
// }
// ]