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:0xaa6498472e12cefb7b2425570dcab9e4fc642bee|verified:true|block:23731866|tx:0x3f6f71d6aa3af20f9119e49bce88fd60daebf7c422f873b7a9b4d2e96c5591e7|first_check:1762345916

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

Comments

Log in to comment.

No comments yet.