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;
}
}
Submitted on: 2025-11-02 12:22:40
Comments
Log in to comment.
No comments yet.