false
true
0

Contract Address Details

0x8dd96f634AFc066E72d9461F22Ad6ffD9BF51123

Contract Name
BulkTransferHelper
Creator
0x369719–0ce369 at 0xe939f5–7d0e21
Balance
0 tPLS
Tokens
Fetching tokens...
Transactions
Fetching transactions...
Transfers
Fetching transfers...
Gas Used
Fetching gas used...
Last Balance Update
25348794
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
BulkTransferHelper




Optimization enabled
true
Compiler version
v0.8.18+commit.87f61d96




Optimization runs
1000
EVM Version
default




Verified at
2023-09-01T18:38:56.278171Z

contracts/BulkTransferHelper.sol

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.18;

/*                                                                                hhhhhhhhhhhhhhhhhp
                                                                                  aaaaaaaaaaaaaaaaaaap
                                                                                  f       haaaaaaaaaaap
                                                                                            iaaaaaaaaaah
                                                                                  aahhp        fhaaaaaaah
                                                                                  aaaaa           haaahfiau
                                                                                  aaaaap               aaaap
  aaap     pppp                                                                   aaaahf            ahaaaaaah
   hhp     ihh                        p                anfnp                      hhh             ihhpaaaaaaah
   hhh      hh    aaffhap      ahfff h  hhh    ihhp  phh                                         hhaaaaaaaaaaaap
   hhhp    ihh  phh     hhh  ihhh       hhh     hhh  hhh                                     apahaaaaaaaaaaaaaaah
   hhhffhhhhhh ihh      ihhp ihh        hhh     hhh   hhhhp                                 iaaaaaaaaaaaaaaaaaaaah
  ihhh     ihh hhh       hhp ihh        hhh     hhh     fhhhp                                iaaaaaaaaaaaaaaaaaaaah
  ihhp     ihh ihhp     ihh   hhh       ihh    ihhh p     fhhp                                haaaaaaaaaaaaaaaaaaaaap
  phhp     ihhp ffhhpcsahf     fhhhpp   fhhhenfihhhphp     hh                                  haaaaaaaaaaaaaaaaaaaahh
           ffff                    f  f          ffffffhnfff                             hhp    fhaaaaaaaaaaaaaaaaaahhh
                                                                                   a     haap      fhaaaaaaaaaaaaaaahhhf
               hhhhfffhhhp        s                                sanup          iaahp     fh        fhhfffhff       a
               ihhh     hhh   phf  fihp    aphfffhh hhhh   ihhhf shp                haahu                    apphhaahh
               ihhh     hhh ihh      ihh  hhh       ihh     hhp  ihh                                 ahhpaapaaaaaaaah
               ihhp    ahhf hh        hhpihh        ihh     ihp   hhhhp                   haaaaaa apaaaaaaaaaaaaaaah
               ihhppaphff   hhp       hhhihhp       ihh     ihp    ffhhhp                   fhaaaaaaaaaaaaaaaaaaaah
               ihhh         ihhp     ph   hhhp      ihh     hhp i     fhhh                     aaaaaaaaaaaaaaaaaah
               ihh           ffhhhhhf      fhhhp    fhhhpaefhhhpip     ph                      aaaaaaaaaaaaaaaah
               hhh                            f  fff         ffffhhhnfff                      iaaaaaaaaaaaaaaah
              ahhh                                                                          ahhaaaaaaaaaaaaaah
                                                                                        aphaaaaaaaaaaaaaaaaa
                                                                                     ahaaaaaaaaaaaaaaaaaaah
                                                                                   paaaaaaaaaaaaaaaaaaaaah
                                                                                  aaaaaaaaaaaaaaaaaaaaaah
                                                                                  aaaaaaaaaaaaaaaaaaaah
                                                                                  aaaaaaaaaaaaaaaaaaah
                                                                                  aaaaaaaaaaaaaaaaa*/

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";

/**
    @title Helper to bulk transfer ERC721 and ERC1155 NFTs.
*/
contract BulkTransferHelper {
    enum TokenType {
        ERC721,
        ERC1155
    }

    struct TransferRequest {
        address assectContract;
        uint256 tokenId;
        address recipient;
        uint256 amount; // 0 for ERC721
        bytes data;
    }

    /**
        Performs safeTransferFrom for all specified NFTs.
        Approval for this contract to transfer all specified tokens must be given before calling this.
    */
    function safeTransfer(TransferRequest[] memory requests) external {
        for (uint256 index = 0; index < requests.length;) {
            TransferRequest memory request = requests[index];
            if(request.amount == 0)
                IERC721(request.assectContract).safeTransferFrom(msg.sender, request.recipient, request.tokenId, request.data);
            else {
                IERC1155(request.assectContract).safeTransferFrom(msg.sender, request.recipient, request.tokenId, request.amount, request.data);
            }
            unchecked { ++index; }
        }
    }
}

        

@openzeppelin/contracts/utils/introspection/IERC165.sol

// 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);
}
          

@openzeppelin/contracts/token/ERC1155/IERC1155.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (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 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;
}
          

@openzeppelin/contracts/token/ERC721/IERC721.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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);
}
          

Compiler Settings

{"viaIR":true,"outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers"]}},"optimizer":{"runs":1000,"enabled":true},"libraries":{}}
              

Contract ABI

[{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"safeTransfer","inputs":[{"type":"tuple[]","name":"requests","internalType":"struct BulkTransferHelper.TransferRequest[]","components":[{"type":"address","name":"assectContract","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"},{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"bytes","name":"data","internalType":"bytes"}]}]}]
              

Contract Creation Code

0x6080806040523461001657610459908161001c8239f35b600080fdfe608060409080825260048036101561001657600080fd5b600092833560e01c63ae8d8d791461002d57600080fd5b3461036d5760208060031936011261036957823567ffffffffffffffff80821161036557366023830112156103655781850135918183116103525760059183831b9361007b8686018a61039b565b885284880190602480958401019236841161034e579081868c98979695949301925b848410610238575050505050835b87518110156102345780821b8801840151606081015180610183575073ffffffffffffffffffffffffffffffffffffffff90818151169188820151168682015192608080930151813b1561017f57898c61014a8a9383978f51998a98899788967fb88d4fde00000000000000000000000000000000000000000000000000000000885233908801528601526044850152606484015260848301906103e3565b03925af18015610175579060019291610166575b505b016100ab565b61016f90610371565b3861015e565b87513d88823e3d90fd5b8980fd5b73ffffffffffffffffffffffffffffffffffffffff8083511690898401511690608088850151940151813b1561017f57898c61020b8a9383978f51998a98899788967ff242432a00000000000000000000000000000000000000000000000000000000885233908801528601526044850152606484015260a0608484015260a48301906103e3565b03925af18015610175579060019291610225575b50610160565b61022e90610371565b3861021f565b8480f35b909192809495969798503583811161034a5782019060a090816023198436030112610346578a5191820182811086821117610334578b5261027a8984016103bd565b8252604492838101358b840152610293606482016103bd565b8c8401526084810135606084015260a4810135908682116103305701913660438401121561032c578983013593868511610319578f8c916102df8f5193601f19601f8a0116018461039b565b8683523681888801011161031557868e9788979288930183860137830101526080820152815201930191908b979695949361009d565b5080fd5b50898f60418f634e487b7160e01b835252fd5b8e80fd5b8f80fd5b898f60418f634e487b7160e01b835252fd5b8d80fd5b8c80fd5b8a80fd5b602488604188634e487b7160e01b835252fd5b8680fd5b8480fd5b8380fd5b67ffffffffffffffff811161038557604052565b634e487b7160e01b600052604160045260246000fd5b90601f8019910116810190811067ffffffffffffffff82111761038557604052565b359073ffffffffffffffffffffffffffffffffffffffff821682036103de57565b600080fd5b919082519283825260005b84811061040f575050826000602080949584010152601f8019910116010190565b6020818301810151848301820152016103ee56fea2646970667358221220c4ad23dce4eb716d9ce5460f94eed94e1a49657fe536bcf222b2598c0f2a4b3164736f6c63430008120033

Deployed ByteCode

0x608060409080825260048036101561001657600080fd5b600092833560e01c63ae8d8d791461002d57600080fd5b3461036d5760208060031936011261036957823567ffffffffffffffff80821161036557366023830112156103655781850135918183116103525760059183831b9361007b8686018a61039b565b885284880190602480958401019236841161034e579081868c98979695949301925b848410610238575050505050835b87518110156102345780821b8801840151606081015180610183575073ffffffffffffffffffffffffffffffffffffffff90818151169188820151168682015192608080930151813b1561017f57898c61014a8a9383978f51998a98899788967fb88d4fde00000000000000000000000000000000000000000000000000000000885233908801528601526044850152606484015260848301906103e3565b03925af18015610175579060019291610166575b505b016100ab565b61016f90610371565b3861015e565b87513d88823e3d90fd5b8980fd5b73ffffffffffffffffffffffffffffffffffffffff8083511690898401511690608088850151940151813b1561017f57898c61020b8a9383978f51998a98899788967ff242432a00000000000000000000000000000000000000000000000000000000885233908801528601526044850152606484015260a0608484015260a48301906103e3565b03925af18015610175579060019291610225575b50610160565b61022e90610371565b3861021f565b8480f35b909192809495969798503583811161034a5782019060a090816023198436030112610346578a5191820182811086821117610334578b5261027a8984016103bd565b8252604492838101358b840152610293606482016103bd565b8c8401526084810135606084015260a4810135908682116103305701913660438401121561032c578983013593868511610319578f8c916102df8f5193601f19601f8a0116018461039b565b8683523681888801011161031557868e9788979288930183860137830101526080820152815201930191908b979695949361009d565b5080fd5b50898f60418f634e487b7160e01b835252fd5b8e80fd5b8f80fd5b898f60418f634e487b7160e01b835252fd5b8d80fd5b8c80fd5b8a80fd5b602488604188634e487b7160e01b835252fd5b8680fd5b8480fd5b8380fd5b67ffffffffffffffff811161038557604052565b634e487b7160e01b600052604160045260246000fd5b90601f8019910116810190811067ffffffffffffffff82111761038557604052565b359073ffffffffffffffffffffffffffffffffffffffff821682036103de57565b600080fd5b919082519283825260005b84811061040f575050826000602080949584010152601f8019910116010190565b6020818301810151848301820152016103ee56fea2646970667358221220c4ad23dce4eb716d9ce5460f94eed94e1a49657fe536bcf222b2598c0f2a4b3164736f6c63430008120033