Grav
May 24, 2023, 3:38pm
#21
Please see below the OTC sale contract. This contract was reviewed by the DAO stewards as well as members of the Hedgey Finance team, and verified to be sound and secure.
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "./ERC20.sol";
contract FirnLunarDAOEscrow {
address payable public constant LUNAR_DAO = payable(0x59F77dC848C2E45B5954975ee1969e7A22fA25F6);
address payable public constant FIRN_MULTISIG = payable(0xa14664a2E58e804669E9fF1DFbC1bD981E13B0dC);
ERC20 public immutable firnToken = ERC20(0xDDEA19FCE1E52497206bf1969D2d56FeD85aFF5c);
uint256 public constant VESTING_DATE = 1717214400; // 01-06-2024, at 04:00:00 GMT. 1 year from vote date.
uint256 public constant ETHER_AMOUNT = 36417 * 1e15; // 36.417 ether.
uint256 public constant FIRN_AMOUNT = 4888 * 1e18; // FIRN: $13.81. take $67,500 / that. round up.
bool public dealStatus = false;
receive() external payable { // receive ether, i.e. as a payout from Firn fees.
}
This file has been truncated. show original