APE Price: $1.15 (+4.57%)

Contract

0x1349A9DdEe26Fe16D0D44E35B3CB9B0CA18213a4

Overview

APE Balance

Apechain LogoApechain LogoApechain Logo0 APE

APE Value

$0.00
Transaction Hash
Method
Block
From
To
0x6080604047399752024-11-20 5:40:1027 hrs ago1732081210IN
 Create: BulkSender
0 APE0.0280836825.42069

Parent Transaction Hash Block From To
View All Internal Transactions

Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
BulkSender

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 50000 runs

Other Settings:
paris EvmVersion
File 1 of 6 : BulkSender.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity =0.8.20;

import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {IERC1155} from "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";

/**
 * @title BulkSender
 * @dev A contract for sending ERC20 / ERC1155 (id = 0) tokens to multiple addresses in a single transaction.
 * @notice With 30M block gas limit, the max number of recipient count was 4200 for ERC1155 / 5500 for ERC20 / 3700 for Native
 */
contract BulkSender is Ownable {
    error BulkSender__InvalidParams(string param);
    error BulkSender__InsufficientTokenBalance();
    error BulkSender__InsufficientTokenAllowance();
    error BulkSender__InvalidFeeSent();
    error BulkSender__FeeTransactionFailed();

    address public protocolBeneficiary;
    uint256 public feePerRecipient;

    event Sent(address token, uint256 totalAmount, uint256 recipientsCount);
    event ProtocolBeneficiaryUpdated(address protocolBeneficiary);
    event FeeUpdated(uint256 feePerRecipient);

    constructor(
        address protocolBeneficiary_,
        uint256 feePerRecipient_
    ) Ownable(_msgSender()) {
        protocolBeneficiary = protocolBeneficiary_;
        feePerRecipient = feePerRecipient_;
    }

    // MARK: - Admin functions

    /**
     * @dev Updates the protocol beneficiary address.
     * @param protocolBeneficiary_ The new address of the protocol beneficiary.
     */
    function updateProtocolBeneficiary(
        address protocolBeneficiary_
    ) external onlyOwner {
        if (protocolBeneficiary_ == address(0))
            revert BulkSender__InvalidParams("NULL_ADDRESS");

        protocolBeneficiary = protocolBeneficiary_;

        emit ProtocolBeneficiaryUpdated(protocolBeneficiary_);
    }

    /**
     * @dev Updates the fee per recipient.
     * @param feePerRecipient_ The new fee per recipient.
     */
    function updateFeePerRecipient(
        uint256 feePerRecipient_
    ) external onlyOwner {
        feePerRecipient = feePerRecipient_;

        emit FeeUpdated(feePerRecipient_);
    }

    // MARK: - Send functions

    function _validateParams(
        address[] calldata recipients,
        uint256[] calldata amounts
    ) private pure returns (uint256 totalAmount) {
        uint256 length = recipients.length;

        if (length == 0) revert BulkSender__InvalidParams("EMPTY_ARRAY");
        if (length != amounts.length)
            revert BulkSender__InvalidParams("ARRAYS_LENGTH_DO_NOT_MATCH");

        unchecked {
            for (uint256 i = 0; i < length; i++) {
                totalAmount += amounts[i];
            }
        }
        if (totalAmount == 0) revert BulkSender__InvalidParams("ZERO_AMOUNT");
    }

    function _validateFees(
        uint256 recipientsCount
    ) private view returns (uint256 totalFee) {
        totalFee = feePerRecipient * recipientsCount;
        if (msg.value != totalFee) revert BulkSender__InvalidFeeSent();
    }

    function _collectFee(uint256 totalFee) private {
        if (totalFee > 0) {
            (bool success, ) = payable(protocolBeneficiary).call{
                value: totalFee
            }("");
            if (!success) revert BulkSender__FeeTransactionFailed();
        }
    }

    /**
     * @dev Sends ERC20 tokens to multiple addresses.
     * @param token The address of the ERC20 token.
     * @param recipients The addresses of the recipients.
     * @param amounts The amounts of tokens to send to each recipient.
     */
    function sendERC20(
        address token,
        address[] calldata recipients,
        uint256[] calldata amounts
    ) external payable {
        uint256 totalAmount = _validateParams(recipients, amounts);
        uint256 recipientsCount = recipients.length;
        uint256 totalFee = _validateFees(recipientsCount);

        if (totalAmount > IERC20(token).balanceOf(_msgSender()))
            revert BulkSender__InsufficientTokenBalance();
        if (totalAmount > IERC20(token).allowance(_msgSender(), address(this)))
            revert BulkSender__InsufficientTokenAllowance();

        // Send tokens to recipients
        unchecked {
            address msgSender = _msgSender(); // cache

            for (uint256 i = 0; i < recipientsCount; ++i) {
                IERC20(token).transferFrom(
                    msgSender,
                    recipients[i],
                    amounts[i]
                );
            }
        } // gas optimization

        emit Sent(token, totalAmount, recipientsCount);

        _collectFee(totalFee);
    }

    /**
     * @dev Sends native tokens to multiple addresses.
     * @param recipients The addresses of the recipients.
     * @param amounts The amounts of tokens to send to each recipient.
     */
    function sendNative(
        address[] calldata recipients,
        uint256[] calldata amounts
    ) external payable {
        uint256 totalAmount = _validateParams(recipients, amounts);
        uint256 recipientsCount = recipients.length;
        uint256 totalFee = feePerRecipient * recipientsCount;
        uint256 totalAmountWithFee = totalAmount + totalFee;

        if (msg.value != totalAmountWithFee)
            revert BulkSender__InvalidFeeSent();

        if (totalAmountWithFee > address(this).balance)
            revert BulkSender__InsufficientTokenBalance();

        // Send tokens to recipients
        unchecked {
            for (uint256 i = 0; i < recipientsCount; ++i) {
                (bool success, ) = recipients[i].call{value: amounts[i]}("");
                if (!success) revert BulkSender__FeeTransactionFailed();
            }
        } // gas optimization

        emit Sent(address(0), totalAmount, recipientsCount);

        _collectFee(totalFee);
    }

    /**
     * @dev Sends ERC1155 tokens (only id = 0) to multiple addresses.
     * @param token The address of the ERC1155 token.
     * @param recipients The addresses of the recipients.
     * @param amounts The amounts of tokens to send to each recipient.
     */
    function sendERC1155(
        address token,
        address[] calldata recipients,
        uint256[] calldata amounts
    ) external payable {
        uint256 totalAmount = _validateParams(recipients, amounts);
        uint256 recipientsCount = recipients.length;
        uint256 totalFee = _validateFees(recipientsCount);

        if (totalAmount > IERC1155(token).balanceOf(_msgSender(), 0))
            revert BulkSender__InsufficientTokenBalance();
        if (!IERC1155(token).isApprovedForAll(_msgSender(), address(this)))
            revert BulkSender__InsufficientTokenAllowance();

        // Send tokens to recipients
        unchecked {
            address msgSender = _msgSender(); // cache

            for (uint256 i = 0; i < recipientsCount; ++i) {
                IERC1155(token).safeTransferFrom(
                    msgSender,
                    recipients[i],
                    0,
                    amounts[i],
                    ""
                );
            }
        } // gas optimization

        emit Sent(token, totalAmount, recipientsCount);

        _collectFee(totalFee);
    }
}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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 6 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.20;

import {IERC165} from "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` amount of tokens of 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 value 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 a `value` amount of tokens of type `id` from `from` to `to`.
     *
     * WARNING: This function can potentially allow a reentrancy attack when transferring tokens
     * to an untrusted contract, when invoking {onERC1155Received} on the receiver.
     * Ensure to follow the checks-effects-interactions pattern and consider employing
     * reentrancy guards when interacting with untrusted contracts.
     *
     * 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 `value` 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 value, bytes calldata data) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * WARNING: This function can potentially allow a reentrancy attack when transferring tokens
     * to an untrusted contract, when invoking {onERC1155BatchReceived} on the receiver.
     * Ensure to follow the checks-effects-interactions pattern and consider employing
     * reentrancy guards when interacting with untrusted contracts.
     *
     * Emits either a {TransferSingle} or a {TransferBatch} event, depending on the length of the array arguments.
     *
     * Requirements:
     *
     * - `ids` and `values` 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 values,
        bytes calldata data
    ) external;
}

File 4 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

File 5 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 6 of 6 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": true,
    "runs": 50000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"protocolBeneficiary_","type":"address"},{"internalType":"uint256","name":"feePerRecipient_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"BulkSender__FeeTransactionFailed","type":"error"},{"inputs":[],"name":"BulkSender__InsufficientTokenAllowance","type":"error"},{"inputs":[],"name":"BulkSender__InsufficientTokenBalance","type":"error"},{"inputs":[],"name":"BulkSender__InvalidFeeSent","type":"error"},{"inputs":[{"internalType":"string","name":"param","type":"string"}],"name":"BulkSender__InvalidParams","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"feePerRecipient","type":"uint256"}],"name":"FeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"protocolBeneficiary","type":"address"}],"name":"ProtocolBeneficiaryUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"recipientsCount","type":"uint256"}],"name":"Sent","type":"event"},{"inputs":[],"name":"feePerRecipient","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":"protocolBeneficiary","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"sendERC1155","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"sendERC20","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"sendNative","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"feePerRecipient_","type":"uint256"}],"name":"updateFeePerRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"protocolBeneficiary_","type":"address"}],"name":"updateProtocolBeneficiary","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b506040516112fc3803806112fc83398101604081905261002f916100d8565b338061005557604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b61005e81610088565b50600180546001600160a01b0319166001600160a01b039390931692909217909155600255610112565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100eb57600080fd5b82516001600160a01b038116811461010257600080fd5b6020939093015192949293505050565b6111db806101216000396000f3fe6080604052600436106100b15760003560e01c8063990e600511610069578063e096e66a1161004e578063e096e66a146101b1578063f2fde38b146101c4578063fc530b7d146101e457600080fd5b8063990e600514610171578063d59b5d7e1461019e57600080fd5b8063594e7f2b1161009a578063594e7f2b146100eb578063715018a61461010b5780638da5cb5b1461012057600080fd5b806327e381a9146100b6578063318adb8b146100d8575b600080fd5b3480156100c257600080fd5b506100d66100d1366004610f68565b610208565b005b6100d66100e6366004610fd6565b61030c565b3480156100f757600080fd5b506100d6610106366004611042565b6104f5565b34801561011757600080fd5b506100d6610532565b34801561012c57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b34801561017d57600080fd5b506001546101479073ffffffffffffffffffffffffffffffffffffffff1681565b6100d66101ac36600461105b565b610546565b6100d66101bf36600461105b565b6108ae565b3480156101d057600080fd5b506100d66101df366004610f68565b610ba8565b3480156101f057600080fd5b506101fa60025481565b604051908152602001610168565b610210610c0c565b73ffffffffffffffffffffffffffffffffffffffff8116610292576040517f603292ad00000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f4e554c4c5f41444452455353000000000000000000000000000000000000000060448201526064015b60405180910390fd5b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527fcf7686c0c53a1ab216c4cd81c1bc037136c791a61f30af4a78827c3915766044906020015b60405180910390a150565b600061031a85858585610c5f565b600254909150849060009061033090839061110b565b9050600061033e8285611128565b9050803414610379576040517fd13aaff100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b478111156103b3576040517f38da31b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8381101561049f5760008989838181106103d2576103d261113b565b90506020020160208101906103e79190610f68565b73ffffffffffffffffffffffffffffffffffffffff1688888481811061040f5761040f61113b565b9050602002013560405160006040518083038185875af1925050503d8060008114610456576040519150601f19603f3d011682016040523d82523d6000602084013e61045b565b606091505b5050905080610496576040517fbed52e4000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001016103b6565b506040805160008152602081018690529081018490527f6356739d963da01dc3533acba7203430fcc14f2175d48a8dd0973d7db49c785e9060600160405180910390a16104eb82610ddb565b5050505050505050565b6104fd610c0c565b60028190556040518181527f8c4d35e54a3f2ef1134138fd8ea3daee6a3c89e10d2665996babdf70261e2c7690602001610301565b61053a610c0c565b6105446000610e7f565b565b600061055485858585610c5f565b905083600061056282610ef4565b905073ffffffffffffffffffffffffffffffffffffffff881662fdd58e336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff909116600482015260006024820152604401602060405180830381865afa1580156105f0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610614919061116a565b83111561064d576040517f38da31b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff881663e985e9c5336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff9091166004820152306024820152604401602060405180830381865afa1580156106d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106fd9190611183565b610733576040517f98fc54fd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360005b8381101561084c578973ffffffffffffffffffffffffffffffffffffffff1663f242432a838b8b8581811061076e5761076e61113b565b90506020020160208101906107839190610f68565b60008b8b878181106107975761079761113b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e089901b16815273ffffffffffffffffffffffffffffffffffffffff968716600482015295909416602486015250604484019190915260209091020135606482015260a06084820152600060a482015260c401600060405180830381600087803b15801561082957600080fd5b505af115801561083d573d6000803e3d6000fd5b50505050806001019050610737565b50506040805173ffffffffffffffffffffffffffffffffffffffff8a168152602081018590529081018390527f6356739d963da01dc3533acba7203430fcc14f2175d48a8dd0973d7db49c785e9060600160405180910390a16104eb81610ddb565b60006108bc85858585610c5f565b90508360006108ca82610ef4565b905073ffffffffffffffffffffffffffffffffffffffff88166370a08231336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff9091166004820152602401602060405180830381865afa158015610952573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610976919061116a565b8311156109af576040517f38da31b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff881663dd62ed3e336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff9091166004820152306024820152604401602060405180830381865afa158015610a3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5f919061116a565b831115610a98576040517f98fc54fd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360005b8381101561084c578973ffffffffffffffffffffffffffffffffffffffff166323b872dd838b8b85818110610ad357610ad361113b565b9050602002016020810190610ae89190610f68565b8a8a86818110610afa57610afa61113b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b16815273ffffffffffffffffffffffffffffffffffffffff9586166004820152949093166024850152506020909102013560448201526064016020604051808303816000875af1158015610b7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9f9190611183565b50600101610a9c565b610bb0610c0c565b73ffffffffffffffffffffffffffffffffffffffff8116610c00576040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260006004820152602401610289565b610c0981610e7f565b50565b60005473ffffffffffffffffffffffffffffffffffffffff163314610544576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610289565b600083808203610ccb576040517f603292ad00000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f454d5054595f41525241590000000000000000000000000000000000000000006044820152606401610289565b808314610d34576040517f603292ad00000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4152524159535f4c454e4754485f444f5f4e4f545f4d415443480000000000006044820152606401610289565b60005b81811015610d6757848482818110610d5157610d5161113b565b6020029190910135939093019250600101610d37565b5081600003610dd2576040517f603292ad00000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f5a45524f5f414d4f554e540000000000000000000000000000000000000000006044820152606401610289565b50949350505050565b8015610c095760015460405160009173ffffffffffffffffffffffffffffffffffffffff169083908381818185875af1925050503d8060008114610e3b576040519150601f19603f3d011682016040523d82523d6000602084013e610e40565b606091505b5050905080610e7b576040517fbed52e4000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600081600254610f04919061110b565b9050803414610f3f576040517fd13aaff100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610f3f57600080fd5b600060208284031215610f7a57600080fd5b610f8382610f44565b9392505050565b60008083601f840112610f9c57600080fd5b50813567ffffffffffffffff811115610fb457600080fd5b6020830191508360208260051b8501011115610fcf57600080fd5b9250929050565b60008060008060408587031215610fec57600080fd5b843567ffffffffffffffff8082111561100457600080fd5b61101088838901610f8a565b9096509450602087013591508082111561102957600080fd5b5061103687828801610f8a565b95989497509550505050565b60006020828403121561105457600080fd5b5035919050565b60008060008060006060868803121561107357600080fd5b61107c86610f44565b9450602086013567ffffffffffffffff8082111561109957600080fd5b6110a589838a01610f8a565b909650945060408801359150808211156110be57600080fd5b506110cb88828901610f8a565b969995985093965092949392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082028115828204841417611122576111226110dc565b92915050565b80820180821115611122576111226110dc565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561117c57600080fd5b5051919050565b60006020828403121561119557600080fd5b81518015158114610f8357600080fdfea26469706673582212205589d15763ff98538a8d023b9cbcfd93c6fa6f9fc1d71a02abe1d3a442f7add764736f6c6343000814003300000000000000000000000082ca6d313bffe56e9096b16633dfd414148d66b100000000000000000000000000000000000000000000000000470de4df820000

Deployed Bytecode

0x6080604052600436106100b15760003560e01c8063990e600511610069578063e096e66a1161004e578063e096e66a146101b1578063f2fde38b146101c4578063fc530b7d146101e457600080fd5b8063990e600514610171578063d59b5d7e1461019e57600080fd5b8063594e7f2b1161009a578063594e7f2b146100eb578063715018a61461010b5780638da5cb5b1461012057600080fd5b806327e381a9146100b6578063318adb8b146100d8575b600080fd5b3480156100c257600080fd5b506100d66100d1366004610f68565b610208565b005b6100d66100e6366004610fd6565b61030c565b3480156100f757600080fd5b506100d6610106366004611042565b6104f5565b34801561011757600080fd5b506100d6610532565b34801561012c57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b34801561017d57600080fd5b506001546101479073ffffffffffffffffffffffffffffffffffffffff1681565b6100d66101ac36600461105b565b610546565b6100d66101bf36600461105b565b6108ae565b3480156101d057600080fd5b506100d66101df366004610f68565b610ba8565b3480156101f057600080fd5b506101fa60025481565b604051908152602001610168565b610210610c0c565b73ffffffffffffffffffffffffffffffffffffffff8116610292576040517f603292ad00000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f4e554c4c5f41444452455353000000000000000000000000000000000000000060448201526064015b60405180910390fd5b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527fcf7686c0c53a1ab216c4cd81c1bc037136c791a61f30af4a78827c3915766044906020015b60405180910390a150565b600061031a85858585610c5f565b600254909150849060009061033090839061110b565b9050600061033e8285611128565b9050803414610379576040517fd13aaff100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b478111156103b3576040517f38da31b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8381101561049f5760008989838181106103d2576103d261113b565b90506020020160208101906103e79190610f68565b73ffffffffffffffffffffffffffffffffffffffff1688888481811061040f5761040f61113b565b9050602002013560405160006040518083038185875af1925050503d8060008114610456576040519150601f19603f3d011682016040523d82523d6000602084013e61045b565b606091505b5050905080610496576040517fbed52e4000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001016103b6565b506040805160008152602081018690529081018490527f6356739d963da01dc3533acba7203430fcc14f2175d48a8dd0973d7db49c785e9060600160405180910390a16104eb82610ddb565b5050505050505050565b6104fd610c0c565b60028190556040518181527f8c4d35e54a3f2ef1134138fd8ea3daee6a3c89e10d2665996babdf70261e2c7690602001610301565b61053a610c0c565b6105446000610e7f565b565b600061055485858585610c5f565b905083600061056282610ef4565b905073ffffffffffffffffffffffffffffffffffffffff881662fdd58e336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff909116600482015260006024820152604401602060405180830381865afa1580156105f0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610614919061116a565b83111561064d576040517f38da31b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff881663e985e9c5336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff9091166004820152306024820152604401602060405180830381865afa1580156106d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106fd9190611183565b610733576040517f98fc54fd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360005b8381101561084c578973ffffffffffffffffffffffffffffffffffffffff1663f242432a838b8b8581811061076e5761076e61113b565b90506020020160208101906107839190610f68565b60008b8b878181106107975761079761113b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e089901b16815273ffffffffffffffffffffffffffffffffffffffff968716600482015295909416602486015250604484019190915260209091020135606482015260a06084820152600060a482015260c401600060405180830381600087803b15801561082957600080fd5b505af115801561083d573d6000803e3d6000fd5b50505050806001019050610737565b50506040805173ffffffffffffffffffffffffffffffffffffffff8a168152602081018590529081018390527f6356739d963da01dc3533acba7203430fcc14f2175d48a8dd0973d7db49c785e9060600160405180910390a16104eb81610ddb565b60006108bc85858585610c5f565b90508360006108ca82610ef4565b905073ffffffffffffffffffffffffffffffffffffffff88166370a08231336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff9091166004820152602401602060405180830381865afa158015610952573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610976919061116a565b8311156109af576040517f38da31b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff881663dd62ed3e336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff9091166004820152306024820152604401602060405180830381865afa158015610a3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5f919061116a565b831115610a98576040517f98fc54fd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360005b8381101561084c578973ffffffffffffffffffffffffffffffffffffffff166323b872dd838b8b85818110610ad357610ad361113b565b9050602002016020810190610ae89190610f68565b8a8a86818110610afa57610afa61113b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b16815273ffffffffffffffffffffffffffffffffffffffff9586166004820152949093166024850152506020909102013560448201526064016020604051808303816000875af1158015610b7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9f9190611183565b50600101610a9c565b610bb0610c0c565b73ffffffffffffffffffffffffffffffffffffffff8116610c00576040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260006004820152602401610289565b610c0981610e7f565b50565b60005473ffffffffffffffffffffffffffffffffffffffff163314610544576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610289565b600083808203610ccb576040517f603292ad00000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f454d5054595f41525241590000000000000000000000000000000000000000006044820152606401610289565b808314610d34576040517f603292ad00000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4152524159535f4c454e4754485f444f5f4e4f545f4d415443480000000000006044820152606401610289565b60005b81811015610d6757848482818110610d5157610d5161113b565b6020029190910135939093019250600101610d37565b5081600003610dd2576040517f603292ad00000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f5a45524f5f414d4f554e540000000000000000000000000000000000000000006044820152606401610289565b50949350505050565b8015610c095760015460405160009173ffffffffffffffffffffffffffffffffffffffff169083908381818185875af1925050503d8060008114610e3b576040519150601f19603f3d011682016040523d82523d6000602084013e610e40565b606091505b5050905080610e7b576040517fbed52e4000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600081600254610f04919061110b565b9050803414610f3f576040517fd13aaff100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610f3f57600080fd5b600060208284031215610f7a57600080fd5b610f8382610f44565b9392505050565b60008083601f840112610f9c57600080fd5b50813567ffffffffffffffff811115610fb457600080fd5b6020830191508360208260051b8501011115610fcf57600080fd5b9250929050565b60008060008060408587031215610fec57600080fd5b843567ffffffffffffffff8082111561100457600080fd5b61101088838901610f8a565b9096509450602087013591508082111561102957600080fd5b5061103687828801610f8a565b95989497509550505050565b60006020828403121561105457600080fd5b5035919050565b60008060008060006060868803121561107357600080fd5b61107c86610f44565b9450602086013567ffffffffffffffff8082111561109957600080fd5b6110a589838a01610f8a565b909650945060408801359150808211156110be57600080fd5b506110cb88828901610f8a565b969995985093965092949392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082028115828204841417611122576111226110dc565b92915050565b80820180821115611122576111226110dc565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561117c57600080fd5b5051919050565b60006020828403121561119557600080fd5b81518015158114610f8357600080fdfea26469706673582212205589d15763ff98538a8d023b9cbcfd93c6fa6f9fc1d71a02abe1d3a442f7add764736f6c63430008140033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000082ca6d313bffe56e9096b16633dfd414148d66b100000000000000000000000000000000000000000000000000470de4df820000

-----Decoded View---------------
Arg [0] : protocolBeneficiary_ (address): 0x82CA6d313BffE56E9096b16633dfD414148D66b1
Arg [1] : feePerRecipient_ (uint256): 20000000000000000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000082ca6d313bffe56e9096b16633dfd414148d66b1
Arg [1] : 00000000000000000000000000000000000000000000000000470de4df820000


Block Transaction Difficulty 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  ]

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.