73 lines
2.1 KiB
Solidity
73 lines
2.1 KiB
Solidity
/*
|
|
|
|
Copyright 2020 DODO ZOO.
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
pragma solidity 0.6.9;
|
|
pragma experimental ABIEncoderV2;
|
|
|
|
import {IDVM} from "../intf/IDVM.sol";
|
|
import {InitializableOwnable} from "../../lib/InitializableOwnable.sol";
|
|
import {IExternalValue} from "../../lib/ExternalValue.sol";
|
|
|
|
contract DVMAdmin is InitializableOwnable {
|
|
address public _DVM_;
|
|
|
|
// ============ Events ============
|
|
|
|
event SetLpFeeRate(uint256 newLpFeeRate);
|
|
|
|
event SetMtFeeRate(uint256 newMtFeeRate);
|
|
|
|
function init(address owner, address dvm) external {
|
|
initOwner(owner);
|
|
_DVM_ = dvm;
|
|
}
|
|
|
|
// function setLpFeeRateModel(address newLpFeeRateModel) external onlyOwner {
|
|
// IDVM(_DVM_).setLpFeeRateModel(newLpFeeRateModel);
|
|
// }
|
|
|
|
function setLpFeeRateValue(uint256 newLpFeeRate) external onlyOwner {
|
|
IExternalValue(IDVM(_DVM_)._LP_FEE_RATE_MODEL_()).set(newLpFeeRate);
|
|
emit SetLpFeeRate(newLpFeeRate);
|
|
}
|
|
|
|
// function setMtFeeRateModel(address newMtFeeRateModel) external onlyOwner {
|
|
// IDVM(_DVM_).setMtFeeRateModel(newMtFeeRateModel);
|
|
// }
|
|
|
|
function setMtFeeRateValue(uint256 newMtFeeRate) external onlyOwner {
|
|
IExternalValue(IDVM(_DVM_)._MT_FEE_RATE_MODEL_()).set(newMtFeeRate);
|
|
emit SetMtFeeRate(newMtFeeRate);
|
|
}
|
|
|
|
// function setTradePermissionManager(address newTradePermissionManager) external onlyOwner {
|
|
// IDVM(_DVM_).setTradePermissionManager(newTradePermissionManager);
|
|
// }
|
|
|
|
function setMaintainer(address newMaintainer) external onlyOwner {
|
|
IDVM(_DVM_).setMaintainer(newMaintainer);
|
|
}
|
|
|
|
// function setGasPriceSource(address newGasPriceLimitSource) external onlyOwner {
|
|
// IDVM(_DVM_).setGasPriceSource(newGasPriceLimitSource);
|
|
// }
|
|
|
|
function setBuy(bool open) external onlyOwner {
|
|
IDVM(_DVM_).setBuy(open);
|
|
}
|
|
|
|
function setSell(bool open) external onlyOwner {
|
|
IDVM(_DVM_).setSell(open);
|
|
}
|
|
|
|
// ============ Admin Version Control ============
|
|
|
|
function version() external pure returns (string memory) {
|
|
return "DVMAdmin 1.0.0"; // 1.0.0
|
|
}
|
|
}
|