Saver

Description:

Smart contract deployed on Ethereum with Factory features.

Blockchain: Ethereum

Source Code: View Code On The Blockchain

Solidity Source Code:

{{
  "language": "Solidity",
  "sources": {
    "contracts/contracts/1_Storage.sol": {
      "content": "// 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 Saver {

    uint8 number;

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

}"
    }
  },
  "settings": {
    "optimizer": {
      "enabled": false,
      "runs": 200
    },
    "outputSelection": {
      "*": {
        "*": [
          "evm.bytecode",
          "evm.deployedBytecode",
          "devdoc",
          "userdoc",
          "metadata",
          "abi"
        ]
      }
    },
    "remappings": []
  }
}}

Tags:
Factory|addr:0x80dafb1dc4e3ce9f920bfbb35eb044dd6b0bb1d5|verified:true|block:23710335|tx:0xd872f724a12d4223d111758071dd66a4a8a85486e8917002d434d903b28e2a07|first_check:1762082615

Submitted on: 2025-11-02 12:23:36

Comments

Log in to comment.

No comments yet.