ETH Price: $3,227.81 (-1.99%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Checkout167390712023-03-02 6:21:47693 days ago1677738107IN
0x8a8e18eF...e42f0ED72
0.39268211 ETH0.0019380726.16972382
Withdraw167125152023-02-26 12:49:59697 days ago1677415799IN
0x8a8e18eF...e42f0ED72
0 ETH0.0006197819.91279497
Checkout167124222023-02-26 12:30:59697 days ago1677414659IN
0x8a8e18eF...e42f0ED72
0.02347747 ETH0.0015181722.78479836

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
167449422023-03-03 2:14:11692 days ago1677809651
0x8a8e18eF...e42f0ED72
0.39268211 ETH
167125152023-02-26 12:49:59697 days ago1677415799
0x8a8e18eF...e42f0ED72
0.02347747 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
DopaminePrimaryCheckout

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 18 : DopaminePrimaryCheckout.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.18;

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

import {IERC173} from "../interfaces/utils/IERC173.sol";
import {IDopaminePrimaryCheckout} from "../interfaces/payments/IDopaminePrimaryCheckout.sol";

import {Ownable} from "../utils/Ownable.sol";
import {ReentrancyGuard} from "../utils/ReentrancyGuard.sol";
import {EIP712Signable} from "../utils/EIP712Signable.sol";
import {Order, Bundle} from "./DopaminePrimaryCheckoutStructs.sol";

////////////////////////////////////////////////////////////////////////////////
///              ░▒█▀▀▄░█▀▀█░▒█▀▀█░█▀▀▄░▒█▀▄▀█░▄█░░▒█▄░▒█░▒█▀▀▀              ///
///              ░▒█░▒█░█▄▀█░▒█▄▄█▒█▄▄█░▒█▒█▒█░░█▒░▒█▒█▒█░▒█▀▀▀              ///
///              ░▒█▄▄█░█▄▄█░▒█░░░▒█░▒█░▒█░░▒█░▄█▄░▒█░░▀█░▒█▄▄▄              ///
////////////////////////////////////////////////////////////////////////////////

/// @title  Dopamine Primary Checkout
/// @author @leeren
/// @notice Crypto checkout attribution for Dopamine Streetwear+ bundle orders.
contract DopaminePrimaryCheckout is ReentrancyGuard, Ownable, EIP712Signable, IDopaminePrimaryCheckout {

    /// @notice Do not permit more than 10 bundles to be purchased at a time.
    uint256 MAX_BUNDLES = 10;

    /// @notice EIP-712 claim hash used for processing and validating orders.
    bytes32 public constant ORDER_TYPEHASH = keccak256("Order(string id,address purchaser,Bundle[] bundles)Bundle(uint64 brand,uint64 collection,uint64 colorway,uint64 size,uint256 price)");
    bytes32 public constant BUNDLE_TYPEHASH = keccak256("Bundle(uint64 brand,uint64 collection,uint64 colorway,uint64 size,uint256 price)");

    /// @notice Tracks whether a bundle was purchased or not.
    mapping(string => bool) public orderProcessed;

    /// @notice Instantiates the Dopamine Primary Checkout contract.
    /// @param signer Address whose sigs are used for purchase verification.
	constructor(address signer) {
        setSigner(signer, true);
    }

    /// @notice Gets the EIP-712 order hash or tracking crypto-based purchases.
    /// @param id The Dopamine tracking identifier associated with the order.
    /// @param purchaser The address granted permission to make the purchase.
    /// @param bundles A list of bundled products included in the order.
    /// @return The EIP-712 hash identifying the marketplace order.
    function getOrderHash(
        string memory id,
        address purchaser,
        Bundle[] calldata bundles
    ) public pure returns (bytes32) {
        bytes32[] memory bundleHashes = new bytes32[](bundles.length);
        Bundle memory bundle;
        for (uint256 i = 0; i < bundles.length; ++i) {
            bundle = bundles[i];
            bundleHashes[i] = getBundleHash(
                bundle.brand, bundle.collection, bundle.colorway, bundle.size, bundle.price
            );
        }
        return keccak256(
            abi.encode(
                ORDER_TYPEHASH,
                keccak256(bytes(id)),
                purchaser,
                keccak256(abi.encodePacked(bundleHashes))
            )
        );
    }

    /// @notice Gets the EIP-712 bundle hash for a specific merchandise item.
    /// @param brand The identifier for the bundle brand.
    /// @param collection The product identifier for a bundle.
    /// @param colorway The chosen bundle colorway identifier.
    /// @param size The size identifier for a bundle.
    /// @param price The price (in USD) of the individual bundle.
    /// @return The EIP-712 hash identifying the bundle.
    function getBundleHash(
        uint64 brand,
        uint64 collection,
        uint64 colorway,
        uint64 size,
        uint256 price
    ) public pure returns (bytes32) {
        return keccak256(
            abi.encode(
                BUNDLE_TYPEHASH,
                brand,
                collection,
                colorway,
                size,
                price
            )
        );
    }

    /// @notice Performs registered checkout of a crypto-based Dopamine order.
    /// @param order The bundle order to be processed.
    function checkout(Order calldata order) external payable nonReentrant {
        if (orderProcessed[order.id]) {
            revert OrderAlreadyProcessed();
        }
        if (order.bundles.length > MAX_BUNDLES) {
            revert OrderCapacityExceeded();
        }

        (bytes32 orderHash) = getOrderHash(
            order.id,
            order.purchaser,
            order.bundles
        );

        _verifySignature(
            order.signature,
            _deriveEIP712Digest(orderHash)
        );

        orderProcessed[order.id] = true;
        emit OrderFulfilled(orderHash, order.purchaser, order.bundles);
    }

    /// @notice Withdrawals all collected payments to the owner address.
    /// @param amount The amount in wei to withdraw.
    /// @param to The address to withdraw the wei to.
    function withdraw(uint256 amount, address to) public onlyOwner {
        if (amount > address(this).balance) {
            revert WithdrawalInvalid();
        }
        _transferETH(payable(to), amount);
    }

    /// @notice Sets up a new signer for authorizing checkouts.
    /// @param signer The address verifying crypto-based checkouts.
    /// @param setting Whether the signer has permission to verify checkouts.
    function setSigner(address signer, bool setting) public onlyOwner {
        signers[signer] = setting;
        emit DopamineCheckoutSignerSet(signer, setting);
    }

    /// @notice Checks if the given contract supports an interface.
    /// @param interfaceId The 4-byte ERC-165 interface identifier.
    function supportsInterface(bytes4 interfaceId) public override(IERC165, Ownable) pure returns (bool) {
        return interfaceId == type(IERC165).interfaceId ||
               interfaceId == type(IERC173).interfaceId;
    }

    /// @notice Transfers `amount` wei to address `to`.
    /// @param to The address receiving the transfer.
    /// @param amount The amount in wei being transferred.
    function _transferETH(address payable to, uint256 amount) public {
        (bool success, ) = to.call{value: amount}("");
        if(!success){
            revert EthTransferFailed();
        }
    }

    /// @notice EIP-712 name identifier used for signature verification.
    function _NAME() internal override pure returns (string memory) {
        return "Dopamine Primary Checkout";
    }

    /// @notice EIP-712 version identifier used for signature verification.
    function _VERSION() internal override pure returns (string memory) {
        return "1.0";
    }

}

File 2 of 18 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 3 of 18 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 4 of 18 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 5 of 18 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

File 6 of 18 : IDopaminePrimaryCheckout.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.18;

import {IDopaminePrimaryCheckoutEventsAndErrors} from "./IDopaminePrimaryCheckoutEventsAndErrors.sol";
import {IOwnable} from "../utils/IOwnable.sol";
import {Bundle, Order} from "../../payments/DopaminePrimaryCheckoutStructs.sol";
import {IEIP712Signable} from "../utils/IEIP712Signable.sol";

////////////////////////////////////////////////////////////////////////////////
///              ░▒█▀▀▄░█▀▀█░▒█▀▀█░█▀▀▄░▒█▀▄▀█░▄█░░▒█▄░▒█░▒█▀▀▀              ///
///              ░▒█░▒█░█▄▀█░▒█▄▄█▒█▄▄█░▒█▒█▒█░░█▒░▒█▒█▒█░▒█▀▀▀              ///
///              ░▒█▄▄█░█▄▄█░▒█░░░▒█░▒█░▒█░░▒█░▄█▄░▒█░░▀█░▒█▄▄▄              ///
////////////////////////////////////////////////////////////////////////////////

/// @title Dopamine Primary Checkout Interface
interface IDopaminePrimaryCheckout is IOwnable, IEIP712Signable, IDopaminePrimaryCheckoutEventsAndErrors {

    /// @notice Derives an order hash for a set of bundle purchases.
    function getOrderHash(
        string memory id,
        address purchaser,
        Bundle[] calldata bundles
    ) external returns (bytes32);

    /// @notice Derives the bundle hash associated with a specific bundle.
    function getBundleHash(
        uint64 brand,
        uint64 collection,
        uint64 colorway,
        uint64 size,
        uint256 price
    ) external returns (bytes32);

    /// @notice Processes a Dopamine bundle order.
    function checkout(Order calldata order) external payable;

    /// @notice Withdraw `amount` in wei from the contract address.
    function withdraw(uint256 amount, address to) external;

    /// @notice Sets an approved order signer for the contract.
    function setSigner(address signer, bool setting) external;

}

File 7 of 18 : IDopaminePrimaryCheckoutEventsAndErrors.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.18;

import {Bundle} from "../../payments/DopaminePrimaryCheckoutStructs.sol";

////////////////////////////////////////////////////////////////////////////////
///              ░▒█▀▀▄░█▀▀█░▒█▀▀█░█▀▀▄░▒█▀▄▀█░▄█░░▒█▄░▒█░▒█▀▀▀              ///
///              ░▒█░▒█░█▄▀█░▒█▄▄█▒█▄▄█░▒█▒█▒█░░█▒░▒█▒█▒█░▒█▀▀▀              ///
///              ░▒█▄▄█░█▄▄█░▒█░░░▒█░▒█░▒█░░▒█░▄█▄░▒█░░▀█░▒█▄▄▄              ///
////////////////////////////////////////////////////////////////////////////////

/// @title Dopamine Primary Checkout Events & Errors Interface
interface IDopaminePrimaryCheckoutEventsAndErrors {

    /// @notice Emits when new checkout signer permissions are set.
    /// @param signer The address whose signing permissions are being set.
    /// @param setting Whether or not the address may verify checkouts.
    event DopamineCheckoutSignerSet(address signer, bool setting);

    /// @notice Emits when an order is successfully fulfilled.
    /// @param orderHash The tracking identifier of the Dopamine order.
    /// @param purchaser The address who completed the checkout.
    /// @param bundles All bundled items included with the Dopamine order.
    event OrderFulfilled(
        bytes32 orderHash,
        address indexed purchaser,
        Bundle[] bundles
    );

    /// @notice The provided order has already been processed.
    error OrderAlreadyProcessed();

    /// @notice Error when transferring ETH to the sender.
    error EthTransferFailed();

    /// @notice The number of bundles ordered exceeds the maximum allowed.
    error OrderCapacityExceeded();

    /// @notice Insufficient payment provided for the purchase.
    error PaymentInsufficient();

    /// @notice Amount specified for withdrawal is invalid.
    error WithdrawalInvalid();

}

File 8 of 18 : IEIP712Signable.sol
pragma solidity ^0.8.18;

import {IEIP712SignableErrors} from "./IEIP712SignableErrors.sol";

////////////////////////////////////////////////////////////////////////////////
///              ░▒█▀▀▄░█▀▀█░▒█▀▀█░█▀▀▄░▒█▀▄▀█░▄█░░▒█▄░▒█░▒█▀▀▀              ///
///              ░▒█░▒█░█▄▀█░▒█▄▄█▒█▄▄█░▒█▒█▒█░░█▒░▒█▒█▒█░▒█▀▀▀              ///
///              ░▒█▄▄█░█▄▄█░▒█░░░▒█░▒█░▒█░░▒█░▄█▄░▒█░░▀█░▒█▄▄▄              ///
////////////////////////////////////////////////////////////////////////////////

/// @title EIP-712 Signable Interface
interface IEIP712Signable is IEIP712SignableErrors {

    /// @notice Returns all EIP-712 metadata pertaining to the contract.
    function EIP712Data() external view returns (
        string memory name,
        string memory version,
        address verifyingContract,
        bytes32 domainSeparator
    );

}

File 9 of 18 : IEIP712SignableErrors.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.18;

////////////////////////////////////////////////////////////////////////////////
///              ░▒█▀▀▄░█▀▀█░▒█▀▀█░█▀▀▄░▒█▀▄▀█░▄█░░▒█▄░▒█░▒█▀▀▀              ///
///              ░▒█░▒█░█▄▀█░▒█▄▄█▒█▄▄█░▒█▒█▒█░░█▒░▒█▒█▒█░▒█▀▀▀              ///
///              ░▒█▄▄█░█▄▄█░▒█░░░▒█░▒█░▒█░░▒█░▄█▄░▒█░░▀█░▒█▄▄▄              ///
////////////////////////////////////////////////////////////////////////////////

/// @title EIP712 Signable Errors Interface
interface IEIP712SignableErrors {

    /// @notice The provided signature has expired.
    error SignatureExpired();

    /// @notice The provided signature is not valid.
    error SignatureInvalid();

}

File 10 of 18 : IERC173.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.18;

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

import {IERC173Events} from "./IERC173Events.sol";

////////////////////////////////////////////////////////////////////////////////
///              ░▒█▀▀▄░█▀▀█░▒█▀▀█░█▀▀▄░▒█▀▄▀█░▄█░░▒█▄░▒█░▒█▀▀▀              ///
///              ░▒█░▒█░█▄▀█░▒█▄▄█▒█▄▄█░▒█▒█▒█░░█▒░▒█▒█▒█░▒█▀▀▀              ///
///              ░▒█▄▄█░█▄▄█░▒█░░░▒█░▒█░▒█░░▒█░▄█▄░▒█░░▀█░▒█▄▄▄              ///
////////////////////////////////////////////////////////////////////////////////

/// @title IERC173 Interface
interface IERC173 is IERC165, IERC173Events {

    /// @notice Get the owner address of the contract.
    /// @return The address of the owner.
    function owner() view external returns(address);

    /// @notice Set the new owner address of the contract.
    function transferOwnership(address newOwner) external;

}

File 11 of 18 : IERC173Events.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.18;

////////////////////////////////////////////////////////////////////////////////
///              ░▒█▀▀▄░█▀▀█░▒█▀▀█░█▀▀▄░▒█▀▄▀█░▄█░░▒█▄░▒█░▒█▀▀▀              ///
///              ░▒█░▒█░█▄▀█░▒█▄▄█▒█▄▄█░▒█▒█▒█░░█▒░▒█▒█▒█░▒█▀▀▀              ///
///              ░▒█▄▄█░█▄▄█░▒█░░░▒█░▒█░▒█░░▒█░▄█▄░▒█░░▀█░▒█▄▄▄              ///
////////////////////////////////////////////////////////////////////////////////

/// @title IERC173 Events & Errors Interface
interface IERC173Events {

    /// @notice Emits when ownership is transferred to another address.
    /// @param previousOwner The address of the prior owner.
    /// @param newOwner The address of the new owner.
    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

}

File 12 of 18 : IOwnable.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.18;

import {IERC173} from "./IERC173.sol";
import {IOwnableEventsAndErrors} from "./IOwnableEventsAndErrors.sol";

////////////////////////////////////////////////////////////////////////////////
///              ░▒█▀▀▄░█▀▀█░▒█▀▀█░█▀▀▄░▒█▀▄▀█░▄█░░▒█▄░▒█░▒█▀▀▀              ///
///              ░▒█░▒█░█▄▀█░▒█▄▄█▒█▄▄█░▒█▒█▒█░░█▒░▒█▒█▒█░▒█▀▀▀              ///
///              ░▒█▄▄█░█▄▄█░▒█░░░▒█░▒█░▒█░░▒█░▄█▄░▒█░░▀█░▒█▄▄▄              ///
////////////////////////////////////////////////////////////////////////////////

/// @title Ownable Interface
interface IOwnable is IERC173, IOwnableEventsAndErrors {

    /// @notice Gets the pending owner of the contract.
    /// @return The pending owner address for the contract.
    function pendingOwner() external returns(address);

    /// @notice Sets the pending owner address for the contract.
    /// @param pendingOwner The address of the new pending owner.
    function setPendingOwner(address pendingOwner) external;

    /// @notice Permanently renounces contract ownership.
    function renounceOwnership() external;

}

File 13 of 18 : IOwnableEventsAndErrors.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.18;

////////////////////////////////////////////////////////////////////////////////
///              ░▒█▀▀▄░█▀▀█░▒█▀▀█░█▀▀▄░▒█▀▄▀█░▄█░░▒█▄░▒█░▒█▀▀▀              ///
///              ░▒█░▒█░█▄▀█░▒█▄▄█▒█▄▄█░▒█▒█▒█░░█▒░▒█▒█▒█░▒█▀▀▀              ///
///              ░▒█▄▄█░█▄▄█░▒█░░░▒█░▒█░▒█░░▒█░▄█▄░▒█░░▀█░▒█▄▄▄              ///
////////////////////////////////////////////////////////////////////////////////

/// @title Ownable Events & Errors Interface
interface IOwnableEventsAndErrors {

    /// @notice Emits when a new pending owner is set.
    /// @param pendingOwner The address of the new pending owner.
    event PendingOwnerSet(
        address indexed pendingOwner
    );

    /// @notice Caller is not the owner of the contract.
    error OwnerOnly();

    /// @notice The pending owner is invalid.
    error PendingOwnerInvalid();

    /// @notice Caller is not the pending owner of the contract.
    error PendingOwnerOnly();

    /// @notice The pending owner is already set to the specified address.
    error PendingOwnerAlreadySet();

}

File 14 of 18 : IReentrancyGuardErrors.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.18;

////////////////////////////////////////////////////////////////////////////////
///              ░▒█▀▀▄░█▀▀█░▒█▀▀█░█▀▀▄░▒█▀▄▀█░▄█░░▒█▄░▒█░▒█▀▀▀              ///
///              ░▒█░▒█░█▄▀█░▒█▄▄█▒█▄▄█░▒█▒█▒█░░█▒░▒█▒█▒█░▒█▀▀▀              ///
///              ░▒█▄▄█░█▄▄█░▒█░░░▒█░▒█░▒█░░▒█░▄█▄░▒█░░▀█░▒█▄▄▄              ///
////////////////////////////////////////////////////////////////////////////////

/// @title Reentrancy Guard Errors Interface
interface IReentrancyGuardErrors {

    /// @notice Function reentrancy was detected.
    error FunctionReentrant();

}

File 15 of 18 : DopaminePrimaryCheckoutStructs.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.18;

////////////////////////////////////////////////////////////////////////////////
///              ░▒█▀▀▄░█▀▀█░▒█▀▀█░█▀▀▄░▒█▀▄▀█░▄█░░▒█▄░▒█░▒█▀▀▀              ///
///              ░▒█░▒█░█▄▀█░▒█▄▄█▒█▄▄█░▒█▒█▒█░░█▒░▒█▒█▒█░▒█▀▀▀              ///
///              ░▒█▄▄█░█▄▄█░▒█░░░▒█░▒█░▒█░░▒█░▄█▄░▒█░░▀█░▒█▄▄▄              ///
////////////////////////////////////////////////////////////////////////////////

/// @notice Encapsulation of a Dopamine Marketplace order, which is composed of:
///         - id, a string UUID for uniquely identifying a Dopamine order
///         - purchaser, the address of the entity processing a crypto checkout
///         - signature, a Dopamine signature used to attest order validity
///         - bundles, a list of all Dopamine bundles included in the order
struct Order {
    string id;
    address purchaser;
    bytes signature;
    Bundle[] bundles;
}

/// @notice Encapsulation of a Dopamine Marketplace bundle, which comprises of:
///         - brand, a uint64 identifier for brand attribution (e.g. Nouns)
///         - collection, a uint64 identifier for the collection (e.g. Hoodie)
///         - colorway, a uint64 identifier for the colorway (e.g. Arctic Lime)
///         - size, a uint64 identifier for the bundle's physical (e.g. XL)
///         - price, a uint256 identifier for the bundle's price in USD
struct Bundle {
    uint64 brand;
    uint64 collection;
    uint64 colorway;
    uint64 size;
    uint256 price;
}

File 16 of 18 : EIP712Signable.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.18;

import {ECDSA} from "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import {IEIP712Signable} from "../interfaces/utils/IEIP712Signable.sol";

////////////////////////////////////////////////////////////////////////////////
///              ░▒█▀▀▄░█▀▀█░▒█▀▀█░█▀▀▄░▒█▀▄▀█░▄█░░▒█▄░▒█░▒█▀▀▀              ///
///              ░▒█░▒█░█▄▀█░▒█▄▄█▒█▄▄█░▒█▒█▒█░░█▒░▒█▒█▒█░▒█▀▀▀              ///
///              ░▒█▄▄█░█▄▄█░▒█░░░▒█░▒█░▒█░░▒█░▄█▄░▒█░░▀█░▒█▄▄▄              ///
////////////////////////////////////////////////////////////////////////////////

/// @title EIP-712 Signable Contract
abstract contract EIP712Signable is IEIP712Signable {

    uint256 internal immutable _CHAIN_ID;
    bytes32 internal immutable _DOMAIN_SEPARATOR;

    /// @notice Gets whether an address is an authorized signer.
    mapping(address => bool) public signers;

    constructor() {
        _CHAIN_ID = block.chainid;
        _DOMAIN_SEPARATOR = _buildDomainSeparator();
    }

    function _NAME() virtual internal pure returns (string memory);

    function _VERSION() virtual internal pure returns (string memory);

    /// @notice Returns all EIP-712 metadata pertaining to the contract.
    function EIP712Data() external view 
        returns (
            string memory name,
            string memory version,
            address verifyingContract,
            bytes32 domainSeparator
        )
    {
        name = _NAME();
        version = _VERSION();
        verifyingContract = address(this);
        domainSeparator = _buildDomainSeparator();
    }

    /// @notice Derives the contract EIP-712 digest of a given hash.
    function _deriveEIP712Digest(bytes32 hash) internal view returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparator(), hash);
    }

    /// @notice Performs signatory verification of a signature and digest pair.
    function _verifySignature(bytes memory signature, bytes32 digest, address signer) internal pure {
        address signatory = ECDSA.recover(digest, signature);
        if (signatory == address(0) || signatory != signer) {
            revert SignatureInvalid();
        }
    }

    /// @notice Performs signatory verification of a signature and digest pair.
    function _verifySignature(bytes memory signature, bytes32 digest) internal view {
        address signatory = ECDSA.recover(digest, signature);
        if (signatory == address(0) || !signers[signatory]) {
            revert SignatureInvalid();
        }
    }

    /// @dev Generates an EIP-712 domain separator.
    /// @return A 256-bit domain separator tied to this contract.
    function _buildDomainSeparator() internal view returns (bytes32) {
        return keccak256(
            abi.encode(
                keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
                keccak256(bytes(_NAME())),
                keccak256(bytes(_VERSION())),
                block.chainid,
                address(this)
            )
        );
    }

    /// @dev Returns the domain separator tied to the contract.
    /// @return 256-bit domain separator tied to this contract.
    function _domainSeparator() internal view returns (bytes32) {
        if (block.chainid == _CHAIN_ID) {
            return _DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator();
        }
    }

}

File 17 of 18 : Ownable.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.18;

import {IOwnable} from "../interfaces/utils/IOwnable.sol";

////////////////////////////////////////////////////////////////////////////////
///              ░▒█▀▀▄░█▀▀█░▒█▀▀█░█▀▀▄░▒█▀▄▀█░▄█░░▒█▄░▒█░▒█▀▀▀              ///
///              ░▒█░▒█░█▄▀█░▒█▄▄█▒█▄▄█░▒█▒█▒█░░█▒░▒█▒█▒█░▒█▀▀▀              ///
///              ░▒█▄▄█░█▄▄█░▒█░░░▒█░▒█░▒█░░▒█░▄█▄░▒█░░▀█░▒█▄▄▄              ///
////////////////////////////////////////////////////////////////////////////////

/// @title Ownable Contract
abstract contract Ownable is IOwnable {

    /// @notice Used for permanently revoking ownership.
    address public constant REVOKE_OWNER_ADDRESS = 0x000000000000000000000000000000000000dEaD;

    address public owner;
    address public pendingOwner;

    modifier onlyOwner() {
        if (msg.sender != owner) {
            revert OwnerOnly();
        }
        _;
    }

    modifier onlyPendingOwner() {
        if (msg.sender != pendingOwner) {
            revert PendingOwnerOnly();
        }
        _;
    }

    constructor() {
        owner = msg.sender;
    }

    function setPendingOwner(address newPendingOwner) public onlyOwner {
        if (pendingOwner == newPendingOwner) {
            revert PendingOwnerAlreadySet();
        }
        pendingOwner = newPendingOwner;
        emit PendingOwnerSet(newPendingOwner);
    }

    function renounceOwnership() public onlyOwner {
        if (pendingOwner != REVOKE_OWNER_ADDRESS) {
            revert PendingOwnerInvalid();
        }
        _transferOwnership(address(0));
    }

    function transferOwnership(address newOwner) public onlyPendingOwner {
        if (pendingOwner != newOwner) {
            revert PendingOwnerInvalid();
        }
        _transferOwnership(newOwner);
    }

    function supportsInterface(bytes4 id) public view virtual returns (bool);

    /// @notice Transfers ownership to address `newOwner`.
    function _transferOwnership(address newOwner) internal {
        address oldOwner = owner;
        pendingOwner = address(0);
        owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }

}

File 18 of 18 : ReentrancyGuard.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.18;

import {IReentrancyGuardErrors} from "../interfaces/utils/IReentrancyGuardErrors.sol";

////////////////////////////////////////////////////////////////////////////////
///              ░▒█▀▀▄░█▀▀█░▒█▀▀█░█▀▀▄░▒█▀▄▀█░▄█░░▒█▄░▒█░▒█▀▀▀              ///
///              ░▒█░▒█░█▄▀█░▒█▄▄█▒█▄▄█░▒█▒█▒█░░█▒░▒█▒█▒█░▒█▀▀▀              ///
///              ░▒█▄▄█░█▄▄█░▒█░░░▒█░▒█░▒█░░▒█░▄█▄░▒█░░▀█░▒█▄▄▄              ///
////////////////////////////////////////////////////////////////////////////////

abstract contract ReentrancyGuard is IReentrancyGuardErrors {

    uint256 private constant _LOCKED = 1;
    uint256 private constant _UNLOCKED = 2;

    uint256 internal _locked = _UNLOCKED;

    modifier nonReentrant() {
        if (_locked != _UNLOCKED) {
            revert FunctionReentrant();
        }
        _locked = _LOCKED;
        _;
        _locked = _UNLOCKED;
    }

}

Settings
{
  "remappings": [
    "@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/",
    "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/contracts/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "london",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"EthTransferFailed","type":"error"},{"inputs":[],"name":"FunctionReentrant","type":"error"},{"inputs":[],"name":"OrderAlreadyProcessed","type":"error"},{"inputs":[],"name":"OrderCapacityExceeded","type":"error"},{"inputs":[],"name":"OwnerOnly","type":"error"},{"inputs":[],"name":"PaymentInsufficient","type":"error"},{"inputs":[],"name":"PendingOwnerAlreadySet","type":"error"},{"inputs":[],"name":"PendingOwnerInvalid","type":"error"},{"inputs":[],"name":"PendingOwnerOnly","type":"error"},{"inputs":[],"name":"SignatureExpired","type":"error"},{"inputs":[],"name":"SignatureInvalid","type":"error"},{"inputs":[],"name":"WithdrawalInvalid","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"signer","type":"address"},{"indexed":false,"internalType":"bool","name":"setting","type":"bool"}],"name":"DopamineCheckoutSignerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"orderHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"purchaser","type":"address"},{"components":[{"internalType":"uint64","name":"brand","type":"uint64"},{"internalType":"uint64","name":"collection","type":"uint64"},{"internalType":"uint64","name":"colorway","type":"uint64"},{"internalType":"uint64","name":"size","type":"uint64"},{"internalType":"uint256","name":"price","type":"uint256"}],"indexed":false,"internalType":"struct Bundle[]","name":"bundles","type":"tuple[]"}],"name":"OrderFulfilled","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":true,"internalType":"address","name":"pendingOwner","type":"address"}],"name":"PendingOwnerSet","type":"event"},{"inputs":[],"name":"BUNDLE_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EIP712Data","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"domainSeparator","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ORDER_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVOKE_OWNER_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"_transferETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"id","type":"string"},{"internalType":"address","name":"purchaser","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"},{"components":[{"internalType":"uint64","name":"brand","type":"uint64"},{"internalType":"uint64","name":"collection","type":"uint64"},{"internalType":"uint64","name":"colorway","type":"uint64"},{"internalType":"uint64","name":"size","type":"uint64"},{"internalType":"uint256","name":"price","type":"uint256"}],"internalType":"struct Bundle[]","name":"bundles","type":"tuple[]"}],"internalType":"struct Order","name":"order","type":"tuple"}],"name":"checkout","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint64","name":"brand","type":"uint64"},{"internalType":"uint64","name":"collection","type":"uint64"},{"internalType":"uint64","name":"colorway","type":"uint64"},{"internalType":"uint64","name":"size","type":"uint64"},{"internalType":"uint256","name":"price","type":"uint256"}],"name":"getBundleHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string","name":"id","type":"string"},{"internalType":"address","name":"purchaser","type":"address"},{"components":[{"internalType":"uint64","name":"brand","type":"uint64"},{"internalType":"uint64","name":"collection","type":"uint64"},{"internalType":"uint64","name":"colorway","type":"uint64"},{"internalType":"uint64","name":"size","type":"uint64"},{"internalType":"uint256","name":"price","type":"uint256"}],"internalType":"struct Bundle[]","name":"bundles","type":"tuple[]"}],"name":"getOrderHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"orderProcessed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPendingOwner","type":"address"}],"name":"setPendingOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"bool","name":"setting","type":"bool"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"signers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526002600055600a6004553480156200001b57600080fd5b5060405162001853380380620018538339810160408190526200003e91620001d7565b600180546001600160a01b03191633179055466080526200005e62000075565b60a0526200006e81600162000148565b5062000209565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f620000d360408051808201909152601981527f446f70616d696e65205072696d61727920436865636b6f757400000000000000602082015290565b8051602090910120620000fc6040805180820190915260038152620312e360ec1b602082015290565b805160209182012060408051928301949094529281019190915260608101919091524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b6001546001600160a01b031633146200017457604051630b2db9b760e31b815260040160405180910390fd5b6001600160a01b038216600081815260036020908152604091829020805460ff19168515159081179091558251938452908301527f4c76d9bd27698cf2a4e4614e48fc00bed76eba9180699f6688757793c373505a910160405180910390a15050565b600060208284031215620001ea57600080fd5b81516001600160a01b03811681146200020257600080fd5b9392505050565b60805160a0516116246200022f6000396000610d3c01526000610d1401526116246000f3fe6080604052600436106101085760003560e01c8063736c0d5b11610095578063cc7daae811610064578063cc7daae814610305578063e30c397814610318578063f2fde38b14610338578063f973a20914610358578063facc45231461038c57600080fd5b8063736c0d5b1461025a5780638da5cb5b1461028a578063a90390f3146102aa578063c42069ec146102e557600080fd5b806331cb6105116100dc57806331cb6105146101b75780633a823357146101d75780634f1f3ce41461020557806357524a6b14610225578063715018a61461024557600080fd5b8062f714ce1461010d57806301ffc9a71461012f5780631298bae7146101645780631e13dae914610189575b600080fd5b34801561011957600080fd5b5061012d610128366004610ffc565b6103bf565b005b34801561013b57600080fd5b5061014f61014a36600461102c565b610419565b60405190151581526020015b60405180910390f35b34801561017057600080fd5b50610179610450565b60405161015b94939291906110a3565b34801561019557600080fd5b506101a96101a4366004611188565b6104c3565b60405190815260200161015b565b3480156101c357600080fd5b5061012d6101d2366004611231565b610653565b3480156101e357600080fd5b506101ed61dead81565b6040516001600160a01b03909116815260200161015b565b34801561021157600080fd5b5061012d610220366004611264565b6106e1565b34801561023157600080fd5b506101a96102403660046112ad565b61075a565b34801561025157600080fd5b5061012d6107d2565b34801561026657600080fd5b5061014f610275366004611309565b60036020526000908152604090205460ff1681565b34801561029657600080fd5b506001546101ed906001600160a01b031681565b3480156102b657600080fd5b5061014f6102c5366004611326565b805160208183018101805160058252928201919093012091525460ff1681565b3480156102f157600080fd5b5061012d610300366004611309565b610836565b61012d610313366004611363565b6108d9565b34801561032457600080fd5b506002546101ed906001600160a01b031681565b34801561034457600080fd5b5061012d610353366004611309565b610ad8565b34801561036457600080fd5b506101a97ff37b69a5bf166071031b7b9df280a74df22e83ba8f5abca7845c7434755cd44b81565b34801561039857600080fd5b506101a97ea23b8cea34241bbd51255d3df36a9ff864fb9256ad43e582f0c5088624586281565b6001546001600160a01b031633146103ea57604051630b2db9b760e31b815260040160405180910390fd5b4782111561040b576040516316040fc560e21b815260040160405180910390fd5b61041581836106e1565b5050565b60006001600160e01b031982166301ffc9a760e01b148061044a57506001600160e01b031982166307f5828d60e41b145b92915050565b60608060008061048c604080518082019091526019815278111bdc185b5a5b9948141c9a5b585c9e4810da1958dadbdd5d603a1b602082015290565b93506104ae6040805180820190915260038152620312e360ec1b602082015290565b92503091506104bb610b3d565b905090919293565b6000808267ffffffffffffffff8111156104df576104df6110e5565b604051908082528060200260200182016040528015610508578160200160208202803683370190505b506040805160a08101825260008082526020820181905291810182905260608101829052608081018290529192505b848110156105b7578585828181106105515761055161139e565b905060a0020180360381019061056791906113b4565b915061058a8260000151836020015184604001518560600151866080015161075a565b83828151811061059c5761059c61139e565b60209081029190910101526105b08161143e565b9050610537565b507ff37b69a5bf166071031b7b9df280a74df22e83ba8f5abca7845c7434755cd44b878051906020012087846040516020016105f39190611465565b60408051601f198184030181528282528051602091820120908301959095528101929092526001600160a01b03166060820152608081019190915260a0016040516020818303038152906040528051906020012092505050949350505050565b6001546001600160a01b0316331461067e57604051630b2db9b760e31b815260040160405180910390fd5b6001600160a01b038216600081815260036020908152604091829020805460ff19168515159081179091558251938452908301527f4c76d9bd27698cf2a4e4614e48fc00bed76eba9180699f6688757793c373505a910160405180910390a15050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461072e576040519150601f19603f3d011682016040523d82523d6000602084013e610733565b606091505b505090508061075557604051630db2c7f160e31b815260040160405180910390fd5b505050565b604080517ea23b8cea34241bbd51255d3df36a9ff864fb9256ad43e582f0c5088624586260208083019190915267ffffffffffffffff97881682840152958716606082015293861660808501529190941660a083015260c0808301949094528051808303909401845260e09091019052815191012090565b6001546001600160a01b031633146107fd57604051630b2db9b760e31b815260040160405180910390fd5b6002546001600160a01b031661dead1461082a57604051630a31330560e31b815260040160405180910390fd5b6108346000610c09565b565b6001546001600160a01b0316331461086157604051630b2db9b760e31b815260040160405180910390fd5b6002546001600160a01b0380831691160361088f57604051631449355d60e11b815260040160405180910390fd5b600280546001600160a01b0319166001600160a01b0383169081179091556040517f68f49b346b94582a8b5f9d10e3fe3365318fe8f191ff8dce7c59c6cad06b02f590600090a250565b6002600054146108fc57604051631ad3e8fd60e21b815260040160405180910390fd5b6001600055600561090d828061149b565b60405161091b9291906114e2565b9081526040519081900360200190205460ff161561094c576040516331ac42b560e21b815260040160405180910390fd5b60045461095c60608301836114f2565b9050111561097d5760405163044e797560e31b815260040160405180910390fd5b60006109de61098c838061149b565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506109d1925050506040850160208601611309565b6101a460608601866114f2565b9050610a356109f0604084018461149b565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610a309250859150610c679050565b610cb5565b60016005610a43848061149b565b604051610a519291906114e2565b9081526040805160209281900383019020805460ff191693151593909317909255610a80918401908401611309565b6001600160a01b03167fe748c3a4acde302a09028dcc9de6a5a335105c5b46efbf2916e5e5297495ed2a82610ab860608601866114f2565b604051610ac79392919061153b565b60405180910390a250506002600055565b6002546001600160a01b03163314610b035760405163306bd3d760e01b815260040160405180910390fd5b6002546001600160a01b03828116911614610b3157604051630a31330560e31b815260040160405180910390fd5b610b3a81610c09565b50565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f610b96604080518082019091526019815278111bdc185b5a5b9948141c9a5b585c9e4810da1958dadbdd5d603a1b602082015290565b80519060200120610bbd6040805180820190915260038152620312e360ec1b602082015290565b805160209182012060408051928301949094529281019190915260608101919091524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b60018054600280546001600160a01b03199081169091556001600160a01b038481169183168217909355604051929091169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061044a610c74610d10565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000610cc18284610d6b565b90506001600160a01b0381161580610cf257506001600160a01b03811660009081526003602052604090205460ff16155b15610755576040516337e8456b60e01b815260040160405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000004603610d5e57507f000000000000000000000000000000000000000000000000000000000000000090565b610d66610b3d565b905090565b6000806000610d7a8585610d8f565b91509150610d8781610dd4565b509392505050565b6000808251604103610dc55760208301516040840151606085015160001a610db987828585610f23565b94509450505050610dcd565b506000905060025b9250929050565b6000816004811115610de857610de86115d8565b03610df05750565b6001816004811115610e0457610e046115d8565b03610e565760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064015b60405180910390fd5b6002816004811115610e6a57610e6a6115d8565b03610eb75760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610e4d565b6003816004811115610ecb57610ecb6115d8565b03610b3a5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610e4d565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115610f5a5750600090506003610fde565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015610fae573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610fd757600060019250925050610fde565b9150600090505b94509492505050565b6001600160a01b0381168114610b3a57600080fd5b6000806040838503121561100f57600080fd5b82359150602083013561102181610fe7565b809150509250929050565b60006020828403121561103e57600080fd5b81356001600160e01b03198116811461105657600080fd5b9392505050565b6000815180845260005b8181101561108357602081850181015186830182015201611067565b506000602082860101526020601f19601f83011685010191505092915050565b6080815260006110b6608083018761105d565b82810360208401526110c8818761105d565b6001600160a01b0395909516604084015250506060015292915050565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261110c57600080fd5b813567ffffffffffffffff80821115611127576111276110e5565b604051601f8301601f19908116603f0116810190828211818310171561114f5761114f6110e5565b8160405283815286602085880101111561116857600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806000806060858703121561119e57600080fd5b843567ffffffffffffffff808211156111b657600080fd5b6111c2888389016110fb565b9550602087013591506111d482610fe7565b909350604086013590808211156111ea57600080fd5b818701915087601f8301126111fe57600080fd5b81358181111561120d57600080fd5b88602060a08302850101111561122257600080fd5b95989497505060200194505050565b6000806040838503121561124457600080fd5b823561124f81610fe7565b91506020830135801515811461102157600080fd5b6000806040838503121561127757600080fd5b823561128281610fe7565b946020939093013593505050565b803567ffffffffffffffff811681146112a857600080fd5b919050565b600080600080600060a086880312156112c557600080fd5b6112ce86611290565b94506112dc60208701611290565b93506112ea60408701611290565b92506112f860608701611290565b949793965091946080013592915050565b60006020828403121561131b57600080fd5b813561105681610fe7565b60006020828403121561133857600080fd5b813567ffffffffffffffff81111561134f57600080fd5b61135b848285016110fb565b949350505050565b60006020828403121561137557600080fd5b813567ffffffffffffffff81111561138c57600080fd5b82016080818503121561105657600080fd5b634e487b7160e01b600052603260045260246000fd5b600060a082840312156113c657600080fd5b60405160a0810181811067ffffffffffffffff821117156113e9576113e96110e5565b6040526113f583611290565b815261140360208401611290565b602082015261141460408401611290565b604082015261142560608401611290565b6060820152608083013560808201528091505092915050565b60006001820161145e57634e487b7160e01b600052601160045260246000fd5b5060010190565b815160009082906020808601845b8381101561148f57815185529382019390820190600101611473565b50929695505050505050565b6000808335601e198436030181126114b257600080fd5b83018035915067ffffffffffffffff8211156114cd57600080fd5b602001915036819003821315610dcd57600080fd5b8183823760009101908152919050565b6000808335601e1984360301811261150957600080fd5b83018035915067ffffffffffffffff82111561152457600080fd5b602001915060a081023603821315610dcd57600080fd5b838152604060208083018290528282018490526000919060609081850187855b888110156115c95767ffffffffffffffff8061157684611290565b16845280611585868501611290565b168585015280611596888501611290565b1687850152806115a7878501611290565b1684870152506080828101359084015260a0928301929091019060010161155b565b50909998505050505050505050565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220c117106da6332a1343288348fe80a6ec21abc9fd8f364a67355822d37a30f64164736f6c6343000812003300000000000000000000000067a2f6f0bc6e281122e413147fd07ae5b9d6937c

Deployed Bytecode

0x6080604052600436106101085760003560e01c8063736c0d5b11610095578063cc7daae811610064578063cc7daae814610305578063e30c397814610318578063f2fde38b14610338578063f973a20914610358578063facc45231461038c57600080fd5b8063736c0d5b1461025a5780638da5cb5b1461028a578063a90390f3146102aa578063c42069ec146102e557600080fd5b806331cb6105116100dc57806331cb6105146101b75780633a823357146101d75780634f1f3ce41461020557806357524a6b14610225578063715018a61461024557600080fd5b8062f714ce1461010d57806301ffc9a71461012f5780631298bae7146101645780631e13dae914610189575b600080fd5b34801561011957600080fd5b5061012d610128366004610ffc565b6103bf565b005b34801561013b57600080fd5b5061014f61014a36600461102c565b610419565b60405190151581526020015b60405180910390f35b34801561017057600080fd5b50610179610450565b60405161015b94939291906110a3565b34801561019557600080fd5b506101a96101a4366004611188565b6104c3565b60405190815260200161015b565b3480156101c357600080fd5b5061012d6101d2366004611231565b610653565b3480156101e357600080fd5b506101ed61dead81565b6040516001600160a01b03909116815260200161015b565b34801561021157600080fd5b5061012d610220366004611264565b6106e1565b34801561023157600080fd5b506101a96102403660046112ad565b61075a565b34801561025157600080fd5b5061012d6107d2565b34801561026657600080fd5b5061014f610275366004611309565b60036020526000908152604090205460ff1681565b34801561029657600080fd5b506001546101ed906001600160a01b031681565b3480156102b657600080fd5b5061014f6102c5366004611326565b805160208183018101805160058252928201919093012091525460ff1681565b3480156102f157600080fd5b5061012d610300366004611309565b610836565b61012d610313366004611363565b6108d9565b34801561032457600080fd5b506002546101ed906001600160a01b031681565b34801561034457600080fd5b5061012d610353366004611309565b610ad8565b34801561036457600080fd5b506101a97ff37b69a5bf166071031b7b9df280a74df22e83ba8f5abca7845c7434755cd44b81565b34801561039857600080fd5b506101a97ea23b8cea34241bbd51255d3df36a9ff864fb9256ad43e582f0c5088624586281565b6001546001600160a01b031633146103ea57604051630b2db9b760e31b815260040160405180910390fd5b4782111561040b576040516316040fc560e21b815260040160405180910390fd5b61041581836106e1565b5050565b60006001600160e01b031982166301ffc9a760e01b148061044a57506001600160e01b031982166307f5828d60e41b145b92915050565b60608060008061048c604080518082019091526019815278111bdc185b5a5b9948141c9a5b585c9e4810da1958dadbdd5d603a1b602082015290565b93506104ae6040805180820190915260038152620312e360ec1b602082015290565b92503091506104bb610b3d565b905090919293565b6000808267ffffffffffffffff8111156104df576104df6110e5565b604051908082528060200260200182016040528015610508578160200160208202803683370190505b506040805160a08101825260008082526020820181905291810182905260608101829052608081018290529192505b848110156105b7578585828181106105515761055161139e565b905060a0020180360381019061056791906113b4565b915061058a8260000151836020015184604001518560600151866080015161075a565b83828151811061059c5761059c61139e565b60209081029190910101526105b08161143e565b9050610537565b507ff37b69a5bf166071031b7b9df280a74df22e83ba8f5abca7845c7434755cd44b878051906020012087846040516020016105f39190611465565b60408051601f198184030181528282528051602091820120908301959095528101929092526001600160a01b03166060820152608081019190915260a0016040516020818303038152906040528051906020012092505050949350505050565b6001546001600160a01b0316331461067e57604051630b2db9b760e31b815260040160405180910390fd5b6001600160a01b038216600081815260036020908152604091829020805460ff19168515159081179091558251938452908301527f4c76d9bd27698cf2a4e4614e48fc00bed76eba9180699f6688757793c373505a910160405180910390a15050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461072e576040519150601f19603f3d011682016040523d82523d6000602084013e610733565b606091505b505090508061075557604051630db2c7f160e31b815260040160405180910390fd5b505050565b604080517ea23b8cea34241bbd51255d3df36a9ff864fb9256ad43e582f0c5088624586260208083019190915267ffffffffffffffff97881682840152958716606082015293861660808501529190941660a083015260c0808301949094528051808303909401845260e09091019052815191012090565b6001546001600160a01b031633146107fd57604051630b2db9b760e31b815260040160405180910390fd5b6002546001600160a01b031661dead1461082a57604051630a31330560e31b815260040160405180910390fd5b6108346000610c09565b565b6001546001600160a01b0316331461086157604051630b2db9b760e31b815260040160405180910390fd5b6002546001600160a01b0380831691160361088f57604051631449355d60e11b815260040160405180910390fd5b600280546001600160a01b0319166001600160a01b0383169081179091556040517f68f49b346b94582a8b5f9d10e3fe3365318fe8f191ff8dce7c59c6cad06b02f590600090a250565b6002600054146108fc57604051631ad3e8fd60e21b815260040160405180910390fd5b6001600055600561090d828061149b565b60405161091b9291906114e2565b9081526040519081900360200190205460ff161561094c576040516331ac42b560e21b815260040160405180910390fd5b60045461095c60608301836114f2565b9050111561097d5760405163044e797560e31b815260040160405180910390fd5b60006109de61098c838061149b565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506109d1925050506040850160208601611309565b6101a460608601866114f2565b9050610a356109f0604084018461149b565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610a309250859150610c679050565b610cb5565b60016005610a43848061149b565b604051610a519291906114e2565b9081526040805160209281900383019020805460ff191693151593909317909255610a80918401908401611309565b6001600160a01b03167fe748c3a4acde302a09028dcc9de6a5a335105c5b46efbf2916e5e5297495ed2a82610ab860608601866114f2565b604051610ac79392919061153b565b60405180910390a250506002600055565b6002546001600160a01b03163314610b035760405163306bd3d760e01b815260040160405180910390fd5b6002546001600160a01b03828116911614610b3157604051630a31330560e31b815260040160405180910390fd5b610b3a81610c09565b50565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f610b96604080518082019091526019815278111bdc185b5a5b9948141c9a5b585c9e4810da1958dadbdd5d603a1b602082015290565b80519060200120610bbd6040805180820190915260038152620312e360ec1b602082015290565b805160209182012060408051928301949094529281019190915260608101919091524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b60018054600280546001600160a01b03199081169091556001600160a01b038481169183168217909355604051929091169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061044a610c74610d10565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000610cc18284610d6b565b90506001600160a01b0381161580610cf257506001600160a01b03811660009081526003602052604090205460ff16155b15610755576040516337e8456b60e01b815260040160405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000014603610d5e57507fb3b0641f7f26f773581fe16a561039fd09e948afc534623744e3a7d3bff8328d90565b610d66610b3d565b905090565b6000806000610d7a8585610d8f565b91509150610d8781610dd4565b509392505050565b6000808251604103610dc55760208301516040840151606085015160001a610db987828585610f23565b94509450505050610dcd565b506000905060025b9250929050565b6000816004811115610de857610de86115d8565b03610df05750565b6001816004811115610e0457610e046115d8565b03610e565760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064015b60405180910390fd5b6002816004811115610e6a57610e6a6115d8565b03610eb75760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610e4d565b6003816004811115610ecb57610ecb6115d8565b03610b3a5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610e4d565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115610f5a5750600090506003610fde565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015610fae573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610fd757600060019250925050610fde565b9150600090505b94509492505050565b6001600160a01b0381168114610b3a57600080fd5b6000806040838503121561100f57600080fd5b82359150602083013561102181610fe7565b809150509250929050565b60006020828403121561103e57600080fd5b81356001600160e01b03198116811461105657600080fd5b9392505050565b6000815180845260005b8181101561108357602081850181015186830182015201611067565b506000602082860101526020601f19601f83011685010191505092915050565b6080815260006110b6608083018761105d565b82810360208401526110c8818761105d565b6001600160a01b0395909516604084015250506060015292915050565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261110c57600080fd5b813567ffffffffffffffff80821115611127576111276110e5565b604051601f8301601f19908116603f0116810190828211818310171561114f5761114f6110e5565b8160405283815286602085880101111561116857600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806000806060858703121561119e57600080fd5b843567ffffffffffffffff808211156111b657600080fd5b6111c2888389016110fb565b9550602087013591506111d482610fe7565b909350604086013590808211156111ea57600080fd5b818701915087601f8301126111fe57600080fd5b81358181111561120d57600080fd5b88602060a08302850101111561122257600080fd5b95989497505060200194505050565b6000806040838503121561124457600080fd5b823561124f81610fe7565b91506020830135801515811461102157600080fd5b6000806040838503121561127757600080fd5b823561128281610fe7565b946020939093013593505050565b803567ffffffffffffffff811681146112a857600080fd5b919050565b600080600080600060a086880312156112c557600080fd5b6112ce86611290565b94506112dc60208701611290565b93506112ea60408701611290565b92506112f860608701611290565b949793965091946080013592915050565b60006020828403121561131b57600080fd5b813561105681610fe7565b60006020828403121561133857600080fd5b813567ffffffffffffffff81111561134f57600080fd5b61135b848285016110fb565b949350505050565b60006020828403121561137557600080fd5b813567ffffffffffffffff81111561138c57600080fd5b82016080818503121561105657600080fd5b634e487b7160e01b600052603260045260246000fd5b600060a082840312156113c657600080fd5b60405160a0810181811067ffffffffffffffff821117156113e9576113e96110e5565b6040526113f583611290565b815261140360208401611290565b602082015261141460408401611290565b604082015261142560608401611290565b6060820152608083013560808201528091505092915050565b60006001820161145e57634e487b7160e01b600052601160045260246000fd5b5060010190565b815160009082906020808601845b8381101561148f57815185529382019390820190600101611473565b50929695505050505050565b6000808335601e198436030181126114b257600080fd5b83018035915067ffffffffffffffff8211156114cd57600080fd5b602001915036819003821315610dcd57600080fd5b8183823760009101908152919050565b6000808335601e1984360301811261150957600080fd5b83018035915067ffffffffffffffff82111561152457600080fd5b602001915060a081023603821315610dcd57600080fd5b838152604060208083018290528282018490526000919060609081850187855b888110156115c95767ffffffffffffffff8061157684611290565b16845280611585868501611290565b168585015280611596888501611290565b1687850152806115a7878501611290565b1684870152506080828101359084015260a0928301929091019060010161155b565b50909998505050505050505050565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220c117106da6332a1343288348fe80a6ec21abc9fd8f364a67355822d37a30f64164736f6c63430008120033

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

00000000000000000000000067a2f6f0bc6e281122e413147fd07ae5b9d6937c

-----Decoded View---------------
Arg [0] : signer (address): 0x67a2f6F0BC6E281122e413147FD07aE5b9D6937c

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000067a2f6f0bc6e281122e413147fd07ae5b9d6937c


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.