Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Emission
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Apache-2.0 pragma solidity >=0.8.0; import "@openzeppelin/contracts/utils/math/Math.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeCast.sol"; import "./interfaces/ILiquidityMining.sol"; import "./interfaces/IEmission.sol"; contract Emission is IEmission, Ownable, ReentrancyGuard, Initializable { using SafeCast for uint; using SafeERC20 for IERC20; address public token; // 160 uint64 public lastWithdrawalTimestamp; // 160 + 64 = 224 address public liquidityMining; uint constant INITIAL_QUANTITY = 10000; uint public override distributedPerInterval; uint public override distributionInterval; function initialize(address _token, address _liquidityMining, uint _distributionInterval, uint _distributedPerInterval) public initializer { require(_token != address(0), "Emission: ZERO"); token = _token; liquidityMining = _liquidityMining; distributionInterval = _distributionInterval; distributedPerInterval = _distributedPerInterval; lastWithdrawalTimestamp = block.timestamp.toUint64(); } function setDistribution(uint _distributionInterval, uint _distributedPerInterval) external override onlyOwner { _withdraw(); distributionInterval = _distributionInterval; distributedPerInterval = _distributedPerInterval; emit SetDistribution(distributionInterval, distributedPerInterval); } function withdraw() external override nonReentrant { _withdraw(); } function withdrawable() external view override returns (uint) { uint balance = IERC20(token).balanceOf(address(this)); if (balance == 0) { return 0; } uint intervalPassed = (block.timestamp - lastWithdrawalTimestamp) / distributionInterval; return Math.min(balance, intervalPassed * distributedPerInterval); } function _withdraw() private { uint balance = IERC20(token).balanceOf(address(this)); if (balance == 0) { lastWithdrawalTimestamp = block.timestamp.toUint64(); // increment last withdrawal time when there is no funds to reduce time delta return; } uint intervalPassed = (block.timestamp - lastWithdrawalTimestamp) / distributionInterval; if (intervalPassed == 0) { return; } uint amount = Math.min(balance, intervalPassed * distributedPerInterval); lastWithdrawalTimestamp += (intervalPassed * distributionInterval).toUint64(); IERC20(token).safeTransfer(liquidityMining, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // solhint-disable-next-line compiler-version pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow * checks. * * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. * * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing * all math on `uint256` and `int256` and then downcasting. */ library SafeCast { /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits */ function toUint128(uint256 value) internal pure returns (uint128) { require(value < 2**128, "SafeCast: value doesn\'t fit in 128 bits"); return uint128(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits */ function toUint64(uint256 value) internal pure returns (uint64) { require(value < 2**64, "SafeCast: value doesn\'t fit in 64 bits"); return uint64(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits */ function toUint32(uint256 value) internal pure returns (uint32) { require(value < 2**32, "SafeCast: value doesn\'t fit in 32 bits"); return uint32(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits */ function toUint16(uint256 value) internal pure returns (uint16) { require(value < 2**16, "SafeCast: value doesn\'t fit in 16 bits"); return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits. */ function toUint8(uint256 value) internal pure returns (uint8) { require(value < 2**8, "SafeCast: value doesn\'t fit in 8 bits"); return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. */ function toUint256(int256 value) internal pure returns (uint256) { require(value >= 0, "SafeCast: value must be positive"); return uint256(value); } /** * @dev Returns the downcasted int128 from int256, reverting on * overflow (when the input is less than smallest int128 or * greater than largest int128). * * Counterpart to Solidity's `int128` operator. * * Requirements: * * - input must fit into 128 bits * * _Available since v3.1._ */ function toInt128(int256 value) internal pure returns (int128) { require(value >= -2**127 && value < 2**127, "SafeCast: value doesn\'t fit in 128 bits"); return int128(value); } /** * @dev Returns the downcasted int64 from int256, reverting on * overflow (when the input is less than smallest int64 or * greater than largest int64). * * Counterpart to Solidity's `int64` operator. * * Requirements: * * - input must fit into 64 bits * * _Available since v3.1._ */ function toInt64(int256 value) internal pure returns (int64) { require(value >= -2**63 && value < 2**63, "SafeCast: value doesn\'t fit in 64 bits"); return int64(value); } /** * @dev Returns the downcasted int32 from int256, reverting on * overflow (when the input is less than smallest int32 or * greater than largest int32). * * Counterpart to Solidity's `int32` operator. * * Requirements: * * - input must fit into 32 bits * * _Available since v3.1._ */ function toInt32(int256 value) internal pure returns (int32) { require(value >= -2**31 && value < 2**31, "SafeCast: value doesn\'t fit in 32 bits"); return int32(value); } /** * @dev Returns the downcasted int16 from int256, reverting on * overflow (when the input is less than smallest int16 or * greater than largest int16). * * Counterpart to Solidity's `int16` operator. * * Requirements: * * - input must fit into 16 bits * * _Available since v3.1._ */ function toInt16(int256 value) internal pure returns (int16) { require(value >= -2**15 && value < 2**15, "SafeCast: value doesn\'t fit in 16 bits"); return int16(value); } /** * @dev Returns the downcasted int8 from int256, reverting on * overflow (when the input is less than smallest int8 or * greater than largest int8). * * Counterpart to Solidity's `int8` operator. * * Requirements: * * - input must fit into 8 bits. * * _Available since v3.1._ */ function toInt8(int256 value) internal pure returns (int8) { require(value >= -2**7 && value < 2**7, "SafeCast: value doesn\'t fit in 8 bits"); return int8(value); } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. */ function toInt256(uint256 value) internal pure returns (int256) { require(value < 2**255, "SafeCast: value doesn't fit in an int256"); return int256(value); } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity >=0.8.0; interface ILiquidityMining { event Stake(address indexed account, uint amount, uint8 indexed rangeStartIndex, uint8 indexed rangeEndIndex); event UnstakeRange(address indexed account, uint unstakedAmount, uint8 indexed rangeStartIndex, uint8 indexed rangeEndIndex); event Unstake(address indexed account, uint amount, uint rewardInPHTR, uint exitFeeInPHTR); event SetEmission(address indexed account, address indexed emission); struct Tier { /// % booster for tier qualification uint16 boosterInBP; /// % of totalSupply, required to qualify for this tier uint16 thresholdInBP; } struct VestingRange { uint8 startIndex; uint8 endIndex; } struct AccountDetails { uint128 vestedBoostedStake; // 128 uint128 totalStake; // 128 + 128 = 256 address referrer; // 160 uint16 tierBoosterInBP; // 160 + 16 = 176 uint16 referralBoosterInBP; // 160 + 16 + 16 = 192 uint lastAccumulatedPHTRInTotalBoostedStakeInQ; uint rewardInPHTR; } struct StakeWithPermitParams { address referrer; uint amount; uint8 minTierIndex; VestingRange vestingRange; uint deadline; bool approveMax; uint8 v; bytes32 r; bytes32 s; } function MIN_VESTING_TIME_IN_SECONDS() external view returns (uint64); function PHTR() external view returns (address); function LP() external view returns (address); function emission() external view returns (address); function minTierReferrerBooster() external view returns (uint16); function totalBoostedStake() external view returns (uint); function tierBoosterInBP(uint _amount, uint8 _minTierIndex) external view returns (uint16); function programDetails() external view returns ( uint _totalBoostedStake, uint _accumulatedPHTRInTotalSharesInQ, Tier[] memory _tiers, uint[] memory _vestingDatesInSeconds, uint[] memory _vestingTimeBoostersInBP ); function accountDetails(address _account) external view returns ( uint _boostedStake, uint _totalReward, AccountDetails memory _accountDetails ); function vestingOptionStake(address _account, VestingRange calldata _vestingRange) external view returns (uint); function stake( address _referrer, uint _amount, uint8 _minTierIndex, VestingRange calldata _vestingRange ) external; function stakeWithPermit(StakeWithPermitParams calldata _params) external; function unstake(VestingRange[] calldata _vestingRanges, uint _amount) external; }
// SPDX-License-Identifier: Apache-2.0 pragma solidity >=0.8.0; interface IEmission { event SetDistribution(uint distributionInterval, uint distributedPerInterval); function setDistribution(uint _distributionInterval, uint _distributedPerInterval) external; function withdraw() external; function withdrawable() external view returns (uint); function distributionInterval() external view returns (uint); function distributedPerInterval() external view returns (uint); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"distributionInterval","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"distributedPerInterval","type":"uint256"}],"name":"SetDistribution","type":"event"},{"inputs":[],"name":"distributedPerInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"distributionInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_liquidityMining","type":"address"},{"internalType":"uint256","name":"_distributionInterval","type":"uint256"},{"internalType":"uint256","name":"_distributedPerInterval","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastWithdrawalTimestamp","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityMining","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_distributionInterval","type":"uint256"},{"internalType":"uint256","name":"_distributedPerInterval","type":"uint256"}],"name":"setDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060018055610d48806100656000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c80638da5cb5b116100715780638da5cb5b14610123578063a62c416914610134578063eb990c5914610168578063f18dba261461017b578063f2fde38b1461018e578063fc0c546a146101a157600080fd5b8063137fc092146100b95780633ccfd60b146100d557806350188301146100df57806371201a0e146100e7578063715018a6146100f057806385b2d535146100f8575b600080fd5b6100c260045481565b6040519081526020015b60405180910390f35b6100dd6101ba565b005b6100c2610225565b6100c260055481565b6100dd610308565b60035461010b906001600160a01b031681565b6040516001600160a01b0390911681526020016100cc565b6000546001600160a01b031661010b565b60025461014f90600160b01b900467ffffffffffffffff1681565b60405167ffffffffffffffff90911681526020016100cc565b6100dd610176366004610b2c565b61037c565b6100dd610189366004610ba5565b6104f6565b6100dd61019c366004610b12565b61056f565b60025461010b906201000090046001600160a01b031681565b600260015414156102125760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260015561021f610659565b60018055565b6002546040516370a0823160e01b81523060048201526000918291620100009091046001600160a01b0316906370a082319060240160206040518083038186803b15801561027257600080fd5b505afa158015610286573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102aa9190610b8d565b9050806102b957600091505090565b600554600254600091906102de90600160b01b900467ffffffffffffffff1642610cb5565b6102e89190610c76565b905061030182600454836102fc9190610c96565b6107ec565b9250505090565b6000546001600160a01b031633146103325760405162461bcd60e51b815260040161020990610c15565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600254610100900460ff1680610395575060025460ff16155b6103f85760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610209565b600254610100900460ff1615801561041a576002805461ffff19166101011790555b6001600160a01b0385166104615760405162461bcd60e51b815260206004820152600e60248201526d456d697373696f6e3a205a45524f60901b6044820152606401610209565b6002805462010000600160b01b031916620100006001600160a01b038881169190910291909117909155600380546001600160a01b031916918616919091179055600583905560048290556104b542610804565b600260166101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080156104ef576002805461ff00191690555b5050505050565b6000546001600160a01b031633146105205760405162461bcd60e51b815260040161020990610c15565b610528610659565b6005829055600481905560408051838152602081018390527fb3351d99c1f746d4a0198cc4948ee6a0ad495e662d9866ab8684521caf00bb98910160405180910390a15050565b6000546001600160a01b031633146105995760405162461bcd60e51b815260040161020990610c15565b6001600160a01b0381166105fe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610209565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6002546040516370a0823160e01b81523060048201526000916201000090046001600160a01b0316906370a082319060240160206040518083038186803b1580156106a357600080fd5b505afa1580156106b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106db9190610b8d565b905080610716576106eb42610804565b600260166101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b6005546002546000919061073b90600160b01b900467ffffffffffffffff1642610cb5565b6107459190610c76565b905080610750575050565b600061076483600454846102fc9190610c96565b905061077c600554836107779190610c96565b610804565b6002805460169061079f908490600160b01b900467ffffffffffffffff16610c4a565b825467ffffffffffffffff9182166101009390930a9283029190920219909116179055506003546002546107e791620100009091046001600160a01b03908116911683610871565b505050565b60008183106107fb57816107fd565b825b9392505050565b600068010000000000000000821061086d5760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203660448201526534206269747360d01b6064820152608401610209565b5090565b604080516001600160a01b03848116602483015260448083018590528351808403909101815260649092018352602080830180516001600160e01b031663a9059cbb60e01b17905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564908401526107e79286929160009161090191851690849061097e565b8051909150156107e7578080602001905181019061091f9190610b6d565b6107e75760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610209565b606061098d8484600085610995565b949350505050565b6060824710156109f65760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610209565b843b610a445760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610209565b600080866001600160a01b03168587604051610a609190610bc6565b60006040518083038185875af1925050503d8060008114610a9d576040519150601f19603f3d011682016040523d82523d6000602084013e610aa2565b606091505b5091509150610ab2828286610abd565b979650505050505050565b60608315610acc5750816107fd565b825115610adc5782518084602001fd5b8160405162461bcd60e51b81526004016102099190610be2565b80356001600160a01b0381168114610b0d57600080fd5b919050565b600060208284031215610b23578081fd5b6107fd82610af6565b60008060008060808587031215610b41578283fd5b610b4a85610af6565b9350610b5860208601610af6565b93969395505050506040820135916060013590565b600060208284031215610b7e578081fd5b815180151581146107fd578182fd5b600060208284031215610b9e578081fd5b5051919050565b60008060408385031215610bb7578182fd5b50508035926020909101359150565b60008251610bd8818460208701610ccc565b9190910192915050565b6020815260008251806020840152610c01816040850160208701610ccc565b601f01601f19169190910160400192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff808316818516808303821115610c6d57610c6d610cfc565b01949350505050565b600082610c9157634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610cb057610cb0610cfc565b500290565b600082821015610cc757610cc7610cfc565b500390565b60005b83811015610ce7578181015183820152602001610ccf565b83811115610cf6576000848401525b50505050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122006429c683c145916cdb9260758f17aa6c98915a059afc8c5d1981e00c51eab0964736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100b45760003560e01c80638da5cb5b116100715780638da5cb5b14610123578063a62c416914610134578063eb990c5914610168578063f18dba261461017b578063f2fde38b1461018e578063fc0c546a146101a157600080fd5b8063137fc092146100b95780633ccfd60b146100d557806350188301146100df57806371201a0e146100e7578063715018a6146100f057806385b2d535146100f8575b600080fd5b6100c260045481565b6040519081526020015b60405180910390f35b6100dd6101ba565b005b6100c2610225565b6100c260055481565b6100dd610308565b60035461010b906001600160a01b031681565b6040516001600160a01b0390911681526020016100cc565b6000546001600160a01b031661010b565b60025461014f90600160b01b900467ffffffffffffffff1681565b60405167ffffffffffffffff90911681526020016100cc565b6100dd610176366004610b2c565b61037c565b6100dd610189366004610ba5565b6104f6565b6100dd61019c366004610b12565b61056f565b60025461010b906201000090046001600160a01b031681565b600260015414156102125760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260015561021f610659565b60018055565b6002546040516370a0823160e01b81523060048201526000918291620100009091046001600160a01b0316906370a082319060240160206040518083038186803b15801561027257600080fd5b505afa158015610286573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102aa9190610b8d565b9050806102b957600091505090565b600554600254600091906102de90600160b01b900467ffffffffffffffff1642610cb5565b6102e89190610c76565b905061030182600454836102fc9190610c96565b6107ec565b9250505090565b6000546001600160a01b031633146103325760405162461bcd60e51b815260040161020990610c15565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600254610100900460ff1680610395575060025460ff16155b6103f85760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610209565b600254610100900460ff1615801561041a576002805461ffff19166101011790555b6001600160a01b0385166104615760405162461bcd60e51b815260206004820152600e60248201526d456d697373696f6e3a205a45524f60901b6044820152606401610209565b6002805462010000600160b01b031916620100006001600160a01b038881169190910291909117909155600380546001600160a01b031916918616919091179055600583905560048290556104b542610804565b600260166101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080156104ef576002805461ff00191690555b5050505050565b6000546001600160a01b031633146105205760405162461bcd60e51b815260040161020990610c15565b610528610659565b6005829055600481905560408051838152602081018390527fb3351d99c1f746d4a0198cc4948ee6a0ad495e662d9866ab8684521caf00bb98910160405180910390a15050565b6000546001600160a01b031633146105995760405162461bcd60e51b815260040161020990610c15565b6001600160a01b0381166105fe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610209565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6002546040516370a0823160e01b81523060048201526000916201000090046001600160a01b0316906370a082319060240160206040518083038186803b1580156106a357600080fd5b505afa1580156106b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106db9190610b8d565b905080610716576106eb42610804565b600260166101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b6005546002546000919061073b90600160b01b900467ffffffffffffffff1642610cb5565b6107459190610c76565b905080610750575050565b600061076483600454846102fc9190610c96565b905061077c600554836107779190610c96565b610804565b6002805460169061079f908490600160b01b900467ffffffffffffffff16610c4a565b825467ffffffffffffffff9182166101009390930a9283029190920219909116179055506003546002546107e791620100009091046001600160a01b03908116911683610871565b505050565b60008183106107fb57816107fd565b825b9392505050565b600068010000000000000000821061086d5760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203660448201526534206269747360d01b6064820152608401610209565b5090565b604080516001600160a01b03848116602483015260448083018590528351808403909101815260649092018352602080830180516001600160e01b031663a9059cbb60e01b17905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564908401526107e79286929160009161090191851690849061097e565b8051909150156107e7578080602001905181019061091f9190610b6d565b6107e75760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610209565b606061098d8484600085610995565b949350505050565b6060824710156109f65760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610209565b843b610a445760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610209565b600080866001600160a01b03168587604051610a609190610bc6565b60006040518083038185875af1925050503d8060008114610a9d576040519150601f19603f3d011682016040523d82523d6000602084013e610aa2565b606091505b5091509150610ab2828286610abd565b979650505050505050565b60608315610acc5750816107fd565b825115610adc5782518084602001fd5b8160405162461bcd60e51b81526004016102099190610be2565b80356001600160a01b0381168114610b0d57600080fd5b919050565b600060208284031215610b23578081fd5b6107fd82610af6565b60008060008060808587031215610b41578283fd5b610b4a85610af6565b9350610b5860208601610af6565b93969395505050506040820135916060013590565b600060208284031215610b7e578081fd5b815180151581146107fd578182fd5b600060208284031215610b9e578081fd5b5051919050565b60008060408385031215610bb7578182fd5b50508035926020909101359150565b60008251610bd8818460208701610ccc565b9190910192915050565b6020815260008251806020840152610c01816040850160208701610ccc565b601f01601f19169190910160400192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff808316818516808303821115610c6d57610c6d610cfc565b01949350505050565b600082610c9157634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610cb057610cb0610cfc565b500290565b600082821015610cc757610cc7610cfc565b500390565b60005b83811015610ce7578181015183820152602001610ccf565b83811115610cf6576000848401525b50505050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122006429c683c145916cdb9260758f17aa6c98915a059afc8c5d1981e00c51eab0964736f6c63430008040033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.