Skip to main content

MulticallMock

Git Source

Copied from https://github.com/mds1/multicall/blob/main/src/Multicall3.sol

Functions

aggregate

Backwards-compatible call aggregation with Multicall

function aggregate(Call[] calldata calls) public payable returns (uint256 blockNumber, bytes[] memory returnData);

Parameters

NameTypeDescription
callsCall[]An array of Call structs

Returns

NameTypeDescription
blockNumberuint256The block number where the calls were executed
returnDatabytes[]An array of bytes containing the responses

receive

receive() external payable;

Structs

Call

struct Call {
address target;
bool isPayable;
bytes callData;
}