Source Code
Latest 25 from a total of 17,879 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Buy | 203311589 | 599 days ago | IN | 0.025 ETH | 0.00000201 | ||||
| Secure Buy | 203310932 | 599 days ago | IN | 0.0088 ETH | 0.00000216 | ||||
| Secure Buy | 203310897 | 599 days ago | IN | 0.025 ETH | 0.00000225 | ||||
| Secure Buy | 203310646 | 599 days ago | IN | 0.0088 ETH | 0.0000021 | ||||
| Secure Buy | 203308258 | 599 days ago | IN | 0.0088 ETH | 0.00000213 | ||||
| Buy | 203307788 | 599 days ago | IN | 0.043 ETH | 0.00000161 | ||||
| Secure Buy | 203306450 | 599 days ago | IN | 0.0088 ETH | 0.00000177 | ||||
| Secure Buy | 203306179 | 599 days ago | IN | 0.0088 ETH | 0.00000249 | ||||
| Secure Buy | 203305323 | 599 days ago | IN | 0.0088 ETH | 0.00000255 | ||||
| Secure Buy | 203305275 | 599 days ago | IN | 0.0088 ETH | 0.00000222 | ||||
| Buy | 203304599 | 599 days ago | IN | 0.0088 ETH | 0.00000219 | ||||
| Buy | 203304172 | 599 days ago | IN | 0.0088 ETH | 0.00000236 | ||||
| Buy | 203303904 | 599 days ago | IN | 0.043 ETH | 0.00000222 | ||||
| Buy | 203303844 | 599 days ago | IN | 0.025 ETH | 0.00000231 | ||||
| Buy | 203303566 | 599 days ago | IN | 0.172 ETH | 0.00000246 | ||||
| Secure Buy | 203303548 | 599 days ago | IN | 0.0088 ETH | 0.00000249 | ||||
| Buy | 203302454 | 599 days ago | IN | 0.043 ETH | 0.00000238 | ||||
| Secure Buy | 203301772 | 599 days ago | IN | 0.0088 ETH | 0.00000256 | ||||
| Secure Buy | 203300563 | 599 days ago | IN | 0.0088 ETH | 0.00000245 | ||||
| Secure Buy | 203299952 | 599 days ago | IN | 0.0088 ETH | 0.00000164 | ||||
| Secure Buy | 203297450 | 599 days ago | IN | 0.0088 ETH | 0.00000243 | ||||
| Buy | 203296501 | 599 days ago | IN | 0.043 ETH | 0.00000145 | ||||
| Secure Buy | 203294317 | 599 days ago | IN | 0.0088 ETH | 0.00000248 | ||||
| Secure Buy | 203290428 | 599 days ago | IN | 0.043 ETH | 0.00000246 | ||||
| Buy | 203288204 | 599 days ago | IN | 0.0088 ETH | 0.00000152 |
Latest 10 internal transactions
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 208356033 | 584 days ago | 1.3589 ETH | ||||
| 203261193 | 599 days ago | 30 ETH | ||||
| 201990368 | 603 days ago | 25.5 ETH | ||||
| 201621479 | 604 days ago | 31.8 ETH | ||||
| 201265157 | 605 days ago | 40 ETH | ||||
| 200846689 | 607 days ago | 20 ETH | ||||
| 200275711 | 608 days ago | 31.9 ETH | ||||
| 199850802 | 609 days ago | 3 ETH | ||||
| 199540494 | 610 days ago | 1 ETH | ||||
| 199265766 | 611 days ago | 5 ETH |
Cross-Chain Transactions
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
MachineDealer
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.19;
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol";
interface IFactory {
function rental(address _user, uint8 _mId, uint16 _qty) external;
function rentalPermit(
address _user,
uint8 _mId,
uint16 _qty,
bytes calldata _signature,
bytes32 _hash
) external;
function getPackage(
uint8 _mId
)
external
view
returns (uint256 _cap, uint256 _price, address _payment, bool _enable);
}
interface IERC20Burnable {
function burn(uint256 value) external;
function burnFrom(address account, uint256 value) external;
}
contract MachineDealer is Ownable, ReentrancyGuard {
using SafeERC20 for IERC20;
IFactory factory;
IERC20 public wXBL;
address public Treasury;
event BUY(address _buyer, uint8 _mId, uint16 _qty, bytes32 _hash);
event BUY(address _buyer, uint8 _mId, uint16 _qty);
constructor(address _factory, IERC20 _wXBL) {
factory = IFactory(_factory);
wXBL = _wXBL;
}
receive() external payable {}
function setFactory(address _addr) external onlyOwner {
require(_addr != address(0), "zero address");
factory = IFactory(_addr);
}
function setTreasury(address _addr) external onlyOwner {
require(_addr != address(0), "zero address");
Treasury = _addr;
}
function setWXBL(IERC20 _wXBL) external onlyOwner {
wXBL = _wXBL;
}
function secureBuy(
uint8 _mId,
uint16 _qty,
bytes calldata _signature,
bytes32 _hash
) external nonReentrant payable {
require(_qty > 0, "qty is zero");
(, uint256 _price, address _payment, bool _enable) = factory.getPackage(_mId);
require(_enable, "Machine disabled");
uint256 _tPrice = _price * _qty;
if(address(0) == _payment) {
require(msg.value == _tPrice, "amount");
} else {
IERC20(_payment).safeTransferFrom(_msgSender(), Treasury, _tPrice);
}
factory.rentalPermit(_msgSender(), _mId, _qty, _signature, _hash);
emit BUY(_msgSender(), _mId, _qty, _hash);
}
function buy(uint8 _mId, uint16 _qty) external nonReentrant payable {
require(_qty > 0, "qty is zero");
(uint256 _cap, uint256 _price, address _payment, bool _enable) = factory.getPackage(_mId);
require(_enable, "Machine disabled");
uint256 _tPrice = _price * _qty;
uint256 _tCap = _cap * _qty;
if(address(0) == _payment) {
require(msg.value == _tPrice, "amount");
} else {
IERC20(_payment).safeTransferFrom(_msgSender(), Treasury, _tPrice);
}
IERC20Burnable(address(wXBL)).burnFrom(_msgSender(), _tCap);
factory.rental(_msgSender(), _mId, _qty);
emit BUY(_msgSender(), _mId, _qty);
}
function withdrawnETH(uint256 _amount) external onlyOwner returns (bool success) {
require(address(this).balance >= _amount, "Not enough fund!");
(success, ) = payable(Treasury).call{value: _amount}("");
require(success, "Failed");
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)
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 making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be _NOT_ENTERED
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
/**
* @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
* `nonReentrant` function in the call stack.
*/
function _reentrancyGuardEntered() internal view returns (bool) {
return _status == _ENTERED;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*
* ==== Security Considerations
*
* There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
* expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
* considered as an intention to spend the allowance in any specific way. The second is that because permits have
* built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
* take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
* generally recommended is:
*
* ```solidity
* function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
* try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
* doThing(..., value);
* }
*
* function doThing(..., uint256 value) public {
* token.safeTransferFrom(msg.sender, address(this), value);
* ...
* }
* ```
*
* Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
* `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
* {SafeERC20-safeTransferFrom}).
*
* Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
* contracts should have entry points that don't rely on permit.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*
* CAUTION: See Security Considerations above.
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/IERC20Permit.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
/**
* @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
/**
* @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
* calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
*/
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
/**
* @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 oldAllowance = token.allowance(address(this), spender);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
}
/**
* @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
}
}
/**
* @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
* to be set to zero before setting it to a non-zero value, such as USDT.
*/
function forceApprove(IERC20 token, address spender, uint256 value) internal {
bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);
if (!_callOptionalReturnBool(token, approvalCall)) {
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
_callOptionalReturn(token, approvalCall);
}
}
/**
* @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
* Revert on invalid signature.
*/
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*
* This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
*/
function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
// and not revert is the subcall reverts.
(bool success, bytes memory returndata) = address(token).call(data);
return
success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"evmVersion": "paris",
"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":[{"internalType":"address","name":"_factory","type":"address"},{"internalType":"contract IERC20","name":"_wXBL","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_buyer","type":"address"},{"indexed":false,"internalType":"uint8","name":"_mId","type":"uint8"},{"indexed":false,"internalType":"uint16","name":"_qty","type":"uint16"},{"indexed":false,"internalType":"bytes32","name":"_hash","type":"bytes32"}],"name":"BUY","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_buyer","type":"address"},{"indexed":false,"internalType":"uint8","name":"_mId","type":"uint8"},{"indexed":false,"internalType":"uint16","name":"_qty","type":"uint16"}],"name":"BUY","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":[],"name":"Treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mId","type":"uint8"},{"internalType":"uint16","name":"_qty","type":"uint16"}],"name":"buy","outputs":[],"stateMutability":"payable","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":"uint8","name":"_mId","type":"uint8"},{"internalType":"uint16","name":"_qty","type":"uint16"},{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"bytes32","name":"_hash","type":"bytes32"}],"name":"secureBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setFactory","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_wXBL","type":"address"}],"name":"setWXBL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wXBL","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawnETH","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
608060405234801561001057600080fd5b506040516111aa3803806111aa83398101604081905261002f916100d5565b6100383361006d565b60018055600280546001600160a01b039384166001600160a01b0319918216179091556003805492909316911617905561010f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146100d257600080fd5b50565b600080604083850312156100e857600080fd5b82516100f3816100bd565b6020840151909250610104816100bd565b809150509250929050565b61108c8061011e6000396000f3fe6080604052600436106100a05760003560e01c80638da5cb5b116100645780638da5cb5b14610153578063b55bb5c714610171578063c9cfb05f146101a1578063cb605720146101c1578063f0f44260146101d4578063f2fde38b146101f457600080fd5b80633eb8e003146100ac578063563df32f146100c15780635bb47808146100fe578063715018a61461011e5780638a5656c61461013357600080fd5b366100a757005b600080fd5b6100bf6100ba366004610dcb565b610214565b005b3480156100cd57600080fd5b506004546100e1906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561010a57600080fd5b506100bf610119366004610e76565b610474565b34801561012a57600080fd5b506100bf6104e3565b34801561013f57600080fd5b506100bf61014e366004610e76565b6104f7565b34801561015f57600080fd5b506000546001600160a01b03166100e1565b34801561017d57600080fd5b5061019161018c366004610e9a565b610521565b60405190151581526020016100f5565b3480156101ad57600080fd5b506003546100e1906001600160a01b031681565b6100bf6101cf366004610eb3565b610601565b3480156101e057600080fd5b506100bf6101ef366004610e76565b6108f3565b34801561020057600080fd5b506100bf61020f366004610e76565b610962565b61021c6109db565b60008461ffff16116102635760405162461bcd60e51b815260206004820152600b60248201526a717479206973207a65726f60a81b60448201526064015b60405180910390fd5b600254604051634fc64ef360e11b815260ff87166004820152600091829182916001600160a01b031690639f8c9de690602401608060405180830381865afa1580156102b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102d79190610ef6565b935093509350508061031e5760405162461bcd60e51b815260206004820152601060248201526f135858da1a5b9948191a5cd8589b195960821b604482015260640161025a565b600061032e61ffff891685610f3e565b90506001600160a01b03831660000361037e578034146103795760405162461bcd60e51b8152602060048201526006602482015265185b5bdd5b9d60d21b604482015260640161025a565b610399565b610399336004546001600160a01b0386811692911684610a34565b6002546001600160a01b0316632f2fbf49338b8b8b8b8b6040518763ffffffff1660e01b81526004016103d196959493929190610f69565b600060405180830381600087803b1580156103eb57600080fd5b505af11580156103ff573d6000803e3d6000fd5b505050507f9485a98b6ee6be5b1271edcdd536e39f575dca88a449a1660eb6d2ca7168949a61042b3390565b604080516001600160a01b03909216825260ff8c16602083015261ffff8b16908201526060810187905260800160405180910390a15050505061046d60018055565b5050505050565b61047c610a94565b6001600160a01b0381166104c15760405162461bcd60e51b815260206004820152600c60248201526b7a65726f206164647265737360a01b604482015260640161025a565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6104eb610a94565b6104f56000610aee565b565b6104ff610a94565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b600061052b610a94565b8147101561056e5760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e642160801b604482015260640161025a565b6004546040516001600160a01b03909116908390600081818185875af1925050503d80600081146105bb576040519150601f19603f3d011682016040523d82523d6000602084013e6105c0565b606091505b505080915050806105fc5760405162461bcd60e51b815260206004820152600660248201526511985a5b195960d21b604482015260640161025a565b919050565b6106096109db565b60008161ffff161161064b5760405162461bcd60e51b815260206004820152600b60248201526a717479206973207a65726f60a81b604482015260640161025a565b600254604051634fc64ef360e11b815260ff841660048201526000918291829182916001600160a01b0390911690639f8c9de690602401608060405180830381865afa15801561069f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106c39190610ef6565b93509350935093508061070b5760405162461bcd60e51b815260206004820152601060248201526f135858da1a5b9948191a5cd8589b195960821b604482015260640161025a565b600061071b61ffff871685610f3e565b9050600061072d61ffff881687610f3e565b90506001600160a01b03841660000361077d578134146107785760405162461bcd60e51b8152602060048201526006602482015265185b5bdd5b9d60d21b604482015260640161025a565b610798565b610798336004546001600160a01b0387811692911685610a34565b6003546001600160a01b03166379cc6790336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401600060405180830381600087803b1580156107f257600080fd5b505af1158015610806573d6000803e3d6000fd5b50506002546001600160a01b0316915063cb1e13049050336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260ff8b16602482015261ffff8a166044820152606401600060405180830381600087803b15801561087257600080fd5b505af1158015610886573d6000803e3d6000fd5b505050507f4a136d4abc14e630b11fc21d022a782daa75c6dedf72e9c6e6474650e19152376108b23390565b604080516001600160a01b03909216825260ff8b16602083015261ffff8a169082015260600160405180910390a15050505050506108ef60018055565b5050565b6108fb610a94565b6001600160a01b0381166109405760405162461bcd60e51b815260206004820152600c60248201526b7a65726f206164647265737360a01b604482015260640161025a565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b61096a610a94565b6001600160a01b0381166109cf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161025a565b6109d881610aee565b50565b600260015403610a2d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161025a565b6002600155565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610a8e908590610b3e565b50505050565b6000546001600160a01b031633146104f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161025a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610b93826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610c189092919063ffffffff16565b9050805160001480610bb4575080806020019051810190610bb49190610fc8565b610c135760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161025a565b505050565b6060610c278484600085610c2f565b949350505050565b606082471015610c905760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161025a565b600080866001600160a01b03168587604051610cac9190611007565b60006040518083038185875af1925050503d8060008114610ce9576040519150601f19603f3d011682016040523d82523d6000602084013e610cee565b606091505b5091509150610cff87838387610d0a565b979650505050505050565b60608315610d79578251600003610d72576001600160a01b0385163b610d725760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161025a565b5081610c27565b610c278383815115610d8e5781518083602001fd5b8060405162461bcd60e51b815260040161025a9190611023565b803560ff811681146105fc57600080fd5b803561ffff811681146105fc57600080fd5b600080600080600060808688031215610de357600080fd5b610dec86610da8565b9450610dfa60208701610db9565b9350604086013567ffffffffffffffff80821115610e1757600080fd5b818801915088601f830112610e2b57600080fd5b813581811115610e3a57600080fd5b896020828501011115610e4c57600080fd5b96999598505060200195606001359392505050565b6001600160a01b03811681146109d857600080fd5b600060208284031215610e8857600080fd5b8135610e9381610e61565b9392505050565b600060208284031215610eac57600080fd5b5035919050565b60008060408385031215610ec657600080fd5b610ecf83610da8565b9150610edd60208401610db9565b90509250929050565b805180151581146105fc57600080fd5b60008060008060808587031215610f0c57600080fd5b84519350602085015192506040850151610f2581610e61565b9150610f3360608601610ee6565b905092959194509250565b8082028115828204841417610f6357634e487b7160e01b600052601160045260246000fd5b92915050565b6001600160a01b038716815260ff8616602082015261ffff8516604082015260a0606082018190528101839052828460c0830137600060c08483010152600060c0601f19601f8601168301019050826080830152979650505050505050565b600060208284031215610fda57600080fd5b610e9382610ee6565b60005b83811015610ffe578181015183820152602001610fe6565b50506000910152565b60008251611019818460208701610fe3565b9190910192915050565b6020815260008251806020840152611042816040850160208701610fe3565b601f01601f1916919091016040019291505056fea2646970667358221220a950082cee67b5d90e0151570e2f8e2d5196b099e4b62c6e1d15c3029d925ece64736f6c634300081800330000000000000000000000000a8d45cd864425e5a9708c3e053252181e93f1eb000000000000000000000000e6c4c7c0b9b7089b70752cdb5024a30b16fa772d
Deployed Bytecode
0x6080604052600436106100a05760003560e01c80638da5cb5b116100645780638da5cb5b14610153578063b55bb5c714610171578063c9cfb05f146101a1578063cb605720146101c1578063f0f44260146101d4578063f2fde38b146101f457600080fd5b80633eb8e003146100ac578063563df32f146100c15780635bb47808146100fe578063715018a61461011e5780638a5656c61461013357600080fd5b366100a757005b600080fd5b6100bf6100ba366004610dcb565b610214565b005b3480156100cd57600080fd5b506004546100e1906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561010a57600080fd5b506100bf610119366004610e76565b610474565b34801561012a57600080fd5b506100bf6104e3565b34801561013f57600080fd5b506100bf61014e366004610e76565b6104f7565b34801561015f57600080fd5b506000546001600160a01b03166100e1565b34801561017d57600080fd5b5061019161018c366004610e9a565b610521565b60405190151581526020016100f5565b3480156101ad57600080fd5b506003546100e1906001600160a01b031681565b6100bf6101cf366004610eb3565b610601565b3480156101e057600080fd5b506100bf6101ef366004610e76565b6108f3565b34801561020057600080fd5b506100bf61020f366004610e76565b610962565b61021c6109db565b60008461ffff16116102635760405162461bcd60e51b815260206004820152600b60248201526a717479206973207a65726f60a81b60448201526064015b60405180910390fd5b600254604051634fc64ef360e11b815260ff87166004820152600091829182916001600160a01b031690639f8c9de690602401608060405180830381865afa1580156102b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102d79190610ef6565b935093509350508061031e5760405162461bcd60e51b815260206004820152601060248201526f135858da1a5b9948191a5cd8589b195960821b604482015260640161025a565b600061032e61ffff891685610f3e565b90506001600160a01b03831660000361037e578034146103795760405162461bcd60e51b8152602060048201526006602482015265185b5bdd5b9d60d21b604482015260640161025a565b610399565b610399336004546001600160a01b0386811692911684610a34565b6002546001600160a01b0316632f2fbf49338b8b8b8b8b6040518763ffffffff1660e01b81526004016103d196959493929190610f69565b600060405180830381600087803b1580156103eb57600080fd5b505af11580156103ff573d6000803e3d6000fd5b505050507f9485a98b6ee6be5b1271edcdd536e39f575dca88a449a1660eb6d2ca7168949a61042b3390565b604080516001600160a01b03909216825260ff8c16602083015261ffff8b16908201526060810187905260800160405180910390a15050505061046d60018055565b5050505050565b61047c610a94565b6001600160a01b0381166104c15760405162461bcd60e51b815260206004820152600c60248201526b7a65726f206164647265737360a01b604482015260640161025a565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6104eb610a94565b6104f56000610aee565b565b6104ff610a94565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b600061052b610a94565b8147101561056e5760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e642160801b604482015260640161025a565b6004546040516001600160a01b03909116908390600081818185875af1925050503d80600081146105bb576040519150601f19603f3d011682016040523d82523d6000602084013e6105c0565b606091505b505080915050806105fc5760405162461bcd60e51b815260206004820152600660248201526511985a5b195960d21b604482015260640161025a565b919050565b6106096109db565b60008161ffff161161064b5760405162461bcd60e51b815260206004820152600b60248201526a717479206973207a65726f60a81b604482015260640161025a565b600254604051634fc64ef360e11b815260ff841660048201526000918291829182916001600160a01b0390911690639f8c9de690602401608060405180830381865afa15801561069f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106c39190610ef6565b93509350935093508061070b5760405162461bcd60e51b815260206004820152601060248201526f135858da1a5b9948191a5cd8589b195960821b604482015260640161025a565b600061071b61ffff871685610f3e565b9050600061072d61ffff881687610f3e565b90506001600160a01b03841660000361077d578134146107785760405162461bcd60e51b8152602060048201526006602482015265185b5bdd5b9d60d21b604482015260640161025a565b610798565b610798336004546001600160a01b0387811692911685610a34565b6003546001600160a01b03166379cc6790336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401600060405180830381600087803b1580156107f257600080fd5b505af1158015610806573d6000803e3d6000fd5b50506002546001600160a01b0316915063cb1e13049050336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260ff8b16602482015261ffff8a166044820152606401600060405180830381600087803b15801561087257600080fd5b505af1158015610886573d6000803e3d6000fd5b505050507f4a136d4abc14e630b11fc21d022a782daa75c6dedf72e9c6e6474650e19152376108b23390565b604080516001600160a01b03909216825260ff8b16602083015261ffff8a169082015260600160405180910390a15050505050506108ef60018055565b5050565b6108fb610a94565b6001600160a01b0381166109405760405162461bcd60e51b815260206004820152600c60248201526b7a65726f206164647265737360a01b604482015260640161025a565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b61096a610a94565b6001600160a01b0381166109cf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161025a565b6109d881610aee565b50565b600260015403610a2d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161025a565b6002600155565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610a8e908590610b3e565b50505050565b6000546001600160a01b031633146104f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161025a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610b93826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610c189092919063ffffffff16565b9050805160001480610bb4575080806020019051810190610bb49190610fc8565b610c135760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161025a565b505050565b6060610c278484600085610c2f565b949350505050565b606082471015610c905760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161025a565b600080866001600160a01b03168587604051610cac9190611007565b60006040518083038185875af1925050503d8060008114610ce9576040519150601f19603f3d011682016040523d82523d6000602084013e610cee565b606091505b5091509150610cff87838387610d0a565b979650505050505050565b60608315610d79578251600003610d72576001600160a01b0385163b610d725760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161025a565b5081610c27565b610c278383815115610d8e5781518083602001fd5b8060405162461bcd60e51b815260040161025a9190611023565b803560ff811681146105fc57600080fd5b803561ffff811681146105fc57600080fd5b600080600080600060808688031215610de357600080fd5b610dec86610da8565b9450610dfa60208701610db9565b9350604086013567ffffffffffffffff80821115610e1757600080fd5b818801915088601f830112610e2b57600080fd5b813581811115610e3a57600080fd5b896020828501011115610e4c57600080fd5b96999598505060200195606001359392505050565b6001600160a01b03811681146109d857600080fd5b600060208284031215610e8857600080fd5b8135610e9381610e61565b9392505050565b600060208284031215610eac57600080fd5b5035919050565b60008060408385031215610ec657600080fd5b610ecf83610da8565b9150610edd60208401610db9565b90509250929050565b805180151581146105fc57600080fd5b60008060008060808587031215610f0c57600080fd5b84519350602085015192506040850151610f2581610e61565b9150610f3360608601610ee6565b905092959194509250565b8082028115828204841417610f6357634e487b7160e01b600052601160045260246000fd5b92915050565b6001600160a01b038716815260ff8616602082015261ffff8516604082015260a0606082018190528101839052828460c0830137600060c08483010152600060c0601f19601f8601168301019050826080830152979650505050505050565b600060208284031215610fda57600080fd5b610e9382610ee6565b60005b83811015610ffe578181015183820152602001610fe6565b50506000910152565b60008251611019818460208701610fe3565b9190910192915050565b6020815260008251806020840152611042816040850160208701610fe3565b601f01601f1916919091016040019291505056fea2646970667358221220a950082cee67b5d90e0151570e2f8e2d5196b099e4b62c6e1d15c3029d925ece64736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000a8d45cd864425e5a9708c3e053252181e93f1eb000000000000000000000000e6c4c7c0b9b7089b70752cdb5024a30b16fa772d
-----Decoded View---------------
Arg [0] : _factory (address): 0x0A8d45CD864425E5A9708C3E053252181e93F1EB
Arg [1] : _wXBL (address): 0xE6C4C7C0b9B7089b70752Cdb5024A30b16Fa772d
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000a8d45cd864425e5a9708c3e053252181e93f1eb
Arg [1] : 000000000000000000000000e6c4c7c0b9b7089b70752cdb5024a30b16fa772d
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.