More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 21,836 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Multicall | 20453658 | 106 days ago | IN | 0 ETH | 0.00008003 | ||||
Multicall | 20453658 | 106 days ago | IN | 0 ETH | 0.00008003 | ||||
Multicall | 20145332 | 149 days ago | IN | 0 ETH | 0.00017321 | ||||
Multicall | 20144700 | 149 days ago | IN | 0 ETH | 0.00017924 | ||||
Multicall | 19909200 | 182 days ago | IN | 0 ETH | 0.00020959 | ||||
Multicall | 19849422 | 190 days ago | IN | 0 ETH | 0.00028366 | ||||
Multicall | 19836984 | 192 days ago | IN | 0 ETH | 0.00029868 | ||||
Multicall | 19836944 | 192 days ago | IN | 0 ETH | 0.0002573 | ||||
Multicall | 19750187 | 204 days ago | IN | 0 ETH | 0.00033124 | ||||
Multicall | 19750103 | 204 days ago | IN | 0 ETH | 0.00042636 | ||||
Multicall | 19750103 | 204 days ago | IN | 0 ETH | 0.00033124 | ||||
Multicall | 18295242 | 408 days ago | IN | 0 ETH | 0.00049505 | ||||
Release | 18295230 | 408 days ago | IN | 0 ETH | 0.00037433 | ||||
Release | 18177793 | 424 days ago | IN | 0 ETH | 0.00179184 | ||||
Enable Airdrop | 18177789 | 424 days ago | IN | 0 ETH | 0.00076971 | ||||
Release | 18177777 | 424 days ago | IN | 0 ETH | 0.00136132 | ||||
Enable Airdrop | 18177773 | 424 days ago | IN | 0 ETH | 0.00100999 | ||||
Release | 18177762 | 424 days ago | IN | 0 ETH | 0.00192242 | ||||
Enable Airdrop | 18177758 | 424 days ago | IN | 0 ETH | 0.00105835 | ||||
Release | 18177751 | 424 days ago | IN | 0 ETH | 0.0021466 | ||||
Enable Airdrop | 18177747 | 424 days ago | IN | 0 ETH | 0.00115456 | ||||
Release | 18177737 | 424 days ago | IN | 0 ETH | 0.00205984 | ||||
Enable Airdrop | 18177732 | 424 days ago | IN | 0 ETH | 0.00120267 | ||||
Release | 18177725 | 424 days ago | IN | 0 ETH | 0.00162302 | ||||
Enable Airdrop | 18177720 | 424 days ago | IN | 0 ETH | 0.00105835 |
Loading...
Loading
Contract Name:
VestedAirdrops
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@amxx/hre/contracts/ENSReverseRegistration.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/math/Math.sol"; import "@openzeppelin/contracts/utils/Multicall.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; /// @custom:security-contact [email protected] contract VestedAirdrops is AccessControl, Multicall { bytes32 public constant VESTING_MANAGER_ROLE = keccak256("VESTING_MANAGER_ROLE"); struct Schedule { uint64 index; // salt uint64 start; uint64 cliff; uint64 duration; IERC20 token; address recipient; uint256 amount; } mapping(bytes32 => bool) private _airdrops; mapping(bytes32 => uint256) private _released; event Airdrop(bytes32 indexed airdrop, bool enabled); event TokensReleased(bytes32 indexed airdrop, bytes32 indexed leaf, IERC20 token, address recipient, uint256 releasedAmount, uint256 scheduleAmount); constructor(address admin) { _setupRole(DEFAULT_ADMIN_ROLE, admin); _setupRole(VESTING_MANAGER_ROLE, admin); } function enableAirdrop(bytes32 root, bool enable) external onlyRole(VESTING_MANAGER_ROLE) { _airdrops[root] = enable; emit Airdrop(root, enable); } function enabled(bytes32 root) public view returns (bool) { return _airdrops[root]; } function vestedAmount(Schedule memory schedule, uint64 timestamp) public pure returns (uint256) { return timestamp < schedule.start + schedule.cliff ? 0 : schedule.duration == 0 ? schedule.amount : Math.min( schedule.amount, schedule.amount * (timestamp - schedule.start) / schedule.duration ); } function released(bytes32 leaf) public view returns (uint256) { return _released[leaf]; } function checkRelease(Schedule memory schedule, bytes32[] memory proof) public view returns (uint256, uint256, bytes32, bytes32) { // check proof bytes32 leaf = hashSchedule(schedule); bytes32 drop = MerkleProof.processProof(proof, leaf); require(enabled(drop), "VestedAirdrops: unknown airdrop"); // get details uint256 vested = vestedAmount(schedule, uint64(block.timestamp)); uint256 releasable = vested - released(leaf); return (vested, releasable, drop, leaf); } function release(Schedule memory schedule, bytes32[] memory proof) public { // get schedule details ( uint256 vested, uint256 releasable, bytes32 drop, bytes32 leaf ) = checkRelease(schedule, proof); // reverts it proof is invalud if (releasable > 0) { _released[leaf] = vested; // emit notification emit TokensReleased(drop, leaf, schedule.token, schedule.recipient, releasable, schedule.amount); // do release SafeERC20.safeTransfer(schedule.token, schedule.recipient, releasable); } } function hashSchedule(Schedule memory schedule) public pure returns (bytes32) { return keccak256(abi.encodePacked( schedule.index, schedule.start, schedule.cliff, schedule.duration, schedule.token, schedule.recipient, schedule.amount )); } function setName(address ensregistry, string calldata ensname) external onlyRole(DEFAULT_ADMIN_ROLE) { ENSReverseRegistration.setName(ensregistry, ensname); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IENS { event NewOwner(bytes32 indexed node, bytes32 indexed label, address owner); event Transfer(bytes32 indexed node, address owner); event NewResolver(bytes32 indexed node, address resolver); event NewTTL(bytes32 indexed node, uint64 ttl); event ApprovalForAll(address indexed owner, address indexed operator, bool approved); function setRecord(bytes32, address, address, uint64) external; function setSubnodeRecord(bytes32, bytes32, address, address, uint64) external; function setSubnodeOwner(bytes32, bytes32, address) external returns(bytes32); function setResolver(bytes32, address) external; function setOwner(bytes32, address) external; function setTTL(bytes32, uint64) external; function setApprovalForAll(address, bool) external; function owner(bytes32) external view returns (address); function resolver(bytes32) external view returns (address); function ttl(bytes32) external view returns (uint64); function recordExists(bytes32) external view returns (bool); function isApprovedForAll(address, address) external view returns (bool); } interface IReverseRegistrar { function ADDR_REVERSE_NODE() external view returns (bytes32); function ens() external view returns (IENS); function defaultResolver() external view returns (address); function claim(address) external returns (bytes32); function claimWithResolver(address, address) external returns (bytes32); function setName(string calldata) external returns (bytes32); function node(address) external pure returns (bytes32); } library ENSReverseRegistration { // namehash('addr.reverse') bytes32 internal constant ADDR_REVERSE_NODE = 0x91d1777781884d03a6757a803996e38de2a42967fb37eeaca72729271025a9e2; function setName(address ensregistry, string calldata ensname) internal { IReverseRegistrar(IENS(ensregistry).owner(ADDR_REVERSE_NODE)).setName(ensname); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * 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, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @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 virtual override 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 override onlyRole(getRoleAdmin(role)) { _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 override onlyRole(getRoleAdmin(role)) { _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 revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { 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}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ 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 { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a / b + (a % b == 0 ? 0 : 1); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Multicall.sol) pragma solidity ^0.8.0; import "./Address.sol"; /** * @dev Provides a function to batch together multiple calls in a single external call. * * _Available since v4.1._ */ abstract contract Multicall { /** * @dev Receives and executes a batch of function calls on this contract. */ function multicall(bytes[] calldata data) external virtual returns (bytes[] memory results) { results = new bytes[](data.length); for (uint256 i = 0; i < data.length; i++) { results[i] = Address.functionDelegateCall(address(this), data[i]); } return results; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @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 {AccessControl-_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) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @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) external; /** * @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) external; /** * @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) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @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 // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
{ "optimizer": { "enabled": true, "runs": 200 }, "debug": { "revertStrings": "strip" }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"airdrop","type":"bytes32"},{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"Airdrop","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"airdrop","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"leaf","type":"bytes32"},{"indexed":false,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"releasedAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"scheduleAmount","type":"uint256"}],"name":"TokensReleased","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VESTING_MANAGER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint64","name":"index","type":"uint64"},{"internalType":"uint64","name":"start","type":"uint64"},{"internalType":"uint64","name":"cliff","type":"uint64"},{"internalType":"uint64","name":"duration","type":"uint64"},{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct VestedAirdrops.Schedule","name":"schedule","type":"tuple"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"checkRelease","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"enableAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"enabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"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":[{"components":[{"internalType":"uint64","name":"index","type":"uint64"},{"internalType":"uint64","name":"start","type":"uint64"},{"internalType":"uint64","name":"cliff","type":"uint64"},{"internalType":"uint64","name":"duration","type":"uint64"},{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct VestedAirdrops.Schedule","name":"schedule","type":"tuple"}],"name":"hashSchedule","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint64","name":"index","type":"uint64"},{"internalType":"uint64","name":"start","type":"uint64"},{"internalType":"uint64","name":"cliff","type":"uint64"},{"internalType":"uint64","name":"duration","type":"uint64"},{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct VestedAirdrops.Schedule","name":"schedule","type":"tuple"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"ensregistry","type":"address"},{"internalType":"string","name":"ensname","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint64","name":"index","type":"uint64"},{"internalType":"uint64","name":"start","type":"uint64"},{"internalType":"uint64","name":"cliff","type":"uint64"},{"internalType":"uint64","name":"duration","type":"uint64"},{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct VestedAirdrops.Schedule","name":"schedule","type":"tuple"},{"internalType":"uint64","name":"timestamp","type":"uint64"}],"name":"vestedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620016ec380380620016ec833981016040819052620000349162000124565b6200004160008262000074565b6200006d7fd810f479110c9771ec744414e571d78468b4e92a20f345df2ffbdc5f927a182e8262000074565b5062000156565b62000080828262000084565b5050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1662000080576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620000e03390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000602082840312156200013757600080fd5b81516001600160a01b03811681146200014f57600080fd5b9392505050565b61158680620001666000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806397b35451116100a2578063ac9650d811610071578063ac9650d81461024b578063b45df1f91461026b578063b8664dca1461027e578063ba815590146102a5578063d547741f146102c857600080fd5b806397b35451146101fd5780639829e42114610210578063a217fddf14610223578063a6d68ecd1461022b57600080fd5b806336568abe116100de57806336568abe1461019157806352150317146101a4578063613b3818146101d757806391d14854146101ea57600080fd5b806301ffc9a714610110578063248a9ca3146101385780632f2ff15d146101695780633121db1c1461017e575b600080fd5b61012361011e366004610e31565b6102db565b60405190151581526020015b60405180910390f35b61015b610146366004610e5b565b60009081526020819052604090206001015490565b60405190815260200161012f565b61017c610177366004610e8c565b610312565b005b61017c61018c366004610ebc565b61033d565b61017c61019f366004610e8c565b61035a565b6101b76101b2366004611051565b61037d565b60408051948552602085019390935291830152606082015260800161012f565b61017c6101e536600461111a565b6103f6565b6101236101f8366004610e8c565b610479565b61015b61020b36600461113f565b6104a2565b61015b61021e36600461115b565b610554565b61015b600081565b61015b610239366004610e5b565b60009081526002602052604090205490565b61025e610259366004611190565b6105fb565b60405161012f9190611230565b61017c610279366004611051565b6106ef565b61015b7fd810f479110c9771ec744414e571d78468b4e92a20f345df2ffbdc5f927a182e81565b6101236102b3366004610e5b565b60009081526001602052604090205460ff1690565b61017c6102d6366004610e8c565b6107a7565b60006001600160e01b03198216637965db0b60e01b148061030c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60008281526020819052604090206001015461032e81336107cd565b610338838361081e565b505050565b600061034981336107cd565b6103548484846108a2565b50505050565b6001600160a01b038116331461036f57600080fd5b610379828261099a565b5050565b600080600080600061038e876104a2565b9050600061039c87836109ff565b60008181526001602052604090205490915060ff166103ba57600080fd5b60006103c68942610554565b600084815260026020526040812054919250906103e390836112c0565b919a919950919750919550909350505050565b7fd810f479110c9771ec744414e571d78468b4e92a20f345df2ffbdc5f927a182e61042181336107cd565b600083815260016020908152604091829020805460ff1916851515908117909155915191825284917f863e8cd2c0355c3ea76328efc6f839c31f6311a5340c313c014cc144aac0fdcd910160405180910390a2505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b80516020808301516040808501516060860151608087015160a088015160c0890151945160009861053798909796910160c097881b6001600160c01b0319908116825296881b8716600882015294871b861660108601529290951b9093166018830152606092831b6bffffffffffffffffffffffff1990811660208401529390921b9092166034830152604882015260680190565b604051602081830303815290604052805190602001209050919050565b60008260400151836020015161056a91906112d7565b6001600160401b0316826001600160401b0316106105f15760608301516001600160401b0316156105e7576105e28360c0015184606001516001600160401b03168560200151856105bb9190611302565b6001600160401b03168660c001516105d3919061132a565b6105dd9190611349565b610a73565b6105f4565b8260c001516105f4565b60005b9392505050565b6060816001600160401b0381111561061557610615610f40565b60405190808252806020026020018201604052801561064857816020015b60608152602001906001900390816106335790505b50905060005b828110156106e8576106b83085858481811061066c5761066c61136b565b905060200281019061067e9190611381565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610a8992505050565b8282815181106106ca576106ca61136b565b602002602001018190525080806106e0906113ce565b91505061064e565b5092915050565b6000806000806106ff868661037d565b9350935093509350600083111561079f5760008181526002602090815260409182902086905560808089015160a08a015160c08b015185516001600160a01b03938416815292909116938201939093529283018690526060830191909152829184917fbd9f18d326ad1063dfe8cf499c197c8a6b7d8a48bac781527b5c177bfa1ad826910160405180910390a361079f86608001518760a0015185610aae565b505050505050565b6000828152602081905260409020600101546107c381336107cd565b610338838361099a565b6107d78282610479565b610379576107ef816001600160a01b03166014610b00565b6107fa836020610b00565b60405160200161080b9291906113e7565b60408051601f1981840301905252600080fd5b6108288282610479565b610379576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905561085e3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6040516302571be360e01b81527f91d1777781884d03a6757a803996e38de2a42967fb37eeaca72729271025a9e260048201526001600160a01b038416906302571be390602401602060405180830381865afa158015610906573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092a919061145c565b6001600160a01b031663c47f002783836040518363ffffffff1660e01b8152600401610957929190611479565b6020604051808303816000875af1158015610976573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061035491906114a8565b6109a48282610479565b15610379576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600081815b8451811015610a6b576000858281518110610a2157610a2161136b565b60200260200101519050808311610a475760008381526020829052604090209250610a58565b600081815260208490526040902092505b5080610a63816113ce565b915050610a04565b509392505050565b6000818310610a8257816105f4565b5090919050565b60606105f4838360405180606001604052806027815260200161152a60279139610c58565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610338908490610ce3565b60606000610b0f83600261132a565b610b1a9060026114c1565b6001600160401b03811115610b3157610b31610f40565b6040519080825280601f01601f191660200182016040528015610b5b576020820181803683370190505b509050600360fc1b81600081518110610b7657610b7661136b565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610ba557610ba561136b565b60200101906001600160f81b031916908160001a9053506000610bc984600261132a565b610bd49060016114c1565b90505b6001811115610c4c576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610c0857610c0861136b565b1a60f81b828281518110610c1e57610c1e61136b565b60200101906001600160f81b031916908160001a90535060049490941c93610c45816114d9565b9050610bd7565b5083156105f457600080fd5b60606001600160a01b0384163b610c6e57600080fd5b600080856001600160a01b031685604051610c8991906114f0565b600060405180830381855af49150503d8060008114610cc4576040519150601f19603f3d011682016040523d82523d6000602084013e610cc9565b606091505b5091509150610cd9828286610d5f565b9695505050505050565b6000610d38826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610d7e9092919063ffffffff16565b8051909150156103385780806020019051810190610d56919061150c565b61033857600080fd5b60608315610d6e5750816105f4565b82511561010b5782518084602001fd5b6060610d8d8484600085610d95565b949350505050565b606082471015610da457600080fd5b6001600160a01b0385163b610db857600080fd5b600080866001600160a01b03168587604051610dd491906114f0565b60006040518083038185875af1925050503d8060008114610e11576040519150601f19603f3d011682016040523d82523d6000602084013e610e16565b606091505b5091509150610e26828286610d5f565b979650505050505050565b600060208284031215610e4357600080fd5b81356001600160e01b0319811681146105f457600080fd5b600060208284031215610e6d57600080fd5b5035919050565b6001600160a01b0381168114610e8957600080fd5b50565b60008060408385031215610e9f57600080fd5b823591506020830135610eb181610e74565b809150509250929050565b600080600060408486031215610ed157600080fd5b8335610edc81610e74565b925060208401356001600160401b0380821115610ef857600080fd5b818601915086601f830112610f0c57600080fd5b813581811115610f1b57600080fd5b876020828501011115610f2d57600080fd5b6020830194508093505050509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715610f7e57610f7e610f40565b604052919050565b80356001600160401b0381168114610f9d57600080fd5b919050565b600060e08284031215610fb457600080fd5b60405160e081018181106001600160401b0382111715610fd657610fd6610f40565b604052905080610fe583610f86565b8152610ff360208401610f86565b602082015261100460408401610f86565b604082015261101560608401610f86565b6060820152608083013561102881610e74565b608082015260a083013561103b81610e74565b60a082015260c092830135920191909152919050565b600080610100838503121561106557600080fd5b61106f8484610fa2565b915060e08301356001600160401b038082111561108b57600080fd5b818501915085601f83011261109f57600080fd5b81356020828211156110b3576110b3610f40565b8160051b92506110c4818401610f56565b82815292840181019281810190898511156110de57600080fd5b948201945b848610156110fc578535825294820194908201906110e3565b8096505050505050509250929050565b8015158114610e8957600080fd5b6000806040838503121561112d57600080fd5b823591506020830135610eb18161110c565b600060e0828403121561115157600080fd5b6105f48383610fa2565b600080610100838503121561116f57600080fd5b6111798484610fa2565b915061118760e08401610f86565b90509250929050565b600080602083850312156111a357600080fd5b82356001600160401b03808211156111ba57600080fd5b818501915085601f8301126111ce57600080fd5b8135818111156111dd57600080fd5b8660208260051b85010111156111f257600080fd5b60209290920196919550909350505050565b60005b8381101561121f578181015183820152602001611207565b838111156103545750506000910152565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b8281101561129d57878503603f190184528151805180875261127e818989018a8501611204565b601f01601f191695909501860194509285019290850190600101611257565b5092979650505050505050565b634e487b7160e01b600052601160045260246000fd5b6000828210156112d2576112d26112aa565b500390565b60006001600160401b038083168185168083038211156112f9576112f96112aa565b01949350505050565b60006001600160401b0383811690831681811015611322576113226112aa565b039392505050565b6000816000190483118215151615611344576113446112aa565b500290565b60008261136657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000808335601e1984360301811261139857600080fd5b8301803591506001600160401b038211156113b257600080fd5b6020019150368190038213156113c757600080fd5b9250929050565b6000600182016113e0576113e06112aa565b5060010190565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161141f816017850160208801611204565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611450816028840160208801611204565b01602801949350505050565b60006020828403121561146e57600080fd5b81516105f481610e74565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b6000602082840312156114ba57600080fd5b5051919050565b600082198211156114d4576114d46112aa565b500190565b6000816114e8576114e86112aa565b506000190190565b60008251611502818460208701611204565b9190910192915050565b60006020828403121561151e57600080fd5b81516105f48161110c56fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220f178671593c932eea3296d54aac2d2bdd04c63c395cf81f3f5f6708f1e5ec25464736f6c634300080d0033000000000000000000000000491ba84a68570f08e0f0fe0078d5b3ddb61853e5
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806397b35451116100a2578063ac9650d811610071578063ac9650d81461024b578063b45df1f91461026b578063b8664dca1461027e578063ba815590146102a5578063d547741f146102c857600080fd5b806397b35451146101fd5780639829e42114610210578063a217fddf14610223578063a6d68ecd1461022b57600080fd5b806336568abe116100de57806336568abe1461019157806352150317146101a4578063613b3818146101d757806391d14854146101ea57600080fd5b806301ffc9a714610110578063248a9ca3146101385780632f2ff15d146101695780633121db1c1461017e575b600080fd5b61012361011e366004610e31565b6102db565b60405190151581526020015b60405180910390f35b61015b610146366004610e5b565b60009081526020819052604090206001015490565b60405190815260200161012f565b61017c610177366004610e8c565b610312565b005b61017c61018c366004610ebc565b61033d565b61017c61019f366004610e8c565b61035a565b6101b76101b2366004611051565b61037d565b60408051948552602085019390935291830152606082015260800161012f565b61017c6101e536600461111a565b6103f6565b6101236101f8366004610e8c565b610479565b61015b61020b36600461113f565b6104a2565b61015b61021e36600461115b565b610554565b61015b600081565b61015b610239366004610e5b565b60009081526002602052604090205490565b61025e610259366004611190565b6105fb565b60405161012f9190611230565b61017c610279366004611051565b6106ef565b61015b7fd810f479110c9771ec744414e571d78468b4e92a20f345df2ffbdc5f927a182e81565b6101236102b3366004610e5b565b60009081526001602052604090205460ff1690565b61017c6102d6366004610e8c565b6107a7565b60006001600160e01b03198216637965db0b60e01b148061030c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60008281526020819052604090206001015461032e81336107cd565b610338838361081e565b505050565b600061034981336107cd565b6103548484846108a2565b50505050565b6001600160a01b038116331461036f57600080fd5b610379828261099a565b5050565b600080600080600061038e876104a2565b9050600061039c87836109ff565b60008181526001602052604090205490915060ff166103ba57600080fd5b60006103c68942610554565b600084815260026020526040812054919250906103e390836112c0565b919a919950919750919550909350505050565b7fd810f479110c9771ec744414e571d78468b4e92a20f345df2ffbdc5f927a182e61042181336107cd565b600083815260016020908152604091829020805460ff1916851515908117909155915191825284917f863e8cd2c0355c3ea76328efc6f839c31f6311a5340c313c014cc144aac0fdcd910160405180910390a2505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b80516020808301516040808501516060860151608087015160a088015160c0890151945160009861053798909796910160c097881b6001600160c01b0319908116825296881b8716600882015294871b861660108601529290951b9093166018830152606092831b6bffffffffffffffffffffffff1990811660208401529390921b9092166034830152604882015260680190565b604051602081830303815290604052805190602001209050919050565b60008260400151836020015161056a91906112d7565b6001600160401b0316826001600160401b0316106105f15760608301516001600160401b0316156105e7576105e28360c0015184606001516001600160401b03168560200151856105bb9190611302565b6001600160401b03168660c001516105d3919061132a565b6105dd9190611349565b610a73565b6105f4565b8260c001516105f4565b60005b9392505050565b6060816001600160401b0381111561061557610615610f40565b60405190808252806020026020018201604052801561064857816020015b60608152602001906001900390816106335790505b50905060005b828110156106e8576106b83085858481811061066c5761066c61136b565b905060200281019061067e9190611381565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610a8992505050565b8282815181106106ca576106ca61136b565b602002602001018190525080806106e0906113ce565b91505061064e565b5092915050565b6000806000806106ff868661037d565b9350935093509350600083111561079f5760008181526002602090815260409182902086905560808089015160a08a015160c08b015185516001600160a01b03938416815292909116938201939093529283018690526060830191909152829184917fbd9f18d326ad1063dfe8cf499c197c8a6b7d8a48bac781527b5c177bfa1ad826910160405180910390a361079f86608001518760a0015185610aae565b505050505050565b6000828152602081905260409020600101546107c381336107cd565b610338838361099a565b6107d78282610479565b610379576107ef816001600160a01b03166014610b00565b6107fa836020610b00565b60405160200161080b9291906113e7565b60408051601f1981840301905252600080fd5b6108288282610479565b610379576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905561085e3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6040516302571be360e01b81527f91d1777781884d03a6757a803996e38de2a42967fb37eeaca72729271025a9e260048201526001600160a01b038416906302571be390602401602060405180830381865afa158015610906573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092a919061145c565b6001600160a01b031663c47f002783836040518363ffffffff1660e01b8152600401610957929190611479565b6020604051808303816000875af1158015610976573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061035491906114a8565b6109a48282610479565b15610379576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600081815b8451811015610a6b576000858281518110610a2157610a2161136b565b60200260200101519050808311610a475760008381526020829052604090209250610a58565b600081815260208490526040902092505b5080610a63816113ce565b915050610a04565b509392505050565b6000818310610a8257816105f4565b5090919050565b60606105f4838360405180606001604052806027815260200161152a60279139610c58565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610338908490610ce3565b60606000610b0f83600261132a565b610b1a9060026114c1565b6001600160401b03811115610b3157610b31610f40565b6040519080825280601f01601f191660200182016040528015610b5b576020820181803683370190505b509050600360fc1b81600081518110610b7657610b7661136b565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610ba557610ba561136b565b60200101906001600160f81b031916908160001a9053506000610bc984600261132a565b610bd49060016114c1565b90505b6001811115610c4c576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610c0857610c0861136b565b1a60f81b828281518110610c1e57610c1e61136b565b60200101906001600160f81b031916908160001a90535060049490941c93610c45816114d9565b9050610bd7565b5083156105f457600080fd5b60606001600160a01b0384163b610c6e57600080fd5b600080856001600160a01b031685604051610c8991906114f0565b600060405180830381855af49150503d8060008114610cc4576040519150601f19603f3d011682016040523d82523d6000602084013e610cc9565b606091505b5091509150610cd9828286610d5f565b9695505050505050565b6000610d38826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610d7e9092919063ffffffff16565b8051909150156103385780806020019051810190610d56919061150c565b61033857600080fd5b60608315610d6e5750816105f4565b82511561010b5782518084602001fd5b6060610d8d8484600085610d95565b949350505050565b606082471015610da457600080fd5b6001600160a01b0385163b610db857600080fd5b600080866001600160a01b03168587604051610dd491906114f0565b60006040518083038185875af1925050503d8060008114610e11576040519150601f19603f3d011682016040523d82523d6000602084013e610e16565b606091505b5091509150610e26828286610d5f565b979650505050505050565b600060208284031215610e4357600080fd5b81356001600160e01b0319811681146105f457600080fd5b600060208284031215610e6d57600080fd5b5035919050565b6001600160a01b0381168114610e8957600080fd5b50565b60008060408385031215610e9f57600080fd5b823591506020830135610eb181610e74565b809150509250929050565b600080600060408486031215610ed157600080fd5b8335610edc81610e74565b925060208401356001600160401b0380821115610ef857600080fd5b818601915086601f830112610f0c57600080fd5b813581811115610f1b57600080fd5b876020828501011115610f2d57600080fd5b6020830194508093505050509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715610f7e57610f7e610f40565b604052919050565b80356001600160401b0381168114610f9d57600080fd5b919050565b600060e08284031215610fb457600080fd5b60405160e081018181106001600160401b0382111715610fd657610fd6610f40565b604052905080610fe583610f86565b8152610ff360208401610f86565b602082015261100460408401610f86565b604082015261101560608401610f86565b6060820152608083013561102881610e74565b608082015260a083013561103b81610e74565b60a082015260c092830135920191909152919050565b600080610100838503121561106557600080fd5b61106f8484610fa2565b915060e08301356001600160401b038082111561108b57600080fd5b818501915085601f83011261109f57600080fd5b81356020828211156110b3576110b3610f40565b8160051b92506110c4818401610f56565b82815292840181019281810190898511156110de57600080fd5b948201945b848610156110fc578535825294820194908201906110e3565b8096505050505050509250929050565b8015158114610e8957600080fd5b6000806040838503121561112d57600080fd5b823591506020830135610eb18161110c565b600060e0828403121561115157600080fd5b6105f48383610fa2565b600080610100838503121561116f57600080fd5b6111798484610fa2565b915061118760e08401610f86565b90509250929050565b600080602083850312156111a357600080fd5b82356001600160401b03808211156111ba57600080fd5b818501915085601f8301126111ce57600080fd5b8135818111156111dd57600080fd5b8660208260051b85010111156111f257600080fd5b60209290920196919550909350505050565b60005b8381101561121f578181015183820152602001611207565b838111156103545750506000910152565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b8281101561129d57878503603f190184528151805180875261127e818989018a8501611204565b601f01601f191695909501860194509285019290850190600101611257565b5092979650505050505050565b634e487b7160e01b600052601160045260246000fd5b6000828210156112d2576112d26112aa565b500390565b60006001600160401b038083168185168083038211156112f9576112f96112aa565b01949350505050565b60006001600160401b0383811690831681811015611322576113226112aa565b039392505050565b6000816000190483118215151615611344576113446112aa565b500290565b60008261136657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000808335601e1984360301811261139857600080fd5b8301803591506001600160401b038211156113b257600080fd5b6020019150368190038213156113c757600080fd5b9250929050565b6000600182016113e0576113e06112aa565b5060010190565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161141f816017850160208801611204565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611450816028840160208801611204565b01602801949350505050565b60006020828403121561146e57600080fd5b81516105f481610e74565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b6000602082840312156114ba57600080fd5b5051919050565b600082198211156114d4576114d46112aa565b500190565b6000816114e8576114e86112aa565b506000190190565b60008251611502818460208701611204565b9190910192915050565b60006020828403121561151e57600080fd5b81516105f48161110c56fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220f178671593c932eea3296d54aac2d2bdd04c63c395cf81f3f5f6708f1e5ec25464736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000491ba84a68570f08e0f0fe0078d5b3ddb61853e5
-----Decoded View---------------
Arg [0] : admin (address): 0x491Ba84a68570f08E0f0fe0078D5B3DdB61853e5
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000491ba84a68570f08e0f0fe0078d5b3ddb61853e5
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.410709 | 2.3301 | $0.9569 |
Loading...
Loading
[ Download: CSV Export ]
[ 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.