tradeunixyz

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 tradeunixyz {
    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:0x8f33cd79fd0685e16cef4c2004eb4cd0d27899d4|verified:true|block:23713947|tx:0xc12ce7390ab2263eb184b4d79a37313861e0059c1fc3a836cc5e5dcede1f3db6|first_check:1762159412

Submitted on: 2025-11-03 09:43:32

Comments

Log in to comment.

No comments yet.