More Info
Private Name Tags
ContractCreator
Loading...
Loading
Contract Name:
AirdropClaim
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "../interfaces/IVotingEscrow.sol"; import "../interfaces/IVesting.sol"; import "../interfaces/IAirdropClaim.sol"; contract AirdropClaim is ReentrancyGuard, Ownable, IAirdropClaim { using SafeERC20 for IERC20; uint256 public veShare; uint256 public constant PERCENT_PRECISION = 10_000; uint256 public constant LOCK_PERIOD = 2 * 365 * 86400; address public ve; address public merkle; address public vesting; IERC20 public token; modifier onlyMerkle { require(msg.sender == merkle, 'not merkle'); _; } constructor(address _token, address _ve, address _vesting, uint256 _veShare) { require(_veShare <= PERCENT_PRECISION, "bade percent"); token = IERC20(_token); ve = _ve; vesting = _vesting; veShare = _veShare; } /// @notice claim the given amount and send to _to. Checks are done by merkle tree contract. (eg.: 60% veSWPx 40% $SWPx linear vesting) function claim(address _who, uint _amount, address _to) external nonReentrant onlyMerkle { require(token.balanceOf(address(this)) >= _amount, 'not enough token'); uint256 _veShareAmount = (veShare * _amount) / PERCENT_PRECISION; if (_veShareAmount > 0) { address _ve = ve; token.approve(_ve, 0); token.approve(_ve, _veShareAmount); uint256 _tokenId = IVotingEscrow(_ve).create_lock_for(_veShareAmount, LOCK_PERIOD, _to); require(_tokenId != 0); require(IVotingEscrow(ve).ownerOf(_tokenId) == _to, 'wrong ve mint'); } uint256 vestingShareAmount = _amount - _veShareAmount; if (vestingShareAmount > 0) { address _vesting = vesting; token.approve(_vesting, 0); token.approve(_vesting, vestingShareAmount); IVesting(_vesting).vestTokensFor(_to, vestingShareAmount); } //(address indexed who, address indexed to, uint256 amount, uint256 veShareAmount, uint256 vestingShareAmount) emit Claimed({ who: _who, to: _to, amount: _amount, veShareAmount: _veShareAmount, vestingShareAmount: vestingShareAmount }); } /* OWNER FUNCTIONS */ function withdrawTokens(uint256 amount) external onlyOwner { token.safeTransfer(msg.sender, amount); } function setVeShare(uint256 newValue) external onlyOwner { require(newValue <= PERCENT_PRECISION, "bad percent"); veShare = newValue; } function setMerkleTreeContract(address _merkle) external onlyOwner { require(_merkle != address(0)); merkle = _merkle; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ 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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied 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. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @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 making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.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)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @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 // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; interface IAirdropClaim { event Claimed(address indexed who, address indexed to, uint256 amount, uint256 veShareAmount, uint256 vestingShareAmount); function claim(address who, uint amount, address to) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; interface IVesting { struct UserVestingInfo { uint256 amount; uint256 start; uint256 claimed; uint256 vestingCliffSnapshot; uint256 vestingPeriodSnapshot; } event VestingCliffChanged(uint256 newValue); event VestingPeriodChanged(uint256 newValue); event VestedTokens(address indexed user, uint256 amount); event Claimed(address indexed user, uint256 vestingId, uint256 amount); function TOKEN() external view returns (address); function vestingCliff() external view returns (uint256); function vestingPeriod() external view returns (uint256); function vestTokensFor(address user, uint256 amount) external; function claimAll() external; function claim(uint256 vestingId) external; function claimableTotal(address user) external view returns(uint256 total); function claimable( address user, uint256 vestingId ) external view returns (uint256); function userVestingInfo( address user ) external view returns (UserVestingInfo[] memory); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.13; interface IVotingEscrow { struct Point { int128 bias; int128 slope; // # -dweight / dt uint256 ts; uint256 blk; // block } struct LockedBalance { int128 amount; uint start; uint end; } function create_lock_for(uint _value, uint _lock_duration, address _to) external returns (uint); function locked(uint id) external view returns(LockedBalance memory); function tokenOfOwnerByIndex(address _owner, uint _tokenIndex) external view returns (uint); function token() external view returns (address); function team() external returns (address); function epoch() external view returns (uint); function point_history(uint loc) external view returns (Point memory); function user_point_history(uint tokenId, uint loc) external view returns (Point memory); function user_point_epoch(uint tokenId) external view returns (uint); function ownerOf(uint) external view returns (address); function isApprovedOrOwner(address, uint) external view returns (bool); function transferFrom(address, address, uint) external; function voted(uint) external view returns (bool); function attachments(uint) external view returns (uint); function voting(uint tokenId) external; function abstain(uint tokenId) external; function attach(uint tokenId) external; function detach(uint tokenId) external; function checkpoint() external; function deposit_for(uint tokenId, uint value) external; function balanceOfAtNFT(uint _tokenId, uint _block) external view returns (uint); function balanceOfNFT(uint _id) external view returns (uint); function balanceOf(address _owner) external view returns (uint); function totalSupply() external view returns (uint); function supply() external view returns (uint); function decimals() external view returns(uint8); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_ve","type":"address"},{"internalType":"address","name":"_vesting","type":"address"},{"internalType":"uint256","name":"_veShare","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"who","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"veShareAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"vestingShareAmount","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":"LOCK_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERCENT_PRECISION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_who","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"merkle","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"_merkle","type":"address"}],"name":"setMerkleTreeContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"setVeShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ve","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"veShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vesting","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50604051610fbe380380610fbe83398101604081905261002f91610135565b600160005561003d336100c7565b6127108111156100825760405162461bcd60e51b815260206004820152600c60248201526b18985919481c195c98d95b9d60a21b604482015260640160405180910390fd5b600680546001600160a01b03199081166001600160a01b0396871617909155600380548216948616949094179093556005805490931691909316179055600255610180565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80516001600160a01b038116811461013057600080fd5b919050565b6000806000806080858703121561014b57600080fd5b61015485610119565b935061016260208601610119565b925061017060408601610119565b6060959095015193969295505050565b610e2f8061018f6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063c584b9b511610066578063c584b9b5146101bb578063f2fde38b146101ce578063fc0c546a146101e1578063ffe8e372146101f457600080fd5b8063715018a61461018f5780638da5cb5b146101975780639e96a260146101a857600080fd5b8063315a095d116100c8578063315a095d1461014d57806344c63eec1461016057806365448c421461017357806368817cd11461018657600080fd5b806306ad05ab146100ef5780631820cabb146101045780631f85071614610122575b600080fd5b6101026100fd366004610c35565b6101fd565b005b61010f6303c2670081565b6040519081526020015b60405180910390f35b600354610135906001600160a01b031681565b6040516001600160a01b039091168152602001610119565b61010261015b366004610c59565b61023a565b600554610135906001600160a01b031681565b610102610181366004610c59565b61025c565b61010f60025481565b6101026102ae565b6001546001600160a01b0316610135565b6101026101b6366004610c72565b6102c2565b600454610135906001600160a01b031681565b6101026101dc366004610c35565b6107f1565b600654610135906001600160a01b031681565b61010f61271081565b610205610867565b6001600160a01b03811661021857600080fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b610242610867565b600654610259906001600160a01b031633836108c1565b50565b610264610867565b6127108111156102a95760405162461bcd60e51b815260206004820152600b60248201526a189859081c195c98d95b9d60aa1b60448201526064015b60405180910390fd5b600255565b6102b6610867565b6102c06000610913565b565b6102ca610965565b6004546001600160a01b031633146103115760405162461bcd60e51b815260206004820152600a6024820152696e6f74206d65726b6c6560b01b60448201526064016102a0565b6006546040516370a0823160e01b815230600482015283916001600160a01b0316906370a0823190602401602060405180830381865afa158015610359573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061037d9190610cb4565b10156103be5760405162461bcd60e51b815260206004820152601060248201526f3737ba1032b737bab3b4103a37b5b2b760811b60448201526064016102a0565b6000612710836002546103d19190610ce3565b6103db9190610d02565b905080156106215760035460065460405163095ea7b360e01b81526001600160a01b039283166004820181905260006024830152929091169063095ea7b3906044016020604051808303816000875af115801561043c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104609190610d24565b5060065460405163095ea7b360e01b81526001600160a01b038381166004830152602482018590529091169063095ea7b3906044016020604051808303816000875af11580156104b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104d89190610d24565b5060405163d4e54c3b60e01b8152600481018390526303c2670060248201526001600160a01b0384811660448301526000919083169063d4e54c3b906064016020604051808303816000875af1158015610536573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061055a9190610cb4565b90508060000361056957600080fd5b6003546040516331a9108f60e11b8152600481018390526001600160a01b03868116921690636352211e90602401602060405180830381865afa1580156105b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105d89190610d46565b6001600160a01b03161461061e5760405162461bcd60e51b815260206004820152600d60248201526c1ddc9bdb99c81d99481b5a5b9d609a1b60448201526064016102a0565b50505b600061062d8285610d63565b9050801561078f5760055460065460405163095ea7b360e01b81526001600160a01b039283166004820181905260006024830152929091169063095ea7b3906044016020604051808303816000875af115801561068e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b29190610d24565b5060065460405163095ea7b360e01b81526001600160a01b038381166004830152602482018590529091169063095ea7b3906044016020604051808303816000875af1158015610706573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061072a9190610d24565b5060405163c6623a1760e01b81526001600160a01b0385811660048301526024820184905282169063c6623a1790604401600060405180830381600087803b15801561077557600080fd5b505af1158015610789573d6000803e3d6000fd5b50505050505b60408051858152602081018490529081018290526001600160a01b0380851691908716907fd795915374024be1f03204e052bd584b33bb85c9128ede9c54adbe0bbdc220959060600160405180910390a350506107ec6001600055565b505050565b6107f9610867565b6001600160a01b03811661085e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102a0565b61025981610913565b6001546001600160a01b031633146102c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102a0565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526107ec9084906109be565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6002600054036109b75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016102a0565b6002600055565b6000610a13826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610a909092919063ffffffff16565b8051909150156107ec5780806020019051810190610a319190610d24565b6107ec5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016102a0565b6060610a9f8484600085610aa7565b949350505050565b606082471015610b085760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016102a0565b600080866001600160a01b03168587604051610b249190610daa565b60006040518083038185875af1925050503d8060008114610b61576040519150601f19603f3d011682016040523d82523d6000602084013e610b66565b606091505b5091509150610b7787838387610b82565b979650505050505050565b60608315610bf1578251600003610bea576001600160a01b0385163b610bea5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102a0565b5081610a9f565b610a9f8383815115610c065781518083602001fd5b8060405162461bcd60e51b81526004016102a09190610dc6565b6001600160a01b038116811461025957600080fd5b600060208284031215610c4757600080fd5b8135610c5281610c20565b9392505050565b600060208284031215610c6b57600080fd5b5035919050565b600080600060608486031215610c8757600080fd5b8335610c9281610c20565b9250602084013591506040840135610ca981610c20565b809150509250925092565b600060208284031215610cc657600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615610cfd57610cfd610ccd565b500290565b600082610d1f57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215610d3657600080fd5b81518015158114610c5257600080fd5b600060208284031215610d5857600080fd5b8151610c5281610c20565b600082821015610d7557610d75610ccd565b500390565b60005b83811015610d95578181015183820152602001610d7d565b83811115610da4576000848401525b50505050565b60008251610dbc818460208701610d7a565b9190910192915050565b6020815260008251806020840152610de5816040850160208701610d7a565b601f01601f1916919091016040019291505056fea2646970667358221220ee3bed11a691f071a2761272a85a9121bf575bb385e88d25e30b6b80cadac9e164736f6c634300080d003300000000000000000000000090c44218e202995f1c06cb0f0e452dd3b6d8ebdf000000000000000000000000329d9ca4fad82d10f128050535c138d3bd83e39700000000000000000000000058af3e6fdf9f8a607b54d492757cc43777e380840000000000000000000000000000000000000000000000000000000000001770
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063c584b9b511610066578063c584b9b5146101bb578063f2fde38b146101ce578063fc0c546a146101e1578063ffe8e372146101f457600080fd5b8063715018a61461018f5780638da5cb5b146101975780639e96a260146101a857600080fd5b8063315a095d116100c8578063315a095d1461014d57806344c63eec1461016057806365448c421461017357806368817cd11461018657600080fd5b806306ad05ab146100ef5780631820cabb146101045780631f85071614610122575b600080fd5b6101026100fd366004610c35565b6101fd565b005b61010f6303c2670081565b6040519081526020015b60405180910390f35b600354610135906001600160a01b031681565b6040516001600160a01b039091168152602001610119565b61010261015b366004610c59565b61023a565b600554610135906001600160a01b031681565b610102610181366004610c59565b61025c565b61010f60025481565b6101026102ae565b6001546001600160a01b0316610135565b6101026101b6366004610c72565b6102c2565b600454610135906001600160a01b031681565b6101026101dc366004610c35565b6107f1565b600654610135906001600160a01b031681565b61010f61271081565b610205610867565b6001600160a01b03811661021857600080fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b610242610867565b600654610259906001600160a01b031633836108c1565b50565b610264610867565b6127108111156102a95760405162461bcd60e51b815260206004820152600b60248201526a189859081c195c98d95b9d60aa1b60448201526064015b60405180910390fd5b600255565b6102b6610867565b6102c06000610913565b565b6102ca610965565b6004546001600160a01b031633146103115760405162461bcd60e51b815260206004820152600a6024820152696e6f74206d65726b6c6560b01b60448201526064016102a0565b6006546040516370a0823160e01b815230600482015283916001600160a01b0316906370a0823190602401602060405180830381865afa158015610359573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061037d9190610cb4565b10156103be5760405162461bcd60e51b815260206004820152601060248201526f3737ba1032b737bab3b4103a37b5b2b760811b60448201526064016102a0565b6000612710836002546103d19190610ce3565b6103db9190610d02565b905080156106215760035460065460405163095ea7b360e01b81526001600160a01b039283166004820181905260006024830152929091169063095ea7b3906044016020604051808303816000875af115801561043c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104609190610d24565b5060065460405163095ea7b360e01b81526001600160a01b038381166004830152602482018590529091169063095ea7b3906044016020604051808303816000875af11580156104b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104d89190610d24565b5060405163d4e54c3b60e01b8152600481018390526303c2670060248201526001600160a01b0384811660448301526000919083169063d4e54c3b906064016020604051808303816000875af1158015610536573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061055a9190610cb4565b90508060000361056957600080fd5b6003546040516331a9108f60e11b8152600481018390526001600160a01b03868116921690636352211e90602401602060405180830381865afa1580156105b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105d89190610d46565b6001600160a01b03161461061e5760405162461bcd60e51b815260206004820152600d60248201526c1ddc9bdb99c81d99481b5a5b9d609a1b60448201526064016102a0565b50505b600061062d8285610d63565b9050801561078f5760055460065460405163095ea7b360e01b81526001600160a01b039283166004820181905260006024830152929091169063095ea7b3906044016020604051808303816000875af115801561068e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b29190610d24565b5060065460405163095ea7b360e01b81526001600160a01b038381166004830152602482018590529091169063095ea7b3906044016020604051808303816000875af1158015610706573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061072a9190610d24565b5060405163c6623a1760e01b81526001600160a01b0385811660048301526024820184905282169063c6623a1790604401600060405180830381600087803b15801561077557600080fd5b505af1158015610789573d6000803e3d6000fd5b50505050505b60408051858152602081018490529081018290526001600160a01b0380851691908716907fd795915374024be1f03204e052bd584b33bb85c9128ede9c54adbe0bbdc220959060600160405180910390a350506107ec6001600055565b505050565b6107f9610867565b6001600160a01b03811661085e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102a0565b61025981610913565b6001546001600160a01b031633146102c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102a0565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526107ec9084906109be565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6002600054036109b75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016102a0565b6002600055565b6000610a13826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610a909092919063ffffffff16565b8051909150156107ec5780806020019051810190610a319190610d24565b6107ec5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016102a0565b6060610a9f8484600085610aa7565b949350505050565b606082471015610b085760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016102a0565b600080866001600160a01b03168587604051610b249190610daa565b60006040518083038185875af1925050503d8060008114610b61576040519150601f19603f3d011682016040523d82523d6000602084013e610b66565b606091505b5091509150610b7787838387610b82565b979650505050505050565b60608315610bf1578251600003610bea576001600160a01b0385163b610bea5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102a0565b5081610a9f565b610a9f8383815115610c065781518083602001fd5b8060405162461bcd60e51b81526004016102a09190610dc6565b6001600160a01b038116811461025957600080fd5b600060208284031215610c4757600080fd5b8135610c5281610c20565b9392505050565b600060208284031215610c6b57600080fd5b5035919050565b600080600060608486031215610c8757600080fd5b8335610c9281610c20565b9250602084013591506040840135610ca981610c20565b809150509250925092565b600060208284031215610cc657600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615610cfd57610cfd610ccd565b500290565b600082610d1f57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215610d3657600080fd5b81518015158114610c5257600080fd5b600060208284031215610d5857600080fd5b8151610c5281610c20565b600082821015610d7557610d75610ccd565b500390565b60005b83811015610d95578181015183820152602001610d7d565b83811115610da4576000848401525b50505050565b60008251610dbc818460208701610d7a565b9190910192915050565b6020815260008251806020840152610de5816040850160208701610d7a565b601f01601f1916919091016040019291505056fea2646970667358221220ee3bed11a691f071a2761272a85a9121bf575bb385e88d25e30b6b80cadac9e164736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000090c44218e202995f1c06cb0f0e452dd3b6d8ebdf000000000000000000000000329d9ca4fad82d10f128050535c138d3bd83e39700000000000000000000000058af3e6fdf9f8a607b54d492757cc43777e380840000000000000000000000000000000000000000000000000000000000001770
-----Decoded View---------------
Arg [0] : _token (address): 0x90C44218E202995F1c06CB0f0E452dd3b6d8eBDf
Arg [1] : _ve (address): 0x329D9cA4FAd82D10f128050535c138D3bd83E397
Arg [2] : _vesting (address): 0x58AF3E6FDf9F8A607B54D492757cc43777E38084
Arg [3] : _veShare (uint256): 6000
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000090c44218e202995f1c06cb0f0e452dd3b6d8ebdf
Arg [1] : 000000000000000000000000329d9ca4fad82d10f128050535c138d3bd83e397
Arg [2] : 00000000000000000000000058af3e6fdf9f8a607b54d492757cc43777e38084
Arg [3] : 0000000000000000000000000000000000000000000000000000000000001770
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.