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.7.0; | |
// KeeperCompatible.sol imports the functions from both ./KeeperBase.sol and | |
// ./interfaces/KeeperCompatibleInterface.sol | |
import "@chainlink/contracts/src/v0.7/KeeperCompatible.sol"; | |
contract MultipleCounter is KeeperCompatibleInterface { | |
/** | |
* Public counter variable |
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
/** | |
*Submitted for verification at Etherscan.io on 2021-09-05 | |
*/ | |
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
/// [MIT License] | |
/// @title Base64 |