More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 105,795 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Batch Transfer | 56224484 | 1 hr ago | IN | 0 AVAX | 0.00012292 | ||||
Batch Transfer | 56224308 | 1 hr ago | IN | 0 AVAX | 0.00020487 | ||||
Batch Transfer | 56224133 | 1 hr ago | IN | 0 AVAX | 0.00020487 | ||||
Batch Transfer | 56221732 | 2 hrs ago | IN | 0 AVAX | 0.00025546 | ||||
Batch Transfer | 56219166 | 4 hrs ago | IN | 0 AVAX | 0.00022321 | ||||
Batch Transfer | 56217633 | 4 hrs ago | IN | 0 AVAX | 0.00010151 | ||||
Batch Transfer | 56217613 | 4 hrs ago | IN | 0 AVAX | 0.00010151 | ||||
Batch Transfer | 56217582 | 4 hrs ago | IN | 0 AVAX | 0.00010151 | ||||
Batch Transfer | 56217547 | 4 hrs ago | IN | 0 AVAX | 0.00010151 | ||||
Batch Transfer | 56217515 | 4 hrs ago | IN | 0 AVAX | 0.00010151 | ||||
Batch Transfer | 56217475 | 4 hrs ago | IN | 0 AVAX | 0.00010151 | ||||
Batch Transfer | 56217435 | 4 hrs ago | IN | 0 AVAX | 0.00012716 | ||||
Batch Transfer | 56217381 | 4 hrs ago | IN | 0 AVAX | 0.00012716 | ||||
Batch Transfer | 56217340 | 5 hrs ago | IN | 0 AVAX | 0.00012716 | ||||
Batch Transfer | 56217305 | 5 hrs ago | IN | 0 AVAX | 0.00010151 | ||||
Batch Transfer | 56217272 | 5 hrs ago | IN | 0 AVAX | 0.00010151 | ||||
Batch Transfer | 56217229 | 5 hrs ago | IN | 0 AVAX | 0.00012716 | ||||
Batch Transfer | 56217193 | 5 hrs ago | IN | 0 AVAX | 0.00012716 | ||||
Batch Transfer | 56217153 | 5 hrs ago | IN | 0 AVAX | 0.00012716 | ||||
Batch Transfer | 56217116 | 5 hrs ago | IN | 0 AVAX | 0.00012716 | ||||
Batch Transfer | 56217083 | 5 hrs ago | IN | 0 AVAX | 0.00012716 | ||||
Batch Transfer | 56217041 | 5 hrs ago | IN | 0 AVAX | 0.00012714 | ||||
Batch Transfer | 56217009 | 5 hrs ago | IN | 0 AVAX | 0.00012991 | ||||
Batch Transfer | 56216944 | 5 hrs ago | IN | 0 AVAX | 0.00012716 | ||||
Batch Transfer | 56216824 | 5 hrs ago | IN | 0 AVAX | 0.00012716 |
Loading...
Loading
Contract Name:
BatchTransferNFT
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import "./SafePausable.sol"; import "../interfaces/IBatchTransferNFT.sol"; error BatchTransferNFT__UnsupportedContract(address nft); /** * @title BatchTransferNFT * @notice Enables to batch transfer multiple NFTs in a single call to this contract */ contract BatchTransferNFT is SafePausable, IBatchTransferNFT { /** * @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) public view virtual override returns (bool) { return interfaceId == type(IBatchTransferNFT).interfaceId || super.supportsInterface(interfaceId); } /** * @notice Batch transfer different NFT in a single call * @dev The function can get paused * @param _transfers The list of transfer. * The different nft needs to support either the IERC721 or IERC1155 interface */ function batchTransfer(Transfer[] calldata _transfers) external override whenNotPaused { uint256 _length = _transfers.length; unchecked { for (uint256 i; i < _length; ++i) { Transfer memory _transfer = _transfers[i]; if (_isERC721(_transfer.nft)) { IERC721(_transfer.nft).safeTransferFrom( _msgSender(), _transfer.recipient, _transfer.tokenId ); } else if (_isERC1155(_transfer.nft)) { IERC1155(_transfer.nft).safeTransferFrom( _msgSender(), _transfer.recipient, _transfer.tokenId, _transfer.amount, "" ); } else { revert BatchTransferNFT__UnsupportedContract(_transfer.nft); } } } } /** * @notice Internal view function to return whether the address supports IERC721 * @param nft The address of the nft * @return Whether the interface is supported or not */ function _isERC721(address nft) internal view returns (bool) { return IERC165(nft).supportsInterface(type(IERC721).interfaceId); } /** * @notice Internal view function to return whether the address supports IERC1155 * @param nft The address of the nft * @return Whether the interface is supported or not */ function _isERC1155(address nft) internal view returns (bool) { return IERC165(nft).supportsInterface(type(IERC1155).interfaceId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/security/Pausable.sol"; import "./SafeAccessControlEnumerable.sol"; import "../interfaces/ISafePausable.sol"; error SafePausable__AlreadyPaused(); error SafePausable__AlreadyUnpaused(); abstract contract SafePausable is SafeAccessControlEnumerable, Pausable, ISafePausable { bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); bytes32 public constant UNPAUSER_ROLE = keccak256("UNPAUSER_ROLE"); bytes32 public constant PAUSER_ADMIN_ROLE = keccak256("PAUSER_ADMIN_ROLE"); bytes32 public constant UNPAUSER_ADMIN_ROLE = keccak256("UNPAUSER_ADMIN_ROLE"); /** * @dev Set the role admins */ constructor() { _setRoleAdmin(PAUSER_ROLE, PAUSER_ADMIN_ROLE); _setRoleAdmin(UNPAUSER_ROLE, UNPAUSER_ADMIN_ROLE); } /** * @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) public view virtual override(SafeAccessControlEnumerable) returns (bool) { return interfaceId == type(ISafePausable).interfaceId || super.supportsInterface(interfaceId); } /** * @notice Pauses the contract. * @dev Sensible part of a contract might be pausable for security reasons. * * Requirements: * - the caller must be the `owner` or have the ``role`` role. * - the contrat needs to be unpaused. */ function pause() public virtual override onlyOwnerOrRole(PAUSER_ROLE) { if (paused()) revert SafePausable__AlreadyPaused(); _pause(); } /** * @notice Unpauses the contract. * @dev Sensible part of a contract might be pausable for security reasons. * * Requirements: * - the caller must be the `owner` or have the ``role`` role. * - the contrat needs to be unpaused. */ function unpause() public virtual override onlyOwnerOrRole(UNPAUSER_ROLE) { if (!paused()) revert SafePausable__AlreadyUnpaused(); _unpause(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IBatchTransferNFT { struct Transfer { address nft; address recipient; uint256 tokenId; uint256 amount; } function batchTransfer(Transfer[] calldata _transfers) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "./PendingOwnable.sol"; error SafeAccessControlEnumerable__SenderMissingRoleAndIsNotOwner( bytes32 role, address sender ); error SafeAccessControlEnumerable__RoleIsDefaultAdmin(); abstract contract SafeAccessControlEnumerable is PendingOwnable, AccessControlEnumerable { /** * @dev Modifier that checks that the role is not the `DEFAULT_ADMIN_ROLE` */ modifier roleIsNotDefaultAdmin(bytes32 role) { if (role == DEFAULT_ADMIN_ROLE) revert SafeAccessControlEnumerable__RoleIsDefaultAdmin(); _; } /** * @dev Modifier that checks that an account is the `owner` or has a specific role */ modifier onlyOwnerOrRole(bytes32 role) { if (msg.sender != owner() && !hasRole(role, msg.sender)) revert SafeAccessControlEnumerable__SenderMissingRoleAndIsNotOwner( role, msg.sender ); _; } /** * @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) public view virtual override(PendingOwnable, AccessControlEnumerable) returns (bool) { return PendingOwnable.supportsInterface(interfaceId) || AccessControlEnumerable.supportsInterface(interfaceId); } /** * @notice Grants `role` to `account`. * @dev If `account` had not been already granted `role`, emits a {RoleGranted} event. * * Requirements: * * - the caller must be the `owner` or have ``role``'s admin role. * - the role granted can't be `DEFAULT_ADMIN` * * @param role The role to grant * @param account The address of the account */ function grantRole(bytes32 role, address account) public virtual override roleIsNotDefaultAdmin(role) onlyOwnerOrRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @notice Revokes `role` from `account`. * @dev If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must be the `owner` or have ``role``'s admin role. * - the role revoked can't be `DEFAULT_ADMIN` * * @param role The role to revoke * @param account The address of the account */ function revokeRole(bytes32 role, address account) public virtual override roleIsNotDefaultAdmin(role) onlyOwnerOrRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @notice Revokes `role` from the calling account. * * @dev Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * - the role renounced can't be `DEFAULT_ADMIN` * * @param role The role to renounce * @param account The address of the account */ function renounceRole(bytes32 role, address account) public virtual override roleIsNotDefaultAdmin(role) { super.renounceRole(role, account); } /** * @notice Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. * @dev This also transfer the `DEFAULT_ADMIN` role to the new owner * @param _newOwner The address of the new owner */ function _transferOwnership(address _newOwner) internal virtual override { _revokeRole(DEFAULT_ADMIN_ROLE, owner()); if (_newOwner != address(0)) _grantRole(DEFAULT_ADMIN_ROLE, _newOwner); super._transferOwnership(_newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/IAccessControlEnumerable.sol"; import "../interfaces/IPendingOwnable.sol"; interface ISafePausable is IAccessControlEnumerable, IPendingOwnable { function PAUSER_ROLE() external pure returns (bytes32); function UNPAUSER_ROLE() external pure returns (bytes32); function PAUSER_ADMIN_ROLE() external pure returns (bytes32); function UNPAUSER_ADMIN_ROLE() external pure returns (bytes32); function pause() external; function unpause() external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol) pragma solidity ^0.8.0; import "./IAccessControlEnumerable.sol"; import "./AccessControl.sol"; import "../utils/structs/EnumerableSet.sol"; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view virtual override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view virtual override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {_grantRole} to track enumerable memberships */ function _grantRole(bytes32 role, address account) internal virtual override { super._grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {_revokeRole} to track enumerable memberships */ function _revokeRole(bytes32 role, address account) internal virtual override { super._revokeRole(role, account); _roleMembers[role].remove(account); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import "../interfaces/IPendingOwnable.sol"; import "./PendingOwnableErrors.sol"; /** * @title Pending Ownable * @author Trader Joe * @notice Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. The ownership of this contract is transferred using the * push and pull pattern, the current owner set a `pendingOwner` using * {setPendingOwner} and that address can then call {becomeOwner} to become the * owner of that contract. The main logic and comments comes from OpenZeppelin's * Ownable contract. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {setPendingOwner} and {becomeOwner}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner */ abstract contract PendingOwnable is ERC165, IPendingOwnable { address private _owner; address private _pendingOwner; /** * @notice Throws if called by any account other than the owner. */ modifier onlyOwner() { if (msg.sender != _owner) revert PendingOwnable__NotOwner(); _; } /** * @notice Throws if called by any account other than the pending owner. */ modifier onlyPendingOwner() { if (msg.sender != _pendingOwner || msg.sender == address(0)) revert PendingOwnable__NotPendingOwner(); _; } /** * @notice Initializes the contract setting the deployer as the initial owner */ constructor() { _transferOwnership(msg.sender); } /** * @notice Returns the address of the current owner * @return The address of the current owner */ function owner() public view virtual override returns (address) { return _owner; } /** * @notice Returns the address of the current pending owner * @return The address of the current pending owner */ function pendingOwner() public view virtual override returns (address) { return _pendingOwner; } /** * @notice Sets the pending owner address. This address will be able to become * the owner of this contract by calling {becomeOwner} */ function setPendingOwner(address pendingOwner_) public virtual override onlyOwner { if (_pendingOwner != address(0)) revert PendingOwnable__PendingOwnerAlreadySet(); _setPendingOwner(pendingOwner_); } /** * @notice Revoke the pending owner address. This address will not be able to * call {becomeOwner} to become the owner anymore. * Can only be called by the owner */ function revokePendingOwner() public virtual override onlyOwner { if (_pendingOwner == address(0)) revert PendingOwnable__NoPendingOwner(); _setPendingOwner(address(0)); } /** * @notice Transfers the ownership to the new owner (`pendingOwner`). * Can only be called by the pending owner */ function becomeOwner() public virtual override onlyPendingOwner { _transferOwnership(msg.sender); } /** * @notice Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual override onlyOwner { _transferOwnership(address(0)); } /** * @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) public view virtual override returns (bool) { return interfaceId == type(IPendingOwnable).interfaceId || super.supportsInterface(interfaceId); } /** * @notice Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. * @param _newOwner The address of the new owner */ function _transferOwnership(address _newOwner) internal virtual { address _oldOwner = _owner; _owner = _newOwner; _pendingOwner = address(0); emit OwnershipTransferred(_oldOwner, _newOwner); } /** * @notice Push the new owner, it needs to be pulled to be effective. * Internal function without access restriction. * @param pendingOwner_ The address of the new pending owner */ function _setPendingOwner(address pendingOwner_) internal virtual { _pendingOwner = pendingOwner_; emit PendingOwnerSet(pendingOwner_); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol) pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IPendingOwnable { event PendingOwnerSet(address indexed pendingOwner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); function owner() external view returns (address); function pendingOwner() external view returns (address); function setPendingOwner(address pendingOwner) external; function revokePendingOwner() external; function becomeOwner() external; function renounceOwnership() external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; error PendingOwnable__NotOwner(); error PendingOwnable__NotPendingOwner(); error PendingOwnable__PendingOwnerAlreadySet(); error PendingOwnable__NoPendingOwner();
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"nft","type":"address"}],"name":"BatchTransferNFT__UnsupportedContract","type":"error"},{"inputs":[],"name":"PendingOwnable__NoPendingOwner","type":"error"},{"inputs":[],"name":"PendingOwnable__NotOwner","type":"error"},{"inputs":[],"name":"PendingOwnable__NotPendingOwner","type":"error"},{"inputs":[],"name":"PendingOwnable__PendingOwnerAlreadySet","type":"error"},{"inputs":[],"name":"SafeAccessControlEnumerable__RoleIsDefaultAdmin","type":"error"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"sender","type":"address"}],"name":"SafeAccessControlEnumerable__SenderMissingRoleAndIsNotOwner","type":"error"},{"inputs":[],"name":"SafePausable__AlreadyPaused","type":"error"},{"inputs":[],"name":"SafePausable__AlreadyUnpaused","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pendingOwner","type":"address"}],"name":"PendingOwnerSet","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":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNPAUSER_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNPAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"nft","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct IBatchTransferNFT.Transfer[]","name":"_transfers","type":"tuple[]"}],"name":"batchTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"becomeOwner","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":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revokePendingOwner","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":"pendingOwner_","type":"address"}],"name":"setPendingOwner","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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506200001d33620000c5565b6004805460ff19169055620000737f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a7fe0e65c783ac33ff1c5ccf4399c9185066773921d6f8d050bf80781603021f0976200011a565b620000bf7f427da25fe773164f88948d3e215c94b6554e2ed5e5f203a821c9f2f6131cf75a7fe516f7ac9747f401e208331379a0bafe3c9c4dbb6501fd23bcef278f7ebaf4e56200011a565b62000548565b620000e46000620000de6000546001600160a01b031690565b62000165565b6001600160a01b03811615620001015762000101600082620001a8565b6200011781620001e660201b6200095b1760201c565b50565b600082815260026020526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b6200017c82826200024060201b620009b51760201c565b6000828152600360209081526040909120620001a391839062000a1d620002c5821b17901c565b505050565b620001bf8282620002e560201b62000a321760201c565b6000828152600360209081526040909120620001a391839062000ab862000389821b17901c565b600080546001600160a01b038381166001600160a01b031980841682178555600180549091169055604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008281526002602090815260408083206001600160a01b038516845290915290205460ff1615620002c15760008281526002602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45b5050565b6000620002dc836001600160a01b038416620003a0565b90505b92915050565b60008281526002602090815260408083206001600160a01b038516845290915290205460ff16620002c15760008281526002602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620003453390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000620002dc836001600160a01b038416620004a4565b6000818152600183016020526040812054801562000499576000620003c7600183620004f6565b8554909150600090620003dd90600190620004f6565b9050818114620004495760008660000182815481106200040157620004016200051c565b90600052602060002001549050808760000184815481106200042757620004276200051c565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806200045d576200045d62000532565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050620002df565b6000915050620002df565b6000818152600183016020526040812054620004ed57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620002df565b506000620002df565b6000828210156200051757634e487b7160e01b600052601160045260246000fd5b500390565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b61126c80620005586000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80638da5cb5b116100c3578063d47a1a271161007c578063d47a1a27146102c5578063d547741f146102d8578063e30c3978146102eb578063e63ab1e9146102fc578063f9dca98914610323578063fb1bb9de1461032b57600080fd5b80638da5cb5b1461024c5780639010d07c1461027157806391d1485414610284578063a217fddf14610297578063c42069ec1461029f578063ca15c873146102b257600080fd5b80633f4ba83a116101155780633f4ba83a146101fa5780635c975abb1461020257806367ab8a4e1461020d57806370a9525014610215578063715018a61461023c5780638456cb591461024457600080fd5b806301ffc9a714610152578063248a9ca31461017a57806325a00473146101ab5780632f2ff15d146101d257806336568abe146101e7575b600080fd5b610165610160366004611006565b610352565b60405190151581526020015b60405180910390f35b61019d610188366004611030565b60009081526002602052604090206001015490565b604051908152602001610171565b61019d7fe0e65c783ac33ff1c5ccf4399c9185066773921d6f8d050bf80781603021f09781565b6101e56101e0366004611065565b61037d565b005b6101e56101f5366004611065565b61040b565b6101e5610439565b60045460ff16610165565b6101e56104e9565b61019d7fe516f7ac9747f401e208331379a0bafe3c9c4dbb6501fd23bcef278f7ebaf4e581565b6101e5610549565b6101e561057e565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610171565b61025961027f366004611091565b61062c565b610165610292366004611065565b61064b565b61019d600081565b6101e56102ad3660046110b3565b610676565b61019d6102c0366004611030565b6106d4565b6101e56102d33660046110ce565b6106eb565b6101e56102e6366004611065565b610899565b6001546001600160a01b0316610259565b61019d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6101e561091c565b61019d7f427da25fe773164f88948d3e215c94b6554e2ed5e5f203a821c9f2f6131cf75a81565b60006001600160e01b0319821663d47a1a2760e01b1480610377575061037782610acd565b92915050565b818061039c57604051637c972d8960e11b815260040160405180910390fd5b60008381526002602052604081206001015490546001600160a01b031633148015906103cf57506103cd813361064b565b155b156103fb57604051633085a16360e11b8152600481018290523360248201526044015b60405180910390fd5b6104058484610af2565b50505050565b818061042a57604051637c972d8960e11b815260040160405180910390fd5b6104348383610b14565b505050565b7f427da25fe773164f88948d3e215c94b6554e2ed5e5f203a821c9f2f6131cf75a61046c6000546001600160a01b031690565b6001600160a01b0316336001600160a01b0316141580156104945750610492813361064b565b155b156104bb57604051633085a16360e11b8152600481018290523360248201526044016103f2565b60045460ff166104de57604051638e829c3b60e01b815260040160405180910390fd5b6104e6610b8e565b50565b6000546001600160a01b0316331461051457604051639f216c1360e01b815260040160405180910390fd5b6001546001600160a01b031661053d5760405163ecfad6bf60e01b815260040160405180910390fd5b6105476000610c21565b565b6000546001600160a01b0316331461057457604051639f216c1360e01b815260040160405180910390fd5b6105476000610c6b565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6105b16000546001600160a01b031690565b6001600160a01b0316336001600160a01b0316141580156105d957506105d7813361064b565b155b1561060057604051633085a16360e11b8152600481018290523360248201526044016103f2565b60045460ff161561062457604051631d5d4f7f60e01b815260040160405180910390fd5b6104e6610caa565b60008281526003602052604081206106449083610d25565b9392505050565b60009182526002602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6000546001600160a01b031633146106a157604051639f216c1360e01b815260040160405180910390fd5b6001546001600160a01b0316156106cb5760405163716b1fbf60e01b815260040160405180910390fd5b6104e681610c21565b600081815260036020526040812061037790610d31565b60045460ff16156107315760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103f2565b8060005b8181101561040557600084848381811061075157610751611143565b9050608002018036038101906107679190611159565b90506107768160000151610d3b565b156107f657805160208201516040808401519051632142170760e11b81523360048201526001600160a01b03928316602482015260448101919091529116906342842e0e906064015b600060405180830381600087803b1580156107d957600080fd5b505af11580156107ed573d6000803e3d6000fd5b50505050610890565b805161080190610dae565b15610869578051602082015160408084015160608501519151637921219560e11b81523360048201526001600160a01b0393841660248201526044810191909152606481019190915260a06084820152600060a482015291169063f242432a9060c4016107bf565b8051604051638ac031a160e01b81526001600160a01b0390911660048201526024016103f2565b50600101610735565b81806108b857604051637c972d8960e11b815260040160405180910390fd5b60008381526002602052604081206001015490546001600160a01b031633148015906108eb57506108e9813361064b565b155b1561091257604051633085a16360e11b8152600481018290523360248201526044016103f2565b6104058484610de4565b6001546001600160a01b031633141580610934575033155b1561095257604051633982680960e11b815260040160405180910390fd5b61054733610c6b565b600080546001600160a01b038381166001600160a01b031980841682178555600180549091169055604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109bf828261064b565b15610a195760008281526002602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45b5050565b6000610644836001600160a01b038416610e06565b610a3c828261064b565b610a195760008281526002602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610a743390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610644836001600160a01b038416610ef9565b60006001600160e01b0319821663f3353d7760e01b1480610377575061037782610f48565b610afc8282610a32565b60008281526003602052604090206104349082610ab8565b6001600160a01b0381163314610b845760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016103f2565b610a198282610de4565b60045460ff16610bd75760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016103f2565b6004805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600180546001600160a01b0319166001600160a01b0383169081179091556040517f68f49b346b94582a8b5f9d10e3fe3365318fe8f191ff8dce7c59c6cad06b02f590600090a250565b610c876000610c826000546001600160a01b031690565b610de4565b6001600160a01b03811615610ca157610ca1600082610af2565b6104e68161095b565b60045460ff1615610cf05760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103f2565b6004805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610c043390565b60006106448383610f62565b6000610377825490565b6040516301ffc9a760e01b81526380ac58cd60e01b60048201526000906001600160a01b038316906301ffc9a7906024015b602060405180830381865afa158015610d8a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061037791906111d9565b6040516301ffc9a760e01b8152636cdb3d1360e11b60048201526000906001600160a01b038316906301ffc9a790602401610d6d565b610dee82826109b5565b60008281526003602052604090206104349082610a1d565b60008181526001830160205260408120548015610eef576000610e2a6001836111fb565b8554909150600090610e3e906001906111fb565b9050818114610ea3576000866000018281548110610e5e57610e5e611143565b9060005260206000200154905080876000018481548110610e8157610e81611143565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080610eb457610eb4611220565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610377565b6000915050610377565b6000818152600183016020526040812054610f4057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610377565b506000610377565b6000610f5382610f8c565b80610377575061037782610fc1565b6000826000018281548110610f7957610f79611143565b9060005260206000200154905092915050565b60006001600160e01b031982166322d7505760e11b148061037757506301ffc9a760e01b6001600160e01b0319831614610377565b60006001600160e01b03198216635a05180f60e01b148061037757506103778260006001600160e01b03198216637965db0b60e01b1480610377575061037782610f8c565b60006020828403121561101857600080fd5b81356001600160e01b03198116811461064457600080fd5b60006020828403121561104257600080fd5b5035919050565b80356001600160a01b038116811461106057600080fd5b919050565b6000806040838503121561107857600080fd5b8235915061108860208401611049565b90509250929050565b600080604083850312156110a457600080fd5b50508035926020909101359150565b6000602082840312156110c557600080fd5b61064482611049565b600080602083850312156110e157600080fd5b823567ffffffffffffffff808211156110f957600080fd5b818501915085601f83011261110d57600080fd5b81358181111561111c57600080fd5b8660208260071b850101111561113157600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052603260045260246000fd5b60006080828403121561116b57600080fd5b6040516080810181811067ffffffffffffffff8211171561119c57634e487b7160e01b600052604160045260246000fd5b6040526111a883611049565b81526111b660208401611049565b602082015260408301356040820152606083013560608201528091505092915050565b6000602082840312156111eb57600080fd5b8151801515811461064457600080fd5b60008282101561121b57634e487b7160e01b600052601160045260246000fd5b500390565b634e487b7160e01b600052603160045260246000fdfea26469706673582212202a415a97bed9f0276b835b0de347c9b066da9e352e1cb583776b78114b4d931764736f6c634300080a0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80638da5cb5b116100c3578063d47a1a271161007c578063d47a1a27146102c5578063d547741f146102d8578063e30c3978146102eb578063e63ab1e9146102fc578063f9dca98914610323578063fb1bb9de1461032b57600080fd5b80638da5cb5b1461024c5780639010d07c1461027157806391d1485414610284578063a217fddf14610297578063c42069ec1461029f578063ca15c873146102b257600080fd5b80633f4ba83a116101155780633f4ba83a146101fa5780635c975abb1461020257806367ab8a4e1461020d57806370a9525014610215578063715018a61461023c5780638456cb591461024457600080fd5b806301ffc9a714610152578063248a9ca31461017a57806325a00473146101ab5780632f2ff15d146101d257806336568abe146101e7575b600080fd5b610165610160366004611006565b610352565b60405190151581526020015b60405180910390f35b61019d610188366004611030565b60009081526002602052604090206001015490565b604051908152602001610171565b61019d7fe0e65c783ac33ff1c5ccf4399c9185066773921d6f8d050bf80781603021f09781565b6101e56101e0366004611065565b61037d565b005b6101e56101f5366004611065565b61040b565b6101e5610439565b60045460ff16610165565b6101e56104e9565b61019d7fe516f7ac9747f401e208331379a0bafe3c9c4dbb6501fd23bcef278f7ebaf4e581565b6101e5610549565b6101e561057e565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610171565b61025961027f366004611091565b61062c565b610165610292366004611065565b61064b565b61019d600081565b6101e56102ad3660046110b3565b610676565b61019d6102c0366004611030565b6106d4565b6101e56102d33660046110ce565b6106eb565b6101e56102e6366004611065565b610899565b6001546001600160a01b0316610259565b61019d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6101e561091c565b61019d7f427da25fe773164f88948d3e215c94b6554e2ed5e5f203a821c9f2f6131cf75a81565b60006001600160e01b0319821663d47a1a2760e01b1480610377575061037782610acd565b92915050565b818061039c57604051637c972d8960e11b815260040160405180910390fd5b60008381526002602052604081206001015490546001600160a01b031633148015906103cf57506103cd813361064b565b155b156103fb57604051633085a16360e11b8152600481018290523360248201526044015b60405180910390fd5b6104058484610af2565b50505050565b818061042a57604051637c972d8960e11b815260040160405180910390fd5b6104348383610b14565b505050565b7f427da25fe773164f88948d3e215c94b6554e2ed5e5f203a821c9f2f6131cf75a61046c6000546001600160a01b031690565b6001600160a01b0316336001600160a01b0316141580156104945750610492813361064b565b155b156104bb57604051633085a16360e11b8152600481018290523360248201526044016103f2565b60045460ff166104de57604051638e829c3b60e01b815260040160405180910390fd5b6104e6610b8e565b50565b6000546001600160a01b0316331461051457604051639f216c1360e01b815260040160405180910390fd5b6001546001600160a01b031661053d5760405163ecfad6bf60e01b815260040160405180910390fd5b6105476000610c21565b565b6000546001600160a01b0316331461057457604051639f216c1360e01b815260040160405180910390fd5b6105476000610c6b565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6105b16000546001600160a01b031690565b6001600160a01b0316336001600160a01b0316141580156105d957506105d7813361064b565b155b1561060057604051633085a16360e11b8152600481018290523360248201526044016103f2565b60045460ff161561062457604051631d5d4f7f60e01b815260040160405180910390fd5b6104e6610caa565b60008281526003602052604081206106449083610d25565b9392505050565b60009182526002602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6000546001600160a01b031633146106a157604051639f216c1360e01b815260040160405180910390fd5b6001546001600160a01b0316156106cb5760405163716b1fbf60e01b815260040160405180910390fd5b6104e681610c21565b600081815260036020526040812061037790610d31565b60045460ff16156107315760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103f2565b8060005b8181101561040557600084848381811061075157610751611143565b9050608002018036038101906107679190611159565b90506107768160000151610d3b565b156107f657805160208201516040808401519051632142170760e11b81523360048201526001600160a01b03928316602482015260448101919091529116906342842e0e906064015b600060405180830381600087803b1580156107d957600080fd5b505af11580156107ed573d6000803e3d6000fd5b50505050610890565b805161080190610dae565b15610869578051602082015160408084015160608501519151637921219560e11b81523360048201526001600160a01b0393841660248201526044810191909152606481019190915260a06084820152600060a482015291169063f242432a9060c4016107bf565b8051604051638ac031a160e01b81526001600160a01b0390911660048201526024016103f2565b50600101610735565b81806108b857604051637c972d8960e11b815260040160405180910390fd5b60008381526002602052604081206001015490546001600160a01b031633148015906108eb57506108e9813361064b565b155b1561091257604051633085a16360e11b8152600481018290523360248201526044016103f2565b6104058484610de4565b6001546001600160a01b031633141580610934575033155b1561095257604051633982680960e11b815260040160405180910390fd5b61054733610c6b565b600080546001600160a01b038381166001600160a01b031980841682178555600180549091169055604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109bf828261064b565b15610a195760008281526002602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45b5050565b6000610644836001600160a01b038416610e06565b610a3c828261064b565b610a195760008281526002602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610a743390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610644836001600160a01b038416610ef9565b60006001600160e01b0319821663f3353d7760e01b1480610377575061037782610f48565b610afc8282610a32565b60008281526003602052604090206104349082610ab8565b6001600160a01b0381163314610b845760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016103f2565b610a198282610de4565b60045460ff16610bd75760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016103f2565b6004805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600180546001600160a01b0319166001600160a01b0383169081179091556040517f68f49b346b94582a8b5f9d10e3fe3365318fe8f191ff8dce7c59c6cad06b02f590600090a250565b610c876000610c826000546001600160a01b031690565b610de4565b6001600160a01b03811615610ca157610ca1600082610af2565b6104e68161095b565b60045460ff1615610cf05760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103f2565b6004805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610c043390565b60006106448383610f62565b6000610377825490565b6040516301ffc9a760e01b81526380ac58cd60e01b60048201526000906001600160a01b038316906301ffc9a7906024015b602060405180830381865afa158015610d8a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061037791906111d9565b6040516301ffc9a760e01b8152636cdb3d1360e11b60048201526000906001600160a01b038316906301ffc9a790602401610d6d565b610dee82826109b5565b60008281526003602052604090206104349082610a1d565b60008181526001830160205260408120548015610eef576000610e2a6001836111fb565b8554909150600090610e3e906001906111fb565b9050818114610ea3576000866000018281548110610e5e57610e5e611143565b9060005260206000200154905080876000018481548110610e8157610e81611143565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080610eb457610eb4611220565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610377565b6000915050610377565b6000818152600183016020526040812054610f4057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610377565b506000610377565b6000610f5382610f8c565b80610377575061037782610fc1565b6000826000018281548110610f7957610f79611143565b9060005260206000200154905092915050565b60006001600160e01b031982166322d7505760e11b148061037757506301ffc9a760e01b6001600160e01b0319831614610377565b60006001600160e01b03198216635a05180f60e01b148061037757506103778260006001600160e01b03198216637965db0b60e01b1480610377575061037782610f8c565b60006020828403121561101857600080fd5b81356001600160e01b03198116811461064457600080fd5b60006020828403121561104257600080fd5b5035919050565b80356001600160a01b038116811461106057600080fd5b919050565b6000806040838503121561107857600080fd5b8235915061108860208401611049565b90509250929050565b600080604083850312156110a457600080fd5b50508035926020909101359150565b6000602082840312156110c557600080fd5b61064482611049565b600080602083850312156110e157600080fd5b823567ffffffffffffffff808211156110f957600080fd5b818501915085601f83011261110d57600080fd5b81358181111561111c57600080fd5b8660208260071b850101111561113157600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052603260045260246000fd5b60006080828403121561116b57600080fd5b6040516080810181811067ffffffffffffffff8211171561119c57634e487b7160e01b600052604160045260246000fd5b6040526111a883611049565b81526111b660208401611049565b602082015260408301356040820152606083013560608201528091505092915050565b6000602082840312156111eb57600080fd5b8151801515811461064457600080fd5b60008282101561121b57634e487b7160e01b600052601160045260246000fd5b500390565b634e487b7160e01b600052603160045260246000fdfea26469706673582212202a415a97bed9f0276b835b0de347c9b066da9e352e1cb583776b78114b4d931764736f6c634300080a0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 29 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.