Skip to content

Commit

Permalink
chore: removed FHEVMConfig import in config file
Browse files Browse the repository at this point in the history
  • Loading branch information
jatZama committed Dec 3, 2024
1 parent e020312 commit d92644d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions config/ZamaFHEVMConfig.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
// SPDX-License-Identifier: BSD-3-Clause-Clear
pragma solidity ^0.8.24;

import {FHEVMConfig, TFHE} from "../lib/TFHE.sol";
import {TFHE} from "../lib/TFHE.sol";
import {FHEVMConfigStruct} from "../lib/Impl.sol";

/**
* @title ZamaFHEVMConfig.
Expand All @@ -11,17 +12,17 @@ import {FHEVMConfig, TFHE} from "../lib/TFHE.sol";
* which are deployed & maintained by Zama.
*/
library ZamaFHEVMConfig {
function getSepoliaConfig() internal pure returns (FHEVMConfig.FHEVMConfigStruct memory) {
function getSepoliaConfig() internal pure returns (FHEVMConfigStruct memory) {
return
FHEVMConfig.FHEVMConfigStruct({
FHEVMConfigStruct({
ACLAddress: 0xFee8407e2f5e3Ee68ad77cAE98c434e637f516e5,
TFHEExecutorAddress: 0x687408aB54661ba0b4aeF3a44156c616c6955E07,
FHEPaymentAddress: 0xFb03BE574d14C256D56F09a198B586bdfc0A9de2,
KMSVerifierAddress: 0x9D6891A6240D6130c54ae243d8005063D05fE14b
});
}

function getEthereumConfig() internal pure returns (FHEVMConfig.FHEVMConfigStruct memory) {
function getEthereumConfig() internal pure returns (FHEVMConfigStruct memory) {
/// TODO
}
}
Expand Down

0 comments on commit d92644d

Please sign in to comment.