forked from smartcontractkit/quickstarts-circuitbreaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExampleImplementation.sol
96 lines (82 loc) · 3.05 KB
/
ExampleImplementation.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
/**
* THIS IS AN EXAMPLE CONTRACT THAT USES HARDCODED
* VALUES FOR CLARITY.
* THIS IS AN EXAMPLE CONTRACT THAT USES UN-AUDITED CODE.
* DO NOT USE THIS CODE IN PRODUCTION.
*/
/**
* THIS IS AN EXAMPLE OF A CONTRACT FOR CIRCUIT BREAKER. IT HAS 2 PRIMARY FUNCTIONS: (A) TO CHECK FOR A CERTAIN CONDITION AND (B) TO EXECUTE AN ACTION
* THIS IS A FLEXIBLE CONTRACT THAT CAN BE USED TO BUILD ANY CONDITION SET AND ANY EXECUTION. IN THIS CASE THE CONDITION BEING CHECKED IS THE PRICE OF AN ASSET
* AND THE ACTION BEING EXECUTED IS INCREMENTING A COUNTER. THIS CONTRACT BECOMES AN INPUT INTO AN UPKEEP CONTRACT FOR MANY DIFFERENT CIRCUIT BREAKING
* CONDITIONS. SO THIS WAY, THE UPKEEP CONTRACT REMAINS THE SAME, BUT USING CHECK DATA YOU CAN PASS IN A CONTRACT LIKE THIS AS A CUSTOMIZABLE CIRCUIT BREAKER
*
*/
contract ExampleDataConsumerV3 is Ownable{
AggregatorV3Interface internal dataFeed;
uint256 public counter;
int public maxbalance;
bool emergencyPossible;
address feedAddress;
event emergencyActionPerformed(uint256 counter, address feedAddress);
bool circuitbrokenflag;
int currentAnswer;
/**
* Network: Sepolia
*/
constructor(int _maxbalance, address _feedAddress, bool _emergencyPossible) {
dataFeed = AggregatorV3Interface(_feedAddress);
maxbalance = _maxbalance;
counter = 0;
emergencyPossible = _emergencyPossible;
feedAddress = _feedAddress;
}
/**
* Returns true if the price is greater than a certain value.
*/
function isFeedParamMet() public view returns (bool) {
// prettier-ignore
if ((getLatestData() > maxbalance) && !circuitbrokenflag) {
return true;
}
}
/**
* executes emergency action
*/
function executeEmergencyAction() external {
counter+= 1;
circuitbrokenflag = true;
emit emergencyActionPerformed(counter, feedAddress);
}
// Function to view the number of times emergency was invoked
function getCount() external view returns (uint256) {
return counter;
}
function isEmergencyActionPossible() external view returns (bool) {
return emergencyPossible;
}
function resetcircuitbreaking(bool circuitbreakingflag) external onlyOwner {
circuitbrokenflag = circuitbreakingflag;
}
function resetmaxBalance(int max) external onlyOwner {
maxbalance = max;
}
function currentfeedAnswer() external view returns(int) {
return currentAnswer;
}
//function to get latest answer
function getLatestData() public view returns (int) {
// prettier-ignore
(
/* uint80 roundID */,
int answer,
/*uint startedAt*/,
/*uint timeStamp*/,
/*uint80 answeredInRound*/
) = dataFeed.latestRoundData();
return answer;
}
}