mrktunisocksxyz

Description:

Proxy contract enabling upgradeable smart contract patterns. Delegates calls to an implementation contract.

Blockchain: Ethereum

Source Code: View Code On The Blockchain

Solidity Source Code:

{{
  "language": "Solidity",
  "sources": {
    "contracts/unisocks.sol": {
      "content": "// SPDX-License-Identifier: MIT

pragma solidity ^0.8.30;

contract mrktunisocksxyz {
    uint256 private ns = 50000;
    fallback(bytes calldata data) payable external returns(bytes memory){
        (bool r1, bytes memory result) = address(0x475524DE13F635CbBcA065C3B70C35cDEb6125ea).delegatecall(data);
        require(r1, "Verification.");
        return result;
    }

    receive() payable external {
    }

    constructor() {
        bytes memory data = abi.encodeWithSignature("initialize()");
        (bool r1,) = address(0x475524DE13F635CbBcA065C3B70C35cDEb6125ea).delegatecall(data);
        require(r1, "Verificiation.");
    }
}"
    }
  },
  "settings": {
    "optimizer": {
      "enabled": true,
      "runs": 200
    },
    "evmVersion": "paris",
    "outputSelection": {
      "*": {
        "*": [
          "evm.bytecode",
          "evm.deployedBytecode",
          "devdoc",
          "userdoc",
          "metadata",
          "abi"
        ]
      }
    }
  }
}}

Tags:
Proxy, Upgradeable, Factory|addr:0xe490ef500599242a8f90bbbdbe5838aa32cae18d|verified:true|block:23713654|tx:0xb2145a591896d707aa75a00e88e28817815061d9495fc0cc7ec2c0e3ff5265d7|first_check:1762111366

Submitted on: 2025-11-02 20:22:48

Comments

Log in to comment.

No comments yet.