Address
0x773910352ed6d5d9b5822f7ae4b92bdca7fd03b4Current Holdings
$0.00
TXs sent
not counted
First Active
2026-04-10
block 26,248,262
Last Active
161 days ago
block 26,248,262
Funded By
not identified
Net worth historyi
No net-worth snapshots recorded yet
exact matchVerifyFoundry_1775827122_8a02d6solc 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 VerifyFoundry_1775827122_8a02d6 {
uint256 public constant DEPLOY_TIMESTAMP = 1775827122;
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;
}
}