This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity >=0.5.0; | |
pragma experimental ABIEncoderV2; | |
/// @title Multicall - Aggregate results from multiple read-only function calls | |
/// @author Michael Elliot <[email protected]> | |
/// @author Joshua Levine <[email protected]> | |
/// @author Nick Johnson <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//SPDX-License-Identifier: Unlicense | |
pragma solidity ^0.8.0; | |
// import "hardhat/console.sol"; | |
contract Greeter { | |
string greeting; | |
constructor(string memory _greeting) { |