Skip to main content
PulseScanner.io

Address

0xe21a189675bc2ba11df034be625ebcd32ca107fb
Current Holdings
$0.00
TXs sent
not counted
First Active
2025-11-04
block 24,938,066
Last Active
313 days ago
block 24,979,219
Funded By
not identified

Net worth historyi

No net-worth snapshots recorded yet
exact matchMulticallsolc 0.8.20+commit.a1b79de6runtime exact · creation exact
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

contract Multicall {
    struct Call {
        address target;
        bytes data;
    }

    function aggregate(Call[] calldata calls) external {
        for (uint256 i = 0; i < calls.length; ) {
            (bool success, ) = calls[i].target.call(calls[i].data);
            require(success, "Multicall failed");
            unchecked { ++i; }
        }
    }
}