Files
dodo-contractV2/contracts/DODOToken/Governance.sol

27 lines
585 B
Solidity
Raw Normal View History

2021-02-01 17:27:44 +08:00
/*
Copyright 2020 DODO ZOO.
SPDX-License-Identifier: Apache-2.0
*/
pragma solidity 0.6.9;
pragma experimental ABIEncoderV2;
import {InitializableOwnable} from "../lib/InitializableOwnable.sol";
2021-02-03 18:56:01 +08:00
//todo
2021-02-01 17:27:44 +08:00
contract Governance is InitializableOwnable {
// ============ Storage ============
2021-02-03 18:56:01 +08:00
address _VDODO_TOKEN_;
2021-02-02 17:24:24 +08:00
function setVDODOAddress(address vodoToken) public onlyOwner{
2021-02-03 18:56:01 +08:00
_VDODO_TOKEN_ = vodoToken;
2021-02-02 01:32:53 +08:00
}
2021-02-02 15:24:57 +08:00
2021-02-01 17:27:44 +08:00
function getLockedvDODO(address account) external pure returns (uint256 lockedvDODO) {
2021-02-03 18:56:01 +08:00
lockedvDODO = 0;//todo for test
2021-02-01 17:27:44 +08:00
}
}