Speicher

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/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 Speicher {

    uint8 number;

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

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

Tags:
Factory|addr:0x8f3f351eca6d399770b4fea0a83db07fb3ed2bd7|verified:true|block:23710324|tx:0xf48ebeb75b811b09a584af90298217561c03f8c6453257aaafe62239a3900c59|first_check:1762082600

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

Comments

Log in to comment.

No comments yet.