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.
23 lines
712 B
23 lines
712 B
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
import "./MulticallTokenMock.sol";
|
|
|
|
contract MulticallTest {
|
|
function testReturnValues(
|
|
MulticallTokenMock multicallToken,
|
|
address[] calldata recipients,
|
|
uint256[] calldata amounts
|
|
) external {
|
|
bytes[] memory calls = new bytes[](recipients.length);
|
|
for (uint256 i = 0; i < recipients.length; i++) {
|
|
calls[i] = abi.encodeWithSignature("transfer(address,uint256)", recipients[i], amounts[i]);
|
|
}
|
|
|
|
bytes[] memory results = multicallToken.multicall(calls);
|
|
for (uint256 i = 0; i < results.length; i++) {
|
|
require(abi.decode(results[i], (bool)));
|
|
}
|
|
}
|
|
}
|
|
|