mirror of
https://github.com/Instadapp/dsa-governance.git
synced 2024-07-29 22:27:52 +00:00
Added Insta
prefix
This commit is contained in:
parent
e318315bee
commit
e3cef70a91
|
@ -9,7 +9,7 @@ import {
|
|||
} from "./GovernorBravoInterfaces.sol";
|
||||
import { SafeMath } from "./SafeMath.sol";
|
||||
|
||||
contract GovernorBravoDelegate is GovernorBravoDelegateStorageV1, GovernorBravoEvents {
|
||||
contract InstaGovernorBravoDelegate is GovernorBravoDelegateStorageV1, GovernorBravoEvents {
|
||||
/// @notice The name of this contract
|
||||
string public constant name = "DSL Governor Bravo";
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ pragma experimental ABIEncoderV2;
|
|||
|
||||
import { GovernorBravoDelegatorStorage, GovernorBravoEvents } from "./GovernorBravoInterfaces.sol";
|
||||
|
||||
contract GovernorBravoDelegator is GovernorBravoDelegatorStorage, GovernorBravoEvents {
|
||||
contract InstaGovernorBravoDelegator is GovernorBravoDelegatorStorage, GovernorBravoEvents {
|
||||
constructor(
|
||||
address timelock_,
|
||||
address admin_,
|
||||
|
|
|
@ -2,7 +2,7 @@ pragma solidity ^0.7.0;
|
|||
|
||||
import "./SafeMath.sol";
|
||||
|
||||
contract Timelock {
|
||||
contract InstaTimelock {
|
||||
using SafeMath for uint;
|
||||
|
||||
event NewAdmin(address indexed newAdmin);
|
||||
|
|
|
@ -4,8 +4,7 @@ pragma experimental ABIEncoderV2;
|
|||
import { TokenDelegateStorageV1, TokenEvents} from "./TokenInterfaces.sol";
|
||||
import { SafeMath } from "./SafeMath.sol";
|
||||
|
||||
// TODO @thrilok209 @KaymasJain - Rename it
|
||||
contract TokenDelegate is TokenDelegateStorageV1, TokenEvents {
|
||||
contract InstaTokenDelegate is TokenDelegateStorageV1, TokenEvents {
|
||||
/// @notice Minimum time between mints
|
||||
uint32 public constant minimumTimeBetweenMints = 1 days * 7; // TODO @thrilok209 @KaymasJain - Replace it
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ pragma experimental ABIEncoderV2;
|
|||
|
||||
import { TokenDelegatorStorage, TokenEvents } from "./TokenInterfaces.sol";
|
||||
|
||||
contract TokenDelegator is TokenDelegatorStorage, TokenEvents {
|
||||
contract InstaTokenDelegator is TokenDelegatorStorage, TokenEvents {
|
||||
constructor(
|
||||
address account,
|
||||
address implementation_,
|
||||
|
|
Loading…
Reference in New Issue
Block a user