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/lido-locator.md
+4-5Lines changed: 4 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -114,7 +114,7 @@ function withdrawalVault() view returns(address)
114
114
### postTokenRebaseReceiver()
115
115
116
116
Returns an address of the contract following the [`IPostTokenRebaseReceiver`](https://github.com/lidofinance/lido-dao/blob/cadffa46a2b8ed6cfa1127fca2468bae1a82d6bf/contracts/0.4.24/Lido.sol#L20-L30) interface described inside `Lido`.
117
-
Right now it returns the [LegacyOracle](./legacy-oracle.md) address
117
+
Right now it returns the [LegacyOracle](./legacy-oracle.md) address.
118
118
119
119
```sol
120
120
function postTokenRebaseReceiver() view returns(address);
@@ -132,7 +132,7 @@ function oracleDaemonConfig() view returns(address)
132
132
133
133
Returns a batch of core components addresses at once.
134
134
135
-
It's just a more gas-efficient way of colling several public getters at once.
135
+
It's just a more gas-efficient way of calling several public getters at once.
136
136
137
137
```sol
138
138
function coreComponents() view returns(
@@ -145,13 +145,12 @@ function coreComponents() view returns(
145
145
)
146
146
```
147
147
148
-
149
148
### oracleReportComponentsForLido()
150
149
151
150
Returns a batch of addresses that is used specifically during oracle report
152
-
handling in the Lido contract
151
+
handling in the Lido contract.
153
152
154
-
It's just a more gas-efficient way of colling several public getters at once.
153
+
It's just a more gas-efficient way of calling several public getters at once.
155
154
156
155
```sol
157
156
function oracleReportComponentsForLido() view returns(
0 commit comments