You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/contracts/oracle-daemon-config.md
+99Lines changed: 99 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,3 +9,102 @@ The full list of params are provided in the Lido V2 mainnet parameters [guide](/
9
9
:::note
10
10
In contrast to [`OracleReportSanityChecker`](/contracts/oracle-report-sanity-checker), the stored values aren't enforced by the protocol on-chain code.
11
11
:::
12
+
13
+
## View methods
14
+
15
+
### get(string calldata _key)
16
+
17
+
Retrieves the value corresponding to the provided key.
18
+
19
+
```solidity
20
+
function get(string calldata _key) external view returns (bytes memory)
21
+
```
22
+
23
+
:::note
24
+
Reverts if value is missing.
25
+
:::
26
+
27
+
### getList(string[] calldata _keys)
28
+
29
+
Retrieves a list of values corresponding to the provided keys.
30
+
31
+
```solidity
32
+
function getList(string[] calldata _keys) external view returns (bytes[] memory)
33
+
```
34
+
35
+
:::note
36
+
Reverts if any value for a specific key is missing.
0 commit comments