Skip to main content
PulseScanner.io

Address

0xdbd8831618e29ff0e2e9237b4fd514b8c8ba2188
Current Holdings
$0.00
TXs sent
not counted
First Active
2026-04-10
block 26,249,608
Last Active
157 days ago
block 26,249,608
Funded By
not identified

Net worth historyi

No net-worth snapshots recorded yet
exact matchVerifyMetadata_1775841107_727db9solc 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 VerifyMetadata_1775841107_727db9 {
    uint256 public constant DEPLOY_TIMESTAMP = 1775841107;
    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;
    }
}