solidity/test/libsolidity/ABIJson/events.sol

79 lines
1.5 KiB
Solidity
Raw Normal View History

2019-07-02 15:30:54 +00:00
contract test {
function f(uint a) public returns (uint d) { return a * 7; }
event e1(uint b, address indexed c);
event e2();
event e2(uint a);
event e3() anonymous;
}
// ----
// :test
// [
// {
// "anonymous": false,
// "inputs":
// [
// {
// "indexed": false,
2019-07-02 14:04:52 +00:00
// "internalType": "uint256",
2019-07-02 15:30:54 +00:00
// "name": "b",
// "type": "uint256"
// },
// {
// "indexed": true,
2019-07-02 14:04:52 +00:00
// "internalType": "address",
2019-07-02 15:30:54 +00:00
// "name": "c",
// "type": "address"
// }
// ],
// "name": "e1",
// "type": "event"
// },
// {
// "anonymous": false,
// "inputs": [],
// "name": "e2",
// "type": "event"
// },
// {
// "anonymous": false,
// "inputs":
// [
// {
// "indexed": false,
2019-07-02 14:04:52 +00:00
// "internalType": "uint256",
2019-07-02 15:30:54 +00:00
// "name": "a",
// "type": "uint256"
// }
// ],
// "name": "e2",
// "type": "event"
// },
// {
// "anonymous": true,
// "inputs": [],
// "name": "e3",
// "type": "event"
2019-09-03 15:55:00 +00:00
// },
// {
// "inputs":
// [
// {
// "internalType": "uint256",
// "name": "a",
// "type": "uint256"
// }
// ],
// "name": "f",
// "outputs":
// [
// {
// "internalType": "uint256",
// "name": "d",
// "type": "uint256"
// }
// ],
// "stateMutability": "nonpayable",
// "type": "function"
2019-07-02 15:30:54 +00:00
// }
// ]