Source Code
Overview
HYPE Balance
HYPE Value
$0.00Latest 25 from a total of 37 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 25428969 | 44 hrs ago | IN | 0.97078347 HYPE | 0 | ||||
| Transfer | 25071692 | 5 days ago | IN | 1.29076541 HYPE | 0 | ||||
| Transfer | 24896658 | 7 days ago | IN | 12.6681713 HYPE | 0 | ||||
| Transfer | 24370229 | 13 days ago | IN | 31.10954911 HYPE | 0 | ||||
| Transfer | 24026537 | 17 days ago | IN | 0.39349609 HYPE | 0 | ||||
| Transfer | 23864932 | 19 days ago | IN | 17.97701353 HYPE | 0 | ||||
| Transfer | 23303359 | 26 days ago | IN | 2.39939564 HYPE | 0 | ||||
| Transfer | 22528362 | 34 days ago | IN | 1.72768176 HYPE | 0 | ||||
| Transfer | 22253595 | 38 days ago | IN | 10.60913369 HYPE | 0 | ||||
| Transfer | 21722896 | 44 days ago | IN | 6.74605762 HYPE | 0 | ||||
| Transfer | 21389700 | 47 days ago | IN | 0.04993975 HYPE | 0 | ||||
| Transfer | 21220657 | 49 days ago | IN | 0.01487299 HYPE | 0 | ||||
| Transfer | 20943488 | 52 days ago | IN | 0.42929181 HYPE | 0 | ||||
| Transfer | 20440737 | 58 days ago | IN | 23.40051669 HYPE | 0 | ||||
| Transfer | 20058922 | 62 days ago | IN | 0.3417109 HYPE | 0 | ||||
| Transfer | 19907657 | 64 days ago | IN | 0.22424452 HYPE | 0 | ||||
| Transfer | 19368093 | 70 days ago | IN | 130.40841653 HYPE | 0 | ||||
| Transfer | 19024379 | 74 days ago | IN | 4.14356828 HYPE | 0 | ||||
| Transfer | 18874952 | 76 days ago | IN | 1.03919484 HYPE | 0 | ||||
| Transfer | 18071496 | 85 days ago | IN | 0.43707856 HYPE | 0 | ||||
| Transfer | 17746293 | 89 days ago | IN | 6.38154589 HYPE | 0 | ||||
| Transfer | 16958351 | 98 days ago | IN | 1.00292135 HYPE | 0 | ||||
| Transfer | 16691037 | 101 days ago | IN | 0.34031817 HYPE | 0 | ||||
| Transfer | 16502811 | 103 days ago | IN | 314.7961362 HYPE | 0 | ||||
| Transfer | 16336943 | 105 days ago | IN | 0.11107061 HYPE | 0 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 25429281 | 44 hrs ago | 0.97078347 HYPE | ||||
| 25132067 | 5 days ago | 1.762 HYPE | ||||
| 25132067 | 5 days ago | 1.762 HYPE | ||||
| 25130176 | 5 days ago | 1.83856629 HYPE | ||||
| 25130176 | 5 days ago | 1.83856629 HYPE | ||||
| 25123568 | 5 days ago | 1.354 HYPE | ||||
| 25123568 | 5 days ago | 1.354 HYPE | ||||
| 25114277 | 5 days ago | 0.65055767 HYPE | ||||
| 25114277 | 5 days ago | 0.65055767 HYPE | ||||
| 25071998 | 5 days ago | 1.29076541 HYPE | ||||
| 24896967 | 7 days ago | 12.6681713 HYPE | ||||
| 24869939 | 8 days ago | 1.502 HYPE | ||||
| 24869939 | 8 days ago | 1.502 HYPE | ||||
| 24860120 | 8 days ago | 1.372 HYPE | ||||
| 24860120 | 8 days ago | 1.372 HYPE | ||||
| 24860088 | 8 days ago | 1.375 HYPE | ||||
| 24860088 | 8 days ago | 1.375 HYPE | ||||
| 24645727 | 10 days ago | 0.2 HYPE | ||||
| 24645727 | 10 days ago | 0.2 HYPE | ||||
| 24612840 | 11 days ago | 0.75387954 HYPE | ||||
| 24612840 | 11 days ago | 0.75387954 HYPE | ||||
| 24595845 | 11 days ago | 1.112 HYPE | ||||
| 24595845 | 11 days ago | 1.112 HYPE | ||||
| 24594886 | 11 days ago | 1.232 HYPE | ||||
| 24594886 | 11 days ago | 1.232 HYPE |
Cross-Chain Transactions
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xccCa6912...FF934f1ba The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Proxy
Compiler Version
v0.8.28+commit.7893614a
Optimization Enabled:
Yes with 1 runs
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.28;
import { Address } from "@openzeppelin/contracts/utils/Address.sol";
import { AccessControlEnumerable } from "@openzeppelin/contracts/access/extensions/AccessControlEnumerable.sol";
contract Proxy is AccessControlEnumerable {
using Address for address;
using Address for address payable;
bytes32 public constant EXECUTION_ROLE = keccak256("EXECUTION_ROLE");
constructor() {
_grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
_setRoleAdmin(EXECUTION_ROLE, DEFAULT_ADMIN_ROLE);
_grantRole(EXECUTION_ROLE, msg.sender);
}
receive() external payable {}
function execute(address target, bytes memory data) external onlyRole(EXECUTION_ROLE) {
target.functionCallWithValue(data, 0);
}
function execute(address target, bytes memory data, uint256 value) external payable onlyRole(EXECUTION_ROLE) {
target.functionCallWithValue(data, value);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol)
pragma solidity ^0.8.20;
import {IAccessControl} from "./IAccessControl.sol";
import {Context} from "../utils/Context.sol";
import {ERC165} from "../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:
*
* ```solidity
* 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}:
*
* ```solidity
* 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. We recommend using {AccessControlDefaultAdminRules}
* to enforce additional security measures for this role.
*/
abstract contract AccessControl is Context, IAccessControl, ERC165 {
struct RoleData {
mapping(address account => bool) hasRole;
bytes32 adminRole;
}
mapping(bytes32 role => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
/**
* @dev Modifier that checks that an account has a specific role. Reverts
* with an {AccessControlUnauthorizedAccount} error including the required role.
*/
modifier onlyRole(bytes32 role) {
_checkRole(role);
_;
}
/**
* @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 returns (bool) {
return _roles[role].hasRole[account];
}
/**
* @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`
* is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier.
*/
function _checkRole(bytes32 role) internal view virtual {
_checkRole(role, _msgSender());
}
/**
* @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`
* is missing `role`.
*/
function _checkRole(bytes32 role, address account) internal view virtual {
if (!hasRole(role, account)) {
revert AccessControlUnauthorizedAccount(account, role);
}
}
/**
* @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 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.
*
* May emit a {RoleGranted} event.
*/
function grantRole(bytes32 role, address account) public virtual 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.
*
* May emit a {RoleRevoked} event.
*/
function revokeRole(bytes32 role, address account) public virtual 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 `callerConfirmation`.
*
* May emit a {RoleRevoked} event.
*/
function renounceRole(bytes32 role, address callerConfirmation) public virtual {
if (callerConfirmation != _msgSender()) {
revert AccessControlBadConfirmation();
}
_revokeRole(role, callerConfirmation);
}
/**
* @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 Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.
*
* Internal function without access restriction.
*
* May emit a {RoleGranted} event.
*/
function _grantRole(bytes32 role, address account) internal virtual returns (bool) {
if (!hasRole(role, account)) {
_roles[role].hasRole[account] = true;
emit RoleGranted(role, account, _msgSender());
return true;
} else {
return false;
}
}
/**
* @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked.
*
* Internal function without access restriction.
*
* May emit a {RoleRevoked} event.
*/
function _revokeRole(bytes32 role, address account) internal virtual returns (bool) {
if (hasRole(role, account)) {
_roles[role].hasRole[account] = false;
emit RoleRevoked(role, account, _msgSender());
return true;
} else {
return false;
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (access/extensions/AccessControlEnumerable.sol)
pragma solidity ^0.8.20;
import {IAccessControlEnumerable} from "./IAccessControlEnumerable.sol";
import {AccessControl} from "../AccessControl.sol";
import {EnumerableSet} from "../../utils/structs/EnumerableSet.sol";
/**
* @dev Extension of {AccessControl} that allows enumerating the members of each role.
*/
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
using EnumerableSet for EnumerableSet.AddressSet;
mapping(bytes32 role => EnumerableSet.AddressSet) private _roleMembers;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @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 virtual returns (address) {
return _roleMembers[role].at(index);
}
/**
* @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 virtual returns (uint256) {
return _roleMembers[role].length();
}
/**
* @dev Return all accounts that have `role`
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function getRoleMembers(bytes32 role) public view virtual returns (address[] memory) {
return _roleMembers[role].values();
}
/**
* @dev Overload {AccessControl-_grantRole} to track enumerable memberships
*/
function _grantRole(bytes32 role, address account) internal virtual override returns (bool) {
bool granted = super._grantRole(role, account);
if (granted) {
_roleMembers[role].add(account);
}
return granted;
}
/**
* @dev Overload {AccessControl-_revokeRole} to track enumerable memberships
*/
function _revokeRole(bytes32 role, address account) internal virtual override returns (bool) {
bool revoked = super._revokeRole(role, account);
if (revoked) {
_roleMembers[role].remove(account);
}
return revoked;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (access/extensions/IAccessControlEnumerable.sol)
pragma solidity ^0.8.20;
import {IAccessControl} from "../IAccessControl.sol";
/**
* @dev External interface of AccessControlEnumerable declared to support ERC-165 detection.
*/
interface IAccessControlEnumerable is IAccessControl {
/**
* @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) external view returns (address);
/**
* @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) external view returns (uint256);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (access/IAccessControl.sol)
pragma solidity ^0.8.20;
/**
* @dev External interface of AccessControl declared to support ERC-165 detection.
*/
interface IAccessControl {
/**
* @dev The `account` is missing a role.
*/
error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);
/**
* @dev The caller of a function is not the expected one.
*
* NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.
*/
error AccessControlBadConfirmation();
/**
* @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.
*/
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. This account bears the admin role (for the granted role).
* Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.
*/
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 `callerConfirmation`.
*/
function renounceRole(bytes32 role, address callerConfirmation) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Address.sol)
pragma solidity ^0.8.20;
import {Errors} from "./Errors.sol";
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev There's no code at `target` (it is not a contract).
*/
error AddressEmptyCode(address target);
/**
* @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://consensys.net/diligence/blog/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.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
if (address(this).balance < amount) {
revert Errors.InsufficientBalance(address(this).balance, amount);
}
(bool success, ) = recipient.call{value: amount}("");
if (!success) {
revert Errors.FailedCall();
}
}
/**
* @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 or custom error, it is bubbled
* up by this function (like regular Solidity function calls). However, if
* the call reverted with no returned reason, this function reverts with a
* {Errors.FailedCall} error.
*
* 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.
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0);
}
/**
* @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`.
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
if (address(this).balance < value) {
revert Errors.InsufficientBalance(address(this).balance, value);
}
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
* was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case
* of an unsuccessful call.
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata
) internal view returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
// only check if target is a contract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
if (returndata.length == 0 && target.code.length == 0) {
revert AddressEmptyCode(target);
}
return returndata;
}
}
/**
* @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
* revert reason or with a default {Errors.FailedCall} error.
*/
function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
return returndata;
}
}
/**
* @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}.
*/
function _revert(bytes memory returndata) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly ("memory-safe") {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert Errors.FailedCall();
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol)
pragma solidity ^0.8.20;
/**
* @dev Collection of common custom errors used in multiple contracts
*
* IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.
* It is recommended to avoid relying on the error API for critical functionality.
*
* _Available since v5.1._
*/
library Errors {
/**
* @dev The ETH balance of the account is not enough to perform the operation.
*/
error InsufficientBalance(uint256 balance, uint256 needed);
/**
* @dev A call to an address target failed. The target may have reverted.
*/
error FailedCall();
/**
* @dev The deployment failed.
*/
error FailedDeployment();
/**
* @dev A necessary precompile is missing.
*/
error MissingPrecompile(address);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol)
pragma solidity ^0.8.20;
import {IERC165} from "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC-165 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);
* }
* ```
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC-165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[ERC].
*
* 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[ERC 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 v5.1.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.
pragma solidity ^0.8.20;
/**
* @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.
*
* ```solidity
* 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.
*
* [WARNING]
* ====
* Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
* unusable.
* See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
*
* In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
* array of EnumerableSet.
* ====
*/
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 is the index of the value in the `values` array plus 1.
// Position 0 is used to mean a value is not in the set.
mapping(bytes32 value => uint256) _positions;
}
/**
* @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._positions[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 cache the value's position to prevent multiple reads from the same storage slot
uint256 position = set._positions[value];
if (position != 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 valueIndex = position - 1;
uint256 lastIndex = set._values.length - 1;
if (valueIndex != lastIndex) {
bytes32 lastValue = set._values[lastIndex];
// Move the lastValue to the index where the value to delete is
set._values[valueIndex] = lastValue;
// Update the tracked position of the lastValue (that was just moved)
set._positions[lastValue] = position;
}
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the tracked position for the deleted slot
delete set._positions[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._positions[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) {
return set._values[index];
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function _values(Set storage set) private view returns (bytes32[] memory) {
return set._values;
}
// 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);
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
bytes32[] memory store = _values(set._inner);
bytes32[] memory result;
assembly ("memory-safe") {
result := store
}
return result;
}
// 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))));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(AddressSet storage set) internal view returns (address[] memory) {
bytes32[] memory store = _values(set._inner);
address[] memory result;
assembly ("memory-safe") {
result := store
}
return result;
}
// 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 in 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));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(UintSet storage set) internal view returns (uint256[] memory) {
bytes32[] memory store = _values(set._inner);
uint256[] memory result;
assembly ("memory-safe") {
result := store
}
return result;
}
}{
"viaIR": false,
"evmVersion": "cancun",
"optimizer": {
"enabled": true,
"runs": 1,
"details": {
"yul": true
}
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"InsufficientBalance","type":"error"},{"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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXECUTION_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"execute","outputs":[],"stateMutability":"payable","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"}],"name":"getRoleMembers","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"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":"callerConfirmation","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
0x608060405234801561000f575f5ffd5b5061001a5f3361004f565b506100325f516020610d9a5f395f51905f525f610085565b6100495f516020610d9a5f395f51905f523361004f565b506101ca565b5f8061005b84846100cf565b9050801561007c575f84815260016020526040902061007a9084610176565b505b90505b92915050565b5f82815260208190526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b5f828152602081815260408083206001600160a01b038516845290915281205460ff1661016f575f838152602081815260408083206001600160a01b03861684529091529020805460ff191660011790556101273390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a450600161007f565b505f61007f565b5f61007c836001600160a01b0384165f81815260018301602052604081205461016f57508154600181810184555f84815260208082209093018490558454848252828601909352604090209190915561007f565b610bc3806101d75f395ff3fe6080604052600436106100a4575f3560e01c806301ffc9a7146100af5780631cff79cd146100e3578063248a9ca3146101045780632f2ff15d1461013157806336568abe1461015057806374f8663b1461016f5780639010d07c1461018f57806391d14854146101bb578063a04a0908146101da578063a217fddf146101ed578063a3246ad314610200578063ca15c8731461022c578063d547741f1461024b575f5ffd5b366100ab57005b5f5ffd5b3480156100ba575f5ffd5b506100ce6100c93660046108d4565b61026a565b60405190151581526020015b60405180910390f35b3480156100ee575f5ffd5b506101026100fd3660046109b3565b610294565b005b34801561010f575f5ffd5b5061012361011e3660046109fd565b6102c5565b6040519081526020016100da565b34801561013c575f5ffd5b5061010261014b366004610a14565b6102d9565b34801561015b575f5ffd5b5061010261016a366004610a14565b6102f5565b34801561017a575f5ffd5b506101235f516020610b6e5f395f51905f5281565b34801561019a575f5ffd5b506101ae6101a9366004610a3e565b61032d565b6040516100da9190610a5e565b3480156101c6575f5ffd5b506100ce6101d5366004610a14565b61034b565b6101026101e8366004610a72565b610373565b3480156101f8575f5ffd5b506101235f81565b34801561020b575f5ffd5b5061021f61021a3660046109fd565b6103a5565b6040516100da9190610ac5565b348015610237575f5ffd5b506101236102463660046109fd565b6103be565b348015610256575f5ffd5b50610102610265366004610a14565b6103d4565b5f6001600160e01b03198216635a05180f60e01b148061028e575061028e826103f0565b92915050565b5f516020610b6e5f395f51905f526102ab81610424565b6102bf6001600160a01b038416835f610431565b50505050565b5f9081526020819052604090206001015490565b6102e2826102c5565b6102eb81610424565b6102bf83836104d6565b6001600160a01b038116331461031e5760405163334bd91960e11b815260040160405180910390fd5b6103288282610509565b505050565b5f8281526001602052604081206103449083610534565b9392505050565b5f918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b5f516020610b6e5f395f51905f5261038a81610424565b61039e6001600160a01b0385168484610431565b5050505050565b5f81815260016020526040902060609061028e9061053f565b5f81815260016020526040812061028e9061054b565b6103dd826102c5565b6103e681610424565b6102bf8383610509565b5f6001600160e01b03198216637965db0b60e01b148061028e57506301ffc9a760e01b6001600160e01b031983161461028e565b61042e8133610554565b50565b6060814710156104625760405163cf47918160e01b8152476004820152602481018390526044015b60405180910390fd5b5f5f856001600160a01b0316848660405161047d9190610b10565b5f6040518083038185875af1925050503d805f81146104b7576040519150601f19603f3d011682016040523d82523d5f602084013e6104bc565b606091505b50915091506104cc868383610591565b9695505050505050565b5f5f6104e284846105e4565b90508015610344575f8481526001602052604090206105019084610673565b509392505050565b5f5f6105158484610687565b90508015610344575f84815260016020526040902061050190846106f0565b5f6103448383610704565b60605f6103448361072a565b5f61028e825490565b61055e828261034b565b61058d5760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610459565b5050565b6060826105a6576105a182610783565b610344565b81511580156105bd57506001600160a01b0384163b155b156105dd5783604051639996b31560e01b81526004016104599190610a5e565b5080610344565b5f6105ef838361034b565b61066c575f838152602081815260408083206001600160a01b03861684529091529020805460ff191660011790556106243390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a450600161028e565b505f61028e565b5f610344836001600160a01b0384166107ac565b5f610692838361034b565b1561066c575f838152602081815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a450600161028e565b5f610344836001600160a01b0384166107f1565b5f825f01828154811061071957610719610b26565b905f5260205f200154905092915050565b6060815f0180548060200260200160405190810160405280929190818152602001828054801561077757602002820191905f5260205f20905b815481526020019060010190808311610763575b50505050509050919050565b8051156107935780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b5f81815260018301602052604081205461066c57508154600181810184555f84815260208082209093018490558454848252828601909352604090209190915561028e565b5f81815260018301602052604081205480156108cb575f610813600183610b3a565b85549091505f9061082690600190610b3a565b9050808214610885575f865f01828154811061084457610844610b26565b905f5260205f200154905080875f01848154811061086457610864610b26565b5f918252602080832090910192909255918252600188019052604090208390555b855486908061089657610896610b59565b600190038181905f5260205f20015f90559055856001015f8681526020019081526020015f205f90556001935050505061028e565b5f91505061028e565b5f602082840312156108e4575f5ffd5b81356001600160e01b031981168114610344575f5ffd5b80356001600160a01b0381168114610911575f5ffd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112610939575f5ffd5b81356001600160401b0381111561095257610952610916565b604051601f8201601f19908116603f011681016001600160401b038111828210171561098057610980610916565b604052818152838201602001851015610997575f5ffd5b816020850160208301375f918101602001919091529392505050565b5f5f604083850312156109c4575f5ffd5b6109cd836108fb565b915060208301356001600160401b038111156109e7575f5ffd5b6109f38582860161092a565b9150509250929050565b5f60208284031215610a0d575f5ffd5b5035919050565b5f5f60408385031215610a25575f5ffd5b82359150610a35602084016108fb565b90509250929050565b5f5f60408385031215610a4f575f5ffd5b50508035926020909101359150565b6001600160a01b0391909116815260200190565b5f5f5f60608486031215610a84575f5ffd5b610a8d846108fb565b925060208401356001600160401b03811115610aa7575f5ffd5b610ab38682870161092a565b93969395505050506040919091013590565b602080825282518282018190525f918401906040840190835b81811015610b055783516001600160a01b0316835260209384019390920191600101610ade565b509095945050505050565b5f82518060208501845e5f920191825250919050565b634e487b7160e01b5f52603260045260245ffd5b8181038181111561028e57634e487b7160e01b5f52601160045260245ffd5b634e487b7160e01b5f52603160045260245ffdfef21a16feb1ed068bfca4f16029f44a27181a38cc067de137a57f47ae74f52a11a2646970667358221220bfe9537279707eb7d6108152bcac4780703b9122f1f317865fef00a1b07bba2264736f6c634300081c0033f21a16feb1ed068bfca4f16029f44a27181a38cc067de137a57f47ae74f52a11
Deployed Bytecode
0x6080604052600436106100a4575f3560e01c806301ffc9a7146100af5780631cff79cd146100e3578063248a9ca3146101045780632f2ff15d1461013157806336568abe1461015057806374f8663b1461016f5780639010d07c1461018f57806391d14854146101bb578063a04a0908146101da578063a217fddf146101ed578063a3246ad314610200578063ca15c8731461022c578063d547741f1461024b575f5ffd5b366100ab57005b5f5ffd5b3480156100ba575f5ffd5b506100ce6100c93660046108d4565b61026a565b60405190151581526020015b60405180910390f35b3480156100ee575f5ffd5b506101026100fd3660046109b3565b610294565b005b34801561010f575f5ffd5b5061012361011e3660046109fd565b6102c5565b6040519081526020016100da565b34801561013c575f5ffd5b5061010261014b366004610a14565b6102d9565b34801561015b575f5ffd5b5061010261016a366004610a14565b6102f5565b34801561017a575f5ffd5b506101235f516020610b6e5f395f51905f5281565b34801561019a575f5ffd5b506101ae6101a9366004610a3e565b61032d565b6040516100da9190610a5e565b3480156101c6575f5ffd5b506100ce6101d5366004610a14565b61034b565b6101026101e8366004610a72565b610373565b3480156101f8575f5ffd5b506101235f81565b34801561020b575f5ffd5b5061021f61021a3660046109fd565b6103a5565b6040516100da9190610ac5565b348015610237575f5ffd5b506101236102463660046109fd565b6103be565b348015610256575f5ffd5b50610102610265366004610a14565b6103d4565b5f6001600160e01b03198216635a05180f60e01b148061028e575061028e826103f0565b92915050565b5f516020610b6e5f395f51905f526102ab81610424565b6102bf6001600160a01b038416835f610431565b50505050565b5f9081526020819052604090206001015490565b6102e2826102c5565b6102eb81610424565b6102bf83836104d6565b6001600160a01b038116331461031e5760405163334bd91960e11b815260040160405180910390fd5b6103288282610509565b505050565b5f8281526001602052604081206103449083610534565b9392505050565b5f918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b5f516020610b6e5f395f51905f5261038a81610424565b61039e6001600160a01b0385168484610431565b5050505050565b5f81815260016020526040902060609061028e9061053f565b5f81815260016020526040812061028e9061054b565b6103dd826102c5565b6103e681610424565b6102bf8383610509565b5f6001600160e01b03198216637965db0b60e01b148061028e57506301ffc9a760e01b6001600160e01b031983161461028e565b61042e8133610554565b50565b6060814710156104625760405163cf47918160e01b8152476004820152602481018390526044015b60405180910390fd5b5f5f856001600160a01b0316848660405161047d9190610b10565b5f6040518083038185875af1925050503d805f81146104b7576040519150601f19603f3d011682016040523d82523d5f602084013e6104bc565b606091505b50915091506104cc868383610591565b9695505050505050565b5f5f6104e284846105e4565b90508015610344575f8481526001602052604090206105019084610673565b509392505050565b5f5f6105158484610687565b90508015610344575f84815260016020526040902061050190846106f0565b5f6103448383610704565b60605f6103448361072a565b5f61028e825490565b61055e828261034b565b61058d5760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610459565b5050565b6060826105a6576105a182610783565b610344565b81511580156105bd57506001600160a01b0384163b155b156105dd5783604051639996b31560e01b81526004016104599190610a5e565b5080610344565b5f6105ef838361034b565b61066c575f838152602081815260408083206001600160a01b03861684529091529020805460ff191660011790556106243390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a450600161028e565b505f61028e565b5f610344836001600160a01b0384166107ac565b5f610692838361034b565b1561066c575f838152602081815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a450600161028e565b5f610344836001600160a01b0384166107f1565b5f825f01828154811061071957610719610b26565b905f5260205f200154905092915050565b6060815f0180548060200260200160405190810160405280929190818152602001828054801561077757602002820191905f5260205f20905b815481526020019060010190808311610763575b50505050509050919050565b8051156107935780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b5f81815260018301602052604081205461066c57508154600181810184555f84815260208082209093018490558454848252828601909352604090209190915561028e565b5f81815260018301602052604081205480156108cb575f610813600183610b3a565b85549091505f9061082690600190610b3a565b9050808214610885575f865f01828154811061084457610844610b26565b905f5260205f200154905080875f01848154811061086457610864610b26565b5f918252602080832090910192909255918252600188019052604090208390555b855486908061089657610896610b59565b600190038181905f5260205f20015f90559055856001015f8681526020019081526020015f205f90556001935050505061028e565b5f91505061028e565b5f602082840312156108e4575f5ffd5b81356001600160e01b031981168114610344575f5ffd5b80356001600160a01b0381168114610911575f5ffd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112610939575f5ffd5b81356001600160401b0381111561095257610952610916565b604051601f8201601f19908116603f011681016001600160401b038111828210171561098057610980610916565b604052818152838201602001851015610997575f5ffd5b816020850160208301375f918101602001919091529392505050565b5f5f604083850312156109c4575f5ffd5b6109cd836108fb565b915060208301356001600160401b038111156109e7575f5ffd5b6109f38582860161092a565b9150509250929050565b5f60208284031215610a0d575f5ffd5b5035919050565b5f5f60408385031215610a25575f5ffd5b82359150610a35602084016108fb565b90509250929050565b5f5f60408385031215610a4f575f5ffd5b50508035926020909101359150565b6001600160a01b0391909116815260200190565b5f5f5f60608486031215610a84575f5ffd5b610a8d846108fb565b925060208401356001600160401b03811115610aa7575f5ffd5b610ab38682870161092a565b93969395505050506040919091013590565b602080825282518282018190525f918401906040840190835b81811015610b055783516001600160a01b0316835260209384019390920191600101610ade565b509095945050505050565b5f82518060208501845e5f920191825250919050565b634e487b7160e01b5f52603260045260245ffd5b8181038181111561028e57634e487b7160e01b5f52601160045260245ffd5b634e487b7160e01b5f52603160045260245ffdfef21a16feb1ed068bfca4f16029f44a27181a38cc067de137a57f47ae74f52a11a2646970667358221220bfe9537279707eb7d6108152bcac4780703b9122f1f317865fef00a1b07bba2264736f6c634300081c0033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in HYPE
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
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.