Co-authored-by: Francisco Giordano <fg@frang.io> Co-authored-by: ernestognw <ernestognw@gmail.com>
30 lines
986 B
Solidity
30 lines
986 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.20;
|
|
|
|
import {ERC20Votes} from "../../token/ERC20/extensions/ERC20Votes.sol";
|
|
import {ERC721Votes} from "../../token/ERC721/extensions/ERC721Votes.sol";
|
|
import {SafeCast} from "../../utils/math/SafeCast.sol";
|
|
|
|
abstract contract ERC20VotesTimestampMock is ERC20Votes {
|
|
function clock() public view virtual override returns (uint48) {
|
|
return SafeCast.toUint48(block.timestamp);
|
|
}
|
|
|
|
// solhint-disable-next-line func-name-mixedcase
|
|
function CLOCK_MODE() public view virtual override returns (string memory) {
|
|
return "mode=timestamp";
|
|
}
|
|
}
|
|
|
|
abstract contract ERC721VotesTimestampMock is ERC721Votes {
|
|
function clock() public view virtual override returns (uint48) {
|
|
return SafeCast.toUint48(block.timestamp);
|
|
}
|
|
|
|
// solhint-disable-next-line func-name-mixedcase
|
|
function CLOCK_MODE() public view virtual override returns (string memory) {
|
|
return "mode=timestamp";
|
|
}
|
|
}
|