{
    "Function": "constructor",
    "File": "contracts/contracts/Minter.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "IVotingEscrow"
    ],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "constructor(\n        address __voter, // the voting & distribution system\n        address __ve, // the ve(3,3) system that will be locked into\n        address __rewards_distributor // the distribution system that ensures users aren't diluted\n    ) {\n        initializer = msg.sender;\n        team = msg.sender;\n        teamRate = 30; // 30 bps = 0.03%\n        _velo = IVelo(IVotingEscrow(__ve).token());\n        _voter = IVoter(__voter);\n        _ve = IVotingEscrow(__ve);\n        _rewards_distributor = IRewardsDistributor(__rewards_distributor);\n        active_period = ((block.timestamp + (2 * WEEK)) / WEEK) * WEEK;\n    }"
}