27 lines
585 B
Solidity
27 lines
585 B
Solidity
/*
|
|
|
|
Copyright 2020 DODO ZOO.
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
pragma solidity 0.6.9;
|
|
pragma experimental ABIEncoderV2;
|
|
|
|
import {InitializableOwnable} from "../lib/InitializableOwnable.sol";
|
|
|
|
//todo
|
|
contract Governance is InitializableOwnable {
|
|
|
|
// ============ Storage ============
|
|
|
|
address _VDODO_TOKEN_;
|
|
|
|
function setVDODOAddress(address vodoToken) public onlyOwner{
|
|
_VDODO_TOKEN_ = vodoToken;
|
|
}
|
|
|
|
function getLockedvDODO(address account) external pure returns (uint256 lockedvDODO) {
|
|
lockedvDODO = 0;//todo for test
|
|
}
|
|
}
|