More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 610 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim Vested | 19489449 | 264 days ago | IN | 0 ETH | 0.00153292 | ||||
Claim Vested | 18995670 | 333 days ago | IN | 0 ETH | 0.00097273 | ||||
Claim Vested | 18439692 | 411 days ago | IN | 0 ETH | 0.00052282 | ||||
Claim Vested | 18434985 | 412 days ago | IN | 0 ETH | 0.0021159 | ||||
Claim Vested | 17917069 | 484 days ago | IN | 0 ETH | 0.00079388 | ||||
Claim Vested | 17529852 | 539 days ago | IN | 0 ETH | 0.00168184 | ||||
Claim Vested | 17529803 | 539 days ago | IN | 0 ETH | 0.00148935 | ||||
Claim Vested | 17364622 | 562 days ago | IN | 0 ETH | 0.00227994 | ||||
Claim Vested | 17047549 | 607 days ago | IN | 0 ETH | 0.0014636 | ||||
Claim Vested | 16934889 | 623 days ago | IN | 0 ETH | 0.00231929 | ||||
Claim Vested | 16928012 | 624 days ago | IN | 0 ETH | 0.00235553 | ||||
Claim Vested | 16865433 | 633 days ago | IN | 0 ETH | 0.00080406 | ||||
Claim Vested | 16864378 | 633 days ago | IN | 0 ETH | 0.00169631 | ||||
Claim Vested | 16864372 | 633 days ago | IN | 0 ETH | 0.00137503 | ||||
Claim Vested | 16701527 | 656 days ago | IN | 0 ETH | 0.00140095 | ||||
Claim Vested | 16692565 | 657 days ago | IN | 0 ETH | 0.00244684 | ||||
Claim Vested | 16639220 | 664 days ago | IN | 0 ETH | 0.00163094 | ||||
Claim Vested | 16639213 | 664 days ago | IN | 0 ETH | 0.00150588 | ||||
Claim Vested | 16639209 | 664 days ago | IN | 0 ETH | 0.00186255 | ||||
Claim Vested | 16580995 | 672 days ago | IN | 0 ETH | 0.00188996 | ||||
Claim Vested | 16574860 | 673 days ago | IN | 0 ETH | 0.00117671 | ||||
Claim Vested | 16565965 | 675 days ago | IN | 0 ETH | 0.00095808 | ||||
Claim Vested | 16548976 | 677 days ago | IN | 0 ETH | 0.00174125 | ||||
Claim Vested | 16530980 | 679 days ago | IN | 0 ETH | 0.0013771 | ||||
Claim Vested | 16530742 | 679 days ago | IN | 0 ETH | 0.00091845 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
HundredVesting
Compiler Version
v0.8.3+commit.8d00100c
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.3; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract HundredVesting { using SafeERC20 for IERC20; IERC20 public immutable Hundred; uint256 numberOfEpochs; uint256 epochLength; struct UserInfo { uint256 totalAmount; uint256 timestamp; uint256 claimedAmount; } mapping(address => UserInfo) addresses; constructor(IERC20 hundred, uint256 _epochLength, uint256 totalVestingTime) { Hundred = hundred; epochLength = _epochLength; numberOfEpochs = totalVestingTime / _epochLength; } function beginVesting(address beneficiary, uint256 amount) external { require(amount != 0, "Amount should bigger than 0"); Hundred.safeTransferFrom(msg.sender, address(this), amount); UserInfo memory user = addresses[beneficiary]; if (user.totalAmount != 0) { user.totalAmount = user.totalAmount - user.claimedAmount + amount; user.timestamp = block.timestamp; user.claimedAmount = 0; } else { user = UserInfo({ totalAmount: amount, timestamp: block.timestamp, claimedAmount: 0 }); } addresses[beneficiary] = user; } function claimVested() public { uint256 amount = getClaimableVest(msg.sender); require(amount != 0, "No claimable hundred token"); Hundred.safeTransfer(msg.sender, amount); addresses[msg.sender].claimedAmount = addresses[msg.sender].claimedAmount + amount; } function getClaimableVest(address beneficiary) public view returns(uint) { UserInfo memory user = addresses[beneficiary]; require(user.timestamp != 0, "Invalid address"); uint256 amount = (block.timestamp - user.timestamp) / epochLength * user.totalAmount / numberOfEpochs; return amount < user.claimedAmount ? 0 : amount - user.claimedAmount; } function getClaimedVest(address beneficiary) public view returns(uint) { return addresses[beneficiary].claimedAmount; } function getRemainingVest(address beneficiary) public view returns(uint) { return getTotalVest(beneficiary) - getClaimedVest(beneficiary); } function getTotalVest(address beneficiary) public view returns(uint) { return addresses[beneficiary].totalAmount; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @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 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' 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) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _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 require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT pragma solidity ^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); }
// SPDX-License-Identifier: MIT pragma solidity ^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; 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"); (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"); (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"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IERC20","name":"hundred","type":"address"},{"internalType":"uint256","name":"_epochLength","type":"uint256"},{"internalType":"uint256","name":"totalVestingTime","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"Hundred","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"beginVesting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimVested","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"}],"name":"getClaimableVest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"}],"name":"getClaimedVest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"}],"name":"getRemainingVest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"}],"name":"getTotalVest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b506040516200140a3803806200140a8339818101604052810190620000379190620000c0565b8273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b8152505081600181905550818162000083919062000116565b60008190555050505062000203565b600081519050620000a381620001cf565b92915050565b600081519050620000ba81620001e9565b92915050565b600080600060608486031215620000d657600080fd5b6000620000e68682870162000092565b9350506020620000f986828701620000a9565b92505060406200010c86828701620000a9565b9150509250925092565b6000620001238262000196565b9150620001308362000196565b925082620001435762000142620001a0565b5b828204905092915050565b60006200015b8262000176565b9050919050565b60006200016f826200014e565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b620001da8162000162565b8114620001e657600080fd5b50565b620001f48162000196565b81146200020057600080fd5b50565b60805160601c6111da6200023060003960008181610188015281816103ab015261058701526111da6000f3fe608060405234801561001057600080fd5b506004361061007d5760003560e01c806354cd53be1161005b57806354cd53be14610100578063617f530814610130578063d01c44cd1461014c578063e1396fe3146101565761007d565b806312bd3962146100825780631481512d146100a0578063295d8dc1146100d0575b600080fd5b61008a610186565b6040516100979190610cb0565b60405180910390f35b6100ba60048036038101906100b59190610a42565b6101aa565b6040516100c79190610dad565b60405180910390f35b6100ea60048036038101906100e59190610a42565b6101f6565b6040516100f79190610dad565b60405180910390f35b61011a60048036038101906101159190610a42565b610313565b6040516101279190610dad565b60405180910390f35b61014a60048036038101906101459190610a6b565b61035f565b005b61015461052f565b005b610170600480360381019061016b9190610a42565b610662565b60405161017d9190610dad565b60405180910390f35b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050919050565b600080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806060016040529081600082015481526020016001820154815260200160028201548152505090506000816020015114156102ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102a290610ced565b60405180910390fd5b6000805482600001516001548460200151426102c79190610edb565b6102d19190610e50565b6102db9190610e81565b6102e59190610e50565b905081604001518110610307578160400151816103029190610edb565b61030a565b60005b92505050919050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201549050919050565b60008114156103a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a90610d2d565b60405180910390fd5b6103f03330837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16610687909392919063ffffffff16565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060600160405290816000820154815260200160018201548152602001600282015481525050905060008160000151146104aa57818160400151826000015161047d9190610edb565b6104879190610dfa565b8160000181815250504281602001818152505060008160400181815250506104c9565b6040518060600160405280838152602001428152602001600081525090505b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082015181600001556020820151816001015560408201518160020155905050505050565b600061053a336101f6565b90506000811415610580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057790610d4d565b60405180910390fd5b6105cb33827f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166107109092919063ffffffff16565b80600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201546106199190610dfa565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555050565b600061066d82610313565b610676836101aa565b6106809190610edb565b9050919050565b61070a846323b872dd60e01b8585856040516024016106a893929190610c50565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610796565b50505050565b6107918363a9059cbb60e01b848460405160240161072f929190610c87565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610796565b505050565b60006107f8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661085d9092919063ffffffff16565b905060008151111561085857808060200190518101906108189190610aa7565b610857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084e90610d8d565b60405180910390fd5b5b505050565b606061086c8484600085610875565b90509392505050565b6060824710156108ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b190610d0d565b60405180910390fd5b6108c385610989565b610902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f990610d6d565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161092b9190610c39565b60006040518083038185875af1925050503d8060008114610968576040519150601f19603f3d011682016040523d82523d6000602084013e61096d565b606091505b509150915061097d82828661099c565b92505050949350505050565b600080823b905060008111915050919050565b606083156109ac578290506109fc565b6000835111156109bf5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f39190610ccb565b60405180910390fd5b9392505050565b600081359050610a128161115f565b92915050565b600081519050610a2781611176565b92915050565b600081359050610a3c8161118d565b92915050565b600060208284031215610a5457600080fd5b6000610a6284828501610a03565b91505092915050565b60008060408385031215610a7e57600080fd5b6000610a8c85828601610a03565b9250506020610a9d85828601610a2d565b9150509250929050565b600060208284031215610ab957600080fd5b6000610ac784828501610a18565b91505092915050565b610ad981610f0f565b82525050565b6000610aea82610dc8565b610af48185610dde565b9350610b04818560208601610f7b565b80840191505092915050565b610b1981610f57565b82525050565b6000610b2a82610dd3565b610b348185610de9565b9350610b44818560208601610f7b565b610b4d8161100c565b840191505092915050565b6000610b65600f83610de9565b9150610b708261101d565b602082019050919050565b6000610b88602683610de9565b9150610b9382611046565b604082019050919050565b6000610bab601b83610de9565b9150610bb682611095565b602082019050919050565b6000610bce601a83610de9565b9150610bd9826110be565b602082019050919050565b6000610bf1601d83610de9565b9150610bfc826110e7565b602082019050919050565b6000610c14602a83610de9565b9150610c1f82611110565b604082019050919050565b610c3381610f4d565b82525050565b6000610c458284610adf565b915081905092915050565b6000606082019050610c656000830186610ad0565b610c726020830185610ad0565b610c7f6040830184610c2a565b949350505050565b6000604082019050610c9c6000830185610ad0565b610ca96020830184610c2a565b9392505050565b6000602082019050610cc56000830184610b10565b92915050565b60006020820190508181036000830152610ce58184610b1f565b905092915050565b60006020820190508181036000830152610d0681610b58565b9050919050565b60006020820190508181036000830152610d2681610b7b565b9050919050565b60006020820190508181036000830152610d4681610b9e565b9050919050565b60006020820190508181036000830152610d6681610bc1565b9050919050565b60006020820190508181036000830152610d8681610be4565b9050919050565b60006020820190508181036000830152610da681610c07565b9050919050565b6000602082019050610dc26000830184610c2a565b92915050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b6000610e0582610f4d565b9150610e1083610f4d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610e4557610e44610fae565b5b828201905092915050565b6000610e5b82610f4d565b9150610e6683610f4d565b925082610e7657610e75610fdd565b5b828204905092915050565b6000610e8c82610f4d565b9150610e9783610f4d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615610ed057610ecf610fae565b5b828202905092915050565b6000610ee682610f4d565b9150610ef183610f4d565b925082821015610f0457610f03610fae565b5b828203905092915050565b6000610f1a82610f2d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000610f6282610f69565b9050919050565b6000610f7482610f2d565b9050919050565b60005b83811015610f99578082015181840152602081019050610f7e565b83811115610fa8576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000601f19601f8301169050919050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e742073686f756c6420626967676572207468616e20300000000000600082015250565b7f4e6f20636c61696d61626c652068756e6472656420746f6b656e000000000000600082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b61116881610f0f565b811461117357600080fd5b50565b61117f81610f21565b811461118a57600080fd5b50565b61119681610f4d565b81146111a157600080fd5b5056fea2646970667358221220f06065eb28b3df3c6669c7acd850a59e3724fc2d3c52aef8332f0c88cc75a86964736f6c6343000803003300000000000000000000000010010078a54396f62c96df8532dc2b4847d47ed300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000001e13380
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061007d5760003560e01c806354cd53be1161005b57806354cd53be14610100578063617f530814610130578063d01c44cd1461014c578063e1396fe3146101565761007d565b806312bd3962146100825780631481512d146100a0578063295d8dc1146100d0575b600080fd5b61008a610186565b6040516100979190610cb0565b60405180910390f35b6100ba60048036038101906100b59190610a42565b6101aa565b6040516100c79190610dad565b60405180910390f35b6100ea60048036038101906100e59190610a42565b6101f6565b6040516100f79190610dad565b60405180910390f35b61011a60048036038101906101159190610a42565b610313565b6040516101279190610dad565b60405180910390f35b61014a60048036038101906101459190610a6b565b61035f565b005b61015461052f565b005b610170600480360381019061016b9190610a42565b610662565b60405161017d9190610dad565b60405180910390f35b7f00000000000000000000000010010078a54396f62c96df8532dc2b4847d47ed381565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050919050565b600080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806060016040529081600082015481526020016001820154815260200160028201548152505090506000816020015114156102ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102a290610ced565b60405180910390fd5b6000805482600001516001548460200151426102c79190610edb565b6102d19190610e50565b6102db9190610e81565b6102e59190610e50565b905081604001518110610307578160400151816103029190610edb565b61030a565b60005b92505050919050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201549050919050565b60008114156103a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039a90610d2d565b60405180910390fd5b6103f03330837f00000000000000000000000010010078a54396f62c96df8532dc2b4847d47ed373ffffffffffffffffffffffffffffffffffffffff16610687909392919063ffffffff16565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060600160405290816000820154815260200160018201548152602001600282015481525050905060008160000151146104aa57818160400151826000015161047d9190610edb565b6104879190610dfa565b8160000181815250504281602001818152505060008160400181815250506104c9565b6040518060600160405280838152602001428152602001600081525090505b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082015181600001556020820151816001015560408201518160020155905050505050565b600061053a336101f6565b90506000811415610580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057790610d4d565b60405180910390fd5b6105cb33827f00000000000000000000000010010078a54396f62c96df8532dc2b4847d47ed373ffffffffffffffffffffffffffffffffffffffff166107109092919063ffffffff16565b80600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201546106199190610dfa565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555050565b600061066d82610313565b610676836101aa565b6106809190610edb565b9050919050565b61070a846323b872dd60e01b8585856040516024016106a893929190610c50565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610796565b50505050565b6107918363a9059cbb60e01b848460405160240161072f929190610c87565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610796565b505050565b60006107f8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661085d9092919063ffffffff16565b905060008151111561085857808060200190518101906108189190610aa7565b610857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084e90610d8d565b60405180910390fd5b5b505050565b606061086c8484600085610875565b90509392505050565b6060824710156108ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b190610d0d565b60405180910390fd5b6108c385610989565b610902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f990610d6d565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161092b9190610c39565b60006040518083038185875af1925050503d8060008114610968576040519150601f19603f3d011682016040523d82523d6000602084013e61096d565b606091505b509150915061097d82828661099c565b92505050949350505050565b600080823b905060008111915050919050565b606083156109ac578290506109fc565b6000835111156109bf5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f39190610ccb565b60405180910390fd5b9392505050565b600081359050610a128161115f565b92915050565b600081519050610a2781611176565b92915050565b600081359050610a3c8161118d565b92915050565b600060208284031215610a5457600080fd5b6000610a6284828501610a03565b91505092915050565b60008060408385031215610a7e57600080fd5b6000610a8c85828601610a03565b9250506020610a9d85828601610a2d565b9150509250929050565b600060208284031215610ab957600080fd5b6000610ac784828501610a18565b91505092915050565b610ad981610f0f565b82525050565b6000610aea82610dc8565b610af48185610dde565b9350610b04818560208601610f7b565b80840191505092915050565b610b1981610f57565b82525050565b6000610b2a82610dd3565b610b348185610de9565b9350610b44818560208601610f7b565b610b4d8161100c565b840191505092915050565b6000610b65600f83610de9565b9150610b708261101d565b602082019050919050565b6000610b88602683610de9565b9150610b9382611046565b604082019050919050565b6000610bab601b83610de9565b9150610bb682611095565b602082019050919050565b6000610bce601a83610de9565b9150610bd9826110be565b602082019050919050565b6000610bf1601d83610de9565b9150610bfc826110e7565b602082019050919050565b6000610c14602a83610de9565b9150610c1f82611110565b604082019050919050565b610c3381610f4d565b82525050565b6000610c458284610adf565b915081905092915050565b6000606082019050610c656000830186610ad0565b610c726020830185610ad0565b610c7f6040830184610c2a565b949350505050565b6000604082019050610c9c6000830185610ad0565b610ca96020830184610c2a565b9392505050565b6000602082019050610cc56000830184610b10565b92915050565b60006020820190508181036000830152610ce58184610b1f565b905092915050565b60006020820190508181036000830152610d0681610b58565b9050919050565b60006020820190508181036000830152610d2681610b7b565b9050919050565b60006020820190508181036000830152610d4681610b9e565b9050919050565b60006020820190508181036000830152610d6681610bc1565b9050919050565b60006020820190508181036000830152610d8681610be4565b9050919050565b60006020820190508181036000830152610da681610c07565b9050919050565b6000602082019050610dc26000830184610c2a565b92915050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b6000610e0582610f4d565b9150610e1083610f4d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610e4557610e44610fae565b5b828201905092915050565b6000610e5b82610f4d565b9150610e6683610f4d565b925082610e7657610e75610fdd565b5b828204905092915050565b6000610e8c82610f4d565b9150610e9783610f4d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615610ed057610ecf610fae565b5b828202905092915050565b6000610ee682610f4d565b9150610ef183610f4d565b925082821015610f0457610f03610fae565b5b828203905092915050565b6000610f1a82610f2d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000610f6282610f69565b9050919050565b6000610f7482610f2d565b9050919050565b60005b83811015610f99578082015181840152602081019050610f7e565b83811115610fa8576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000601f19601f8301169050919050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e742073686f756c6420626967676572207468616e20300000000000600082015250565b7f4e6f20636c61696d61626c652068756e6472656420746f6b656e000000000000600082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b61116881610f0f565b811461117357600080fd5b50565b61117f81610f21565b811461118a57600080fd5b50565b61119681610f4d565b81146111a157600080fd5b5056fea2646970667358221220f06065eb28b3df3c6669c7acd850a59e3724fc2d3c52aef8332f0c88cc75a86964736f6c63430008030033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000010010078a54396f62c96df8532dc2b4847d47ed300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000001e13380
-----Decoded View---------------
Arg [0] : hundred (address): 0x10010078a54396F62c96dF8532dc2B4847d47ED3
Arg [1] : _epochLength (uint256): 1
Arg [2] : totalVestingTime (uint256): 31536000
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000010010078a54396f62c96df8532dc2b4847d47ed3
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [2] : 0000000000000000000000000000000000000000000000000000000001e13380
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.022696 | 143,510.9694 | $3,257.07 |
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.