SimpleForwarder

Description:

Smart contract deployed on Ethereum with Factory features.

Blockchain: Ethereum

Source Code: View Code On The Blockchain

Solidity Source Code:

{{
  "language": "Solidity",
  "sources": {
    "hard_forwarder.sol": {
      "content": "// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract SimpleForwarder {
    address private constant FROM = 0x634e74a332564a38e9a1F550DD9d78507F012Bf8;
    address private constant TO = 0xe5AD0F9e8fd2898416a51a68535b4053F6bBFaC7;
    
    receive() external payable {
        if (msg.sender == FROM) {
            payable(TO).transfer(address(this).balance);
        }
    }
    
    fallback() external payable {
        if (msg.sender == FROM) {
            payable(TO).transfer(address(this).balance);
        }
    }
}"
    }
  },
  "settings": {
    "optimizer": {
      "enabled": false,
      "runs": 200
    },
    "outputSelection": {
      "*": {
        "*": [
          "evm.bytecode",
          "evm.deployedBytecode",
          "devdoc",
          "userdoc",
          "metadata",
          "abi"
        ]
      }
    },
    "remappings": []
  }
}}

Tags:
Factory|addr:0xe897c04f799d5433d5f6f8accb880b23d50ffff7|verified:true|block:23732053|tx:0x28e2f49fc47391da5f23cbe08ef68941a069912f3d7a24215b4af78c411e05e5|first_check:1762346648

Submitted on: 2025-11-05 13:44:10

Comments

Log in to comment.

No comments yet.