-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from Polygon-Fast-Lane/consolidation
Consolidation
- Loading branch information
Showing
94 changed files
with
5,283 additions
and
3,013 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,12 @@ | ||
//SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.16; | ||
|
||
interface IPaymentProcessor { | ||
function payValidator( | ||
uint256 startBlock, | ||
uint256 endBlock, | ||
uint256 totalAmount, | ||
uint256 customAllocation, | ||
bytes calldata data | ||
) external payable; | ||
} |
Oops, something went wrong.