FTM Price: $1.03 (-2.70%)
Gas: 107 GWei

Contract

0x0F595677AfC5F4A99Cfa1dDB4a00B8f54Cfda506
 

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Buy FTM698383412023-10-27 5:05:01153 days ago1698383101IN
0x0F595677...54Cfda506
0 FTM0.0476886544
Buy FTM691546082023-10-09 13:32:59171 days ago1696858379IN
0x0F595677...54Cfda506
0 FTM0.0338586838
Buy FTM689835132023-10-04 20:28:35175 days ago1696451315IN
0x0F595677...54Cfda506
0 FTM0.3311716400
Buy FTM686582682023-09-27 1:59:45183 days ago1695779985IN
0x0F595677...54Cfda506
0 FTM0.031653935.52606383
Buy FTM679894342023-09-08 21:14:32201 days ago1694207672IN
0x0F595677...54Cfda506
0 FTM0.0245403126.24646686
Buy FTM678383532023-09-04 21:11:13205 days ago1693861873IN
0x0F595677...54Cfda506
0 FTM0.0315845230.90017898
Buy FTM677955272023-09-03 20:45:12206 days ago1693773912IN
0x0F595677...54Cfda506
0 FTM0.0533209938.11310573
Buy FTM677329332023-09-02 7:22:29208 days ago1693639349IN
0x0F595677...54Cfda506
0 FTM0.0377163331.6697549
Buy FTM677156142023-09-01 20:54:36208 days ago1693601676IN
0x0F595677...54Cfda506
0 FTM0.090702562.68630244
Super PODL670726382023-08-16 23:26:49224 days ago1692228409IN
0x0F595677...54Cfda506
0 FTM0.0335849336.3687398
Super PODL670726282023-08-16 23:26:18224 days ago1692228378IN
0x0F595677...54Cfda506
0 FTM0.47303722579.81332862
Super PODL670553892023-08-16 15:31:19224 days ago1692199879IN
0x0F595677...54Cfda506
0 FTM0.46351656608.76320685
Super PODL670527642023-08-16 14:30:49224 days ago1692196249IN
0x0F595677...54Cfda506
0 FTM0.0432572656.81228164
Super PODL670511392023-08-16 13:51:21225 days ago1692193881IN
0x0F595677...54Cfda506
0 FTM0.071504274
Super PODL670501382023-08-16 13:34:01225 days ago1692192841IN
0x0F595677...54Cfda506
0 FTM0.0618414764
Super PODL670471442023-08-16 12:32:54225 days ago1692189174IN
0x0F595677...54Cfda506
0 FTM0.0296577438
Super PODL670454682023-08-16 11:27:35225 days ago1692185255IN
0x0F595677...54Cfda506
0 FTM0.0308558640.5248042
Super PODL670442912023-08-16 10:45:17225 days ago1692182717IN
0x0F595677...54Cfda506
0 FTM0.0304382139
Super PODL670410292023-08-16 8:37:34225 days ago1692175054IN
0x0F595677...54Cfda506
0 FTM0.47919053613.97923306
Super PODL670390342023-08-16 7:18:01225 days ago1692170281IN
0x0F595677...54Cfda506
0 FTM0.46130294604.97794331
Super PODL670373832023-08-16 6:13:23225 days ago1692166403IN
0x0F595677...54Cfda506
0 FTM0.47352636621.00841295
Super PODL670355602023-08-16 5:19:04225 days ago1692163144IN
0x0F595677...54Cfda506
0 FTM0.0304382139
Super PODL670330092023-08-16 3:41:26225 days ago1692157286IN
0x0F595677...54Cfda506
0 FTM0.0246791429.57952129
Super PODL670311162023-08-16 2:34:57225 days ago1692153297IN
0x0F595677...54Cfda506
0 FTM0.0390772650.06907452
Super PODL670275902023-08-16 0:36:18225 days ago1692146178IN
0x0F595677...54Cfda506
0 FTM0.0289329738
View all transactions

Latest 1 internal transaction

Parent Txn Hash Block From To Value
233227012021-11-27 22:25:50851 days ago1638051950  Contract Creation0 FTM
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ProtocolOwnedDEXLiquidity

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 6 : ProtocolOwnedDEXLiquidity.sol
pragma solidity 0.7.6;

import "SafeMath.sol";
import "IERC20.sol";
import "Ownable.sol";
import "IChefIncentivesController.sol";

interface IUniswapLPToken {
    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);
}

interface IMultiFeeDistribution {
    function lockedBalances(address user) view external returns (uint256);
    function lockedSupply() external view returns (uint256);
}

contract ProtocolOwnedDEXLiquidity is Ownable {

    using SafeMath for uint256;

    IUniswapLPToken constant public lpToken = IUniswapLPToken(0x668AE94D0870230AC007a01B471D02b2c94DDcB9);
    IERC20 constant public gFTM = IERC20(0x39B3bd37208CBaDE74D0fcBDBb12D606295b430a);
    IMultiFeeDistribution constant public treasury = IMultiFeeDistribution(0x49c93a95dbcc9A6A4D8f77E59c038ce5020e82f8);
    address constant public burn = 0x07b84B5855A8B271C4F461993D724eCD7a826AAE;

    struct UserRecord {
        uint256 nextClaimTime;
        uint256 claimCount;
        uint256 totalBoughtFTM;
    }

    mapping (address => UserRecord) public userData;

    uint public totalSoldFTM;
    uint public minBuyAmount;
    uint public minSuperPODLLock;
    uint public buyCooldown;
    uint public superPODLCooldown;
    uint public lockedBalanceMultiplier;

    event SoldFTM(
        address indexed buyer,
        uint256 amount
    );
    event AaaaaaahAndImSuperPODLiiiiing(
        address indexed podler,
        uint256 amount
    );

    constructor(
        uint256 _lockMultiplier,
        uint256 _minBuy,
        uint256 _minLock,
        uint256 _cooldown,
        uint256 _podlCooldown
    ) Ownable() {
        IChefIncentivesController chef = IChefIncentivesController(0x297FddC5c33Ef988dd03bd13e162aE084ea1fE57);
        chef.setClaimReceiver(address(this), address(treasury));
        setParams(_lockMultiplier, _minBuy, _minLock, _cooldown, _podlCooldown);
    }

    function setParams(
        uint256 _lockMultiplier,
        uint256 _minBuy,
        uint256 _minLock,
        uint256 _cooldown,
        uint256 _podlCooldown
    ) public onlyOwner {
        require(_minBuy >= 1e18);
        lockedBalanceMultiplier = _lockMultiplier;
        minBuyAmount = _minBuy;
        minSuperPODLLock = _minLock;
        buyCooldown = _cooldown;
        superPODLCooldown = _podlCooldown;
    }

    function protocolOwnedReserves() public view returns (uint256 wftm, uint256 geist) {
        (uint reserve0, uint reserve1,) = lpToken.getReserves();
        uint balance = lpToken.balanceOf(burn);
        uint totalSupply = lpToken.totalSupply();
        return (reserve0.mul(balance).div(totalSupply), reserve1.mul(balance).div(totalSupply));
    }

    function availableFTM() public view returns (uint256) {
        return gFTM.balanceOf(address(this)) / 2;
    }

    function availableForUser(address _user) public view returns (uint256) {
        UserRecord storage u = userData[_user];
        if (u.nextClaimTime > block.timestamp) return 0;
        uint available = availableFTM();
        uint userLocked = treasury.lockedBalances(_user);
        uint totalLocked = treasury.lockedSupply();
        uint amount = available.mul(lockedBalanceMultiplier).mul(userLocked).div(totalLocked);
        if (amount > available) {
            return available;
        }
        return amount;
    }

    function lpTokensPerOneFTM() public view returns (uint256) {
        uint totalSupply = lpToken.totalSupply();
        (uint reserve0,,) = lpToken.getReserves();
        return totalSupply.mul(1e18).mul(45).div(reserve0).div(100);
    }

    function _buy(uint _amount, uint _cooldownTime) internal {
        UserRecord storage u = userData[msg.sender];

        require(_amount >= minBuyAmount, "Below min buy amount");
        require(block.timestamp >= u.nextClaimTime, "Claimed too recently");

        uint lpAmount = _amount.mul(lpTokensPerOneFTM()).div(1e18);
        lpToken.transferFrom(msg.sender, burn, lpAmount);
        gFTM.transfer(msg.sender, _amount);
        gFTM.transfer(address(treasury), _amount);

        u.nextClaimTime = block.timestamp.add(_cooldownTime);
        u.claimCount = u.claimCount.add(1);
        u.totalBoughtFTM = u.totalBoughtFTM.add(_amount);
        totalSoldFTM = totalSoldFTM.add(_amount);

        emit SoldFTM(msg.sender, _amount);
    }

    function buyFTM(uint256 _amount) public {
        require(_amount <= availableForUser(msg.sender), "Amount exceeds user limit");
        _buy(_amount, buyCooldown);
    }

    function superPODL(uint256 _amount) public {
        require(treasury.lockedBalances(msg.sender) >= minSuperPODLLock, "Need to lock GEIST!");
        _buy(_amount, superPODLCooldown);
        emit AaaaaaahAndImSuperPODLiiiiing(msg.sender, _amount);
    }
}

File 2 of 6 : SafeMath.sol
// SPDX-License-Identifier: agpl-3.0
pragma solidity 0.7.6;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when 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.
 */
library SafeMath {
  /**
   * @dev Returns the addition of two unsigned integers, reverting on
   * overflow.
   *
   * Counterpart to Solidity's `+` operator.
   *
   * Requirements:
   * - Addition cannot overflow.
   */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    require(c >= a, 'SafeMath: addition overflow');

    return c;
  }

  /**
   * @dev Returns the subtraction of two unsigned integers, reverting on
   * overflow (when the result is negative).
   *
   * Counterpart to Solidity's `-` operator.
   *
   * Requirements:
   * - Subtraction cannot overflow.
   */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    return sub(a, b, 'SafeMath: subtraction overflow');
  }

  /**
   * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
   * overflow (when the result is negative).
   *
   * Counterpart to Solidity's `-` operator.
   *
   * Requirements:
   * - Subtraction cannot overflow.
   */
  function sub(
    uint256 a,
    uint256 b,
    string memory errorMessage
  ) internal pure returns (uint256) {
    require(b <= a, errorMessage);
    uint256 c = a - b;

    return c;
  }

  /**
   * @dev Returns the multiplication of two unsigned integers, reverting on
   * overflow.
   *
   * Counterpart to Solidity's `*` operator.
   *
   * Requirements:
   * - Multiplication cannot overflow.
   */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
    if (a == 0) {
      return 0;
    }

    uint256 c = a * b;
    require(c / a == b, 'SafeMath: multiplication overflow');

    return c;
  }

  /**
   * @dev Returns the integer division of two unsigned integers. Reverts on
   * division by zero. The result is rounded towards zero.
   *
   * Counterpart to Solidity's `/` operator. Note: this function uses a
   * `revert` opcode (which leaves remaining gas untouched) while Solidity
   * uses an invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   * - The divisor cannot be zero.
   */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    return div(a, b, 'SafeMath: division by zero');
  }

  /**
   * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
   * division by zero. The result is rounded towards zero.
   *
   * Counterpart to Solidity's `/` operator. Note: this function uses a
   * `revert` opcode (which leaves remaining gas untouched) while Solidity
   * uses an invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   * - The divisor cannot be zero.
   */
  function div(
    uint256 a,
    uint256 b,
    string memory errorMessage
  ) internal pure returns (uint256) {
    // Solidity only automatically asserts when dividing by 0
    require(b > 0, errorMessage);
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold

    return c;
  }

  /**
   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
   * Reverts when dividing by zero.
   *
   * Counterpart to Solidity's `%` operator. This function uses a `revert`
   * opcode (which leaves remaining gas untouched) while Solidity uses an
   * invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   * - The divisor cannot be zero.
   */
  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    return mod(a, b, 'SafeMath: modulo by zero');
  }

  /**
   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
   * Reverts with custom message when dividing by zero.
   *
   * Counterpart to Solidity's `%` operator. This function uses a `revert`
   * opcode (which leaves remaining gas untouched) while Solidity uses an
   * invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   * - The divisor cannot be zero.
   */
  function mod(
    uint256 a,
    uint256 b,
    string memory errorMessage
  ) internal pure returns (uint256) {
    require(b != 0, errorMessage);
    return a % b;
  }
}

File 3 of 6 : IERC20.sol
// SPDX-License-Identifier: agpl-3.0
pragma solidity 0.7.6;

/**
 * @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);
}

File 4 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;

import "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.
 */
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 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;
  }
}

File 5 of 6 : Context.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.7.6;

/*
 * @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 GSN 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 payable) {
    return msg.sender;
  }

  function _msgData() internal view virtual returns (bytes memory) {
    this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
    return msg.data;
  }
}

File 6 of 6 : IChefIncentivesController.sol
// SPDX-License-Identifier: agpl-3.0
pragma solidity 0.7.6;
pragma experimental ABIEncoderV2;

interface IChefIncentivesController {

  /**
   * @dev Called by the corresponding asset on any update that affects the rewards distribution
   * @param user The address of the user
   * @param userBalance The balance of the user of the asset in the lending pool
   * @param totalSupply The total supply of the asset in the lending pool
   **/
  function handleAction(
    address user,
    uint256 userBalance,
    uint256 totalSupply
  ) external;

    function addPool(address _token, uint256 _allocPoint) external;

    function claim(address _user, address[] calldata _tokens) external;

    function setClaimReceiver(address _user, address _receiver) external;

}

Settings
{
  "evmVersion": "istanbul",
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_lockMultiplier","type":"uint256"},{"internalType":"uint256","name":"_minBuy","type":"uint256"},{"internalType":"uint256","name":"_minLock","type":"uint256"},{"internalType":"uint256","name":"_cooldown","type":"uint256"},{"internalType":"uint256","name":"_podlCooldown","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"podler","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AaaaaaahAndImSuperPODLiiiiing","type":"event"},{"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":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SoldFTM","type":"event"},{"inputs":[],"name":"availableFTM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"availableForUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burn","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyCooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"buyFTM","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gFTM","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockedBalanceMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpToken","outputs":[{"internalType":"contract IUniswapLPToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpTokensPerOneFTM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minSuperPODLLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolOwnedReserves","outputs":[{"internalType":"uint256","name":"wftm","type":"uint256"},{"internalType":"uint256","name":"geist","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lockMultiplier","type":"uint256"},{"internalType":"uint256","name":"_minBuy","type":"uint256"},{"internalType":"uint256","name":"_minLock","type":"uint256"},{"internalType":"uint256","name":"_cooldown","type":"uint256"},{"internalType":"uint256","name":"_podlCooldown","type":"uint256"}],"name":"setParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"superPODL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"superPODLCooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSoldFTM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"contract IMultiFeeDistribution","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userData","outputs":[{"internalType":"uint256","name":"nextClaimTime","type":"uint256"},{"internalType":"uint256","name":"claimCount","type":"uint256"},{"internalType":"uint256","name":"totalBoughtFTM","type":"uint256"}],"stateMutability":"view","type":"function"}]

608060405234801561001057600080fd5b50604051620013d2380380620013d2833981810160405260a081101561003557600080fd5b50805160208201516040830151606084015160809094015192939192909190600061005e61014d565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060408051630cca1d5960e21b81523060048201527349c93a95dbcc9a6a4d8f77e59c038ce5020e82f86024820152905173297fddc5c33ef988dd03bd13e162ae084ea1fe5791829163332875649160448082019260009290919082900301818387803b15801561011757600080fd5b505af115801561012b573d6000803e3d6000fd5b50505050610142868686868661015160201b60201c565b5050505050506101e7565b3390565b61015961014d565b6000546001600160a01b039081169116146101bb576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b670de0b6b3a76400008410156101d057600080fd5b600794909455600392909255600455600555600655565b6111db80620001f76000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80638da5cb5b116100b8578063c89109131161007c578063c891091314610245578063d828bb8814610289578063e6e789b4146102be578063f1c49e64146102c6578063f2fde38b146102ce578063f66bf229146102f457610137565b80638da5cb5b146101f35780639fad09e5146101fb578063acef2e0f14610203578063b8b35b931461020b578063c49185231461022857610137565b80635fcbd285116100ff5780635fcbd285146101c957806361d027b3146101d1578063670e97ed146101d9578063704fbfe5146101e1578063715018a6146101e957610137565b80632da26a691461013c5780633c3d8c8f14610160578063404ea7d91461019857806344df8e70146101a057806348c74950146101a8575b600080fd5b6101446102fc565b604080516001600160a01b039092168252519081900360200190f35b6101866004803603602081101561017657600080fd5b50356001600160a01b0316610314565b60408051918252519081900360200190f35b6101866104a6565b6101446104ac565b6101b06104c4565b6040805192835260208301919091528051918290030190f35b610144610695565b6101446106ad565b6101866106c5565b6101866106cb565b6101f16106d1565b005b610144610785565b610186610794565b610186610824565b6101f16004803603602081101561022157600080fd5b503561082a565b6101f16004803603602081101561023e57600080fd5b5035610948565b61026b6004803603602081101561025b57600080fd5b50356001600160a01b03166109b4565b60408051938452602084019290925282820152519081900360600190f35b6101f1600480360360a081101561029f57600080fd5b50803590602081013590604081013590606081013590608001356109d4565b610186610a6a565b610186610b93565b6101f1600480360360208110156102e457600080fd5b50356001600160a01b0316610b99565b610186610ca3565b7339b3bd37208cbade74d0fcbdbb12d606295b430a81565b6001600160a01b0381166000908152600160205260408120805442101561033f5760009150506104a1565b6000610349610794565b905060007349c93a95dbcc9a6a4d8f77e59c038ce5020e82f86001600160a01b0316630483a7f6866040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156103ae57600080fd5b505afa1580156103c2573d6000803e3d6000fd5b505050506040513d60208110156103d857600080fd5b50516040805163ca5c7b9160e01b815290519192506000917349c93a95dbcc9a6a4d8f77e59c038ce5020e82f89163ca5c7b91916004808301926020929190829003018186803b15801561042b57600080fd5b505afa15801561043f573d6000803e3d6000fd5b505050506040513d602081101561045557600080fd5b505160075490915060009061048390839061047d908690610477908990610ca9565b90610ca9565b90610d0b565b90508381111561049a5783955050505050506104a1565b9450505050505b919050565b60075481565b7307b84b5855a8b271c4f461993d724ecd7a826aae81565b60008060008073668ae94d0870230ac007a01b471d02b2c94ddcb96001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561051757600080fd5b505afa15801561052b573d6000803e3d6000fd5b505050506040513d606081101561054157600080fd5b508051602091820151604080516370a0823160e01b81527307b84b5855a8b271c4f461993d724ecd7a826aae600482015290516001600160701b03938416965092909116935060009273668ae94d0870230ac007a01b471d02b2c94ddcb9926370a08231926024808201939291829003018186803b1580156105c257600080fd5b505afa1580156105d6573d6000803e3d6000fd5b505050506040513d60208110156105ec57600080fd5b5051604080516318160ddd60e01b8152905191925060009173668ae94d0870230ac007a01b471d02b2c94ddcb9916318160ddd916004808301926020929190829003018186803b15801561063f57600080fd5b505afa158015610653573d6000803e3d6000fd5b505050506040513d602081101561066957600080fd5b5051905061067b8161047d8685610ca9565b6106898261047d8686610ca9565b95509550505050509091565b73668ae94d0870230ac007a01b471d02b2c94ddcb981565b7349c93a95dbcc9a6a4d8f77e59c038ce5020e82f881565b60045481565b60055481565b6106d9610d4d565b6000546001600160a01b0390811691161461073b576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b604080516370a0823160e01b815230600482015290516000916002917339b3bd37208cbade74d0fcbdbb12d606295b430a916370a08231916024808301926020929190829003018186803b1580156107eb57600080fd5b505afa1580156107ff573d6000803e3d6000fd5b505050506040513d602081101561081557600080fd5b50518161081e57fe5b04905090565b60025481565b6004547349c93a95dbcc9a6a4d8f77e59c038ce5020e82f86001600160a01b0316630483a7f6336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561088e57600080fd5b505afa1580156108a2573d6000803e3d6000fd5b505050506040513d60208110156108b857600080fd5b50511015610903576040805162461bcd60e51b81526020600482015260136024820152724e65656420746f206c6f636b2047454953542160681b604482015290519081900360640190fd5b61090f81600654610d51565b60408051828152905133917f401d77fee42d0956b84fda240a2c5b12c0fe605ed0e021e1907aaa5bb0ad37ca919081900360200190a250565b61095133610314565b8111156109a5576040805162461bcd60e51b815260206004820152601960248201527f416d6f756e7420657863656564732075736572206c696d697400000000000000604482015290519081900360640190fd5b6109b181600554610d51565b50565b600160208190526000918252604090912080549181015460029091015483565b6109dc610d4d565b6000546001600160a01b03908116911614610a3e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b670de0b6b3a7640000841015610a5357600080fd5b600794909455600392909255600455600555600655565b60008073668ae94d0870230ac007a01b471d02b2c94ddcb96001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610aba57600080fd5b505afa158015610ace573d6000803e3d6000fd5b505050506040513d6020811015610ae457600080fd5b505160408051630240bc6b60e21b8152905191925060009173668ae94d0870230ac007a01b471d02b2c94ddcb991630902f1ac916004808301926060929190829003018186803b158015610b3757600080fd5b505afa158015610b4b573d6000803e3d6000fd5b505050506040513d6060811015610b6157600080fd5b50516001600160701b03169050610b8c606461047d8381602d61047788670de0b6b3a7640000610ca9565b9250505090565b60065481565b610ba1610d4d565b6000546001600160a01b03908116911614610c03576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610c485760405162461bcd60e51b815260040180806020018281038252602681526020018061115f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60035481565b600082610cb857506000610d05565b82820282848281610cc557fe5b0414610d025760405162461bcd60e51b81526004018080602001828103825260218152602001806111856021913960400191505060405180910390fd5b90505b92915050565b6000610d0283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611062565b3390565b336000908152600160205260409020600354831015610dae576040805162461bcd60e51b815260206004820152601460248201527310995b1bddc81b5a5b88189d5e48185b5bdd5b9d60621b604482015290519081900360640190fd5b8054421015610dfb576040805162461bcd60e51b8152602060048201526014602482015273436c61696d656420746f6f20726563656e746c7960601b604482015290519081900360640190fd5b6000610e1b670de0b6b3a764000061047d610e14610a6a565b8790610ca9565b604080516323b872dd60e01b81523360048201527307b84b5855a8b271c4f461993d724ecd7a826aae602482015260448101839052905191925073668ae94d0870230ac007a01b471d02b2c94ddcb9916323b872dd916064808201926020929091908290030181600087803b158015610e9357600080fd5b505af1158015610ea7573d6000803e3d6000fd5b505050506040513d6020811015610ebd57600080fd5b50506040805163a9059cbb60e01b81523360048201526024810186905290517339b3bd37208cbade74d0fcbdbb12d606295b430a9163a9059cbb9160448083019260209291908290030181600087803b158015610f1957600080fd5b505af1158015610f2d573d6000803e3d6000fd5b505050506040513d6020811015610f4357600080fd5b50506040805163a9059cbb60e01b81527349c93a95dbcc9a6a4d8f77e59c038ce5020e82f860048201526024810186905290517339b3bd37208cbade74d0fcbdbb12d606295b430a9163a9059cbb9160448083019260209291908290030181600087803b158015610fb357600080fd5b505af1158015610fc7573d6000803e3d6000fd5b505050506040513d6020811015610fdd57600080fd5b50610fea90504284611104565b8255600180830154610ffb91611104565b6001830155600282015461100f9085611104565b600280840191909155546110239085611104565b60025560408051858152905133917fd5e10681669a12e566fa5dde10ebec2f2ade55a7f730274c5d5463e8d48fa7d0919081900360200190a250505050565b600081836110ee5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156110b357818101518382015260200161109b565b50505050905090810190601f1680156110e05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816110fa57fe5b0495945050505050565b600082820183811015610d02576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fdfe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a264697066735822122046f7da4d1608d5933c5c04f5dd0911dbcb11bc1650ec1b83f70d9abb43f8f3e864736f6c6343000706003300000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000021e19e0c9bab240000000000000000000000000000000000000000000000000000000000000000151800000000000000000000000000000000000000000000000000000000000093a80

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c80638da5cb5b116100b8578063c89109131161007c578063c891091314610245578063d828bb8814610289578063e6e789b4146102be578063f1c49e64146102c6578063f2fde38b146102ce578063f66bf229146102f457610137565b80638da5cb5b146101f35780639fad09e5146101fb578063acef2e0f14610203578063b8b35b931461020b578063c49185231461022857610137565b80635fcbd285116100ff5780635fcbd285146101c957806361d027b3146101d1578063670e97ed146101d9578063704fbfe5146101e1578063715018a6146101e957610137565b80632da26a691461013c5780633c3d8c8f14610160578063404ea7d91461019857806344df8e70146101a057806348c74950146101a8575b600080fd5b6101446102fc565b604080516001600160a01b039092168252519081900360200190f35b6101866004803603602081101561017657600080fd5b50356001600160a01b0316610314565b60408051918252519081900360200190f35b6101866104a6565b6101446104ac565b6101b06104c4565b6040805192835260208301919091528051918290030190f35b610144610695565b6101446106ad565b6101866106c5565b6101866106cb565b6101f16106d1565b005b610144610785565b610186610794565b610186610824565b6101f16004803603602081101561022157600080fd5b503561082a565b6101f16004803603602081101561023e57600080fd5b5035610948565b61026b6004803603602081101561025b57600080fd5b50356001600160a01b03166109b4565b60408051938452602084019290925282820152519081900360600190f35b6101f1600480360360a081101561029f57600080fd5b50803590602081013590604081013590606081013590608001356109d4565b610186610a6a565b610186610b93565b6101f1600480360360208110156102e457600080fd5b50356001600160a01b0316610b99565b610186610ca3565b7339b3bd37208cbade74d0fcbdbb12d606295b430a81565b6001600160a01b0381166000908152600160205260408120805442101561033f5760009150506104a1565b6000610349610794565b905060007349c93a95dbcc9a6a4d8f77e59c038ce5020e82f86001600160a01b0316630483a7f6866040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156103ae57600080fd5b505afa1580156103c2573d6000803e3d6000fd5b505050506040513d60208110156103d857600080fd5b50516040805163ca5c7b9160e01b815290519192506000917349c93a95dbcc9a6a4d8f77e59c038ce5020e82f89163ca5c7b91916004808301926020929190829003018186803b15801561042b57600080fd5b505afa15801561043f573d6000803e3d6000fd5b505050506040513d602081101561045557600080fd5b505160075490915060009061048390839061047d908690610477908990610ca9565b90610ca9565b90610d0b565b90508381111561049a5783955050505050506104a1565b9450505050505b919050565b60075481565b7307b84b5855a8b271c4f461993d724ecd7a826aae81565b60008060008073668ae94d0870230ac007a01b471d02b2c94ddcb96001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561051757600080fd5b505afa15801561052b573d6000803e3d6000fd5b505050506040513d606081101561054157600080fd5b508051602091820151604080516370a0823160e01b81527307b84b5855a8b271c4f461993d724ecd7a826aae600482015290516001600160701b03938416965092909116935060009273668ae94d0870230ac007a01b471d02b2c94ddcb9926370a08231926024808201939291829003018186803b1580156105c257600080fd5b505afa1580156105d6573d6000803e3d6000fd5b505050506040513d60208110156105ec57600080fd5b5051604080516318160ddd60e01b8152905191925060009173668ae94d0870230ac007a01b471d02b2c94ddcb9916318160ddd916004808301926020929190829003018186803b15801561063f57600080fd5b505afa158015610653573d6000803e3d6000fd5b505050506040513d602081101561066957600080fd5b5051905061067b8161047d8685610ca9565b6106898261047d8686610ca9565b95509550505050509091565b73668ae94d0870230ac007a01b471d02b2c94ddcb981565b7349c93a95dbcc9a6a4d8f77e59c038ce5020e82f881565b60045481565b60055481565b6106d9610d4d565b6000546001600160a01b0390811691161461073b576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b604080516370a0823160e01b815230600482015290516000916002917339b3bd37208cbade74d0fcbdbb12d606295b430a916370a08231916024808301926020929190829003018186803b1580156107eb57600080fd5b505afa1580156107ff573d6000803e3d6000fd5b505050506040513d602081101561081557600080fd5b50518161081e57fe5b04905090565b60025481565b6004547349c93a95dbcc9a6a4d8f77e59c038ce5020e82f86001600160a01b0316630483a7f6336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561088e57600080fd5b505afa1580156108a2573d6000803e3d6000fd5b505050506040513d60208110156108b857600080fd5b50511015610903576040805162461bcd60e51b81526020600482015260136024820152724e65656420746f206c6f636b2047454953542160681b604482015290519081900360640190fd5b61090f81600654610d51565b60408051828152905133917f401d77fee42d0956b84fda240a2c5b12c0fe605ed0e021e1907aaa5bb0ad37ca919081900360200190a250565b61095133610314565b8111156109a5576040805162461bcd60e51b815260206004820152601960248201527f416d6f756e7420657863656564732075736572206c696d697400000000000000604482015290519081900360640190fd5b6109b181600554610d51565b50565b600160208190526000918252604090912080549181015460029091015483565b6109dc610d4d565b6000546001600160a01b03908116911614610a3e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b670de0b6b3a7640000841015610a5357600080fd5b600794909455600392909255600455600555600655565b60008073668ae94d0870230ac007a01b471d02b2c94ddcb96001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610aba57600080fd5b505afa158015610ace573d6000803e3d6000fd5b505050506040513d6020811015610ae457600080fd5b505160408051630240bc6b60e21b8152905191925060009173668ae94d0870230ac007a01b471d02b2c94ddcb991630902f1ac916004808301926060929190829003018186803b158015610b3757600080fd5b505afa158015610b4b573d6000803e3d6000fd5b505050506040513d6060811015610b6157600080fd5b50516001600160701b03169050610b8c606461047d8381602d61047788670de0b6b3a7640000610ca9565b9250505090565b60065481565b610ba1610d4d565b6000546001600160a01b03908116911614610c03576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610c485760405162461bcd60e51b815260040180806020018281038252602681526020018061115f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60035481565b600082610cb857506000610d05565b82820282848281610cc557fe5b0414610d025760405162461bcd60e51b81526004018080602001828103825260218152602001806111856021913960400191505060405180910390fd5b90505b92915050565b6000610d0283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611062565b3390565b336000908152600160205260409020600354831015610dae576040805162461bcd60e51b815260206004820152601460248201527310995b1bddc81b5a5b88189d5e48185b5bdd5b9d60621b604482015290519081900360640190fd5b8054421015610dfb576040805162461bcd60e51b8152602060048201526014602482015273436c61696d656420746f6f20726563656e746c7960601b604482015290519081900360640190fd5b6000610e1b670de0b6b3a764000061047d610e14610a6a565b8790610ca9565b604080516323b872dd60e01b81523360048201527307b84b5855a8b271c4f461993d724ecd7a826aae602482015260448101839052905191925073668ae94d0870230ac007a01b471d02b2c94ddcb9916323b872dd916064808201926020929091908290030181600087803b158015610e9357600080fd5b505af1158015610ea7573d6000803e3d6000fd5b505050506040513d6020811015610ebd57600080fd5b50506040805163a9059cbb60e01b81523360048201526024810186905290517339b3bd37208cbade74d0fcbdbb12d606295b430a9163a9059cbb9160448083019260209291908290030181600087803b158015610f1957600080fd5b505af1158015610f2d573d6000803e3d6000fd5b505050506040513d6020811015610f4357600080fd5b50506040805163a9059cbb60e01b81527349c93a95dbcc9a6a4d8f77e59c038ce5020e82f860048201526024810186905290517339b3bd37208cbade74d0fcbdbb12d606295b430a9163a9059cbb9160448083019260209291908290030181600087803b158015610fb357600080fd5b505af1158015610fc7573d6000803e3d6000fd5b505050506040513d6020811015610fdd57600080fd5b50610fea90504284611104565b8255600180830154610ffb91611104565b6001830155600282015461100f9085611104565b600280840191909155546110239085611104565b60025560408051858152905133917fd5e10681669a12e566fa5dde10ebec2f2ade55a7f730274c5d5463e8d48fa7d0919081900360200190a250505050565b600081836110ee5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156110b357818101518382015260200161109b565b50505050905090810190601f1680156110e05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816110fa57fe5b0495945050505050565b600082820183811015610d02576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fdfe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a264697066735822122046f7da4d1608d5933c5c04f5dd0911dbcb11bc1650ec1b83f70d9abb43f8f3e864736f6c63430007060033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000021e19e0c9bab240000000000000000000000000000000000000000000000000000000000000000151800000000000000000000000000000000000000000000000000000000000093a80

-----Decoded View---------------
Arg [0] : _lockMultiplier (uint256): 25
Arg [1] : _minBuy (uint256): 1000000000000000000
Arg [2] : _minLock (uint256): 10000000000000000000000
Arg [3] : _cooldown (uint256): 86400
Arg [4] : _podlCooldown (uint256): 604800

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [1] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000
Arg [2] : 00000000000000000000000000000000000000000000021e19e0c9bab2400000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000015180
Arg [4] : 0000000000000000000000000000000000000000000000000000000000093a80


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]
[ 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.