EthWrapper

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/EthWrapper.sol": {
      "content": "// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.13;

interface IWETH {
    function deposit() external payable;
    function transfer(address,uint) external;
}

contract EthWrapper {
    IWETH internal constant WETH = IWETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);
    address internal immutable jumpgate;

    constructor(address jumpgate_) {
        jumpgate = jumpgate_;
    }

    receive() external payable {
        WETH.deposit{value: msg.value}();
        WETH.transfer(jumpgate, msg.value);
    }
}
"
    }
  },
  "settings": {
    "optimizer": {
      "enabled": true,
      "runs": 200
    },
    "outputSelection": {
      "*": {
        "*": [
          "evm.bytecode",
          "evm.deployedBytecode",
          "devdoc",
          "userdoc",
          "metadata",
          "abi"
        ]
      }
    }
  }
}}

Tags:
Factory|addr:0x67a7cf7c70262fa9b9fff3307e24a587c11c7787|verified:true|block:23547516|tx:0xf1cbdb24c61017dce462d14de92e6d8aeab3bd797b3a81cd66adda88f2afbc01|first_check:1760105308

Submitted on: 2025-10-10 16:08:28

Comments

Log in to comment.

No comments yet.