-
Notifications
You must be signed in to change notification settings - Fork 241
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
[ETHEREUM-CONTRACTS] | #1038 | Allow regular contracts to be the target of callAppAction
#1238
Closed
Closed
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
e2572cb
relax callAppAction requirements
0xdavinchee 7a29033
cleanup
0xdavinchee 340a45c
Merge branch 'dev' into 1038-relax-call-app-action-restriction
0xdavinchee dc07c98
Merge branch 'dev' into 1038-relax-call-app-action-restriction
0xdavinchee 1a39aca
bump packages
0xdavinchee File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
52 changes: 52 additions & 0 deletions
52
packages/ethereum-contracts/contracts/mocks/NonSuperAppContractMock.sol
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,52 @@ | ||
// SPDX-License-Identifier: AGPLv3 | ||
pragma solidity 0.8.16; | ||
|
||
import {ISuperApp, ISuperfluid} from "../superfluid/Superfluid.sol"; | ||
|
||
/// @title Non SuperApp Contract Mock | ||
/// @author Superfluid | ||
/// @notice This contract is used to test call app action against a non super app contract | ||
/// @dev It is important to note that callAppAction and callAppActionWithContext is allowed to be called | ||
/// by any contract. But, the `function` you want to invokeCallAppAction on must satisfy two requirements: | ||
/// 1. The `function` you want to call via callAppAction must take context bytes as the last parameter. | ||
/// 2. You must return the "correct" context bytes from the contract in the `function`, that is, untouched. | ||
contract NonSuperAppContractMock { | ||
ISuperfluid public superfluid; | ||
constructor(ISuperfluid _superfluid) { | ||
superfluid = _superfluid; | ||
} | ||
|
||
event Log(uint256 amount); | ||
|
||
/// @notice An example of a function that does not satisfy the requirements for callAppAction | ||
/// @dev This does not satsify requirements 1 or 2 | ||
/// @param _amount arbitrary amount | ||
function invalidCallAppActionFunction(uint256 _amount) external { | ||
emit Log(_amount); | ||
} | ||
|
||
/// @notice An example of a sneaky function that does not satisfy the requirements for callAppAction | ||
/// @dev This satisfies requirement 1 but not 2 | ||
/// @param _amount arbitrary amount | ||
/// @return newCtx the context bytes | ||
function sneakyCallAppActionFunction( | ||
uint256 _amount, | ||
bytes calldata //_ctx | ||
) external returns (bytes memory newCtx) { | ||
emit Log(_amount); | ||
} | ||
|
||
|
||
/// @notice An example of a function that satisfies the requirements for callAppAction | ||
/// @dev This satisfies requirements 1 and 2 | ||
/// @param _amount arbitrary amount | ||
/// @param _ctx correct context bytes | ||
/// @return newCtx the context bytes | ||
function validCallAppActionFunction( | ||
uint256 _amount, | ||
bytes calldata _ctx | ||
) external returns (bytes memory newCtx) { | ||
emit Log(_amount); | ||
newCtx = _ctx; | ||
} | ||
} |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's also ban calling
this
(the host contract itself) as target.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also remove the ISuperApp type, and call app e.g. "target"