More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 356 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim | 17095259 | 617 days ago | IN | 0 ETH | 0.00348792 | ||||
Claim | 16857060 | 651 days ago | IN | 0 ETH | 0.00138574 | ||||
Claim | 16759198 | 665 days ago | IN | 0 ETH | 0.0016488 | ||||
Claim | 16629600 | 683 days ago | IN | 0 ETH | 0.00746809 | ||||
Claim | 16613512 | 685 days ago | IN | 0 ETH | 0.00193518 | ||||
Claim | 16572395 | 691 days ago | IN | 0 ETH | 0.00328742 | ||||
Claim | 16512158 | 699 days ago | IN | 0 ETH | 0.00148647 | ||||
Claim | 16145937 | 750 days ago | IN | 0 ETH | 0.00234947 | ||||
Claim | 16065692 | 762 days ago | IN | 0 ETH | 0.00096507 | ||||
Claim | 15876796 | 788 days ago | IN | 0 ETH | 0.00208806 | ||||
Claim | 15775589 | 802 days ago | IN | 0 ETH | 0.00251649 | ||||
Update Authorize... | 15694383 | 813 days ago | IN | 0 ETH | 0.00017058 | ||||
Claim | 15627444 | 823 days ago | IN | 0 ETH | 0.0008544 | ||||
Claim | 15587389 | 828 days ago | IN | 0 ETH | 0.00040238 | ||||
Claim | 15389522 | 859 days ago | IN | 0 ETH | 0.00080286 | ||||
Claim | 15314960 | 871 days ago | IN | 0 ETH | 0.00664617 | ||||
Claim | 15289915 | 875 days ago | IN | 0 ETH | 0.00051529 | ||||
Claim | 15162176 | 895 days ago | IN | 0 ETH | 0.00256647 | ||||
Claim | 15158883 | 895 days ago | IN | 0 ETH | 0.00076104 | ||||
Claim | 15149454 | 897 days ago | IN | 0 ETH | 0.00332477 | ||||
Claim | 14874648 | 943 days ago | IN | 0 ETH | 0.00254311 | ||||
Claim | 14829953 | 950 days ago | IN | 0 ETH | 0.00254345 | ||||
Claim | 14785796 | 957 days ago | IN | 0 ETH | 0.00113971 | ||||
Claim | 14693443 | 972 days ago | IN | 0 ETH | 0.00548072 | ||||
Claim | 14684851 | 973 days ago | IN | 0 ETH | 0.00228078 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
SingularityAirdrop
Compiler Version
v0.6.2+commit.bacdbe57
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.6.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; import "./IExternalStake.sol"; contract SingularityAirdrop is Ownable, ReentrancyGuard { using SafeMath for uint256; ERC20 public airDropToken; // Address of token contract address public authorizer; // Authorizer Address for the airdrop // address public stakingContractAddress; // Staking Contract address for direct staking from AirDrop mapping(address => bool) public stakingContractAddressList; // Enhacements to support Multiple Contracts //To store the current air drop window claim period - There is no point storing all the airDrop window details in the structure uint256 public currentAirDropWindowId; uint256 public currentClaimStartTime; uint256 public currentClaimEndTime; //To store claimed signature from authorizer in order to prevent replay attack mapping (bytes32 => bool) public usedSignatures; // Events event NewAuthorizer(address conversionAuthorizer); event UpdatedStakingContract(address stakingContract, bool status); event WithdrawToken(address indexed owner, uint256 amount); event Claim(address indexed authorizer, address indexed claimer, uint256 airDropAmount, uint256 airDropId, uint256 airDropWindowId); event ConfigsUpdated(uint256 airDropWindowId, uint256 claimStartTime, uint256 claimEndTime); constructor(address _token) public { airDropToken = ERC20(_token); } function updateAuthorizer(address newAuthorizer) external onlyOwner { require(newAuthorizer != address(0), "Invalid operator address"); authorizer = newAuthorizer; emit NewAuthorizer(newAuthorizer); } function updateStakingContract(address newStakingContract, bool enable) external onlyOwner { // Update the contract address, to remove the integration update the contract with 0x0 // stakingContractAddress = newStakingContract; stakingContractAddressList[newStakingContract] = enable; emit UpdatedStakingContract(newStakingContract, enable); } function withdrawToken(uint256 value) external onlyOwner { // Check if contract is having required balance require(airDropToken.balanceOf(address(this)) >= value, "Not enough balance in the contract"); require(airDropToken.transfer(msg.sender, value), "Unable to transfer token to the operator account"); emit WithdrawToken(msg.sender, value); } function configureAirDropClaim(uint256 airDropWindowId, uint256 claimStartTime, uint256 claimEndTime) external onlyOwner { // Check for the valid parameters require(airDropWindowId >= currentAirDropWindowId && claimStartTime > 0, "Invalid parameters"); // Enabling a provision to update the Claim Period as it is going to done by owner only require(claimStartTime < claimEndTime && now < claimEndTime , "Invalid configurations"); currentAirDropWindowId = airDropWindowId; currentClaimStartTime = claimStartTime; currentClaimEndTime = claimEndTime; emit ConfigsUpdated(airDropWindowId, claimStartTime, claimEndTime); } function _validateClaim(address token, uint256 airDropAmount, uint256 airDropId, uint256 airDropWindowId, uint8 v, bytes32 r, bytes32 s) internal { // Check if contract is having required balance require(airDropToken.balanceOf(address(this)) >= airDropAmount, "Not enough balance in the contract"); // Restrict the claim time frame as per the claim period configured require(airDropWindowId == currentAirDropWindowId && now >= currentClaimStartTime && now <= currentClaimEndTime, "Invalid claim request"); //compose the message which was signed bytes32 message = prefixed(keccak256(abi.encodePacked("__airdropclaim", airDropAmount, msg.sender, airDropId, airDropWindowId, this, token))); // check that the signature is from the authorizer address signAddress = ecrecover(message, v, r, s); require(signAddress == authorizer, "Invalid request or signature for claim"); //check for replay attack (message signature can be used only once) require( ! usedSignatures[message], "Signature has already been used"); usedSignatures[message] = true; } function claim(address token, uint256 airDropAmount, uint256 airDropId, uint256 airDropWindowId, uint8 v, bytes32 r, bytes32 s) external nonReentrant { /* // Check if contract is having required balance require(airDropToken.balanceOf(address(this)) >= airDropAmount, "Not enough balance in the contract"); // Restrict the claim time frame as per the claim period configured require(airDropWindowId == currentAirDropWindowId && now >= currentClaimStartTime && now <= currentClaimEndTime, "Invalid claim request"); //compose the message which was signed bytes32 message = prefixed(keccak256(abi.encodePacked("__airdropclaim", airDropAmount, msg.sender, airDropId, airDropWindowId, this, token))); // check that the signature is from the authorizer address signAddress = ecrecover(message, v, r, s); require(signAddress == authorizer, "Invalid request or signature for claim"); //check for replay attack (message signature can be used only once) require( ! usedSignatures[message], "Signature has already been used"); usedSignatures[message] = true; */ _validateClaim(token, airDropAmount, airDropId, airDropWindowId, v, r, s); // Transfer to User Wallet require(airDropToken.transfer(msg.sender, airDropAmount), "Unable to transfer token to the account"); emit Claim(authorizer, msg.sender, airDropAmount, airDropId, airDropWindowId); } function claimAndStake(address stakingContractAddress, address token, uint256 airDropAmount, uint256 stakeAmount, uint256 airDropId, uint256 airDropWindowId, uint8 v, bytes32 r, bytes32 s) external nonReentrant { // Check for amount and staking contract address require(stakeAmount > 0 && stakeAmount <= airDropAmount, "Invalid amount"); require(stakingContractAddressList[stakingContractAddress], "Automatic staking is not allowed"); /* // Check if contract is having required balance require(airDropToken.balanceOf(address(this)) >= airDropAmount, "Not enough balance in the contract"); // Restrict the claim time frame as per the claim period configured require(airDropWindowId == currentAirDropWindowId && now >= currentClaimStartTime && now <= currentClaimEndTime, "Invalid claim request"); //compose the message which was signed bytes32 message = prefixed(keccak256(abi.encodePacked("__airdropclaim", airDropAmount, msg.sender, airDropId, airDropWindowId, this, token))); // check that the signature is from the authorizer address signAddress = ecrecover(message, v, r, s); require(signAddress == authorizer, "Invalid request or signature for claim"); //check for replay attack (message signature can be used only once) require( ! usedSignatures[message], "Signature has already been used"); usedSignatures[message] = true; */ _validateClaim(token, airDropAmount, airDropId, airDropWindowId, v, r, s); // Transfer to User Wallet //require(airDropToken.transfer(msg.sender, airDropAmount), "Unable to transfer token to the account"); // Approve the Spender - Staking Contract airDropToken.approve(stakingContractAddress, stakeAmount); // Call the submet stake on behalf of the user - air drop msg.sender will be staker require(IExternalStake(stakingContractAddress).submitStakeFor(msg.sender, stakeAmount), "Unable to stake"); if(airDropAmount > stakeAmount) { // Transfer remaining amount to User Wallet require(airDropToken.transfer(msg.sender, airDropAmount.sub(stakeAmount)), "Unable to transfer token to the account"); } emit Claim(authorizer, msg.sender, airDropAmount, airDropId, airDropWindowId); } /// builds a prefixed hash to mimic the behavior of ethSign. function prefixed(bytes32 hash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } }
pragma solidity ^0.6.0; interface IExternalStake { function submitStakeFor(address staker, uint256 stakeAmount)external returns(bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.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]. */ 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 () internal { _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 make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // 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 pragma solidity ^0.6.2; /** * @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 in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "../../GSN/Context.sol"; import "./IERC20.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "../GSN/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. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"authorizer","type":"address"},{"indexed":true,"internalType":"address","name":"claimer","type":"address"},{"indexed":false,"internalType":"uint256","name":"airDropAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"airDropId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"airDropWindowId","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"airDropWindowId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claimStartTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claimEndTime","type":"uint256"}],"name":"ConfigsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"conversionAuthorizer","type":"address"}],"name":"NewAuthorizer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"stakingContract","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"UpdatedStakingContract","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawToken","type":"event"},{"inputs":[],"name":"airDropToken","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"authorizer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"airDropAmount","type":"uint256"},{"internalType":"uint256","name":"airDropId","type":"uint256"},{"internalType":"uint256","name":"airDropWindowId","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"stakingContractAddress","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"airDropAmount","type":"uint256"},{"internalType":"uint256","name":"stakeAmount","type":"uint256"},{"internalType":"uint256","name":"airDropId","type":"uint256"},{"internalType":"uint256","name":"airDropWindowId","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"claimAndStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"airDropWindowId","type":"uint256"},{"internalType":"uint256","name":"claimStartTime","type":"uint256"},{"internalType":"uint256","name":"claimEndTime","type":"uint256"}],"name":"configureAirDropClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentAirDropWindowId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentClaimEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentClaimStartTime","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":"","type":"address"}],"name":"stakingContractAddressList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAuthorizer","type":"address"}],"name":"updateAuthorizer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newStakingContract","type":"address"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"updateStakingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"usedSignatures","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5060405161157d38038061157d8339818101604052602081101561003357600080fd5b505160006100486001600160e01b036100bb16565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060018055600280546001600160a01b0319166001600160a01b03929092169190911790556100bf565b3390565b6114af806100ce6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063cd80d03a11610097578063e201be9811610066578063e201be98146102b7578063efd33765146102bf578063f2fde38b146102ed578063f978fd611461031357610100565b8063cd80d03a14610279578063d09edf3114610281578063d581732714610289578063e0a665781461029157610100565b8063715018a6116100d3578063715018a6146101ea5780638da5cb5b146101f2578063908ab6f31461021657806391a02cec1461023f57610100565b80630d7bf2fe14610105578063307b8cbf1461011f57806350baa62214610180578063701422691461019d575b600080fd5b61010d610330565b60408051918252519081900360200190f35b61017e600480360361012081101561013657600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e0810135906101000135610336565b005b61017e6004803603602081101561019657600080fd5b50356106df565b61017e600480360360e08110156101b357600080fd5b506001600160a01b038135169060208101359060408101359060608101359060ff6080820135169060a08101359060c001356108de565b61017e610a62565b6101fa610b04565b604080516001600160a01b039092168252519081900360200190f35b61017e6004803603606081101561022c57600080fd5b5080359060208101359060400135610b13565b6102656004803603602081101561025557600080fd5b50356001600160a01b0316610c6f565b604080519115158252519081900360200190f35b61010d610c84565b6101fa610c8a565b61010d610c99565b61017e600480360360208110156102a757600080fd5b50356001600160a01b0316610c9f565b6101fa610da6565b61017e600480360360408110156102d557600080fd5b506001600160a01b0381351690602001351515610db5565b61017e6004803603602081101561030357600080fd5b50356001600160a01b0316610e71565b6102656004803603602081101561032957600080fd5b5035610f69565b60065481565b6002600154141561038e576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260015585158015906103a25750868611155b6103e4576040805162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b604482015290519081900360640190fd5b6001600160a01b03891660009081526004602052604090205460ff16610451576040805162461bcd60e51b815260206004820181905260248201527f4175746f6d61746963207374616b696e67206973206e6f7420616c6c6f776564604482015290519081900360640190fd5b61046088888787878787610f7e565b6002546040805163095ea7b360e01b81526001600160a01b038c81166004830152602482018a90529151919092169163095ea7b39160448083019260209291908290030181600087803b1580156104b657600080fd5b505af11580156104ca573d6000803e3d6000fd5b505050506040513d60208110156104e057600080fd5b505060408051630680896f60e31b81523360048201526024810188905290516001600160a01b038b16916334044b789160448083019260209291908290030181600087803b15801561053157600080fd5b505af1158015610545573d6000803e3d6000fd5b505050506040513d602081101561055b57600080fd5b50516105a0576040805162461bcd60e51b815260206004820152600f60248201526e556e61626c6520746f207374616b6560881b604482015290519081900360640190fd5b85871115610680576002546001600160a01b031663a9059cbb336105ca8a8a63ffffffff61125f16565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561061957600080fd5b505af115801561062d573d6000803e3d6000fd5b505050506040513d602081101561064357600080fd5b50516106805760405162461bcd60e51b81526004018080602001828103825260278152602001806113bb6027913960400191505060405180910390fd5b6003546040805189815260208101889052808201879052905133926001600160a01b0316917f9137e112a187039f8a3291c0a66fce97153d25ec42036e82360d5d0106d19a6e919081900360600190a350506001805550505050505050565b6106e76112a8565b6000546001600160a01b03908116911614610737576040805162461bcd60e51b815260206004820181905260248201526000805160206113e2833981519152604482015290519081900360640190fd5b600254604080516370a0823160e01b8152306004820152905183926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561078157600080fd5b505afa158015610795573d6000803e3d6000fd5b505050506040513d60208110156107ab57600080fd5b505110156107ea5760405162461bcd60e51b81526004018080602001828103825260228152602001806114026022913960400191505060405180910390fd5b6002546040805163a9059cbb60e01b81523360048201526024810184905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b15801561083e57600080fd5b505af1158015610852573d6000803e3d6000fd5b505050506040513d602081101561086857600080fd5b50516108a55760405162461bcd60e51b815260040180806020018281038252603081526020018061144a6030913960400191505060405180910390fd5b60408051828152905133917f992ee874049a42cae0757a765cd7f641b6028cc35c3478bde8330bf417c3a7a9919081900360200190a250565b60026001541415610936576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260015561094a87878787878787610f7e565b6002546040805163a9059cbb60e01b81523360048201526024810189905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b15801561099e57600080fd5b505af11580156109b2573d6000803e3d6000fd5b505050506040513d60208110156109c857600080fd5b5051610a055760405162461bcd60e51b81526004018080602001828103825260278152602001806113bb6027913960400191505060405180910390fd5b6003546040805188815260208101889052808201879052905133926001600160a01b0316917f9137e112a187039f8a3291c0a66fce97153d25ec42036e82360d5d0106d19a6e919081900360600190a35050600180555050505050565b610a6a6112a8565b6000546001600160a01b03908116911614610aba576040805162461bcd60e51b815260206004820181905260248201526000805160206113e2833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b610b1b6112a8565b6000546001600160a01b03908116911614610b6b576040805162461bcd60e51b815260206004820181905260248201526000805160206113e2833981519152604482015290519081900360640190fd5b6005548310158015610b7d5750600082115b610bc3576040805162461bcd60e51b8152602060048201526012602482015271496e76616c696420706172616d657465727360701b604482015290519081900360640190fd5b8082108015610bd157508042105b610c1b576040805162461bcd60e51b8152602060048201526016602482015275496e76616c696420636f6e66696775726174696f6e7360501b604482015290519081900360640190fd5b600583905560068290556007819055604080518481526020810184905280820183905290517f8cd456cc1e0ca506bafca3eaa6445f61b950e0d04c25aa3377c7996cf66b4d499181900360600190a1505050565b60046020526000908152604090205460ff1681565b60055481565b6003546001600160a01b031681565b60075481565b610ca76112a8565b6000546001600160a01b03908116911614610cf7576040805162461bcd60e51b815260206004820181905260248201526000805160206113e2833981519152604482015290519081900360640190fd5b6001600160a01b038116610d52576040805162461bcd60e51b815260206004820152601860248201527f496e76616c6964206f70657261746f7220616464726573730000000000000000604482015290519081900360640190fd5b600380546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f08f53e6a9fbc3949bc0b9266bbe1927f0b282a34d92876ccbe188c24d17c6cbb9181900360200190a150565b6002546001600160a01b031681565b610dbd6112a8565b6000546001600160a01b03908116911614610e0d576040805162461bcd60e51b815260206004820181905260248201526000805160206113e2833981519152604482015290519081900360640190fd5b6001600160a01b038216600081815260046020908152604091829020805460ff191685151590811790915582519384529083015280517fa454575fc60ef70e6f8f4559491e8d75a4ee9486f5d49b593c4074e60d224d2b9281900390910190a15050565b610e796112a8565b6000546001600160a01b03908116911614610ec9576040805162461bcd60e51b815260206004820181905260248201526000805160206113e2833981519152604482015290519081900360640190fd5b6001600160a01b038116610f0e5760405162461bcd60e51b81526004018080602001828103825260268152602001806113956026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60086020526000908152604090205460ff1681565b600254604080516370a0823160e01b8152306004820152905188926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610fc857600080fd5b505afa158015610fdc573d6000803e3d6000fd5b505050506040513d6020811015610ff257600080fd5b505110156110315760405162461bcd60e51b81526004018080602001828103825260228152602001806114026022913960400191505060405180910390fd5b6005548414801561104457506006544210155b801561105257506007544211155b61109b576040805162461bcd60e51b8152602060048201526015602482015274125b9d985b1a590818db185a5b481c995c5d595cdd605a1b604482015290519081900360640190fd5b604080516d5f5f61697264726f70636c61696d60901b602080830191909152602e820189905233606090811b604e840152606283018990526082830188905230811b60a28401528a901b6bffffffffffffffffffffffff191660b6830152825180830360aa01815260ca909201909252805191012060009061111c906112ac565b9050600060018286868660405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa15801561117d573d6000803e3d6000fd5b5050604051601f1901516003549092506001600160a01b0380841691161490506111d85760405162461bcd60e51b81526004018080602001828103825260268152602001806114246026913960400191505060405180910390fd5b60008281526008602052604090205460ff161561123c576040805162461bcd60e51b815260206004820152601f60248201527f5369676e61747572652068617320616c7265616479206265656e207573656400604482015290519081900360640190fd5b506000908152600860205260409020805460ff1916600117905550505050505050565b60006112a183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506112fd565b9392505050565b3390565b604080517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602080830191909152603c8083019490945282518083039094018452605c909101909152815191012090565b6000818484111561138c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611351578181015183820152602001611339565b50505050905090810190601f16801561137e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373556e61626c6520746f207472616e7366657220746f6b656e20746f20746865206163636f756e744f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724e6f7420656e6f7567682062616c616e636520696e2074686520636f6e7472616374496e76616c69642072657175657374206f72207369676e617475726520666f7220636c61696d556e61626c6520746f207472616e7366657220746f6b656e20746f20746865206f70657261746f72206163636f756e74a2646970667358221220a672235e5f90e0026e6075b47020796ecbdb8e13555cccb3ee2dd174e0f9c47964736f6c63430006020033000000000000000000000000f0d33beda4d734c72684b5f9abbebf715d0a7935
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063cd80d03a11610097578063e201be9811610066578063e201be98146102b7578063efd33765146102bf578063f2fde38b146102ed578063f978fd611461031357610100565b8063cd80d03a14610279578063d09edf3114610281578063d581732714610289578063e0a665781461029157610100565b8063715018a6116100d3578063715018a6146101ea5780638da5cb5b146101f2578063908ab6f31461021657806391a02cec1461023f57610100565b80630d7bf2fe14610105578063307b8cbf1461011f57806350baa62214610180578063701422691461019d575b600080fd5b61010d610330565b60408051918252519081900360200190f35b61017e600480360361012081101561013657600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e0810135906101000135610336565b005b61017e6004803603602081101561019657600080fd5b50356106df565b61017e600480360360e08110156101b357600080fd5b506001600160a01b038135169060208101359060408101359060608101359060ff6080820135169060a08101359060c001356108de565b61017e610a62565b6101fa610b04565b604080516001600160a01b039092168252519081900360200190f35b61017e6004803603606081101561022c57600080fd5b5080359060208101359060400135610b13565b6102656004803603602081101561025557600080fd5b50356001600160a01b0316610c6f565b604080519115158252519081900360200190f35b61010d610c84565b6101fa610c8a565b61010d610c99565b61017e600480360360208110156102a757600080fd5b50356001600160a01b0316610c9f565b6101fa610da6565b61017e600480360360408110156102d557600080fd5b506001600160a01b0381351690602001351515610db5565b61017e6004803603602081101561030357600080fd5b50356001600160a01b0316610e71565b6102656004803603602081101561032957600080fd5b5035610f69565b60065481565b6002600154141561038e576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260015585158015906103a25750868611155b6103e4576040805162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b604482015290519081900360640190fd5b6001600160a01b03891660009081526004602052604090205460ff16610451576040805162461bcd60e51b815260206004820181905260248201527f4175746f6d61746963207374616b696e67206973206e6f7420616c6c6f776564604482015290519081900360640190fd5b61046088888787878787610f7e565b6002546040805163095ea7b360e01b81526001600160a01b038c81166004830152602482018a90529151919092169163095ea7b39160448083019260209291908290030181600087803b1580156104b657600080fd5b505af11580156104ca573d6000803e3d6000fd5b505050506040513d60208110156104e057600080fd5b505060408051630680896f60e31b81523360048201526024810188905290516001600160a01b038b16916334044b789160448083019260209291908290030181600087803b15801561053157600080fd5b505af1158015610545573d6000803e3d6000fd5b505050506040513d602081101561055b57600080fd5b50516105a0576040805162461bcd60e51b815260206004820152600f60248201526e556e61626c6520746f207374616b6560881b604482015290519081900360640190fd5b85871115610680576002546001600160a01b031663a9059cbb336105ca8a8a63ffffffff61125f16565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561061957600080fd5b505af115801561062d573d6000803e3d6000fd5b505050506040513d602081101561064357600080fd5b50516106805760405162461bcd60e51b81526004018080602001828103825260278152602001806113bb6027913960400191505060405180910390fd5b6003546040805189815260208101889052808201879052905133926001600160a01b0316917f9137e112a187039f8a3291c0a66fce97153d25ec42036e82360d5d0106d19a6e919081900360600190a350506001805550505050505050565b6106e76112a8565b6000546001600160a01b03908116911614610737576040805162461bcd60e51b815260206004820181905260248201526000805160206113e2833981519152604482015290519081900360640190fd5b600254604080516370a0823160e01b8152306004820152905183926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561078157600080fd5b505afa158015610795573d6000803e3d6000fd5b505050506040513d60208110156107ab57600080fd5b505110156107ea5760405162461bcd60e51b81526004018080602001828103825260228152602001806114026022913960400191505060405180910390fd5b6002546040805163a9059cbb60e01b81523360048201526024810184905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b15801561083e57600080fd5b505af1158015610852573d6000803e3d6000fd5b505050506040513d602081101561086857600080fd5b50516108a55760405162461bcd60e51b815260040180806020018281038252603081526020018061144a6030913960400191505060405180910390fd5b60408051828152905133917f992ee874049a42cae0757a765cd7f641b6028cc35c3478bde8330bf417c3a7a9919081900360200190a250565b60026001541415610936576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260015561094a87878787878787610f7e565b6002546040805163a9059cbb60e01b81523360048201526024810189905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b15801561099e57600080fd5b505af11580156109b2573d6000803e3d6000fd5b505050506040513d60208110156109c857600080fd5b5051610a055760405162461bcd60e51b81526004018080602001828103825260278152602001806113bb6027913960400191505060405180910390fd5b6003546040805188815260208101889052808201879052905133926001600160a01b0316917f9137e112a187039f8a3291c0a66fce97153d25ec42036e82360d5d0106d19a6e919081900360600190a35050600180555050505050565b610a6a6112a8565b6000546001600160a01b03908116911614610aba576040805162461bcd60e51b815260206004820181905260248201526000805160206113e2833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b610b1b6112a8565b6000546001600160a01b03908116911614610b6b576040805162461bcd60e51b815260206004820181905260248201526000805160206113e2833981519152604482015290519081900360640190fd5b6005548310158015610b7d5750600082115b610bc3576040805162461bcd60e51b8152602060048201526012602482015271496e76616c696420706172616d657465727360701b604482015290519081900360640190fd5b8082108015610bd157508042105b610c1b576040805162461bcd60e51b8152602060048201526016602482015275496e76616c696420636f6e66696775726174696f6e7360501b604482015290519081900360640190fd5b600583905560068290556007819055604080518481526020810184905280820183905290517f8cd456cc1e0ca506bafca3eaa6445f61b950e0d04c25aa3377c7996cf66b4d499181900360600190a1505050565b60046020526000908152604090205460ff1681565b60055481565b6003546001600160a01b031681565b60075481565b610ca76112a8565b6000546001600160a01b03908116911614610cf7576040805162461bcd60e51b815260206004820181905260248201526000805160206113e2833981519152604482015290519081900360640190fd5b6001600160a01b038116610d52576040805162461bcd60e51b815260206004820152601860248201527f496e76616c6964206f70657261746f7220616464726573730000000000000000604482015290519081900360640190fd5b600380546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f08f53e6a9fbc3949bc0b9266bbe1927f0b282a34d92876ccbe188c24d17c6cbb9181900360200190a150565b6002546001600160a01b031681565b610dbd6112a8565b6000546001600160a01b03908116911614610e0d576040805162461bcd60e51b815260206004820181905260248201526000805160206113e2833981519152604482015290519081900360640190fd5b6001600160a01b038216600081815260046020908152604091829020805460ff191685151590811790915582519384529083015280517fa454575fc60ef70e6f8f4559491e8d75a4ee9486f5d49b593c4074e60d224d2b9281900390910190a15050565b610e796112a8565b6000546001600160a01b03908116911614610ec9576040805162461bcd60e51b815260206004820181905260248201526000805160206113e2833981519152604482015290519081900360640190fd5b6001600160a01b038116610f0e5760405162461bcd60e51b81526004018080602001828103825260268152602001806113956026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60086020526000908152604090205460ff1681565b600254604080516370a0823160e01b8152306004820152905188926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610fc857600080fd5b505afa158015610fdc573d6000803e3d6000fd5b505050506040513d6020811015610ff257600080fd5b505110156110315760405162461bcd60e51b81526004018080602001828103825260228152602001806114026022913960400191505060405180910390fd5b6005548414801561104457506006544210155b801561105257506007544211155b61109b576040805162461bcd60e51b8152602060048201526015602482015274125b9d985b1a590818db185a5b481c995c5d595cdd605a1b604482015290519081900360640190fd5b604080516d5f5f61697264726f70636c61696d60901b602080830191909152602e820189905233606090811b604e840152606283018990526082830188905230811b60a28401528a901b6bffffffffffffffffffffffff191660b6830152825180830360aa01815260ca909201909252805191012060009061111c906112ac565b9050600060018286868660405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa15801561117d573d6000803e3d6000fd5b5050604051601f1901516003549092506001600160a01b0380841691161490506111d85760405162461bcd60e51b81526004018080602001828103825260268152602001806114246026913960400191505060405180910390fd5b60008281526008602052604090205460ff161561123c576040805162461bcd60e51b815260206004820152601f60248201527f5369676e61747572652068617320616c7265616479206265656e207573656400604482015290519081900360640190fd5b506000908152600860205260409020805460ff1916600117905550505050505050565b60006112a183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506112fd565b9392505050565b3390565b604080517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602080830191909152603c8083019490945282518083039094018452605c909101909152815191012090565b6000818484111561138c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611351578181015183820152602001611339565b50505050905090810190601f16801561137e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373556e61626c6520746f207472616e7366657220746f6b656e20746f20746865206163636f756e744f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724e6f7420656e6f7567682062616c616e636520696e2074686520636f6e7472616374496e76616c69642072657175657374206f72207369676e617475726520666f7220636c61696d556e61626c6520746f207472616e7366657220746f6b656e20746f20746865206f70657261746f72206163636f756e74a2646970667358221220a672235e5f90e0026e6075b47020796ecbdb8e13555cccb3ee2dd174e0f9c47964736f6c63430006020033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f0d33beda4d734c72684b5f9abbebf715d0a7935
-----Decoded View---------------
Arg [0] : _token (address): 0xF0d33BeDa4d734C72684b5f9abBEbf715D0a7935
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f0d33beda4d734c72684b5f9abbebf715d0a7935
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.039667 | 2,949,449.0511 | $116,996.47 |
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.