The home for Hyperlane core contracts, sdk packages, and other infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
hyperlane-monorepo/solidity/contracts/libs/Call.sol

54 lines
1.3 KiB

// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.13;
import {Address} from "@openzeppelin/contracts/utils/Address.sol";
library CallLib {
struct Call {
address to;
bytes data;
}
function _multicall(address to, bytes[] memory calls) internal {
uint256 i = 0;
uint256 len = calls.length;
while (i < len) {
Address.functionCall(to, calls[i]);
unchecked {
++i;
}
}
}
function _multicall(Call[] memory calls) internal {
uint256 i = 0;
uint256 len = calls.length;
while (i < len) {
Address.functionCall(calls[i].to, calls[i].data);
unchecked {
++i;
}
}
}
function _multicallAndResolve(Call[] memory calls, bytes[] memory callbacks)
internal
returns (bytes[] memory resolveCalls)
{
// reuse memory
resolveCalls = callbacks;
uint256 i = 0;
uint256 len = calls.length;
while (i < len) {
bytes memory returnData = Address.functionCall(
calls[i].to,
calls[i].data
);
resolveCalls[i] = bytes.concat(callbacks[i], returnData);
unchecked {
++i;
}
}
}
}