Overview
ETH Balance
ETH Value
$0.00Latest 25 from a total of 123 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Request Purchase | 27046499 | 134 days ago | IN | 0.000132 ETH | 0.00000025 | ||||
| Request Purchase | 24898332 | 159 days ago | IN | 0.000606 ETH | 0.00000074 | ||||
| Request Purchase | 21001328 | 204 days ago | IN | 0.000102 ETH | 0.00000002 | ||||
| Request Purchase | 18540119 | 232 days ago | IN | 0.000102 ETH | 0.00000026 | ||||
| Request Purchase | 17493919 | 245 days ago | IN | 0.000102 ETH | 0.00000024 | ||||
| Request Purchase | 17235299 | 248 days ago | IN | 0.000102 ETH | 0.00000034 | ||||
| Request Purchase | 16951441 | 251 days ago | IN | 0.000102 ETH | 0.00000029 | ||||
| Request Purchase | 16867128 | 252 days ago | IN | 0.000102 ETH | 0.0000001 | ||||
| Request Purchase | 16808914 | 252 days ago | IN | 0.000102 ETH | 0.0000003 | ||||
| Request Purchase | 16691825 | 254 days ago | IN | 0.000102 ETH | 0.00000029 | ||||
| Request Purchase | 16635005 | 254 days ago | IN | 0.00051 ETH | 0.00000072 | ||||
| Request Purchase | 16303654 | 258 days ago | IN | 0.000102 ETH | 0.00000002 | ||||
| Request Purchase | 16031872 | 261 days ago | IN | 0.000102 ETH | 0.00000013 | ||||
| Request Purchase | 15485880 | 268 days ago | IN | 0.000102 ETH | 0.00000002 | ||||
| Request Purchase | 15485649 | 268 days ago | IN | 0.000102 ETH | 0.00000002 | ||||
| Request Purchase | 15003120 | 273 days ago | IN | 0.000102 ETH | 0.00000015 | ||||
| Request Purchase | 14995149 | 273 days ago | IN | 0.000102 ETH | 0.00000034 | ||||
| Request Purchase | 14940632 | 274 days ago | IN | 0.000102 ETH | 0.00000027 | ||||
| Request Purchase | 14940607 | 274 days ago | IN | 0.000102 ETH | 0.00000026 | ||||
| Request Purchase | 14939417 | 274 days ago | IN | 0.000102 ETH | 0.00000027 | ||||
| Request Purchase | 14939405 | 274 days ago | IN | 0.000102 ETH | 0.00000028 | ||||
| Request Purchase | 14904612 | 274 days ago | IN | 0.000102 ETH | 0.00000043 | ||||
| Request Purchase | 14647841 | 277 days ago | IN | 0.000102 ETH | 0.00000102 | ||||
| Request Purchase | 14321360 | 281 days ago | IN | 0.000102 ETH | 0.00000025 | ||||
| Request Purchase | 14266420 | 282 days ago | IN | 0.000102 ETH | 0.00000061 |
Latest 25 internal transactions (View All)
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 27046499 | 134 days ago | 0.000002 ETH | ||||
| 27046499 | 134 days ago | 0.00005 ETH | ||||
| 27046499 | 134 days ago | 0.00008 ETH | ||||
| 24898332 | 159 days ago | 0.000006 ETH | ||||
| 24898332 | 159 days ago | 0.00036 ETH | ||||
| 24898332 | 159 days ago | 0.00024 ETH | ||||
| 21001328 | 204 days ago | 0.000002 ETH | ||||
| 21001328 | 204 days ago | 0.00002 ETH | ||||
| 21001328 | 204 days ago | 0.00008 ETH | ||||
| 18540119 | 232 days ago | 0.000002 ETH | ||||
| 18540119 | 232 days ago | 0.00002 ETH | ||||
| 18540119 | 232 days ago | 0.00008 ETH | ||||
| 17493919 | 245 days ago | 0.000002 ETH | ||||
| 17493919 | 245 days ago | 0.00002 ETH | ||||
| 17493919 | 245 days ago | 0.00008 ETH | ||||
| 17235299 | 248 days ago | 0.000002 ETH | ||||
| 17235299 | 248 days ago | 0.00002 ETH | ||||
| 17235299 | 248 days ago | 0.00008 ETH | ||||
| 16951441 | 251 days ago | 0.000002 ETH | ||||
| 16951441 | 251 days ago | 0.00002 ETH | ||||
| 16951441 | 251 days ago | 0.00008 ETH | ||||
| 16867128 | 252 days ago | 0.000002 ETH | ||||
| 16867128 | 252 days ago | 0.00002 ETH | ||||
| 16867128 | 252 days ago | 0.00008 ETH | ||||
| 16808914 | 252 days ago | 0.000002 ETH |
Cross-Chain Transactions
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "../MicroUtilityV4.sol";
interface MicroNFT {
struct SaleConfiguration {
uint64 editionSize;
uint16 profitSharing;
address payable fundsRecipient;
uint256 publicSalePrice;
uint32 maxSalePurchasePerAddress;
uint64 publicSaleStart;
uint64 publicSaleEnd;
bytes32 presaleMerkleRoot;
bool cancelable;
}
function saleConfig() external view returns (SaleConfiguration memory);
function purchase(
address minter,
uint256 quantity
) external returns (uint256);
function purchasePresale(
address minter,
uint256 quantity,
bytes32[] calldata merkleProof
) external returns (uint256);
}
contract MicroGatewayV2 is Ownable, ReentrancyGuard, MicroUtilityV4 {
using SafeMath for uint256;
bool private _initialized;
uint256 private percenPerDiscount = 1000;
uint256 private percentCreator = 2000;
uint256 private percenPerRef = 2000;
uint256 private feeDenominator = 10000;
error PurchaseWrongPrice(uint256 correctPrice);
error Unauthorized();
event NewCollectionMinted(
address indexed sender,
address indexed contractAddress,
uint256 quantity
);
event FundsWithdrawn(
address indexed sender,
address indexed fundsRecipient,
uint256 fund
);
function init(bytes memory initPayload) external returns (bool) {
if (_initialized) {
revert Unauthorized();
}
(address _owner, address _manager) = abi.decode(
initPayload,
(address, address)
);
transferOwnership(_owner);
_setManager(_manager);
_initialized = true;
return true;
}
function requestPurchase(
address nftAddress,
uint256 quantity,
address referral
) external payable nonReentrant {
address minter = msg.sender;
_isMinting(minter, nftAddress, quantity, referral);
MicroNFT(nftAddress).purchase(minter, quantity);
emit NewCollectionMinted(minter, nftAddress, quantity);
}
function requestPresale(
address nftAddress,
uint256 quantity,
bytes32[] calldata merkleProof,
address referral
) external payable nonReentrant {
address minter = msg.sender;
_isMinting(minter, nftAddress, quantity, referral);
MicroNFT(nftAddress).purchasePresale(minter, quantity, merkleProof);
emit NewCollectionMinted(minter, nftAddress, quantity);
}
function _payoutFundingRaise(
uint256 totalPurchase,
address fundsRecipient
) internal returns (bool) {
if (fundsRecipient == address(0) || totalPurchase == 0) {
return false;
}
_payoutRemainder(fundsRecipient, totalPurchase);
emit FundsWithdrawn(msg.sender, fundsRecipient, totalPurchase);
return true;
}
function _isMinting(
address minter,
address nftAddress,
uint256 quantity,
address referral
) internal {
if (minter == referral) {
revert Unauthorized();
}
MicroNFT.SaleConfiguration memory saleConfig = MicroNFT(nftAddress)
.saleConfig();
uint256 salePrice = saleConfig.publicSalePrice.mul(quantity);
uint256 protocolFee = getMicroFeeWei(quantity);
uint256 totalFee = salePrice.add(protocolFee);
uint256 creatorFee = protocolFee.mul(percentCreator).div(
feeDenominator
);
if (msg.value < totalFee) {
revert PurchaseWrongPrice(totalFee);
}
if (referral == address(0)) {
_payoutMicroFee(protocolFee.sub(creatorFee));
_payoutFundingRaise(
salePrice.add(creatorFee),
saleConfig.fundsRecipient
);
_payoutRemainder(minter, msg.value.sub(totalFee));
} else {
uint256 refProtocolFee = protocolFee.mul(percenPerRef).div(
feeDenominator
);
uint256 discountProtocolFee = protocolFee
.mul(percenPerDiscount)
.div(feeDenominator);
uint256 profitSharing = salePrice.mul(saleConfig.profitSharing).div(
100
);
uint256 treasuryFee = protocolFee
.sub(refProtocolFee)
.sub(discountProtocolFee)
.sub(creatorFee);
_payoutMicroFee(treasuryFee);
_payoutFundingRaise(
salePrice.add(creatorFee).sub(profitSharing),
saleConfig.fundsRecipient
);
_payoutRemainder(referral, refProtocolFee.add(profitSharing));
_payoutRemainder(
minter,
msg.value.sub(totalFee).add(discountProtocolFee)
);
}
}
function configFee(
uint256 _creator,
uint256 _discount,
uint256 _referral
) external onlyOwner {
percentCreator = _creator;
percenPerDiscount = _discount;
percenPerRef = _referral;
}
function editManager(address _manager) external onlyOwner {
_setManager(_manager);
}
}// 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);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and make it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}// 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;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.5.0;
interface IMicroManager {
function microBridge(address _address) external view returns (bool);
function treasuryAddress() external view returns (address);
function microProtocolFee() external view returns (uint256);
function oracleAddress() external view returns (address);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.0;
interface IPriceOracle {
function convertUsdToWei(uint256 usdAmount) external view returns (uint256 weiAmount);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import {IPriceOracle} from "./interfaces/IPriceOracle.sol";
import {IMicroManager} from "./interfaces/IMicroManager.sol";
error PaymentFailed();
contract MicroUtilityV4 {
using SafeMath for uint256;
IMicroManager public microManager;
uint256 private constant STATIC_GAS_LIMIT = 210_000;
event FeePayout(
uint256 MicroMintFeeWei,
address MicroFeeRecipient,
bool success
);
/**
* PUBLIC FUNCTIONS
* state changing
*/
function getMicroFeeWei(uint256 quantity) public view returns (uint256) {
if (quantity == 0) {
return 0;
}
return
IPriceOracle(microManager.oracleAddress()).convertUsdToWei(
microManager.microProtocolFee().mul(quantity)
);
}
function _payoutMicroFee(uint256 microProtocolFee) internal {
address treasury = microManager.treasuryAddress();
_payoutRemainder(treasury, microProtocolFee);
emit FeePayout(microProtocolFee, treasury, true);
}
function _setManager(address _manager) internal {
microManager = IMicroManager(_manager);
}
function _payoutRemainder(address recipient, uint256 value) internal {
if (value > 0) {
(bool success, ) = payable(recipient).call{
value: value,
gas: gasleft() > STATIC_GAS_LIMIT ? STATIC_GAS_LIMIT : gasleft()
}("");
if (!success) {
revert PaymentFailed();
}
}
}
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"name":"PaymentFailed","type":"error"},{"inputs":[{"internalType":"uint256","name":"correctPrice","type":"uint256"}],"name":"PurchaseWrongPrice","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"MicroMintFeeWei","type":"uint256"},{"indexed":false,"internalType":"address","name":"MicroFeeRecipient","type":"address"},{"indexed":false,"internalType":"bool","name":"success","type":"bool"}],"name":"FeePayout","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"fundsRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"fund","type":"uint256"}],"name":"FundsWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"contractAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"NewCollectionMinted","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"},{"inputs":[{"internalType":"uint256","name":"_creator","type":"uint256"},{"internalType":"uint256","name":"_discount","type":"uint256"},{"internalType":"uint256","name":"_referral","type":"uint256"}],"name":"configFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_manager","type":"address"}],"name":"editManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"getMicroFeeWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"initPayload","type":"bytes"}],"name":"init","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"microManager","outputs":[{"internalType":"contract IMicroManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nftAddress","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"address","name":"referral","type":"address"}],"name":"requestPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"nftAddress","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"referral","type":"address"}],"name":"requestPurchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040526103e86003556107d06004556107d060055561271060065534801561002857600080fd5b506100323361003b565b6001805561008b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61114c8061009a6000396000f3fe6080604052600436106100915760003560e01c806387031fe51161005957806387031fe51461015b5780638da5cb5b1461017b578063dc0a539414610199578063e276df24146101ac578063f2fde38b146101cc57600080fd5b80630e21ea06146100965780634ddf47d4146100d3578063616985ed14610103578063715018a61461013157806377a59bea14610148575b600080fd5b3480156100a257600080fd5b506002546100b6906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156100df57600080fd5b506100f36100ee366004610c7f565b6101ec565b60405190151581526020016100ca565b34801561010f57600080fd5b5061012361011e366004610d30565b610263565b6040519081526020016100ca565b34801561013d57600080fd5b506101466103e0565b005b610146610156366004610d5e565b61041f565b34801561016757600080fd5b50610146610176366004610e05565b610552565b34801561018757600080fd5b506000546001600160a01b03166100b6565b6101466101a7366004610e22565b610588565b3480156101b857600080fd5b506101466101c7366004610e64565b6106b7565b3480156101d857600080fd5b506101466101e7366004610e05565b6106ef565b600254600090600160a01b900460ff1615610219576040516282b42960e81b815260040160405180910390fd5b600080838060200190518101906102309190610ea0565b9150915061023d826106ef565b61024681610787565b50506002805460ff60a01b1916600160a01b179055506001919050565b60008160000361027557506000919050565b600260009054906101000a90046001600160a01b03166001600160a01b031663a89ae4ba6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156102c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102ec9190610eda565b6001600160a01b031663f5d7816161037b84600260009054906101000a90046001600160a01b03166001600160a01b0316630c1119bb6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610351573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103759190610ef7565b906107a9565b6040518263ffffffff1660e01b815260040161039991815260200190565b602060405180830381865afa1580156103b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103da9190610ef7565b92915050565b6000546001600160a01b031633146104135760405162461bcd60e51b815260040161040a90610f10565b60405180910390fd5b61041d60006107bc565b565b6002600154036104715760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161040a565b6002600155336104838187878561080c565b6040516341def22360e11b81526001600160a01b038716906383bde446906104b5908490899089908990600401610f45565b6020604051808303816000875af11580156104d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104f89190610ef7565b50856001600160a01b0316816001600160a01b03167fa7b01104a6b6c5840d976794ca3cdc03532966d0b58b7799a9202d093e152ad08760405161053e91815260200190565b60405180910390a350506001805550505050565b6000546001600160a01b0316331461057c5760405162461bcd60e51b815260040161040a90610f10565b61058581610787565b50565b6002600154036105da5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161040a565b6002600155336105ec8185858561080c565b6040516346f4991160e11b81526001600160a01b03828116600483015260248201859052851690638de93222906044016020604051808303816000875af115801561063b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061065f9190610ef7565b50836001600160a01b0316816001600160a01b03167fa7b01104a6b6c5840d976794ca3cdc03532966d0b58b7799a9202d093e152ad0856040516106a591815260200190565b60405180910390a35050600180555050565b6000546001600160a01b031633146106e15760405162461bcd60e51b815260040161040a90610f10565b600492909255600355600555565b6000546001600160a01b031633146107195760405162461bcd60e51b815260040161040a90610f10565b6001600160a01b03811661077e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161040a565b610585816107bc565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60006107b58284610fb0565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b806001600160a01b0316846001600160a01b03160361083d576040516282b42960e81b815260040160405180910390fd5b6000836001600160a01b03166390aa0b0f6040518163ffffffff1660e01b815260040161012060405180830381865afa15801561087e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a2919061101d565b905060006108bd8483606001516107a990919063ffffffff16565b905060006108ca85610263565b905060006108d88383610a4a565b905060006108fd6006546108f7600454866107a990919063ffffffff16565b90610a56565b9050813410156109235760405163c5a8df2f60e01b81526004810183905260240161040a565b6001600160a01b0386166109735761094361093e8483610a62565b610a6e565b61095a6109508583610a4a565b8660400151610b34565b5061096e896109693485610a62565b610baa565b610a3f565b60006109906006546108f7600554876107a990919063ffffffff16565b905060006109af6006546108f7600354886107a990919063ffffffff16565b905060006109d360646108f78a6020015161ffff168a6107a990919063ffffffff16565b905060006109ed856109e785818b89610a62565b90610a62565b90506109f881610a6e565b610a13610a09836109e78b89610a4a565b8a60400151610b34565b50610a228a6109698685610a4a565b610a3a8d61096985610a34348b610a62565b90610a4a565b505050505b505050505050505050565b60006107b582846110c5565b60006107b582846110dd565b60006107b582846110ff565b6002546040805163c5f956af60e01b815290516000926001600160a01b03169163c5f956af9160048083019260209291908290030181865afa158015610ab8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610adc9190610eda565b9050610ae88183610baa565b604080518381526001600160a01b038316602082015260018183015290517f7d91e6735310f2a10253c2b777a07cdd5bce000456de934af23dfc9e4aea7f879181900360600190a15050565b60006001600160a01b0382161580610b4a575082155b15610b57575060006103da565b610b618284610baa565b6040518381526001600160a01b0383169033907fa92ff919b850e4909ab2261d907ef955f11bc1716733a6cbece38d163a69af8a9060200160405180910390a350600192915050565b8015610c3b576000826001600160a01b031682620334505a11610bcd575a610bd2565b620334505b6040519091906000818181858888f193505050503d8060008114610c12576040519150601f19603f3d011682016040523d82523d6000602084013e610c17565b606091505b5050905080610c39576040516307a4ced160e51b815260040160405180910390fd5b505b5050565b634e487b7160e01b600052604160045260246000fd5b604051610120810167ffffffffffffffff81118282101715610c7957610c79610c3f565b60405290565b600060208284031215610c9157600080fd5b813567ffffffffffffffff80821115610ca957600080fd5b818401915084601f830112610cbd57600080fd5b813581811115610ccf57610ccf610c3f565b604051601f8201601f19908116603f01168101908382118183101715610cf757610cf7610c3f565b81604052828152876020848701011115610d1057600080fd5b826020860160208301376000928101602001929092525095945050505050565b600060208284031215610d4257600080fd5b5035919050565b6001600160a01b038116811461058557600080fd5b600080600080600060808688031215610d7657600080fd5b8535610d8181610d49565b945060208601359350604086013567ffffffffffffffff80821115610da557600080fd5b818801915088601f830112610db957600080fd5b813581811115610dc857600080fd5b8960208260051b8501011115610ddd57600080fd5b6020830195508094505050506060860135610df781610d49565b809150509295509295909350565b600060208284031215610e1757600080fd5b81356107b581610d49565b600080600060608486031215610e3757600080fd5b8335610e4281610d49565b9250602084013591506040840135610e5981610d49565b809150509250925092565b600080600060608486031215610e7957600080fd5b505081359360208301359350604090920135919050565b8051610e9b81610d49565b919050565b60008060408385031215610eb357600080fd5b8251610ebe81610d49565b6020840151909250610ecf81610d49565b809150509250929050565b600060208284031215610eec57600080fd5b81516107b581610d49565b600060208284031215610f0957600080fd5b5051919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6001600160a01b038516815260208101849052606060408201819052810182905260006001600160fb1b03831115610f7c57600080fd5b8260051b808560808501376000920160800191825250949350505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615610fca57610fca610f9a565b500290565b805167ffffffffffffffff81168114610e9b57600080fd5b805161ffff81168114610e9b57600080fd5b805163ffffffff81168114610e9b57600080fd5b80518015158114610e9b57600080fd5b6000610120828403121561103057600080fd5b611038610c55565b61104183610fcf565b815261104f60208401610fe7565b602082015261106060408401610e90565b60408201526060830151606082015261107b60808401610ff9565b608082015261108c60a08401610fcf565b60a082015261109d60c08401610fcf565b60c082015260e083015160e08201526101006110ba81850161100d565b908201529392505050565b600082198211156110d8576110d8610f9a565b500190565b6000826110fa57634e487b7160e01b600052601260045260246000fd5b500490565b60008282101561111157611111610f9a565b50039056fea2646970667358221220932046e2e7660dcec057ba0008e2861a2960b61e3eb586be2c70ac7ab27baa8864736f6c634300080d0033
Deployed Bytecode
0x6080604052600436106100915760003560e01c806387031fe51161005957806387031fe51461015b5780638da5cb5b1461017b578063dc0a539414610199578063e276df24146101ac578063f2fde38b146101cc57600080fd5b80630e21ea06146100965780634ddf47d4146100d3578063616985ed14610103578063715018a61461013157806377a59bea14610148575b600080fd5b3480156100a257600080fd5b506002546100b6906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156100df57600080fd5b506100f36100ee366004610c7f565b6101ec565b60405190151581526020016100ca565b34801561010f57600080fd5b5061012361011e366004610d30565b610263565b6040519081526020016100ca565b34801561013d57600080fd5b506101466103e0565b005b610146610156366004610d5e565b61041f565b34801561016757600080fd5b50610146610176366004610e05565b610552565b34801561018757600080fd5b506000546001600160a01b03166100b6565b6101466101a7366004610e22565b610588565b3480156101b857600080fd5b506101466101c7366004610e64565b6106b7565b3480156101d857600080fd5b506101466101e7366004610e05565b6106ef565b600254600090600160a01b900460ff1615610219576040516282b42960e81b815260040160405180910390fd5b600080838060200190518101906102309190610ea0565b9150915061023d826106ef565b61024681610787565b50506002805460ff60a01b1916600160a01b179055506001919050565b60008160000361027557506000919050565b600260009054906101000a90046001600160a01b03166001600160a01b031663a89ae4ba6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156102c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102ec9190610eda565b6001600160a01b031663f5d7816161037b84600260009054906101000a90046001600160a01b03166001600160a01b0316630c1119bb6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610351573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103759190610ef7565b906107a9565b6040518263ffffffff1660e01b815260040161039991815260200190565b602060405180830381865afa1580156103b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103da9190610ef7565b92915050565b6000546001600160a01b031633146104135760405162461bcd60e51b815260040161040a90610f10565b60405180910390fd5b61041d60006107bc565b565b6002600154036104715760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161040a565b6002600155336104838187878561080c565b6040516341def22360e11b81526001600160a01b038716906383bde446906104b5908490899089908990600401610f45565b6020604051808303816000875af11580156104d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104f89190610ef7565b50856001600160a01b0316816001600160a01b03167fa7b01104a6b6c5840d976794ca3cdc03532966d0b58b7799a9202d093e152ad08760405161053e91815260200190565b60405180910390a350506001805550505050565b6000546001600160a01b0316331461057c5760405162461bcd60e51b815260040161040a90610f10565b61058581610787565b50565b6002600154036105da5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161040a565b6002600155336105ec8185858561080c565b6040516346f4991160e11b81526001600160a01b03828116600483015260248201859052851690638de93222906044016020604051808303816000875af115801561063b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061065f9190610ef7565b50836001600160a01b0316816001600160a01b03167fa7b01104a6b6c5840d976794ca3cdc03532966d0b58b7799a9202d093e152ad0856040516106a591815260200190565b60405180910390a35050600180555050565b6000546001600160a01b031633146106e15760405162461bcd60e51b815260040161040a90610f10565b600492909255600355600555565b6000546001600160a01b031633146107195760405162461bcd60e51b815260040161040a90610f10565b6001600160a01b03811661077e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161040a565b610585816107bc565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60006107b58284610fb0565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b806001600160a01b0316846001600160a01b03160361083d576040516282b42960e81b815260040160405180910390fd5b6000836001600160a01b03166390aa0b0f6040518163ffffffff1660e01b815260040161012060405180830381865afa15801561087e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a2919061101d565b905060006108bd8483606001516107a990919063ffffffff16565b905060006108ca85610263565b905060006108d88383610a4a565b905060006108fd6006546108f7600454866107a990919063ffffffff16565b90610a56565b9050813410156109235760405163c5a8df2f60e01b81526004810183905260240161040a565b6001600160a01b0386166109735761094361093e8483610a62565b610a6e565b61095a6109508583610a4a565b8660400151610b34565b5061096e896109693485610a62565b610baa565b610a3f565b60006109906006546108f7600554876107a990919063ffffffff16565b905060006109af6006546108f7600354886107a990919063ffffffff16565b905060006109d360646108f78a6020015161ffff168a6107a990919063ffffffff16565b905060006109ed856109e785818b89610a62565b90610a62565b90506109f881610a6e565b610a13610a09836109e78b89610a4a565b8a60400151610b34565b50610a228a6109698685610a4a565b610a3a8d61096985610a34348b610a62565b90610a4a565b505050505b505050505050505050565b60006107b582846110c5565b60006107b582846110dd565b60006107b582846110ff565b6002546040805163c5f956af60e01b815290516000926001600160a01b03169163c5f956af9160048083019260209291908290030181865afa158015610ab8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610adc9190610eda565b9050610ae88183610baa565b604080518381526001600160a01b038316602082015260018183015290517f7d91e6735310f2a10253c2b777a07cdd5bce000456de934af23dfc9e4aea7f879181900360600190a15050565b60006001600160a01b0382161580610b4a575082155b15610b57575060006103da565b610b618284610baa565b6040518381526001600160a01b0383169033907fa92ff919b850e4909ab2261d907ef955f11bc1716733a6cbece38d163a69af8a9060200160405180910390a350600192915050565b8015610c3b576000826001600160a01b031682620334505a11610bcd575a610bd2565b620334505b6040519091906000818181858888f193505050503d8060008114610c12576040519150601f19603f3d011682016040523d82523d6000602084013e610c17565b606091505b5050905080610c39576040516307a4ced160e51b815260040160405180910390fd5b505b5050565b634e487b7160e01b600052604160045260246000fd5b604051610120810167ffffffffffffffff81118282101715610c7957610c79610c3f565b60405290565b600060208284031215610c9157600080fd5b813567ffffffffffffffff80821115610ca957600080fd5b818401915084601f830112610cbd57600080fd5b813581811115610ccf57610ccf610c3f565b604051601f8201601f19908116603f01168101908382118183101715610cf757610cf7610c3f565b81604052828152876020848701011115610d1057600080fd5b826020860160208301376000928101602001929092525095945050505050565b600060208284031215610d4257600080fd5b5035919050565b6001600160a01b038116811461058557600080fd5b600080600080600060808688031215610d7657600080fd5b8535610d8181610d49565b945060208601359350604086013567ffffffffffffffff80821115610da557600080fd5b818801915088601f830112610db957600080fd5b813581811115610dc857600080fd5b8960208260051b8501011115610ddd57600080fd5b6020830195508094505050506060860135610df781610d49565b809150509295509295909350565b600060208284031215610e1757600080fd5b81356107b581610d49565b600080600060608486031215610e3757600080fd5b8335610e4281610d49565b9250602084013591506040840135610e5981610d49565b809150509250925092565b600080600060608486031215610e7957600080fd5b505081359360208301359350604090920135919050565b8051610e9b81610d49565b919050565b60008060408385031215610eb357600080fd5b8251610ebe81610d49565b6020840151909250610ecf81610d49565b809150509250929050565b600060208284031215610eec57600080fd5b81516107b581610d49565b600060208284031215610f0957600080fd5b5051919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6001600160a01b038516815260208101849052606060408201819052810182905260006001600160fb1b03831115610f7c57600080fd5b8260051b808560808501376000920160800191825250949350505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615610fca57610fca610f9a565b500290565b805167ffffffffffffffff81168114610e9b57600080fd5b805161ffff81168114610e9b57600080fd5b805163ffffffff81168114610e9b57600080fd5b80518015158114610e9b57600080fd5b6000610120828403121561103057600080fd5b611038610c55565b61104183610fcf565b815261104f60208401610fe7565b602082015261106060408401610e90565b60408201526060830151606082015261107b60808401610ff9565b608082015261108c60a08401610fcf565b60a082015261109d60c08401610fcf565b60c082015260e083015160e08201526101006110ba81850161100d565b908201529392505050565b600082198211156110d8576110d8610f9a565b500190565b6000826110fa57634e487b7160e01b600052601260045260246000fd5b500490565b60008282101561111157611111610f9a565b50039056fea2646970667358221220932046e2e7660dcec057ba0008e2861a2960b61e3eb586be2c70ac7ab27baa8864736f6c634300080d0033
Net Worth in USD
Net Worth in ETH
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.