ETH Price: $1,940.72 (-1.13%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Collect Payment192116022024-02-12 11:18:59748 days ago1707736739IN
0xC2b948CB...017Cef855
0.02 ETH0.0005748820.19274357
Collect Payment191593672024-02-05 3:21:11755 days ago1707103271IN
0xC2b948CB...017Cef855
0.02 ETH0.0003637612.77712619
Collect Payment187725792023-12-12 20:47:35810 days ago1702414055IN
0xC2b948CB...017Cef855
0.02 ETH0.0014314850.28058428
Collect Payment178162212023-07-31 23:17:23944 days ago1690845443IN
0xC2b948CB...017Cef855
0.02 ETH0.0007813127.44342752
Collect Payment177848462023-07-27 13:57:59948 days ago1690466279IN
0xC2b948CB...017Cef855
0.02 ETH0.0011062338.85630881
Collect Payment177635972023-07-24 14:36:11951 days ago1690209371IN
0xC2b948CB...017Cef855
0.02 ETH0.0012775544.87377453
Collect Payment176508272023-07-08 18:27:59967 days ago1688840879IN
0xC2b948CB...017Cef855
0.02 ETH0.0004518715.87199944
Collect Payment176498472023-07-08 15:10:47967 days ago1688829047IN
0xC2b948CB...017Cef855
0.02 ETH0.0012411543.5950897
Collect Payment175461352023-06-24 1:30:23981 days ago1687570223IN
0xC2b948CB...017Cef855
0.02 ETH0.0004231514.86334452
Collect Payment175433422023-06-23 16:05:11982 days ago1687536311IN
0xC2b948CB...017Cef855
0.02 ETH0.001044236.67743127
Collect Payment173966422023-06-03 0:37:591002 days ago1685752679IN
0xC2b948CB...017Cef855
0.02 ETH0.0006304122.14317916
Collect Payment171959142023-05-05 17:27:351031 days ago1683307655IN
0xC2b948CB...017Cef855
0.02 ETH0.00643895226.16640536
Collect Payment171918642023-05-05 3:48:591031 days ago1683258539IN
0xC2b948CB...017Cef855
0.02 ETH0.00307444107.98898686
Collect Payment171506772023-04-29 8:50:111037 days ago1682758211IN
0xC2b948CB...017Cef855
0.02 ETH0.0009329632.77021131
Collect Payment171454012023-04-28 15:05:111038 days ago1682694311IN
0xC2b948CB...017Cef855
0.02 ETH0.0015484154.38771193
Collect Payment171446972023-04-28 12:43:111038 days ago1682685791IN
0xC2b948CB...017Cef855
0.02 ETH0.0011470740.29072907
Collect Payment171443462023-04-28 11:32:351038 days ago1682681555IN
0xC2b948CB...017Cef855
0.02 ETH0.000953233.48120613
Collect Payment171438632023-04-28 9:54:231038 days ago1682675663IN
0xC2b948CB...017Cef855
0.02 ETH0.0008556630.05509257
Collect Payment171435052023-04-28 8:42:111038 days ago1682671331IN
0xC2b948CB...017Cef855
0.02 ETH0.0010818638
Collect Payment171393762023-04-27 18:44:231039 days ago1682621063IN
0xC2b948CB...017Cef855
0.02 ETH0.0009130632.07123744
Collect Payment171393762023-04-27 18:44:231039 days ago1682621063IN
0xC2b948CB...017Cef855
0.02 ETH0.0009130632.07123744
Collect Payment171379492023-04-27 13:56:231039 days ago1682603783IN
0xC2b948CB...017Cef855
0.02 ETH0.0009422133.09510946
Collect Payment171379002023-04-27 13:46:351039 days ago1682603195IN
0xC2b948CB...017Cef855
0.02 ETH0.0009163432.18622351
Collect Payment171324202023-04-26 19:16:471040 days ago1682536607IN
0xC2b948CB...017Cef855
0.02 ETH0.0011912341.84162133
Collect Payment171270732023-04-26 1:15:591040 days ago1682471759IN
0xC2b948CB...017Cef855
0.02 ETH0.0010827238.03023001
View all transactions

Latest 4 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer199125222024-05-20 17:07:35650 days ago1716224855
0xC2b948CB...017Cef855
1.1 ETH
Transfer169136922023-03-26 19:31:231071 days ago1679859083
0xC2b948CB...017Cef855
1.18 ETH
Transfer168356602023-03-15 20:26:231082 days ago1678911983
0xC2b948CB...017Cef855
0.22 ETH
Transfer168310762023-03-15 4:57:351082 days ago1678856255
0xC2b948CB...017Cef855
0.02 ETH
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
WhoAnonPaymentCollector

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";

contract WhoAnonPaymentCollector is Ownable, Pausable {
  address public beneficiary;
  uint256 public shippingCost = 0.02 ether;

  constructor(address beneficiary_) {
    beneficiary = beneficiary_;
  }

  event PaymentCollected(
    address indexed payer,
    uint256 indexed tokenId,
    uint256 value,
    uint256 shippingCost,
    uint256 tokenQuantity
  );

  event ShippingCostUpdated(uint256 oldShippingCost, uint256 newShippingCost);

  error IncorrectPayment();
  error InvalidTokenQuantity();
  error TransferFailed();
  error NotAuthorized();

  /**
   * @dev pause - pause functions that are designated pausable (onlyOwner).
   */
  function pause() external onlyOwner {
    _pause();
  }

  /**
   * @dev unpause - pause functions that are designated pausable (onlyOwner).
   */
  function unpause() external onlyOwner {
    _unpause();
  }

  /**
   * @dev setShippingCost - set the shipping cost (onlyOwner).
   *
   * @param shippingCost_ The new shipping cost in wei
   */
  function setShippingCost(uint256 shippingCost_) external onlyOwner {
    uint256 oldShippingCost = shippingCost;
    shippingCost = shippingCost_;

    emit ShippingCostUpdated(oldShippingCost, shippingCost_);
  }

  /**
   * @dev collectPayment - collect a shipping payment.
   *
   * @param tokenId_ The tokenId that the payment is being collected for
   * @param tokenQuantity_ The number of tokens for this payment
   */
  function collectPayment(
    uint256 tokenId_,
    uint256 tokenQuantity_
  ) external payable whenNotPaused {
    // Payment must be for at least one token.
    if (tokenQuantity_ == 0) {
      revert InvalidTokenQuantity();
    }

    // Payment must be exact.
    if (msg.value != tokenQuantity_ * shippingCost) {
      revert IncorrectPayment();
    }

    emit PaymentCollected(
      msg.sender,
      tokenId_,
      msg.value,
      shippingCost,
      tokenQuantity_
    );
  }

  /**
   * @dev withdraw - Transfer ETH from this contract to the beneficiary.
   */
  function withdraw() external {
    // only owner and beneficiary can call
    if (msg.sender != owner() && msg.sender != beneficiary) {
      revert NotAuthorized();
    }

    (bool success, ) = beneficiary.call{value: address(this).balance}("");
    if (!success) {
      revert TransferFailed();
    }
  }

  function setBeneficiary(address beneficiary_) external onlyOwner {
    beneficiary = beneficiary_;
  }

  /**
   * @dev fallback - The fallback function is executed on a call to the contract if
   * none of the other functions match the given function signature.
   */
  fallback() external payable {
    revert();
  }

  /**
   * @dev receive - revert any random ETH.
   */
  receive() external payable {
    revert();
  }
}

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// SPDX-License-Identifier: MIT
// 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;
    }
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"beneficiary_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"IncorrectPayment","type":"error"},{"inputs":[],"name":"InvalidTokenQuantity","type":"error"},{"inputs":[],"name":"NotAuthorized","type":"error"},{"inputs":[],"name":"TransferFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"payer","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shippingCost","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"PaymentCollected","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldShippingCost","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newShippingCost","type":"uint256"}],"name":"ShippingCostUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"beneficiary","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"},{"internalType":"uint256","name":"tokenQuantity_","type":"uint256"}],"name":"collectPayment","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary_","type":"address"}],"name":"setBeneficiary","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"shippingCost_","type":"uint256"}],"name":"setShippingCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shippingCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405266470de4df82000060025534801561001b57600080fd5b5060405161085d38038061085d83398101604081905261003a916100c5565b61004333610075565b6000805460ff60a01b19169055600180546001600160a01b0319166001600160a01b03929092169190911790556100f5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100d757600080fd5b81516001600160a01b03811681146100ee57600080fd5b9392505050565b610759806101046000396000f3fe6080604052600436106100ab5760003560e01c80638456cb59116100645780638456cb591461018257806385d45a1a146101975780638da5cb5b146101aa578063c74f907e146101c8578063dd7f7aa9146101ec578063f2fde38b1461020c57600080fd5b80631c31f710146100ba57806338af3eed146100dc5780633ccfd60b146101195780633f4ba83a1461012e5780635c975abb14610143578063715018a61461016d57600080fd5b366100b557600080fd5b600080fd5b3480156100c657600080fd5b506100da6100d536600461068d565b61022c565b005b3480156100e857600080fd5b506001546100fc906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561012557600080fd5b506100da610256565b34801561013a57600080fd5b506100da610311565b34801561014f57600080fd5b50600054600160a01b900460ff166040519015158152602001610110565b34801561017957600080fd5b506100da610323565b34801561018e57600080fd5b506100da610335565b6100da6101a53660046106bd565b610345565b3480156101b657600080fd5b506000546001600160a01b03166100fc565b3480156101d457600080fd5b506101de60025481565b604051908152602001610110565b3480156101f857600080fd5b506100da6102073660046106df565b6103e6565b34801561021857600080fd5b506100da61022736600461068d565b610433565b6102346104ae565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331480159061027c57506001546001600160a01b03163314155b1561029a5760405163ea8e4eb560e01b815260040160405180910390fd5b6001546040516000916001600160a01b03169047908381818185875af1925050503d80600081146102e7576040519150601f19603f3d011682016040523d82523d6000602084013e6102ec565b606091505b505090508061030e576040516312171d8360e31b815260040160405180910390fd5b50565b6103196104ae565b610321610508565b565b61032b6104ae565b610321600061055d565b61033d6104ae565b6103216105ad565b61034d6105f0565b8060000361036e576040516312701e1160e21b815260040160405180910390fd5b60025461037b90826106f8565b341461039a5760405163569e8c1160e01b815260040160405180910390fd5b6002546040805134815260208101929092528101829052829033907fb86214a4279a20a54d285b199dacc279dfcf90b1fb326007a954223a96112bc89060600160405180910390a35050565b6103ee6104ae565b600280549082905560408051828152602081018490527f389d78c87e0fc1eb21435fac2e29ba666a3c84b3880a5afb4b56ba70c9d58a98910160405180910390a15050565b61043b6104ae565b6001600160a01b0381166104a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b61030e8161055d565b6000546001600160a01b031633146103215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161049c565b61051061063d565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6105b56105f0565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586105403390565b600054600160a01b900460ff16156103215760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161049c565b600054600160a01b900460ff166103215760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161049c565b60006020828403121561069f57600080fd5b81356001600160a01b03811681146106b657600080fd5b9392505050565b600080604083850312156106d057600080fd5b50508035926020909101359150565b6000602082840312156106f157600080fd5b5035919050565b808202811582820484141761071d57634e487b7160e01b600052601160045260246000fd5b9291505056fea2646970667358221220a1d23b90fce985a207f189fa6f11d9c005c6e2f0fe079376737a7a29a4e9592064736f6c63430008110033000000000000000000000000b21f2a5c2478b255dca85cb0d4b178db7ae42071

Deployed Bytecode

0x6080604052600436106100ab5760003560e01c80638456cb59116100645780638456cb591461018257806385d45a1a146101975780638da5cb5b146101aa578063c74f907e146101c8578063dd7f7aa9146101ec578063f2fde38b1461020c57600080fd5b80631c31f710146100ba57806338af3eed146100dc5780633ccfd60b146101195780633f4ba83a1461012e5780635c975abb14610143578063715018a61461016d57600080fd5b366100b557600080fd5b600080fd5b3480156100c657600080fd5b506100da6100d536600461068d565b61022c565b005b3480156100e857600080fd5b506001546100fc906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561012557600080fd5b506100da610256565b34801561013a57600080fd5b506100da610311565b34801561014f57600080fd5b50600054600160a01b900460ff166040519015158152602001610110565b34801561017957600080fd5b506100da610323565b34801561018e57600080fd5b506100da610335565b6100da6101a53660046106bd565b610345565b3480156101b657600080fd5b506000546001600160a01b03166100fc565b3480156101d457600080fd5b506101de60025481565b604051908152602001610110565b3480156101f857600080fd5b506100da6102073660046106df565b6103e6565b34801561021857600080fd5b506100da61022736600461068d565b610433565b6102346104ae565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331480159061027c57506001546001600160a01b03163314155b1561029a5760405163ea8e4eb560e01b815260040160405180910390fd5b6001546040516000916001600160a01b03169047908381818185875af1925050503d80600081146102e7576040519150601f19603f3d011682016040523d82523d6000602084013e6102ec565b606091505b505090508061030e576040516312171d8360e31b815260040160405180910390fd5b50565b6103196104ae565b610321610508565b565b61032b6104ae565b610321600061055d565b61033d6104ae565b6103216105ad565b61034d6105f0565b8060000361036e576040516312701e1160e21b815260040160405180910390fd5b60025461037b90826106f8565b341461039a5760405163569e8c1160e01b815260040160405180910390fd5b6002546040805134815260208101929092528101829052829033907fb86214a4279a20a54d285b199dacc279dfcf90b1fb326007a954223a96112bc89060600160405180910390a35050565b6103ee6104ae565b600280549082905560408051828152602081018490527f389d78c87e0fc1eb21435fac2e29ba666a3c84b3880a5afb4b56ba70c9d58a98910160405180910390a15050565b61043b6104ae565b6001600160a01b0381166104a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b61030e8161055d565b6000546001600160a01b031633146103215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161049c565b61051061063d565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6105b56105f0565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586105403390565b600054600160a01b900460ff16156103215760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161049c565b600054600160a01b900460ff166103215760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161049c565b60006020828403121561069f57600080fd5b81356001600160a01b03811681146106b657600080fd5b9392505050565b600080604083850312156106d057600080fd5b50508035926020909101359150565b6000602082840312156106f157600080fd5b5035919050565b808202811582820484141761071d57634e487b7160e01b600052601160045260246000fd5b9291505056fea2646970667358221220a1d23b90fce985a207f189fa6f11d9c005c6e2f0fe079376737a7a29a4e9592064736f6c63430008110033

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

000000000000000000000000b21f2a5c2478b255dca85cb0d4b178db7ae42071

-----Decoded View---------------
Arg [0] : beneficiary_ (address): 0xb21F2a5c2478B255DCA85CB0D4B178Db7AE42071

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b21f2a5c2478b255dca85cb0d4b178db7ae42071


Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.