Overview
GLMR Balance
GLMR Value
$0.00View more zero value Internal Transactions in Advanced View mode
Cross-Chain Transactions
Loading...
Loading
Contract Name:
VestingMarketing
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at moonbeam.moonscan.io on 2022-01-28 */ // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^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 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) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^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() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual 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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) 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); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) 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); } } } } // File @openzeppelin/contracts/token/ERC20/utils/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^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 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"); } } } // File @openzeppelin/contracts/utils/math/[email protected] // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @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) { return a + b; } /** * @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 a - b; } /** * @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) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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 a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting 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) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File contracts/vestings/VestingMarketing.sol pragma solidity 0.8.11; contract VestingMarketing is Ownable { using SafeMath for uint256; using SafeERC20 for IERC20; uint256 public startTime; uint256 public lastClaimTime; uint256 private constant CLAIM_DELAY = 90 days; // 3months - 1 quarter uint256 private constant RELEASEAMOUNT = 70200000 ether; uint256 private immutable END_DAY; uint256 public epoch; address private beneficiary; // team multisig to claim tokens IERC20 private immutable glintToken; event Claimed(uint256 amount, uint256 epoch); constructor(address _glintTokenAddress, uint256 _startTime) { glintToken = IERC20(_glintTokenAddress); startTime = _startTime; //tge + 90 days END_DAY = _startTime.add(405 days); beneficiary = msg.sender; } function getCurrentEpoch() public view returns (uint256) { uint256 currentEpoch = block.timestamp.sub(startTime).div(CLAIM_DELAY); // get current epoch return currentEpoch; } function claimTokens() external { require(block.timestamp >= startTime, "start time not set"); require( block.timestamp >= lastClaimTime.add(CLAIM_DELAY), "delay since last claim not passed" ); if (block.timestamp > END_DAY) { claimDust(); } else { uint256 currentEpoch = getCurrentEpoch(); // get current epoch if (currentEpoch > epoch) { uint256 multiplier = 1+ currentEpoch.sub(epoch); glintToken.safeTransfer( beneficiary, RELEASEAMOUNT.mul(multiplier) ); epoch = epoch.add(multiplier); } else { glintToken.safeTransfer(beneficiary, RELEASEAMOUNT); epoch = epoch.add(1); } lastClaimTime = block.timestamp; emit Claimed(RELEASEAMOUNT, epoch); } } function getClaimAmount() external view returns (uint256) { uint256 currentEpoch = getCurrentEpoch(); // get current epoch if (currentEpoch > epoch) { uint256 multiplier = 1+ currentEpoch.sub(epoch); return RELEASEAMOUNT.mul(multiplier); } else { return RELEASEAMOUNT; } } function claimDust() public { require(block.timestamp >= END_DAY, "Vesting not yet finished"); glintToken.safeTransfer( beneficiary, glintToken.balanceOf(address(this)) ); } function setBeneficiary(address _addy) external onlyOwner { require(_addy != address(0)); beneficiary = _addy; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_glintTokenAddress","type":"address"},{"internalType":"uint256","name":"_startTime","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"epoch","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"claimDust","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"epoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentEpoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastClaimTime","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":[{"internalType":"address","name":"_addy","type":"address"}],"name":"setBeneficiary","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60c060405234801561001057600080fd5b50604051610dff380380610dff83398101604081905261002f916100e2565b6100383361007f565b6001600160a01b03821660a052600181905561006381630215ef806100cf602090811b61075717901c565b6080525050600480546001600160a01b03191633179055610142565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006100db828461011c565b9392505050565b600080604083850312156100f557600080fd5b82516001600160a01b038116811461010c57600080fd5b6020939093015192949293505050565b6000821982111561013d57634e487b7160e01b600052601160045260246000fd5b500190565b60805160a051610c8361017c6000396000818161037b015281816103c9015261060a0152600081816102e101526105580152610c836000f3fe608060405234801561001057600080fd5b50600436106100c95760003560e01c80638da5cb5b11610081578063c21bae0c1161005b578063c21bae0c14610143578063df90ebe81461014c578063f2fde38b1461015457600080fd5b80638da5cb5b14610117578063900cf0cf14610132578063b97dd9e21461013b57600080fd5b806371127ed2116100b257806371127ed2146100eb578063715018a61461010657806378e979251461010e57600080fd5b80631c31f710146100ce57806348c54b9d146100e3575b600080fd5b6100e16100dc366004610ae4565b610167565b005b6100e1610208565b6100f361045e565b6040519081526020015b60405180910390f35b6100e16104c7565b6100f360015481565b6000546040516001600160a01b0390911681526020016100fd565b6100f360035481565b6100f361052b565b6100f360025481565b6100e1610556565b6100e1610162366004610ae4565b610675565b6000546001600160a01b031633146101c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b0381166101d957600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60015442101561025a5760405162461bcd60e51b815260206004820152601260248201527f73746172742074696d65206e6f7420736574000000000000000000000000000060448201526064016101bd565b60025461026a906276a700610757565b4210156102df5760405162461bcd60e51b815260206004820152602160248201527f64656c61792073696e6365206c61737420636c61696d206e6f7420706173736560448201527f640000000000000000000000000000000000000000000000000000000000000060648201526084016101bd565b7f00000000000000000000000000000000000000000000000000000000000000004211156103115761030f610556565b565b600061031b61052b565b90506003548111156103b857600061033e6003548361076a90919063ffffffff16565b610349906001610b23565b6004549091506103a2906001600160a01b03166103716a3a116da01bcb8ff300000084610776565b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169190610782565b6003546103af9082610757565b6003555061040f565b6004546103fd906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811691166a3a116da01bcb8ff3000000610782565b60035461040b906001610757565b6003555b42600255600354604080516a3a116da01bcb8ff3000000815260208101929092527fc83b5086ce94ec8d5a88a9f5fea4b18a522bb238ed0d2d8abd959549a80c16b8910160405180910390a150565b60008061046961052b565b90506003548111156104b557600061048c6003548361076a90919063ffffffff16565b610497906001610b23565b90506104ae6a3a116da01bcb8ff300000082610776565b9250505090565b6a3a116da01bcb8ff300000091505090565b6000546001600160a01b031633146105215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101bd565b61030f6000610807565b6000806105506276a70061054a6001544261076a90919063ffffffff16565b90610864565b92915050565b7f00000000000000000000000000000000000000000000000000000000000000004210156105c65760405162461bcd60e51b815260206004820152601860248201527f56657374696e67206e6f74207965742066696e6973686564000000000000000060448201526064016101bd565b600480546040517f70a08231000000000000000000000000000000000000000000000000000000008152309281019290925261030f916001600160a01b03918216917f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa158015610651573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103719190610b3b565b6000546001600160a01b031633146106cf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101bd565b6001600160a01b03811661074b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016101bd565b61075481610807565b50565b60006107638284610b23565b9392505050565b60006107638284610b54565b60006107638284610b6b565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610802908490610870565b505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006107638284610b8a565b60006108c5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166109559092919063ffffffff16565b80519091501561080257808060200190518101906108e39190610bac565b6108025760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016101bd565b6060610964848460008561096c565b949350505050565b6060824710156109e45760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016101bd565b843b610a325760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016101bd565b600080866001600160a01b03168587604051610a4e9190610bfe565b60006040518083038185875af1925050503d8060008114610a8b576040519150601f19603f3d011682016040523d82523d6000602084013e610a90565b606091505b5091509150610aa0828286610aab565b979650505050505050565b60608315610aba575081610763565b825115610aca5782518084602001fd5b8160405162461bcd60e51b81526004016101bd9190610c1a565b600060208284031215610af657600080fd5b81356001600160a01b038116811461076357600080fd5b634e487b7160e01b600052601160045260246000fd5b60008219821115610b3657610b36610b0d565b500190565b600060208284031215610b4d57600080fd5b5051919050565b600082821015610b6657610b66610b0d565b500390565b6000816000190483118215151615610b8557610b85610b0d565b500290565b600082610ba757634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215610bbe57600080fd5b8151801515811461076357600080fd5b60005b83811015610be9578181015183820152602001610bd1565b83811115610bf8576000848401525b50505050565b60008251610c10818460208701610bce565b9190910192915050565b6020815260008251806020840152610c39816040850160208701610bce565b601f01601f1916919091016040019291505056fea26469706673582212207c14a93b1f85a55a2aba03114bca4d2e9c67b856de412e912051b3e0b0c7829e64736f6c634300080b0033000000000000000000000000cd3b51d98478d53f4515a306be565c6eebef1d5800000000000000000000000000000000000000000000000000000000625d36ff
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100c95760003560e01c80638da5cb5b11610081578063c21bae0c1161005b578063c21bae0c14610143578063df90ebe81461014c578063f2fde38b1461015457600080fd5b80638da5cb5b14610117578063900cf0cf14610132578063b97dd9e21461013b57600080fd5b806371127ed2116100b257806371127ed2146100eb578063715018a61461010657806378e979251461010e57600080fd5b80631c31f710146100ce57806348c54b9d146100e3575b600080fd5b6100e16100dc366004610ae4565b610167565b005b6100e1610208565b6100f361045e565b6040519081526020015b60405180910390f35b6100e16104c7565b6100f360015481565b6000546040516001600160a01b0390911681526020016100fd565b6100f360035481565b6100f361052b565b6100f360025481565b6100e1610556565b6100e1610162366004610ae4565b610675565b6000546001600160a01b031633146101c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b0381166101d957600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60015442101561025a5760405162461bcd60e51b815260206004820152601260248201527f73746172742074696d65206e6f7420736574000000000000000000000000000060448201526064016101bd565b60025461026a906276a700610757565b4210156102df5760405162461bcd60e51b815260206004820152602160248201527f64656c61792073696e6365206c61737420636c61696d206e6f7420706173736560448201527f640000000000000000000000000000000000000000000000000000000000000060648201526084016101bd565b7f000000000000000000000000000000000000000000000000000000006473267f4211156103115761030f610556565b565b600061031b61052b565b90506003548111156103b857600061033e6003548361076a90919063ffffffff16565b610349906001610b23565b6004549091506103a2906001600160a01b03166103716a3a116da01bcb8ff300000084610776565b6001600160a01b037f000000000000000000000000cd3b51d98478d53f4515a306be565c6eebef1d58169190610782565b6003546103af9082610757565b6003555061040f565b6004546103fd906001600160a01b037f000000000000000000000000cd3b51d98478d53f4515a306be565c6eebef1d58811691166a3a116da01bcb8ff3000000610782565b60035461040b906001610757565b6003555b42600255600354604080516a3a116da01bcb8ff3000000815260208101929092527fc83b5086ce94ec8d5a88a9f5fea4b18a522bb238ed0d2d8abd959549a80c16b8910160405180910390a150565b60008061046961052b565b90506003548111156104b557600061048c6003548361076a90919063ffffffff16565b610497906001610b23565b90506104ae6a3a116da01bcb8ff300000082610776565b9250505090565b6a3a116da01bcb8ff300000091505090565b6000546001600160a01b031633146105215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101bd565b61030f6000610807565b6000806105506276a70061054a6001544261076a90919063ffffffff16565b90610864565b92915050565b7f000000000000000000000000000000000000000000000000000000006473267f4210156105c65760405162461bcd60e51b815260206004820152601860248201527f56657374696e67206e6f74207965742066696e6973686564000000000000000060448201526064016101bd565b600480546040517f70a08231000000000000000000000000000000000000000000000000000000008152309281019290925261030f916001600160a01b03918216917f000000000000000000000000cd3b51d98478d53f4515a306be565c6eebef1d5816906370a0823190602401602060405180830381865afa158015610651573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103719190610b3b565b6000546001600160a01b031633146106cf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101bd565b6001600160a01b03811661074b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016101bd565b61075481610807565b50565b60006107638284610b23565b9392505050565b60006107638284610b54565b60006107638284610b6b565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610802908490610870565b505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006107638284610b8a565b60006108c5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166109559092919063ffffffff16565b80519091501561080257808060200190518101906108e39190610bac565b6108025760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016101bd565b6060610964848460008561096c565b949350505050565b6060824710156109e45760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016101bd565b843b610a325760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016101bd565b600080866001600160a01b03168587604051610a4e9190610bfe565b60006040518083038185875af1925050503d8060008114610a8b576040519150601f19603f3d011682016040523d82523d6000602084013e610a90565b606091505b5091509150610aa0828286610aab565b979650505050505050565b60608315610aba575081610763565b825115610aca5782518084602001fd5b8160405162461bcd60e51b81526004016101bd9190610c1a565b600060208284031215610af657600080fd5b81356001600160a01b038116811461076357600080fd5b634e487b7160e01b600052601160045260246000fd5b60008219821115610b3657610b36610b0d565b500190565b600060208284031215610b4d57600080fd5b5051919050565b600082821015610b6657610b66610b0d565b500390565b6000816000190483118215151615610b8557610b85610b0d565b500290565b600082610ba757634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215610bbe57600080fd5b8151801515811461076357600080fd5b60005b83811015610be9578181015183820152602001610bd1565b83811115610bf8576000848401525b50505050565b60008251610c10818460208701610bce565b9190910192915050565b6020815260008251806020840152610c39816040850160208701610bce565b601f01601f1916919091016040019291505056fea26469706673582212207c14a93b1f85a55a2aba03114bca4d2e9c67b856de412e912051b3e0b0c7829e64736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000cd3b51d98478d53f4515a306be565c6eebef1d5800000000000000000000000000000000000000000000000000000000625d36ff
-----Decoded View---------------
Arg [0] : _glintTokenAddress (address): 0xcd3B51D98478D53F4515A306bE565c6EebeF1D58
Arg [1] : _startTime (uint256): 1650276095
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000cd3b51d98478d53f4515a306be565c6eebef1d58
Arg [1] : 00000000000000000000000000000000000000000000000000000000625d36ff
Deployed Bytecode Sourcemap
25643:2719:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28224:135;;;;;;:::i;:::-;;:::i;:::-;;26648:969;;;:::i;27625:352::-;;;:::i;:::-;;;474:25:1;;;462:2;447:18;27625:352:0;;;;;;;;2649:103;;;:::i;25755:24::-;;;;;;1998:87;2044:7;2071:6;1998:87;;-1:-1:-1;;;;;2071:6:0;;;656:74:1;;644:2;629:18;1998:87:0;510:226:1;25999:20:0;;;;;;26443:197;;;:::i;25786:28::-;;;;;;27985:231;;;:::i;2907:201::-;;;;;;:::i;:::-;;:::i;28224:135::-;2044:7;2071:6;-1:-1:-1;;;;;2071:6:0;796:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;943:2:1;2210:68:0;;;925:21:1;;;962:18;;;955:30;1021:34;1001:18;;;994:62;1073:18;;2210:68:0;;;;;;;;;-1:-1:-1;;;;;28301:19:0;::::1;28293:28;;;::::0;::::1;;28332:11;:19:::0;;-1:-1:-1;;28332:19:0::1;-1:-1:-1::0;;;;;28332:19:0;;;::::1;::::0;;;::::1;::::0;;28224:135::o;26648:969::-;26718:9;;26699:15;:28;;26691:59;;;;-1:-1:-1;;;26691:59:0;;1304:2:1;26691:59:0;;;1286:21:1;1343:2;1323:18;;;1316:30;1382:20;1362:18;;;1355:48;1420:18;;26691:59:0;1102:342:1;26691:59:0;26802:13;;:30;;25860:7;26802:17;:30::i;:::-;26783:15;:49;;26761:132;;;;-1:-1:-1;;;26761:132:0;;1651:2:1;26761:132:0;;;1633:21:1;1690:2;1670:18;;;1663:30;1729:34;1709:18;;;1702:62;1800:3;1780:18;;;1773:31;1821:19;;26761:132:0;1449:397:1;26761:132:0;26926:7;26908:15;:25;26904:706;;;26950:11;:9;:11::i;:::-;26648:969::o;26904:706::-;26994:20;27017:17;:15;:17::i;:::-;26994:40;;27089:5;;27074:12;:20;27070:434;;;27115:18;27139:23;27156:5;;27139:12;:16;;:23;;;;:::i;:::-;27136:26;;:1;:26;:::i;:::-;27227:11;;27115:47;;-1:-1:-1;27181:128:0;;-1:-1:-1;;;;;27227:11:0;27261:29;25938:14;27115:47;27261:17;:29::i;:::-;-1:-1:-1;;;;;27181:10:0;:23;;:128;:23;:128::i;:::-;27336:5;;:21;;27346:10;27336:9;:21::i;:::-;27328:5;:29;-1:-1:-1;27070:434:0;;;27422:11;;27398:51;;-1:-1:-1;;;;;27398:10:0;:23;;;27422:11;25938:14;27398:23;:51::i;:::-;27476:5;;:12;;27486:1;27476:9;:12::i;:::-;27468:5;:20;27070:434;27534:15;27518:13;:31;27592:5;;27569:29;;;25938:14;2347:25:1;;2403:2;2388:18;;2381:34;;;;27569:29:0;;2320:18:1;27569:29:0;;;;;;;26979:631;26648:969::o;27625:352::-;27674:7;27694:20;27717:17;:15;:17::i;:::-;27694:40;;27785:5;;27770:12;:20;27766:204;;;27807:18;27831:23;27848:5;;27831:12;:16;;:23;;;;:::i;:::-;27828:26;;:1;:26;:::i;:::-;27807:47;-1:-1:-1;27876:29:0;25938:14;27807:47;27876:17;:29::i;:::-;27869:36;;;;27625:352;:::o;27766:204::-;25938:14;27938:20;;;27625:352;:::o;2649:103::-;2044:7;2071:6;-1:-1:-1;;;;;2071:6:0;796:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;943:2:1;2210:68:0;;;925:21:1;;;962:18;;;955:30;1021:34;1001:18;;;994:62;1073:18;;2210:68:0;741:356:1;2210:68:0;2714:30:::1;2741:1;2714:18;:30::i;26443:197::-:0;26491:7;26511:20;26534:47;25860:7;26534:30;26554:9;;26534:15;:19;;:30;;;;:::i;:::-;:34;;:47::i;:::-;26511:70;26443:197;-1:-1:-1;;26443:197:0:o;27985:231::-;28051:7;28032:15;:26;;28024:63;;;;-1:-1:-1;;;28024:63:0;;2628:2:1;28024:63:0;;;2610:21:1;2667:2;2647:18;;;2640:30;2706:26;2686:18;;;2679:54;2750:18;;28024:63:0;2426:348:1;28024:63:0;28136:11;;;28162:35;;;;;28191:4;28162:35;;;656:74:1;;;;28098:110:0;;-1:-1:-1;;;;;28136:11:0;;;;28162:10;:20;;;;629:18:1;;28162:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;2907:201::-;2044:7;2071:6;-1:-1:-1;;;;;2071:6:0;796:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;943:2:1;2210:68:0;;;925:21:1;;;962:18;;;955:30;1021:34;1001:18;;;994:62;1073:18;;2210:68:0;741:356:1;2210:68:0;-1:-1:-1;;;;;2996:22:0;::::1;2988:73;;;::::0;-1:-1:-1;;;2988:73:0;;3170:2:1;2988:73:0::1;::::0;::::1;3152:21:1::0;3209:2;3189:18;;;3182:30;3248:34;3228:18;;;3221:62;3319:8;3299:18;;;3292:36;3345:19;;2988:73:0::1;2968:402:1::0;2988:73:0::1;3072:28;3091:8;3072:18;:28::i;:::-;2907:201:::0;:::o;21398:98::-;21456:7;21483:5;21487:1;21483;:5;:::i;:::-;21476:12;21398:98;-1:-1:-1;;;21398:98:0:o;21779:::-;21837:7;21864:5;21868:1;21864;:5;:::i;22136:98::-;22194:7;22221:5;22225:1;22221;:5;:::i;15232:211::-;15376:58;;;-1:-1:-1;;;;;3870:55:1;;15376:58:0;;;3852:74:1;3942:18;;;;3935:34;;;15376:58:0;;;;;;;;;;3825:18:1;;;;15376:58:0;;;;;;;;;;15399:23;15376:58;;;15349:86;;15369:5;;15349:19;:86::i;:::-;15232:211;;;:::o;3268:191::-;3342:16;3361:6;;-1:-1:-1;;;;;3378:17:0;;;-1:-1:-1;;3378:17:0;;;;;;3411:40;;3361:6;;;;;;;3411:40;;3342:16;3411:40;3331:128;3268:191;:::o;22535:98::-;22593:7;22620:5;22624:1;22620;:5;:::i;17805:716::-;18229:23;18255:69;18283:4;18255:69;;;;;;;;;;;;;;;;;18263:5;-1:-1:-1;;;;;18255:27:0;;;:69;;;;;:::i;:::-;18339:17;;18229:95;;-1:-1:-1;18339:21:0;18335:179;;18436:10;18425:30;;;;;;;;;;;;:::i;:::-;18417:85;;;;-1:-1:-1;;;18417:85:0;;4743:2:1;18417:85:0;;;4725:21:1;4782:2;4762:18;;;4755:30;4821:34;4801:18;;;4794:62;4892:12;4872:18;;;4865:40;4922:19;;18417:85:0;4541:406:1;10004:229:0;10141:12;10173:52;10195:6;10203:4;10209:1;10212:12;10173:21;:52::i;:::-;10166:59;10004:229;-1:-1:-1;;;;10004:229:0:o;11124:510::-;11294:12;11352:5;11327:21;:30;;11319:81;;;;-1:-1:-1;;;11319:81:0;;5154:2:1;11319:81:0;;;5136:21:1;5193:2;5173:18;;;5166:30;5232:34;5212:18;;;5205:62;5303:8;5283:18;;;5276:36;5329:19;;11319:81:0;4952:402:1;11319:81:0;7521:20;;11411:60;;;;-1:-1:-1;;;11411:60:0;;5561:2:1;11411:60:0;;;5543:21:1;5600:2;5580:18;;;5573:30;5639:31;5619:18;;;5612:59;5688:18;;11411:60:0;5359:353:1;11411:60:0;11485:12;11499:23;11526:6;-1:-1:-1;;;;;11526:11:0;11545:5;11552:4;11526:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11484:73;;;;11575:51;11592:7;11601:10;11613:12;11575:16;:51::i;:::-;11568:58;11124:510;-1:-1:-1;;;;;;;11124:510:0:o;13810:712::-;13960:12;13989:7;13985:530;;;-1:-1:-1;14020:10:0;14013:17;;13985:530;14134:17;;:21;14130:374;;14332:10;14326:17;14393:15;14380:10;14376:2;14372:19;14365:44;14130:374;14475:12;14468:20;;-1:-1:-1;;;14468:20:0;;;;;;;;:::i;14:309:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;181:9;168:23;-1:-1:-1;;;;;224:5:1;220:54;213:5;210:65;200:93;;289:1;286;279:12;1851:184;-1:-1:-1;;;1900:1:1;1893:88;2000:4;1997:1;1990:15;2024:4;2021:1;2014:15;2040:128;2080:3;2111:1;2107:6;2104:1;2101:13;2098:39;;;2117:18;;:::i;:::-;-1:-1:-1;2153:9:1;;2040:128::o;2779:184::-;2849:6;2902:2;2890:9;2881:7;2877:23;2873:32;2870:52;;;2918:1;2915;2908:12;2870:52;-1:-1:-1;2941:16:1;;2779:184;-1:-1:-1;2779:184:1:o;3375:125::-;3415:4;3443:1;3440;3437:8;3434:34;;;3448:18;;:::i;:::-;-1:-1:-1;3485:9:1;;3375:125::o;3505:168::-;3545:7;3611:1;3607;3603:6;3599:14;3596:1;3593:21;3588:1;3581:9;3574:17;3570:45;3567:71;;;3618:18;;:::i;:::-;-1:-1:-1;3658:9:1;;3505:168::o;3980:274::-;4020:1;4046;4036:189;;-1:-1:-1;;;4078:1:1;4071:88;4182:4;4179:1;4172:15;4210:4;4207:1;4200:15;4036:189;-1:-1:-1;4239:9:1;;3980:274::o;4259:277::-;4326:6;4379:2;4367:9;4358:7;4354:23;4350:32;4347:52;;;4395:1;4392;4385:12;4347:52;4427:9;4421:16;4480:5;4473:13;4466:21;4459:5;4456:32;4446:60;;4502:1;4499;4492:12;5717:258;5789:1;5799:113;5813:6;5810:1;5807:13;5799:113;;;5889:11;;;5883:18;5870:11;;;5863:39;5835:2;5828:10;5799:113;;;5930:6;5927:1;5924:13;5921:48;;;5965:1;5956:6;5951:3;5947:16;5940:27;5921:48;;5717:258;;;:::o;5980:274::-;6109:3;6147:6;6141:13;6163:53;6209:6;6204:3;6197:4;6189:6;6185:17;6163:53;:::i;:::-;6232:16;;;;;5980:274;-1:-1:-1;;5980:274:1:o;6259:383::-;6408:2;6397:9;6390:21;6371:4;6440:6;6434:13;6483:6;6478:2;6467:9;6463:18;6456:34;6499:66;6558:6;6553:2;6542:9;6538:18;6533:2;6525:6;6521:15;6499:66;:::i;:::-;6626:2;6605:15;-1:-1:-1;;6601:29:1;6586:45;;;;6633:2;6582:54;;6259:383;-1:-1:-1;;6259:383:1:o
Swarm Source
ipfs://7c14a93b1f85a55a2aba03114bca4d2e9c67b856de412e912051b3e0b0c7829e
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in GLMR
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.