Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: invalid addresses config files #613

Merged
merged 1 commit into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions config/ZamaFHEVMConfig.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ library ZamaFHEVMConfig {
function getMockConfig() internal pure returns (FHEVMConfig.FHEVMConfigStruct memory) {
return
FHEVMConfig.FHEVMConfigStruct({
ACLAddress: 0x339EcE85B9E11a3A3AA557582784a15d7F82AAf2,
TFHEExecutorAddress: 0x596E6682c72946AF006B27C131793F2b62527A4b,
FHEPaymentAddress: 0x6d5A11aC509C707c00bc3A0a113ACcC26c532547,
KMSVerifierAddress: 0x208De73316E44722e16f6dDFF40881A3e4F86104
ACLAddress: 0xB4d8d77f7F9B465B60c190480c6160b69d695c9D,
TFHEExecutorAddress: 0xFdee168C46e1dFD082E78192b3C622cA78B58669,
FHEPaymentAddress: 0x2527DD76195fD3BFdd2c76D821e1f5d433d82C25,
KMSVerifierAddress: 0x89842EA0b44EF85391Bd1A9f3AC8B382CCF0d3F1
});
}

Expand Down
2 changes: 1 addition & 1 deletion config/ZamaGatewayConfig.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {Gateway} from "../gateway/lib/Gateway.sol";
*/
library ZamaGatewayConfig {
function getMockConfig() internal pure returns (address) {
return 0x096b4679d45fB675d4e2c1E4565009Cec99A12B1;
return 0x2C19507EEAd017495e23a98DB1ff20c7eD599ee1;
}

function getSepoliaConfig() internal pure returns (address) {
Expand Down