-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFeeDistributorStorage.sol
More file actions
37 lines (24 loc) · 1 KB
/
FeeDistributorStorage.sol
File metadata and controls
37 lines (24 loc) · 1 KB
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
// SPDX-License-Identifier: MIT
pragma solidity 0.6.11;
import "./Interfaces/IFeeSharingCollector.sol";
import "./Interfaces/IZEROStaking.sol";
import "./Interfaces/IBorrowerOperations.sol";
import "./Interfaces/ITroveManager.sol";
import "./Interfaces/IWrbtc.sol";
import "./Interfaces/IZUSDToken.sol";
import "./Dependencies/Ownable.sol";
contract FeeDistributorStorage is Ownable {
string public constant NAME = "FeeDistributor";
// --- Connected contract declarations ---
IFeeSharingCollector public feeSharingCollector;
IZEROStaking public zeroStaking;
IBorrowerOperations public borrowerOperations;
ITroveManager public troveManager;
IWrbtc public wrbtc;
IZUSDToken public zusdToken;
address public activePoolAddress;
//pct of fees sent to feeSharingCollector address
uint256 public FEE_TO_FEE_SHARING_COLLECTOR;
// Buffer address so we can accept RBTC from it and optionally let it call distributeFees()
address internal _redemptionBufferAddress;
}