More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 41 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer Ownersh... | 11960559 | 1400 days ago | IN | 0 ETH | 0.00364159 | ||||
Seed | 11913590 | 1407 days ago | IN | 0 ETH | 0.0123306 | ||||
Seed | 11911820 | 1407 days ago | IN | 0 ETH | 0.01483788 | ||||
Claim LP | 11909919 | 1408 days ago | IN | 0 ETH | 0.01260586 | ||||
Claim LP | 11909905 | 1408 days ago | IN | 0 ETH | 0.00990021 | ||||
Claim LP | 11909494 | 1408 days ago | IN | 0 ETH | 0.01497713 | ||||
Claim LP | 11909160 | 1408 days ago | IN | 0 ETH | 0.014304 | ||||
Claim LP | 11909126 | 1408 days ago | IN | 0 ETH | 0.01606332 | ||||
Claim LP | 11908813 | 1408 days ago | IN | 0 ETH | 0.0172107 | ||||
Claim LP | 11908792 | 1408 days ago | IN | 0 ETH | 0.0137742 | ||||
Claim LP | 11908773 | 1408 days ago | IN | 0 ETH | 0.02143859 | ||||
Claim LP | 11908604 | 1408 days ago | IN | 0 ETH | 0.0257472 | ||||
Claim LP | 11908503 | 1408 days ago | IN | 0 ETH | 0.03167934 | ||||
Claim LP | 11907730 | 1408 days ago | IN | 0 ETH | 0.08016361 | ||||
Purchase LP | 11901720 | 1409 days ago | IN | 0.4 ETH | 0.04724068 | ||||
Purchase LP | 11891430 | 1410 days ago | IN | 1 ETH | 0.05488256 | ||||
Purchase LP | 11886880 | 1411 days ago | IN | 1 ETH | 0.04480918 | ||||
Purchase LP | 11870809 | 1414 days ago | IN | 0.8 ETH | 0.0498537 | ||||
Purchase LP | 11870782 | 1414 days ago | IN | 9 ETH | 0.05081847 | ||||
Purchase LP | 11865237 | 1414 days ago | IN | 0.3 ETH | 0.04515654 | ||||
Purchase LP | 11863764 | 1415 days ago | IN | 0.2 ETH | 0.04387125 | ||||
Purchase LP | 11862804 | 1415 days ago | IN | 1 ETH | 0.05018605 | ||||
Purchase LP | 11862351 | 1415 days ago | IN | 5 ETH | 0.07294518 | ||||
Purchase LP | 11862263 | 1415 days ago | IN | 3 ETH | 0.05251256 | ||||
Purchase LP | 11862259 | 1415 days ago | IN | 1 ETH | 0.04689333 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
11960628 | 1400 days ago | 1 ETH | ||||
11960628 | 1400 days ago | 1 ETH | ||||
11901720 | 1409 days ago | 0.08 ETH | ||||
11901720 | 1409 days ago | 0.32 ETH | ||||
11891430 | 1410 days ago | 0.2 ETH | ||||
11891430 | 1410 days ago | 0.8 ETH | ||||
11886880 | 1411 days ago | 0.2 ETH | ||||
11886880 | 1411 days ago | 0.8 ETH | ||||
11870809 | 1414 days ago | 0.16 ETH | ||||
11870809 | 1414 days ago | 0.64 ETH | ||||
11870782 | 1414 days ago | 1.8 ETH | ||||
11870782 | 1414 days ago | 7.2 ETH | ||||
11865237 | 1414 days ago | 0.06 ETH | ||||
11865237 | 1414 days ago | 0.24 ETH | ||||
11863764 | 1415 days ago | 0.04 ETH | ||||
11863764 | 1415 days ago | 0.16 ETH | ||||
11862804 | 1415 days ago | 0.2 ETH | ||||
11862804 | 1415 days ago | 0.8 ETH | ||||
11862351 | 1415 days ago | 1 ETH | ||||
11862351 | 1415 days ago | 4 ETH | ||||
11862263 | 1415 days ago | 0.6 ETH | ||||
11862263 | 1415 days ago | 2.4 ETH | ||||
11862259 | 1415 days ago | 0.2 ETH | ||||
11862259 | 1415 days ago | 0.8 ETH | ||||
11862252 | 1415 days ago | 0.8 ETH |
Loading...
Loading
Contract Name:
LiquidVault
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "@openzeppelin/contracts/access/Ownable.sol"; import "./facades/HardCoreLike.sol"; import "./facades/FeeDistributorLike.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IWETH.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol"; import './PriceOracle.sol'; contract LiquidVault is Ownable { event EthereumDeposited( address from, address to, uint256 amount, uint256 percentageAmount ); /* * A user can hold multiple locked LP batches. * Each batch takes 30 days to incubate */ event LPQueued( address holder, uint256 amount, uint256 eth, uint256 hardCore, uint256 timeStamp ); event LPClaimed( address holder, uint256 amount, uint256 timestamp, uint256 exitfee ); struct LPbatch { address holder; uint256 amount; uint256 timestamp; } struct liquidVaultConfig { address hardCore; IUniswapV2Router02 uniswapRouter; IUniswapV2Pair tokenPair; FeeDistributorLike feeDistributor; PriceOracle uniswapOracle; address weth; address payable ethReceiver; uint32 stakeDuration; uint8 donationShare; //0-100 uint8 purchaseFee; //0-100 } bool private locked; modifier lock { require(!locked, "HARDCORE: reentrancy violation"); locked = true; _; locked = false; } liquidVaultConfig public config; //Front end can loop through this and inspect if enough time has passed mapping(address => LPbatch[]) public LockedLP; mapping(address => uint256) public queueCounter; function seed( uint32 duration, address hcore, address feeDistributor, address payable ethReceiver, uint8 donationShare, // LP Token uint8 purchaseFee, // ETH PriceOracle uniswapOracle ) public onlyOwner { config.hardCore = hcore; config.uniswapRouter = IUniswapV2Router02( HardCoreLike(hcore).uniswapRouter() ); config.tokenPair = IUniswapV2Pair( HardCoreLike(hcore).tokenUniswapPair() ); config.feeDistributor = FeeDistributorLike(feeDistributor); config.weth = config.uniswapRouter.WETH(); config.uniswapOracle = uniswapOracle; setEthFeeAddress(ethReceiver); setParameters(duration, donationShare, purchaseFee); } function setOracleAddress(PriceOracle _uniswapOracle) external onlyOwner { require(address(_uniswapOracle) != address(0), 'Zero address not allowed'); config.uniswapOracle = _uniswapOracle; } function setEthFeeAddress(address payable ethReceiver) public onlyOwner { require( ethReceiver != address(0), "LiquidVault: eth receiver is zero address" ); config.ethReceiver = ethReceiver; } function setParameters(uint32 duration, uint8 donationShare, uint8 purchaseFee) public onlyOwner { require( donationShare <= 100, "HardCore: donation share % between 0 and 100" ); require( purchaseFee <= 100, "HardCore: purchase fee share % between 0 and 100" ); config.stakeDuration = duration * 1 days; config.donationShare = donationShare; config.purchaseFee = purchaseFee; } function purchaseLPFor(address beneficiary) public payable lock { config.feeDistributor.distributeFees(); require(msg.value > 0, "HARDCORE: eth required to mint Hardcore LP"); uint256 feeValue = config.purchaseFee * msg.value / 100; uint256 exchangeValue = msg.value - feeValue; (uint256 reserve1, uint256 reserve2, ) = config.tokenPair.getReserves(); uint256 hardCoreRequired; if (address(config.hardCore) < address(config.weth)) { hardCoreRequired = config.uniswapRouter.quote( exchangeValue, reserve2, reserve1 ); } else { hardCoreRequired = config.uniswapRouter.quote( exchangeValue, reserve1, reserve2 ); } uint256 balance = HardCoreLike(config.hardCore).balanceOf(address(this)); require( balance >= hardCoreRequired, "HARDCORE: insufficient HardCore in LiquidVault" ); IWETH(config.weth).deposit{ value: exchangeValue }(); address tokenPairAddress = address(config.tokenPair); IWETH(config.weth).transfer(tokenPairAddress, exchangeValue); HardCoreLike(config.hardCore).transfer( tokenPairAddress, hardCoreRequired ); config.ethReceiver.transfer(feeValue); config.uniswapOracle.update(); uint256 liquidityCreated = config.tokenPair.mint(address(this)); LockedLP[beneficiary].push( LPbatch({ holder: beneficiary, amount: liquidityCreated, timestamp: block.timestamp }) ); emit LPQueued( beneficiary, liquidityCreated, exchangeValue, hardCoreRequired, block.timestamp ); emit EthereumDeposited(msg.sender, config.ethReceiver, exchangeValue, feeValue); } //send eth to match with HCORE tokens in LiquidVault function purchaseLP() public payable { purchaseLPFor(msg.sender); } //pops latest LP if older than period function claimLP() public { uint256 length = LockedLP[msg.sender].length; require(length > 0, "HARDCORE: No locked LP."); uint256 oldest = queueCounter[msg.sender]; LPbatch memory batch = LockedLP[msg.sender][oldest]; require( block.timestamp - batch.timestamp > config.stakeDuration, "HARDCORE: LP still locked." ); oldest = LockedLP[msg.sender].length - 1 == oldest ? oldest : oldest + 1; queueCounter[msg.sender] = oldest; uint256 donation = (config.donationShare * batch.amount) / 100; emit LPClaimed(msg.sender, batch.amount, block.timestamp, donation); require( config.tokenPair.transfer(address(0), donation), "HardCore: donation transfer failed in LP claim." ); require( config.tokenPair.transfer(batch.holder, batch.amount - donation), "HardCore: transfer failed in LP claim." ); } function lockedLPLength(address holder) public view returns (uint256) { return LockedLP[holder].length; } function getLockedLP(address holder, uint256 position) public view returns ( address, uint256, uint256 ) { LPbatch memory batch = LockedLP[holder][position]; return (batch.holder, batch.amount, batch.timestamp); } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol'; import '@uniswap/lib/contracts/libraries/FixedPoint.sol'; import '@uniswap/v2-periphery/contracts/libraries/UniswapV2OracleLibrary.sol'; import "./facades/ERC20Like.sol"; contract PriceOracle { using FixedPoint for *; IUniswapV2Pair public immutable pair; uint public immutable multiplier; uint private priceLast; uint public priceCumulativeLast; uint32 public blockTimestampLast; address public tokenA; address public tokenB; address public token0; constructor(IUniswapV2Pair _pair, address _tokenA, address _tokenB) public { pair = _pair; tokenA = _tokenA; tokenB = _tokenB; multiplier = uint(10)**(ERC20Like(_pair.token1()).decimals()); (token0, ) = _tokenA < _tokenB ? (_tokenA, _tokenB) : (_tokenB, _tokenA); if(token0 == _tokenA) { priceCumulativeLast = _pair.price0CumulativeLast(); } else { priceCumulativeLast = _pair.price1CumulativeLast(); } } function update() public returns(uint) { uint112 reserve0; uint112 reserve1; (reserve0, reserve1, blockTimestampLast) = pair.getReserves(); require(reserve0 != 0 && reserve1 != 0, 'PriceOracle: NO_RESERVES'); uint _priceCumulative; (uint _price0Cumulative, uint _price1Cumulative, uint32 _blockTimestamp) = UniswapV2OracleLibrary.currentCumulativePrices(address(pair)); if(token0 == tokenA) { _priceCumulative = _price0Cumulative; } else { _priceCumulative = _price1Cumulative; } uint _priceCumulativeLast = priceCumulativeLast; uint _blockTimestampLast = blockTimestampLast; uint _price; if (_blockTimestamp != _blockTimestampLast) { _price = FixedPoint.uq112x112(uint224((_priceCumulative - _priceCumulativeLast) / (_blockTimestamp - _blockTimestampLast))).mul(multiplier).decode144(); priceLast = _price; priceCumulativeLast = _priceCumulative; blockTimestampLast = _blockTimestamp; } else { _price = priceLast; } return _price; } // note this will always return 0 before update has been called successfully for the first time. function consult() external view returns (uint) { uint _priceCumulative; (uint _price0Cumulative, uint _price1Cumulative, uint32 _blockTimestamp) = UniswapV2OracleLibrary.currentCumulativePrices(address(pair)); if(token0 == tokenA) { _priceCumulative = _price0Cumulative; } else { _priceCumulative = _price1Cumulative; } uint _priceCumulativeLast = priceCumulativeLast; uint _blockTimestampLast = blockTimestampLast; // most recent price is already calculated. if (_blockTimestamp == _blockTimestampLast) { return priceLast; } return FixedPoint.uq112x112(uint224((_priceCumulative - _priceCumulativeLast) / (_blockTimestamp - _blockTimestampLast))).mul(multiplier).decode144(); } function updateAndConsult() external returns (uint) { return update(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.1; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; abstract contract ERC20Like is IERC20 { function totalSupply() external view virtual override returns (uint256); function balanceOf(address account) external view virtual override returns (uint256); function transfer(address recipient, uint256 amount) external virtual override returns (bool); function allowance(address owner, address spender) external view virtual override returns (uint256); function approve(address spender, uint256 amount) external virtual override returns (bool); function transferFrom( address sender, address recipient, uint256 amount ) external virtual override returns (bool); function name() public view virtual returns (string memory); function symbol() public view virtual returns (string memory); function decimals() public view virtual returns (uint8); function burn(uint256 value) public virtual; }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.12; abstract contract FeeDistributorLike { function distributeFees() public virtual; }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.1; import "./ERC20Like.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; abstract contract HardCoreLike is ERC20Like { function uniswapRouter() public virtual returns (IUniswapV2Router02); function tokenUniswapPair() public virtual returns (address); }
// SPDX-License-Identifier: MIT 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. */ 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "../GSN/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 () 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; } }
// SPDX-License-Identifier: MIT 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); }
pragma solidity >=0.4.0; // a library for handling binary fixed point numbers (https://en.wikipedia.org/wiki/Q_(number_format)) library FixedPoint { // range: [0, 2**112 - 1] // resolution: 1 / 2**112 struct uq112x112 { uint224 _x; } // range: [0, 2**144 - 1] // resolution: 1 / 2**112 struct uq144x112 { uint _x; } uint8 private constant RESOLUTION = 112; // encode a uint112 as a UQ112x112 function encode(uint112 x) internal pure returns (uq112x112 memory) { return uq112x112(uint224(x) << RESOLUTION); } // encodes a uint144 as a UQ144x112 function encode144(uint144 x) internal pure returns (uq144x112 memory) { return uq144x112(uint256(x) << RESOLUTION); } // divide a UQ112x112 by a uint112, returning a UQ112x112 function div(uq112x112 memory self, uint112 x) internal pure returns (uq112x112 memory) { require(x != 0, 'FixedPoint: DIV_BY_ZERO'); return uq112x112(self._x / uint224(x)); } // multiply a UQ112x112 by a uint, returning a UQ144x112 // reverts on overflow function mul(uq112x112 memory self, uint y) internal pure returns (uq144x112 memory) { uint z; require(y == 0 || (z = uint(self._x) * y) / y == uint(self._x), "FixedPoint: MULTIPLICATION_OVERFLOW"); return uq144x112(z); } // returns a UQ112x112 which represents the ratio of the numerator to the denominator // equivalent to encode(numerator).div(denominator) function fraction(uint112 numerator, uint112 denominator) internal pure returns (uq112x112 memory) { require(denominator > 0, "FixedPoint: DIV_BY_ZERO"); return uq112x112((uint224(numerator) << RESOLUTION) / denominator); } // decode a UQ112x112 into a uint112 by truncating after the radix point function decode(uq112x112 memory self) internal pure returns (uint112) { return uint112(self._x >> RESOLUTION); } // decode a UQ144x112 into a uint144 by truncating after the radix point function decode144(uq144x112 memory self) internal pure returns (uint144) { return uint144(self._x >> RESOLUTION); } }
pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
pragma solidity >=0.5.0; interface IWETH { function deposit() external payable; function transfer(address to, uint value) external returns (bool); function withdraw(uint) external; }
pragma solidity >=0.5.0; import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol'; import '@uniswap/lib/contracts/libraries/FixedPoint.sol'; // library with helper methods for oracles that are concerned with computing average prices library UniswapV2OracleLibrary { using FixedPoint for *; // helper function that returns the current block timestamp within the range of uint32, i.e. [0, 2**32 - 1] function currentBlockTimestamp() internal view returns (uint32) { return uint32(block.timestamp % 2 ** 32); } // produces the cumulative price using counterfactuals to save gas and avoid a call to sync. function currentCumulativePrices( address pair ) internal view returns (uint price0Cumulative, uint price1Cumulative, uint32 blockTimestamp) { blockTimestamp = currentBlockTimestamp(); price0Cumulative = IUniswapV2Pair(pair).price0CumulativeLast(); price1Cumulative = IUniswapV2Pair(pair).price1CumulativeLast(); // if time has elapsed since the last update on the pair, mock the accumulated price values (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast) = IUniswapV2Pair(pair).getReserves(); if (blockTimestampLast != blockTimestamp) { // subtraction overflow is desired uint32 timeElapsed = blockTimestamp - blockTimestampLast; // addition overflow is desired // counterfactual price0Cumulative += uint(FixedPoint.fraction(reserve1, reserve0)._x) * timeElapsed; // counterfactual price1Cumulative += uint(FixedPoint.fraction(reserve0, reserve1)._x) * timeElapsed; } } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "istanbul", "libraries": { "": {} }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"percentageAmount","type":"uint256"}],"name":"EthereumDeposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"holder","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"exitfee","type":"uint256"}],"name":"LPClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"holder","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"eth","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"hardCore","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timeStamp","type":"uint256"}],"name":"LPQueued","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"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"LockedLP","outputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"config","outputs":[{"internalType":"address","name":"hardCore","type":"address"},{"internalType":"contract IUniswapV2Router02","name":"uniswapRouter","type":"address"},{"internalType":"contract IUniswapV2Pair","name":"tokenPair","type":"address"},{"internalType":"contract FeeDistributorLike","name":"feeDistributor","type":"address"},{"internalType":"contract PriceOracle","name":"uniswapOracle","type":"address"},{"internalType":"address","name":"weth","type":"address"},{"internalType":"address payable","name":"ethReceiver","type":"address"},{"internalType":"uint32","name":"stakeDuration","type":"uint32"},{"internalType":"uint8","name":"donationShare","type":"uint8"},{"internalType":"uint8","name":"purchaseFee","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"uint256","name":"position","type":"uint256"}],"name":"getLockedLP","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"}],"name":"lockedLPLength","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":"purchaseLP","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"}],"name":"purchaseLPFor","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"queueCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"duration","type":"uint32"},{"internalType":"address","name":"hcore","type":"address"},{"internalType":"address","name":"feeDistributor","type":"address"},{"internalType":"address payable","name":"ethReceiver","type":"address"},{"internalType":"uint8","name":"donationShare","type":"uint8"},{"internalType":"uint8","name":"purchaseFee","type":"uint8"},{"internalType":"contract PriceOracle","name":"uniswapOracle","type":"address"}],"name":"seed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"ethReceiver","type":"address"}],"name":"setEthFeeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract PriceOracle","name":"_uniswapOracle","type":"address"}],"name":"setOracleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"duration","type":"uint32"},{"internalType":"uint8","name":"donationShare","type":"uint8"},{"internalType":"uint8","name":"purchaseFee","type":"uint8"}],"name":"setParameters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50600061001b61006a565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35061006e565b3390565b6118fd8061007d6000396000f3fe6080604052600436106100e85760003560e01c806387c9082d1161008a578063bd901bdd11610059578063bd901bdd146103aa578063de44391a146103d0578063e1954443146103e5578063f2fde38b1461041e576100e8565b806387c9082d146102ce5780638da5cb5b14610313578063a5ef340e14610344578063b4a9710114610377576100e8565b8063715018a6116100c6578063715018a6146101c457806374d6588b146101d957806379502c55146101e157806386a29c6a14610264576100e8565b80631a5a3794146100ed5780631ebaaf66146101305780634c69c00f14610191575b600080fd5b3480156100f957600080fd5b5061012e6004803603606081101561011057600080fd5b5063ffffffff8135169060ff60208201358116916040013516610451565b005b34801561013c57600080fd5b506101696004803603604081101561015357600080fd5b506001600160a01b038135169060200135610581565b604080516001600160a01b039094168452602084019290925282820152519081900360600190f35b34801561019d57600080fd5b5061012e600480360360208110156101b457600080fd5b50356001600160a01b0316610603565b3480156101d057600080fd5b5061012e6106d8565b61012e61077a565b3480156101ed57600080fd5b506101f6610785565b604080516001600160a01b039b8c168152998b1660208b0152978a16898901529589166060890152938816608088015291871660a087015290951660c085015263ffffffff90941660e084015260ff9384166101008401529092166101208201529051908190036101400190f35b34801561027057600080fd5b5061012e600480360360e081101561028757600080fd5b5063ffffffff813516906001600160a01b0360208201358116916040810135821691606082013581169160ff608082013581169260a08301359091169160c00135166107e2565b3480156102da57600080fd5b50610301600480360360208110156102f157600080fd5b50356001600160a01b0316610a20565b60408051918252519081900360200190f35b34801561031f57600080fd5b50610328610a3b565b604080516001600160a01b039092168252519081900360200190f35b34801561035057600080fd5b5061012e6004803603602081101561036757600080fd5b50356001600160a01b0316610a4a565b34801561038357600080fd5b506103016004803603602081101561039a57600080fd5b50356001600160a01b0316610b09565b61012e600480360360208110156103c057600080fd5b50356001600160a01b0316610b1b565b3480156103dc57600080fd5b5061012e61127f565b3480156103f157600080fd5b506101696004803603604081101561040857600080fd5b506001600160a01b0381351690602001356115e0565b34801561042a57600080fd5b5061012e6004803603602081101561044157600080fd5b50356001600160a01b0316611629565b610459611721565b6000546001600160a01b039081169116146104a9576040805162461bcd60e51b815260206004820181905260248201526000805160206117fe833981519152604482015290519081900360640190fd5b60648260ff1611156104ec5760405162461bcd60e51b815260040180806020018281038252602c81526020018061189c602c913960400191505060405180910390fd5b60648160ff16111561052f5760405162461bcd60e51b81526004018080602001828103825260308152602001806117ce6030913960400191505060405180910390fd5b6007805463ffffffff60a01b1916600160a01b620151809590950263ffffffff16949094029390931760ff60c01b1916600160c01b60ff938416021760ff60c81b1916600160c81b9190921602179055565b600080600061058e611725565b6001600160a01b03861660009081526008602052604090208054869081106105b257fe5b60009182526020918290206040805160608101825260039390930290910180546001600160a01b03168084526001820154948401859052600290910154929091018290529891975095509350505050565b61060b611721565b6000546001600160a01b0390811691161461065b576040805162461bcd60e51b815260206004820181905260248201526000805160206117fe833981519152604482015290519081900360640190fd5b6001600160a01b0381166106b6576040805162461bcd60e51b815260206004820152601860248201527f5a65726f2061646472657373206e6f7420616c6c6f7765640000000000000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6106e0611721565b6000546001600160a01b03908116911614610730576040805162461bcd60e51b815260206004820181905260248201526000805160206117fe833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61078333610b1b565b565b6001546002546003546004546005546006546007546001600160a01b0396871696958616959485169493841693928316929182169181169063ffffffff600160a01b8204169060ff600160c01b8204811691600160c81b9004168a565b6107ea611721565b6000546001600160a01b0390811691161461083a576040805162461bcd60e51b815260206004820181905260248201526000805160206117fe833981519152604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0388169081179091556040805163735de9f760e01b8152905163735de9f7916004808201926020929091908290030181600087803b15801561089057600080fd5b505af11580156108a4573d6000803e3d6000fd5b505050506040513d60208110156108ba57600080fd5b5051600280546001600160a01b0319166001600160a01b0392831617905560408051634d33245760e01b8152905191881691634d332457916004808201926020929091908290030181600087803b15801561091457600080fd5b505af1158015610928573d6000803e3d6000fd5b505050506040513d602081101561093e57600080fd5b5051600380546001600160a01b03199081166001600160a01b039384161790915560048054909116878316178155600254604080516315ab88c960e31b81529051919093169263ad5c46489281810192602092909190829003018186803b1580156109a857600080fd5b505afa1580156109bc573d6000803e3d6000fd5b505050506040513d60208110156109d257600080fd5b5051600680546001600160a01b03199081166001600160a01b039384161790915560058054909116918316919091179055610a0c84610a4a565b610a17878484610451565b50505050505050565b6001600160a01b031660009081526008602052604090205490565b6000546001600160a01b031690565b610a52611721565b6000546001600160a01b03908116911614610aa2576040805162461bcd60e51b815260206004820181905260248201526000805160206117fe833981519152604482015290519081900360640190fd5b6001600160a01b038116610ae75760405162461bcd60e51b81526004018080602001828103825260298152602001806117506029913960400191505060405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60096020526000908152604090205481565b600054600160a01b900460ff1615610b7a576040805162461bcd60e51b815260206004820152601e60248201527f48415244434f52453a207265656e7472616e63792076696f6c6174696f6e0000604482015290519081900360640190fd5b6000805460ff60a01b1916600160a01b17815560048054604080516305dabd6960e51b815290516001600160a01b039092169363bb57ad209382810193919282900301818387803b158015610bce57600080fd5b505af1158015610be2573d6000803e3d6000fd5b5050505060003411610c255760405162461bcd60e51b815260040180806020018281038252602a815260200180611844602a913960400191505060405180910390fd5b60075460035460408051630240bc6b60e21b81529051606434600160c81b90950460ff16850204938490039260009283926001600160a01b0390921691630902f1ac91600480820192606092909190829003018186803b158015610c8857600080fd5b505afa158015610c9c573d6000803e3d6000fd5b505050506040513d6060811015610cb257600080fd5b5080516020909101516006546001546dffffffffffffffffffffffffffff93841695509290911692506000916001600160a01b0391821691161015610d7e5760025460408051632b58577b60e21b815260048101879052602481018590526044810186905290516001600160a01b039092169163ad615dec91606480820192602092909190829003018186803b158015610d4b57600080fd5b505afa158015610d5f573d6000803e3d6000fd5b505050506040513d6020811015610d7557600080fd5b50519050610e07565b60025460408051632b58577b60e21b815260048101879052602481018690526044810185905290516001600160a01b039092169163ad615dec91606480820192602092909190829003018186803b158015610dd857600080fd5b505afa158015610dec573d6000803e3d6000fd5b505050506040513d6020811015610e0257600080fd5b505190505b600154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610e5257600080fd5b505afa158015610e66573d6000803e3d6000fd5b505050506040513d6020811015610e7c57600080fd5b5051905081811015610ebf5760405162461bcd60e51b815260040180806020018281038252602e81526020018061186e602e913960400191505060405180910390fd5b60065460408051630d0e30db60e41b815290516001600160a01b039092169163d0e30db0918891600480830192600092919082900301818588803b158015610f0657600080fd5b505af1158015610f1a573d6000803e3d6000fd5b50506003546006546040805163a9059cbb60e01b81526001600160a01b0393841660048201819052602482018d9052915191965092909116935063a9059cbb925060448083019260209291908290030181600087803b158015610f7c57600080fd5b505af1158015610f90573d6000803e3d6000fd5b505050506040513d6020811015610fa657600080fd5b50506001546040805163a9059cbb60e01b81526001600160a01b038481166004830152602482018790529151919092169163a9059cbb9160448083019260209291908290030181600087803b158015610ffe57600080fd5b505af1158015611012573d6000803e3d6000fd5b505050506040513d602081101561102857600080fd5b50506007546040516001600160a01b039091169088156108fc029089906000818181858888f19350505050158015611064573d6000803e3d6000fd5b506005546040805163a2e6204560e01b815290516001600160a01b039092169163a2e62045916004818101926020929091908290030181600087803b1580156110ac57600080fd5b505af11580156110c0573d6000803e3d6000fd5b505050506040513d60208110156110d657600080fd5b5050600354604080516335313c2160e11b815230600482015290516000926001600160a01b031691636a62784291602480830192602092919082900301818787803b15801561112457600080fd5b505af1158015611138573d6000803e3d6000fd5b505050506040513d602081101561114e57600080fd5b50516001600160a01b03808b16600081815260086020908152604080832081516060808201845286825281850189815242838601818152855460018181018855968a529888902094516003909902909401805498909a166001600160a01b031990981697909717895551928801929092555160029096019590955580519384529083018590528281018c9052928201889052608082015290519192507fe7660232e29d90e682443fb9547e347cb9bf2e0819d4b6c656ad7230d4f100e2919081900360a00190a1600754604080513381526001600160a01b039092166020830152818101899052606082018a9052517f0a7d9ed2ceb0001e5081179f11eb020316250491f9628d6033b4c453e690e5b59181900360800190a150506000805460ff60a01b1916905550505050505050565b33600090815260086020526040902054806112e1576040805162461bcd60e51b815260206004820152601760248201527f48415244434f52453a204e6f206c6f636b6564204c502e000000000000000000604482015290519081900360640190fd5b336000908152600960205260409020546112f9611725565b33600090815260086020526040902080548390811061131457fe5b600091825260209182902060408051606081018252600390930290910180546001600160a01b0316835260018101549383019390935260029092015491810182905260075490925063ffffffff600160a01b909104164291909103116113c1576040805162461bcd60e51b815260206004820152601a60248201527f48415244434f52453a204c50207374696c6c206c6f636b65642e000000000000604482015290519081900360640190fd5b336000908152600860205260409020546000190182146113e457816001016113e6565b815b3360008181526009602090815260409182902084905584810151600754835194855291840181905242848401526064600160c01b90920460ff160204606083018190529051929450917f210f4c0509ea4db77fea0d7a392c49e2d0aaac2389909bc72db566b3c3537c249181900360800190a16003546040805163a9059cbb60e01b81526000600482018190526024820185905291516001600160a01b039093169263a9059cbb92604480840193602093929083900390910190829087803b1580156114b157600080fd5b505af11580156114c5573d6000803e3d6000fd5b505050506040513d60208110156114db57600080fd5b50516115185760405162461bcd60e51b815260040180806020018281038252602f815260200180611779602f913960400191505060405180910390fd5b60035482516020808501516040805163a9059cbb60e01b81526001600160a01b03948516600482015291869003602483015251929093169263a9059cbb92604480830193928290030181600087803b15801561157357600080fd5b505af1158015611587573d6000803e3d6000fd5b505050506040513d602081101561159d57600080fd5b50516115da5760405162461bcd60e51b815260040180806020018281038252602681526020018061181e6026913960400191505060405180910390fd5b50505050565b600860205281600052604060002081815481106115f957fe5b60009182526020909120600390910201805460018201546002909201546001600160a01b03909116935090915083565b611631611721565b6000546001600160a01b03908116911614611681576040805162461bcd60e51b815260206004820181905260248201526000805160206117fe833981519152604482015290519081900360640190fd5b6001600160a01b0381166116c65760405162461bcd60e51b81526004018080602001828103825260268152602001806117a86026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b604051806060016040528060006001600160a01b031681526020016000815260200160008152509056fe4c69717569645661756c743a20657468207265636569766572206973207a65726f206164647265737348617264436f72653a20646f6e6174696f6e207472616e73666572206661696c656420696e204c5020636c61696d2e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737348617264436f72653a207075726368617365206665652073686172652025206265747765656e203020616e64203130304f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657248617264436f72653a207472616e73666572206661696c656420696e204c5020636c61696d2e48415244434f52453a2065746820726571756972656420746f206d696e742048617264636f7265204c5048415244434f52453a20696e73756666696369656e742048617264436f726520696e204c69717569645661756c7448617264436f72653a20646f6e6174696f6e2073686172652025206265747765656e203020616e6420313030a26469706673582212203ad2974f030b82accd477fcc6564b508963ad31212d614b46d99033d9ed95c9a64736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106100e85760003560e01c806387c9082d1161008a578063bd901bdd11610059578063bd901bdd146103aa578063de44391a146103d0578063e1954443146103e5578063f2fde38b1461041e576100e8565b806387c9082d146102ce5780638da5cb5b14610313578063a5ef340e14610344578063b4a9710114610377576100e8565b8063715018a6116100c6578063715018a6146101c457806374d6588b146101d957806379502c55146101e157806386a29c6a14610264576100e8565b80631a5a3794146100ed5780631ebaaf66146101305780634c69c00f14610191575b600080fd5b3480156100f957600080fd5b5061012e6004803603606081101561011057600080fd5b5063ffffffff8135169060ff60208201358116916040013516610451565b005b34801561013c57600080fd5b506101696004803603604081101561015357600080fd5b506001600160a01b038135169060200135610581565b604080516001600160a01b039094168452602084019290925282820152519081900360600190f35b34801561019d57600080fd5b5061012e600480360360208110156101b457600080fd5b50356001600160a01b0316610603565b3480156101d057600080fd5b5061012e6106d8565b61012e61077a565b3480156101ed57600080fd5b506101f6610785565b604080516001600160a01b039b8c168152998b1660208b0152978a16898901529589166060890152938816608088015291871660a087015290951660c085015263ffffffff90941660e084015260ff9384166101008401529092166101208201529051908190036101400190f35b34801561027057600080fd5b5061012e600480360360e081101561028757600080fd5b5063ffffffff813516906001600160a01b0360208201358116916040810135821691606082013581169160ff608082013581169260a08301359091169160c00135166107e2565b3480156102da57600080fd5b50610301600480360360208110156102f157600080fd5b50356001600160a01b0316610a20565b60408051918252519081900360200190f35b34801561031f57600080fd5b50610328610a3b565b604080516001600160a01b039092168252519081900360200190f35b34801561035057600080fd5b5061012e6004803603602081101561036757600080fd5b50356001600160a01b0316610a4a565b34801561038357600080fd5b506103016004803603602081101561039a57600080fd5b50356001600160a01b0316610b09565b61012e600480360360208110156103c057600080fd5b50356001600160a01b0316610b1b565b3480156103dc57600080fd5b5061012e61127f565b3480156103f157600080fd5b506101696004803603604081101561040857600080fd5b506001600160a01b0381351690602001356115e0565b34801561042a57600080fd5b5061012e6004803603602081101561044157600080fd5b50356001600160a01b0316611629565b610459611721565b6000546001600160a01b039081169116146104a9576040805162461bcd60e51b815260206004820181905260248201526000805160206117fe833981519152604482015290519081900360640190fd5b60648260ff1611156104ec5760405162461bcd60e51b815260040180806020018281038252602c81526020018061189c602c913960400191505060405180910390fd5b60648160ff16111561052f5760405162461bcd60e51b81526004018080602001828103825260308152602001806117ce6030913960400191505060405180910390fd5b6007805463ffffffff60a01b1916600160a01b620151809590950263ffffffff16949094029390931760ff60c01b1916600160c01b60ff938416021760ff60c81b1916600160c81b9190921602179055565b600080600061058e611725565b6001600160a01b03861660009081526008602052604090208054869081106105b257fe5b60009182526020918290206040805160608101825260039390930290910180546001600160a01b03168084526001820154948401859052600290910154929091018290529891975095509350505050565b61060b611721565b6000546001600160a01b0390811691161461065b576040805162461bcd60e51b815260206004820181905260248201526000805160206117fe833981519152604482015290519081900360640190fd5b6001600160a01b0381166106b6576040805162461bcd60e51b815260206004820152601860248201527f5a65726f2061646472657373206e6f7420616c6c6f7765640000000000000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6106e0611721565b6000546001600160a01b03908116911614610730576040805162461bcd60e51b815260206004820181905260248201526000805160206117fe833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61078333610b1b565b565b6001546002546003546004546005546006546007546001600160a01b0396871696958616959485169493841693928316929182169181169063ffffffff600160a01b8204169060ff600160c01b8204811691600160c81b9004168a565b6107ea611721565b6000546001600160a01b0390811691161461083a576040805162461bcd60e51b815260206004820181905260248201526000805160206117fe833981519152604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0388169081179091556040805163735de9f760e01b8152905163735de9f7916004808201926020929091908290030181600087803b15801561089057600080fd5b505af11580156108a4573d6000803e3d6000fd5b505050506040513d60208110156108ba57600080fd5b5051600280546001600160a01b0319166001600160a01b0392831617905560408051634d33245760e01b8152905191881691634d332457916004808201926020929091908290030181600087803b15801561091457600080fd5b505af1158015610928573d6000803e3d6000fd5b505050506040513d602081101561093e57600080fd5b5051600380546001600160a01b03199081166001600160a01b039384161790915560048054909116878316178155600254604080516315ab88c960e31b81529051919093169263ad5c46489281810192602092909190829003018186803b1580156109a857600080fd5b505afa1580156109bc573d6000803e3d6000fd5b505050506040513d60208110156109d257600080fd5b5051600680546001600160a01b03199081166001600160a01b039384161790915560058054909116918316919091179055610a0c84610a4a565b610a17878484610451565b50505050505050565b6001600160a01b031660009081526008602052604090205490565b6000546001600160a01b031690565b610a52611721565b6000546001600160a01b03908116911614610aa2576040805162461bcd60e51b815260206004820181905260248201526000805160206117fe833981519152604482015290519081900360640190fd5b6001600160a01b038116610ae75760405162461bcd60e51b81526004018080602001828103825260298152602001806117506029913960400191505060405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60096020526000908152604090205481565b600054600160a01b900460ff1615610b7a576040805162461bcd60e51b815260206004820152601e60248201527f48415244434f52453a207265656e7472616e63792076696f6c6174696f6e0000604482015290519081900360640190fd5b6000805460ff60a01b1916600160a01b17815560048054604080516305dabd6960e51b815290516001600160a01b039092169363bb57ad209382810193919282900301818387803b158015610bce57600080fd5b505af1158015610be2573d6000803e3d6000fd5b5050505060003411610c255760405162461bcd60e51b815260040180806020018281038252602a815260200180611844602a913960400191505060405180910390fd5b60075460035460408051630240bc6b60e21b81529051606434600160c81b90950460ff16850204938490039260009283926001600160a01b0390921691630902f1ac91600480820192606092909190829003018186803b158015610c8857600080fd5b505afa158015610c9c573d6000803e3d6000fd5b505050506040513d6060811015610cb257600080fd5b5080516020909101516006546001546dffffffffffffffffffffffffffff93841695509290911692506000916001600160a01b0391821691161015610d7e5760025460408051632b58577b60e21b815260048101879052602481018590526044810186905290516001600160a01b039092169163ad615dec91606480820192602092909190829003018186803b158015610d4b57600080fd5b505afa158015610d5f573d6000803e3d6000fd5b505050506040513d6020811015610d7557600080fd5b50519050610e07565b60025460408051632b58577b60e21b815260048101879052602481018690526044810185905290516001600160a01b039092169163ad615dec91606480820192602092909190829003018186803b158015610dd857600080fd5b505afa158015610dec573d6000803e3d6000fd5b505050506040513d6020811015610e0257600080fd5b505190505b600154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610e5257600080fd5b505afa158015610e66573d6000803e3d6000fd5b505050506040513d6020811015610e7c57600080fd5b5051905081811015610ebf5760405162461bcd60e51b815260040180806020018281038252602e81526020018061186e602e913960400191505060405180910390fd5b60065460408051630d0e30db60e41b815290516001600160a01b039092169163d0e30db0918891600480830192600092919082900301818588803b158015610f0657600080fd5b505af1158015610f1a573d6000803e3d6000fd5b50506003546006546040805163a9059cbb60e01b81526001600160a01b0393841660048201819052602482018d9052915191965092909116935063a9059cbb925060448083019260209291908290030181600087803b158015610f7c57600080fd5b505af1158015610f90573d6000803e3d6000fd5b505050506040513d6020811015610fa657600080fd5b50506001546040805163a9059cbb60e01b81526001600160a01b038481166004830152602482018790529151919092169163a9059cbb9160448083019260209291908290030181600087803b158015610ffe57600080fd5b505af1158015611012573d6000803e3d6000fd5b505050506040513d602081101561102857600080fd5b50506007546040516001600160a01b039091169088156108fc029089906000818181858888f19350505050158015611064573d6000803e3d6000fd5b506005546040805163a2e6204560e01b815290516001600160a01b039092169163a2e62045916004818101926020929091908290030181600087803b1580156110ac57600080fd5b505af11580156110c0573d6000803e3d6000fd5b505050506040513d60208110156110d657600080fd5b5050600354604080516335313c2160e11b815230600482015290516000926001600160a01b031691636a62784291602480830192602092919082900301818787803b15801561112457600080fd5b505af1158015611138573d6000803e3d6000fd5b505050506040513d602081101561114e57600080fd5b50516001600160a01b03808b16600081815260086020908152604080832081516060808201845286825281850189815242838601818152855460018181018855968a529888902094516003909902909401805498909a166001600160a01b031990981697909717895551928801929092555160029096019590955580519384529083018590528281018c9052928201889052608082015290519192507fe7660232e29d90e682443fb9547e347cb9bf2e0819d4b6c656ad7230d4f100e2919081900360a00190a1600754604080513381526001600160a01b039092166020830152818101899052606082018a9052517f0a7d9ed2ceb0001e5081179f11eb020316250491f9628d6033b4c453e690e5b59181900360800190a150506000805460ff60a01b1916905550505050505050565b33600090815260086020526040902054806112e1576040805162461bcd60e51b815260206004820152601760248201527f48415244434f52453a204e6f206c6f636b6564204c502e000000000000000000604482015290519081900360640190fd5b336000908152600960205260409020546112f9611725565b33600090815260086020526040902080548390811061131457fe5b600091825260209182902060408051606081018252600390930290910180546001600160a01b0316835260018101549383019390935260029092015491810182905260075490925063ffffffff600160a01b909104164291909103116113c1576040805162461bcd60e51b815260206004820152601a60248201527f48415244434f52453a204c50207374696c6c206c6f636b65642e000000000000604482015290519081900360640190fd5b336000908152600860205260409020546000190182146113e457816001016113e6565b815b3360008181526009602090815260409182902084905584810151600754835194855291840181905242848401526064600160c01b90920460ff160204606083018190529051929450917f210f4c0509ea4db77fea0d7a392c49e2d0aaac2389909bc72db566b3c3537c249181900360800190a16003546040805163a9059cbb60e01b81526000600482018190526024820185905291516001600160a01b039093169263a9059cbb92604480840193602093929083900390910190829087803b1580156114b157600080fd5b505af11580156114c5573d6000803e3d6000fd5b505050506040513d60208110156114db57600080fd5b50516115185760405162461bcd60e51b815260040180806020018281038252602f815260200180611779602f913960400191505060405180910390fd5b60035482516020808501516040805163a9059cbb60e01b81526001600160a01b03948516600482015291869003602483015251929093169263a9059cbb92604480830193928290030181600087803b15801561157357600080fd5b505af1158015611587573d6000803e3d6000fd5b505050506040513d602081101561159d57600080fd5b50516115da5760405162461bcd60e51b815260040180806020018281038252602681526020018061181e6026913960400191505060405180910390fd5b50505050565b600860205281600052604060002081815481106115f957fe5b60009182526020909120600390910201805460018201546002909201546001600160a01b03909116935090915083565b611631611721565b6000546001600160a01b03908116911614611681576040805162461bcd60e51b815260206004820181905260248201526000805160206117fe833981519152604482015290519081900360640190fd5b6001600160a01b0381166116c65760405162461bcd60e51b81526004018080602001828103825260268152602001806117a86026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b604051806060016040528060006001600160a01b031681526020016000815260200160008152509056fe4c69717569645661756c743a20657468207265636569766572206973207a65726f206164647265737348617264436f72653a20646f6e6174696f6e207472616e73666572206661696c656420696e204c5020636c61696d2e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737348617264436f72653a207075726368617365206665652073686172652025206265747765656e203020616e64203130304f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657248617264436f72653a207472616e73666572206661696c656420696e204c5020636c61696d2e48415244434f52453a2065746820726571756972656420746f206d696e742048617264636f7265204c5048415244434f52453a20696e73756666696369656e742048617264436f726520696e204c69717569645661756c7448617264436f72653a20646f6e6174696f6e2073686172652025206265747765656e203020616e6420313030a26469706673582212203ad2974f030b82accd477fcc6564b508963ad31212d614b46d99033d9ed95c9a64736f6c634300060c0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.621816 | 15,349.6184 | $9,544.64 |
Loading...
Loading
[ 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.