Register

Description:

Smart contract deployed on Ethereum with Factory features.

Blockchain: Ethereum

Source Code: View Code On The Blockchain

Solidity Source Code:

// SPDX-License-Identifier: GPL-3.0

pragma solidity >=0.8.2 <0.9.0;

/**
 * @title Storage
 * @dev Store & retrieve value in a variable
 * @custom:dev-run-script ./scripts/deploy_with_ethers.ts
 */
contract Register {

    uint8 number;

    /**
     * @dev Store value in variable
     * @param num value to store
     */
    function register(uint8 num) public {
        number = num;
    }


}

Tags:
Factory|addr:0x804cd709337315e9cb5a66fd6c14a3b45007dfd2|verified:true|block:23710308|tx:0x4bf81b262b0df0d63e02d341aa24fb1418b6e84d8da9846315bf14f046345f9d|first_check:1762082558

Submitted on: 2025-11-02 12:22:40

Comments

Log in to comment.

No comments yet.