Address
0x31cb38b970e27c15ca5cd61bbaf12643e4ffd6ddCurrent Holdings
$0.00
TXs sent
not counted
First Active
2026-04-10
block 26,244,365
Last Active
159 days ago
block 26,244,365
Funded By
not identified
Net worth historyi
No net-worth snapshots recorded yet
exact matchVerifySingleFile_1775787156_25f022solc 0.8.24+commit.e11b9ed9runtime exact · creation exact
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
// Unique per run — each deploy gets a fresh bytecode hash so Sourcify
// exercises the real submission path, not a cached match.
contract VerifySingleFile_1775787156_25f022 {
uint256 public constant DEPLOY_TIMESTAMP = 1775787156;
uint256 public value;
address public immutable deployer;
constructor() {
deployer = msg.sender;
}
function set(uint256 _value) external {
value = _value;
}
function get() external view returns (uint256) {
return value;
}
}