-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Created IBatch interface and inherited it into ISablierFlowBase interface * address my feedback * chore: update inherited components --------- Co-authored-by: TheMarvelFan <nigampranshu665@gmail.com> Co-authored-by: andreivladbrg <andreivladbrg@gmail.com> Co-authored-by: smol-ninja <shubhamy2015@gmail.com>
- Loading branch information
1 parent
5b3e293
commit bdd2c99
Showing
5 changed files
with
20 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// SPDX-License-Identifier: GPL-3.0-or-later | ||
pragma solidity >=0.8.22; | ||
|
||
/// @notice This contract implements logic to batch call any function. | ||
interface IBatch { | ||
/// @notice Allows batched call to self, `this` contract. | ||
/// @param calls An array of inputs for each call. | ||
function batch(bytes[] calldata calls) external; | ||
} |
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