Add Blockhash library following EIP-2935 (#5642)

Co-authored-by: Arr00 <13561405+arr00@users.noreply.github.com>
This commit is contained in:
Ernesto García
2025-04-29 16:05:27 -06:00
committed by GitHub
parent 56c07e59c4
commit 6dd191a979
7 changed files with 246 additions and 1 deletions

View File

@ -0,0 +1,9 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import {Blockhash} from "../utils/Blockhash.sol";
/// @dev This mock is required for upgradeable tests to pass
contract BlockhashMock {
}