| 1 | ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
| 2 | // Counter |
| 3 | ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
| 4 | |
| 5 | export const counterAbi = [ |
| 6 | { |
| 7 | type: 'function', |
| 8 | inputs: [], |
| 9 | name: 'increment', |
| 10 | outputs: [], |
| 11 | stateMutability: 'nonpayable', |
| 12 | }, |
| 13 | { |
| 14 | type: 'function', |
| 15 | inputs: [], |
| 16 | name: 'number', |
| 17 | outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }], |
| 18 | stateMutability: 'view', |
| 19 | }, |
| 20 | { |
| 21 | type: 'function', |
| 22 | inputs: [{ name: 'newNumber', internalType: 'uint256', type: 'uint256' }], |
| 23 | name: 'setNumber', |
| 24 | outputs: [], |
| 25 | stateMutability: 'nonpayable', |
| 26 | }, |
| 27 | ] as const |