Source Code
Latest 25 from a total of 701 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Claim Rewards | 13055659 | 1653 days ago | IN | 0 ETH | 0.00429989 | ||||
| Withdraw | 11839934 | 1841 days ago | IN | 0 ETH | 0.00913658 | ||||
| Claim Rewards | 11839912 | 1841 days ago | IN | 0 ETH | 0.01052387 | ||||
| Withdraw | 11802075 | 1847 days ago | IN | 0 ETH | 0.01174703 | ||||
| Withdraw | 11779543 | 1850 days ago | IN | 0 ETH | 0.01483818 | ||||
| Claim Rewards | 11777182 | 1851 days ago | IN | 0 ETH | 0.00487056 | ||||
| Claim Rewards | 11777100 | 1851 days ago | IN | 0 ETH | 0.00561769 | ||||
| Withdraw | 11777100 | 1851 days ago | IN | 0 ETH | 0.01756495 | ||||
| Transfer | 11768597 | 1852 days ago | IN | 0.1 ETH | 0.0021045 | ||||
| Transfer | 11768527 | 1852 days ago | IN | 0.05 ETH | 0.00153148 | ||||
| Claim Rewards | 11737372 | 1857 days ago | IN | 0 ETH | 0.00269535 | ||||
| Withdraw | 11737371 | 1857 days ago | IN | 0 ETH | 0.00692037 | ||||
| Claim Rewards | 11737354 | 1857 days ago | IN | 0 ETH | 0.00264807 | ||||
| Withdraw | 11737354 | 1857 days ago | IN | 0 ETH | 0.00679963 | ||||
| Claim Rewards | 11732043 | 1858 days ago | IN | 0 ETH | 0.00449787 | ||||
| Withdraw | 11732023 | 1858 days ago | IN | 0 ETH | 0.01459587 | ||||
| Withdraw | 11730268 | 1858 days ago | IN | 0 ETH | 0.00763146 | ||||
| Claim Rewards | 11730268 | 1858 days ago | IN | 0 ETH | 0.0065848 | ||||
| Claim Rewards | 11724856 | 1859 days ago | IN | 0 ETH | 0.0032628 | ||||
| Withdraw | 11724853 | 1859 days ago | IN | 0 ETH | 0.01135755 | ||||
| Withdraw | 11724667 | 1859 days ago | IN | 0 ETH | 0.00632063 | ||||
| Withdraw | 11724647 | 1859 days ago | IN | 0 ETH | 0.00742974 | ||||
| Claim Rewards | 11724624 | 1859 days ago | IN | 0 ETH | 0.00509519 | ||||
| Withdraw | 11722693 | 1859 days ago | IN | 0 ETH | 0.00546179 | ||||
| Claim Rewards | 11722650 | 1859 days ago | IN | 0 ETH | 0.00638374 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
StakingDrop
Compiler Version
v0.6.11+commit.5ef660b1
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-12-30
*/
// File: @openzeppelin\contracts\math\Math.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.6.11;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a >= b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow, so we distribute
return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
}
}
// File: @openzeppelin\contracts\math\SafeMath.sol
pragma solidity >=0.6.0 <0.8.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) {
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\IERC20.sol
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
/**
* @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.
*/
// File: node_modules\@openzeppelin\contracts\utils\Address.sol
pragma solidity >=0.6.2 <0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// solhint-disable-next-line no-inline-assembly
assembly { size := extcodesize(account) }
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain`call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: value }(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin\contracts\token\ERC20\SafeERC20.sol
pragma solidity >=0.6.0 <0.8.0;
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using SafeMath for uint256;
using Address for address;
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
// solhint-disable-next-line max-line-length
require((value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).add(value);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) { // Return data is optional
// solhint-disable-next-line max-line-length
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
// File: node_modules\@openzeppelin\contracts\GSN\Context.sol
pragma solidity >=0.6.0 <0.8.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// File: @openzeppelin\contracts\access\Ownable.sol
pragma solidity >=0.6.0 <0.8.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.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () 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;
}
}
// File: contracts\StakingDrop.sol
pragma solidity 0.6.11;
contract StakingDrop is Ownable {
using SafeMath for uint256;
using SafeERC20 for IERC20;
address public immutable hbtcAddress; //hbtc的地址
address public immutable bdtAddress; //奖励的token
uint256 public immutable bonusStartAt; //活动开始时间
/* ========== CONSTANTS ========== */
uint256 public constant BONUS_DURATION = 32 days;
uint256 public constant MAX_CLAIM_DURATION = 8 days;
uint256 public constant TOTAL_BDT_REWARDS = 10000000 ether;
mapping(address => uint256) public myDeposit; //存的数量
mapping(address => uint256) public myRewards; //领取的奖励
mapping(address => uint256) public myLastClaimedAt; //最后领取的时间
uint256 public claimedRewards; //发的奖励的总数
uint256 public totalDeposit; //总抵押数
event Deposit(address indexed sender, uint256 amount);
event Withdrawal(address indexed sender, uint256 amount);
event Claimed(address indexed sender, uint256 amount, uint256 claimed);
constructor(
address hbtcAddress_,
address bdtAddress_,
uint256 bonusStartAt_
) public Ownable() {
require(hbtcAddress_ != address(0), "StakingDrop: hbtcAddress_ is zero address");
require(bdtAddress_ != address(0), "StakingDrop: bdtAddress_ is zero address");
hbtcAddress = hbtcAddress_;
bdtAddress = bdtAddress_;
bonusStartAt = bonusStartAt_;
}
function withdraw(uint256 amount) external {
if (block.timestamp < bonusStartAt.add(BONUS_DURATION)) return;
require(amount > 0, "StakingDrop: amount should greater than zero");
claimRewards();
myDeposit[msg.sender] = myDeposit[msg.sender].sub(amount);
totalDeposit = totalDeposit.sub(amount);
require(IERC20(hbtcAddress).transfer(msg.sender, amount), "StakingDrop: withdraw transfer failed");
emit Withdrawal(msg.sender, amount);
}
function deposit(uint256 _value) external {
if (block.timestamp < bonusStartAt) return;
if (block.timestamp > bonusStartAt.add(BONUS_DURATION)) return;
require(_value > 0, "StakingDrop: _value should greater than zero");
claimRewards();
myDeposit[msg.sender] = myDeposit[msg.sender].add(_value);
totalDeposit = totalDeposit.add(_value);
require(IERC20(hbtcAddress).transferFrom(msg.sender, address(this), _value), "StakingDrop: deposit transferFrom failed");
emit Deposit(msg.sender, _value);
}
function claimRewards() public {
// claim must start from bonusStartAt
if (block.timestamp < bonusStartAt) {
if (myLastClaimedAt[msg.sender] < bonusStartAt) {
myLastClaimedAt[msg.sender] = bonusStartAt;
}
return;
}
if (myLastClaimedAt[msg.sender] >= bonusStartAt) {
uint256 rewards = getIncrementalRewards(msg.sender);
myRewards[msg.sender] = myRewards[msg.sender].add(rewards);
claimedRewards = claimedRewards.add(rewards);
require(IERC20(bdtAddress).transfer(msg.sender, rewards), "StakingDrop: claimRewards transfer failed");
emit Claimed(msg.sender, myRewards[msg.sender], claimedRewards);
}
myLastClaimedAt[msg.sender] = block.timestamp >
bonusStartAt.add(BONUS_DURATION)
? bonusStartAt.add(BONUS_DURATION)
: block.timestamp;
}
function getTotalRewards() public view returns (uint256) {
if (block.timestamp < bonusStartAt) {
return 0;
}
uint256 duration = block.timestamp.sub(bonusStartAt);
if (duration > BONUS_DURATION) {
return TOTAL_BDT_REWARDS;
}
return TOTAL_BDT_REWARDS.mul(duration).div(BONUS_DURATION);
}
function getIncrementalRewards(address target)
public
view
returns (uint256)
{
uint256 totalRewards = getTotalRewards();
if (
myLastClaimedAt[target] < bonusStartAt ||
totalDeposit == 0 ||
totalRewards == 0
) {
return 0;
}
uint256 remainingRewards = totalRewards.sub(claimedRewards);
uint256 myDuration = block.timestamp > bonusStartAt.add(BONUS_DURATION)
? bonusStartAt.add(BONUS_DURATION).sub(myLastClaimedAt[target])
: block.timestamp.sub(myLastClaimedAt[target]);
if (myDuration > MAX_CLAIM_DURATION) {
myDuration = MAX_CLAIM_DURATION;
}
uint256 rewards = remainingRewards
.mul(myDeposit[target])
.div(totalDeposit)
.mul(myDuration)
.div(MAX_CLAIM_DURATION);
return rewards;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"hbtcAddress_","type":"address"},{"internalType":"address","name":"bdtAddress_","type":"address"},{"internalType":"uint256","name":"bonusStartAt_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claimed","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawal","type":"event"},{"inputs":[],"name":"BONUS_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_CLAIM_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_BDT_REWARDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bdtAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bonusStartAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"getIncrementalRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hbtcAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"myDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"myLastClaimedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"myRewards","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60e06040523480156200001157600080fd5b5060405162001f8138038062001f81833981810160405260608110156200003757600080fd5b8101908080519060200190929190805190602001909291908051906020019092919050505060006200006e6200029b60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018062001f306029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200021c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018062001f596028913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250508173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508060c08181525050505050620002a3565b600033905090565b60805160601c60a05160601c60c051611c056200032b60003980610535528061080a5280610832528061089952806109035280610bfd5280610c3f5280610cc25280610d6d5280610e43528061114e5280611182528061148b52806114b152806114e75250806104ec5280610a265250806106815280610f3352806112ce5250611c056000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063797d8aeb116100ad578063d2a98fe711610071578063d2a98fe71461042e578063e627f2db1461044c578063f2fde38b1461046a578063f6153ccd146104ae578063fe62dfea146104cc57610121565b8063797d8aeb146102e85780638da5cb5b146103405780639200b04c1461038a578063a013ad54146103e2578063b6b55f251461040057610121565b8063372500ab116100f4578063372500ab1461021457806350b9e7411461021e578063540ed4c914610276578063715018a6146102c057806378ee115d146102ca57610121565b80631c1b2ef81461012657806320b9588c1461017057806322e9c08d146101c85780632e1a7d4d146101e6575b600080fd5b61012e6104ea565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6101b26004803603602081101561018657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061050e565b6040518082815260200191505060405180910390f35b6101d0610526565b6040518082815260200191505060405180910390f35b610212600480360360208110156101fc57600080fd5b810190808035906020019092919050505061052c565b005b61021c610808565b005b6102606004803603602081101561023457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610cb3565b6040518082815260200191505060405180910390f35b61027e610f31565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6102c8610f55565b005b6102d26110dd565b6040518082815260200191505060405180910390f35b61032a600480360360208110156102fe57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110ec565b6040518082815260200191505060405180910390f35b610348611104565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103cc600480360360208110156103a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061112d565b6040518082815260200191505060405180910390f35b6103ea611145565b6040518082815260200191505060405180910390f35b61042c6004803603602081101561041657600080fd5b810190808035906020019092919050505061114c565b005b610436611489565b6040518082815260200191505060405180910390f35b6104546114ad565b6040518082815260200191505060405180910390f35b6104ac6004803603602081101561048057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611570565b005b6104b661177d565b6040518082815260200191505060405180910390f35b6104d4611783565b6040518082815260200191505060405180910390f35b7f000000000000000000000000000000000000000000000000000000000000000081565b60026020528060005260406000206000915090505481565b60045481565b610562622a30007f000000000000000000000000000000000000000000000000000000000000000061178a90919063ffffffff16565b42101561056e57610805565b600081116105c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180611abb602c913960400191505060405180910390fd5b6105cf610808565b61062181600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461181290919063ffffffff16565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506106798160055461181290919063ffffffff16565b6005819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561072657600080fd5b505af115801561073a573d6000803e3d6000fd5b505050506040513d602081101561075057600080fd5b81019080805190602001909291905050506107b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180611b356025913960400191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65826040518082815260200191505060405180910390a25b50565b7f0000000000000000000000000000000000000000000000000000000000000000421015610901577f0000000000000000000000000000000000000000000000000000000000000000600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156108fc577f0000000000000000000000000000000000000000000000000000000000000000600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b610cb1565b7f0000000000000000000000000000000000000000000000000000000000000000600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610bf457600061097233610cb3565b90506109c681600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461178a90919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610a1e8160045461178a90919063ffffffff16565b6004819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015610acb57600080fd5b505af1158015610adf573d6000803e3d6000fd5b505050506040513d6020811015610af557600080fd5b8101908080519060200190929190505050610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180611ba76029913960400191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f987d620f307ff6b94d58743cb7a7509f24071586a77759b77c2d4e29f75a2f9a600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600454604051808381526020018281526020019250505060405180910390a2505b610c2a622a30007f000000000000000000000000000000000000000000000000000000000000000061178a90919063ffffffff16565b4211610c365742610c6d565b610c6c622a30007f000000000000000000000000000000000000000000000000000000000000000061178a90919063ffffffff16565b5b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b565b600080610cbe6114ad565b90507f0000000000000000000000000000000000000000000000000000000000000000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541080610d2f57506000600554145b80610d3a5750600081145b15610d49576000915050610f2c565b6000610d606004548361181290919063ffffffff16565b90506000610d9a622a30007f000000000000000000000000000000000000000000000000000000000000000061178a90919063ffffffff16565b4211610df757610df2600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544261181290919063ffffffff16565b610e7f565b610e7e600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e70622a30007f000000000000000000000000000000000000000000000000000000000000000061178a90919063ffffffff16565b61181290919063ffffffff16565b5b9050620a8c00811115610e9357620a8c0090505b6000610f22620a8c00610f1484610f06600554610ef8600160008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548a61185c90919063ffffffff16565b6118e290919063ffffffff16565b61185c90919063ffffffff16565b6118e290919063ffffffff16565b9050809450505050505b919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610f5d61192c565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461101e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6a084595161401484a00000081565b60036020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60016020528060005260406000206000915090505481565b622a300081565b7f000000000000000000000000000000000000000000000000000000000000000042101561117957611486565b6111af622a30007f000000000000000000000000000000000000000000000000000000000000000061178a90919063ffffffff16565b4211156111bb57611486565b60008111611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180611b7b602c913960400191505060405180910390fd5b61121c610808565b61126e81600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461178a90919063ffffffff16565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112c68160055461178a90919063ffffffff16565b6005819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b1580156113a757600080fd5b505af11580156113bb573d6000803e3d6000fd5b505050506040513d60208110156113d157600080fd5b8101908080519060200190929190505050611437576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180611b0d6028913960400191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c826040518082815260200191505060405180910390a25b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f00000000000000000000000000000000000000000000000000000000000000004210156114e0576000905061156d565b60006115157f00000000000000000000000000000000000000000000000000000000000000004261181290919063ffffffff16565b9050622a3000811115611536576a084595161401484a00000091505061156d565b611569622a300061155b836a084595161401484a00000061185c90919063ffffffff16565b6118e290919063ffffffff16565b9150505b90565b61157861192c565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611639576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116bf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180611ae76026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60055481565b620a8c0081565b600080828401905083811015611808576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600061185483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611934565b905092915050565b60008083141561186f57600090506118dc565b600082840290508284828161188057fe5b04146118d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611b5a6021913960400191505060405180910390fd5b809150505b92915050565b600061192483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506119f4565b905092915050565b600033905090565b60008383111582906119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156119a657808201518184015260208101905061198b565b50505050905090810190601f1680156119d35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008083118290611aa0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611a65578082015181840152602081019050611a4a565b50505050905090810190601f168015611a925780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581611aac57fe5b04905080915050939250505056fe5374616b696e6744726f703a20616d6f756e742073686f756c642067726561746572207468616e207a65726f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735374616b696e6744726f703a206465706f736974207472616e7366657246726f6d206661696c65645374616b696e6744726f703a207769746864726177207472616e73666572206661696c6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775374616b696e6744726f703a205f76616c75652073686f756c642067726561746572207468616e207a65726f5374616b696e6744726f703a20636c61696d52657761726473207472616e73666572206661696c6564a2646970667358221220a4fb440a94a885917014965b1d98eaecc153f6df8d9c14f693fd6986e57fa38c64736f6c634300060b00335374616b696e6744726f703a2068627463416464726573735f206973207a65726f20616464726573735374616b696e6744726f703a20626474416464726573735f206973207a65726f20616464726573730000000000000000000000000316eb71485b0ab14103307bf65a021042c6d380000000000000000000000000216e9d8a521d93ec769635859c57938119fe5369000000000000000000000000000000000000000000000000000000005fe001a0
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063797d8aeb116100ad578063d2a98fe711610071578063d2a98fe71461042e578063e627f2db1461044c578063f2fde38b1461046a578063f6153ccd146104ae578063fe62dfea146104cc57610121565b8063797d8aeb146102e85780638da5cb5b146103405780639200b04c1461038a578063a013ad54146103e2578063b6b55f251461040057610121565b8063372500ab116100f4578063372500ab1461021457806350b9e7411461021e578063540ed4c914610276578063715018a6146102c057806378ee115d146102ca57610121565b80631c1b2ef81461012657806320b9588c1461017057806322e9c08d146101c85780632e1a7d4d146101e6575b600080fd5b61012e6104ea565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6101b26004803603602081101561018657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061050e565b6040518082815260200191505060405180910390f35b6101d0610526565b6040518082815260200191505060405180910390f35b610212600480360360208110156101fc57600080fd5b810190808035906020019092919050505061052c565b005b61021c610808565b005b6102606004803603602081101561023457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610cb3565b6040518082815260200191505060405180910390f35b61027e610f31565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6102c8610f55565b005b6102d26110dd565b6040518082815260200191505060405180910390f35b61032a600480360360208110156102fe57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110ec565b6040518082815260200191505060405180910390f35b610348611104565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103cc600480360360208110156103a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061112d565b6040518082815260200191505060405180910390f35b6103ea611145565b6040518082815260200191505060405180910390f35b61042c6004803603602081101561041657600080fd5b810190808035906020019092919050505061114c565b005b610436611489565b6040518082815260200191505060405180910390f35b6104546114ad565b6040518082815260200191505060405180910390f35b6104ac6004803603602081101561048057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611570565b005b6104b661177d565b6040518082815260200191505060405180910390f35b6104d4611783565b6040518082815260200191505060405180910390f35b7f000000000000000000000000216e9d8a521d93ec769635859c57938119fe536981565b60026020528060005260406000206000915090505481565b60045481565b610562622a30007f000000000000000000000000000000000000000000000000000000005fe001a061178a90919063ffffffff16565b42101561056e57610805565b600081116105c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180611abb602c913960400191505060405180910390fd5b6105cf610808565b61062181600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461181290919063ffffffff16565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506106798160055461181290919063ffffffff16565b6005819055507f0000000000000000000000000316eb71485b0ab14103307bf65a021042c6d38073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561072657600080fd5b505af115801561073a573d6000803e3d6000fd5b505050506040513d602081101561075057600080fd5b81019080805190602001909291905050506107b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180611b356025913960400191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65826040518082815260200191505060405180910390a25b50565b7f000000000000000000000000000000000000000000000000000000005fe001a0421015610901577f000000000000000000000000000000000000000000000000000000005fe001a0600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156108fc577f000000000000000000000000000000000000000000000000000000005fe001a0600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b610cb1565b7f000000000000000000000000000000000000000000000000000000005fe001a0600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610bf457600061097233610cb3565b90506109c681600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461178a90919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610a1e8160045461178a90919063ffffffff16565b6004819055507f000000000000000000000000216e9d8a521d93ec769635859c57938119fe536973ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015610acb57600080fd5b505af1158015610adf573d6000803e3d6000fd5b505050506040513d6020811015610af557600080fd5b8101908080519060200190929190505050610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180611ba76029913960400191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f987d620f307ff6b94d58743cb7a7509f24071586a77759b77c2d4e29f75a2f9a600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600454604051808381526020018281526020019250505060405180910390a2505b610c2a622a30007f000000000000000000000000000000000000000000000000000000005fe001a061178a90919063ffffffff16565b4211610c365742610c6d565b610c6c622a30007f000000000000000000000000000000000000000000000000000000005fe001a061178a90919063ffffffff16565b5b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b565b600080610cbe6114ad565b90507f000000000000000000000000000000000000000000000000000000005fe001a0600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541080610d2f57506000600554145b80610d3a5750600081145b15610d49576000915050610f2c565b6000610d606004548361181290919063ffffffff16565b90506000610d9a622a30007f000000000000000000000000000000000000000000000000000000005fe001a061178a90919063ffffffff16565b4211610df757610df2600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544261181290919063ffffffff16565b610e7f565b610e7e600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e70622a30007f000000000000000000000000000000000000000000000000000000005fe001a061178a90919063ffffffff16565b61181290919063ffffffff16565b5b9050620a8c00811115610e9357620a8c0090505b6000610f22620a8c00610f1484610f06600554610ef8600160008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548a61185c90919063ffffffff16565b6118e290919063ffffffff16565b61185c90919063ffffffff16565b6118e290919063ffffffff16565b9050809450505050505b919050565b7f0000000000000000000000000316eb71485b0ab14103307bf65a021042c6d38081565b610f5d61192c565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461101e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6a084595161401484a00000081565b60036020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60016020528060005260406000206000915090505481565b622a300081565b7f000000000000000000000000000000000000000000000000000000005fe001a042101561117957611486565b6111af622a30007f000000000000000000000000000000000000000000000000000000005fe001a061178a90919063ffffffff16565b4211156111bb57611486565b60008111611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180611b7b602c913960400191505060405180910390fd5b61121c610808565b61126e81600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461178a90919063ffffffff16565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112c68160055461178a90919063ffffffff16565b6005819055507f0000000000000000000000000316eb71485b0ab14103307bf65a021042c6d38073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b1580156113a757600080fd5b505af11580156113bb573d6000803e3d6000fd5b505050506040513d60208110156113d157600080fd5b8101908080519060200190929190505050611437576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180611b0d6028913960400191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c826040518082815260200191505060405180910390a25b50565b7f000000000000000000000000000000000000000000000000000000005fe001a081565b60007f000000000000000000000000000000000000000000000000000000005fe001a04210156114e0576000905061156d565b60006115157f000000000000000000000000000000000000000000000000000000005fe001a04261181290919063ffffffff16565b9050622a3000811115611536576a084595161401484a00000091505061156d565b611569622a300061155b836a084595161401484a00000061185c90919063ffffffff16565b6118e290919063ffffffff16565b9150505b90565b61157861192c565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611639576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116bf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180611ae76026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60055481565b620a8c0081565b600080828401905083811015611808576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600061185483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611934565b905092915050565b60008083141561186f57600090506118dc565b600082840290508284828161188057fe5b04146118d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611b5a6021913960400191505060405180910390fd5b809150505b92915050565b600061192483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506119f4565b905092915050565b600033905090565b60008383111582906119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156119a657808201518184015260208101905061198b565b50505050905090810190601f1680156119d35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008083118290611aa0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611a65578082015181840152602081019050611a4a565b50505050905090810190601f168015611a925780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581611aac57fe5b04905080915050939250505056fe5374616b696e6744726f703a20616d6f756e742073686f756c642067726561746572207468616e207a65726f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735374616b696e6744726f703a206465706f736974207472616e7366657246726f6d206661696c65645374616b696e6744726f703a207769746864726177207472616e73666572206661696c6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775374616b696e6744726f703a205f76616c75652073686f756c642067726561746572207468616e207a65726f5374616b696e6744726f703a20636c61696d52657761726473207472616e73666572206661696c6564a2646970667358221220a4fb440a94a885917014965b1d98eaecc153f6df8d9c14f693fd6986e57fa38c64736f6c634300060b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000316eb71485b0ab14103307bf65a021042c6d380000000000000000000000000216e9d8a521d93ec769635859c57938119fe5369000000000000000000000000000000000000000000000000000000005fe001a0
-----Decoded View---------------
Arg [0] : hbtcAddress_ (address): 0x0316EB71485b0Ab14103307bf65a021042c6d380
Arg [1] : bdtAddress_ (address): 0x216e9D8A521d93EC769635859c57938119fE5369
Arg [2] : bonusStartAt_ (uint256): 1608516000
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000316eb71485b0ab14103307bf65a021042c6d380
Arg [1] : 000000000000000000000000216e9d8a521d93ec769635859c57938119fe5369
Arg [2] : 000000000000000000000000000000000000000000000000000000005fe001a0
Deployed Bytecode Sourcemap
23773:4879:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23939:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;24356:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24508:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25259:506;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26358:955;;;:::i;:::-;;27699:950;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23880:36;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23156:148;;;:::i;:::-;;24223:58;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24425:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22514:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;24290:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24110:48;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25773:577;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23998:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27321:370;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23459:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24568:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24165:51;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23939:35;;;:::o;24356:44::-;;;;;;;;;;;;;;;;;:::o;24508:29::-;;;;:::o;25259:506::-;25335:32;24151:7;25335:12;:16;;:32;;;;:::i;:::-;25317:15;:50;25313:63;;;25369:7;;25313:63;25403:1;25394:6;:10;25386:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25466:14;:12;:14::i;:::-;25515:33;25541:6;25515:9;:21;25525:10;25515:21;;;;;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;25491:9;:21;25501:10;25491:21;;;;;;;;;;;;;;;:57;;;;25574:24;25591:6;25574:12;;:16;;:24;;;;:::i;:::-;25559:12;:39;;;;25626:11;25619:28;;;25648:10;25660:6;25619:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25611:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25738:10;25727:30;;;25750:6;25727:30;;;;;;;;;;;;;;;;;;25259:506;;:::o;26358:955::-;26469:12;26451:15;:30;26447:208;;;26532:12;26502:15;:27;26518:10;26502:27;;;;;;;;;;;;;;;;:42;26498:125;;;26595:12;26565:15;:27;26581:10;26565:27;;;;;;;;;;;;;;;:42;;;;26498:125;26637:7;;26447:208;26700:12;26669:15;:27;26685:10;26669:27;;;;;;;;;;;;;;;;:43;26665:458;;26729:15;26747:33;26769:10;26747:21;:33::i;:::-;26729:51;;26819:34;26845:7;26819:9;:21;26829:10;26819:21;;;;;;;;;;;;;;;;:25;;:34;;;;:::i;:::-;26795:9;:21;26805:10;26795:21;;;;;;;;;;;;;;;:58;;;;26885:27;26904:7;26885:14;;:18;;:27;;;;:::i;:::-;26868:14;:44;;;;26944:10;26937:27;;;26965:10;26977:7;26937:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26929:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27061:10;27053:58;;;27073:9;:21;27083:10;27073:21;;;;;;;;;;;;;;;;27096:14;;27053:58;;;;;;;;;;;;;;;;;;;;;;;;26665:458;;27194:32;24151:7;27194:12;:16;;:32;;;;:::i;:::-;27163:15;:63;:142;;27290:15;27163:142;;;27242:32;24151:7;27242:12;:16;;:32;;;;:::i;:::-;27163:142;27133:15;:27;27149:10;27133:27;;;;;;;;;;;;;;;:172;;;;26358:955;:::o;27699:950::-;27794:7;27819:20;27842:17;:15;:17::i;:::-;27819:40;;27914:12;27888:15;:23;27904:6;27888:23;;;;;;;;;;;;;;;;:38;:72;;;;27959:1;27943:12;;:17;27888:72;:106;;;;27993:1;27977:12;:17;27888:106;27870:171;;;28028:1;28021:8;;;;;27870:171;28051:24;28078:32;28095:14;;28078:12;:16;;:32;;;;:::i;:::-;28051:59;;28121:18;28160:32;24151:7;28160:12;:16;;:32;;;;:::i;:::-;28142:15;:50;:187;;28285:44;28305:15;:23;28321:6;28305:23;;;;;;;;;;;;;;;;28285:15;:19;;:44;;;;:::i;:::-;28142:187;;;28208:61;28245:15;:23;28261:6;28245:23;;;;;;;;;;;;;;;;28208:32;24151:7;28208:12;:16;;:32;;;;:::i;:::-;:36;;:61;;;;:::i;:::-;28142:187;28121:208;;24210:6;28344:10;:31;28340:95;;;24210:6;28392:31;;28340:95;28445:15;28463:153;24210:6;28463:115;28567:10;28463:85;28535:12;;28463:53;28498:9;:17;28508:6;28498:17;;;;;;;;;;;;;;;;28463:16;:34;;:53;;;;:::i;:::-;:71;;:85;;;;:::i;:::-;:103;;:115;;;;:::i;:::-;:133;;:153;;;;:::i;:::-;28445:171;;28634:7;28627:14;;;;;;27699:950;;;;:::o;23880:36::-;;;:::o;23156:148::-;22736:12;:10;:12::i;:::-;22726:22;;:6;;;;;;;;;;;:22;;;22718:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23263:1:::1;23226:40;;23247:6;::::0;::::1;;;;;;;;;23226:40;;;;;;;;;;;;23294:1;23277:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;23156:148::o:0;24223:58::-;24267:14;24223:58;:::o;24425:50::-;;;;;;;;;;;;;;;;;:::o;22514:79::-;22552:7;22579:6;;;;;;;;;;;22572:13;;22514:79;:::o;24290:44::-;;;;;;;;;;;;;;;;;:::o;24110:48::-;24151:7;24110:48;:::o;25773:577::-;25848:12;25830:15;:30;25826:43;;;25862:7;;25826:43;25901:32;24151:7;25901:12;:16;;:32;;;;:::i;:::-;25883:15;:50;25879:63;;;25935:7;;25879:63;25969:1;25960:6;:10;25952:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26032:14;:12;:14::i;:::-;26081:33;26107:6;26081:9;:21;26091:10;26081:21;;;;;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;26057:9;:21;26067:10;26057:21;;;;;;;;;;;;;;;:57;;;;26140:24;26157:6;26140:12;;:16;;:24;;;;:::i;:::-;26125:12;:39;;;;26192:11;26185:32;;;26218:10;26238:4;26245:6;26185:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26177:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26323:10;26315:27;;;26335:6;26315:27;;;;;;;;;;;;;;;;;;25773:577;;:::o;23998:37::-;;;:::o;27321:370::-;27369:7;27411:12;27393:15;:30;27389:71;;;27447:1;27440:8;;;;27389:71;27470:16;27489:33;27509:12;27489:15;:19;;:33;;;;:::i;:::-;27470:52;;24151:7;27537:8;:25;27533:82;;;24267:14;27579:24;;;;;27533:82;27632:51;24151:7;27632:31;27654:8;24267:14;27632:21;;:31;;;;:::i;:::-;:35;;:51;;;;:::i;:::-;27625:58;;;27321:370;;:::o;23459:244::-;22736:12;:10;:12::i;:::-;22726:22;;:6;;;;;;;;;;;:22;;;22718:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23568:1:::1;23548:22;;:8;:22;;;;23540:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23658:8;23629:38;;23650:6;::::0;::::1;;;;;;;;;23629:38;;;;;;;;;;;;23687:8;23678:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;23459:244:::0;:::o;24568:27::-;;;;:::o;24165:51::-;24210:6;24165:51;:::o;1807:181::-;1865:7;1885:9;1901:1;1897;:5;1885:17;;1926:1;1921;:6;;1913:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979:1;1972:8;;;1807:181;;;;:::o;2271:136::-;2329:7;2356:43;2360:1;2363;2356:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;2349:50;;2271:136;;;;:::o;3161:471::-;3219:7;3469:1;3464;:6;3460:47;;;3494:1;3487:8;;;;3460:47;3519:9;3535:1;3531;:5;3519:17;;3564:1;3559;3555;:5;;;;;;:10;3547:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3623:1;3616:8;;;3161:471;;;;;:::o;4108:132::-;4166:7;4193:39;4197:1;4200;4193:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;4186:46;;4108:132;;;;:::o;21055:106::-;21108:15;21143:10;21136:17;;21055:106;:::o;2710:192::-;2796:7;2829:1;2824;:6;;2832:12;2816:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2856:9;2872:1;2868;:5;2856:17;;2893:1;2886:8;;;2710:192;;;;;:::o;4736:278::-;4822:7;4854:1;4850;:5;4857:12;4842:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4881:9;4897:1;4893;:5;;;;;;4881:17;;5005:1;4998:8;;;4736:278;;;;;:::o
Swarm Source
ipfs://a4fb440a94a885917014965b1d98eaecc153f6df8d9c14f693fd6986e57fa38c
Loading...
Loading
Loading...
Loading
Net Worth in USD
$1,477.66
Net Worth in ETH
0.768983
Token Allocations
HBTC
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $49,972 | 0.0296 | $1,477.66 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.