We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5657e6c commit f6d942eCopy full SHA for f6d942e
src/TreasuryStorage.sol
@@ -143,10 +143,22 @@ contract TreasuryStorage {
143
return _getStorage().governance;
144
}
145
146
+ function reporter() public view returns (address) {
147
+ return _getStorage().reporter;
148
+ }
149
+
150
+ function allocator() public view returns (address) {
151
+ return _getStorage().allocator;
152
153
154
function assetManager() public view returns (address) {
155
return _getStorage().assetManager;
156
157
158
+ function insuranceVault() public view returns (address) {
159
+ return _getStorage().insuranceVault;
160
161
162
function governanceWarchest() public view returns (address) {
163
return _getStorage().governanceWarchest;
164
0 commit comments