Skip to content

Instantly share code, notes, and snippets.

View SiegfriedBz's full-sized avatar
💭
Open to Web Dev Roles | TS | React | Next | Tailwind CSS | Node/Express

Siegfried SiegfriedBz

💭
Open to Web Dev Roles | TS | React | Next | Tailwind CSS | Node/Express
View GitHub Profile
@SiegfriedBz
SiegfriedBz / KeepersMultiplePaths.sol
Created October 31, 2022 23:18 — forked from ZakAyesh/KeepersMultiplePaths.sol
An example showing how to perform multiple Keeper upkeeps on one contract by using checkdata and execution paths
// 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
/**
*Submitted for verification at Etherscan.io on 2021-09-05
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// [MIT License]
/// @title Base64