MultiCallable

Git Source

Collection of Multicall utilities. Fork of Multicall3: https://github.com/mds1/multicall/blob/master/src/Multicall3.sol

Functions

multicall

Aggregates a few calls to this contract into one multicall without modifying msg.sender.

function multicall(Call[] calldata calls) external returns (Result[] memory callResults);

Structs

Call

struct Call {
    bool allowFailure;
    bytes callData;
}

Result

struct Result {
    bool success;
    bytes returnData;
}