-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: [Quantstamp-ALC-14] fix execution data view for native functions
- Loading branch information
1 parent
357cb8c
commit 6fa612a
Showing
4 changed files
with
78 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// SPDX-License-Identifier: UNLICENSED | ||
pragma solidity ^0.8.26; | ||
|
||
interface IModularAccountBase { | ||
/// @notice Create a contract. | ||
/// @param value The value to send to the new contract constructor | ||
/// @param initCode The initCode to deploy. | ||
/// @param isCreate2 The bool to indicate which method to use to deploy. | ||
/// @param salt The salt for deployment. | ||
/// @return createdAddr The created contract address. | ||
function performCreate(uint256 value, bytes calldata initCode, bool isCreate2, bytes32 salt) | ||
external | ||
payable | ||
returns (address createdAddr); | ||
|
||
/// @notice Invalidate a nonce for deferred actions | ||
/// @param nonce the nonce to invalidate. | ||
function invalidateDeferredValidationInstallNonce(uint256 nonce) external; | ||
} |