Contract Overview
Balance:
0 FTM
FTM Value:
$0.00
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Latest 2 internal transactions
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0x394c019244e41e108272301cd2726f7c676d3c0abc6216efb146689db729f216 | 18783339 | 528 days 23 hrs ago | 0x4aad757bae148528335339f350ab08e70094e190 | SpookySwap: Router | 100,000 FTM | ||
0xb7520ad0dd17a4ac3cc637ca28dd3e7c6da9cf636c1426b47b55d464a512a15f | 18766127 | 529 days 4 hrs ago | Dark Matter DeFi: Deployer | Contract Creation | 0 FTM |
[ Download CSV Export ]
Contract Name:
Presale
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at FtmScan.com on 2021-10-10 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.6.12; /** * @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) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @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" ); } } // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.6.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 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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor() internal {} 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: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.6.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 ); } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.6.0; /** * @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: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.6.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20MinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-ERC20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor(string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub( amount, "ERC20: burn amount exceeds balance" ); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.6.0; /** * @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() internal { 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; } } pragma solidity ^0.6.0; interface DarkMatter { function mint(address to, uint256 value) external; function unpause() external; function balanceOf(address account) external returns (uint256 amount); function approve(address spender, uint256 amount) external; function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); } interface ISpookySwapRouter02 { function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); } contract Presale is Ownable { using SafeMath for uint256; DarkMatter public token; ISpookySwapRouter02 internal spookyswapRouter = ISpookySwapRouter02(0xF491e7B69E4244ad4002BC14e878a34207E38c29); uint256 public presaleStartTimestamp; uint256 public presaleEndTimestamp; uint256 public softCapEthAmount = 30000 ether; uint256 public hardCapEthAmount = 100000 ether; uint256 public totalDepositedEthBalance; uint256 public minimumDepositEthAmount = 10 ether; uint256 public maximumDepositEthAmount = 2000 ether; mapping(address => uint256) public deposits; constructor(DarkMatter _token) public { token = _token; presaleStartTimestamp = 1633896000; presaleEndTimestamp = presaleStartTimestamp.add(2 days); } receive() external payable { deposit(); } function deposit() public payable { require( now >= presaleStartTimestamp && now <= presaleEndTimestamp, "presale is not active" ); require( totalDepositedEthBalance.add(msg.value) <= hardCapEthAmount, "deposit limits reached" ); require( deposits[msg.sender].add(msg.value) >= minimumDepositEthAmount && deposits[msg.sender].add(msg.value) <= maximumDepositEthAmount, "incorrect amount" ); uint256 rewardTokenCount; rewardTokenCount = 0.25 ether; // 40 tokens per FTM uint256 tokenAmount = msg.value.mul(1e18).div(rewardTokenCount); token.mint(msg.sender, tokenAmount); totalDepositedEthBalance = totalDepositedEthBalance.add(msg.value); deposits[msg.sender] = deposits[msg.sender].add(msg.value); emit Deposited(msg.sender, msg.value); } function releaseFunds() external onlyOwner { require( (now >= presaleEndTimestamp && totalDepositedEthBalance == hardCapEthAmount) || totalDepositedEthBalance == hardCapEthAmount, "presale is active" ); uint256 amountFtm = address(this).balance; uint256 amountToken = 250000 ether; token.unpause(); token.mint(address(this), amountToken); token.approve(address(spookyswapRouter), amountToken); spookyswapRouter.addLiquidityETH{value: amountFtm}( address(token), amountToken, amountToken, amountFtm, address(0x0), now ); } // If presale amount doesn't get reached function reclaimftm() external { require( now >= presaleEndTimestamp && totalDepositedEthBalance < hardCapEthAmount, "presale failed" ); require(deposits[msg.sender] > 0, "no deposit"); payable(msg.sender).transfer(deposits[msg.sender]); deposits[msg.sender] = 0; } // recover tokens ERC20 sent in error. function recoverERC20(address tokenAddress, uint256 tokenAmount) external onlyOwner { IERC20(tokenAddress).transfer(this.owner(), tokenAmount); emit Recovered(tokenAddress, tokenAmount); } function getDepositAmount() public view returns (uint256) { return totalDepositedEthBalance; } function getLeftTimeAmount() public view returns (uint256) { if (now > presaleEndTimestamp) { return 0; } else { return (presaleEndTimestamp - now); } } event Deposited(address indexed user, uint256 amount); event Recovered(address token, uint256 amount); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract DarkMatter","name":"_token","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposited","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":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Recovered","type":"event"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"deposits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDepositAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLeftTimeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hardCapEthAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumDepositEthAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumDepositEthAmount","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":"presaleEndTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStartTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reclaimftm","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaseFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"softCapEthAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract DarkMatter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDepositedEthBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600280546001600160a01b03191673f491e7b69e4244ad4002bc14e878a34207e38c2917905569065a4da25d3016c0000060055569152d02c7e14af6800000600655678ac7230489e80000600855686c6b935b8bbd40000060095534801561006b57600080fd5b506040516113113803806113118339818101604052602081101561008e57600080fd5b5051600061009a61012a565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180546001600160a01b0319166001600160a01b03831617905563616346406003819055610121906202a30061012e602090811b610f5217901c565b6004555061018f565b3390565b600082820183811015610188576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6111738061019e6000396000f3fe60806040526004361061012d5760003560e01c80637d96f693116100a5578063d0e30db011610074578063f2fde38b11610059578063f2fde38b146102db578063fc0c546a1461031b578063fc7e286d146103305761013c565b8063d0e30db0146102be578063dfc7a6a8146102c65761013c565b80637d96f693146102105780638294ba74146102255780638980f11f1461023a5780638da5cb5b146102805761013c565b80634ea37fec116100fc57806369d89575116100e157806369d89575146101d1578063715018a6146101e657806378da7ba1146101fb5761013c565b80634ea37fec146101a7578063596b9582146101bc5761013c565b806328a37da9146101415780632f1618d9146101565780633a0dc9711461017d5780633ff9f5bd146101925761013c565b3661013c5761013a610370565b005b600080fd5b34801561014d57600080fd5b5061013a610602565b34801561016257600080fd5b5061016b610713565b60408051918252519081900360200190f35b34801561018957600080fd5b5061016b610719565b34801561019e57600080fd5b5061016b61071f565b3480156101b357600080fd5b5061016b610725565b3480156101c857600080fd5b5061016b61072b565b3480156101dd57600080fd5b5061013a61074a565b3480156101f257600080fd5b5061013a610abb565b34801561020757600080fd5b5061016b610ba1565b34801561021c57600080fd5b5061016b610ba7565b34801561023157600080fd5b5061016b610bad565b34801561024657600080fd5b5061013a6004803603604081101561025d57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610bb3565b34801561028c57600080fd5b50610295610dac565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b61013a610370565b3480156102d257600080fd5b5061016b610dc8565b3480156102e757600080fd5b5061013a600480360360208110156102fe57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610dce565b34801561032757600080fd5b50610295610f24565b34801561033c57600080fd5b5061016b6004803603602081101561035357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610f40565b600354421015801561038457506004544211155b6103d5576040805162461bcd60e51b815260206004820152601560248201527f70726573616c65206973206e6f74206163746976650000000000000000000000604482015290519081900360640190fd5b6006546007546103e59034610f52565b1115610438576040805162461bcd60e51b815260206004820152601660248201527f6465706f736974206c696d697473207265616368656400000000000000000000604482015290519081900360640190fd5b600854336000908152600a60205260409020546104559034610f52565b1015801561047e5750600954336000908152600a602052604090205461047b9034610f52565b11155b6104cf576040805162461bcd60e51b815260206004820152601060248201527f696e636f727265637420616d6f756e7400000000000000000000000000000000604482015290519081900360640190fd5b6703782dace9d9000060006104f6826104f034670de0b6b3a7640000610fb5565b9061100e565b600154604080517f40c10f1900000000000000000000000000000000000000000000000000000000815233600482015260248101849052905192935073ffffffffffffffffffffffffffffffffffffffff909116916340c10f199160448082019260009290919082900301818387803b15801561057257600080fd5b505af1158015610586573d6000803e3d6000fd5b50506007546105989250905034610f52565b600755336000908152600a60205260409020546105b59034610f52565b336000818152600a6020908152604091829020939093558051348152905191927f2da466a7b24304f47e87fa2e1e5a81b9831ce54fec19055ce277ca2f39ba42c492918290030190a25050565b60045442101580156106175750600654600754105b610668576040805162461bcd60e51b815260206004820152600e60248201527f70726573616c65206661696c6564000000000000000000000000000000000000604482015290519081900360640190fd5b336000908152600a60205260409020546106c9576040805162461bcd60e51b815260206004820152600a60248201527f6e6f206465706f73697400000000000000000000000000000000000000000000604482015290519081900360640190fd5b336000818152600a602052604080822054905181156108fc0292818181858888f19350505050158015610700573d6000803e3d6000fd5b50336000908152600a6020526040812055565b60085481565b60095481565b60055481565b60035481565b600060045442111561073f57506000610747565b426004540390505b90565b610752611050565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146107c1576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60045442101580156107d65750600654600754145b806107e45750600654600754145b610835576040805162461bcd60e51b815260206004820152601160248201527f70726573616c6520697320616374697665000000000000000000000000000000604482015290519081900360640190fd5b600154604080517f3f4ba83a000000000000000000000000000000000000000000000000000000008152905147926934f086f3b33b684000009273ffffffffffffffffffffffffffffffffffffffff90911691633f4ba83a9160048082019260009290919082900301818387803b1580156108af57600080fd5b505af11580156108c3573d6000803e3d6000fd5b5050600154604080517f40c10f1900000000000000000000000000000000000000000000000000000000815230600482015260248101869052905173ffffffffffffffffffffffffffffffffffffffff90921693506340c10f19925060448082019260009290919082900301818387803b15801561094057600080fd5b505af1158015610954573d6000803e3d6000fd5b5050600154600254604080517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff928316600482015260248101879052905191909216935063095ea7b39250604480830192600092919082900301818387803b1580156109d657600080fd5b505af11580156109ea573d6000803e3d6000fd5b5050600254600154604080517ff305d71900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9283166004820152602481018790526044810187905260648101889052600060848201524260a4820152905191909216935063f305d7199250859160c48082019260609290919082900301818588803b158015610a8a57600080fd5b505af1158015610a9e573d6000803e3d6000fd5b50505050506040513d6060811015610ab557600080fd5b50505050565b610ac3611050565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614610b32576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60045481565b60075490565b60065481565b610bbb611050565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614610c2a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb3073ffffffffffffffffffffffffffffffffffffffff16638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015610c8c57600080fd5b505afa158015610ca0573d6000803e3d6000fd5b505050506040513d6020811015610cb657600080fd5b5051604080517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152602482018590525160448083019260209291908290030181600087803b158015610d2b57600080fd5b505af1158015610d3f573d6000803e3d6000fd5b505050506040513d6020811015610d5557600080fd5b50506040805173ffffffffffffffffffffffffffffffffffffffff841681526020810183905281517f8c1256b8896378cd5044f80c202f9772b9d77dc85c8a6eb51967210b09bfaa28929181900390910190a15050565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b60075481565b610dd6611050565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614610e45576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116610e975760405162461bcd60e51b81526004018080602001828103825260268152602001806110f76026913960400191505060405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b600a6020526000908152604090205481565b600082820183811015610fac576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b600082610fc457506000610faf565b82820282848281610fd157fe5b0414610fac5760405162461bcd60e51b815260040180806020018281038252602181526020018061111d6021913960400191505060405180910390fd5b6000610fac83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611054565b3390565b600081836110e05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156110a557818101518382015260200161108d565b50505050905090810190601f1680156110d25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816110ec57fe5b049594505050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a2646970667358221220ac99ad109db41d25fcadd414a0378b5316e24f53347bf8d10e86b297d438237664736f6c634300060c003300000000000000000000000090e892fed501ae00596448aecf998c88816e5c0f
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000090e892fed501ae00596448aecf998c88816e5c0f
-----Decoded View---------------
Arg [0] : _token (address): 0x90e892fed501ae00596448aecf998c88816e5c0f
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000090e892fed501ae00596448aecf998c88816e5c0f
Deployed ByteCode Sourcemap
27232:3786:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28126:9;:7;:9::i;:::-;27232:3786;;;;;29922:358;;;;;;;;;;;;;:::i;27697:49::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;27753:51;;;;;;;;;;;;;:::i;27546:45::-;;;;;;;;;;;;;:::i;27462:36::-;;;;;;;;;;;;;:::i;30690:210::-;;;;;;;;;;;;;:::i;29121:747::-;;;;;;;;;;;;;:::i;25798:148::-;;;;;;;;;;;;;:::i;27505:34::-;;;;;;;;;;;;;:::i;30574:108::-;;;;;;;;;;;;;:::i;27598:46::-;;;;;;;;;;;;;:::i;30332:234::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30332:234:0;;;;;;;;;:::i;25156:79::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28151:962;;;:::i;27651:39::-;;;;;;;;;;;;;:::i;26101:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26101:281:0;;;;:::i;27303:23::-;;;;;;;;;;;;;:::i;27813:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27813:43:0;;;;:::i;28151:962::-;28225:21;;28218:3;:28;;:58;;;;;28257:19;;28250:3;:26;;28218:58;28196:129;;;;;-1:-1:-1;;;28196:129:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;28401:16;;28358:24;;:39;;28387:9;28358:28;:39::i;:::-;:59;;28336:131;;;;;-1:-1:-1;;;28336:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;28539:23;;28509:10;28500:20;;;;:8;:20;;;;;;:35;;28525:9;28500:24;:35::i;:::-;:62;;:145;;;;-1:-1:-1;28622:23:0;;28592:10;28583:20;;;;:8;:20;;;;;;:35;;28608:9;28583:24;:35::i;:::-;:62;;28500:145;28478:211;;;;;-1:-1:-1;;;28478:211:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;28758:10;28702:24;28824:41;28758:10;28824:19;:9;28838:4;28824:13;:19::i;:::-;:23;;:41::i;:::-;28876:5;;:35;;;;;;28887:10;28876:35;;;;;;;;;;;;28802:63;;-1:-1:-1;28876:5:0;;;;;:10;;:35;;;;;:5;;:35;;;;;;;;:5;;:35;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;28949:24:0;;:39;;-1:-1:-1;28949:24:0;-1:-1:-1;28978:9:0;28949:28;:39::i;:::-;28922:24;:66;29031:10;29022:20;;;;:8;:20;;;;;;:35;;29047:9;29022:24;:35::i;:::-;29008:10;28999:20;;;;:8;:20;;;;;;;;;:58;;;;29073:32;;29095:9;29073:32;;;;29008:10;;29073:32;;;;;;;;;28151:962;;:::o;29922:358::-;29993:19;;29986:3;:26;;:90;;;;;30060:16;;30033:24;;:43;29986:90;29964:154;;;;;-1:-1:-1;;;29964:154:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30146:10;30160:1;30137:20;;;:8;:20;;;;;;30129:47;;;;;-1:-1:-1;;;30129:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30195:10;30216:20;;;;:8;:20;;;;;;;30187:50;;;;;;;;30216:20;30187:50;30216:20;30195:10;30187:50;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30257:10:0;30271:1;30248:20;;;:8;:20;;;;;:24;29922:358::o;27697:49::-;;;;:::o;27753:51::-;;;;:::o;27546:45::-;;;;:::o;27462:36::-;;;;:::o;30690:210::-;30740:7;30770:19;;30764:3;:25;30760:133;;;-1:-1:-1;30813:1:0;30806:8;;30760:133;30877:3;30855:19;;:25;30847:34;;30760:133;30690:210;:::o;29121:747::-;25378:12;:10;:12::i;:::-;25368:6;;:22;:6;;;:22;;;25360:67;;;;;-1:-1:-1;;;25360:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29205:19:::1;;29198:3;:26;;:91;;;;;29273:16;;29245:24;;:44;29198:91;29197:158;;;;29339:16;;29311:24;;:44;29197:158;29175:225;;;::::0;;-1:-1:-1;;;29175:225:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;29510:5;::::0;:15:::1;::::0;;;;;;;29431:21:::1;::::0;29485:12:::1;::::0;29510:5:::1;::::0;;::::1;::::0;:13:::1;::::0;:15:::1;::::0;;::::1;::::0;29411:17:::1;::::0;29510:15;;;;;;;;29411:17;29510:5;:15;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;29536:5:0::1;::::0;:38:::1;::::0;;;;;29555:4:::1;29536:38;::::0;::::1;::::0;;;;;;;;;:5:::1;::::0;;::::1;::::0;-1:-1:-1;29536:10:0::1;::::0;-1:-1:-1;29536:38:0;;;;;:5:::1;::::0;:38;;;;;;;;:5;;:38;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;29585:5:0::1;::::0;29607:16:::1;::::0;29585:53:::1;::::0;;;;;:5:::1;29607:16:::0;;::::1;29585:53;::::0;::::1;::::0;;;;;;;;;:5;;;::::1;::::0;-1:-1:-1;29585:13:0::1;::::0;-1:-1:-1;29585:53:0;;;;;:5:::1;::::0;:53;;;;;;;:5;;:53;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;29649:16:0::1;::::0;;29722:5;29649:211:::1;::::0;;;;;:16:::1;29722:5:::0;;::::1;29649:211;::::0;::::1;::::0;;;;;;;;;;;;;;;;;;;:16:::1;:211:::0;;;;29846:3:::1;29649:211:::0;;;;;;:16;;;::::1;::::0;-1:-1:-1;29649:32:0::1;::::0;-1:-1:-1;29689:9:0;;29649:211;;;;;::::1;::::0;;;;;;;;;29689:9;29649:16;:211;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;;;29121:747:0:o;25798:148::-;25378:12;:10;:12::i;:::-;25368:6;;:22;:6;;;:22;;;25360:67;;;;;-1:-1:-1;;;25360:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25905:1:::1;25889:6:::0;;25868:40:::1;::::0;::::1;25889:6:::0;;::::1;::::0;25868:40:::1;::::0;25905:1;;25868:40:::1;25936:1;25919:19:::0;;;::::1;::::0;;25798:148::o;27505:34::-;;;;:::o;30574:108::-;30650:24;;30574:108;:::o;27598:46::-;;;;:::o;30332:234::-;25378:12;:10;:12::i;:::-;25368:6;;:22;:6;;;:22;;;25360:67;;;;;-1:-1:-1;;;25360:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30457:12:::1;30450:29;;;30480:4;:10;;;:12;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;30480:12:0;30450:56:::1;::::0;;;::::1;::::0;;;;;;::::1;::::0;;::::1;;::::0;::::1;::::0;;;;;;;;;;;;;30480:12:::1;::::0;30450:56;;;;;;;-1:-1:-1;30450:56:0;;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;30522:36:0::1;::::0;;::::1;::::0;::::1;::::0;;30450:56:::1;30522:36:::0;::::1;::::0;;;;;::::1;::::0;;;;;;;;;::::1;30332:234:::0;;:::o;25156:79::-;25194:7;25221:6;;;25156:79;:::o;27651:39::-;;;;:::o;26101:281::-;25378:12;:10;:12::i;:::-;25368:6;;:22;:6;;;:22;;;25360:67;;;;;-1:-1:-1;;;25360:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26204:22:::1;::::0;::::1;26182:110;;;;-1:-1:-1::0;;;26182:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26329:6;::::0;;26308:38:::1;::::0;::::1;::::0;;::::1;::::0;26329:6;::::1;::::0;26308:38:::1;::::0;::::1;26357:6;:17:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;26101:281::o;27303:23::-;;;;;;:::o;27813:43::-;;;;;;;;;;;;;:::o;7831:181::-;7889:7;7921:5;;;7945:6;;;;7937:46;;;;;-1:-1:-1;;;7937:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8003:1;-1:-1:-1;7831:181:0;;;;;:::o;9195:471::-;9253:7;9498:6;9494:47;;-1:-1:-1;9528:1:0;9521:8;;9494:47;9565:5;;;9569:1;9565;:5;:1;9589:5;;;;;:10;9581:56;;;;-1:-1:-1;;;9581:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10134:132;10192:7;10219:39;10223:1;10226;10219:39;;;;;;;;;;;;;;;;;:3;:39::i;3652:106::-;3740:10;3652:106;:::o;10754:379::-;10874:7;10976:12;10969:5;10961:28;;;;-1:-1:-1;;;10961:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000:9;11016:1;11012;:5;;;;;;;10754:379;-1:-1:-1;;;;;10754:379:0:o
Swarm Source
ipfs://ac99ad109db41d25fcadd414a0378b5316e24f53347bf8d10e86b297d4382376
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Validator ID :
0 FTM
Amount Staked
0
Amount Delegated
0
Staking Total
0
Staking Start Epoch
0
Staking Start Time
0
Proof of Importance
0
Origination Score
0
Validation Score
0
Active
0
Online
0
Downtime
0 s
Address | Amount | claimed Rewards | Created On Epoch | Created On |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.