POL Price: $0.579012 (-2.03%)
Gas: 45.6 GWei
 

Overview

POL Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 POL

POL Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Erc1155send569321832024-05-13 20:06:06202 days ago1715630766IN
0x1197715e...BF53B8a1E
100 POL0.1213226630.49904289
Erc1155send569266812024-05-13 16:37:23202 days ago1715618243IN
0x1197715e...BF53B8a1E
100 POL0.1917939930.00000066
Set Fee513553132023-12-20 16:45:12347 days ago1703090712IN
0x1197715e...BF53B8a1E
0 POL0.01135929434.24029727
Set Fee513553082023-12-20 16:45:00347 days ago1703090700IN
0x1197715e...BF53B8a1E
0 POL0.01299633448.78384899
Erc721send508899102023-12-08 12:22:56359 days ago1702038176IN
0x1197715e...BF53B8a1E
250 POL0.66085919758.80759905
Erc721send504206452023-11-26 17:33:58371 days ago1701020038IN
0x1197715e...BF53B8a1E
250 POL3.47792268150.25872409
Erc721send504184842023-11-26 16:16:50371 days ago1701015410IN
0x1197715e...BF53B8a1E
250 POL4.30427767177.93592471
Erc721send504179862023-11-26 15:58:37371 days ago1701014317IN
0x1197715e...BF53B8a1E
250 POL4.18666513161.29989744
Erc721send474993422023-09-13 16:56:09445 days ago1694624169IN
0x1197715e...BF53B8a1E
250 POL0.06193263123.48394408
Erc721send474993232023-09-13 16:55:29445 days ago1694624129IN
0x1197715e...BF53B8a1E
250 POL0.05489285119.81520903
Erc721send444820172023-06-29 15:43:09521 days ago1688053389IN
0x1197715e...BF53B8a1E
250 POL0.01765043180.31075379
Set Fee268624952022-04-07 19:12:23969 days ago1649358743IN
0x1197715e...BF53B8a1E
0 POL0.0010135635
Set Fee268621322022-04-07 18:57:45969 days ago1649357865IN
0x1197715e...BF53B8a1E
0 POL0.0010127235
Set Fee268606702022-04-07 18:03:13969 days ago1649354593IN
0x1197715e...BF53B8a1E
0 POL0.0016120635

Latest 9 internal transactions

Parent Transaction Hash Block From To
569321832024-05-13 20:06:06202 days ago1715630766
0x1197715e...BF53B8a1E
100 POL
569266812024-05-13 16:37:23202 days ago1715618243
0x1197715e...BF53B8a1E
100 POL
508899102023-12-08 12:22:56359 days ago1702038176
0x1197715e...BF53B8a1E
250 POL
504206452023-11-26 17:33:58371 days ago1701020038
0x1197715e...BF53B8a1E
250 POL
504184842023-11-26 16:16:50371 days ago1701015410
0x1197715e...BF53B8a1E
250 POL
504179862023-11-26 15:58:37371 days ago1701014317
0x1197715e...BF53B8a1E
250 POL
474993422023-09-13 16:56:09445 days ago1694624169
0x1197715e...BF53B8a1E
250 POL
474993232023-09-13 16:55:29445 days ago1694624129
0x1197715e...BF53B8a1E
250 POL
444820172023-06-29 15:43:09521 days ago1688053389
0x1197715e...BF53B8a1E
250 POL
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
BulkSend

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 1000000 runs

Other Settings:
default evmVersion
File 1 of 9 : BulkSend.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";

contract BulkSend is Ownable {
    using SafeERC20 for IERC20;

    struct ERC20TransferTask {
        address to;
        uint256 amount;
    }

    struct ERC721TransferTask {
        address to;
        uint256 id;
    }

    struct ERC1155TransferTask {
        address to;
        uint256 id;
        uint256 amount;
    }

    uint256 public fee;

    function setFee(uint256 _fee) external onlyOwner {
        fee = _fee;
    }

    function erc20send(IERC20 token, ERC20TransferTask[] calldata tasks) external payable {
        redirectFee();
        for(uint256 i=0; i<tasks.length; i++) {
            ERC20TransferTask memory task = tasks[i];
            token.safeTransferFrom(msg.sender, task.to, task.amount);
        }
    }

    function erc721send(IERC721 token, ERC721TransferTask[] calldata tasks) external payable {
        redirectFee();
        for(uint256 i=0; i<tasks.length; i++) {
            ERC721TransferTask memory task = tasks[i];
            token.safeTransferFrom(msg.sender, task.to, task.id);
        }
    }

    function erc1155send(IERC1155 token, ERC1155TransferTask[] calldata tasks) external payable {
        redirectFee();
        for(uint256 i=0; i<tasks.length; i++) {
            ERC1155TransferTask memory task = tasks[i];
            token.safeTransferFrom(msg.sender, task.to, task.id, task.amount, bytes(""));
        }
    }

    function redirectFee() internal {
        if(fee > 0) {
            require(msg.value == fee, "Wrong fee");
            payable(owner()).transfer(fee);
        }
        
    }
}

File 2 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev 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.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * 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 Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev 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 onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 4 of 9 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 5 of 9 : IERC721.sol
// 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;
}

File 6 of 9 : IERC1155.sol
// 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;
}

File 7 of 9 : Context.sol
// 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;
    }
}

File 8 of 9 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 9 of 9 : 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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 1000000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"contract IERC1155","name":"token","type":"address"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct BulkSend.ERC1155TransferTask[]","name":"tasks","type":"tuple[]"}],"name":"erc1155send","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct BulkSend.ERC20TransferTask[]","name":"tasks","type":"tuple[]"}],"name":"erc20send","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract IERC721","name":"token","type":"address"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"internalType":"struct BulkSend.ERC721TransferTask[]","name":"tasks","type":"tuple[]"}],"name":"erc721send","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b5061002d61002261003260201b60201c565b61003a60201b60201c565b6100fe565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6117098061010d6000396000f3fe60806040526004361061007b5760003560e01c80638da5cb5b1161004e5780638da5cb5b146100f8578063d53828ff14610123578063ddca3f431461013f578063f2fde38b1461016a5761007b565b80635dab9cc21461008057806369fe0e2d1461009c5780636edccc19146100c5578063715018a6146100e1575b600080fd5b61009a60048036038101906100959190610b76565b610193565b005b3480156100a857600080fd5b506100c360048036038101906100be9190610c0c565b610225565b005b6100df60048036038101906100da9190610ccd565b6102ab565b005b3480156100ed57600080fd5b506100f661037f565b005b34801561010457600080fd5b5061010d610407565b60405161011a9190610d3c565b60405180910390f35b61013d60048036038101906101389190610deb565b610430565b005b34801561014b57600080fd5b5061015461051b565b6040516101619190610e5a565b60405180910390f35b34801561017657600080fd5b50610191600480360381019061018c9190610ea1565b610521565b005b61019b610619565b60005b8282905081101561021f5760008383838181106101be576101bd610ece565b5b9050604002018036038101906101d49190610fde565b905061020b33826000015183602001518873ffffffffffffffffffffffffffffffffffffffff166106bb909392919063ffffffff16565b5080806102179061103a565b91505061019e565b50505050565b61022d610744565b73ffffffffffffffffffffffffffffffffffffffff1661024b610407565b73ffffffffffffffffffffffffffffffffffffffff16146102a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610298906110e0565b60405180910390fd5b8060018190555050565b6102b3610619565b60005b828290508110156103795760008383838181106102d6576102d5610ece565b5b9050604002018036038101906102ec9190611150565b90508473ffffffffffffffffffffffffffffffffffffffff166342842e0e33836000015184602001516040518463ffffffff1660e01b81526004016103339392919061117d565b600060405180830381600087803b15801561034d57600080fd5b505af1158015610361573d6000803e3d6000fd5b505050505080806103719061103a565b9150506102b6565b50505050565b610387610744565b73ffffffffffffffffffffffffffffffffffffffff166103a5610407565b73ffffffffffffffffffffffffffffffffffffffff16146103fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f2906110e0565b60405180910390fd5b610405600061074c565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610438610619565b60005b8282905081101561051557600083838381811061045b5761045a610ece565b5b9050606002018036038101906104719190611218565b90508473ffffffffffffffffffffffffffffffffffffffff1663f242432a33836000015184602001518560400151604051806020016040528060008152506040518663ffffffff1660e01b81526004016104cf9594939291906112cd565b600060405180830381600087803b1580156104e957600080fd5b505af11580156104fd573d6000803e3d6000fd5b5050505050808061050d9061103a565b91505061043b565b50505050565b60015481565b610529610744565b73ffffffffffffffffffffffffffffffffffffffff16610547610407565b73ffffffffffffffffffffffffffffffffffffffff161461059d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610594906110e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561060d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060490611399565b60405180910390fd5b6106168161074c565b50565b600060015411156106b9576001543414610668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065f90611405565b60405180910390fd5b610670610407565b73ffffffffffffffffffffffffffffffffffffffff166108fc6001549081150290604051600060405180830381858888f193505050501580156106b7573d6000803e3d6000fd5b505b565b61073e846323b872dd60e01b8585856040516024016106dc9392919061117d565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610810565b50505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610872826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166108d79092919063ffffffff16565b90506000815111156108d25780806020019051810190610892919061145d565b6108d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c8906114fc565b60405180910390fd5b5b505050565b60606108e684846000856108ef565b90509392505050565b606082471015610934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092b9061158e565b60405180910390fd5b61093d85610a03565b61097c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610973906115fa565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516109a59190611656565b60006040518083038185875af1925050503d80600081146109e2576040519150601f19603f3d011682016040523d82523d6000602084013e6109e7565b606091505b50915091506109f7828286610a26565b92505050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608315610a3657829050610a86565b600083511115610a495782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d91906116b1565b60405180910390fd5b9392505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610acc82610aa1565b9050919050565b6000610ade82610ac1565b9050919050565b610aee81610ad3565b8114610af957600080fd5b50565b600081359050610b0b81610ae5565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112610b3657610b35610b11565b5b8235905067ffffffffffffffff811115610b5357610b52610b16565b5b602083019150836040820283011115610b6f57610b6e610b1b565b5b9250929050565b600080600060408486031215610b8f57610b8e610a97565b5b6000610b9d86828701610afc565b935050602084013567ffffffffffffffff811115610bbe57610bbd610a9c565b5b610bca86828701610b20565b92509250509250925092565b6000819050919050565b610be981610bd6565b8114610bf457600080fd5b50565b600081359050610c0681610be0565b92915050565b600060208284031215610c2257610c21610a97565b5b6000610c3084828501610bf7565b91505092915050565b6000610c4482610ac1565b9050919050565b610c5481610c39565b8114610c5f57600080fd5b50565b600081359050610c7181610c4b565b92915050565b60008083601f840112610c8d57610c8c610b11565b5b8235905067ffffffffffffffff811115610caa57610ca9610b16565b5b602083019150836040820283011115610cc657610cc5610b1b565b5b9250929050565b600080600060408486031215610ce657610ce5610a97565b5b6000610cf486828701610c62565b935050602084013567ffffffffffffffff811115610d1557610d14610a9c565b5b610d2186828701610c77565b92509250509250925092565b610d3681610ac1565b82525050565b6000602082019050610d516000830184610d2d565b92915050565b6000610d6282610ac1565b9050919050565b610d7281610d57565b8114610d7d57600080fd5b50565b600081359050610d8f81610d69565b92915050565b60008083601f840112610dab57610daa610b11565b5b8235905067ffffffffffffffff811115610dc857610dc7610b16565b5b602083019150836060820283011115610de457610de3610b1b565b5b9250929050565b600080600060408486031215610e0457610e03610a97565b5b6000610e1286828701610d80565b935050602084013567ffffffffffffffff811115610e3357610e32610a9c565b5b610e3f86828701610d95565b92509250509250925092565b610e5481610bd6565b82525050565b6000602082019050610e6f6000830184610e4b565b92915050565b610e7e81610ac1565b8114610e8957600080fd5b50565b600081359050610e9b81610e75565b92915050565b600060208284031215610eb757610eb6610a97565b5b6000610ec584828501610e8c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610f4b82610f02565b810181811067ffffffffffffffff82111715610f6a57610f69610f13565b5b80604052505050565b6000610f7d610a8d565b9050610f898282610f42565b919050565b600060408284031215610fa457610fa3610efd565b5b610fae6040610f73565b90506000610fbe84828501610e8c565b6000830152506020610fd284828501610bf7565b60208301525092915050565b600060408284031215610ff457610ff3610a97565b5b600061100284828501610f8e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061104582610bd6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156110785761107761100b565b5b600182019050919050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006110ca602083611083565b91506110d582611094565b602082019050919050565b600060208201905081810360008301526110f9816110bd565b9050919050565b60006040828403121561111657611115610efd565b5b6111206040610f73565b9050600061113084828501610e8c565b600083015250602061114484828501610bf7565b60208301525092915050565b60006040828403121561116657611165610a97565b5b600061117484828501611100565b91505092915050565b60006060820190506111926000830186610d2d565b61119f6020830185610d2d565b6111ac6040830184610e4b565b949350505050565b6000606082840312156111ca576111c9610efd565b5b6111d46060610f73565b905060006111e484828501610e8c565b60008301525060206111f884828501610bf7565b602083015250604061120c84828501610bf7565b60408301525092915050565b60006060828403121561122e5761122d610a97565b5b600061123c848285016111b4565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561127f578082015181840152602081019050611264565b8381111561128e576000848401525b50505050565b600061129f82611245565b6112a98185611250565b93506112b9818560208601611261565b6112c281610f02565b840191505092915050565b600060a0820190506112e26000830188610d2d565b6112ef6020830187610d2d565b6112fc6040830186610e4b565b6113096060830185610e4b565b818103608083015261131b8184611294565b90509695505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611383602683611083565b915061138e82611327565b604082019050919050565b600060208201905081810360008301526113b281611376565b9050919050565b7f57726f6e67206665650000000000000000000000000000000000000000000000600082015250565b60006113ef600983611083565b91506113fa826113b9565b602082019050919050565b6000602082019050818103600083015261141e816113e2565b9050919050565b60008115159050919050565b61143a81611425565b811461144557600080fd5b50565b60008151905061145781611431565b92915050565b60006020828403121561147357611472610a97565b5b600061148184828501611448565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b60006114e6602a83611083565b91506114f18261148a565b604082019050919050565b60006020820190508181036000830152611515816114d9565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000611578602683611083565b91506115838261151c565b604082019050919050565b600060208201905081810360008301526115a78161156b565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b60006115e4601d83611083565b91506115ef826115ae565b602082019050919050565b60006020820190508181036000830152611613816115d7565b9050919050565b600081905092915050565b600061163082611245565b61163a818561161a565b935061164a818560208601611261565b80840191505092915050565b60006116628284611625565b915081905092915050565b600081519050919050565b60006116838261166d565b61168d8185611083565b935061169d818560208601611261565b6116a681610f02565b840191505092915050565b600060208201905081810360008301526116cb8184611678565b90509291505056fea26469706673582212206f8958a121d3d5bb8bd5351f8496c270172d9ef580a98346d412a9235cdfb93364736f6c63430008090033

Deployed Bytecode

0x60806040526004361061007b5760003560e01c80638da5cb5b1161004e5780638da5cb5b146100f8578063d53828ff14610123578063ddca3f431461013f578063f2fde38b1461016a5761007b565b80635dab9cc21461008057806369fe0e2d1461009c5780636edccc19146100c5578063715018a6146100e1575b600080fd5b61009a60048036038101906100959190610b76565b610193565b005b3480156100a857600080fd5b506100c360048036038101906100be9190610c0c565b610225565b005b6100df60048036038101906100da9190610ccd565b6102ab565b005b3480156100ed57600080fd5b506100f661037f565b005b34801561010457600080fd5b5061010d610407565b60405161011a9190610d3c565b60405180910390f35b61013d60048036038101906101389190610deb565b610430565b005b34801561014b57600080fd5b5061015461051b565b6040516101619190610e5a565b60405180910390f35b34801561017657600080fd5b50610191600480360381019061018c9190610ea1565b610521565b005b61019b610619565b60005b8282905081101561021f5760008383838181106101be576101bd610ece565b5b9050604002018036038101906101d49190610fde565b905061020b33826000015183602001518873ffffffffffffffffffffffffffffffffffffffff166106bb909392919063ffffffff16565b5080806102179061103a565b91505061019e565b50505050565b61022d610744565b73ffffffffffffffffffffffffffffffffffffffff1661024b610407565b73ffffffffffffffffffffffffffffffffffffffff16146102a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610298906110e0565b60405180910390fd5b8060018190555050565b6102b3610619565b60005b828290508110156103795760008383838181106102d6576102d5610ece565b5b9050604002018036038101906102ec9190611150565b90508473ffffffffffffffffffffffffffffffffffffffff166342842e0e33836000015184602001516040518463ffffffff1660e01b81526004016103339392919061117d565b600060405180830381600087803b15801561034d57600080fd5b505af1158015610361573d6000803e3d6000fd5b505050505080806103719061103a565b9150506102b6565b50505050565b610387610744565b73ffffffffffffffffffffffffffffffffffffffff166103a5610407565b73ffffffffffffffffffffffffffffffffffffffff16146103fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f2906110e0565b60405180910390fd5b610405600061074c565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610438610619565b60005b8282905081101561051557600083838381811061045b5761045a610ece565b5b9050606002018036038101906104719190611218565b90508473ffffffffffffffffffffffffffffffffffffffff1663f242432a33836000015184602001518560400151604051806020016040528060008152506040518663ffffffff1660e01b81526004016104cf9594939291906112cd565b600060405180830381600087803b1580156104e957600080fd5b505af11580156104fd573d6000803e3d6000fd5b5050505050808061050d9061103a565b91505061043b565b50505050565b60015481565b610529610744565b73ffffffffffffffffffffffffffffffffffffffff16610547610407565b73ffffffffffffffffffffffffffffffffffffffff161461059d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610594906110e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561060d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060490611399565b60405180910390fd5b6106168161074c565b50565b600060015411156106b9576001543414610668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065f90611405565b60405180910390fd5b610670610407565b73ffffffffffffffffffffffffffffffffffffffff166108fc6001549081150290604051600060405180830381858888f193505050501580156106b7573d6000803e3d6000fd5b505b565b61073e846323b872dd60e01b8585856040516024016106dc9392919061117d565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610810565b50505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610872826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166108d79092919063ffffffff16565b90506000815111156108d25780806020019051810190610892919061145d565b6108d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c8906114fc565b60405180910390fd5b5b505050565b60606108e684846000856108ef565b90509392505050565b606082471015610934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092b9061158e565b60405180910390fd5b61093d85610a03565b61097c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610973906115fa565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516109a59190611656565b60006040518083038185875af1925050503d80600081146109e2576040519150601f19603f3d011682016040523d82523d6000602084013e6109e7565b606091505b50915091506109f7828286610a26565b92505050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608315610a3657829050610a86565b600083511115610a495782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d91906116b1565b60405180910390fd5b9392505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610acc82610aa1565b9050919050565b6000610ade82610ac1565b9050919050565b610aee81610ad3565b8114610af957600080fd5b50565b600081359050610b0b81610ae5565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112610b3657610b35610b11565b5b8235905067ffffffffffffffff811115610b5357610b52610b16565b5b602083019150836040820283011115610b6f57610b6e610b1b565b5b9250929050565b600080600060408486031215610b8f57610b8e610a97565b5b6000610b9d86828701610afc565b935050602084013567ffffffffffffffff811115610bbe57610bbd610a9c565b5b610bca86828701610b20565b92509250509250925092565b6000819050919050565b610be981610bd6565b8114610bf457600080fd5b50565b600081359050610c0681610be0565b92915050565b600060208284031215610c2257610c21610a97565b5b6000610c3084828501610bf7565b91505092915050565b6000610c4482610ac1565b9050919050565b610c5481610c39565b8114610c5f57600080fd5b50565b600081359050610c7181610c4b565b92915050565b60008083601f840112610c8d57610c8c610b11565b5b8235905067ffffffffffffffff811115610caa57610ca9610b16565b5b602083019150836040820283011115610cc657610cc5610b1b565b5b9250929050565b600080600060408486031215610ce657610ce5610a97565b5b6000610cf486828701610c62565b935050602084013567ffffffffffffffff811115610d1557610d14610a9c565b5b610d2186828701610c77565b92509250509250925092565b610d3681610ac1565b82525050565b6000602082019050610d516000830184610d2d565b92915050565b6000610d6282610ac1565b9050919050565b610d7281610d57565b8114610d7d57600080fd5b50565b600081359050610d8f81610d69565b92915050565b60008083601f840112610dab57610daa610b11565b5b8235905067ffffffffffffffff811115610dc857610dc7610b16565b5b602083019150836060820283011115610de457610de3610b1b565b5b9250929050565b600080600060408486031215610e0457610e03610a97565b5b6000610e1286828701610d80565b935050602084013567ffffffffffffffff811115610e3357610e32610a9c565b5b610e3f86828701610d95565b92509250509250925092565b610e5481610bd6565b82525050565b6000602082019050610e6f6000830184610e4b565b92915050565b610e7e81610ac1565b8114610e8957600080fd5b50565b600081359050610e9b81610e75565b92915050565b600060208284031215610eb757610eb6610a97565b5b6000610ec584828501610e8c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610f4b82610f02565b810181811067ffffffffffffffff82111715610f6a57610f69610f13565b5b80604052505050565b6000610f7d610a8d565b9050610f898282610f42565b919050565b600060408284031215610fa457610fa3610efd565b5b610fae6040610f73565b90506000610fbe84828501610e8c565b6000830152506020610fd284828501610bf7565b60208301525092915050565b600060408284031215610ff457610ff3610a97565b5b600061100284828501610f8e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061104582610bd6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156110785761107761100b565b5b600182019050919050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006110ca602083611083565b91506110d582611094565b602082019050919050565b600060208201905081810360008301526110f9816110bd565b9050919050565b60006040828403121561111657611115610efd565b5b6111206040610f73565b9050600061113084828501610e8c565b600083015250602061114484828501610bf7565b60208301525092915050565b60006040828403121561116657611165610a97565b5b600061117484828501611100565b91505092915050565b60006060820190506111926000830186610d2d565b61119f6020830185610d2d565b6111ac6040830184610e4b565b949350505050565b6000606082840312156111ca576111c9610efd565b5b6111d46060610f73565b905060006111e484828501610e8c565b60008301525060206111f884828501610bf7565b602083015250604061120c84828501610bf7565b60408301525092915050565b60006060828403121561122e5761122d610a97565b5b600061123c848285016111b4565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561127f578082015181840152602081019050611264565b8381111561128e576000848401525b50505050565b600061129f82611245565b6112a98185611250565b93506112b9818560208601611261565b6112c281610f02565b840191505092915050565b600060a0820190506112e26000830188610d2d565b6112ef6020830187610d2d565b6112fc6040830186610e4b565b6113096060830185610e4b565b818103608083015261131b8184611294565b90509695505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611383602683611083565b915061138e82611327565b604082019050919050565b600060208201905081810360008301526113b281611376565b9050919050565b7f57726f6e67206665650000000000000000000000000000000000000000000000600082015250565b60006113ef600983611083565b91506113fa826113b9565b602082019050919050565b6000602082019050818103600083015261141e816113e2565b9050919050565b60008115159050919050565b61143a81611425565b811461144557600080fd5b50565b60008151905061145781611431565b92915050565b60006020828403121561147357611472610a97565b5b600061148184828501611448565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b60006114e6602a83611083565b91506114f18261148a565b604082019050919050565b60006020820190508181036000830152611515816114d9565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000611578602683611083565b91506115838261151c565b604082019050919050565b600060208201905081810360008301526115a78161156b565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b60006115e4601d83611083565b91506115ef826115ae565b602082019050919050565b60006020820190508181036000830152611613816115d7565b9050919050565b600081905092915050565b600061163082611245565b61163a818561161a565b935061164a818560208601611261565b80840191505092915050565b60006116628284611625565b915081905092915050565b600081519050919050565b60006116838261166d565b61168d8185611083565b935061169d818560208601611261565b6116a681610f02565b840191505092915050565b600060208201905081810360008301526116cb8184611678565b90509291505056fea26469706673582212206f8958a121d3d5bb8bd5351f8496c270172d9ef580a98346d412a9235cdfb93364736f6c63430008090033

Block Transaction Gas Used Reward
view all blocks produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.