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

CS 5.3 - Small interface updates #198

Merged
merged 1 commit into from
Jun 4, 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 src/quark-core/src/interfaces/IQuarkWallet.sol
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ interface IQuarkWallet {
function getDigestForQuarkOperation(QuarkOperation calldata op) external view returns (bytes32);
function getDigestForMultiQuarkOperation(bytes32[] memory opDigests) external pure returns (bytes32);
function getDigestForQuarkMessage(bytes memory message) external view returns (bytes32);
function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4);
function executeScriptWithNonceLock(address scriptAddress, bytes memory scriptCalldata)
external
returns (bytes memory);
Expand Down
4 changes: 3 additions & 1 deletion src/quark-proxy/src/QuarkMinimalProxy.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.23;

contract QuarkMinimalProxy {
import {IHasSignerExecutor} from "quark-core/src/interfaces/IHasSignerExecutor.sol";

contract QuarkMinimalProxy is IHasSignerExecutor {
/// @notice Address of the EOA signer or the EIP-1271 contract that verifies signed operations for this wallet
address public immutable signer;

Expand Down
Loading