AutoForwarder

Description:

Smart contract deployed on Ethereum with Factory features.

Blockchain: Ethereum

Source Code: View Code On The Blockchain

Solidity Source Code:

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

contract AutoForwarder {
    address immutable recipient;
    
    constructor(address _recipient) {
        recipient = _recipient;
    }
    
    receive() external payable {
        (bool success, ) = recipient.call{value: msg.value}("");
        require(success, "Transfer failed");
    }
}"
    }
  },
  "settings": {
    "optimizer": {
      "enabled": false,
      "runs": 200
    },
    "outputSelection": {
      "*": {
        "*": [
          "evm.bytecode",
          "evm.deployedBytecode",
          "devdoc",
          "userdoc",
          "metadata",
          "abi"
        ]
      }
    },
    "remappings": []
  }
}}

Tags:
Factory|addr:0xdc09003e90d59ccfd8748bf3d0fe1fa740d6ea29|verified:true|block:23731762|tx:0x4d5648f843185723bd91d8dab89a7f0d74a9fe884bb466fa2705b22daf729c6f|first_check:1762345897

Submitted on: 2025-11-05 13:31:39

Comments

Log in to comment.

No comments yet.