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

feat: remove GatewayCaller and Gateway library #165

Merged
merged 1 commit into from
Dec 2, 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
1 change: 0 additions & 1 deletion contracts/gateway/.env.gateway

This file was deleted.

107 changes: 0 additions & 107 deletions contracts/gateway/GatewayCaller.sol

This file was deleted.

10 changes: 9 additions & 1 deletion contracts/gateway/GatewayContract.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,15 @@ import "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "../addresses/KMSVerifierAddress.sol";
import "../addresses/ACLAddress.sol";
import "./IKMSVerifier.sol";

interface IKMSVerifier {
function verifyDecryptionEIP712KMSSignatures(
address aclAddress,
uint256[] memory handlesList,
bytes memory decryptedResult,
bytes[] memory signatures
) external returns (bool);
}

contract GatewayContract is UUPSUpgradeable, Ownable2StepUpgradeable {
/// @notice Name of the contract
Expand Down
12 changes: 0 additions & 12 deletions contracts/gateway/IKMSVerifier.sol

This file was deleted.

158 changes: 0 additions & 158 deletions contracts/gateway/lib/Gateway.sol

This file was deleted.

5 changes: 0 additions & 5 deletions contracts/gateway/lib/GatewayContractAddress.sol

This file was deleted.

Loading