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:0xdcd39cf603ccd35ae116775786347a654d3d3181|verified:true|block:23731910|tx:0x7fccffa60b121ee8298dc2476694a61d06137d50e603a006a10f91a37ed41135|first_check:1762345920

Submitted on: 2025-11-05 13:32:02

Comments

Log in to comment.

No comments yet.