You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
719 B
Solidity
24 lines
719 B
Solidity
2 years ago
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
pragma solidity ^0.8.0;
|
||
|
|
||
|
import "./token/ERC20MulticallMock.sol";
|
||
|
|
||
|
contract MulticallTest {
|
||
|
function checkReturnValues(
|
||
|
ERC20MulticallMock 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)));
|
||
|
}
|
||
|
}
|
||
|
}
|