Add Account framework (#5657)

This commit is contained in:
Ernesto García
2025-06-02 08:22:57 -06:00
committed by GitHub
parent 88962fb5ab
commit 83d2a247be
38 changed files with 3086 additions and 46 deletions

View File

@ -5,6 +5,7 @@ pragma solidity ^0.8.20;
contract CallReceiverMock {
event MockFunctionCalled();
event MockFunctionCalledWithArgs(uint256 a, uint256 b);
event MockFunctionCalledExtra(address caller, uint256 value);
uint256[] private _array;
@ -58,6 +59,10 @@ contract CallReceiverMock {
}
return "0x1234";
}
function mockFunctionExtra() public payable {
emit MockFunctionCalledExtra(msg.sender, msg.value);
}
}
contract CallReceiverMockTrustingForwarder is CallReceiverMock {