Skip to content

Multicall3 Berachain

Git Source

The Multicall3 contract is a Solidity contract implemented by the MakerDAO team. Its primary purpose is to aggregate results from multiple function calls in a single transaction, which can help reduce gas costs and improve efficiency when interacting with multiple contracts or making multiple calls to the same contracts.

The contract is backwards-compatible with Multicall and Multicall2 contracts, and it provides several functions for aggregating calls, such as aggregate, tryAggregate, blockAndAggregate, aggregate3, and aggregate3Value. These functions accept arrays of Call, Call3, or Call3Value structs, which contain the target contract address, call data, and other optional parameters like whether to allow failures and the value to be sent with the call.

The contract also provides utility functions to retrieve information about the current block, such as block number, block hash, block coinbase, block difficulty, block gas limit, block timestamp, and the balance of a given address.

To use the Multicall3 contract, it is pre-deployed at 0x9d1dB8253105b007DDDE65Ce262f701814B91125 on Berachain. This can be particularly useful when working with decentralized applications that require multiple contract interactions or when batching multiple calls to save on gas costs.

Note: Link to existing contract ABI's can be found on Github here.

Authors: Michael Elliot mike@makerdao.com, Joshua Levine joshua@makerdao.com, Nick Johnson arachnid@notdot.net, Andreas Bigger andreas@nascent.xyz, Matt Solomon matt@mattsolomon.dev

Aggregate results from multiple function calls

Multicall & Multicall2 backwards-compatible

Aggregate methods are marked payable to save 24 gas per call

Functions

aggregate

Backwards-compatible call aggregation with Multicall

solidity
function aggregate(Call[] calldata calls) public payable returns (uint256 blockNumber, bytes[] memory returnData);
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

tryAggregate

Backwards-compatible with Multicall2

Aggregate calls without requiring success

solidity
function tryAggregate(bool requireSuccess, Call[] calldata calls) public payable returns (Result[] memory returnData);
function tryAggregate(bool requireSuccess, Call[] calldata calls) public payable returns (Result[] memory returnData);

Parameters

NameTypeDescription
requireSuccessboolIf true, require all calls to succeed
callsCall[]An array of Call structs

Returns

NameTypeDescription
returnDataResult[]An array of Result structs

tryBlockAndAggregate

Backwards-compatible with Multicall2

Aggregate calls and allow failures using tryAggregate

solidity
function tryBlockAndAggregate(bool requireSuccess, Call[] calldata calls)
    public
    payable
    returns (uint256 blockNumber, bytes32 blockHash, Result[] memory returnData);
function tryBlockAndAggregate(bool requireSuccess, Call[] calldata calls)
    public
    payable
    returns (uint256 blockNumber, bytes32 blockHash, Result[] memory returnData);

Parameters

NameTypeDescription
requireSuccessbool
callsCall[]An array of Call structs

Returns

NameTypeDescription
blockNumberuint256The block number where the calls were executed
blockHashbytes32The hash of the block where the calls were executed
returnDataResult[]An array of Result structs

blockAndAggregate

Backwards-compatible with Multicall2

Aggregate calls and allow failures using tryAggregate

solidity
function blockAndAggregate(Call[] calldata calls)
    public
    payable
    returns (uint256 blockNumber, bytes32 blockHash, Result[] memory returnData);
function blockAndAggregate(Call[] calldata calls)
    public
    payable
    returns (uint256 blockNumber, bytes32 blockHash, Result[] memory returnData);

Parameters

NameTypeDescription
callsCall[]An array of Call structs

Returns

NameTypeDescription
blockNumberuint256The block number where the calls were executed
blockHashbytes32The hash of the block where the calls were executed
returnDataResult[]An array of Result structs

aggregate3

Aggregate calls, ensuring each returns success if required

solidity
function aggregate3(Call3[] calldata calls) public payable returns (Result[] memory returnData);
function aggregate3(Call3[] calldata calls) public payable returns (Result[] memory returnData);

Parameters

NameTypeDescription
callsCall3[]An array of Call3 structs

Returns

NameTypeDescription
returnDataResult[]An array of Result structs

aggregate3Value

Aggregate calls with a msg value

Reverts if msg.value is less than the sum of the call values

solidity
function aggregate3Value(Call3Value[] calldata calls) public payable returns (Result[] memory returnData);
function aggregate3Value(Call3Value[] calldata calls) public payable returns (Result[] memory returnData);

Parameters

NameTypeDescription
callsCall3Value[]An array of Call3Value structs

Returns

NameTypeDescription
returnDataResult[]An array of Result structs

getBlockHash

Returns the block hash for the given block number

solidity
function getBlockHash(uint256 blockNumber) public view returns (bytes32 blockHash);
function getBlockHash(uint256 blockNumber) public view returns (bytes32 blockHash);

Parameters

NameTypeDescription
blockNumberuint256The block number

getBlockNumber

Returns the block number

solidity
function getBlockNumber() public view returns (uint256 blockNumber);
function getBlockNumber() public view returns (uint256 blockNumber);

getCurrentBlockCoinbase

Returns the block coinbase

solidity
function getCurrentBlockCoinbase() public view returns (address coinbase);
function getCurrentBlockCoinbase() public view returns (address coinbase);

getCurrentBlockDifficulty

Returns the block difficulty

solidity
function getCurrentBlockDifficulty() public view returns (uint256 difficulty);
function getCurrentBlockDifficulty() public view returns (uint256 difficulty);

getCurrentBlockGasLimit

Returns the block gas limit

solidity
function getCurrentBlockGasLimit() public view returns (uint256 gaslimit);
function getCurrentBlockGasLimit() public view returns (uint256 gaslimit);

getCurrentBlockTimestamp

Returns the block timestamp

solidity
function getCurrentBlockTimestamp() public view returns (uint256 timestamp);
function getCurrentBlockTimestamp() public view returns (uint256 timestamp);

getEthBalance

Returns the (ETH) balance of a given address

solidity
function getEthBalance(address addr) public view returns (uint256 balance);
function getEthBalance(address addr) public view returns (uint256 balance);

getLastBlockHash

Returns the block hash of the last block

solidity
function getLastBlockHash() public view returns (bytes32 blockHash);
function getLastBlockHash() public view returns (bytes32 blockHash);

getBasefee

Gets the base fee of the given block

Can revert if the BASEFEE opcode is not implemented by the given chain

solidity
function getBasefee() public view returns (uint256 basefee);
function getBasefee() public view returns (uint256 basefee);

getChainId

Returns the chain id

solidity
function getChainId() public view returns (uint256 chainid);
function getChainId() public view returns (uint256 chainid);

Structs

Call

solidity
struct Call {
    address target;
    bytes callData;
}
struct Call {
    address target;
    bytes callData;
}

Call3

solidity
struct Call3 {
    address target;
    bool allowFailure;
    bytes callData;
}
struct Call3 {
    address target;
    bool allowFailure;
    bytes callData;
}

Call3Value

solidity
struct Call3Value {
    address target;
    bool allowFailure;
    uint256 value;
    bytes callData;
}
struct Call3Value {
    address target;
    bool allowFailure;
    uint256 value;
    bytes callData;
}

Result

solidity
struct Result {
    bool success;
    bytes returnData;
}
struct Result {
    bool success;
    bytes returnData;
}