12 lines
316 B
Solidity
12 lines
316 B
Solidity
|
|
// SPDX-License-Identifier: MIT
|
||
|
|
pragma solidity ^0.8.11;
|
||
|
|
|
||
|
|
/// @dev Minimal contract deployed via CREATE2 for VMID 2103 RPC smoke tests.
|
||
|
|
contract Create2Probe {
|
||
|
|
uint256 public constant VMID_TAG = 2103;
|
||
|
|
|
||
|
|
function ping() external pure returns (bytes32) {
|
||
|
|
return keccak256("create2-probe-2103");
|
||
|
|
}
|
||
|
|
}
|