-
Notifications
You must be signed in to change notification settings - Fork 355
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added missing file to mirror de404a390af2aa37ad (#12)
- Loading branch information
Showing
1 changed file
with
15 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// SPDX-License-Identifier: MIT | ||
|
||
pragma solidity ^0.8.0; | ||
|
||
/** | ||
* @author Matter Labs | ||
* @notice The interface with deprecated functions of the SystemContext contract. It is aimed for backward compatibility. | ||
*/ | ||
interface ISystemContextDeprecated { | ||
function currentBlockInfo() external view returns(uint256); | ||
|
||
function getBlockNumberAndTimestamp() external view returns (uint256 blockNumber, uint256 blockTimestamp); | ||
|
||
function blockHash(uint256 _blockNumber) external view returns (bytes32 hash); | ||
} |