Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 196 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Batch Transfer F... | 17211368 | 674 days ago | IN | 0 ETH | 0.02475086 | ||||
Batch Transfer F... | 17209710 | 674 days ago | IN | 0 ETH | 0.01683889 | ||||
Batch Transfer F... | 17209688 | 674 days ago | IN | 0 ETH | 0.01362916 | ||||
Batch Transfer F... | 17209335 | 674 days ago | IN | 0 ETH | 0.01720405 | ||||
Batch Transfer F... | 17209213 | 674 days ago | IN | 0 ETH | 0.02152141 | ||||
Batch Transfer F... | 17209112 | 674 days ago | IN | 0 ETH | 0.01152293 | ||||
Batch Transfer F... | 17208872 | 674 days ago | IN | 0 ETH | 0.00940413 | ||||
Batch Transfer F... | 17208620 | 674 days ago | IN | 0 ETH | 0.00779217 | ||||
Batch Transfer F... | 17208573 | 675 days ago | IN | 0 ETH | 0.00742233 | ||||
Batch Transfer F... | 17208501 | 675 days ago | IN | 0 ETH | 0.00860888 | ||||
Batch Transfer F... | 17208376 | 675 days ago | IN | 0 ETH | 0.00745946 | ||||
Batch Transfer F... | 17208117 | 675 days ago | IN | 0 ETH | 0.00992806 | ||||
Batch Transfer F... | 17208045 | 675 days ago | IN | 0 ETH | 0.01026766 | ||||
Batch Transfer F... | 17207765 | 675 days ago | IN | 0 ETH | 0.00588126 | ||||
Batch Transfer F... | 17207716 | 675 days ago | IN | 0 ETH | 0.00690694 | ||||
Batch Transfer F... | 17207310 | 675 days ago | IN | 0 ETH | 0.00763011 | ||||
Batch Transfer F... | 17206949 | 675 days ago | IN | 0 ETH | 0.01190988 | ||||
Batch Transfer F... | 17206799 | 675 days ago | IN | 0 ETH | 0.01550723 | ||||
Batch Transfer F... | 17206682 | 675 days ago | IN | 0 ETH | 0.0080561 | ||||
Batch Transfer F... | 17206616 | 675 days ago | IN | 0 ETH | 0.00979286 | ||||
Batch Transfer F... | 17206589 | 675 days ago | IN | 0 ETH | 0.00728579 | ||||
Batch Transfer F... | 17206533 | 675 days ago | IN | 0 ETH | 0.00773541 | ||||
Batch Transfer F... | 17206506 | 675 days ago | IN | 0 ETH | 0.02608982 | ||||
Batch Transfer F... | 17206337 | 675 days ago | IN | 0 ETH | 0.01021865 | ||||
Batch Transfer F... | 17206044 | 675 days ago | IN | 0 ETH | 0.01820824 |
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers. Name tag integration is not available in advanced view.
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
||||
---|---|---|---|---|---|---|---|---|
Transfer From | 17211368 | 674 days ago | 0 ETH | |||||
Transfer From | 17211368 | 674 days ago | 0 ETH | |||||
Transfer From | 17211368 | 674 days ago | 0 ETH | |||||
Transfer From | 17211368 | 674 days ago | 0 ETH | |||||
Transfer From | 17209710 | 674 days ago | 0 ETH | |||||
Transfer From | 17209710 | 674 days ago | 0 ETH | |||||
Transfer From | 17209710 | 674 days ago | 0 ETH | |||||
Transfer From | 17209688 | 674 days ago | 0 ETH | |||||
Transfer From | 17209688 | 674 days ago | 0 ETH | |||||
Transfer From | 17209335 | 674 days ago | 0 ETH | |||||
Transfer From | 17209335 | 674 days ago | 0 ETH | |||||
Transfer From | 17209213 | 674 days ago | 0 ETH | |||||
Transfer From | 17209213 | 674 days ago | 0 ETH | |||||
Transfer From | 17209213 | 674 days ago | 0 ETH | |||||
Transfer From | 17209112 | 674 days ago | 0 ETH | |||||
Transfer From | 17209112 | 674 days ago | 0 ETH | |||||
Transfer From | 17208872 | 674 days ago | 0 ETH | |||||
Transfer From | 17208872 | 674 days ago | 0 ETH | |||||
Transfer From | 17208620 | 674 days ago | 0 ETH | |||||
Transfer From | 17208620 | 674 days ago | 0 ETH | |||||
Transfer From | 17208573 | 675 days ago | 0 ETH | |||||
Transfer From | 17208573 | 675 days ago | 0 ETH | |||||
Transfer From | 17208501 | 675 days ago | 0 ETH | |||||
Transfer From | 17208501 | 675 days ago | 0 ETH | |||||
Transfer From | 17208376 | 675 days ago | 0 ETH |
Loading...
Loading
Contract Name:
ERC721BatchTransfer
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 9999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Copyright 2023 PROOF Holdings Inc pragma solidity ^0.8.15; import {IERC721} from "openzeppelin-contracts/token/ERC721/IERC721.sol"; /** * @notice Helper contract to facilitate batch transfers of ERC721 tokens. */ contract ERC721BatchTransfer { /** * @notice Transfers a batch of tokens owned by the caller to a single receiver. */ function batchTransferFromSingleReceiver(IERC721 token, address to, uint256[] calldata tokenIds) external { for (uint256 i; i < tokenIds.length; ++i) { token.transferFrom(msg.sender, to, tokenIds[i]); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (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`. * * 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; /** * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// 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); }
{ "remappings": [ "@divergencetech/ethier/=/home/dave/.cache/bazel/_bazel_dave/b9a57168317213f9241a484d2ee2d038/external/ethier_0-55-0/", "@openzeppelin-4-7-0/=/home/dave/.cache/bazel/_bazel_dave/b9a57168317213f9241a484d2ee2d038/external/openzeppelin-contracts_4-7-0_exact_remap/", "@openzeppelin-4.7/=/home/dave/.cache/bazel/_bazel_dave/b9a57168317213f9241a484d2ee2d038/external/openzeppelin-contracts_4-7-0_exact_remap/", "@openzeppelin/=/home/dave/.cache/bazel/_bazel_dave/b9a57168317213f9241a484d2ee2d038/external/openzeppelin-contracts_4-8-1/", "ERC721A/=/home/dave/.cache/bazel/_bazel_dave/b9a57168317213f9241a484d2ee2d038/external/ERC721A_4-2-3/contracts/", "ERC721A_root/=/home/dave/.cache/bazel/_bazel_dave/b9a57168317213f9241a484d2ee2d038/external/ERC721A_4-2-3/", "artblocks-contracts/=/home/dave/.cache/bazel/_bazel_dave/b9a57168317213f9241a484d2ee2d038/external/artblocks-contracts_fa1dc466/contracts/", "artblocks-contracts_root/=/home/dave/.cache/bazel/_bazel_dave/b9a57168317213f9241a484d2ee2d038/external/artblocks-contracts_fa1dc466/", "delegation-registry/=/home/dave/.cache/bazel/_bazel_dave/b9a57168317213f9241a484d2ee2d038/external/delegation-registry_2d1a158b/src/", "delegation-registry_root/=/home/dave/.cache/bazel/_bazel_dave/b9a57168317213f9241a484d2ee2d038/external/delegation-registry_2d1a158b/", "ds-test/=/home/dave/.cache/bazel/_bazel_dave/b9a57168317213f9241a484d2ee2d038/external/ds-test_013e6c64/src/", "ds-test_root/=/home/dave/.cache/bazel/_bazel_dave/b9a57168317213f9241a484d2ee2d038/external/ds-test_013e6c64/", "erc721a/=/home/dave/.cache/bazel/_bazel_dave/b9a57168317213f9241a484d2ee2d038/external/ERC721A_4-2-3/", "ethier/=/home/dave/.cache/bazel/_bazel_dave/b9a57168317213f9241a484d2ee2d038/external/ethier_0-55-0/contracts/", "ethier_root/=/home/dave/.cache/bazel/_bazel_dave/b9a57168317213f9241a484d2ee2d038/external/ethier_0-55-0/", "forge-std/=/home/dave/.cache/bazel/_bazel_dave/b9a57168317213f9241a484d2ee2d038/external/forge-std_1-4-0/src/", "openzeppelin-contracts-4-7-0/=/home/dave/.cache/bazel/_bazel_dave/b9a57168317213f9241a484d2ee2d038/external/openzeppelin-contracts_4-7-0_exact_remap/contracts/", "openzeppelin-contracts/=/home/dave/.cache/bazel/_bazel_dave/b9a57168317213f9241a484d2ee2d038/external/openzeppelin-contracts_4-8-1/contracts/", "openzeppelin-contracts/contracts/=/home/dave/.cache/bazel/_bazel_dave/b9a57168317213f9241a484d2ee2d038/external/openzeppelin-contracts_4-8-1/contracts/", "openzeppelin-contracts_root-4-7-0/=/home/dave/.cache/bazel/_bazel_dave/b9a57168317213f9241a484d2ee2d038/external/openzeppelin-contracts_4-7-0_exact_remap/", "openzeppelin-contracts_root/=/home/dave/.cache/bazel/_bazel_dave/b9a57168317213f9241a484d2ee2d038/external/openzeppelin-contracts_4-8-1/", "operator-filter-registry/src/=/home/dave/.cache/bazel/_bazel_dave/b9a57168317213f9241a484d2ee2d038/external/operator-filter-registry_1-4-1/src/", "operator-filter-registry_root/=/home/dave/.cache/bazel/_bazel_dave/b9a57168317213f9241a484d2ee2d038/external/operator-filter-registry_1-4-1/", "proof/artblocks/=/home/dave/proof/proof-seller/contracts/artblocks/src/", "proof/constants/=/home/dave/proof/proof-seller/contracts/constants/src/", "proof/redemption/=/home/dave/proof/proof-seller/contracts/redemption/src/", "proof/sellers/=/home/dave/proof/proof-seller/contracts/sellers/src/" ], "optimizer": { "enabled": true, "runs": 9999 }, "metadata": { "bytecodeHash": "ipfs" }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "london", "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract IERC721","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"batchTransferFromSingleReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b506102aa806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c806338e012d914610030575b600080fd5b61004361003e366004610151565b610045565b005b60005b81811015610125578473ffffffffffffffffffffffffffffffffffffffff166323b872dd3386868686818110610080576100806101e6565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b16815273ffffffffffffffffffffffffffffffffffffffff958616600482015294909316602485015250602090910201356044820152606401600060405180830381600087803b1580156100fc57600080fd5b505af1158015610110573d6000803e3d6000fd5b505050508061011e90610215565b9050610048565b5050505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461014e57600080fd5b50565b6000806000806060858703121561016757600080fd5b84356101728161012c565b935060208501356101828161012c565b9250604085013567ffffffffffffffff8082111561019f57600080fd5b818701915087601f8301126101b357600080fd5b8135818111156101c257600080fd5b8860208260051b85010111156101d757600080fd5b95989497505060200194505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361026d577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b506001019056fea26469706673582212200d29299149e63a6be24c7996fde00b5cbd5d45482876c90957c8090e60a4cd3064736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061002b5760003560e01c806338e012d914610030575b600080fd5b61004361003e366004610151565b610045565b005b60005b81811015610125578473ffffffffffffffffffffffffffffffffffffffff166323b872dd3386868686818110610080576100806101e6565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b16815273ffffffffffffffffffffffffffffffffffffffff958616600482015294909316602485015250602090910201356044820152606401600060405180830381600087803b1580156100fc57600080fd5b505af1158015610110573d6000803e3d6000fd5b505050508061011e90610215565b9050610048565b5050505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461014e57600080fd5b50565b6000806000806060858703121561016757600080fd5b84356101728161012c565b935060208501356101828161012c565b9250604085013567ffffffffffffffff8082111561019f57600080fd5b818701915087601f8301126101b357600080fd5b8135818111156101c257600080fd5b8860208260051b85010111156101d757600080fd5b95989497505060200194505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361026d577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b506001019056fea26469706673582212200d29299149e63a6be24c7996fde00b5cbd5d45482876c90957c8090e60a4cd3064736f6c63430008110033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.