ETH Price: $3,040.91 (+0.57%)
Gas: 3 Gwei

Contract

0xc71b9FF588323A7F52c9F91130f397036bd0a508
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Withdraw138430152021-12-20 16:04:08932 days ago1640016248IN
0xc71b9FF5...36bd0a508
0 ETH0.0018081655.95271079
Redeem136560502021-11-21 4:26:26961 days ago1637468786IN
0xc71b9FF5...36bd0a508
0.05 ETH0.0018814260
Redeem136490402021-11-20 1:35:24962 days ago1637372124IN
0xc71b9FF5...36bd0a508
0.05 ETH0.0026307698.39434203
Redeem136490392021-11-20 1:35:20962 days ago1637372120IN
0xc71b9FF5...36bd0a508
0.05 ETH0.00291729109.11073187
Redeem136485042021-11-19 23:36:19963 days ago1637364979IN
0xc71b9FF5...36bd0a508
0.05 ETH0.0020713477.4711248
Redeem136471382021-11-19 18:28:48963 days ago1637346528IN
0xc71b9FF5...36bd0a508
0.4 ETH0.00311342116.44620357
Redeem136471352021-11-19 18:28:33963 days ago1637346513IN
0xc71b9FF5...36bd0a508
0.1 ETH0.00322465120.60640759
Redeem136471352021-11-19 18:28:33963 days ago1637346513IN
0xc71b9FF5...36bd0a508
0.05 ETH0.00322465120.60640759
Redeem136471302021-11-19 18:27:44963 days ago1637346464IN
0xc71b9FF5...36bd0a508
0.35 ETH0.00520569194.7
Redeem136471302021-11-19 18:27:44963 days ago1637346464IN
0xc71b9FF5...36bd0a508
0.2 ETH0.00349987130.9
Redeem136471272021-11-19 18:27:15963 days ago1637346435IN
0xc71b9FF5...36bd0a508
0.05 ETH0.00360949135
Redeem136471142021-11-19 18:24:58963 days ago1637346298IN
0xc71b9FF5...36bd0a508
0.2 ETH0.00481266180
Redeem136471092021-11-19 18:23:25963 days ago1637346205IN
0xc71b9FF5...36bd0a508
0.05 ETH0.00528102197.51739514
Redeem136471082021-11-19 18:23:16963 days ago1637346196IN
0xc71b9FF5...36bd0a508
0.05 ETH0.00559791209.36955774
Redeem136471072021-11-19 18:22:14963 days ago1637346134IN
0xc71b9FF5...36bd0a508
0.3 ETH0.00497051185.90404152
Redeem136471072021-11-19 18:22:14963 days ago1637346134IN
0xc71b9FF5...36bd0a508
0.15 ETH0.00498388186.40404152
Redeem136471072021-11-19 18:22:14963 days ago1637346134IN
0xc71b9FF5...36bd0a508
0.05 ETH0.00498388186.40404152
Redeem136471072021-11-19 18:22:14963 days ago1637346134IN
0xc71b9FF5...36bd0a508
0.25 ETH0.00498388186.40404152
Redeem136471072021-11-19 18:22:14963 days ago1637346134IN
0xc71b9FF5...36bd0a508
0.1 ETH0.00498388186.40404152
Redeem136471072021-11-19 18:22:14963 days ago1637346134IN
0xc71b9FF5...36bd0a508
0.65 ETH0.00498388186.40404152
Redeem136471052021-11-19 18:21:33963 days ago1637346093IN
0xc71b9FF5...36bd0a508
0.05 ETH0.01309996187.75123675
Redeem136471052021-11-19 18:21:33963 days ago1637346093IN
0xc71b9FF5...36bd0a508
0.5 ETH0.01638975188.232229
Redeem136471052021-11-19 18:21:33963 days ago1637346093IN
0xc71b9FF5...36bd0a508
0.1 ETH0.01638975188.232229
Redeem136471052021-11-19 18:21:33963 days ago1637346093IN
0xc71b9FF5...36bd0a508
0.25 ETH0.01638975188.232229
Redeem136471052021-11-19 18:21:33963 days ago1637346093IN
0xc71b9FF5...36bd0a508
0.25 ETH0.01643329188.732229
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To Value
138430152021-12-20 16:04:08932 days ago1640016248
0xc71b9FF5...36bd0a508
142.35 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
FootballClubSale

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

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

import {Address} from "@openzeppelin/contracts/utils/Address.sol";

import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

import {IFootballClub} from "./interfaces/IFootballClub.sol";

contract FootballClubSale is Ownable {
    using Address for address;

    IFootballClub public footballClub;

    uint256 private price = 0.05 ether;
    uint256 public clubsClaimed;

    uint256 internal constant MINT_LIMIT = 3060;

    uint256 private constant PHASE_1_TIMESTAMP = 1636999200;
    uint256 private constant PHASE_2_TIMESTAMP = 1637172000;
    uint256 private constant PHASE_3_TIMESTAMP = 1637344800;

    bytes32 internal whitelistMerkleRootPhase1;
    bytes32 internal whitelistMerkleRootPhase2;
    bytes32 internal advisorMerkleRoot;
    bytes32 public metadataMerkleRoot;

    event Withdraw(bool indexed sent, bytes data);

    mapping(bytes32 => mapping(address => uint256)) public redemptions;

    constructor(
        IFootballClub _footballClub,
        bytes32 _whitelistMerkleRootPhase1,
        bytes32 _whitelistMerkleRootPhase2,
        bytes32 _advisorMerkleRoot,
        bytes32 _metadataMerkleRoot,
        uint256 _advisorAllocation
    ) {
        footballClub = _footballClub;
        whitelistMerkleRootPhase1 = _whitelistMerkleRootPhase1;
        whitelistMerkleRootPhase2 = _whitelistMerkleRootPhase2;
        advisorMerkleRoot = _advisorMerkleRoot;
        metadataMerkleRoot = _metadataMerkleRoot;

        clubsClaimed = _advisorAllocation;
    }

    function preMint(uint256 _tokenId, bytes32[] calldata proof) external {
        require(_tokenId >= 1 && _tokenId <= 213, "Must be the correct token range");
        require(
            _advisorVerify(_advisorLeaf(_tokenId, msg.sender), proof),
            "must be on the advisor whitelist"
        );

        footballClub.safeMint(msg.sender, _tokenId);
    }

    function _advisorVerify(bytes32 leaf, bytes32[] memory proof)
        internal
        view
        returns (bool)
    {
        return MerkleProof.verify(proof, advisorMerkleRoot, leaf);
    }

    function _advisorLeaf(uint256 _tokenId, address account)
        internal
        pure
        returns (bytes32)
    {
        return keccak256(abi.encodePacked(_tokenId, account));
    }

    function _leaf(address account, uint256 amount)
        internal
        pure
        returns (bytes32)
    {
        return keccak256(abi.encodePacked(account, amount));
    }

    //need to check to ensure hasn't already minted
    //map address to an integer - i.e. how many times has this address been minted for this phase
    //pass in a dummy proof for the first stage
    function redeem(
        uint256 _amount,
        uint256 _maxAmount,
        bytes32[] calldata proof
    ) external payable {
        require(msg.value >= _amount * price, "Insufficient payment");
        require(_amount <= 50, "Incorrect amount");
        require(_maxAmount > 0 && _maxAmount <= 50, "Incorrect max amount");

        bytes32 whitelistMerkleRoot;

        require(block.timestamp >= PHASE_1_TIMESTAMP, "whitelist not started");

        if (block.timestamp < PHASE_2_TIMESTAMP) {
            whitelistMerkleRoot = whitelistMerkleRootPhase1;
        } else if (block.timestamp < PHASE_3_TIMESTAMP) {
            whitelistMerkleRoot = whitelistMerkleRootPhase2;
        } else {
            for (uint256 i = 0; i < _amount; i++) {
                require(clubsClaimed < MINT_LIMIT, "Cannot mint past limit");

                clubsClaimed++;

                footballClub.safeMint(msg.sender, clubsClaimed);
            }

            return;
        }

        bool status = MerkleProof.verify(
            proof,
            whitelistMerkleRoot,
            _leaf(msg.sender, _maxAmount)
        );

        require(status, "Proof is invalid");

        for (uint256 i = 0; i < _amount; i++) {
            require(clubsClaimed < MINT_LIMIT, "Cannot mint past limit");
            require(
                redemptions[whitelistMerkleRoot][msg.sender] < _maxAmount,
                "Cannot mint more than alloted"
            );

            redemptions[whitelistMerkleRoot][msg.sender]++;
            clubsClaimed++;

            footballClub.safeMint(msg.sender, clubsClaimed);
        }
    }

    function verifyMetadata(bytes32 leaf, bytes32[] memory proof)
        public
        view
        returns (bool)
    {
        return MerkleProof.verify(proof, metadataMerkleRoot, leaf);
    }

    function withdraw() external onlyOwner {
        address payable owner = payable(owner());

        (bool sent, bytes memory data) = owner.call{
            value: address(this).balance
        }("");
        emit Withdraw(sent, data);
    }

    function setWhitelistMerkleRootPhase1(bytes32 _merkleRoot)
        external
        onlyOwner
    {
        whitelistMerkleRootPhase1 = _merkleRoot;
    }

    function setWhitelistMerkleRootPhase2(bytes32 _merkleRoot)
        external
        onlyOwner
    {
        whitelistMerkleRootPhase2 = _merkleRoot;
    }

    function setAdvisorMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        advisorMerkleRoot = _merkleRoot;
    }
}

File 2 of 6 : IFootballClub.sol
pragma solidity ^0.8.0;

interface IFootballClub {
    function safeMint(address, uint256) external;

    function pause() external;

    function unpause() external;

    function tokenURI() external view;

    function supportsInterface(bytes4) external view;
}

File 3 of 6 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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 4 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 6 : MerkleProof.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

File 6 of 6 : Context.sol
// SPDX-License-Identifier: MIT

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

[{"inputs":[{"internalType":"contract IFootballClub","name":"_footballClub","type":"address"},{"internalType":"bytes32","name":"_whitelistMerkleRootPhase1","type":"bytes32"},{"internalType":"bytes32","name":"_whitelistMerkleRootPhase2","type":"bytes32"},{"internalType":"bytes32","name":"_advisorMerkleRoot","type":"bytes32"},{"internalType":"bytes32","name":"_metadataMerkleRoot","type":"bytes32"},{"internalType":"uint256","name":"_advisorAllocation","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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":true,"internalType":"bool","name":"sent","type":"bool"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"clubsClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"footballClub","outputs":[{"internalType":"contract IFootballClub","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"preMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_maxAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"redeem","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"address","name":"","type":"address"}],"name":"redemptions","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setAdvisorMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRootPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRootPhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"verifyMetadata","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266b1a2bc2ec5000060025534801561001b57600080fd5b506040516110d63803806110d683398101604081905261003a916100ce565b6100433361007e565b600180546001600160a01b0319166001600160a01b03979097169690961790955560049390935560059190915560065560075560035561012b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008060008060008060c087890312156100e6578182fd5b86516001600160a01b03811681146100fc578283fd5b6020880151604089015160608a015160808b015160a0909b0151939c929b509099909850965090945092505050565b610f9c8061013a6000396000f3fe6080604052600436106100dd5760003560e01c80638ba45ef01161007f578063b97bff1a11610059578063b97bff1a14610245578063cf2e001f14610258578063e9b66eb614610288578063f2fde38b1461029e57600080fd5b80638ba45ef0146101f15780638da5cb5b146102075780638e8afc521461022557600080fd5b80635a546223116100bb5780635a5462231461017c5780636a96071e1461019c578063715018a6146101bc57806380db6624146101d157600080fd5b80631d7428c9146100e2578063382be3f81461012d5780633ccfd60b14610165575b600080fd5b3480156100ee57600080fd5b5061011a6100fd366004610ce6565b600860209081526000928352604080842090915290825290205481565b6040519081526020015b60405180910390f35b34801561013957600080fd5b5060015461014d906001600160a01b031681565b6040516001600160a01b039091168152602001610124565b34801561017157600080fd5b5061017a6102be565b005b34801561018857600080fd5b5061017a610197366004610ddd565b61038c565b3480156101a857600080fd5b5061017a6101b7366004610cce565b6104e5565b3480156101c857600080fd5b5061017a610514565b3480156101dd57600080fd5b5061017a6101ec366004610cce565b61054a565b3480156101fd57600080fd5b5061011a60075481565b34801561021357600080fd5b506000546001600160a01b031661014d565b34801561023157600080fd5b5061017a610240366004610cce565b610579565b61017a610253366004610e27565b6105a8565b34801561026457600080fd5b50610278610273366004610d11565b610a05565b6040519015158152602001610124565b34801561029457600080fd5b5061011a60035481565b3480156102aa57600080fd5b5061017a6102b9366004610cb4565b610a1b565b6000546001600160a01b031633146102f15760405162461bcd60e51b81526004016102e890610ecb565b60405180910390fd5b600080546040516001600160a01b0390911691908190839047908381818185875af1925050503d8060008114610343576040519150601f19603f3d011682016040523d82523d6000602084013e610348565b606091505b50915091508115157f1a64e93dceccd50dcc332d5d0f17947c7ea879d882320a16e5d5cd9dd92de3a68260405161037f9190610e78565b60405180910390a2505050565b6001831015801561039e575060d58311155b6103ea5760405162461bcd60e51b815260206004820152601f60248201527f4d7573742062652074686520636f727265637420746f6b656e2072616e67650060448201526064016102e8565b6104306103f78433610ab6565b838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250610b0492505050565b61047c5760405162461bcd60e51b815260206004820181905260248201527f6d757374206265206f6e207468652061647669736f722077686974656c69737460448201526064016102e8565b600154604051632851206560e21b8152336004820152602481018590526001600160a01b039091169063a144819490604401600060405180830381600087803b1580156104c857600080fd5b505af11580156104dc573d6000803e3d6000fd5b50505050505050565b6000546001600160a01b0316331461050f5760405162461bcd60e51b81526004016102e890610ecb565b600655565b6000546001600160a01b0316331461053e5760405162461bcd60e51b81526004016102e890610ecb565b6105486000610b13565b565b6000546001600160a01b031633146105745760405162461bcd60e51b81526004016102e890610ecb565b600455565b6000546001600160a01b031633146105a35760405162461bcd60e51b81526004016102e890610ecb565b600555565b6002546105b59085610f00565b3410156105fb5760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b60448201526064016102e8565b603284111561063f5760405162461bcd60e51b815260206004820152601060248201526f125b98dbdc9c9958dd08185b5bdd5b9d60821b60448201526064016102e8565b600083118015610650575060328311155b6106935760405162461bcd60e51b8152602060048201526014602482015273125b98dbdc9c9958dd081b585e08185b5bdd5b9d60621b60448201526064016102e8565b6000636192a0204210156106e15760405162461bcd60e51b81526020600482015260156024820152741dda1a5d195b1a5cdd081b9bdd081cdd185c9d1959605a1b60448201526064016102e8565b63619543204210156106f657506004546107f9565b636197e62042101561070b57506005546107f9565b60005b858110156107f257610bf4600354106107625760405162461bcd60e51b815260206004820152601660248201527510d85b9b9bdd081b5a5b9d081c185cdd081b1a5b5a5d60521b60448201526064016102e8565b6003805490600061077283610f1f565b9091555050600154600354604051632851206560e21b815233600482015260248101919091526001600160a01b039091169063a144819490604401600060405180830381600087803b1580156107c757600080fd5b505af11580156107db573d6000803e3d6000fd5b5050505080806107ea90610f1f565b91505061070e565b50506109ff565b600061084484848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525086925061083f915033905089610b63565b610b91565b9050806108865760405162461bcd60e51b815260206004820152601060248201526f141c9bdbd9881a5cc81a5b9d985b1a5960821b60448201526064016102e8565b60005b868110156104dc57610bf4600354106108dd5760405162461bcd60e51b815260206004820152601660248201527510d85b9b9bdd081b5a5b9d081c185cdd081b1a5b5a5d60521b60448201526064016102e8565b600083815260086020908152604080832033845290915290205486116109455760405162461bcd60e51b815260206004820152601d60248201527f43616e6e6f74206d696e74206d6f7265207468616e20616c6c6f74656400000060448201526064016102e8565b6000838152600860209081526040808320338452909152812080549161096a83610f1f565b90915550506003805490600061097f83610f1f565b9091555050600154600354604051632851206560e21b815233600482015260248101919091526001600160a01b039091169063a144819490604401600060405180830381600087803b1580156109d457600080fd5b505af11580156109e8573d6000803e3d6000fd5b5050505080806109f790610f1f565b915050610889565b50505050565b6000610a148260075485610b91565b9392505050565b6000546001600160a01b03163314610a455760405162461bcd60e51b81526004016102e890610ecb565b6001600160a01b038116610aaa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102e8565b610ab381610b13565b50565b60008282604051602001610ae692919091825260601b6bffffffffffffffffffffffff1916602082015260340190565b60405160208183030381529060405280519060200120905092915050565b6000610a148260065485610b91565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040516bffffffffffffffffffffffff19606084901b16602082015260348101829052600090605401610ae6565b600081815b8551811015610c43576000868281518110610bc157634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311610c03576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250610c30565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080610c3b81610f1f565b915050610b96565b509092149392505050565b80356001600160a01b0381168114610c6557600080fd5b919050565b60008083601f840112610c7b578081fd5b50813567ffffffffffffffff811115610c92578182fd5b6020830191508360208260051b8501011115610cad57600080fd5b9250929050565b600060208284031215610cc5578081fd5b610a1482610c4e565b600060208284031215610cdf578081fd5b5035919050565b60008060408385031215610cf8578081fd5b82359150610d0860208401610c4e565b90509250929050565b60008060408385031215610d23578182fd5b8235915060208084013567ffffffffffffffff80821115610d42578384fd5b818601915086601f830112610d55578384fd5b813581811115610d6757610d67610f50565b8060051b604051601f19603f83011681018181108582111715610d8c57610d8c610f50565b604052828152858101935084860182860187018b1015610daa578788fd5b8795505b83861015610dcc578035855260019590950194938601938601610dae565b508096505050505050509250929050565b600080600060408486031215610df1578081fd5b83359250602084013567ffffffffffffffff811115610e0e578182fd5b610e1a86828701610c6a565b9497909650939450505050565b60008060008060608587031215610e3c578081fd5b8435935060208501359250604085013567ffffffffffffffff811115610e60578182fd5b610e6c87828801610c6a565b95989497509550505050565b6000602080835283518082850152825b81811015610ea457858101830151858201604001528201610e88565b81811115610eb55783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000816000190483118215151615610f1a57610f1a610f3a565b500290565b6000600019821415610f3357610f33610f3a565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220b21d524511c53c0ecced35fde1fa84534f91661c2a06f50c633ad210e6774d4864736f6c63430008040033000000000000000000000000659cf1306edba213d1fb8f9352b4593a82b05d0c0d1256fb676fbc216094918d9a060ea2b077dfa9297cf4d2c8a1737f4a1ed9f3e9461901bc5773eab0b4a9aaddab0ad1ae241a22168125a29e43f45e4aa60bab8cac1c57420f4906864c855b8b7ce1f06b91086cfd8c815ac1f8d41788b61756288df31d1218cabf78de9245278b9d46c409509c2806a5a0787f8829a19c26da00000000000000000000000000000000000000000000000000000000000000d5

Deployed Bytecode

0x6080604052600436106100dd5760003560e01c80638ba45ef01161007f578063b97bff1a11610059578063b97bff1a14610245578063cf2e001f14610258578063e9b66eb614610288578063f2fde38b1461029e57600080fd5b80638ba45ef0146101f15780638da5cb5b146102075780638e8afc521461022557600080fd5b80635a546223116100bb5780635a5462231461017c5780636a96071e1461019c578063715018a6146101bc57806380db6624146101d157600080fd5b80631d7428c9146100e2578063382be3f81461012d5780633ccfd60b14610165575b600080fd5b3480156100ee57600080fd5b5061011a6100fd366004610ce6565b600860209081526000928352604080842090915290825290205481565b6040519081526020015b60405180910390f35b34801561013957600080fd5b5060015461014d906001600160a01b031681565b6040516001600160a01b039091168152602001610124565b34801561017157600080fd5b5061017a6102be565b005b34801561018857600080fd5b5061017a610197366004610ddd565b61038c565b3480156101a857600080fd5b5061017a6101b7366004610cce565b6104e5565b3480156101c857600080fd5b5061017a610514565b3480156101dd57600080fd5b5061017a6101ec366004610cce565b61054a565b3480156101fd57600080fd5b5061011a60075481565b34801561021357600080fd5b506000546001600160a01b031661014d565b34801561023157600080fd5b5061017a610240366004610cce565b610579565b61017a610253366004610e27565b6105a8565b34801561026457600080fd5b50610278610273366004610d11565b610a05565b6040519015158152602001610124565b34801561029457600080fd5b5061011a60035481565b3480156102aa57600080fd5b5061017a6102b9366004610cb4565b610a1b565b6000546001600160a01b031633146102f15760405162461bcd60e51b81526004016102e890610ecb565b60405180910390fd5b600080546040516001600160a01b0390911691908190839047908381818185875af1925050503d8060008114610343576040519150601f19603f3d011682016040523d82523d6000602084013e610348565b606091505b50915091508115157f1a64e93dceccd50dcc332d5d0f17947c7ea879d882320a16e5d5cd9dd92de3a68260405161037f9190610e78565b60405180910390a2505050565b6001831015801561039e575060d58311155b6103ea5760405162461bcd60e51b815260206004820152601f60248201527f4d7573742062652074686520636f727265637420746f6b656e2072616e67650060448201526064016102e8565b6104306103f78433610ab6565b838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250610b0492505050565b61047c5760405162461bcd60e51b815260206004820181905260248201527f6d757374206265206f6e207468652061647669736f722077686974656c69737460448201526064016102e8565b600154604051632851206560e21b8152336004820152602481018590526001600160a01b039091169063a144819490604401600060405180830381600087803b1580156104c857600080fd5b505af11580156104dc573d6000803e3d6000fd5b50505050505050565b6000546001600160a01b0316331461050f5760405162461bcd60e51b81526004016102e890610ecb565b600655565b6000546001600160a01b0316331461053e5760405162461bcd60e51b81526004016102e890610ecb565b6105486000610b13565b565b6000546001600160a01b031633146105745760405162461bcd60e51b81526004016102e890610ecb565b600455565b6000546001600160a01b031633146105a35760405162461bcd60e51b81526004016102e890610ecb565b600555565b6002546105b59085610f00565b3410156105fb5760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b60448201526064016102e8565b603284111561063f5760405162461bcd60e51b815260206004820152601060248201526f125b98dbdc9c9958dd08185b5bdd5b9d60821b60448201526064016102e8565b600083118015610650575060328311155b6106935760405162461bcd60e51b8152602060048201526014602482015273125b98dbdc9c9958dd081b585e08185b5bdd5b9d60621b60448201526064016102e8565b6000636192a0204210156106e15760405162461bcd60e51b81526020600482015260156024820152741dda1a5d195b1a5cdd081b9bdd081cdd185c9d1959605a1b60448201526064016102e8565b63619543204210156106f657506004546107f9565b636197e62042101561070b57506005546107f9565b60005b858110156107f257610bf4600354106107625760405162461bcd60e51b815260206004820152601660248201527510d85b9b9bdd081b5a5b9d081c185cdd081b1a5b5a5d60521b60448201526064016102e8565b6003805490600061077283610f1f565b9091555050600154600354604051632851206560e21b815233600482015260248101919091526001600160a01b039091169063a144819490604401600060405180830381600087803b1580156107c757600080fd5b505af11580156107db573d6000803e3d6000fd5b5050505080806107ea90610f1f565b91505061070e565b50506109ff565b600061084484848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525086925061083f915033905089610b63565b610b91565b9050806108865760405162461bcd60e51b815260206004820152601060248201526f141c9bdbd9881a5cc81a5b9d985b1a5960821b60448201526064016102e8565b60005b868110156104dc57610bf4600354106108dd5760405162461bcd60e51b815260206004820152601660248201527510d85b9b9bdd081b5a5b9d081c185cdd081b1a5b5a5d60521b60448201526064016102e8565b600083815260086020908152604080832033845290915290205486116109455760405162461bcd60e51b815260206004820152601d60248201527f43616e6e6f74206d696e74206d6f7265207468616e20616c6c6f74656400000060448201526064016102e8565b6000838152600860209081526040808320338452909152812080549161096a83610f1f565b90915550506003805490600061097f83610f1f565b9091555050600154600354604051632851206560e21b815233600482015260248101919091526001600160a01b039091169063a144819490604401600060405180830381600087803b1580156109d457600080fd5b505af11580156109e8573d6000803e3d6000fd5b5050505080806109f790610f1f565b915050610889565b50505050565b6000610a148260075485610b91565b9392505050565b6000546001600160a01b03163314610a455760405162461bcd60e51b81526004016102e890610ecb565b6001600160a01b038116610aaa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102e8565b610ab381610b13565b50565b60008282604051602001610ae692919091825260601b6bffffffffffffffffffffffff1916602082015260340190565b60405160208183030381529060405280519060200120905092915050565b6000610a148260065485610b91565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040516bffffffffffffffffffffffff19606084901b16602082015260348101829052600090605401610ae6565b600081815b8551811015610c43576000868281518110610bc157634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311610c03576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250610c30565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080610c3b81610f1f565b915050610b96565b509092149392505050565b80356001600160a01b0381168114610c6557600080fd5b919050565b60008083601f840112610c7b578081fd5b50813567ffffffffffffffff811115610c92578182fd5b6020830191508360208260051b8501011115610cad57600080fd5b9250929050565b600060208284031215610cc5578081fd5b610a1482610c4e565b600060208284031215610cdf578081fd5b5035919050565b60008060408385031215610cf8578081fd5b82359150610d0860208401610c4e565b90509250929050565b60008060408385031215610d23578182fd5b8235915060208084013567ffffffffffffffff80821115610d42578384fd5b818601915086601f830112610d55578384fd5b813581811115610d6757610d67610f50565b8060051b604051601f19603f83011681018181108582111715610d8c57610d8c610f50565b604052828152858101935084860182860187018b1015610daa578788fd5b8795505b83861015610dcc578035855260019590950194938601938601610dae565b508096505050505050509250929050565b600080600060408486031215610df1578081fd5b83359250602084013567ffffffffffffffff811115610e0e578182fd5b610e1a86828701610c6a565b9497909650939450505050565b60008060008060608587031215610e3c578081fd5b8435935060208501359250604085013567ffffffffffffffff811115610e60578182fd5b610e6c87828801610c6a565b95989497509550505050565b6000602080835283518082850152825b81811015610ea457858101830151858201604001528201610e88565b81811115610eb55783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000816000190483118215151615610f1a57610f1a610f3a565b500290565b6000600019821415610f3357610f33610f3a565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220b21d524511c53c0ecced35fde1fa84534f91661c2a06f50c633ad210e6774d4864736f6c63430008040033

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

000000000000000000000000659cf1306edba213d1fb8f9352b4593a82b05d0c0d1256fb676fbc216094918d9a060ea2b077dfa9297cf4d2c8a1737f4a1ed9f3e9461901bc5773eab0b4a9aaddab0ad1ae241a22168125a29e43f45e4aa60bab8cac1c57420f4906864c855b8b7ce1f06b91086cfd8c815ac1f8d41788b61756288df31d1218cabf78de9245278b9d46c409509c2806a5a0787f8829a19c26da00000000000000000000000000000000000000000000000000000000000000d5

-----Decoded View---------------
Arg [0] : _footballClub (address): 0x659cf1306eDBA213D1fb8F9352B4593A82B05d0c
Arg [1] : _whitelistMerkleRootPhase1 (bytes32): 0x0d1256fb676fbc216094918d9a060ea2b077dfa9297cf4d2c8a1737f4a1ed9f3
Arg [2] : _whitelistMerkleRootPhase2 (bytes32): 0xe9461901bc5773eab0b4a9aaddab0ad1ae241a22168125a29e43f45e4aa60bab
Arg [3] : _advisorMerkleRoot (bytes32): 0x8cac1c57420f4906864c855b8b7ce1f06b91086cfd8c815ac1f8d41788b61756
Arg [4] : _metadataMerkleRoot (bytes32): 0x288df31d1218cabf78de9245278b9d46c409509c2806a5a0787f8829a19c26da
Arg [5] : _advisorAllocation (uint256): 213

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000659cf1306edba213d1fb8f9352b4593a82b05d0c
Arg [1] : 0d1256fb676fbc216094918d9a060ea2b077dfa9297cf4d2c8a1737f4a1ed9f3
Arg [2] : e9461901bc5773eab0b4a9aaddab0ad1ae241a22168125a29e43f45e4aa60bab
Arg [3] : 8cac1c57420f4906864c855b8b7ce1f06b91086cfd8c815ac1f8d41788b61756
Arg [4] : 288df31d1218cabf78de9245278b9d46c409509c2806a5a0787f8829a19c26da
Arg [5] : 00000000000000000000000000000000000000000000000000000000000000d5


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
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.