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:0x91142ece7143e4469f155cbe22cb0cbb5d2d9eb6|verified:true|block:23589289|tx:0x33acb5a46a48f90217630ab0840a6d07974f144136e6f48d9d44ba65b3164870|first_check:1760608576

Submitted on: 2025-10-16 11:56:19

Comments

Log in to comment.

No comments yet.