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": {
    "evmVersion": "prague",
    "metadata": {
      "bytecodeHash": "ipfs"
    },
    "optimizer": {
      "enabled": false,
      "runs": 200
    },
    "remappings": [],
    "outputSelection": {
      "*": {
        "*": [
          "evm.bytecode",
          "evm.deployedBytecode",
          "devdoc",
          "userdoc",
          "metadata",
          "abi"
        ]
      }
    }
  }
}}

Tags:
Factory|addr:0xafdb9d70d89c4b562625d9f198b7ca9212ab05c1|verified:true|block:23731825|tx:0x3de2a15cde15d6eed1c417481dea319b3dbdb1b24f6bfb4c34c9b01f64e195de|first_check:1762345909

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

Comments

Log in to comment.

No comments yet.