Skip to content

Commit dab52c9

Browse files
committed
docs(common): fix Sepolia config
1 parent c75c0b3 commit dab52c9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/solidity-guides/configure.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ To utilize encrypted computations in Solidity contracts, you must configure the
1414

1515
By inheriting these configuration contracts, you ensure seamless initialization and functionality across environments.
1616

17-
## ZamaFHEVMConfig.sol
17+
## ZamaConfig.sol
1818

1919
This configuration contract initializes the **fhevm environment** with required encryption parameters.
2020

2121
**Import based on your environment:**
2222

2323
```solidity
2424
// For Ethereum Sepolia
25-
import { SepoliaZamaFHEVMConfig } from "@fhevm/solidity/config/ZamaFHEVMConfig.sol";
25+
import { SepoliaConfig } from "@fhevm/solidity/config/ZamaConfig.sol";
2626
```
2727

2828
**Purpose:**
@@ -36,9 +36,9 @@ import { SepoliaZamaFHEVMConfig } from "@fhevm/solidity/config/ZamaFHEVMConfig.s
3636
// SPDX-License-Identifier: BSD-3-Clause-Clear
3737
pragma solidity ^0.8.24;
3838
39-
import { SepoliaZamaFHEVMConfig } from "@fhevm/solidity/config/ZamaFHEVMConfig.sol";
39+
import { SepoliaConfig } from "@fhevm/solidity/config/ZamaConfig.sol";
4040
41-
contract MyERC20 is SepoliaZamaFHEVMConfig {
41+
contract MyERC20 is SepoliaConfig {
4242
constructor() {
4343
// Additional initialization logic if needed
4444
}

0 commit comments

Comments
 (0)