More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 5,361 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim | 21708627 | 21 hrs ago | IN | 0 ETH | 0.00025828 | ||||
Claim | 21674123 | 5 days ago | IN | 0 ETH | 0.00070533 | ||||
Claim | 21674111 | 5 days ago | IN | 0 ETH | 0.00080371 | ||||
Claim | 21674096 | 5 days ago | IN | 0 ETH | 0.00081903 | ||||
Claim | 21596563 | 16 days ago | IN | 0 ETH | 0.00033519 | ||||
Claim | 21596560 | 16 days ago | IN | 0 ETH | 0.00034127 | ||||
Claim | 21596552 | 16 days ago | IN | 0 ETH | 0.00033339 | ||||
Claim | 21596540 | 16 days ago | IN | 0 ETH | 0.00035523 | ||||
Claim | 21578199 | 19 days ago | IN | 0 ETH | 0.00035368 | ||||
Claim | 21578196 | 19 days ago | IN | 0 ETH | 0.00036315 | ||||
Claim | 21482265 | 32 days ago | IN | 0 ETH | 0.00026842 | ||||
Claim | 21372509 | 47 days ago | IN | 0 ETH | 0.00091403 | ||||
Claim | 21372499 | 47 days ago | IN | 0 ETH | 0.00094669 | ||||
Claim | 21285937 | 59 days ago | IN | 0 ETH | 0.00045187 | ||||
Claim | 21230875 | 67 days ago | IN | 0 ETH | 0.00079405 | ||||
Claim | 21212184 | 70 days ago | IN | 0 ETH | 0.0004928 | ||||
Claim | 21212181 | 70 days ago | IN | 0 ETH | 0.00047895 | ||||
Claim | 21207105 | 70 days ago | IN | 0 ETH | 0.00052515 | ||||
Claim | 21207103 | 70 days ago | IN | 0 ETH | 0.00052091 | ||||
Claim | 21207100 | 70 days ago | IN | 0 ETH | 0.00050167 | ||||
Claim | 21179805 | 74 days ago | IN | 0 ETH | 0.00372214 | ||||
Claim | 21179794 | 74 days ago | IN | 0 ETH | 0.00374459 | ||||
Claim | 21135363 | 80 days ago | IN | 0 ETH | 0.00077381 | ||||
Claim | 21135290 | 80 days ago | IN | 0 ETH | 0.00066339 | ||||
Claim | 21135282 | 80 days ago | IN | 0 ETH | 0.00071258 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
20205039 | 210 days ago | 157.53843307 ETH | ||||
20203304 | 211 days ago | 0.00239 ETH | ||||
20203301 | 211 days ago | 0.10463 ETH | ||||
20187589 | 213 days ago | 0.00375 ETH | ||||
20187581 | 213 days ago | 0.12503 ETH | ||||
20187577 | 213 days ago | 0.04335 ETH | ||||
20158900 | 217 days ago | 0.0261 ETH | ||||
20158897 | 217 days ago | 0.1923 ETH | ||||
20158895 | 217 days ago | 0.1661 ETH | ||||
20147482 | 218 days ago | 1.588 ETH | ||||
20139215 | 219 days ago | 0.0269 ETH | ||||
20074710 | 229 days ago | 0.007 ETH | ||||
20066121 | 230 days ago | 0.042 ETH | ||||
20066118 | 230 days ago | 0.02699 ETH | ||||
20066116 | 230 days ago | 0.14465 ETH | ||||
20048174 | 232 days ago | 0.02081 ETH | ||||
20048172 | 232 days ago | 0.0281 ETH | ||||
19983382 | 241 days ago | 0.004 ETH | ||||
19983380 | 241 days ago | 0.20322 ETH | ||||
19936552 | 248 days ago | 0.00405 ETH | ||||
19932624 | 248 days ago | 0.1305 ETH | ||||
19932620 | 248 days ago | 0.2165 ETH | ||||
19932615 | 248 days ago | 0.44099 ETH | ||||
19929895 | 249 days ago | 0.00401 ETH | ||||
19929827 | 249 days ago | 0.00339 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Claims
Compiler Version
v0.8.22+commit.4fc1097e
Optimization Enabled:
Yes with 1000000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.22; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import {AccessControl} from "@openzeppelin/contracts/access/AccessControl.sol"; import {Address} from "@openzeppelin/contracts/utils/Address.sol"; import {ReentrancyGuard} from "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; import {IPreSaleDop} from "./IPreSaleDop.sol"; import "./Common.sol"; /// @title Claims contract /// @notice Implements the claiming of the leader's commissons contract Claims is AccessControl, ReentrancyGuard { using SafeERC20 for IERC20; using Address for address payable; /// @notice Thrown when input array length is zero error InvalidData(); /// @notice Thrown when claiming before round ends error RoundNotEnded(); /// @notice Thrown when round is not Enabled error RoundNotEnabled(); /// @notice Thrown when CommissionsManager wants to setClaim while claim enable error WaitForRoundDisable(); /// @notice Returns the identifier of the CommissionsManager role bytes32 public constant COMMISSIONS_MANAGER = keccak256("COMMISSIONS_MANAGER"); /// @notice Returns the identifier of the AdminRole role bytes32 public constant ADMIN_ROLE = keccak256("ADMIN"); /// @notice Returns the address of PreSaleDop contract IPreSaleDop public presaleDop; /// @member token The token address /// @member amount The token amount struct ClaimInfo { IERC20 token; uint256 amount; } /// @notice Stores the amount of token in a round of the user mapping(address => mapping(uint32 => mapping(IERC20 => uint256))) public pendingClaims; /// @notice Stores the enabled/disabled status of a round mapping(uint32 => bool) public isEnabled; /// @dev Emitted when claim amount is set for the addresses event ClaimSet( address[] indexed to, uint32 indexed round, IERC20 token, uint256 amount ); /// @dev Emitted when claim amount is claimed event FundsClaimed( address indexed by, uint32 indexed round, IERC20 token, uint256 amount ); /// @dev Emitted when claim access changes for the round event RoundEnableUpdated(bool oldAccess, bool newAccess); /// @dev Emitted when dop preSale contract is updated event PresaleDopUpdated(address oldpresaleDop, address newpresaleDop); /// @dev Constructor. constructor() { _setRoleAdmin(ADMIN_ROLE, ADMIN_ROLE); _setRoleAdmin(COMMISSIONS_MANAGER, ADMIN_ROLE); _grantRole(ADMIN_ROLE, msg.sender); } /// @notice Updates token amounts to addresses in a given round /// @param to The array of claimants /// @param round The round number /// @param claims The tokens and amount to claim function setClaim( address[] calldata to, uint32 round, ClaimInfo[][] memory claims ) external onlyRole(COMMISSIONS_MANAGER) { if (isEnabled[round]) { revert WaitForRoundDisable(); } uint256 toLength = to.length; if (toLength == 0) { revert InvalidData(); } if (toLength != claims.length) { revert ArrayLengthMismatch(); } for (uint256 i; i < toLength; ++i) { mapping(IERC20 => uint256) storage claimInfo = pendingClaims[to[i]][ round ]; for (uint256 j = 0; j < claims[i].length; j++) { ClaimInfo memory amount = claims[i][j]; claimInfo[amount.token] = amount.amount; emit ClaimSet({ to: to, round: round, token: amount.token, amount: amount.amount }); } } } /// @notice Claims the amount in a given round /// @param round The round in which you want to claim /// @param tokens The addresses of the token to be claimed function claim( uint32 round, IERC20[] calldata tokens ) external nonReentrant { _checkRoundAndTime(round); mapping(IERC20 => uint256) storage claimInfo = pendingClaims[ msg.sender ][round]; for (uint256 i = 0; i < tokens.length; ++i) { IERC20 token = tokens[i]; uint256 amount = claimInfo[token]; if (amount == 0) { continue; } delete claimInfo[token]; if (token == ETH) { payable(msg.sender).sendValue(amount); } else { token.safeTransfer(msg.sender, amount); } emit FundsClaimed({ by: msg.sender, round: round, token: token, amount: amount }); } } /// @notice Purchases Dop Token with claim amounts /// @param round The round in which user will purchase /// @param deadline The deadline of the signature /// @param tokenPrices The current prices of the tokens in 10 decimals /// @param tokens The address of the tokens /// @param amounts The Investment amounts /// @param v The `v` signature parameter /// @param r The `r` signature parameter /// @param s The `s` signature parameter function purchaseWithClaim( uint32 round, uint256 deadline, uint8[] calldata normalizationFactors, uint256[] calldata tokenPrices, IERC20[] calldata tokens, uint256[] calldata amounts, uint256[] calldata minAmountsDop, uint8 v, bytes32 r, bytes32 s ) external nonReentrant { _checkRoundAndTime(round); if (normalizationFactors.length == 0) { revert ZeroLengthArray(); } if ( normalizationFactors.length != tokenPrices.length || tokenPrices.length != tokens.length || tokens.length != amounts.length || amounts.length != minAmountsDop.length ) { revert ArrayLengthMismatch(); } _verifyPurchaseWithClaim( msg.sender, round, deadline, tokenPrices, normalizationFactors, tokens, amounts, v, r, s ); mapping(IERC20 => uint256) storage info = pendingClaims[msg.sender][ round ]; for (uint256 i = 0; i < tokens.length; ++i) { IERC20 token = tokens[i]; uint256 amountToInvest = amounts[i]; uint8 normalizationFactor = normalizationFactors[i]; uint256 minAmountDop = minAmountsDop[i]; uint256 amount = info[token]; if (amount == 0) { continue; } if (amountToInvest > amount) { continue; } delete info[token]; uint256 remainingAmount = amount - amountToInvest; if (token == ETH) { presaleDop.purchaseWithClaim{value: amountToInvest}( ETH, 0, normalizationFactor, amountToInvest, minAmountDop, msg.sender, round ); } else { // address presaleContract = address(presaleDop); uint256 allowance = token.allowance( address(this), address(presaleDop) ); if (allowance < amountToInvest) { token.forceApprove(address(presaleDop), type(uint256).max); } presaleDop.purchaseWithClaim( token, tokenPrices[i], normalizationFactor, amountToInvest, minAmountDop, msg.sender, round ); } if (remainingAmount > 0) { if (token == ETH) { payable(msg.sender).sendValue(remainingAmount); } else { token.safeTransfer(msg.sender, remainingAmount); } emit FundsClaimed({ by: msg.sender, round: round, token: token, amount: remainingAmount }); } } } // The tokenPrices,tokens are provided externally and therefore have to be verified by the trusted presale contract function _verifyPurchaseWithClaim( address by, uint32 round, uint256 deadline, uint256[] calldata tokenPrices, uint8[] calldata normalizationFactors, IERC20[] calldata tokens, uint256[] calldata amounts, uint8 v, bytes32 r, bytes32 s ) private { presaleDop.verifyPurchaseWithClaim( by, round, deadline, tokenPrices, normalizationFactors, tokens, amounts, v, r, s ); } /// @notice Verifies round and time function _checkRoundAndTime(uint32 round) internal view { if (!isEnabled[round]) { revert RoundNotEnabled(); } (, uint256 endTime, ) = presaleDop.rounds(round); if (block.timestamp < endTime) { revert RoundNotEnded(); } } /// @notice Changes PresaleDop contract address /// @param presaleDopAddress The address of the new PreSaleDop contract function updatePreSaleAddress( IPreSaleDop presaleDopAddress ) external onlyRole(ADMIN_ROLE) { if (address(presaleDopAddress) == address(0)) { revert ZeroAddress(); } if (presaleDop == presaleDopAddress) { revert IdenticalValue(); } emit PresaleDopUpdated({ oldpresaleDop: address(presaleDop), newpresaleDop: address(presaleDopAddress) }); presaleDop = presaleDopAddress; } /// @notice Changes the Claim access of the contract /// @param round The round number of which access is changed /// @param status The access status of the round function enableClaims( uint32 round, bool status ) public onlyRole(COMMISSIONS_MANAGER) { bool oldAccess = isEnabled[round]; if (oldAccess == status) { revert IdenticalValue(); } emit RoundEnableUpdated({oldAccess: oldAccess, newAccess: status}); isEnabled[round] = status; } receive() external payable {} }
// 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) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// 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.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; import {IERC20Permit} from "../extensions/IERC20Permit.sol"; import {Address} from "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev An operation with an ERC20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @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 AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @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 * {FailedInnerCall} 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 AddressInsufficientBalance(address(this)); } (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 {FailedInnerCall}) 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 {FailedInnerCall} 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 {FailedInnerCall}. */ 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (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; } }
// 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 // OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.20; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant NOT_ENTERED = 1; uint256 private constant ENTERED = 2; uint256 private _status; /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); constructor() { _status = NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be NOT_ENTERED if (_status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // Any calls to nonReentrant after this point will fail _status = ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.22; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /// @notice Thrown when updating an address with zero address error ZeroAddress(); /// @notice Thrown when updating with an array of no values error ZeroLengthArray(); /// @notice Thrown when updating with the same value as previously stored error IdenticalValue(); /// @notice Thrown when two array lengths does not match error ArrayLengthMismatch(); /// @dev The address of the Ethereum IERC20 constant ETH = IERC20(0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE);
// SPDX-License-Identifier: MIT pragma solidity 0.8.22; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {IRounds} from "./IRounds.sol"; interface IPreSaleDop is IRounds { /// @notice Purchases Dop token with claim amount /// @param token The address of investment token /// @param tokenPrice The current price of token in 10 decimals /// @param referenceNormalizationFactor The value to handle decimals /// @param amount The investment amount /// @param minAmountDop The minimum amount of dop recipient will get /// @param recipient The address of the recipient /// @param round The round in which user will purchase function purchaseWithClaim( IERC20 token, uint256 tokenPrice, uint8 referenceNormalizationFactor, uint256 amount, uint256 minAmountDop, address recipient, uint32 round ) external payable; /// @notice The helper function which verifies signature, signed by signerWallet, reverts if invalidSignature function verifyPurchaseWithClaim( address recipient, uint32 round, uint256 deadline, uint256[] calldata tokenPrices, uint8[] calldata normalizationFactors, IERC20[] calldata tokens, uint256[] calldata amounts, uint8 v, bytes32 r, bytes32 s ) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.22; interface IRounds { /// @notice Returns the round details of the round numberz function rounds( uint32 round ) external view returns (uint256 startTime, uint256 endTime, uint256 price); }
{ "viaIR": true, "optimizer": { "enabled": true, "runs": 1000000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"ArrayLengthMismatch","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"IdenticalValue","type":"error"},{"inputs":[],"name":"InvalidData","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[],"name":"RoundNotEnabled","type":"error"},{"inputs":[],"name":"RoundNotEnded","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"WaitForRoundDisable","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"inputs":[],"name":"ZeroLengthArray","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address[]","name":"to","type":"address[]"},{"indexed":true,"internalType":"uint32","name":"round","type":"uint32"},{"indexed":false,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ClaimSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"by","type":"address"},{"indexed":true,"internalType":"uint32","name":"round","type":"uint32"},{"indexed":false,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FundsClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldpresaleDop","type":"address"},{"indexed":false,"internalType":"address","name":"newpresaleDop","type":"address"}],"name":"PresaleDopUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"oldAccess","type":"bool"},{"indexed":false,"internalType":"bool","name":"newAccess","type":"bool"}],"name":"RoundEnableUpdated","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COMMISSIONS_MANAGER","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"round","type":"uint32"},{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"round","type":"uint32"},{"internalType":"bool","name":"status","type":"bool"}],"name":"enableClaims","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint32","name":"","type":"uint32"}],"name":"isEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"},{"internalType":"contract IERC20","name":"","type":"address"}],"name":"pendingClaims","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleDop","outputs":[{"internalType":"contract IPreSaleDop","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"round","type":"uint32"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8[]","name":"normalizationFactors","type":"uint8[]"},{"internalType":"uint256[]","name":"tokenPrices","type":"uint256[]"},{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"uint256[]","name":"minAmountsDop","type":"uint256[]"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"purchaseWithClaim","outputs":[],"stateMutability":"nonpayable","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":"to","type":"address[]"},{"internalType":"uint32","name":"round","type":"uint32"},{"components":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct Claims.ClaimInfo[][]","name":"claims","type":"tuple[][]"}],"name":"setClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IPreSaleDop","name":"presaleDopAddress","type":"address"}],"name":"updatePreSaleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052346100a357600180555f80516020611fc5833981519152805f525f602052600160405f20018181549155817fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9181835f80a47f28d695c7dfc0dc20c36b38cc22e861d8a3c0da73ef3975e85a4bf12193642a5c805f52600160405f20019183835493555f80a4610093336100a7565b50604051611e7f90816101468239f35b5f80fd5b6001600160a01b03165f8181527f5cbfc8ee58ca47855df7bcf648dd304ddb6b932f9b87878bdf6318d7ec7ee5b760205260409020545f80516020611fc5833981519152919060ff1661013f57815f525f60205260405f20815f5260205260405f20600160ff1982541617905533917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d5f80a4600190565b50505f9056fe61014080604052600436101561001d575b50361561001b575f80fd5b005b5f610100525f3560e01c90816301ffc9a71461165457508063054a68ad146115bc578063248a9ca3146115725780632f2ff15d1461151857806336568abe1461148e5780633dfbdad81461143d578063461c48cd146113655780635f91d4061461130d5780637188cb351461115157806375b238fc146110f957806391d1485414611085578063a217fddf1461104d578063c4f805fe14610cf2578063cabb454914610c9a578063ce73f87d146102ea578063d547741f1461027f5763ff93be03146100e9575f610010565b346102785760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261027857610120611767565b60243567ffffffffffffffff81116102785761014090369060040161177a565b91610149611a4c565b61015281611a87565b3361010051526020600360205263ffffffff60406101005120921691825f5260205260405f2090610100515b85811061019057600180556101005180f35b80846101a76101a26001948a8a611818565b611869565b73ffffffffffffffffffffffffffffffffffffffff8116805f5286865260405f20908154801561026e5773eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee610254927f4978506686bd9ae370ab4cd6b1b3093dad6682e7840df229a6534e9dc4ba522394610100519055145f1461025e576102238133611c94565b6040519182913395836020909392919373ffffffffffffffffffffffffffffffffffffffff60408201951681520152565b0390a35b0161017e565b610269813386611bce565b610223565b5050505050610258565b6101005180fd5b346102785760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610278576102e26004356102bc611710565b90806101005152610100516020526102dd60016040610100512001546118e5565b6119ae565b506101005180f35b34610c22576101407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c2257610322611767565b60a05260443567ffffffffffffffff8111610c225761034590369060040161177a565b9060e05260643567ffffffffffffffff8111610c225761036990369060040161177a565b60c05260805260843567ffffffffffffffff8111610c225761038f90369060040161177a565b906101205260a43567ffffffffffffffff8111610c22576103b490369060040161177a565b60c49391933567ffffffffffffffff8111610c22576103d790369060040161177a565b60e43560ff81168103610c22576103ec611a4c565b6103f760a051611a87565b8415610c705760c0518514801590610c64575b8015610c5a575b8015610c50575b610c265773ffffffffffffffffffffffffffffffffffffffff60025416803b15610c22579084906040519283917fa77188f300000000000000000000000000000000000000000000000000000000835233600484015263ffffffff60a0511660248401526024356044840152610140606484015260206104a1610144850160c051608051611b91565b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8582030160848601528a81520160e0515f5b8b8110610bf4575050807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc85602093030160a48601528b8152018b610120515f5b8d8110610bb4575050849260ff61055a845f9987957ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc878d99030160c4880152611b91565b911660e4830152610104356101048301526101243561012483015203925af18015610ba957610b95575b5033610100515260036020526040610100512063ffffffff60a051165f5260205260405f2092610100515b8681106105c157600180556101005180f35b6105d26101a2828961012051611818565b906105de81848b611818565b356105ec828960e051611818565b3560ff8116810361027857610602838789611818565b359073ffffffffffffffffffffffffffffffffffffffff85165f528860205260405f20918254928315610b8757838511610b87576101005190558284810311610b545773ffffffffffffffffffffffffffffffffffffffff861673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee036108195773ffffffffffffffffffffffffffffffffffffffff6002541690813b156102785760ff604051937f27824e5300000000000000000000000000000000000000000000000000000000855273eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee600486015261010051602486015216604484015284606484015260848301523360a483015263ffffffff60a0511660c48301528160e4818661010051945af1801561080b576107f4575b506001935b828203610736575b5050505b016105af565b6107d78173eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee73ffffffffffffffffffffffffffffffffffffffff7f4978506686bd9ae370ab4cd6b1b3093dad6682e7840df229a6534e9dc4ba52239416145f146107e25761079a85850333611c94565b60405191829163ffffffff60a051169633960390836020909392919373ffffffffffffffffffffffffffffffffffffffff60408201951681520152565b0390a389808061072c565b6107ef8585033383611bce565b61079a565b6107fd906117ab565b61010051610278578b61071f565b6040513d61010051823e3d90fd5b6002546040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff9182166024820181905291602090829060449082908c165afa801561080b5786916101005191610b1f575b501061096d575b5073ffffffffffffffffffffffffffffffffffffffff60025416906108b98660c051608051611818565b3592823b156102785760ff90604051947f27824e5300000000000000000000000000000000000000000000000000000000865273ffffffffffffffffffffffffffffffffffffffff8a166004870152602486015216604484015284606484015260848301523360a483015263ffffffff60a0511660c48301528160e481610100519361010051905af1801561080b57610956575b50600193610724565b61095f906117ab565b61010051610278578b61094d565b6040517f095ea7b30000000000000000000000000000000000000000000000000000000060208201528160248201527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60448201526044815280608081011067ffffffffffffffff608083011117610aa357608081016040526101005181518190602084018273ffffffffffffffffffffffffffffffffffffffff8d165af1610a14611c37565b81610af0575b5080610ad0575b15610a2d575b5061088f565b604051917f095ea7b300000000000000000000000000000000000000000000000000000000602084015260248301526101005160448301526044825281608081011067ffffffffffffffff608084011117610aa357610a96826080610a9c940160405289611d3b565b87611d3b565b8d80610a27565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5073ffffffffffffffffffffffffffffffffffffffff88163b1515610a21565b8051801592508215610b05575b50505f610a1a565b610b189250602080918301019101611d23565b5f80610afd565b9150506020813d602011610b4c575b81610b3b602093836117bf565b81010312610278578590515f610888565b3d9150610b2e565b7f4e487b710000000000000000000000000000000000000000000000000000000061010051526011600452602461010051fd5b505050505060019150610730565b610b9e906117ab565b5f6101005286610584565b6040513d5f823e3d90fd5b9395509395505060208060019273ffffffffffffffffffffffffffffffffffffffff610bdf87611733565b1681520193019101918b8694928a9694610515565b92945080939550359060ff8216809203610c22576020816001938293520193019101918593918995936104d4565b5f80fd5b60046040517fa24a13a6000000000000000000000000000000000000000000000000000000008152fd5b5081841415610418565b5083861415610411565b508560c051141561040a565b60046040517f0f59b9ff000000000000000000000000000000000000000000000000000000008152fd5b34610c22575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c225760206040517f28d695c7dfc0dc20c36b38cc22e861d8a3c0da73ef3975e85a4bf12193642a5c8152f35b34610c225760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c225760043567ffffffffffffffff8111610c2257610d4190369060040161177a565b610d49611754565b9067ffffffffffffffff60443511610c2257366023604435011215610c22576044356004013591610d7983611800565b92610d8760405194856117bf565b80845260208401903660248260051b604435010111610c2257602460443501915b60248260051b60443501018310610f835750505063ffffffff90610dca61188a565b1690815f52600460205260ff60405f205416610f59578015610f2f5782518103610c2657925f935b808510610dfb57005b610e06858284611818565b3573ffffffffffffffffffffffffffffffffffffffff90818116809103610c22575f52600360205260405f20845f5260205260405f20925f965b610e4a8188611855565b5151881015610f215787610e6a600199610e64848b611855565b51611855565b5190878560208401938451828251165f528a60205260405f2055511692519260405180875f5b8b8110610ef557505081900390206040805173ffffffffffffffffffffffffffffffffffffffff93909316835260208301959095528c9490917f4a1b073fc0d6abfc50dba9f49c2e5fb43ab32e017c1690ee4d4b26dabf8dc23f9190a3019750610e40565b918f91939496979550602080918c610f0c87611733565b1681520193019101908c949695939291610e90565b60010196509250610df29050565b60046040517f5cb045db000000000000000000000000000000000000000000000000000000008152fd5b60046040517f2f516035000000000000000000000000000000000000000000000000000000008152fd5b823567ffffffffffffffff8111610c22576044350136604382011215610c2257602481013590610fb282611800565b91610fc060405193846117bf565b808352602083013660448360061b85010111610c225760448301905b60448360061b8501018210610ffe575050509082525060209283019201610da8565b604082360312610c225760405180604081011067ffffffffffffffff604083011117610aa357604091818360209301845261103885611733565b81528285013583820152815201910190610fdc565b34610c22575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c225760206040515f8152f35b34610c225760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c22576110bc611710565b6004355f525f60205273ffffffffffffffffffffffffffffffffffffffff60405f2091165f52602052602060ff60405f2054166040519015158152f35b34610c22575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c225760206040517fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec428152f35b34610c225760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c225760043573ffffffffffffffffffffffffffffffffffffffff808216809203610c2257335f9081527f5cbfc8ee58ca47855df7bcf648dd304ddb6b932f9b87878bdf6318d7ec7ee5b760205260409020547fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec429060ff16156112d6575081156112ac5760025490811690828214611282576040805173ffffffffffffffffffffffffffffffffffffffff938416815292841660208401527fffffffffffffffffffffffff0000000000000000000000000000000000000000927f0ea22812967ff578dc07067cc7fe92a823e9e538af1ac95532f61ca22842260b9190a11617600255005b60046040517f2620eb3a000000000000000000000000000000000000000000000000000000008152fd5b60046040517fd92e233d000000000000000000000000000000000000000000000000000000008152fd5b604490604051907fe2517d3f0000000000000000000000000000000000000000000000000000000082523360048301526024820152fd5b34610c225760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c225763ffffffff611349611767565b165f526004602052602060ff60405f2054166040519015158152f35b34610c225760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c225761139c611767565b60243590811515809203610c225763ffffffff906113b861188a565b16805f52600460205260ff60405f20541615158281146112825760407f747f56458041cea2ada41de00c95f1a8dc602dfa334765aafe548611948502d2918151908152846020820152a15f52600460205260405f209060ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0083541691161790555f80f35b34610c22575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c2257602073ffffffffffffffffffffffffffffffffffffffff60025416604051908152f35b34610c225760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c22576114c5611710565b3373ffffffffffffffffffffffffffffffffffffffff8216036114ee5761001b906004356119ae565b60046040517f6697b232000000000000000000000000000000000000000000000000000000008152fd5b34610c225760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c225761001b600435611555611710565b90805f525f60205261156d600160405f2001546118e5565b611906565b34610c225760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c22576004355f525f6020526020600160405f200154604051908152f35b34610c225760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c225760043573ffffffffffffffffffffffffffffffffffffffff90818116809103610c2257611616611754565b90604435928316809303610c22575f52600360205263ffffffff60405f2091165f5260205260405f20905f52602052602060405f2054604051908152f35b34610c225760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c2257600435907fffffffff000000000000000000000000000000000000000000000000000000008216809203610c2257817f7965db0b00000000000000000000000000000000000000000000000000000000602093149081156116e6575b5015158152f35b7f01ffc9a700000000000000000000000000000000000000000000000000000000915014836116df565b6024359073ffffffffffffffffffffffffffffffffffffffff82168203610c2257565b359073ffffffffffffffffffffffffffffffffffffffff82168203610c2257565b6024359063ffffffff82168203610c2257565b6004359063ffffffff82168203610c2257565b9181601f84011215610c225782359167ffffffffffffffff8311610c22576020808501948460051b010111610c2257565b67ffffffffffffffff8111610aa357604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117610aa357604052565b67ffffffffffffffff8111610aa35760051b60200190565b91908110156118285760051b0190565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b80518210156118285760209160051b010190565b3573ffffffffffffffffffffffffffffffffffffffff81168103610c225790565b335f9081527f344c38c63afa63cc0790d03fd9f5e1b1e0cb81e2f69d7bd71f512be2ba8de6de60205260409020547f28d695c7dfc0dc20c36b38cc22e861d8a3c0da73ef3975e85a4bf12193642a5c9060ff16156112d65750565b805f525f60205260405f20335f5260205260ff60405f205416156112d65750565b90815f525f60205273ffffffffffffffffffffffffffffffffffffffff60405f20911690815f5260205260ff60405f205416155f146119a857815f525f60205260405f20815f5260205260405f2060017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0082541617905533917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d5f80a4600190565b50505f90565b90815f525f60205273ffffffffffffffffffffffffffffffffffffffff60405f20911690815f5260205260ff60405f2054165f146119a857815f525f60205260405f20815f5260205260405f207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00815416905533917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b5f80a4600190565b600260015414611a5d576002600155565b60046040517f3ee5aeb5000000000000000000000000000000000000000000000000000000008152fd5b63ffffffff16805f52600460205260ff60405f20541615611b6757606073ffffffffffffffffffffffffffffffffffffffff60025416916024604051809481937f79a6d51f00000000000000000000000000000000000000000000000000000000835260048301525afa908115610ba9575f91611b32575b504210611b0857565b60046040517fc43172d2000000000000000000000000000000000000000000000000000000008152fd5b90506060813d606011611b5f575b81611b4d606093836117bf565b81010312610c2257602001515f611aff565b3d9150611b40565b60046040517fde699550000000000000000000000000000000000000000000000000000000008152fd5b90918281527f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8311610c225760209260051b809284830137010190565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000602082015273ffffffffffffffffffffffffffffffffffffffff929092166024830152604480830193909352918152611c3591611c306064836117bf565b611d3b565b565b3d15611c8f573d9067ffffffffffffffff8211610aa35760405191611c8460207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601846117bf565b82523d5f602084013e565b606090565b814710611cf3575f80809373ffffffffffffffffffffffffffffffffffffffff8294165af1611cc1611c37565b5015611cc957565b60046040517f1425ea42000000000000000000000000000000000000000000000000000000008152fd5b60246040517fcd786059000000000000000000000000000000000000000000000000000000008152306004820152fd5b90816020910312610c2257518015158103610c225790565b5f8073ffffffffffffffffffffffffffffffffffffffff611d7193169360208151910182865af1611d6a611c37565b9083611dd3565b8051908115159182611db8575b5050611d875750565b602490604051907f5274afe70000000000000000000000000000000000000000000000000000000082526004820152fd5b611dcb9250602080918301019101611d23565b155f80611d7e565b90611de85750805115611cc957805190602001fd5b81511580611e40575b611df9575090565b60249073ffffffffffffffffffffffffffffffffffffffff604051917f9996b315000000000000000000000000000000000000000000000000000000008352166004820152fd5b50803b15611df156fea2646970667358221220da8680c96c200c592d83a282f7aa0514c29fcda3768ede5048602b52874e07d864736f6c63430008160033df8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42
Deployed Bytecode
0x61014080604052600436101561001d575b50361561001b575f80fd5b005b5f610100525f3560e01c90816301ffc9a71461165457508063054a68ad146115bc578063248a9ca3146115725780632f2ff15d1461151857806336568abe1461148e5780633dfbdad81461143d578063461c48cd146113655780635f91d4061461130d5780637188cb351461115157806375b238fc146110f957806391d1485414611085578063a217fddf1461104d578063c4f805fe14610cf2578063cabb454914610c9a578063ce73f87d146102ea578063d547741f1461027f5763ff93be03146100e9575f610010565b346102785760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261027857610120611767565b60243567ffffffffffffffff81116102785761014090369060040161177a565b91610149611a4c565b61015281611a87565b3361010051526020600360205263ffffffff60406101005120921691825f5260205260405f2090610100515b85811061019057600180556101005180f35b80846101a76101a26001948a8a611818565b611869565b73ffffffffffffffffffffffffffffffffffffffff8116805f5286865260405f20908154801561026e5773eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee610254927f4978506686bd9ae370ab4cd6b1b3093dad6682e7840df229a6534e9dc4ba522394610100519055145f1461025e576102238133611c94565b6040519182913395836020909392919373ffffffffffffffffffffffffffffffffffffffff60408201951681520152565b0390a35b0161017e565b610269813386611bce565b610223565b5050505050610258565b6101005180fd5b346102785760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610278576102e26004356102bc611710565b90806101005152610100516020526102dd60016040610100512001546118e5565b6119ae565b506101005180f35b34610c22576101407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c2257610322611767565b60a05260443567ffffffffffffffff8111610c225761034590369060040161177a565b9060e05260643567ffffffffffffffff8111610c225761036990369060040161177a565b60c05260805260843567ffffffffffffffff8111610c225761038f90369060040161177a565b906101205260a43567ffffffffffffffff8111610c22576103b490369060040161177a565b60c49391933567ffffffffffffffff8111610c22576103d790369060040161177a565b60e43560ff81168103610c22576103ec611a4c565b6103f760a051611a87565b8415610c705760c0518514801590610c64575b8015610c5a575b8015610c50575b610c265773ffffffffffffffffffffffffffffffffffffffff60025416803b15610c22579084906040519283917fa77188f300000000000000000000000000000000000000000000000000000000835233600484015263ffffffff60a0511660248401526024356044840152610140606484015260206104a1610144850160c051608051611b91565b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8582030160848601528a81520160e0515f5b8b8110610bf4575050807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc85602093030160a48601528b8152018b610120515f5b8d8110610bb4575050849260ff61055a845f9987957ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc878d99030160c4880152611b91565b911660e4830152610104356101048301526101243561012483015203925af18015610ba957610b95575b5033610100515260036020526040610100512063ffffffff60a051165f5260205260405f2092610100515b8681106105c157600180556101005180f35b6105d26101a2828961012051611818565b906105de81848b611818565b356105ec828960e051611818565b3560ff8116810361027857610602838789611818565b359073ffffffffffffffffffffffffffffffffffffffff85165f528860205260405f20918254928315610b8757838511610b87576101005190558284810311610b545773ffffffffffffffffffffffffffffffffffffffff861673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee036108195773ffffffffffffffffffffffffffffffffffffffff6002541690813b156102785760ff604051937f27824e5300000000000000000000000000000000000000000000000000000000855273eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee600486015261010051602486015216604484015284606484015260848301523360a483015263ffffffff60a0511660c48301528160e4818661010051945af1801561080b576107f4575b506001935b828203610736575b5050505b016105af565b6107d78173eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee73ffffffffffffffffffffffffffffffffffffffff7f4978506686bd9ae370ab4cd6b1b3093dad6682e7840df229a6534e9dc4ba52239416145f146107e25761079a85850333611c94565b60405191829163ffffffff60a051169633960390836020909392919373ffffffffffffffffffffffffffffffffffffffff60408201951681520152565b0390a389808061072c565b6107ef8585033383611bce565b61079a565b6107fd906117ab565b61010051610278578b61071f565b6040513d61010051823e3d90fd5b6002546040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff9182166024820181905291602090829060449082908c165afa801561080b5786916101005191610b1f575b501061096d575b5073ffffffffffffffffffffffffffffffffffffffff60025416906108b98660c051608051611818565b3592823b156102785760ff90604051947f27824e5300000000000000000000000000000000000000000000000000000000865273ffffffffffffffffffffffffffffffffffffffff8a166004870152602486015216604484015284606484015260848301523360a483015263ffffffff60a0511660c48301528160e481610100519361010051905af1801561080b57610956575b50600193610724565b61095f906117ab565b61010051610278578b61094d565b6040517f095ea7b30000000000000000000000000000000000000000000000000000000060208201528160248201527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60448201526044815280608081011067ffffffffffffffff608083011117610aa357608081016040526101005181518190602084018273ffffffffffffffffffffffffffffffffffffffff8d165af1610a14611c37565b81610af0575b5080610ad0575b15610a2d575b5061088f565b604051917f095ea7b300000000000000000000000000000000000000000000000000000000602084015260248301526101005160448301526044825281608081011067ffffffffffffffff608084011117610aa357610a96826080610a9c940160405289611d3b565b87611d3b565b8d80610a27565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5073ffffffffffffffffffffffffffffffffffffffff88163b1515610a21565b8051801592508215610b05575b50505f610a1a565b610b189250602080918301019101611d23565b5f80610afd565b9150506020813d602011610b4c575b81610b3b602093836117bf565b81010312610278578590515f610888565b3d9150610b2e565b7f4e487b710000000000000000000000000000000000000000000000000000000061010051526011600452602461010051fd5b505050505060019150610730565b610b9e906117ab565b5f6101005286610584565b6040513d5f823e3d90fd5b9395509395505060208060019273ffffffffffffffffffffffffffffffffffffffff610bdf87611733565b1681520193019101918b8694928a9694610515565b92945080939550359060ff8216809203610c22576020816001938293520193019101918593918995936104d4565b5f80fd5b60046040517fa24a13a6000000000000000000000000000000000000000000000000000000008152fd5b5081841415610418565b5083861415610411565b508560c051141561040a565b60046040517f0f59b9ff000000000000000000000000000000000000000000000000000000008152fd5b34610c22575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c225760206040517f28d695c7dfc0dc20c36b38cc22e861d8a3c0da73ef3975e85a4bf12193642a5c8152f35b34610c225760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c225760043567ffffffffffffffff8111610c2257610d4190369060040161177a565b610d49611754565b9067ffffffffffffffff60443511610c2257366023604435011215610c22576044356004013591610d7983611800565b92610d8760405194856117bf565b80845260208401903660248260051b604435010111610c2257602460443501915b60248260051b60443501018310610f835750505063ffffffff90610dca61188a565b1690815f52600460205260ff60405f205416610f59578015610f2f5782518103610c2657925f935b808510610dfb57005b610e06858284611818565b3573ffffffffffffffffffffffffffffffffffffffff90818116809103610c22575f52600360205260405f20845f5260205260405f20925f965b610e4a8188611855565b5151881015610f215787610e6a600199610e64848b611855565b51611855565b5190878560208401938451828251165f528a60205260405f2055511692519260405180875f5b8b8110610ef557505081900390206040805173ffffffffffffffffffffffffffffffffffffffff93909316835260208301959095528c9490917f4a1b073fc0d6abfc50dba9f49c2e5fb43ab32e017c1690ee4d4b26dabf8dc23f9190a3019750610e40565b918f91939496979550602080918c610f0c87611733565b1681520193019101908c949695939291610e90565b60010196509250610df29050565b60046040517f5cb045db000000000000000000000000000000000000000000000000000000008152fd5b60046040517f2f516035000000000000000000000000000000000000000000000000000000008152fd5b823567ffffffffffffffff8111610c22576044350136604382011215610c2257602481013590610fb282611800565b91610fc060405193846117bf565b808352602083013660448360061b85010111610c225760448301905b60448360061b8501018210610ffe575050509082525060209283019201610da8565b604082360312610c225760405180604081011067ffffffffffffffff604083011117610aa357604091818360209301845261103885611733565b81528285013583820152815201910190610fdc565b34610c22575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c225760206040515f8152f35b34610c225760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c22576110bc611710565b6004355f525f60205273ffffffffffffffffffffffffffffffffffffffff60405f2091165f52602052602060ff60405f2054166040519015158152f35b34610c22575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c225760206040517fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec428152f35b34610c225760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c225760043573ffffffffffffffffffffffffffffffffffffffff808216809203610c2257335f9081527f5cbfc8ee58ca47855df7bcf648dd304ddb6b932f9b87878bdf6318d7ec7ee5b760205260409020547fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec429060ff16156112d6575081156112ac5760025490811690828214611282576040805173ffffffffffffffffffffffffffffffffffffffff938416815292841660208401527fffffffffffffffffffffffff0000000000000000000000000000000000000000927f0ea22812967ff578dc07067cc7fe92a823e9e538af1ac95532f61ca22842260b9190a11617600255005b60046040517f2620eb3a000000000000000000000000000000000000000000000000000000008152fd5b60046040517fd92e233d000000000000000000000000000000000000000000000000000000008152fd5b604490604051907fe2517d3f0000000000000000000000000000000000000000000000000000000082523360048301526024820152fd5b34610c225760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c225763ffffffff611349611767565b165f526004602052602060ff60405f2054166040519015158152f35b34610c225760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c225761139c611767565b60243590811515809203610c225763ffffffff906113b861188a565b16805f52600460205260ff60405f20541615158281146112825760407f747f56458041cea2ada41de00c95f1a8dc602dfa334765aafe548611948502d2918151908152846020820152a15f52600460205260405f209060ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0083541691161790555f80f35b34610c22575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c2257602073ffffffffffffffffffffffffffffffffffffffff60025416604051908152f35b34610c225760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c22576114c5611710565b3373ffffffffffffffffffffffffffffffffffffffff8216036114ee5761001b906004356119ae565b60046040517f6697b232000000000000000000000000000000000000000000000000000000008152fd5b34610c225760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c225761001b600435611555611710565b90805f525f60205261156d600160405f2001546118e5565b611906565b34610c225760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c22576004355f525f6020526020600160405f200154604051908152f35b34610c225760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c225760043573ffffffffffffffffffffffffffffffffffffffff90818116809103610c2257611616611754565b90604435928316809303610c22575f52600360205263ffffffff60405f2091165f5260205260405f20905f52602052602060405f2054604051908152f35b34610c225760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c2257600435907fffffffff000000000000000000000000000000000000000000000000000000008216809203610c2257817f7965db0b00000000000000000000000000000000000000000000000000000000602093149081156116e6575b5015158152f35b7f01ffc9a700000000000000000000000000000000000000000000000000000000915014836116df565b6024359073ffffffffffffffffffffffffffffffffffffffff82168203610c2257565b359073ffffffffffffffffffffffffffffffffffffffff82168203610c2257565b6024359063ffffffff82168203610c2257565b6004359063ffffffff82168203610c2257565b9181601f84011215610c225782359167ffffffffffffffff8311610c22576020808501948460051b010111610c2257565b67ffffffffffffffff8111610aa357604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117610aa357604052565b67ffffffffffffffff8111610aa35760051b60200190565b91908110156118285760051b0190565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b80518210156118285760209160051b010190565b3573ffffffffffffffffffffffffffffffffffffffff81168103610c225790565b335f9081527f344c38c63afa63cc0790d03fd9f5e1b1e0cb81e2f69d7bd71f512be2ba8de6de60205260409020547f28d695c7dfc0dc20c36b38cc22e861d8a3c0da73ef3975e85a4bf12193642a5c9060ff16156112d65750565b805f525f60205260405f20335f5260205260ff60405f205416156112d65750565b90815f525f60205273ffffffffffffffffffffffffffffffffffffffff60405f20911690815f5260205260ff60405f205416155f146119a857815f525f60205260405f20815f5260205260405f2060017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0082541617905533917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d5f80a4600190565b50505f90565b90815f525f60205273ffffffffffffffffffffffffffffffffffffffff60405f20911690815f5260205260ff60405f2054165f146119a857815f525f60205260405f20815f5260205260405f207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00815416905533917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b5f80a4600190565b600260015414611a5d576002600155565b60046040517f3ee5aeb5000000000000000000000000000000000000000000000000000000008152fd5b63ffffffff16805f52600460205260ff60405f20541615611b6757606073ffffffffffffffffffffffffffffffffffffffff60025416916024604051809481937f79a6d51f00000000000000000000000000000000000000000000000000000000835260048301525afa908115610ba9575f91611b32575b504210611b0857565b60046040517fc43172d2000000000000000000000000000000000000000000000000000000008152fd5b90506060813d606011611b5f575b81611b4d606093836117bf565b81010312610c2257602001515f611aff565b3d9150611b40565b60046040517fde699550000000000000000000000000000000000000000000000000000000008152fd5b90918281527f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8311610c225760209260051b809284830137010190565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000602082015273ffffffffffffffffffffffffffffffffffffffff929092166024830152604480830193909352918152611c3591611c306064836117bf565b611d3b565b565b3d15611c8f573d9067ffffffffffffffff8211610aa35760405191611c8460207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601846117bf565b82523d5f602084013e565b606090565b814710611cf3575f80809373ffffffffffffffffffffffffffffffffffffffff8294165af1611cc1611c37565b5015611cc957565b60046040517f1425ea42000000000000000000000000000000000000000000000000000000008152fd5b60246040517fcd786059000000000000000000000000000000000000000000000000000000008152306004820152fd5b90816020910312610c2257518015158103610c225790565b5f8073ffffffffffffffffffffffffffffffffffffffff611d7193169360208151910182865af1611d6a611c37565b9083611dd3565b8051908115159182611db8575b5050611d875750565b602490604051907f5274afe70000000000000000000000000000000000000000000000000000000082526004820152fd5b611dcb9250602080918301019101611d23565b155f80611d7e565b90611de85750805115611cc957805190602001fd5b81511580611e40575b611df9575090565b60249073ffffffffffffffffffffffffffffffffffffffff604051917f9996b315000000000000000000000000000000000000000000000000000000008352166004820152fd5b50803b15611df156fea2646970667358221220da8680c96c200c592d83a282f7aa0514c29fcda3768ede5048602b52874e07d864736f6c63430008160033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
POL | 100.00% | $0.399923 | 0.0002 | $0.00008 |
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.