Overview
ETH Balance
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 4,060 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim Rewards | 118419092 | 286 days ago | IN | 0 ETH | 0.000000611811 | ||||
Claim Rewards | 118419026 | 286 days ago | IN | 0 ETH | 0.000001991131 | ||||
Claim Rewards | 118394635 | 287 days ago | IN | 0 ETH | 0.0000013793 | ||||
Claim Rewards | 118394175 | 287 days ago | IN | 0 ETH | 0.000001373303 | ||||
Claim Rewards | 118390838 | 287 days ago | IN | 0 ETH | 0.000001862171 | ||||
Claim Rewards | 118389680 | 287 days ago | IN | 0 ETH | 0.000001779618 | ||||
Claim Rewards | 118389660 | 287 days ago | IN | 0 ETH | 0.000001788672 | ||||
Claim Rewards | 118389438 | 287 days ago | IN | 0 ETH | 0.000001743254 | ||||
Claim Rewards | 118389268 | 287 days ago | IN | 0 ETH | 0.000001763033 | ||||
Claim Rewards | 118389045 | 287 days ago | IN | 0 ETH | 0.000001928157 | ||||
Claim Rewards | 118388974 | 287 days ago | IN | 0 ETH | 0.000001967391 | ||||
Claim Rewards | 118388896 | 287 days ago | IN | 0 ETH | 0.000001818619 | ||||
Claim Rewards | 118388374 | 287 days ago | IN | 0 ETH | 0.000001750602 | ||||
Set Claim Period | 118385825 | 287 days ago | IN | 0 ETH | 0.000000484907 | ||||
Claim Rewards | 118380259 | 287 days ago | IN | 0 ETH | 0.000006024928 | ||||
Claim Rewards | 118380199 | 287 days ago | IN | 0 ETH | 0.000006476354 | ||||
Claim Rewards | 118375897 | 287 days ago | IN | 0 ETH | 0.00000270165 | ||||
Claim Rewards | 118373520 | 288 days ago | IN | 0 ETH | 0.000006991788 | ||||
Claim Rewards | 118369746 | 288 days ago | IN | 0 ETH | 0.000000720835 | ||||
Claim Rewards | 118367039 | 288 days ago | IN | 0 ETH | 0.000002229559 | ||||
Claim Rewards | 118364582 | 288 days ago | IN | 0 ETH | 0.000006872025 | ||||
Claim Rewards | 118364535 | 288 days ago | IN | 0 ETH | 0.000003167128 | ||||
Claim Rewards | 118364474 | 288 days ago | IN | 0 ETH | 0.000003061685 | ||||
Claim Rewards | 118364441 | 288 days ago | IN | 0 ETH | 0.000003074361 | ||||
Claim Rewards | 118364203 | 288 days ago | IN | 0 ETH | 0.0000041024 |
View more zero value Internal Transactions in Advanced View mode
Contract Source Code Verified (Exact Match)
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import './OPChads.sol'; import '@openzeppelin/contracts/interfaces/IERC20.sol'; import '@openzeppelin/contracts/access/AccessControl.sol'; import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol'; contract OPCHadClaim is AccessControl { bytes32 public constant OPERATOR_ROLE = keccak256('OPERATOR_ROLE'); address public opchad; uint256 public startTime; uint256 public endTime; address public allowanceAddress; bytes32 public merkleRoot; mapping(address => bool) public claimed; event Claim(address indexed user, uint256 amount); event ClaimPeriodChanged(uint256 newStartTime, uint256 newEndTime); event AllowanceAddressChanged(address newAllowanceAddress); event MerkleRootChanged(bytes32 indexed merkleRoot); constructor(address _opchad, address _defaultAdmin, address _operator) { opchad = _opchad; _grantRole(DEFAULT_ADMIN_ROLE, _defaultAdmin); _grantRole(OPERATOR_ROLE, _operator); } function setOpchad(address _opc) external onlyRole(OPERATOR_ROLE) { opchad = _opc; } function setClaimPeriod(uint256 _startTime, uint256 _endTime) external onlyRole(OPERATOR_ROLE) { startTime = _startTime; endTime = _endTime; emit ClaimPeriodChanged(_startTime, _endTime); } function setAllowanceAddress(address _allowanceAddress) external onlyRole(OPERATOR_ROLE) { allowanceAddress = _allowanceAddress; emit AllowanceAddressChanged(_allowanceAddress); } function setMerkleRoot(bytes32 _merkleRoot) external onlyRole(OPERATOR_ROLE) { merkleRoot = _merkleRoot; emit MerkleRootChanged(_merkleRoot); } function verifyProof(uint256 claimAmount, bytes32[] memory proof) external view returns (bool) { return MerkleProof.verify(proof, merkleRoot, keccak256(abi.encode(msg.sender, claimAmount))); } function claimRewards(uint256 claimAmount, bytes32[] memory proof) external { require(block.timestamp >= startTime && block.timestamp <= endTime, 'Error: Claim period is not active'); require(!claimed[msg.sender], 'Error: Already claimed'); require( MerkleProof.verify(proof, merkleRoot, keccak256(abi.encode(msg.sender, claimAmount))), 'Error: Invalid proof' ); uint256 allowance = OPChads(opchad).allowance(allowanceAddress, address(this)); require(allowance >= claimAmount, 'Error: Insufficient allowance'); claimed[msg.sender] = true; bool success = OPChads(opchad).transferFrom(allowanceAddress, msg.sender, claimAmount); require(success, 'Error: Transfer failed'); emit Claim(msg.sender, claimAmount); } }
// 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.0.0) (access/IAccessControl.sol) pragma solidity ^0.8.20; /** * @dev External interface of AccessControl declared to support ERC165 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, 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 `callerConfirmation`. */ function renounceRole(bytes32 role, address callerConfirmation) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../token/ERC20/IERC20.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); }
// 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.0.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.20; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the Merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates Merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** *@dev The multiproof provided is not valid. */ error MerkleProofInvalidMultiproof(); /** * @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 Calldata version of {verify} */ function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle 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. */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details. */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details. */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all Merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the Merkle tree. uint256 leavesLen = leaves.length; uint256 proofLen = proof.length; uint256 totalHashes = proofFlags.length; // Check proof validity. if (leavesLen + proofLen != totalHashes + 1) { revert MerkleProofInvalidMultiproof(); } // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]) : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { if (proofPos != proofLen) { revert MerkleProofInvalidMultiproof(); } unchecked { return hashes[totalHashes - 1]; } } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details. */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the Merkle tree. uint256 leavesLen = leaves.length; uint256 proofLen = proof.length; uint256 totalHashes = proofFlags.length; // Check proof validity. if (leavesLen + proofLen != totalHashes + 1) { revert MerkleProofInvalidMultiproof(); } // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]) : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { if (proofPos != proofLen) { revert MerkleProofInvalidMultiproof(); } unchecked { return hashes[totalHashes - 1]; } } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Sorts the pair (a, b) and hashes the result. */ function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } /** * @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory. */ function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.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 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); * } * ``` */ 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.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @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 pragma solidity ^0.8.0; import '@openzeppelin/contracts/token/ERC20/ERC20.sol'; import '@openzeppelin/contracts/access/AccessControl.sol'; contract OPChads is ERC20, AccessControl { bytes32 public constant MINTER_ROLE = keccak256('MINTER_ROLE'); uint256 public constant MAX_SUPPLY = 1000000000 * 10 ** 18; // Max supply of 1,000,000,000 tokens constructor(address defaultAdmin, address minter) ERC20('OP Chads', 'OPC') { _grantRole(DEFAULT_ADMIN_ROLE, defaultAdmin); _grantRole(MINTER_ROLE, minter); } function mint(address to, uint256 amount) public onlyRole(MINTER_ROLE) returns (bool) { require(totalSupply() + amount <= MAX_SUPPLY, 'Cannot mint beyond max supply'); _mint(to, amount); return true; } function _update(address from, address to, uint256 value) internal override(ERC20) { super._update(from, to, value); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "paris", "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":"_opchad","type":"address"},{"internalType":"address","name":"_defaultAdmin","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newAllowanceAddress","type":"address"}],"name":"AllowanceAddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newStartTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newEndTime","type":"uint256"}],"name":"ClaimPeriodChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"MerkleRootChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowanceAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"opchad","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"address","name":"_allowanceAddress","type":"address"}],"name":"setAllowanceAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"}],"name":"setClaimPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_opc","type":"address"}],"name":"setOpchad","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"verifyProof","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5060405162000e4338038062000e4383398101604081905261003191610153565b600180546001600160a01b0319166001600160a01b03851617905561005760008361008b565b506100827f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b9298261008b565b50505050610196565b6000828152602081815260408083206001600160a01b038516845290915281205460ff1661012d576000838152602081815260408083206001600160a01b03861684529091529020805460ff191660011790556100e53390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001610131565b5060005b92915050565b80516001600160a01b038116811461014e57600080fd5b919050565b60008060006060848603121561016857600080fd5b61017184610137565b925061017f60208501610137565b915061018d60408501610137565b90509250925092565b610c9d80620001a66000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063752dc51c116100ad578063abd40e1e11610071578063abd40e1e14610272578063c884ef8314610285578063d547741f146102a8578063df6ec1bd146102bb578063f5b541a6146102ce57600080fd5b8063752dc51c1461022857806378e979251461023b5780637cb647591461024457806391d1485414610257578063a217fddf1461026a57600080fd5b80632f2ff15d116100f45780632f2ff15d146101d35780633197cbb6146101e657806336568abe146101ef578063436f1c071461020257806361a91c601461021557600080fd5b806301ffc9a71461013157806308f53f4414610159578063248a9ca31461016e57806328bca27c1461019f5780632eb4a7ab146101ca575b600080fd5b61014461013f366004610a4e565b6102e3565b60405190151581526020015b60405180910390f35b61016c610167366004610a94565b61031a565b005b61019161017c366004610aaf565b60009081526020819052604090206001015490565b604051908152602001610150565b6004546101b2906001600160a01b031681565b6040516001600160a01b039091168152602001610150565b61019160055481565b61016c6101e1366004610ac8565b610387565b61019160035481565b61016c6101fd366004610ac8565b6103b2565b6001546101b2906001600160a01b031681565b61016c610223366004610a94565b6103ea565b610144610236366004610b0a565b610425565b61019160025481565b61016c610252366004610aaf565b610468565b610144610265366004610ac8565b6104b4565b610191600081565b61016c610280366004610b0a565b6104dd565b610144610293366004610a94565b60066020526000908152604090205460ff1681565b61016c6102b6366004610ac8565b6107fa565b61016c6102c9366004610bd4565b61081f565b610191600080516020610c4883398151915281565b60006001600160e01b03198216637965db0b60e01b148061031457506301ffc9a760e01b6001600160e01b03198316145b92915050565b600080516020610c488339815191526103328161087f565b600480546001600160a01b0319166001600160a01b0384169081179091556040519081527f1bffe97991874af700885a72d46e2c541c5b853f6efd7ac3f62c1712cf62b28b9060200160405180910390a15050565b6000828152602081905260409020600101546103a28161087f565b6103ac838361088c565b50505050565b6001600160a01b03811633146103db5760405163334bd91960e11b815260040160405180910390fd5b6103e5828261091e565b505050565b600080516020610c488339815191526104028161087f565b50600180546001600160a01b0319166001600160a01b0392909216919091179055565b60055460408051336020820152908101849052600091610461918491906060015b60405160208183030381529060405280519060200120610989565b9392505050565b600080516020610c488339815191526104808161087f565b600582905560405182907f1b930366dfeaa7eb3b325021e4ae81e36527063452ee55b86c95f85b36f4c31c90600090a25050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60025442101580156104f157506003544211155b61054c5760405162461bcd60e51b815260206004820152602160248201527f4572726f723a20436c61696d20706572696f64206973206e6f742061637469766044820152606560f81b60648201526084015b60405180910390fd5b3360009081526006602052604090205460ff16156105a55760405162461bcd60e51b8152602060048201526016602482015275115c9c9bdc8e88105b1c9958591e4818db185a5b595960521b6044820152606401610543565b600554604080513360208201529081018490526105c6918391606001610446565b6106095760405162461bcd60e51b815260206004820152601460248201527322b93937b91d1024b73b30b634b210383937b7b360611b6044820152606401610543565b60015460048054604051636eb1769f60e11b81526001600160a01b0391821692810192909252306024830152600092169063dd62ed3e90604401602060405180830381865afa158015610660573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106849190610bf6565b9050828110156106d65760405162461bcd60e51b815260206004820152601d60248201527f4572726f723a20496e73756666696369656e7420616c6c6f77616e63650000006044820152606401610543565b33600081815260066020526040808220805460ff19166001908117909155546004805492516323b872dd60e01b81526001600160a01b039384169181019190915260248101949094526044840187905291929116906323b872dd906064016020604051808303816000875af1158015610753573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107779190610c0f565b9050806107bf5760405162461bcd60e51b8152602060048201526016602482015275115c9c9bdc8e88151c985b9cd9995c8819985a5b195960521b6044820152606401610543565b60405184815233907f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d49060200160405180910390a250505050565b6000828152602081905260409020600101546108158161087f565b6103ac838361091e565b600080516020610c488339815191526108378161087f565b6002839055600382905560408051848152602081018490527f1da05f5e7764e0fd6d12d9644a13dc70a36f2aeecae5bc06c737985c5ee0f6ec910160405180910390a1505050565b610889813361099f565b50565b600061089883836104b4565b610916576000838152602081815260408083206001600160a01b03861684529091529020805460ff191660011790556108ce3390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001610314565b506000610314565b600061092a83836104b4565b15610916576000838152602081815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4506001610314565b60008261099685846109dc565b14949350505050565b6109a982826104b4565b6109d85760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610543565b5050565b600081815b8451811015610a1757610a0d82868381518110610a0057610a00610c31565b6020026020010151610a1f565b91506001016109e1565b509392505050565b6000818310610a3b576000828152602084905260409020610461565b6000838152602083905260409020610461565b600060208284031215610a6057600080fd5b81356001600160e01b03198116811461046157600080fd5b80356001600160a01b0381168114610a8f57600080fd5b919050565b600060208284031215610aa657600080fd5b61046182610a78565b600060208284031215610ac157600080fd5b5035919050565b60008060408385031215610adb57600080fd5b82359150610aeb60208401610a78565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215610b1d57600080fd5b8235915060208084013567ffffffffffffffff80821115610b3d57600080fd5b818601915086601f830112610b5157600080fd5b813581811115610b6357610b63610af4565b8060051b604051601f19603f83011681018181108582111715610b8857610b88610af4565b604052918252848201925083810185019189831115610ba657600080fd5b938501935b82851015610bc457843584529385019392850192610bab565b8096505050505050509250929050565b60008060408385031215610be757600080fd5b50508035926020909101359150565b600060208284031215610c0857600080fd5b5051919050565b600060208284031215610c2157600080fd5b8151801515811461046157600080fd5b634e487b7160e01b600052603260045260246000fdfe97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b929a2646970667358221220e8c3da9f2a5f1f50b6fe37c1125030d214b6c4aec4e742a34df69b3324c382e464736f6c6343000818003300000000000000000000000048a9f8b4b65a55cc46ea557a610acf227454ab09000000000000000000000000e0767d2b47ec6a28e97afbf3a626cdfb226065c1000000000000000000000000e0767d2b47ec6a28e97afbf3a626cdfb226065c1
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063752dc51c116100ad578063abd40e1e11610071578063abd40e1e14610272578063c884ef8314610285578063d547741f146102a8578063df6ec1bd146102bb578063f5b541a6146102ce57600080fd5b8063752dc51c1461022857806378e979251461023b5780637cb647591461024457806391d1485414610257578063a217fddf1461026a57600080fd5b80632f2ff15d116100f45780632f2ff15d146101d35780633197cbb6146101e657806336568abe146101ef578063436f1c071461020257806361a91c601461021557600080fd5b806301ffc9a71461013157806308f53f4414610159578063248a9ca31461016e57806328bca27c1461019f5780632eb4a7ab146101ca575b600080fd5b61014461013f366004610a4e565b6102e3565b60405190151581526020015b60405180910390f35b61016c610167366004610a94565b61031a565b005b61019161017c366004610aaf565b60009081526020819052604090206001015490565b604051908152602001610150565b6004546101b2906001600160a01b031681565b6040516001600160a01b039091168152602001610150565b61019160055481565b61016c6101e1366004610ac8565b610387565b61019160035481565b61016c6101fd366004610ac8565b6103b2565b6001546101b2906001600160a01b031681565b61016c610223366004610a94565b6103ea565b610144610236366004610b0a565b610425565b61019160025481565b61016c610252366004610aaf565b610468565b610144610265366004610ac8565b6104b4565b610191600081565b61016c610280366004610b0a565b6104dd565b610144610293366004610a94565b60066020526000908152604090205460ff1681565b61016c6102b6366004610ac8565b6107fa565b61016c6102c9366004610bd4565b61081f565b610191600080516020610c4883398151915281565b60006001600160e01b03198216637965db0b60e01b148061031457506301ffc9a760e01b6001600160e01b03198316145b92915050565b600080516020610c488339815191526103328161087f565b600480546001600160a01b0319166001600160a01b0384169081179091556040519081527f1bffe97991874af700885a72d46e2c541c5b853f6efd7ac3f62c1712cf62b28b9060200160405180910390a15050565b6000828152602081905260409020600101546103a28161087f565b6103ac838361088c565b50505050565b6001600160a01b03811633146103db5760405163334bd91960e11b815260040160405180910390fd5b6103e5828261091e565b505050565b600080516020610c488339815191526104028161087f565b50600180546001600160a01b0319166001600160a01b0392909216919091179055565b60055460408051336020820152908101849052600091610461918491906060015b60405160208183030381529060405280519060200120610989565b9392505050565b600080516020610c488339815191526104808161087f565b600582905560405182907f1b930366dfeaa7eb3b325021e4ae81e36527063452ee55b86c95f85b36f4c31c90600090a25050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60025442101580156104f157506003544211155b61054c5760405162461bcd60e51b815260206004820152602160248201527f4572726f723a20436c61696d20706572696f64206973206e6f742061637469766044820152606560f81b60648201526084015b60405180910390fd5b3360009081526006602052604090205460ff16156105a55760405162461bcd60e51b8152602060048201526016602482015275115c9c9bdc8e88105b1c9958591e4818db185a5b595960521b6044820152606401610543565b600554604080513360208201529081018490526105c6918391606001610446565b6106095760405162461bcd60e51b815260206004820152601460248201527322b93937b91d1024b73b30b634b210383937b7b360611b6044820152606401610543565b60015460048054604051636eb1769f60e11b81526001600160a01b0391821692810192909252306024830152600092169063dd62ed3e90604401602060405180830381865afa158015610660573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106849190610bf6565b9050828110156106d65760405162461bcd60e51b815260206004820152601d60248201527f4572726f723a20496e73756666696369656e7420616c6c6f77616e63650000006044820152606401610543565b33600081815260066020526040808220805460ff19166001908117909155546004805492516323b872dd60e01b81526001600160a01b039384169181019190915260248101949094526044840187905291929116906323b872dd906064016020604051808303816000875af1158015610753573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107779190610c0f565b9050806107bf5760405162461bcd60e51b8152602060048201526016602482015275115c9c9bdc8e88151c985b9cd9995c8819985a5b195960521b6044820152606401610543565b60405184815233907f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d49060200160405180910390a250505050565b6000828152602081905260409020600101546108158161087f565b6103ac838361091e565b600080516020610c488339815191526108378161087f565b6002839055600382905560408051848152602081018490527f1da05f5e7764e0fd6d12d9644a13dc70a36f2aeecae5bc06c737985c5ee0f6ec910160405180910390a1505050565b610889813361099f565b50565b600061089883836104b4565b610916576000838152602081815260408083206001600160a01b03861684529091529020805460ff191660011790556108ce3390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001610314565b506000610314565b600061092a83836104b4565b15610916576000838152602081815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4506001610314565b60008261099685846109dc565b14949350505050565b6109a982826104b4565b6109d85760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610543565b5050565b600081815b8451811015610a1757610a0d82868381518110610a0057610a00610c31565b6020026020010151610a1f565b91506001016109e1565b509392505050565b6000818310610a3b576000828152602084905260409020610461565b6000838152602083905260409020610461565b600060208284031215610a6057600080fd5b81356001600160e01b03198116811461046157600080fd5b80356001600160a01b0381168114610a8f57600080fd5b919050565b600060208284031215610aa657600080fd5b61046182610a78565b600060208284031215610ac157600080fd5b5035919050565b60008060408385031215610adb57600080fd5b82359150610aeb60208401610a78565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215610b1d57600080fd5b8235915060208084013567ffffffffffffffff80821115610b3d57600080fd5b818601915086601f830112610b5157600080fd5b813581811115610b6357610b63610af4565b8060051b604051601f19603f83011681018181108582111715610b8857610b88610af4565b604052918252848201925083810185019189831115610ba657600080fd5b938501935b82851015610bc457843584529385019392850192610bab565b8096505050505050509250929050565b60008060408385031215610be757600080fd5b50508035926020909101359150565b600060208284031215610c0857600080fd5b5051919050565b600060208284031215610c2157600080fd5b8151801515811461046157600080fd5b634e487b7160e01b600052603260045260246000fdfe97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b929a2646970667358221220e8c3da9f2a5f1f50b6fe37c1125030d214b6c4aec4e742a34df69b3324c382e464736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000048a9f8b4b65a55cc46ea557a610acf227454ab09000000000000000000000000e0767d2b47ec6a28e97afbf3a626cdfb226065c1000000000000000000000000e0767d2b47ec6a28e97afbf3a626cdfb226065c1
-----Decoded View---------------
Arg [0] : _opchad (address): 0x48a9f8b4b65a55CC46eA557a610acf227454Ab09
Arg [1] : _defaultAdmin (address): 0xE0767d2B47Ec6A28e97afbf3A626cdfB226065c1
Arg [2] : _operator (address): 0xE0767d2B47Ec6A28e97afbf3A626cdfB226065c1
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000048a9f8b4b65a55cc46ea557a610acf227454ab09
Arg [1] : 000000000000000000000000e0767d2b47ec6a28e97afbf3a626cdfb226065c1
Arg [2] : 000000000000000000000000e0767d2b47ec6a28e97afbf3a626cdfb226065c1
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.