mirror of
https://github.com/zama-ai/fhevm-solidity.git
synced 2026-01-13 14:38:01 -05:00
updated to ethermint node updated node dev version removed parallel flag from hardhat test reput inband test for ci setup evm version to Paris to avoid PUSH0 error and updated hardhat version removed utils.ts.new file synced package.json and package-lock.json prettier
16 lines
325 B
Solidity
16 lines
325 B
Solidity
// SPDX-License-Identifier: BSD-3-Clause-Clear
|
|
pragma solidity ^0.8.20;
|
|
|
|
// dummy contract for dummy transactions just to advance blocks
|
|
contract Counter {
|
|
uint32 value;
|
|
|
|
function increment() public {
|
|
value += 1;
|
|
}
|
|
|
|
function currentValue() public view returns (uint32) {
|
|
return value;
|
|
}
|
|
}
|