More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 903 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim | 16478024 | 668 days ago | IN | 0 ETH | 0.0018204 | ||||
Claim | 15376935 | 826 days ago | IN | 0 ETH | 0.00043802 | ||||
Claim | 15008023 | 884 days ago | IN | 0 ETH | 0.00440102 | ||||
Claim | 14956209 | 894 days ago | IN | 0 ETH | 0.00880146 | ||||
Claim | 14956204 | 894 days ago | IN | 0 ETH | 0.00648253 | ||||
Claim | 14755452 | 926 days ago | IN | 0 ETH | 0.01254945 | ||||
Claim | 14578603 | 954 days ago | IN | 0 ETH | 0.00304577 | ||||
Claim | 14532559 | 962 days ago | IN | 0 ETH | 0.00339938 | ||||
Claim | 14532276 | 962 days ago | IN | 0 ETH | 0.00285316 | ||||
Claim | 14532110 | 962 days ago | IN | 0 ETH | 0.00240057 | ||||
Claim | 14531499 | 962 days ago | IN | 0 ETH | 0.0022889 | ||||
Claim | 14529770 | 962 days ago | IN | 0 ETH | 0.00494208 | ||||
Claim | 14528800 | 962 days ago | IN | 0 ETH | 0.00680422 | ||||
Claim | 14526106 | 963 days ago | IN | 0 ETH | 0.0037179 | ||||
Claim | 14524494 | 963 days ago | IN | 0 ETH | 0.00310505 | ||||
Claim | 14507601 | 965 days ago | IN | 0 ETH | 0.00257572 | ||||
Claim | 14506614 | 966 days ago | IN | 0 ETH | 0.00291998 | ||||
Claim | 14506586 | 966 days ago | IN | 0 ETH | 0.0039377 | ||||
Claim | 14505273 | 966 days ago | IN | 0 ETH | 0.00161471 | ||||
Claim | 14503753 | 966 days ago | IN | 0 ETH | 0.00287035 | ||||
Claim | 14501429 | 966 days ago | IN | 0 ETH | 0.00842305 | ||||
Claim | 14501407 | 966 days ago | IN | 0 ETH | 0.00699552 | ||||
Claim | 14500015 | 967 days ago | IN | 0 ETH | 0.00267839 | ||||
Claim | 14497623 | 967 days ago | IN | 0 ETH | 0.00266659 | ||||
Claim | 14490662 | 968 days ago | IN | 0 ETH | 0.00325285 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
VestingEscrow
Compiler Version
v0.5.16+commit.9c3226ce
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.5.16; import "openzeppelin-solidity-2.3.0/contracts/token/ERC20/ERC20.sol"; import "openzeppelin-solidity-2.3.0/contracts/math/Math.sol"; import "openzeppelin-solidity-2.3.0/contracts/math/SafeMath.sol"; import "synthetix-2.43.1/contracts/SafeDecimalMath.sol"; import "openzeppelin-solidity-2.3.0/contracts/utils/ReentrancyGuard.sol"; import "synthetix-2.43.1/contracts/Owned.sol"; contract VestingEscrow is ReentrancyGuard, Owned { using Math for uint256; using SafeMath for uint256; address public token; uint256 public startTime; uint256 public endTime; mapping(address => uint256) public initialLocked; mapping(address => uint256) public totalClaimed; uint256 public initialLockedSupply; uint256 public unallocatedSupply; constructor( address _owner, address _token, uint256 _startTime, uint256 _endTime ) public Owned(_owner) { require(_startTime >= block.timestamp, "Start time must be in future"); require(_endTime > _startTime, "End time must be greater than start time"); token = _token; startTime = _startTime; endTime = _endTime; } function addTokens(uint256 _amount) external onlyOwner { require(ERC20(token).transferFrom(msg.sender, address(this), _amount), "Transfer failed"); unallocatedSupply = unallocatedSupply.add(_amount); } function fund(address[] calldata _recipients, uint256[] calldata _amounts) external onlyOwner { uint256 _totalAmount = 0; for (uint256 index = 0; index < _recipients.length; index++) { uint256 amount = _amounts[index]; address recipient = _recipients[index]; if (recipient == address(0)) { break; } _totalAmount = _totalAmount.add(amount); initialLocked[recipient] = initialLocked[recipient].add(amount); emit Fund(recipient, amount); } initialLockedSupply = initialLockedSupply.add(_totalAmount); unallocatedSupply = unallocatedSupply.sub(_totalAmount); } function _totalVestedOf(address _recipient, uint256 _time) internal view returns (uint256) { uint256 start = startTime; uint256 end = endTime; uint256 locked = initialLocked[_recipient]; if (_time < start) return 0; return Math.min(locked.mul(_time.sub(start)).div(end.sub(start)), locked); } function _totalVested() internal view returns (uint256) { uint256 start = startTime; uint256 end = endTime; uint256 locked = initialLockedSupply; if (block.timestamp < start) { return 0; } return Math.min(locked.mul(block.timestamp.sub(start)).div(end.sub(start)), locked); } function vestedSupply() public view returns (uint256) { return _totalVested(); } function vestedOf(address _recipient) public view returns (uint256) { return _totalVestedOf(_recipient, block.timestamp); } function lockedSupply() public view returns (uint256) { return initialLockedSupply.sub(_totalVested()); } function balanceOf(address _recipient) public view returns (uint256) { return _totalVestedOf(_recipient, block.timestamp).sub(totalClaimed[_recipient]); } function lockedOf(address _recipient) public view returns (uint256) { return initialLocked[_recipient].sub(_totalVestedOf(_recipient, block.timestamp)); } function _selfDestruct(address payable beneficiary) external onlyOwner { //only callable a year after end time require(block.timestamp > (endTime + 365 days), "Contract can only be selfdestruct a year after endtime"); // Transfer the balance rather than the deposit value in case there are any synths left over // from direct transfers. IERC20(token).transfer(beneficiary, IERC20(token).balanceOf(address(this))); // Destroy the option tokens before destroying the market itself. selfdestruct(beneficiary); } function claim() external nonReentrant { uint256 claimable = balanceOf(msg.sender); require(claimable > 0, "nothing to claim"); totalClaimed[msg.sender] = totalClaimed[msg.sender].add(claimable); require(ERC20(token).transfer(msg.sender, claimable)); emit Claim(msg.sender, claimable); } event Fund(address indexed _recipient, uint256 _amount); event Claim(address indexed _address, uint256 _amount); }
pragma solidity ^0.5.0; import "./IERC20.sol"; import "../../math/SafeMath.sol"; /** * @dev Implementation of the `IERC20` interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using `_mint`. * For a generic mechanism see `ERC20Mintable`. * * *For a detailed writeup see our guide [How to implement supply * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).* * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an `Approval` event is emitted on calls to `transferFrom`. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard `decreaseAllowance` and `increaseAllowance` * functions have been added to mitigate the well-known issues around setting * allowances. See `IERC20.approve`. */ contract ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See `IERC20.totalSupply`. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See `IERC20.balanceOf`. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See `IERC20.transfer`. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev See `IERC20.allowance`. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See `IERC20.approve`. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public returns (bool) { _approve(msg.sender, spender, value); return true; } /** * @dev See `IERC20.transferFrom`. * * Emits an `Approval` event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of `ERC20`; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `value`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount)); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue)); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to `transfer`, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a `Transfer` event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a `Transfer` event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destoys `amount` tokens from `account`, reducing the * total supply. * * Emits a `Transfer` event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 value) internal { require(account != address(0), "ERC20: burn from the zero address"); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an `Approval` event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 value) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = value; emit Approval(owner, spender, value); } /** * @dev Destoys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See `_burn` and `_approve`. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount)); } }
pragma solidity ^0.5.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } }
pragma solidity ^0.5.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) { require(b <= a, "SafeMath: subtraction overflow"); 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-solidity/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) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); 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) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } }
pragma solidity ^0.5.16; // Libraries import "openzeppelin-solidity-2.3.0/contracts/math/SafeMath.sol"; // https://docs.synthetix.io/contracts/source/libraries/safedecimalmath library SafeDecimalMath { using SafeMath for uint; /* Number of decimal places in the representations. */ uint8 public constant decimals = 18; uint8 public constant highPrecisionDecimals = 27; /* The number representing 1.0. */ uint public constant UNIT = 10**uint(decimals); /* The number representing 1.0 for higher fidelity numbers. */ uint public constant PRECISE_UNIT = 10**uint(highPrecisionDecimals); uint private constant UNIT_TO_HIGH_PRECISION_CONVERSION_FACTOR = 10**uint(highPrecisionDecimals - decimals); /** * @return Provides an interface to UNIT. */ function unit() external pure returns (uint) { return UNIT; } /** * @return Provides an interface to PRECISE_UNIT. */ function preciseUnit() external pure returns (uint) { return PRECISE_UNIT; } /** * @return The result of multiplying x and y, interpreting the operands as fixed-point * decimals. * * @dev A unit factor is divided out after the product of x and y is evaluated, * so that product must be less than 2**256. As this is an integer division, * the internal division always rounds down. This helps save on gas. Rounding * is more expensive on gas. */ function multiplyDecimal(uint x, uint y) internal pure returns (uint) { /* Divide by UNIT to remove the extra factor introduced by the product. */ return x.mul(y) / UNIT; } /** * @return The result of safely multiplying x and y, interpreting the operands * as fixed-point decimals of the specified precision unit. * * @dev The operands should be in the form of a the specified unit factor which will be * divided out after the product of x and y is evaluated, so that product must be * less than 2**256. * * Unlike multiplyDecimal, this function rounds the result to the nearest increment. * Rounding is useful when you need to retain fidelity for small decimal numbers * (eg. small fractions or percentages). */ function _multiplyDecimalRound( uint x, uint y, uint precisionUnit ) private pure returns (uint) { /* Divide by UNIT to remove the extra factor introduced by the product. */ uint quotientTimesTen = x.mul(y) / (precisionUnit / 10); if (quotientTimesTen % 10 >= 5) { quotientTimesTen += 10; } return quotientTimesTen / 10; } /** * @return The result of safely multiplying x and y, interpreting the operands * as fixed-point decimals of a precise unit. * * @dev The operands should be in the precise unit factor which will be * divided out after the product of x and y is evaluated, so that product must be * less than 2**256. * * Unlike multiplyDecimal, this function rounds the result to the nearest increment. * Rounding is useful when you need to retain fidelity for small decimal numbers * (eg. small fractions or percentages). */ function multiplyDecimalRoundPrecise(uint x, uint y) internal pure returns (uint) { return _multiplyDecimalRound(x, y, PRECISE_UNIT); } /** * @return The result of safely multiplying x and y, interpreting the operands * as fixed-point decimals of a standard unit. * * @dev The operands should be in the standard unit factor which will be * divided out after the product of x and y is evaluated, so that product must be * less than 2**256. * * Unlike multiplyDecimal, this function rounds the result to the nearest increment. * Rounding is useful when you need to retain fidelity for small decimal numbers * (eg. small fractions or percentages). */ function multiplyDecimalRound(uint x, uint y) internal pure returns (uint) { return _multiplyDecimalRound(x, y, UNIT); } /** * @return The result of safely dividing x and y. The return value is a high * precision decimal. * * @dev y is divided after the product of x and the standard precision unit * is evaluated, so the product of x and UNIT must be less than 2**256. As * this is an integer division, the result is always rounded down. * This helps save on gas. Rounding is more expensive on gas. */ function divideDecimal(uint x, uint y) internal pure returns (uint) { /* Reintroduce the UNIT factor that will be divided out by y. */ return x.mul(UNIT).div(y); } /** * @return The result of safely dividing x and y. The return value is as a rounded * decimal in the precision unit specified in the parameter. * * @dev y is divided after the product of x and the specified precision unit * is evaluated, so the product of x and the specified precision unit must * be less than 2**256. The result is rounded to the nearest increment. */ function _divideDecimalRound( uint x, uint y, uint precisionUnit ) private pure returns (uint) { uint resultTimesTen = x.mul(precisionUnit * 10).div(y); if (resultTimesTen % 10 >= 5) { resultTimesTen += 10; } return resultTimesTen / 10; } /** * @return The result of safely dividing x and y. The return value is as a rounded * standard precision decimal. * * @dev y is divided after the product of x and the standard precision unit * is evaluated, so the product of x and the standard precision unit must * be less than 2**256. The result is rounded to the nearest increment. */ function divideDecimalRound(uint x, uint y) internal pure returns (uint) { return _divideDecimalRound(x, y, UNIT); } /** * @return The result of safely dividing x and y. The return value is as a rounded * high precision decimal. * * @dev y is divided after the product of x and the high precision unit * is evaluated, so the product of x and the high precision unit must * be less than 2**256. The result is rounded to the nearest increment. */ function divideDecimalRoundPrecise(uint x, uint y) internal pure returns (uint) { return _divideDecimalRound(x, y, PRECISE_UNIT); } /** * @dev Convert a standard decimal representation to a high precision one. */ function decimalToPreciseDecimal(uint i) internal pure returns (uint) { return i.mul(UNIT_TO_HIGH_PRECISION_CONVERSION_FACTOR); } /** * @dev Convert a high precision decimal to a standard decimal representation. */ function preciseDecimalToDecimal(uint i) internal pure returns (uint) { uint quotientTimesTen = i / (UNIT_TO_HIGH_PRECISION_CONVERSION_FACTOR / 10); if (quotientTimesTen % 10 >= 5) { quotientTimesTen += 10; } return quotientTimesTen / 10; } }
pragma solidity ^0.5.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the `nonReentrant` modifier * available, which can be aplied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. */ contract ReentrancyGuard { /// @dev counter to allow mutex lock with only one SSTORE operation uint256 private _guardCounter; constructor () internal { // The counter starts at one to prevent changing it from zero to a non-zero // value, which is a more expensive operation. _guardCounter = 1; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { _guardCounter += 1; uint256 localCounter = _guardCounter; _; require(localCounter == _guardCounter, "ReentrancyGuard: reentrant call"); } }
pragma solidity ^0.5.16; // https://docs.synthetix.io/contracts/source/contracts/owned contract Owned { address public owner; address public nominatedOwner; constructor(address _owner) public { require(_owner != address(0), "Owner address cannot be 0"); owner = _owner; emit OwnerChanged(address(0), _owner); } function nominateNewOwner(address _owner) external onlyOwner { nominatedOwner = _owner; emit OwnerNominated(_owner); } function acceptOwnership() external { require(msg.sender == nominatedOwner, "You must be nominated before you can accept ownership"); emit OwnerChanged(owner, nominatedOwner); owner = nominatedOwner; nominatedOwner = address(0); } modifier onlyOwner { _onlyOwner(); _; } function _onlyOwner() private view { require(msg.sender == owner, "Only the contract owner may perform this action"); } event OwnerNominated(address newOwner); event OwnerChanged(address oldOwner, address newOwner); }
pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see `ERC20Detailed`. */ 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. * * > 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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Fund","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldOwner","type":"address"},{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerNominated","type":"event"},{"constant":false,"inputs":[{"internalType":"address payable","name":"beneficiary","type":"address"}],"name":"_selfDestruct","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"addTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"claim","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"fund","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"initialLocked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"initialLockedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"lockedOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lockedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"nominateNewOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"nominatedOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"unallocatedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"vestedOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"vestedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5060405161108e38038061108e8339818101604052608081101561003357600080fd5b50805160208201516040830151606090930151600160005591929091836001600160a01b0381166100ab576040805162461bcd60e51b815260206004820152601960248201527f4f776e657220616464726573732063616e6e6f74206265203000000000000000604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040805160008152602081019290925280517fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c9281900390910190a1504282101561015b576040805162461bcd60e51b815260206004820152601c60248201527f53746172742074696d65206d75737420626520696e2066757475726500000000604482015290519081900360640190fd5b8181116101995760405162461bcd60e51b81526004018080602001828103825260288152602001806110666028913960400191505060405180910390fd5b600380546001600160a01b0319166001600160a01b03949094169390931790925560045560055550610e96806101d06000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806394477104116100ad578063c6ed899011610071578063c6ed899014610347578063ca5c7b9114610364578063d9844dc01461036c578063ef5d9ae814610374578063fc0c546a1461039a5761012c565b8063944771041461020b5780639ea6ec2914610231578063a5f1e28214610257578063aa04ae781461027d578063b1e56f6b146102855761012c565b806370a08231116100f457806370a08231146101c557806378e97925146101eb57806379ba5097146101f35780637d086b29146101fb5780638da5cb5b146102035761012c565b8063099d695f146101315780631627540c146101695780633197cbb6146101915780634e71d92d1461019957806353a47bb7146101a1575b600080fd5b6101576004803603602081101561014757600080fd5b50356001600160a01b03166103a2565b60408051918252519081900360200190f35b61018f6004803603602081101561017f57600080fd5b50356001600160a01b03166103b4565b005b610157610410565b61018f610416565b6101a96105be565b604080516001600160a01b039092168252519081900360200190f35b610157600480360360208110156101db57600080fd5b50356001600160a01b03166105cd565b610157610606565b61018f61060c565b6101576106c8565b6101a96106ce565b6101576004803603602081101561022157600080fd5b50356001600160a01b03166106dd565b61018f6004803603602081101561024757600080fd5b50356001600160a01b03166106e9565b6101576004803603602081101561026d57600080fd5b50356001600160a01b031661083e565b610157610872565b61018f6004803603604081101561029b57600080fd5b8101906020810181356401000000008111156102b657600080fd5b8201836020820111156102c857600080fd5b803590602001918460208302840111640100000000831117156102ea57600080fd5b91939092909160208101903564010000000081111561030857600080fd5b82018360208201111561031a57600080fd5b8035906020019184602083028401116401000000008311171561033c57600080fd5b509092509050610878565b61018f6004803603602081101561035d57600080fd5b50356109b1565b610157610a9b565b610157610abd565b6101576004803603602081101561038a57600080fd5b50356001600160a01b0316610ac7565b6101a9610ad9565b60066020526000908152604090205481565b6103bc610ae8565b600280546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce229181900360200190a150565b60055481565b600080546001018082559061042a336105cd565b905060008111610474576040805162461bcd60e51b815260206004820152601060248201526f6e6f7468696e6720746f20636c61696d60801b604482015290519081900360640190fd5b33600090815260076020526040902054610494908263ffffffff610b3316565b33600081815260076020908152604080832094909455600354845163a9059cbb60e01b815260048101949094526024840186905293516001600160a01b039094169363a9059cbb93604480820194918390030190829087803b1580156104f957600080fd5b505af115801561050d573d6000803e3d6000fd5b505050506040513d602081101561052357600080fd5b505161052e57600080fd5b60408051828152905133917f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4919081900360200190a25060005481146105bb576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b50565b6002546001600160a01b031681565b6001600160a01b038116600090815260076020526040812054610600906105f48442610b94565b9063ffffffff610c1d16565b92915050565b60045481565b6002546001600160a01b031633146106555760405162461bcd60e51b8152600401808060200182810382526035815260200180610da76035913960400191505060405180910390fd5b600154600254604080516001600160a01b03938416815292909116602083015280517fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c9281900390910190a160028054600180546001600160a01b03199081166001600160a01b03841617909155169055565b60085481565b6001546001600160a01b031681565b60006106008242610b94565b6106f1610ae8565b6005546301e133800142116107375760405162461bcd60e51b8152600401808060200182810382526036815260200180610ddc6036913960400191505060405180910390fd5b600354604080516370a0823160e01b815230600482015290516001600160a01b039092169163a9059cbb91849184916370a08231916024808301926020929190829003018186803b15801561078b57600080fd5b505afa15801561079f573d6000803e3d6000fd5b505050506040513d60208110156107b557600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b03909316600484015260248301919091525160448083019260209291908290030181600087803b15801561080657600080fd5b505af115801561081a573d6000803e3d6000fd5b505050506040513d602081101561083057600080fd5b50506001600160a01b038116ff5b600061060061084d8342610b94565b6001600160a01b0384166000908152600660205260409020549063ffffffff610c1d16565b60095481565b610880610ae8565b6000805b8481101561097d57600084848381811061089a57fe5b90506020020135905060008787848181106108b157fe5b905060200201356001600160a01b0316905060006001600160a01b0316816001600160a01b031614156108e557505061097d565b6108f5848363ffffffff610b3316565b6001600160a01b038216600090815260066020526040902054909450610921908363ffffffff610b3316565b6001600160a01b038216600081815260066020908152604091829020939093558051858152905191927fda8220a878ff7a89474ccffdaa31ea1ed1ffbb0207d5051afccc4fbaf81f9bcd92918290030190a25050600101610884565b50600854610991908263ffffffff610b3316565b6008556009546109a7908263ffffffff610c1d16565b6009555050505050565b6109b9610ae8565b600354604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b158015610a1357600080fd5b505af1158015610a27573d6000803e3d6000fd5b505050506040513d6020811015610a3d57600080fd5b5051610a82576040805162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b600954610a95908263ffffffff610b3316565b60095550565b6000610ab7610aa8610c7a565b6008549063ffffffff610c1d16565b90505b90565b6000610ab7610c7a565b60076020526000908152604090205481565b6003546001600160a01b031681565b6001546001600160a01b03163314610b315760405162461bcd60e51b815260040180806020018281038252602f815260200180610e12602f913960400191505060405180910390fd5b565b600082820183811015610b8d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6004546005546001600160a01b0384166000908152600660205260408120549092919082851015610bcb5760009350505050610600565b610c13610c0d610be1848663ffffffff610c1d16565b610c01610bf4898863ffffffff610c1d16565b859063ffffffff610ccd16565b9063ffffffff610d2616565b82610d90565b9695505050505050565b600082821115610c74576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600454600554600854600092919042831115610c9c5760009350505050610aba565b610cc5610c0d610cb2848663ffffffff610c1d16565b610c01610bf4428863ffffffff610c1d16565b935050505090565b600082610cdc57506000610600565b82820282848281610ce957fe5b0414610b8d5760405162461bcd60e51b8152600401808060200182810382526021815260200180610e416021913960400191505060405180910390fd5b6000808211610d7c576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b6000828481610d8757fe5b04949350505050565b6000818310610d9f5781610b8d565b509091905056fe596f75206d757374206265206e6f6d696e61746564206265666f726520796f752063616e20616363657074206f776e657273686970436f6e74726163742063616e206f6e6c792062652073656c6664657374727563742061207965617220616674657220656e6474696d654f6e6c792074686520636f6e7472616374206f776e6572206d617920706572666f726d207468697320616374696f6e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a265627a7a723158206c8ab8b8b20583af1fbe5fa7e95d7347531556fe0d52ad7b5eadca1b92d5a2b964736f6c63430005100032456e642074696d65206d7573742062652067726561746572207468616e2073746172742074696d650000000000000000000000004d03ef005e5f559fc9294a8e1cebba09284b1f8200000000000000000000000003e173ad8d1581a4802d3b532ace27a62c5b81dc00000000000000000000000000000000000000000000000000000000614310e30000000000000000000000000000000000000000000000000000000064ddeae3
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806394477104116100ad578063c6ed899011610071578063c6ed899014610347578063ca5c7b9114610364578063d9844dc01461036c578063ef5d9ae814610374578063fc0c546a1461039a5761012c565b8063944771041461020b5780639ea6ec2914610231578063a5f1e28214610257578063aa04ae781461027d578063b1e56f6b146102855761012c565b806370a08231116100f457806370a08231146101c557806378e97925146101eb57806379ba5097146101f35780637d086b29146101fb5780638da5cb5b146102035761012c565b8063099d695f146101315780631627540c146101695780633197cbb6146101915780634e71d92d1461019957806353a47bb7146101a1575b600080fd5b6101576004803603602081101561014757600080fd5b50356001600160a01b03166103a2565b60408051918252519081900360200190f35b61018f6004803603602081101561017f57600080fd5b50356001600160a01b03166103b4565b005b610157610410565b61018f610416565b6101a96105be565b604080516001600160a01b039092168252519081900360200190f35b610157600480360360208110156101db57600080fd5b50356001600160a01b03166105cd565b610157610606565b61018f61060c565b6101576106c8565b6101a96106ce565b6101576004803603602081101561022157600080fd5b50356001600160a01b03166106dd565b61018f6004803603602081101561024757600080fd5b50356001600160a01b03166106e9565b6101576004803603602081101561026d57600080fd5b50356001600160a01b031661083e565b610157610872565b61018f6004803603604081101561029b57600080fd5b8101906020810181356401000000008111156102b657600080fd5b8201836020820111156102c857600080fd5b803590602001918460208302840111640100000000831117156102ea57600080fd5b91939092909160208101903564010000000081111561030857600080fd5b82018360208201111561031a57600080fd5b8035906020019184602083028401116401000000008311171561033c57600080fd5b509092509050610878565b61018f6004803603602081101561035d57600080fd5b50356109b1565b610157610a9b565b610157610abd565b6101576004803603602081101561038a57600080fd5b50356001600160a01b0316610ac7565b6101a9610ad9565b60066020526000908152604090205481565b6103bc610ae8565b600280546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce229181900360200190a150565b60055481565b600080546001018082559061042a336105cd565b905060008111610474576040805162461bcd60e51b815260206004820152601060248201526f6e6f7468696e6720746f20636c61696d60801b604482015290519081900360640190fd5b33600090815260076020526040902054610494908263ffffffff610b3316565b33600081815260076020908152604080832094909455600354845163a9059cbb60e01b815260048101949094526024840186905293516001600160a01b039094169363a9059cbb93604480820194918390030190829087803b1580156104f957600080fd5b505af115801561050d573d6000803e3d6000fd5b505050506040513d602081101561052357600080fd5b505161052e57600080fd5b60408051828152905133917f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4919081900360200190a25060005481146105bb576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b50565b6002546001600160a01b031681565b6001600160a01b038116600090815260076020526040812054610600906105f48442610b94565b9063ffffffff610c1d16565b92915050565b60045481565b6002546001600160a01b031633146106555760405162461bcd60e51b8152600401808060200182810382526035815260200180610da76035913960400191505060405180910390fd5b600154600254604080516001600160a01b03938416815292909116602083015280517fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c9281900390910190a160028054600180546001600160a01b03199081166001600160a01b03841617909155169055565b60085481565b6001546001600160a01b031681565b60006106008242610b94565b6106f1610ae8565b6005546301e133800142116107375760405162461bcd60e51b8152600401808060200182810382526036815260200180610ddc6036913960400191505060405180910390fd5b600354604080516370a0823160e01b815230600482015290516001600160a01b039092169163a9059cbb91849184916370a08231916024808301926020929190829003018186803b15801561078b57600080fd5b505afa15801561079f573d6000803e3d6000fd5b505050506040513d60208110156107b557600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b03909316600484015260248301919091525160448083019260209291908290030181600087803b15801561080657600080fd5b505af115801561081a573d6000803e3d6000fd5b505050506040513d602081101561083057600080fd5b50506001600160a01b038116ff5b600061060061084d8342610b94565b6001600160a01b0384166000908152600660205260409020549063ffffffff610c1d16565b60095481565b610880610ae8565b6000805b8481101561097d57600084848381811061089a57fe5b90506020020135905060008787848181106108b157fe5b905060200201356001600160a01b0316905060006001600160a01b0316816001600160a01b031614156108e557505061097d565b6108f5848363ffffffff610b3316565b6001600160a01b038216600090815260066020526040902054909450610921908363ffffffff610b3316565b6001600160a01b038216600081815260066020908152604091829020939093558051858152905191927fda8220a878ff7a89474ccffdaa31ea1ed1ffbb0207d5051afccc4fbaf81f9bcd92918290030190a25050600101610884565b50600854610991908263ffffffff610b3316565b6008556009546109a7908263ffffffff610c1d16565b6009555050505050565b6109b9610ae8565b600354604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b158015610a1357600080fd5b505af1158015610a27573d6000803e3d6000fd5b505050506040513d6020811015610a3d57600080fd5b5051610a82576040805162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b600954610a95908263ffffffff610b3316565b60095550565b6000610ab7610aa8610c7a565b6008549063ffffffff610c1d16565b90505b90565b6000610ab7610c7a565b60076020526000908152604090205481565b6003546001600160a01b031681565b6001546001600160a01b03163314610b315760405162461bcd60e51b815260040180806020018281038252602f815260200180610e12602f913960400191505060405180910390fd5b565b600082820183811015610b8d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6004546005546001600160a01b0384166000908152600660205260408120549092919082851015610bcb5760009350505050610600565b610c13610c0d610be1848663ffffffff610c1d16565b610c01610bf4898863ffffffff610c1d16565b859063ffffffff610ccd16565b9063ffffffff610d2616565b82610d90565b9695505050505050565b600082821115610c74576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600454600554600854600092919042831115610c9c5760009350505050610aba565b610cc5610c0d610cb2848663ffffffff610c1d16565b610c01610bf4428863ffffffff610c1d16565b935050505090565b600082610cdc57506000610600565b82820282848281610ce957fe5b0414610b8d5760405162461bcd60e51b8152600401808060200182810382526021815260200180610e416021913960400191505060405180910390fd5b6000808211610d7c576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b6000828481610d8757fe5b04949350505050565b6000818310610d9f5781610b8d565b509091905056fe596f75206d757374206265206e6f6d696e61746564206265666f726520796f752063616e20616363657074206f776e657273686970436f6e74726163742063616e206f6e6c792062652073656c6664657374727563742061207965617220616674657220656e6474696d654f6e6c792074686520636f6e7472616374206f776e6572206d617920706572666f726d207468697320616374696f6e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a265627a7a723158206c8ab8b8b20583af1fbe5fa7e95d7347531556fe0d52ad7b5eadca1b92d5a2b964736f6c63430005100032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004d03ef005e5f559fc9294a8e1cebba09284b1f8200000000000000000000000003e173ad8d1581a4802d3b532ace27a62c5b81dc00000000000000000000000000000000000000000000000000000000614310e30000000000000000000000000000000000000000000000000000000064ddeae3
-----Decoded View---------------
Arg [0] : _owner (address): 0x4D03eF005e5f559fc9294a8E1CeBbA09284B1F82
Arg [1] : _token (address): 0x03E173Ad8d1581A4802d3B532AcE27a62c5B81dc
Arg [2] : _startTime (uint256): 1631785187
Arg [3] : _endTime (uint256): 1692265187
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000004d03ef005e5f559fc9294a8e1cebba09284b1f82
Arg [1] : 00000000000000000000000003e173ad8d1581a4802d3b532ace27a62c5b81dc
Arg [2] : 00000000000000000000000000000000000000000000000000000000614310e3
Arg [3] : 0000000000000000000000000000000000000000000000000000000064ddeae3
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.