SimpleCounter

Description:

Smart contract deployed on Ethereum.

Blockchain: Ethereum

Source Code: View Code On The Blockchain

Solidity Source Code:

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract SimpleCounter {
    uint256 public count;

    function increment() public {
        count += 1;
    }

    function getCount() public view returns (uint256) {
        return count;
    }
}

Tags:
addr:0x702f823dfc6ee470bf20fd60f2a2eaefc238cec0|verified:true|block:23555055|tx:0x501c42947dea6c6a4fded68855df42c15c149f7489683c16ac65951b14f935ac|first_check:1760270975

Submitted on: 2025-10-12 14:09:38

Comments

Log in to comment.

No comments yet.