Skip to content

Commit 9ad8645

Browse files
authored
Alex b/fhevm v9 (#13)
* chore: fhevm v0.9.0 * 0.2.0 * fix: package.json overrides undici v5
1 parent dbc36db commit 9ad8645

File tree

3 files changed

+388
-399
lines changed

3 files changed

+388
-399
lines changed

contracts/FHECounter.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
pragma solidity ^0.8.24;
33

44
import {FHE, euint32, externalEuint32} from "@fhevm/solidity/lib/FHE.sol";
5-
import {SepoliaConfig} from "@fhevm/solidity/config/ZamaConfig.sol";
5+
import {EthereumConfig} from "@fhevm/solidity/config/ZamaConfig.sol";
66

77
/// @title A simple FHE counter contract
88
/// @author fhevm-hardhat-template
99
/// @notice A very basic example contract showing how to work with encrypted data using FHEVM.
10-
contract FHECounter is SepoliaConfig {
10+
contract FHECounter is EthereumConfig {
1111
euint32 private _count;
1212

1313
/// @notice Returns the current count

0 commit comments

Comments
 (0)