Source Code
Latest 25 from a total of 496 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Claim | 20375490 | 591 days ago | IN | 0 ETH | 0.00027293 | ||||
| Claim | 20353598 | 594 days ago | IN | 0 ETH | 0.00055465 | ||||
| Claim | 20353581 | 594 days ago | IN | 0 ETH | 0.00048627 | ||||
| Claim | 20353568 | 594 days ago | IN | 0 ETH | 0.00045137 | ||||
| Claim | 20353558 | 594 days ago | IN | 0 ETH | 0.00051159 | ||||
| Claim | 20353545 | 594 days ago | IN | 0 ETH | 0.00023533 | ||||
| Claim | 20353545 | 594 days ago | IN | 0 ETH | 0.00050622 | ||||
| Claim | 20353543 | 594 days ago | IN | 0 ETH | 0.00023391 | ||||
| Claim | 20353532 | 594 days ago | IN | 0 ETH | 0.00022873 | ||||
| Claim | 20353529 | 594 days ago | IN | 0 ETH | 0.00021631 | ||||
| Claim | 20353529 | 594 days ago | IN | 0 ETH | 0.00046307 | ||||
| Claim | 20353522 | 594 days ago | IN | 0 ETH | 0.00023798 | ||||
| Claim | 20353506 | 594 days ago | IN | 0 ETH | 0.00024439 | ||||
| Claim | 20353495 | 594 days ago | IN | 0 ETH | 0.00025219 | ||||
| Claim | 20353486 | 594 days ago | IN | 0 ETH | 0.00057065 | ||||
| Claim | 20353473 | 594 days ago | IN | 0 ETH | 0.00023101 | ||||
| Claim | 20352962 | 595 days ago | IN | 0 ETH | 0.000208 | ||||
| Claim | 20352951 | 595 days ago | IN | 0 ETH | 0.00020975 | ||||
| Claim | 20352945 | 595 days ago | IN | 0 ETH | 0.00023872 | ||||
| Claim | 20352939 | 595 days ago | IN | 0 ETH | 0.00022988 | ||||
| Claim | 20352933 | 595 days ago | IN | 0 ETH | 0.00021734 | ||||
| Claim | 20352923 | 595 days ago | IN | 0 ETH | 0.00021179 | ||||
| Claim | 20352917 | 595 days ago | IN | 0 ETH | 0.0002154 | ||||
| Claim | 20352912 | 595 days ago | IN | 0 ETH | 0.00049749 | ||||
| Claim | 20352903 | 595 days ago | IN | 0 ETH | 0.00041548 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
DreamverseAirdrop
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.24;
import "openzeppelin-contracts/access/AccessControl.sol";
import "openzeppelin-contracts/token/ERC20/IERC20.sol";
import "openzeppelin-contracts/utils/ReentrancyGuard.sol";
import "openzeppelin-contracts/math/SafeMath.sol";
import "./VerifySignature.sol";
contract DreamverseAirdrop is AccessControl, ReentrancyGuard, VerifySignature{
using SafeMath for uint256;
bytes32 public constant EXECUTE_ROLE = keccak256("EXECUTE_ROLE");
uint256 public TOTAL_CLAIM = 12;
uint256 public constant CLAIM_INTERVAL = 30 days;
uint256 private constant CONFIG_LAST_CLAIM = 1717200000;
constructor(address _execute, address _token) {
_setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
_setupRole(EXECUTE_ROLE, _execute);
token = IERC20(_token);
}
mapping(uint256 => bool) private submitted;
IERC20 private token;
event AirdropClaimed(address _user, uint256 _amount);
mapping(address => AirdropInfo) public reward;
struct AirdropInfo {
uint256 lastClaimTime;
uint256 amount;
uint256 amountClaimEach;
uint256 count;
}
modifier onlyAdminOrExecutor() {
require(
hasRole(EXECUTE_ROLE, msg.sender) || hasRole(DEFAULT_ADMIN_ROLE, msg.sender),
"Caller is not admin or executor"
);
_;
}
function claim(
uint256 _id,
address _to,
uint256 _amount,
uint256 _count,
bytes memory signature
) external nonReentrant {
if (_id != 0 && _to != address(0) && _amount != 0 && signature.length != 0) {
// First round claim
require(
hasRole(EXECUTE_ROLE, verify(_id, _to, _amount, _count, signature)),
"Signer does not have EXECUTE_ROLE"
);
require(!submitted[_id], "Request already submitted");
require(reward[_to].amountClaimEach == 0, "User already registered for airdrop");
uint256 amountClaimEach;
if (_count == 0) {
amountClaimEach = _amount.div(TOTAL_CLAIM);
} else {
require(CONFIG_LAST_CLAIM.add(CLAIM_INTERVAL) <= block.timestamp, "Claim interval not passed");
require(_count < TOTAL_CLAIM, "Invalid count number");
amountClaimEach = _amount.div(TOTAL_CLAIM.sub(_count));
}
reward[_to] = AirdropInfo({
lastClaimTime: 0,
amount: _amount,
amountClaimEach: amountClaimEach,
count: _count
});
submitted[_id] = true;
handleClaim(_to);
} else {
require(reward[msg.sender].amount > 0, "Reward not existed");
require(
reward[msg.sender].lastClaimTime == 0 || block.timestamp >= reward[msg.sender].lastClaimTime.add(CLAIM_INTERVAL),
"Claim interval not passed"
);
handleClaim(msg.sender);
}
}
function handleClaim(address _user) internal {
uint256 amountClaim;
require(reward[_user].count < TOTAL_CLAIM, "Reward has been finished");
if (reward[_user].count == 0) {
amountClaim = reward[_user].amountClaimEach;
uint256 remainder = reward[_user].amount.mod(TOTAL_CLAIM);
if (remainder != 0) {
amountClaim += remainder;
}
} else {
// reward[_user].amountClaimEach = reward[_user].amount.div(TOTAL_CLAIM.sub(reward[_user].count));
amountClaim = reward[_user].amountClaimEach;
}
require(token.balanceOf(address(this)) >= amountClaim, "Insufficient amount");
token.transfer(_user, amountClaim);
reward[_user].amount = reward[_user].amount.sub(amountClaim);
reward[_user].lastClaimTime = block.timestamp;
reward[_user].count = reward[_user].count.add(1);
emit AirdropClaimed(_user, amountClaim);
}
function withdrawToken (address _to, uint256 _amount) external onlyAdminOrExecutor {
require(_amount <= token.balanceOf(address(this)), "Insufficient amount");
token.transfer(_to, _amount);
}
function updateUserReward(
address _user,
uint256 _lastClaimTime,
uint256 _amount,
uint256 _amountClaimEach,
uint256 _count
) external onlyAdminOrExecutor {
require(_user != address(0), "Invalid user");
reward[_user].lastClaimTime = _lastClaimTime;
reward[_user].amount = _amount;
reward[_user].amountClaimEach = _amountClaimEach;
reward[_user].count = _count;
}
}pragma solidity ^0.8.24;
contract VerifySignature {
function getMessageHash(
address _to,
uint256 _amount,
uint256 _id,
uint256 _count
) internal pure returns (bytes32) {
return keccak256(abi.encodePacked(_to, _amount, _id, _count));
}
function getEthSignedMessageHash(bytes32 _messageHash) public pure returns (bytes32)
{
/*
Signature is produced by signing a keccak256 hash with the following format:
"\x19Ethereum Signed Message\n" + len(msg) + msg
*/
return keccak256(
abi.encodePacked("\x19Ethereum Signed Message:\n32", _messageHash)
);
}
function verify(
uint256 _id,
address _to,
uint256 _amount,
uint256 _count,
bytes memory signature
) public pure returns (address) {
bytes32 messageHash = getMessageHash(_to, _amount, _id, _count);
bytes32 ethSignedMessageHash = getEthSignedMessageHash(messageHash);
return recoverSigner(ethSignedMessageHash, signature);
}
function recoverSigner(
bytes32 _ethSignedMessageHash,
bytes memory _signature
) internal pure returns (address) {
(bytes32 r, bytes32 s, uint8 v) = splitSignature(_signature);
return ecrecover(_ethSignedMessageHash, v, r, s);
}
function splitSignature(bytes memory sig) public pure returns (bytes32 r, bytes32 s, uint8 v)
{
require(sig.length == 65, "invalid signature length");
assembly {
/*
First 32 bytes stores the length of the signature
add(sig, 32) = pointer of sig + 32
effectively, skips first 32 bytes of signature
mload(p) loads next 32 bytes starting at the memory address p into memory
*/
// first 32 bytes, after the length prefix
r := mload(add(sig, 32))
// second 32 bytes
s := mload(add(sig, 64))
// final byte (first byte of the next 32 bytes)
v := byte(0, mload(add(sig, 96)))
}
// implicitly return (r, s, v)
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/EnumerableSet.sol";
import "../utils/Address.sol";
import "../GSN/Context.sol";
/**
* @dev Contract module that allows children to implement role-based access
* control mechanisms.
*
* Roles are referred to by their `bytes32` identifier. These should be exposed
* in the external API and be unique. The best way to achieve this is by
* using `public constant` hash digests:
*
* ```
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
* ```
*
* Roles can be used to represent a set of permissions. To restrict access to a
* function call, use {hasRole}:
*
* ```
* function foo() public {
* require(hasRole(MY_ROLE, msg.sender));
* ...
* }
* ```
*
* Roles can be granted and revoked dynamically via the {grantRole} and
* {revokeRole} functions. Each role has an associated admin role, and only
* accounts that have a role's admin role can call {grantRole} and {revokeRole}.
*
* By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
* that only accounts with this role will be able to grant or revoke other
* roles. More complex role relationships can be created by using
* {_setRoleAdmin}.
*
* WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
* grant and revoke this role. Extra precautions should be taken to secure
* accounts that have been granted it.
*/
abstract contract AccessControl is Context {
using EnumerableSet for EnumerableSet.AddressSet;
using Address for address;
struct RoleData {
EnumerableSet.AddressSet members;
bytes32 adminRole;
}
mapping (bytes32 => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted signaling this.
*
* _Available since v3.1._
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call, an admin role
* bearer except when using {_setupRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Emitted when `account` is revoked `role`.
*
* `sender` is the account that originated the contract call:
* - if using `revokeRole`, it is the admin role bearer
* - if using `renounceRole`, it is the role bearer (i.e. `account`)
*/
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) public view returns (bool) {
return _roles[role].members.contains(account);
}
/**
* @dev Returns the number of accounts that have `role`. Can be used
* together with {getRoleMember} to enumerate all bearers of a role.
*/
function getRoleMemberCount(bytes32 role) public view returns (uint256) {
return _roles[role].members.length();
}
/**
* @dev Returns one of the accounts that have `role`. `index` must be a
* value between 0 and {getRoleMemberCount}, non-inclusive.
*
* Role bearers are not sorted in any particular way, and their ordering may
* change at any point.
*
* WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
* you perform all queries on the same block. See the following
* https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
* for more information.
*/
function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
return _roles[role].members.at(index);
}
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) public view returns (bytes32) {
return _roles[role].adminRole;
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) public virtual {
require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");
_grantRole(role, account);
}
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) public virtual {
require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");
_revokeRole(role, account);
}
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been granted `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `account`.
*/
function renounceRole(bytes32 role, address account) public virtual {
require(account == _msgSender(), "AccessControl: can only renounce roles for self");
_revokeRole(role, account);
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event. Note that unlike {grantRole}, this function doesn't perform any
* checks on the calling account.
*
* [WARNING]
* ====
* This function should only be called from the constructor when setting
* up the initial roles for the system.
*
* Using this function in any other way is effectively circumventing the admin
* system imposed by {AccessControl}.
* ====
*/
function _setupRole(bytes32 role, address account) internal virtual {
_grantRole(role, account);
}
/**
* @dev Sets `adminRole` as ``role``'s admin role.
*
* Emits a {RoleAdminChanged} event.
*/
function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
_roles[role].adminRole = adminRole;
}
function _grantRole(bytes32 role, address account) private {
if (_roles[role].members.add(account)) {
emit RoleGranted(role, account, _msgSender());
}
}
function _revokeRole(bytes32 role, address account) private {
if (_roles[role].members.remove(account)) {
emit RoleRevoked(role, account, _msgSender());
}
}
}// SPDX-License-Identifier: MIT
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 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) {
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;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Wrappers over Solidity's arithmetic operations.
*/
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) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// 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");
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: value }(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.3._
*/
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.3._
*/
function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// 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.8.0;
/**
* @dev Library for managing
* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
* types.
*
* Sets have the following properties:
*
* - Elements are added, removed, and checked for existence in constant time
* (O(1)).
* - Elements are enumerated in O(n). No guarantees are made on the ordering.
*
* ```
* contract Example {
* // Add the library methods
* using EnumerableSet for EnumerableSet.AddressSet;
*
* // Declare a set state variable
* EnumerableSet.AddressSet private mySet;
* }
* ```
*
* As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
* and `uint256` (`UintSet`) are supported.
*/
library EnumerableSet {
// To implement this library for multiple types with as little code
// repetition as possible, we write it in terms of a generic Set type with
// bytes32 values.
// The Set implementation uses private functions, and user-facing
// implementations (such as AddressSet) are just wrappers around the
// underlying Set.
// This means that we can only create new EnumerableSets for types that fit
// in bytes32.
struct Set {
// Storage of set values
bytes32[] _values;
// Position of the value in the `values` array, plus 1 because index 0
// means a value is not in the set.
mapping (bytes32 => uint256) _indexes;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function _add(Set storage set, bytes32 value) private returns (bool) {
if (!_contains(set, value)) {
set._values.push(value);
// The value is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
set._indexes[value] = set._values.length;
return true;
} else {
return false;
}
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function _remove(Set storage set, bytes32 value) private returns (bool) {
// We read and store the value's index to prevent multiple reads from the same storage slot
uint256 valueIndex = set._indexes[value];
if (valueIndex != 0) { // Equivalent to contains(set, value)
// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
// the array, and then remove the last element (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 toDeleteIndex = valueIndex - 1;
uint256 lastIndex = set._values.length - 1;
// When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
// so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.
bytes32 lastvalue = set._values[lastIndex];
// Move the last value to the index where the value to delete is
set._values[toDeleteIndex] = lastvalue;
// Update the index for the moved value
set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the index for the deleted slot
delete set._indexes[value];
return true;
} else {
return false;
}
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function _contains(Set storage set, bytes32 value) private view returns (bool) {
return set._indexes[value] != 0;
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function _length(Set storage set) private view returns (uint256) {
return set._values.length;
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function _at(Set storage set, uint256 index) private view returns (bytes32) {
require(set._values.length > index, "EnumerableSet: index out of bounds");
return set._values[index];
}
// Bytes32Set
struct Bytes32Set {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _add(set._inner, value);
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _remove(set._inner, value);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
return _contains(set._inner, value);
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(Bytes32Set storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
return _at(set._inner, index);
}
// AddressSet
struct AddressSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(AddressSet storage set, address value) internal returns (bool) {
return _add(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(AddressSet storage set, address value) internal returns (bool) {
return _remove(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(AddressSet storage set, address value) internal view returns (bool) {
return _contains(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(AddressSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(AddressSet storage set, uint256 index) internal view returns (address) {
return address(uint160(uint256(_at(set._inner, index))));
}
// UintSet
struct UintSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(UintSet storage set, uint256 value) internal returns (bool) {
return _add(set._inner, bytes32(value));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(UintSet storage set, uint256 value) internal returns (bool) {
return _remove(set._inner, bytes32(value));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(UintSet storage set, uint256 value) internal view returns (bool) {
return _contains(set._inner, bytes32(value));
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function length(UintSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(UintSet storage set, uint256 index) internal view returns (uint256) {
return uint256(_at(set._inner, index));
}
}// SPDX-License-Identifier: MIT
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 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;
}
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"evmVersion": "paris",
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_execute","type":"address"},{"internalType":"address","name":"_token","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"AirdropClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"CLAIM_INTERVAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXECUTE_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_CLAIM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_messageHash","type":"bytes32"}],"name":"getEthSignedMessageHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"reward","outputs":[{"internalType":"uint256","name":"lastClaimTime","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"amountClaimEach","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"splitSignature","outputs":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_lastClaimTime","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_amountClaimEach","type":"uint256"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"updateUserReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"verify","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052600c6002553480156200001657600080fd5b506040516200189938038062001899833981016040819052620000399162000198565b600180556200004a6000336200009d565b620000767fcebf517aa4440d1d125e0355aae64401211d0848a23c02cc5d29a14822580ba4836200009d565b600480546001600160a01b0319166001600160a01b039290921691909117905550620001d0565b620000a98282620000ad565b5050565b6000828152602081905260409020620000c7908262000109565b15620000a95760405133906001600160a01b0383169084907f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d90600090a45050565b600062000120836001600160a01b03841662000129565b90505b92915050565b6000818152600183016020526040812054620001725750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000123565b50600062000123565b80516001600160a01b03811681146200019357600080fd5b919050565b60008060408385031215620001ac57600080fd5b620001b7836200017b565b9150620001c7602084016200017b565b90509250929050565b6116b980620001e06000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80639010d07c116100a2578063a7bb580311610071578063a7bb58031461028f578063ca15c873146102c0578063d547741f146102d3578063d8aee62e146102e6578063fa540801146102ef57600080fd5b80639010d07c1461023e57806391d14854146102515780639e281a9814610274578063a217fddf1461028757600080fd5b806349d3a0c1116100e957806349d3a0c11461018c5780635fa5e4e6146101965780636353586b146101ab578063644b3eed146102005780638af7b09d1461022b57600080fd5b8063248a9ca31461011b5780632e4dbe8f146101515780632f2ff15d1461016657806336568abe14610179575b600080fd5b61013e610129366004611326565b60009081526020819052604090206002015490565b6040519081526020015b60405180910390f35b61016461015f3660046113fe565b610302565b005b610164610174366004611469565b610719565b610164610187366004611469565b6107a7565b61013e62278d0081565b61013e60008051602061166483398151915281565b6101e06101b9366004611495565b60056020526000908152604090208054600182015460028301546003909301549192909184565b604080519485526020850193909352918301526060820152608001610148565b61021361020e3660046113fe565b610821565b6040516001600160a01b039091168152602001610148565b6101646102393660046114b0565b610895565b61021361024c3660046114f2565b61097e565b61026461025f366004611469565b61099f565b6040519015158152602001610148565b610164610282366004611514565b6109b7565b61013e600081565b6102a261029d36600461153e565b610b5c565b60408051938452602084019290925260ff1690820152606001610148565b61013e6102ce366004611326565b610bd0565b6101646102e1366004611469565b610be7565b61013e60025481565b61013e6102fd366004611326565b610c68565b6002600154036103595760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600155841580159061037557506001600160a01b03841615155b801561038057508215155b801561038c5750805115155b15610631576103b060008051602061166483398151915261025f8787878787610821565b6104065760405162461bcd60e51b815260206004820152602160248201527f5369676e657220646f6573206e6f74206861766520455845435554455f524f4c6044820152604560f81b6064820152608401610350565b60008581526003602052604090205460ff16156104655760405162461bcd60e51b815260206004820152601960248201527f5265717565737420616c7265616479207375626d6974746564000000000000006044820152606401610350565b6001600160a01b038416600090815260056020526040902060020154156104da5760405162461bcd60e51b815260206004820152602360248201527f5573657220616c7265616479207265676973746572656420666f7220616972646044820152620726f760ec1b6064820152608401610350565b6000826000036104f9576002546104f2908590610cbb565b90506105b8565b4261050b63665a648062278d00610cc7565b11156105555760405162461bcd60e51b815260206004820152601960248201527810db185a5b481a5b9d195c9d985b081b9bdd081c185cdcd959603a1b6044820152606401610350565b600254831061059d5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21031b7bab73a10373ab6b132b960611b6044820152606401610350565b6002546105b5906105ae9085610cd3565b8590610cbb565b90505b6040805160808101825260008082526020808301888152838501868152606085018981526001600160a01b038c168552600584528685209551865591516001808701919091559051600286015590516003948501558a835292905291909120805460ff1916909117905561062b85610cdf565b5061070e565b336000908152600560205260409020600101546106855760405162461bcd60e51b815260206004820152601260248201527114995dd85c99081b9bdd08195e1a5cdd195960721b6044820152606401610350565b3360009081526005602052604090205415806106bd5750336000908152600560205260409020546106b99062278d00610cc7565b4210155b6107055760405162461bcd60e51b815260206004820152601960248201527810db185a5b481a5b9d195c9d985b081b9bdd081c185cdcd959603a1b6044820152606401610350565b61070e33610cdf565b505060018055505050565b600082815260208190526040902060020154610735903361099f565b6107995760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526e0818591b5a5b881d1bc819dc985b9d608a1b6064820152608401610350565b6107a38282610fbf565b5050565b6001600160a01b03811633146108175760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610350565b6107a38282611018565b60408051606086901b6bffffffffffffffffffffffff1916602080830191909152603482018690526054820188905260748083018690528351808403909101815260949092019092528051910120600090600061087d82610c68565b90506108898185611071565b98975050505050505050565b6108ad6000805160206116648339815191523361099f565b806108be57506108be60003361099f565b61090a5760405162461bcd60e51b815260206004820152601f60248201527f43616c6c6572206973206e6f742061646d696e206f72206578656375746f72006044820152606401610350565b6001600160a01b03851661094f5760405162461bcd60e51b815260206004820152600c60248201526b24b73b30b634b2103ab9b2b960a11b6044820152606401610350565b6001600160a01b0390941660009081526005602052604090209283556001830191909155600282015560030155565b600082815260208190526040812061099690836110f0565b90505b92915050565b600082815260208190526040812061099690836110fc565b6109cf6000805160206116648339815191523361099f565b806109e057506109e060003361099f565b610a2c5760405162461bcd60e51b815260206004820152601f60248201527f43616c6c6572206973206e6f742061646d696e206f72206578656375746f72006044820152606401610350565b600480546040516370a0823160e01b815230928101929092526001600160a01b0316906370a0823190602401602060405180830381865afa158015610a75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a99919061157b565b811115610ade5760405162461bcd60e51b8152602060048201526013602482015272125b9cdd59999a58da595b9d08185b5bdd5b9d606a1b6044820152606401610350565b6004805460405163a9059cbb60e01b81526001600160a01b03858116938201939093526024810184905291169063a9059cbb906044016020604051808303816000875af1158015610b33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b579190611594565b505050565b60008060008351604114610bb25760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964207369676e6174757265206c656e67746800000000000000006044820152606401610350565b50505060208101516040820151606090920151909260009190911a90565b60008181526020819052604081206109999061111e565b600082815260208190526040902060020154610c03903361099f565b6108175760405162461bcd60e51b815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526f2061646d696e20746f207265766f6b6560801b6064820152608401610350565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b600061099682846115e9565b600061099682846115fd565b60006109968284611610565b6002546001600160a01b038216600090815260056020526040812060030154909111610d4d5760405162461bcd60e51b815260206004820152601860248201527f52657761726420686173206265656e2066696e697368656400000000000000006044820152606401610350565b6001600160a01b0382166000908152600560205260408120600301549003610dbe57506001600160a01b03811660009081526005602052604081206002808201549054600190920154909291610da39190611128565b90508015610db857610db581836115fd565b91505b50610ddc565b506001600160a01b0381166000908152600560205260409020600201545b600480546040516370a0823160e01b8152309281019290925282916001600160a01b03909116906370a0823190602401602060405180830381865afa158015610e29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4d919061157b565b1015610e915760405162461bcd60e51b8152602060048201526013602482015272125b9cdd59999a58da595b9d08185b5bdd5b9d606a1b6044820152606401610350565b6004805460405163a9059cbb60e01b81526001600160a01b03858116938201939093526024810184905291169063a9059cbb906044016020604051808303816000875af1158015610ee6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0a9190611594565b506001600160a01b038216600090815260056020526040902060010154610f319082610cd3565b6001600160a01b038316600090815260056020526040902060018082019290925542815560030154610f6291610cc7565b6001600160a01b0383166000818152600560209081526040918290206003019390935580519182529181018390527f650e45f04ef8a0c267b2f78d983913f69ae3a353b2b32de5429307522be0ab55910160405180910390a15050565b6000828152602081905260409020610fd79082611134565b156107a35760405133906001600160a01b0383169084907f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d90600090a45050565b60008281526020819052604090206110309082611149565b156107a35760405133906001600160a01b0383169084907ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b90600090a45050565b60008060008061108085610b5c565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa1580156110db573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b6000610996838361115e565b6001600160a01b03811660009081526001830160205260408120541515610996565b6000610999825490565b60006109968284611623565b6000610996836001600160a01b0384166111e4565b6000610996836001600160a01b038416611233565b815460009082106111bc5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610350565b8260000182815481106111d1576111d1611637565b9060005260206000200154905092915050565b600081815260018301602052604081205461122b57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610999565b506000610999565b6000818152600183016020526040812054801561131c576000611257600183611610565b855490915060009061126b90600190611610565b9050600086600001828154811061128457611284611637565b90600052602060002001549050808760000184815481106112a7576112a7611637565b6000918252602090912001556112be8360016115fd565b600082815260018901602052604090205586548790806112e0576112e061164d565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610999565b6000915050610999565b60006020828403121561133857600080fd5b5035919050565b80356001600160a01b038116811461135657600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261138257600080fd5b813567ffffffffffffffff8082111561139d5761139d61135b565b604051601f8301601f19908116603f011681019082821181831017156113c5576113c561135b565b816040528381528660208588010111156113de57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600080600060a0868803121561141657600080fd5b853594506114266020870161133f565b93506040860135925060608601359150608086013567ffffffffffffffff81111561145057600080fd5b61145c88828901611371565b9150509295509295909350565b6000806040838503121561147c57600080fd5b8235915061148c6020840161133f565b90509250929050565b6000602082840312156114a757600080fd5b6109968261133f565b600080600080600060a086880312156114c857600080fd5b6114d18661133f565b97602087013597506040870135966060810135965060800135945092505050565b6000806040838503121561150557600080fd5b50508035926020909101359150565b6000806040838503121561152757600080fd5b6115308361133f565b946020939093013593505050565b60006020828403121561155057600080fd5b813567ffffffffffffffff81111561156757600080fd5b61157384828501611371565b949350505050565b60006020828403121561158d57600080fd5b5051919050565b6000602082840312156115a657600080fd5b815180151581146115b657600080fd5b9392505050565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000826115f8576115f86115bd565b500490565b80820180821115610999576109996115d3565b81810381811115610999576109996115d3565b600082611632576116326115bd565b500690565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fdfecebf517aa4440d1d125e0355aae64401211d0848a23c02cc5d29a14822580ba4a26469706673582212206aac5bcd6454f60bafb67c597c5d39692b4a940bba1f8de7cded100babb2823564736f6c63430008180033000000000000000000000000d49bcae94a168c9ab7c862d2fcb7c229b82a7870000000000000000000000000ce872db165d4f5623af9c29e03afd416bc5f67bc
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c80639010d07c116100a2578063a7bb580311610071578063a7bb58031461028f578063ca15c873146102c0578063d547741f146102d3578063d8aee62e146102e6578063fa540801146102ef57600080fd5b80639010d07c1461023e57806391d14854146102515780639e281a9814610274578063a217fddf1461028757600080fd5b806349d3a0c1116100e957806349d3a0c11461018c5780635fa5e4e6146101965780636353586b146101ab578063644b3eed146102005780638af7b09d1461022b57600080fd5b8063248a9ca31461011b5780632e4dbe8f146101515780632f2ff15d1461016657806336568abe14610179575b600080fd5b61013e610129366004611326565b60009081526020819052604090206002015490565b6040519081526020015b60405180910390f35b61016461015f3660046113fe565b610302565b005b610164610174366004611469565b610719565b610164610187366004611469565b6107a7565b61013e62278d0081565b61013e60008051602061166483398151915281565b6101e06101b9366004611495565b60056020526000908152604090208054600182015460028301546003909301549192909184565b604080519485526020850193909352918301526060820152608001610148565b61021361020e3660046113fe565b610821565b6040516001600160a01b039091168152602001610148565b6101646102393660046114b0565b610895565b61021361024c3660046114f2565b61097e565b61026461025f366004611469565b61099f565b6040519015158152602001610148565b610164610282366004611514565b6109b7565b61013e600081565b6102a261029d36600461153e565b610b5c565b60408051938452602084019290925260ff1690820152606001610148565b61013e6102ce366004611326565b610bd0565b6101646102e1366004611469565b610be7565b61013e60025481565b61013e6102fd366004611326565b610c68565b6002600154036103595760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600155841580159061037557506001600160a01b03841615155b801561038057508215155b801561038c5750805115155b15610631576103b060008051602061166483398151915261025f8787878787610821565b6104065760405162461bcd60e51b815260206004820152602160248201527f5369676e657220646f6573206e6f74206861766520455845435554455f524f4c6044820152604560f81b6064820152608401610350565b60008581526003602052604090205460ff16156104655760405162461bcd60e51b815260206004820152601960248201527f5265717565737420616c7265616479207375626d6974746564000000000000006044820152606401610350565b6001600160a01b038416600090815260056020526040902060020154156104da5760405162461bcd60e51b815260206004820152602360248201527f5573657220616c7265616479207265676973746572656420666f7220616972646044820152620726f760ec1b6064820152608401610350565b6000826000036104f9576002546104f2908590610cbb565b90506105b8565b4261050b63665a648062278d00610cc7565b11156105555760405162461bcd60e51b815260206004820152601960248201527810db185a5b481a5b9d195c9d985b081b9bdd081c185cdcd959603a1b6044820152606401610350565b600254831061059d5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21031b7bab73a10373ab6b132b960611b6044820152606401610350565b6002546105b5906105ae9085610cd3565b8590610cbb565b90505b6040805160808101825260008082526020808301888152838501868152606085018981526001600160a01b038c168552600584528685209551865591516001808701919091559051600286015590516003948501558a835292905291909120805460ff1916909117905561062b85610cdf565b5061070e565b336000908152600560205260409020600101546106855760405162461bcd60e51b815260206004820152601260248201527114995dd85c99081b9bdd08195e1a5cdd195960721b6044820152606401610350565b3360009081526005602052604090205415806106bd5750336000908152600560205260409020546106b99062278d00610cc7565b4210155b6107055760405162461bcd60e51b815260206004820152601960248201527810db185a5b481a5b9d195c9d985b081b9bdd081c185cdcd959603a1b6044820152606401610350565b61070e33610cdf565b505060018055505050565b600082815260208190526040902060020154610735903361099f565b6107995760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526e0818591b5a5b881d1bc819dc985b9d608a1b6064820152608401610350565b6107a38282610fbf565b5050565b6001600160a01b03811633146108175760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610350565b6107a38282611018565b60408051606086901b6bffffffffffffffffffffffff1916602080830191909152603482018690526054820188905260748083018690528351808403909101815260949092019092528051910120600090600061087d82610c68565b90506108898185611071565b98975050505050505050565b6108ad6000805160206116648339815191523361099f565b806108be57506108be60003361099f565b61090a5760405162461bcd60e51b815260206004820152601f60248201527f43616c6c6572206973206e6f742061646d696e206f72206578656375746f72006044820152606401610350565b6001600160a01b03851661094f5760405162461bcd60e51b815260206004820152600c60248201526b24b73b30b634b2103ab9b2b960a11b6044820152606401610350565b6001600160a01b0390941660009081526005602052604090209283556001830191909155600282015560030155565b600082815260208190526040812061099690836110f0565b90505b92915050565b600082815260208190526040812061099690836110fc565b6109cf6000805160206116648339815191523361099f565b806109e057506109e060003361099f565b610a2c5760405162461bcd60e51b815260206004820152601f60248201527f43616c6c6572206973206e6f742061646d696e206f72206578656375746f72006044820152606401610350565b600480546040516370a0823160e01b815230928101929092526001600160a01b0316906370a0823190602401602060405180830381865afa158015610a75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a99919061157b565b811115610ade5760405162461bcd60e51b8152602060048201526013602482015272125b9cdd59999a58da595b9d08185b5bdd5b9d606a1b6044820152606401610350565b6004805460405163a9059cbb60e01b81526001600160a01b03858116938201939093526024810184905291169063a9059cbb906044016020604051808303816000875af1158015610b33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b579190611594565b505050565b60008060008351604114610bb25760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964207369676e6174757265206c656e67746800000000000000006044820152606401610350565b50505060208101516040820151606090920151909260009190911a90565b60008181526020819052604081206109999061111e565b600082815260208190526040902060020154610c03903361099f565b6108175760405162461bcd60e51b815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526f2061646d696e20746f207265766f6b6560801b6064820152608401610350565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b600061099682846115e9565b600061099682846115fd565b60006109968284611610565b6002546001600160a01b038216600090815260056020526040812060030154909111610d4d5760405162461bcd60e51b815260206004820152601860248201527f52657761726420686173206265656e2066696e697368656400000000000000006044820152606401610350565b6001600160a01b0382166000908152600560205260408120600301549003610dbe57506001600160a01b03811660009081526005602052604081206002808201549054600190920154909291610da39190611128565b90508015610db857610db581836115fd565b91505b50610ddc565b506001600160a01b0381166000908152600560205260409020600201545b600480546040516370a0823160e01b8152309281019290925282916001600160a01b03909116906370a0823190602401602060405180830381865afa158015610e29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4d919061157b565b1015610e915760405162461bcd60e51b8152602060048201526013602482015272125b9cdd59999a58da595b9d08185b5bdd5b9d606a1b6044820152606401610350565b6004805460405163a9059cbb60e01b81526001600160a01b03858116938201939093526024810184905291169063a9059cbb906044016020604051808303816000875af1158015610ee6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0a9190611594565b506001600160a01b038216600090815260056020526040902060010154610f319082610cd3565b6001600160a01b038316600090815260056020526040902060018082019290925542815560030154610f6291610cc7565b6001600160a01b0383166000818152600560209081526040918290206003019390935580519182529181018390527f650e45f04ef8a0c267b2f78d983913f69ae3a353b2b32de5429307522be0ab55910160405180910390a15050565b6000828152602081905260409020610fd79082611134565b156107a35760405133906001600160a01b0383169084907f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d90600090a45050565b60008281526020819052604090206110309082611149565b156107a35760405133906001600160a01b0383169084907ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b90600090a45050565b60008060008061108085610b5c565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa1580156110db573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b6000610996838361115e565b6001600160a01b03811660009081526001830160205260408120541515610996565b6000610999825490565b60006109968284611623565b6000610996836001600160a01b0384166111e4565b6000610996836001600160a01b038416611233565b815460009082106111bc5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610350565b8260000182815481106111d1576111d1611637565b9060005260206000200154905092915050565b600081815260018301602052604081205461122b57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610999565b506000610999565b6000818152600183016020526040812054801561131c576000611257600183611610565b855490915060009061126b90600190611610565b9050600086600001828154811061128457611284611637565b90600052602060002001549050808760000184815481106112a7576112a7611637565b6000918252602090912001556112be8360016115fd565b600082815260018901602052604090205586548790806112e0576112e061164d565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610999565b6000915050610999565b60006020828403121561133857600080fd5b5035919050565b80356001600160a01b038116811461135657600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261138257600080fd5b813567ffffffffffffffff8082111561139d5761139d61135b565b604051601f8301601f19908116603f011681019082821181831017156113c5576113c561135b565b816040528381528660208588010111156113de57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600080600060a0868803121561141657600080fd5b853594506114266020870161133f565b93506040860135925060608601359150608086013567ffffffffffffffff81111561145057600080fd5b61145c88828901611371565b9150509295509295909350565b6000806040838503121561147c57600080fd5b8235915061148c6020840161133f565b90509250929050565b6000602082840312156114a757600080fd5b6109968261133f565b600080600080600060a086880312156114c857600080fd5b6114d18661133f565b97602087013597506040870135966060810135965060800135945092505050565b6000806040838503121561150557600080fd5b50508035926020909101359150565b6000806040838503121561152757600080fd5b6115308361133f565b946020939093013593505050565b60006020828403121561155057600080fd5b813567ffffffffffffffff81111561156757600080fd5b61157384828501611371565b949350505050565b60006020828403121561158d57600080fd5b5051919050565b6000602082840312156115a657600080fd5b815180151581146115b657600080fd5b9392505050565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000826115f8576115f86115bd565b500490565b80820180821115610999576109996115d3565b81810381811115610999576109996115d3565b600082611632576116326115bd565b500690565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fdfecebf517aa4440d1d125e0355aae64401211d0848a23c02cc5d29a14822580ba4a26469706673582212206aac5bcd6454f60bafb67c597c5d39692b4a940bba1f8de7cded100babb2823564736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d49bcae94a168c9ab7c862d2fcb7c229b82a7870000000000000000000000000ce872db165d4f5623af9c29e03afd416bc5f67bc
-----Decoded View---------------
Arg [0] : _execute (address): 0xd49bCAe94a168c9AB7C862D2fcb7c229B82A7870
Arg [1] : _token (address): 0xcE872DB165d4F5623AF9c29e03AFd416Bc5f67bc
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000d49bcae94a168c9ab7c862d2fcb7c229b82a7870
Arg [1] : 000000000000000000000000ce872db165d4f5623af9c29e03afd416bc5f67bc
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.