Added Insta prefix

This commit is contained in:
Thrilok Kumar 2021-03-29 04:27:43 +05:30
parent e318315bee
commit e3cef70a91
5 changed files with 5 additions and 6 deletions

View File

@ -9,7 +9,7 @@ import {
} from "./GovernorBravoInterfaces.sol"; } from "./GovernorBravoInterfaces.sol";
import { SafeMath } from "./SafeMath.sol"; import { SafeMath } from "./SafeMath.sol";
contract GovernorBravoDelegate is GovernorBravoDelegateStorageV1, GovernorBravoEvents { contract InstaGovernorBravoDelegate is GovernorBravoDelegateStorageV1, GovernorBravoEvents {
/// @notice The name of this contract /// @notice The name of this contract
string public constant name = "DSL Governor Bravo"; string public constant name = "DSL Governor Bravo";

View File

@ -3,7 +3,7 @@ pragma experimental ABIEncoderV2;
import { GovernorBravoDelegatorStorage, GovernorBravoEvents } from "./GovernorBravoInterfaces.sol"; import { GovernorBravoDelegatorStorage, GovernorBravoEvents } from "./GovernorBravoInterfaces.sol";
contract GovernorBravoDelegator is GovernorBravoDelegatorStorage, GovernorBravoEvents { contract InstaGovernorBravoDelegator is GovernorBravoDelegatorStorage, GovernorBravoEvents {
constructor( constructor(
address timelock_, address timelock_,
address admin_, address admin_,

View File

@ -2,7 +2,7 @@ pragma solidity ^0.7.0;
import "./SafeMath.sol"; import "./SafeMath.sol";
contract Timelock { contract InstaTimelock {
using SafeMath for uint; using SafeMath for uint;
event NewAdmin(address indexed newAdmin); event NewAdmin(address indexed newAdmin);

View File

@ -4,8 +4,7 @@ pragma experimental ABIEncoderV2;
import { TokenDelegateStorageV1, TokenEvents} from "./TokenInterfaces.sol"; import { TokenDelegateStorageV1, TokenEvents} from "./TokenInterfaces.sol";
import { SafeMath } from "./SafeMath.sol"; import { SafeMath } from "./SafeMath.sol";
// TODO @thrilok209 @KaymasJain - Rename it contract InstaTokenDelegate is TokenDelegateStorageV1, TokenEvents {
contract TokenDelegate is TokenDelegateStorageV1, TokenEvents {
/// @notice Minimum time between mints /// @notice Minimum time between mints
uint32 public constant minimumTimeBetweenMints = 1 days * 7; // TODO @thrilok209 @KaymasJain - Replace it uint32 public constant minimumTimeBetweenMints = 1 days * 7; // TODO @thrilok209 @KaymasJain - Replace it

View File

@ -3,7 +3,7 @@ pragma experimental ABIEncoderV2;
import { TokenDelegatorStorage, TokenEvents } from "./TokenInterfaces.sol"; import { TokenDelegatorStorage, TokenEvents } from "./TokenInterfaces.sol";
contract TokenDelegator is TokenDelegatorStorage, TokenEvents { contract InstaTokenDelegator is TokenDelegatorStorage, TokenEvents {
constructor( constructor(
address account, address account,
address implementation_, address implementation_,