Discover more of SonicScan Block Explorer's tools and services in one place.
Contract Source Code:
File 1 of 1 : MultiCall
// SPDX-License-Identifier: No pragma solidity ^0.6.12; pragma experimental ABIEncoderV2; contract MultiCall { struct Call { address to; bytes data; } function multicall(Call[] memory calls) public returns (bytes[] memory results, bool[] memory success) { results = new bytes[](calls.length); success = new bool[](calls.length); for (uint i = 0; i < calls.length; i++) { (success[i], results[i]) = calls[i].to.call(calls[i].data); } } }
Please enter a contract address above to load the contract details and source code.
Please DO NOT store any passwords or private keys here. A private note (up to 100 characters) can be saved and is useful for transaction tracking.
This website uses cookies to improve your experience. By continuing to use this website, you agree to its Terms and Privacy Policy.