github.com/0xPolygon/supernets2-node@v0.0.0-20230711153321-2fe574524eaa/test/contracts/auto/Counter.sol (about)

     1  // SPDX-License-Identifier: GPL-3.0
     2  
     3  pragma solidity >=0.7.0 <0.9.0;
     4  
     5  contract Counter {
     6      uint public count;
     7      
     8      function increment() external {
     9          count += 1;
    10      }
    11  
    12      function getCount() public view returns (uint) {
    13          return count;
    14      }
    15  }