Overview
ETH Balance
0.002 ETH
Eth Value
$6.47 (@ $3,235.19/ETH)More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 328 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Buy Option | 18215562 | 477 days ago | IN | 0.0160446 ETH | 0.00808331 | ||||
Buy Option | 18213615 | 477 days ago | IN | 0.01071 ETH | 0.00865286 | ||||
Cancel Ask | 18208465 | 478 days ago | IN | 0 ETH | 0.00057913 | ||||
Buy Option | 18208062 | 478 days ago | IN | 0.06783 ETH | 0.00265133 | ||||
Buy Options | 18208001 | 478 days ago | IN | 0.06171 ETH | 0.0044147 | ||||
Buy Options | 18206878 | 478 days ago | IN | 0.1071 ETH | 0.0048006 | ||||
Buy Option | 18206867 | 478 days ago | IN | 0.1863642 ETH | 0.00265939 | ||||
Buy Option | 18204746 | 478 days ago | IN | 0.097614 ETH | 0.0025264 | ||||
Buy Option | 18203868 | 479 days ago | IN | 0.0102 ETH | 0.00218459 | ||||
Buy Option | 18202259 | 479 days ago | IN | 0.24174 ETH | 0.00231873 | ||||
Buy Option | 18193981 | 480 days ago | IN | 0.051 ETH | 0.00303562 | ||||
Buy Options | 18193938 | 480 days ago | IN | 0.186354 ETH | 0.00832512 | ||||
Buy Option | 18169122 | 483 days ago | IN | 0.0306 ETH | 0.00557789 | ||||
Buy Option | 18169083 | 483 days ago | IN | 0.03264 ETH | 0.0076895 | ||||
Buy Options | 18147043 | 487 days ago | IN | 0.105162 ETH | 0.02044341 | ||||
Buy Option | 18146965 | 487 days ago | IN | 0.01122 ETH | 0.00295282 | ||||
Buy Option | 18146950 | 487 days ago | IN | 0.0102 ETH | 0.00334581 | ||||
Buy Option | 18136505 | 488 days ago | IN | 1.2495 ETH | 0.01126806 | ||||
Buy Option | 18131069 | 489 days ago | IN | 0.0153 ETH | 0.00686792 | ||||
Buy Option | 18130063 | 489 days ago | IN | 0.012342 ETH | 0.00618421 | ||||
Buy Option | 18129944 | 489 days ago | IN | 0.04182 ETH | 0.00911994 | ||||
Buy Option | 18122410 | 490 days ago | IN | 0.051 ETH | 0.00617533 | ||||
Buy Option | 18122159 | 490 days ago | IN | 0.052734 ETH | 0.00895647 | ||||
Buy Option | 18119194 | 491 days ago | IN | 0.05508 ETH | 0.00429177 | ||||
Buy Option | 18119176 | 491 days ago | IN | 0.0255 ETH | 0.00385759 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
18215562 | 477 days ago | 0.0160446 ETH | ||||
18213615 | 477 days ago | 0.01071 ETH | ||||
18208062 | 478 days ago | 0.06783 ETH | ||||
18208001 | 478 days ago | 0.06171 ETH | ||||
18206878 | 478 days ago | 0.0561 ETH | ||||
18206878 | 478 days ago | 0.051 ETH | ||||
18206867 | 478 days ago | 0.1863642 ETH | ||||
18204746 | 478 days ago | 0.097614 ETH | ||||
18203868 | 479 days ago | 0.0102 ETH | ||||
18202259 | 479 days ago | 0.24174 ETH | ||||
18193981 | 480 days ago | 0.051 ETH | ||||
18193938 | 480 days ago | 0.097614 ETH | ||||
18193938 | 480 days ago | 0.08874 ETH | ||||
18169122 | 483 days ago | 0.0306 ETH | ||||
18169083 | 483 days ago | 0.03264 ETH | ||||
18147043 | 487 days ago | 0.014892 ETH | ||||
18147043 | 487 days ago | 0.014892 ETH | ||||
18147043 | 487 days ago | 0.013566 ETH | ||||
18147043 | 487 days ago | 0.013566 ETH | ||||
18147043 | 487 days ago | 0.012342 ETH | ||||
18147043 | 487 days ago | 0.012342 ETH | ||||
18147043 | 487 days ago | 0.012342 ETH | ||||
18147043 | 487 days ago | 0.01122 ETH | ||||
18146965 | 487 days ago | 0.01122 ETH | ||||
18146950 | 487 days ago | 0.0102 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
WasabiConduit
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 1500 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "../IWasabiPool.sol"; import "../IWasabiErrors.sol"; import "../IWasabiPoolFactory.sol"; import "../IWasabiConduit.sol"; import "../WasabiOption.sol"; import "./ConduitSignatureVerifier.sol"; import "../fees/IWasabiFeeManager.sol"; /** * @dev A conduit that allows for trades of WasabiOptions */ contract WasabiConduit is Ownable, IERC721Receiver, ReentrancyGuard, ConduitSignatureVerifier, IWasabiConduit { event AskTaken( uint256 optionId, uint256 orderId, address seller, address taker ); event BidTaken( uint256 optionId, uint256 orderId, address buyer, address taker ); event BidCancelled(uint256 orderId, address buyer); event AskCancelled(uint256 orderId, address seller); WasabiOption private option; uint256 public maxOptionsToBuy; mapping(bytes => bool) public idToFinalizedOrCancelled; address private factory; /** * @dev Initializes a new WasabiConduit */ constructor(WasabiOption _option) { option = _option; maxOptionsToBuy = 100; } /// @inheritdoc IWasabiConduit function buyOptions( WasabiStructs.PoolAsk[] calldata _requests, WasabiStructs.Ask[] calldata _asks, bytes[] calldata _signatures ) external payable returns (uint256[] memory) { uint256 size = _requests.length + _asks.length; require(size > 0, "Need to provide at least one request"); require(size <= maxOptionsToBuy, "Cannot buy that many options"); require( size == _signatures.length, "Need to provide the same amount of signatures and requests" ); uint256[] memory optionIds = new uint[](size); for (uint256 index = 0; index < _requests.length; index++) { uint256 tokenId = buyOption(_requests[index], _signatures[index]); optionIds[index] = tokenId; } for (uint256 index = 0; index < _asks.length; index++) { uint256 sigIndex = index + _requests.length; uint256 tokenId = acceptAsk( _asks[index], _signatures[sigIndex] ); optionIds[sigIndex] = tokenId; } return optionIds; } /// @inheritdoc IWasabiConduit function buyOption( WasabiStructs.PoolAsk calldata _request, bytes calldata _signature ) public payable returns (uint256) { IWasabiPoolFactory poolFactory = IWasabiPoolFactory(factory); IWasabiFeeManager feeManager = IWasabiFeeManager(poolFactory.getFeeManager()); (, uint256 feeAmount) = feeManager.getFeeData(_request.poolAddress, _request.premium); uint256 amount = _request.premium + feeAmount; IWasabiPool pool = IWasabiPool(_request.poolAddress); if (pool.getLiquidityAddress() != address(0)) { IERC20 erc20 = IERC20(pool.getLiquidityAddress()); if (!erc20.transferFrom(_msgSender(), address(this), amount)) { revert IWasabiErrors.FailedToSend(); } erc20.approve(_request.poolAddress, amount); return pool.writeOptionTo(_request, _signature, _msgSender()); } else { require(msg.value >= amount, "Not enough ETH supplied"); return pool.writeOptionTo{value: amount}(_request, _signature, _msgSender()); } } /** * Always returns `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address /* operator */, address /* from */, uint256 /* tokenId */, bytes memory /* data */ ) public virtual override returns (bytes4) { return this.onERC721Received.selector; } /// @inheritdoc IWasabiConduit function transferToken( address _nft, uint256 _tokenId, address _target ) external onlyOwner { IERC721(_nft).safeTransferFrom(address(this), _target, _tokenId); } /// @inheritdoc IWasabiConduit function setOption(WasabiOption _option) external onlyOwner { option = _option; } /// @inheritdoc IWasabiConduit function setMaxOptionsToBuy(uint256 _maxOptionsToBuy) external onlyOwner { maxOptionsToBuy = _maxOptionsToBuy; } /// @inheritdoc IWasabiConduit function setPoolFactoryAddress(address _factory) external onlyOwner { factory = _factory; } /// @inheritdoc IWasabiConduit function acceptAsk( WasabiStructs.Ask calldata _ask, bytes calldata _signature ) public payable nonReentrant returns (uint256) { bytes memory id = getAskId(_ask); require( !idToFinalizedOrCancelled[id], "Order was finalized or cancelled" ); validateAsk(_ask, _signature); uint256 price = _ask.price; (address royaltyAddress, uint256 royaltyAmount) = option.royaltyInfo( _ask.optionId, price ); if (_ask.tokenAddress == address(0)) { require(msg.value >= price, "Not enough ETH supplied"); if (royaltyAmount > 0) { (bool sent, ) = payable(royaltyAddress).call{value: royaltyAmount}(""); if (!sent) { revert IWasabiErrors.FailedToSend(); } price -= royaltyAmount; } (bool _sent, ) = payable(_ask.seller).call{value: price}(""); if (!_sent) { revert IWasabiErrors.FailedToSend(); } } else { IERC20 erc20 = IERC20(_ask.tokenAddress); if (royaltyAmount > 0) { if(!erc20.transferFrom(_msgSender(), royaltyAddress, royaltyAmount)) { revert IWasabiErrors.FailedToSend(); } price -= royaltyAmount; } if (!erc20.transferFrom(_msgSender(), _ask.seller, price)) { revert IWasabiErrors.FailedToSend(); } } option.safeTransferFrom(_ask.seller, _msgSender(), _ask.optionId); idToFinalizedOrCancelled[id] = true; emit AskTaken(_ask.optionId, _ask.id, _ask.seller, _msgSender()); return _ask.optionId; } /// @inheritdoc IWasabiConduit function acceptBid( uint256 _optionId, address _poolAddress, WasabiStructs.Bid calldata _bid, bytes calldata _signature ) external payable nonReentrant { bytes memory id = getBidId(_bid); require( !idToFinalizedOrCancelled[id], "Order was finalized or cancelled" ); IWasabiPool pool = IWasabiPool(_poolAddress); validateOptionForBid(_optionId, pool, _bid); validateBid(pool, _bid, _signature); uint256 price = _bid.price; (address royaltyAddress, uint256 royaltyAmount) = option.royaltyInfo( _optionId, price ); IERC20 erc20 = IERC20(_bid.tokenAddress); if (royaltyAmount > 0) { if (!erc20.transferFrom(_bid.buyer, royaltyAddress, royaltyAmount)) { revert IWasabiErrors.FailedToSend(); } price -= royaltyAmount; } if (!erc20.transferFrom(_bid.buyer, _msgSender(), price)) { revert IWasabiErrors.FailedToSend(); } option.safeTransferFrom(_msgSender(), _bid.buyer, _optionId); idToFinalizedOrCancelled[id] = true; emit BidTaken(_optionId, _bid.id, _bid.buyer, _msgSender()); } /// @inheritdoc IWasabiConduit function poolAcceptBid(WasabiStructs.Bid calldata _bid, bytes calldata _signature, uint256 _optionId) external { bytes memory id = getBidId(_bid); address poolAddress = _msgSender(); require( !idToFinalizedOrCancelled[id], "Order was finalized or cancelled" ); require(IWasabiPoolFactory(factory).isValidPool(_msgSender()), "Pool is not valid"); IWasabiPool pool = IWasabiPool(poolAddress); validateBid(pool, _bid, _signature); IERC20 erc20 = IERC20(_bid.tokenAddress); (address royaltyAddress, uint256 royaltyAmount) = option.royaltyInfo(_optionId, _bid.price); if (royaltyAmount > 0) { if (!erc20.transferFrom(_bid.buyer, royaltyAddress, royaltyAmount)) { revert IWasabiErrors.FailedToSend(); } } if (!erc20.transferFrom(_bid.buyer, poolAddress, _bid.price - royaltyAmount)) { revert IWasabiErrors.FailedToSend(); } idToFinalizedOrCancelled[id] = true; emit BidTaken(_optionId, _bid.id, _bid.buyer, poolAddress); } /** * @dev Validates if the _ask with _signature * * @param _ask the _ask to validate * @param _signature the _signature to validate the ask with */ function validateAsk( WasabiStructs.Ask calldata _ask, bytes calldata _signature ) internal view { // Validate Signature address currentOwner = option.ownerOf(_ask.optionId); require( verifyAsk(_ask, _signature, owner()) || verifyAsk(_ask, _signature, currentOwner), "Incorrect signature" ); require(currentOwner == _ask.seller, "Seller is not owner"); require(_ask.orderExpiry >= block.timestamp, "Order expired"); require(_ask.price > 0, "Price needs to be greater than 0"); } /** * @dev Validates the bid against the given option * * @param _optionId the id of option * @param _pool the pool where the option was issued from * @param _bid the _bid to validate */ function validateOptionForBid( uint256 _optionId, IWasabiPool _pool, WasabiStructs.Bid calldata _bid ) internal view { require( option.ownerOf(_optionId) == _msgSender(), "Seller is not owner" ); WasabiStructs.OptionData memory optionData = _pool.getOptionData(_optionId); require( optionData.optionType == _bid.optionType, "Option types don't match" ); require( optionData.strikePrice == _bid.strikePrice, "Strike prices don't match" ); uint256 diff = optionData.expiry > _bid.expiry ? optionData.expiry - _bid.expiry : _bid.expiry - optionData.expiry; require(diff <= _bid.expiryAllowance, "Not within expiry range"); } /** * @dev Validates the bid * * @param _pool the pool the option was issued from * @param _bid the _bid to validate * @param _signature the _signature to validate the bid with */ function validateBid( IWasabiPool _pool, WasabiStructs.Bid calldata _bid, bytes calldata _signature ) internal view { // Validate Signature require( verifyBid(_bid, _signature, owner()) || verifyBid(_bid, _signature, _bid.buyer), "Incorrect signature" ); require( _bid.tokenAddress != address(0), "Bidder didn't provide a ERC20 token" ); require(_bid.orderExpiry >= block.timestamp, "Order expired"); require(_bid.price > 0, "Price needs to be greater than 0"); require(_pool.getNftAddress() == _bid.collection, "Collections don't match"); require(_pool.getLiquidityAddress() == _bid.optionTokenAddress, "Option liquidity doesn't match"); } /// @inheritdoc IWasabiConduit function cancelAsk( WasabiStructs.Ask calldata _ask, bytes calldata _signature ) external { // Validate Signature require(verifyAsk(_ask, _signature, _ask.seller), "Incorrect signature"); require(_msgSender() == _ask.seller, "Only the signer can cancel"); bytes memory id = getAskId(_ask); require( !idToFinalizedOrCancelled[id], "Order was already finalized or cancelled" ); idToFinalizedOrCancelled[id] = true; emit AskCancelled(_ask.id, _ask.seller); } /// @inheritdoc IWasabiConduit function cancelBid( WasabiStructs.Bid calldata _bid, bytes calldata _signature ) external { // Validate Signature require(verifyBid(_bid, _signature, _bid.buyer), "Incorrect signature"); require(_msgSender() == _bid.buyer, "Only the signer can cancel"); bytes memory id = getBidId(_bid); require( !idToFinalizedOrCancelled[id], "Order was already finalized or cancelled" ); idToFinalizedOrCancelled[id] = true; emit BidCancelled(_bid.id, _bid.buyer); } /** * @dev returns the id of _ask */ function getAskId( WasabiStructs.Ask calldata _ask ) internal pure returns (bytes memory) { return abi.encodePacked(_ask.seller, _ask.id); } /** * @dev returns the id of _bid */ function getBidId( WasabiStructs.Bid calldata _bid ) internal pure returns (bytes memory) { return abi.encodePacked(_bid.buyer, _bid.id); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; library WasabiStructs { enum OptionType { CALL, PUT } struct OptionData { bool active; OptionType optionType; uint256 strikePrice; uint256 expiry; uint256 tokenId; // Locked token for CALL options } struct PoolAsk { uint256 id; address poolAddress; OptionType optionType; uint256 strikePrice; uint256 premium; uint256 expiry; uint256 tokenId; // Token to lock for CALL options uint256 orderExpiry; } struct PoolBid { uint256 id; uint256 price; address tokenAddress; uint256 orderExpiry; uint256 optionId; } struct Bid { uint256 id; uint256 price; address tokenAddress; address collection; uint256 orderExpiry; address buyer; OptionType optionType; uint256 strikePrice; uint256 expiry; uint256 expiryAllowance; address optionTokenAddress; } struct Ask { uint256 id; uint256 price; address tokenAddress; uint256 orderExpiry; address seller; uint256 optionId; } struct EIP712Domain { string name; string version; uint256 chainId; address verifyingContract; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import {WasabiStructs} from "./WasabiStructs.sol"; /** * @dev Signature Verification */ library Signing { /** * @dev Returns the message hash for the given request */ function getMessageHash(WasabiStructs.PoolAsk calldata _request) public pure returns (bytes32) { return keccak256( abi.encode( _request.id, _request.poolAddress, _request.optionType, _request.strikePrice, _request.premium, _request.expiry, _request.tokenId, _request.orderExpiry)); } /** * @dev Returns the message hash for the given request */ function getAskHash(WasabiStructs.Ask calldata _ask) public pure returns (bytes32) { return keccak256( abi.encode( _ask.id, _ask.price, _ask.tokenAddress, _ask.orderExpiry, _ask.seller, _ask.optionId)); } function getBidHash(WasabiStructs.Bid calldata _bid) public pure returns (bytes32) { return keccak256( abi.encode( _bid.id, _bid.price, _bid.tokenAddress, _bid.collection, _bid.orderExpiry, _bid.buyer, _bid.optionType, _bid.strikePrice, _bid.expiry, _bid.expiryAllowance)); } /** * @dev creates an ETH signed message hash */ function getEthSignedMessageHash(bytes32 _messageHash) public pure returns (bytes32) { /* Signature is produced by signing a keccak256 hash with the following format: "\x19Ethereum Signed Message\n" + len(msg) + msg */ return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", _messageHash)); } function getSigner( WasabiStructs.PoolAsk calldata _request, bytes memory signature ) public pure returns (address) { bytes32 messageHash = getMessageHash(_request); bytes32 ethSignedMessageHash = getEthSignedMessageHash(messageHash); return recoverSigner(ethSignedMessageHash, signature); } function getAskSigner( WasabiStructs.Ask calldata _ask, bytes memory signature ) public pure returns (address) { bytes32 messageHash = getAskHash(_ask); bytes32 ethSignedMessageHash = getEthSignedMessageHash(messageHash); return recoverSigner(ethSignedMessageHash, signature); } function recoverSigner(bytes32 _ethSignedMessageHash, bytes memory _signature) public pure returns (address) { (bytes32 r, bytes32 s, uint8 v) = splitSignature(_signature); return ecrecover(_ethSignedMessageHash, v, r, s); } function splitSignature(bytes memory sig) public pure returns ( bytes32 r, bytes32 s, uint8 v ) { require(sig.length == 65, "invalid signature length"); assembly { /* First 32 bytes stores the length of the signature add(sig, 32) = pointer of sig + 32 effectively, skips first 32 bytes of signature mload(p) loads next 32 bytes starting at the memory address p into memory */ // first 32 bytes, after the length prefix r := mload(add(sig, 32)) // second 32 bytes s := mload(add(sig, 64)) // final byte (first byte of the next 32 bytes) v := byte(0, mload(add(sig, 96))) } // implicitly return (r, s, v) } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; /** * @dev Required interface of an Wasabi Fee Manager compliant contract. */ interface IWasabiFeeManager { /** * @dev Returns the fee data for the given pool and amount * @param _pool the pool address * @param _amount the amount being paid * @return receiver the receiver of the fee * @return amount the fee amount */ function getFeeData(address _pool, uint256 _amount) external view returns (address receiver, uint256 amount); /** * @dev Returns the fee data for the given option and amount * @param _optionId the option id * @param _amount the amount being paid * @return receiver the receiver of the fee * @return amount the fee amount */ function getFeeDataForOption(uint256 _optionId, uint256 _amount) external view returns (address receiver, uint256 amount); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "../lib/Signing.sol"; /** * @dev Signature Verification for Bid and Ask */ abstract contract ConduitSignatureVerifier { bytes32 constant EIP712DOMAIN_TYPEHASH = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); bytes32 constant BID_TYPEHASH = keccak256( "Bid(uint256 id,uint256 price,address tokenAddress,address collection,uint256 orderExpiry,address buyer,uint8 optionType,uint256 strikePrice,uint256 expiry,uint256 expiryAllowance,address optionTokenAddress)" ); bytes32 constant ASK_TYPEHASH = keccak256( "Ask(uint256 id,uint256 price,address tokenAddress,uint256 orderExpiry,address seller,uint256 optionId)" ); /** * @dev Creates the hash of the EIP712 domain for this validator * * @param _eip712Domain the domain to hash * @return the hashed domain */ function hashDomain( WasabiStructs.EIP712Domain memory _eip712Domain ) internal pure returns (bytes32) { return keccak256( abi.encode( EIP712DOMAIN_TYPEHASH, keccak256(bytes(_eip712Domain.name)), keccak256(bytes(_eip712Domain.version)), _eip712Domain.chainId, _eip712Domain.verifyingContract ) ); } /** * @dev Creates the hash of the Bid for this validator * * @param _bid to hash * @return the bid domain */ function hashForBid( WasabiStructs.Bid memory _bid ) public pure returns (bytes32) { return keccak256( abi.encode( BID_TYPEHASH, _bid.id, _bid.price, _bid.tokenAddress, _bid.collection, _bid.orderExpiry, _bid.buyer, _bid.optionType, _bid.strikePrice, _bid.expiry, _bid.expiryAllowance, _bid.optionTokenAddress ) ); } /** * @dev Creates the hash of the Ask for this validator * * @param _ask the ask to hash * @return the ask domain */ function hashForAsk( WasabiStructs.Ask memory _ask ) public pure returns (bytes32) { return keccak256( abi.encode( ASK_TYPEHASH, _ask.id, _ask.price, _ask.tokenAddress, _ask.orderExpiry, _ask.seller, _ask.optionId ) ); } /** * @dev Gets the signer of the given signature for the given bid * * @param _bid the bid to validate * @param _signature the signature to validate * @return address who signed the signature */ function getSignerForBid( WasabiStructs.Bid memory _bid, bytes memory _signature ) public view returns (address) { bytes32 domainSeparator = hashDomain( WasabiStructs.EIP712Domain({ name: "ConduitSignature", version: "1", chainId: getChainID(), verifyingContract: address(this) }) ); bytes32 digest = keccak256( abi.encodePacked("\x19\x01", domainSeparator, hashForBid(_bid)) ); return Signing.recoverSigner(digest, _signature); } /** * @dev Gets the signer of the given signature for the given ask * * @param _ask the ask to validate * @param _signature the signature to validate * @return address who signed the signature */ function getSignerForAsk( WasabiStructs.Ask memory _ask, bytes memory _signature ) public view returns (address) { bytes32 domainSeparator = hashDomain( WasabiStructs.EIP712Domain({ name: "ConduitSignature", version: "1", chainId: getChainID(), verifyingContract: address(this) }) ); bytes32 digest = keccak256( abi.encodePacked("\x19\x01", domainSeparator, hashForAsk(_ask)) ); return Signing.recoverSigner(digest, _signature); } /** * @dev Checks the signer of the given signature for the given bid is the given signer * * @param _bid the bid to validate * @param _signature the signature to validate * @param _signer the signer to validate * @return true if the signature belongs to the signer, false otherwise */ function verifyBid( WasabiStructs.Bid memory _bid, bytes memory _signature, address _signer ) internal view returns (bool) { return getSignerForBid(_bid, _signature) == _signer; } /** * @dev Checks the signer of the given signature for the given ask is the given signer * * @param _ask the ask to validate * @param _signature the signature to validate * @param _signer the signer to validate * @return true if the signature belongs to the signer, false otherwise */ function verifyAsk( WasabiStructs.Ask memory _ask, bytes memory _signature, address _signer ) internal view returns (bool) { return getSignerForAsk(_ask, _signature) == _signer; } /** * @return the current chain id */ function getChainID() internal view returns (uint256) { uint256 id; assembly { id := chainid() } return id; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/interfaces/IERC2981.sol"; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; import "./IWasabiPool.sol"; import "./IWasabiPoolFactory.sol"; import "./fees/IWasabiFeeManager.sol"; /** * @dev An ERC721 which tracks Wasabi Option positions of accounts */ contract WasabiOption is ERC721, IERC2981, Ownable { address private lastFactory; mapping(address => bool) private factoryAddresses; mapping(uint256 => address) private optionPools; uint256 private _currentId = 1; string private _baseURIextended; /** * @dev Constructs WasabiOption */ constructor() ERC721("Wasabi Option NFTs", "WASAB") {} /** * @dev Toggles the owning factory */ function toggleFactory(address _factory, bool _enabled) external onlyOwner { factoryAddresses[_factory] = _enabled; if (_enabled) { lastFactory = _factory; } } /** * @dev Mints a new WasabiOption */ function mint(address _to, address _factory) external returns (uint256 mintedId) { require(factoryAddresses[_factory] == true, "Invalid Factory"); require(IWasabiPoolFactory(_factory).isValidPool(_msgSender()), "Only valid pools can mint"); _safeMint(_to, _currentId); mintedId = _currentId; optionPools[mintedId] = _msgSender(); _currentId++; } /** * @dev Burns the specified option */ function burn(uint256 _optionId) external { require(optionPools[_optionId] == _msgSender(), "Caller can't burn option"); _burn(_optionId); } /** * @dev Sets the base URI */ function setBaseURI(string memory baseURI_) external onlyOwner { _baseURIextended = baseURI_; } /** * @dev Returns the address of the pool which created the given option */ function getPool(uint256 _optionId) external view returns (address) { return optionPools[_optionId]; } /// @inheritdoc ERC721 function _baseURI() internal view virtual override returns (string memory) { return _baseURIextended; } /// @inheritdoc IERC2981 function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns (address, uint256) { IWasabiPool pool = IWasabiPool(optionPools[_tokenId]); IWasabiPoolFactory factory = IWasabiPoolFactory(pool.getFactory()); IWasabiFeeManager feeManager = IWasabiFeeManager(factory.getFeeManager()); return feeManager.getFeeDataForOption(_tokenId, _salePrice); } /// @inheritdoc IERC165 function supportsInterface(bytes4 interfaceId) public view override(ERC721, IERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; /** * @dev Required interface of an WasabiPoolFactory compliant contract. */ interface IWasabiPoolFactory { /** * @dev The States of Pools */ enum PoolState { INVALID, ACTIVE, DISABLED } /** * @dev Emitted when there is a new pool created */ event NewPool(address poolAddress, address indexed nftAddress, address indexed owner); /** * @dev INVALID/ACTIVE/DISABLE the specified pool. */ function togglePool(address _poolAddress, PoolState _poolState) external; /** * @dev Checks if the pool for the given address is enabled. */ function isValidPool(address _poolAddress) external view returns(bool); /** * @dev Returns the PoolState */ function getPoolState(address _poolAddress) external view returns(PoolState); /** * @dev Returns IWasabiConduit Contract Address. */ function getConduitAddress() external view returns(address); /** * @dev Returns IWasabiFeeManager Contract Address. */ function getFeeManager() external view returns(address); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; import "./lib/WasabiStructs.sol"; /** * @dev Required interface of an WasabiPool compliant contract. */ interface IWasabiPool is IERC165, IERC721Receiver { /** * @dev Emitted when `admin` is changed. */ event AdminChanged(address admin); /** * @dev Emitted when an order is cancelled. */ event OrderCancelled(uint256 id); /** * @dev Emitted when a pool bid is taken */ event PoolBidTaken(uint256 id); /** * @dev Emitted when an ERC721 is received */ event ERC721Received(uint256 tokenId); /** * @dev Emitted when ETH is received */ event ETHReceived(uint amount); /** * @dev Emitted when ERC20 is received */ event ERC20Received(uint amount); /** * @dev Emitted when an ERC721 is withdrawn */ event ERC721Withdrawn(uint256 tokenId); /** * @dev Emitted when ERC20 is withdrawn */ event ERC20Withdrawn(uint amount); /** * @dev Emitted when ETH is withdrawn */ event ETHWithdrawn(uint amount); /** * @dev Emitted when an option is executed. */ event OptionExecuted(uint256 optionId); /** * @dev Emitted when an option is issued */ event OptionIssued(uint256 optionId, uint256 price); /** * @dev Emitted when an option is issued */ event OptionIssued(uint256 optionId, uint256 price, uint256 poolAskId); /** * @dev Emitted when the pool settings are edited */ event PoolSettingsChanged(); /** * @dev Returns the address of the nft */ function getNftAddress() external view returns(address); /** * @dev Returns the address of the nft */ function getLiquidityAddress() external view returns(address); /** * @dev Writes an option for the given ask. */ function writeOption( WasabiStructs.PoolAsk calldata _request, bytes calldata _signature ) external payable returns (uint256); /** * @dev Writes an option for the given rule and buyer. */ function writeOptionTo( WasabiStructs.PoolAsk calldata _request, bytes calldata _signature, address _receiver ) external payable returns (uint256); /** * @dev Executes the option for the given id. */ function executeOption(uint256 _optionId) external payable; /** * @dev Executes the option for the given id. */ function executeOptionWithSell(uint256 _optionId, uint256 _tokenId) external payable; /** * @dev Cancels the order for the given _orderId. */ function cancelOrder(uint256 _orderId) external; /** * @dev Withdraws ERC721 tokens from the pool. */ function withdrawERC721(IERC721 _nft, uint256[] calldata _tokenIds) external; /** * @dev Deposits ERC721 tokens to the pool. */ function depositERC721(IERC721 _nft, uint256[] calldata _tokenIds) external; /** * @dev Withdraws ETH from this pool */ function withdrawETH(uint256 _amount) external payable; /** * @dev Withdraws ERC20 tokens from this pool */ function withdrawERC20(IERC20 _token, uint256 _amount) external; /** * @dev Sets the admin of this pool. */ function setAdmin(address _admin) external; /** * @dev Removes the admin from this pool. */ function removeAdmin() external; /** * @dev Returns the address of the current admin. */ function getAdmin() external view returns (address); /** * @dev Returns the address of the factory managing this pool */ function getFactory() external view returns (address); /** * @dev Returns the available balance this pool contains that can be withdrawn or collateralized */ function availableBalance() view external returns(uint256); /** * @dev Returns an array of ids of all outstanding (issued or expired) options */ function getOptionIds() external view returns(uint256[] memory); /** * @dev Returns the id of the option that locked the given token id, reverts if there is none */ function getOptionIdForToken(uint256 _tokenId) external view returns(uint256); /** * @dev Returns the option data for the given option id */ function getOptionData(uint256 _optionId) external view returns(WasabiStructs.OptionData memory); /** * @dev Returns 'true' if the option for the given id is valid and active, 'false' otherwise */ function isValid(uint256 _optionId) view external returns(bool); /** * @dev Checks if _tokenId unlocked */ function isAvailableTokenId(uint256 _tokenId) external view returns(bool); /** * @dev Clears the expired options from the pool */ function clearExpiredOptions(uint256[] memory _optionIds) external; /** * @dev accepts the bid for LPs with _tokenId. If its a put option, _tokenId can be 0 */ function acceptBid(WasabiStructs.Bid calldata _bid, bytes calldata _signature, uint256 _tokenId) external returns(uint256); /** * @dev accepts the ask for LPs */ function acceptAsk(WasabiStructs.Ask calldata _ask, bytes calldata _signature) external; /** * @dev accepts a bid created for this pool */ function acceptPoolBid(WasabiStructs.PoolBid calldata _poolBid, bytes calldata _signature) external payable; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; /** * @dev Required interface for defining all the errors */ interface IWasabiErrors { /** * @dev Thrown when an order that has been filled or cancelled is being acted upon */ error OrderFilledOrCancelled(); /** * @dev Thrown when someone tries to make an unauthorized request */ error Unauthorized(); /** * @dev Thrown when a signature is invalid */ error InvalidSignature(); /** * @dev Thrown when there is no sufficient available liquidity left in the pool for issuing a PUT option */ error InsufficientAvailableLiquidity(); /** * @dev Thrown when the requested NFT for a CALL is already locked for another option */ error RequestNftIsLocked(); /** * @dev Thrown when the NFT is not in the pool or invalid */ error NftIsInvalid(); /** * @dev Thrown when the expiry of an ask is invalid for the pool */ error InvalidExpiry(); /** * @dev Thrown when the strike price of an ask is invalid for the pool */ error InvalidStrike(); /** * @dev Thrown when an expired order or option is being exercised */ error HasExpired(); /** * @dev Thrown when sending ETH failed */ error FailedToSend(); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "./lib/WasabiStructs.sol"; import "./WasabiOption.sol"; /** * @dev Required interface of an WasabiConduit compliant contract. */ interface IWasabiConduit { /** * @dev Buys multiple options */ function buyOptions( WasabiStructs.PoolAsk[] calldata _requests, WasabiStructs.Ask[] calldata _asks, bytes[] calldata _signatures ) external payable returns (uint256[] memory); /** * @dev Buys an option */ function buyOption( WasabiStructs.PoolAsk calldata _request, bytes calldata _signature ) external payable returns (uint256); /** * @dev Transfers a NFT to _target * * @param _nft the address of NFT * @param _tokenId the tokenId to transfer * @param _target the target to transfer the NFT */ function transferToken( address _nft, uint256 _tokenId, address _target ) external; /** * @dev Sets Option information */ function setOption(WasabiOption _option) external; /** * @dev Sets maximum number of option to buy */ function setMaxOptionsToBuy(uint256 _maxOptionsToBuy) external; /** * @dev Sets pool factory address */ function setPoolFactoryAddress(address _factory) external; /** * @dev Accpets the Ask */ function acceptAsk( WasabiStructs.Ask calldata _ask, bytes calldata _signature ) external payable returns (uint256); /** * @dev Accpets the Bid */ function acceptBid( uint256 _optionId, address _poolAddress, WasabiStructs.Bid calldata _bid, bytes calldata _signature ) external payable; /** * @dev Pool Accepts the _bid */ function poolAcceptBid(WasabiStructs.Bid calldata _bid, bytes calldata _signature, uint256 _optionId) external; /** * @dev Cancel the _ask */ function cancelAsk( WasabiStructs.Ask calldata _ask, bytes calldata _signature ) external; /** * @dev Cancel the _bid */ function cancelBid( WasabiStructs.Bid calldata _bid, bytes calldata _signature ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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 * ==== * * [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://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @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 v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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 v4.4.1 (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() { // 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 // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 1500 }, "evmVersion": "paris", "libraries": { "/contracts/lib/Signing.sol": { "Signing": "0xD3Bb8475c30Fd70675f6250Fb725e30B3a6E6094" } }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract WasabiOption","name":"_option","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"FailedToSend","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"orderId","type":"uint256"},{"indexed":false,"internalType":"address","name":"seller","type":"address"}],"name":"AskCancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"optionId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"orderId","type":"uint256"},{"indexed":false,"internalType":"address","name":"seller","type":"address"},{"indexed":false,"internalType":"address","name":"taker","type":"address"}],"name":"AskTaken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"orderId","type":"uint256"},{"indexed":false,"internalType":"address","name":"buyer","type":"address"}],"name":"BidCancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"optionId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"orderId","type":"uint256"},{"indexed":false,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"address","name":"taker","type":"address"}],"name":"BidTaken","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":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"orderExpiry","type":"uint256"},{"internalType":"address","name":"seller","type":"address"},{"internalType":"uint256","name":"optionId","type":"uint256"}],"internalType":"struct WasabiStructs.Ask","name":"_ask","type":"tuple"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"acceptAsk","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_optionId","type":"uint256"},{"internalType":"address","name":"_poolAddress","type":"address"},{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"collection","type":"address"},{"internalType":"uint256","name":"orderExpiry","type":"uint256"},{"internalType":"address","name":"buyer","type":"address"},{"internalType":"enum WasabiStructs.OptionType","name":"optionType","type":"uint8"},{"internalType":"uint256","name":"strikePrice","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint256","name":"expiryAllowance","type":"uint256"},{"internalType":"address","name":"optionTokenAddress","type":"address"}],"internalType":"struct WasabiStructs.Bid","name":"_bid","type":"tuple"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"acceptBid","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"poolAddress","type":"address"},{"internalType":"enum WasabiStructs.OptionType","name":"optionType","type":"uint8"},{"internalType":"uint256","name":"strikePrice","type":"uint256"},{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"orderExpiry","type":"uint256"}],"internalType":"struct WasabiStructs.PoolAsk","name":"_request","type":"tuple"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"buyOption","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"poolAddress","type":"address"},{"internalType":"enum WasabiStructs.OptionType","name":"optionType","type":"uint8"},{"internalType":"uint256","name":"strikePrice","type":"uint256"},{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"orderExpiry","type":"uint256"}],"internalType":"struct WasabiStructs.PoolAsk[]","name":"_requests","type":"tuple[]"},{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"orderExpiry","type":"uint256"},{"internalType":"address","name":"seller","type":"address"},{"internalType":"uint256","name":"optionId","type":"uint256"}],"internalType":"struct WasabiStructs.Ask[]","name":"_asks","type":"tuple[]"},{"internalType":"bytes[]","name":"_signatures","type":"bytes[]"}],"name":"buyOptions","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"orderExpiry","type":"uint256"},{"internalType":"address","name":"seller","type":"address"},{"internalType":"uint256","name":"optionId","type":"uint256"}],"internalType":"struct WasabiStructs.Ask","name":"_ask","type":"tuple"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"cancelAsk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"collection","type":"address"},{"internalType":"uint256","name":"orderExpiry","type":"uint256"},{"internalType":"address","name":"buyer","type":"address"},{"internalType":"enum WasabiStructs.OptionType","name":"optionType","type":"uint8"},{"internalType":"uint256","name":"strikePrice","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint256","name":"expiryAllowance","type":"uint256"},{"internalType":"address","name":"optionTokenAddress","type":"address"}],"internalType":"struct WasabiStructs.Bid","name":"_bid","type":"tuple"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"cancelBid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"orderExpiry","type":"uint256"},{"internalType":"address","name":"seller","type":"address"},{"internalType":"uint256","name":"optionId","type":"uint256"}],"internalType":"struct WasabiStructs.Ask","name":"_ask","type":"tuple"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"getSignerForAsk","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"collection","type":"address"},{"internalType":"uint256","name":"orderExpiry","type":"uint256"},{"internalType":"address","name":"buyer","type":"address"},{"internalType":"enum WasabiStructs.OptionType","name":"optionType","type":"uint8"},{"internalType":"uint256","name":"strikePrice","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint256","name":"expiryAllowance","type":"uint256"},{"internalType":"address","name":"optionTokenAddress","type":"address"}],"internalType":"struct WasabiStructs.Bid","name":"_bid","type":"tuple"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"getSignerForBid","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"orderExpiry","type":"uint256"},{"internalType":"address","name":"seller","type":"address"},{"internalType":"uint256","name":"optionId","type":"uint256"}],"internalType":"struct WasabiStructs.Ask","name":"_ask","type":"tuple"}],"name":"hashForAsk","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"collection","type":"address"},{"internalType":"uint256","name":"orderExpiry","type":"uint256"},{"internalType":"address","name":"buyer","type":"address"},{"internalType":"enum WasabiStructs.OptionType","name":"optionType","type":"uint8"},{"internalType":"uint256","name":"strikePrice","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint256","name":"expiryAllowance","type":"uint256"},{"internalType":"address","name":"optionTokenAddress","type":"address"}],"internalType":"struct WasabiStructs.Bid","name":"_bid","type":"tuple"}],"name":"hashForBid","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes","name":"","type":"bytes"}],"name":"idToFinalizedOrCancelled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxOptionsToBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"collection","type":"address"},{"internalType":"uint256","name":"orderExpiry","type":"uint256"},{"internalType":"address","name":"buyer","type":"address"},{"internalType":"enum WasabiStructs.OptionType","name":"optionType","type":"uint8"},{"internalType":"uint256","name":"strikePrice","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint256","name":"expiryAllowance","type":"uint256"},{"internalType":"address","name":"optionTokenAddress","type":"address"}],"internalType":"struct WasabiStructs.Bid","name":"_bid","type":"tuple"},{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"uint256","name":"_optionId","type":"uint256"}],"name":"poolAcceptBid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxOptionsToBuy","type":"uint256"}],"name":"setMaxOptionsToBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract WasabiOption","name":"_option","type":"address"}],"name":"setOption","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_factory","type":"address"}],"name":"setPoolFactoryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nft","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_target","type":"address"}],"name":"transferToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162003a7c38038062003a7c8339810160408190526200003491620000be565b6200003f336200006e565b60018055600280546001600160a01b0319166001600160a01b03929092169190911790556064600355620000f0565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208284031215620000d157600080fd5b81516001600160a01b0381168114620000e957600080fd5b9392505050565b61397c80620001006000396000f3fe60806040526004361061016a5760003560e01c806375031dc8116100cb578063c2bd05541161007f578063f2fde38b11610059578063f2fde38b14610406578063f640d50814610426578063ffef17e11461044657600080fd5b8063c2bd0554146103a6578063d998b579146103c6578063e55946c6146103e657600080fd5b80638da5cb5b116100b05780638da5cb5b1461035557806397ebfba314610373578063a7d36e591461038657600080fd5b806375031dc8146102ea578063785f9ba01461030a57600080fd5b80633568af0d116101225780635dd2bd4f116101075780635dd2bd4f146102af5780635ef0a6f9146102c2578063715018a6146102d557600080fd5b80633568af0d1461026f5780633f37e15c1461028f57600080fd5b8063313236951161015357806331323695146101f557806331a975a01461021557806333740dbc1461023757600080fd5b8063150b7a021461016f578063269ccd13146101d1575b600080fd5b34801561017b57600080fd5b506101b361018a366004612e8a565b7f150b7a0200000000000000000000000000000000000000000000000000000000949350505050565b6040516001600160e01b031990911681526020015b60405180910390f35b3480156101dd57600080fd5b506101e760035481565b6040519081526020016101c8565b610208610203366004612f87565b610466565b6040516101c8919061304f565b34801561022157600080fd5b50610235610230366004613093565b61071c565b005b34801561024357600080fd5b50610257610252366004613179565b610753565b6040516001600160a01b0390911681526020016101c8565b34801561027b57600080fd5b5061023561028a366004613093565b6108c2565b34801561029b57600080fd5b506102576102aa366004613256565b6108f9565b6101e76102bd3660046132d1565b61096f565b6101e76102d036600461332e565b610e26565b3480156102e157600080fd5b506102356113c7565b3480156102f657600080fd5b50610235610305366004613389565b6113db565b34801561031657600080fd5b506103456103253660046133e7565b805160208183018101805160048252928201919093012091525460ff1681565b60405190151581526020016101c8565b34801561036157600080fd5b506000546001600160a01b0316610257565b610235610381366004613424565b6117f3565b34801561039257600080fd5b506102356103a1366004613498565b611c1d565b3480156103b257600080fd5b506102356103c136600461332e565b611e65565b3480156103d257600080fd5b506101e76103e13660046134d5565b612087565b3480156103f257600080fd5b506101e76104013660046134f2565b61211c565b34801561041257600080fd5b50610235610421366004613093565b6121a7565b34801561043257600080fd5b5061023561044136600461350e565b612237565b34801561045257600080fd5b50610235610461366004613550565b6122c5565b60606000610474858861357f565b9050600081116104f05760405162461bcd60e51b8152602060048201526024808201527f4e65656420746f2070726f76696465206174206c65617374206f6e652072657160448201527f756573740000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6003548111156105425760405162461bcd60e51b815260206004820152601c60248201527f43616e6e6f74206275792074686174206d616e79206f7074696f6e730000000060448201526064016104e7565b8083146105b75760405162461bcd60e51b815260206004820152603a60248201527f4e65656420746f2070726f76696465207468652073616d6520616d6f756e742060448201527f6f66207369676e61747572657320616e6420726571756573747300000000000060648201526084016104e7565b60008167ffffffffffffffff8111156105d2576105d2612dbd565b6040519080825280602002602001820160405280156105fb578160200160208202803683370190505b50905060005b8881101561067e57600061064b8b8b8481811061062057610620613592565b9050610100020188888581811061063957610639613592565b90506020028101906102bd91906135a8565b90508083838151811061066057610660613592565b60209081029190910101525080610676816135ef565b915050610601565b5060005b8681101561070f5760006106968a8361357f565b905060006106d98a8a858181106106af576106af613592565b905060c002018989858181106106c7576106c7613592565b90506020028101906102d091906135a8565b9050808483815181106106ee576106ee613592565b60200260200101818152505050508080610707906135ef565b915050610682565b5098975050505050505050565b6107246122d2565b6005805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6040805160c0810182526010608082019081527f436f6e647569745369676e61747572650000000000000000000000000000000060a083015281528151808301835260018152603160f81b60208083019190915282015260009182916107c5918101465b81523060209091015261232c565b90506000816107d386612087565b6040517f190100000000000000000000000000000000000000000000000000000000000060208201526022810192909252604282015260620160408051601f198184030181529082905280516020909101207f97aba7f9000000000000000000000000000000000000000000000000000000008252915073d3bb8475c30fd70675f6250fb725e30b3a6e6094906397aba7f990610876908490889060040161362c565b602060405180830381865af4158015610893573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b79190613666565b925050505b92915050565b6108ca6122d2565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6040805160c0810182526010608082019081527f436f6e647569745369676e61747572650000000000000000000000000000000060a083015281528151808301835260018152603160f81b6020808301919091528201526000918291610961918101466107b7565b90506000816107d38661211c565b600554604080517ff2d6382600000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316918391839163f2d638269160048083019260209291908290030181865afa1580156109d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109fa9190613666565b905060006001600160a01b0382166354240429610a1d60408a0160208b01613093565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260808a013560248201526044016040805180830381865afa158015610a6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8e9190613683565b915060009050610aa28260808a013561357f565b90506000610ab660408a0160208b01613093565b905060006001600160a01b0316816001600160a01b03166312384c886040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b259190613666565b6001600160a01b031614610d50576000816001600160a01b03166312384c886040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b979190613666565b90506001600160a01b0381166323b872dd336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604481018690526064016020604051808303816000875af1158015610bfc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2091906136c1565b610c3d5760405163467d86d160e01b815260040160405180910390fd5b6001600160a01b03811663095ea7b3610c5c60408d0160208e01613093565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018690526044016020604051808303816000875af1158015610ca9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ccd91906136c1565b50604051636322735160e11b81526001600160a01b0383169063c644e6a290610d00908d908d908d90339060040161373d565b6020604051808303816000875af1158015610d1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4391906137e6565b9650505050505050610e1f565b81341015610da05760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f7567682045544820737570706c69656400000000000000000060448201526064016104e7565b604051636322735160e11b81526001600160a01b0382169063c644e6a2908490610dd4908d908d908d90339060040161373d565b60206040518083038185885af1158015610df2573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e1791906137e6565b955050505050505b9392505050565b6000600260015403610e7a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104e7565b60026001556000610e8a856123ac565b9050600481604051610e9c91906137ff565b9081526040519081900360200190205460ff1615610efc5760405162461bcd60e51b815260206004820181905260248201527f4f72646572207761732066696e616c697a6564206f722063616e63656c6c656460448201526064016104e7565b610f0785858561240e565b60025460405163152a902d60e11b815260a087013560048201526020870135602482018190529160009182916001600160a01b031690632a55205a906044016040805180830381865afa158015610f62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f869190613683565b90925090506000610f9d60608a0160408b01613093565b6001600160a01b03160361110c5782341015610ffb5760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f7567682045544820737570706c69656400000000000000000060448201526064016104e7565b8015611083576000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461104e576040519150601f19603f3d011682016040523d82523d6000602084013e611053565b606091505b50509050806110755760405163467d86d160e01b815260040160405180910390fd5b61107f828561381b565b9350505b600061109560a08a0160808b01613093565b6001600160a01b03168460405160006040518083038185875af1925050503d80600081146110df576040519150601f19603f3d011682016040523d82523d6000602084013e6110e4565b606091505b50509050806111065760405163467d86d160e01b815260040160405180910390fd5b50611290565b600061111e60608a0160408b01613093565b905081156111d9576001600160a01b0381166323b872dd336040516001600160e01b031960e084901b1681526001600160a01b0391821660048201529086166024820152604481018590526064016020604051808303816000875af115801561118b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111af91906136c1565b6111cc5760405163467d86d160e01b815260040160405180910390fd5b6111d6828561381b565b93505b6001600160a01b0381166323b872dd336111f960a08d0160808e01613093565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018790526064016020604051808303816000875af115801561124d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127191906136c1565b61128e5760405163467d86d160e01b815260040160405180910390fd5b505b6002546001600160a01b03166342842e0e6112b160a08b0160808c01613093565b336040516001600160e01b031960e085901b1681526001600160a01b0392831660048201529116602482015260a08b01356044820152606401600060405180830381600087803b15801561130457600080fd5b505af1158015611318573d6000803e3d6000fd5b50505050600160048560405161132e91906137ff565b908152604051908190036020019020805491151560ff199092169190911790557fc2343138751b0dbb1d2adad07b5a1281c20529fe918032e6f80eeb77d07ae11060a089018035908a35906113869060808d01613093565b6040805193845260208401929092526001600160a01b031682820152336060830152519081900360800190a150506001805550505060a09092013592915050565b6113cf6122d2565b6113d96000612693565b565b60006113e6856126f0565b905060003390506004826040516113fd91906137ff565b9081526040519081900360200190205460ff161561145d5760405162461bcd60e51b815260206004820181905260248201527f4f72646572207761732066696e616c697a6564206f722063616e63656c6c656460448201526064016104e7565b6005546001600160a01b0316635ab78ee1336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156114b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d791906136c1565b6115235760405162461bcd60e51b815260206004820152601160248201527f506f6f6c206973206e6f742076616c696400000000000000000000000000000060448201526064016104e7565b8061153081888888612702565b60006115426060890160408a01613093565b60025460405163152a902d60e11b81526004810188905260208b0135602482015291925060009182916001600160a01b031690632a55205a906044016040805180830381865afa15801561159a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115be9190613683565b9092509050801561167e576001600160a01b0383166323b872dd6115e860c08d0160a08e01613093565b6040516001600160e01b031960e084901b1681526001600160a01b0391821660048201529085166024820152604481018490526064016020604051808303816000875af115801561163d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061166191906136c1565b61167e5760405163467d86d160e01b815260040160405180910390fd5b6001600160a01b0383166323b872dd61169d60c08d0160a08e01613093565b87848e602001356116ae919061381b565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303816000875af1158015611702573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061172691906136c1565b6117435760405163467d86d160e01b815260040160405180910390fd5b600160048760405161175591906137ff565b908152604051908190036020019020805491151560ff199092169190911790557f6a1bab267301962efae7b5d2818298402738176c45151aaa4bf11a71291eab2d878b356117a960c08e0160a08f01613093565b6040805193845260208401929092526001600160a01b039081168383015288166060830152519081900360800190a150505050505050505050565b6000546001600160a01b031690565b6002600154036118455760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104e7565b60026001556000611855846126f0565b905060048160405161186791906137ff565b9081526040519081900360200190205460ff16156118c75760405162461bcd60e51b815260206004820181905260248201527f4f72646572207761732066696e616c697a6564206f722063616e63656c6c656460448201526064016104e7565b846118d3878287612a92565b6118df81868686612702565b60025460405163152a902d60e11b8152600481018990526020870135602482018190529160009182916001600160a01b031690632a55205a906044016040805180830381865afa158015611937573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061195b9190613683565b9092509050600061197260608a0160408b01613093565b90508115611a3c576001600160a01b0381166323b872dd61199960c08c0160a08d01613093565b6040516001600160e01b031960e084901b1681526001600160a01b0391821660048201529086166024820152604481018590526064016020604051808303816000875af11580156119ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1291906136c1565b611a2f5760405163467d86d160e01b815260040160405180910390fd5b611a39828561381b565b93505b6001600160a01b0381166323b872dd611a5b60c08c0160a08d01613093565b336040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018790526064016020604051808303816000875af1158015611ab0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ad491906136c1565b611af15760405163467d86d160e01b815260040160405180910390fd5b6002546001600160a01b03166342842e0e33611b1360c08d0160a08e01613093565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018e9052606401600060405180830381600087803b158015611b6257600080fd5b505af1158015611b76573d6000803e3d6000fd5b505050506001600487604051611b8c91906137ff565b908152604051908190036020019020805491151560ff199092169190911790557f6a1bab267301962efae7b5d2818298402738176c45151aaa4bf11a71291eab2d8b8a35611be060c08d0160a08e01613093565b6040805193845260208401929092526001600160a01b031682820152336060830152519081900360800190a1505060018055505050505050505050565b611c7b611c2f368590038501856134d5565b83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611c769250505060c0870160a08801613093565b612d5a565b611cc75760405162461bcd60e51b815260206004820152601360248201527f496e636f7272656374207369676e61747572650000000000000000000000000060448201526064016104e7565b611cd760c0840160a08501613093565b6001600160a01b0316336001600160a01b031614611d375760405162461bcd60e51b815260206004820152601a60248201527f4f6e6c7920746865207369676e65722063616e2063616e63656c00000000000060448201526064016104e7565b6000611d42846126f0565b9050600481604051611d5491906137ff565b9081526040519081900360200190205460ff1615611dda5760405162461bcd60e51b815260206004820152602860248201527f4f726465722077617320616c72656164792066696e616c697a6564206f72206360448201527f616e63656c6c656400000000000000000000000000000000000000000000000060648201526084016104e7565b6001600482604051611dec91906137ff565b908152604051908190036020019020805491151560ff199092169190911790557f529d3bdff5de00724e674a22c5cc88aeca2e6496bf02e3369a4e43a7171be0528435611e3f60c0870160a08801613093565b604080519283526001600160a01b0390911660208301520160405180910390a150505050565b611ec3611e77368590038501856134f2565b83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611ebe9250505060a0870160808801613093565b612d82565b611f0f5760405162461bcd60e51b815260206004820152601360248201527f496e636f7272656374207369676e61747572650000000000000000000000000060448201526064016104e7565b611f1f60a0840160808501613093565b6001600160a01b0316336001600160a01b031614611f7f5760405162461bcd60e51b815260206004820152601a60248201527f4f6e6c7920746865207369676e65722063616e2063616e63656c00000000000060448201526064016104e7565b6000611f8a846123ac565b9050600481604051611f9c91906137ff565b9081526040519081900360200190205460ff16156120225760405162461bcd60e51b815260206004820152602860248201527f4f726465722077617320616c72656164792066696e616c697a6564206f72206360448201527f616e63656c6c656400000000000000000000000000000000000000000000000060648201526084016104e7565b600160048260405161203491906137ff565b908152604051908190036020019020805491151560ff199092169190911790557f91c7d8c44f8d1802e95d38f8a5f185d75097756975f49a41090e5d3b6d2ef5d28435611e3f60a0870160808801613093565b60007fcfed8675be2b6dad7b83883dab6adf58d407658938cd6e786220bfa51447482e826000015183602001518460400151856060015186608001518760a001518860c001518960e001518a61010001518b61012001518c61014001516040516020016120ff9c9b9a9998979695949392919061382e565b604051602081830303815290604052805190602001209050919050565b60007f603eed03ebfd34f03ded43a90e136ba1da6110e929244a72cdc9d71acbcaceeb826000015183602001518460400151856060015186608001518760a001516040516020016120ff9796959493929190968752602087019590955260408601939093526001600160a01b03918216606086015260808501521660a083015260c082015260e00190565b6121af6122d2565b6001600160a01b03811661222b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016104e7565b61223481612693565b50565b61223f6122d2565b6040517f42842e0e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038281166024830152604482018490528416906342842e0e90606401600060405180830381600087803b1580156122a857600080fd5b505af11580156122bc573d6000803e3d6000fd5b50505050505050565b6122cd6122d2565b600355565b6000546001600160a01b031633146113d95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e7565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f826000015180519060200120836020015180519060200120846040015185606001516040516020016120ff9594939291909485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b60606123be60a0830160808401613093565b60405160609190911b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166020820152823560348201526054016040516020818303038152906040529050919050565b6002546040516331a9108f60e11b815260a085013560048201526000916001600160a01b031690636352211e90602401602060405180830381865afa15801561245b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061247f9190613666565b90506124d3612493368690038601866134f2565b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611ebe92506117e4915050565b8061252957506125296124eb368690038601866134f2565b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250869250612d82915050565b6125755760405162461bcd60e51b815260206004820152601360248201527f496e636f7272656374207369676e61747572650000000000000000000000000060448201526064016104e7565b61258560a0850160808601613093565b6001600160a01b0316816001600160a01b0316146125e55760405162461bcd60e51b815260206004820152601360248201527f53656c6c6572206973206e6f74206f776e65720000000000000000000000000060448201526064016104e7565b42846060013510156126395760405162461bcd60e51b815260206004820152600d60248201527f4f7264657220657870697265640000000000000000000000000000000000000060448201526064016104e7565b600084602001351161268d5760405162461bcd60e51b815260206004820181905260248201527f5072696365206e6565647320746f2062652067726561746572207468616e203060448201526064016104e7565b50505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60606123be60c0830160a08401613093565b612754612714368590038501856134d5565b83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611c7692506117e4915050565b8061276c575061276c611c2f368590038501856134d5565b6127b85760405162461bcd60e51b815260206004820152601360248201527f496e636f7272656374207369676e61747572650000000000000000000000000060448201526064016104e7565b60006127ca6060850160408601613093565b6001600160a01b0316036128465760405162461bcd60e51b815260206004820152602360248201527f426964646572206469646e27742070726f76696465206120455243323020746f60448201527f6b656e000000000000000000000000000000000000000000000000000000000060648201526084016104e7565b428360800135101561289a5760405162461bcd60e51b815260206004820152600d60248201527f4f7264657220657870697265640000000000000000000000000000000000000060448201526064016104e7565b60008360200135116128ee5760405162461bcd60e51b815260206004820181905260248201527f5072696365206e6565647320746f2062652067726561746572207468616e203060448201526064016104e7565b6128fe6080840160608501613093565b6001600160a01b0316846001600160a01b031663be9a71bd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612945573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129699190613666565b6001600160a01b0316146129bf5760405162461bcd60e51b815260206004820152601760248201527f436f6c6c656374696f6e7320646f6e2774206d6174636800000000000000000060448201526064016104e7565b6129d161016084016101408501613093565b6001600160a01b0316846001600160a01b03166312384c886040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a3c9190613666565b6001600160a01b03161461268d5760405162461bcd60e51b815260206004820152601e60248201527f4f7074696f6e206c697175696469747920646f65736e2774206d61746368000060448201526064016104e7565b336002546040516331a9108f60e11b8152600481018690526001600160a01b039283169290911690636352211e90602401602060405180830381865afa158015612ae0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b049190613666565b6001600160a01b031614612b5a5760405162461bcd60e51b815260206004820152601360248201527f53656c6c6572206973206e6f74206f776e65720000000000000000000000000060448201526064016104e7565b6040517fe2213a4b000000000000000000000000000000000000000000000000000000008152600481018490526000906001600160a01b0384169063e2213a4b9060240160a060405180830381865afa158015612bbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bdf91906138a9565b9050612bf160e0830160c08401613929565b6001811115612c0257612c026136dc565b81602001516001811115612c1857612c186136dc565b14612c655760405162461bcd60e51b815260206004820152601860248201527f4f7074696f6e20747970657320646f6e2774206d61746368000000000000000060448201526064016104e7565b8160e00135816040015114612cbc5760405162461bcd60e51b815260206004820152601960248201527f537472696b652070726963657320646f6e2774206d617463680000000000000060448201526064016104e7565b6000826101000135826060015111612ce7576060820151612ce29061010085013561381b565b612cfc565b8261010001358260600151612cfc919061381b565b9050826101200135811115612d535760405162461bcd60e51b815260206004820152601760248201527f4e6f742077697468696e206578706972792072616e676500000000000000000060448201526064016104e7565b5050505050565b6000816001600160a01b0316612d708585610753565b6001600160a01b031614949350505050565b6000816001600160a01b0316612d7085856108f9565b6001600160a01b038116811461223457600080fd5b8035612db881612d98565b919050565b634e487b7160e01b600052604160045260246000fd5b604051610160810167ffffffffffffffff81118282101715612df757612df7612dbd565b60405290565b600082601f830112612e0e57600080fd5b813567ffffffffffffffff80821115612e2957612e29612dbd565b604051601f8301601f19908116603f01168101908282118183101715612e5157612e51612dbd565b81604052838152866020858801011115612e6a57600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060008060808587031215612ea057600080fd5b8435612eab81612d98565b93506020850135612ebb81612d98565b925060408501359150606085013567ffffffffffffffff811115612ede57600080fd5b612eea87828801612dfd565b91505092959194509250565b60008083601f840112612f0857600080fd5b50813567ffffffffffffffff811115612f2057600080fd5b60208301915083602060c083028501011115612f3b57600080fd5b9250929050565b60008083601f840112612f5457600080fd5b50813567ffffffffffffffff811115612f6c57600080fd5b6020830191508360208260051b8501011115612f3b57600080fd5b60008060008060008060608789031215612fa057600080fd5b863567ffffffffffffffff80821115612fb857600080fd5b818901915089601f830112612fcc57600080fd5b813581811115612fdb57600080fd5b8a60208260081b8501011115612ff057600080fd5b60209283019850965090880135908082111561300b57600080fd5b6130178a838b01612ef6565b9096509450604089013591508082111561303057600080fd5b5061303d89828a01612f42565b979a9699509497509295939492505050565b6020808252825182820181905260009190848201906040850190845b818110156130875783518352928401929184019160010161306b565b50909695505050505050565b6000602082840312156130a557600080fd5b8135610e1f81612d98565b6002811061223457600080fd5b8035612db8816130b0565b600061016082840312156130db57600080fd5b6130e3612dd3565b905081358152602082013560208201526130ff60408301612dad565b604082015261311060608301612dad565b60608201526080820135608082015261312b60a08301612dad565b60a082015261313c60c083016130bd565b60c082015260e082810135908201526101008083013590820152610120808301359082015261014061316f818401612dad565b9082015292915050565b600080610180838503121561318d57600080fd5b61319784846130c8565b915061016083013567ffffffffffffffff8111156131b457600080fd5b6131c085828601612dfd565b9150509250929050565b600060c082840312156131dc57600080fd5b60405160c0810181811067ffffffffffffffff821117156131ff576131ff612dbd565b80604052508091508235815260208301356020820152604083013561322381612d98565b604082015260608381013590820152608083013561324081612d98565b608082015260a092830135920191909152919050565b60008060e0838503121561326957600080fd5b61327384846131ca565b915060c083013567ffffffffffffffff8111156131b457600080fd5b60008083601f8401126132a157600080fd5b50813567ffffffffffffffff8111156132b957600080fd5b602083019150836020828501011115612f3b57600080fd5b60008060008385036101208112156132e857600080fd5b610100808212156132f857600080fd5b859450840135905067ffffffffffffffff81111561331557600080fd5b6133218682870161328f565b9497909650939450505050565b600080600083850360e081121561334457600080fd5b60c081121561335257600080fd5b5083925060c084013567ffffffffffffffff81111561331557600080fd5b6000610160828403121561338357600080fd5b50919050565b6000806000806101a085870312156133a057600080fd5b6133aa8686613370565b935061016085013567ffffffffffffffff8111156133c757600080fd5b6133d38782880161328f565b959890975094956101800135949350505050565b6000602082840312156133f957600080fd5b813567ffffffffffffffff81111561341057600080fd5b61341c84828501612dfd565b949350505050565b60008060008060006101c0868803121561343d57600080fd5b85359450602086013561344f81612d98565b935061345e8760408801613370565b92506101a086013567ffffffffffffffff81111561347b57600080fd5b6134878882890161328f565b969995985093965092949392505050565b600080600061018084860312156134ae57600080fd5b6134b88585613370565b925061016084013567ffffffffffffffff81111561331557600080fd5b600061016082840312156134e857600080fd5b610e1f83836130c8565b600060c0828403121561350457600080fd5b610e1f83836131ca565b60008060006060848603121561352357600080fd5b833561352e81612d98565b925060208401359150604084013561354581612d98565b809150509250925092565b60006020828403121561356257600080fd5b5035919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156108bc576108bc613569565b634e487b7160e01b600052603260045260246000fd5b6000808335601e198436030181126135bf57600080fd5b83018035915067ffffffffffffffff8211156135da57600080fd5b602001915036819003821315612f3b57600080fd5b60006001820161360157613601613569565b5060010190565b60005b8381101561362357818101518382015260200161360b565b50506000910152565b8281526040602082015260008251806040840152613651816060850160208701613608565b601f01601f1916919091016060019392505050565b60006020828403121561367857600080fd5b8151610e1f81612d98565b6000806040838503121561369657600080fd5b82516136a181612d98565b6020939093015192949293505050565b80518015158114612db857600080fd5b6000602082840312156136d357600080fd5b610e1f826136b1565b634e487b7160e01b600052602160045260246000fd5b6002811061371057634e487b7160e01b600052602160045260246000fd5b9052565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b600061014086358352602087013561375481612d98565b6001600160a01b031660208401526040870135613770816130b0565b61377d60408501826136f2565b50606087013560608401526080870135608084015260a087013560a084015260c087013560c084015260e087013560e0840152806101008401526137c48184018688613714565b9150506137dd6101208301846001600160a01b03169052565b95945050505050565b6000602082840312156137f857600080fd5b5051919050565b60008251613811818460208701613608565b9190910192915050565b818103818111156108bc576108bc613569565b6000610180820190508d82528c60208301528b60408301526001600160a01b03808c166060840152808b1660808401528960a084015280891660c084015261387960e08401896136f2565b866101008401528561012084015284610140840152808416610160840152509d9c50505050505050505050505050565b600060a082840312156138bb57600080fd5b60405160a0810181811067ffffffffffffffff821117156138de576138de612dbd565b6040526138ea836136b1565b815260208301516138fa816130b0565b806020830152506040830151604082015260608301516060820152608083015160808201528091505092915050565b60006020828403121561393b57600080fd5b8135610e1f816130b056fea26469706673582212205e0e64385f86e07fe599fc812ed7c3c21f26d44efa5dbc72795a4e5bf91516c464736f6c63430008130033000000000000000000000000fc68f2130e094c95b6c4f5494158cbeb172e18a0
Deployed Bytecode
0x60806040526004361061016a5760003560e01c806375031dc8116100cb578063c2bd05541161007f578063f2fde38b11610059578063f2fde38b14610406578063f640d50814610426578063ffef17e11461044657600080fd5b8063c2bd0554146103a6578063d998b579146103c6578063e55946c6146103e657600080fd5b80638da5cb5b116100b05780638da5cb5b1461035557806397ebfba314610373578063a7d36e591461038657600080fd5b806375031dc8146102ea578063785f9ba01461030a57600080fd5b80633568af0d116101225780635dd2bd4f116101075780635dd2bd4f146102af5780635ef0a6f9146102c2578063715018a6146102d557600080fd5b80633568af0d1461026f5780633f37e15c1461028f57600080fd5b8063313236951161015357806331323695146101f557806331a975a01461021557806333740dbc1461023757600080fd5b8063150b7a021461016f578063269ccd13146101d1575b600080fd5b34801561017b57600080fd5b506101b361018a366004612e8a565b7f150b7a0200000000000000000000000000000000000000000000000000000000949350505050565b6040516001600160e01b031990911681526020015b60405180910390f35b3480156101dd57600080fd5b506101e760035481565b6040519081526020016101c8565b610208610203366004612f87565b610466565b6040516101c8919061304f565b34801561022157600080fd5b50610235610230366004613093565b61071c565b005b34801561024357600080fd5b50610257610252366004613179565b610753565b6040516001600160a01b0390911681526020016101c8565b34801561027b57600080fd5b5061023561028a366004613093565b6108c2565b34801561029b57600080fd5b506102576102aa366004613256565b6108f9565b6101e76102bd3660046132d1565b61096f565b6101e76102d036600461332e565b610e26565b3480156102e157600080fd5b506102356113c7565b3480156102f657600080fd5b50610235610305366004613389565b6113db565b34801561031657600080fd5b506103456103253660046133e7565b805160208183018101805160048252928201919093012091525460ff1681565b60405190151581526020016101c8565b34801561036157600080fd5b506000546001600160a01b0316610257565b610235610381366004613424565b6117f3565b34801561039257600080fd5b506102356103a1366004613498565b611c1d565b3480156103b257600080fd5b506102356103c136600461332e565b611e65565b3480156103d257600080fd5b506101e76103e13660046134d5565b612087565b3480156103f257600080fd5b506101e76104013660046134f2565b61211c565b34801561041257600080fd5b50610235610421366004613093565b6121a7565b34801561043257600080fd5b5061023561044136600461350e565b612237565b34801561045257600080fd5b50610235610461366004613550565b6122c5565b60606000610474858861357f565b9050600081116104f05760405162461bcd60e51b8152602060048201526024808201527f4e65656420746f2070726f76696465206174206c65617374206f6e652072657160448201527f756573740000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6003548111156105425760405162461bcd60e51b815260206004820152601c60248201527f43616e6e6f74206275792074686174206d616e79206f7074696f6e730000000060448201526064016104e7565b8083146105b75760405162461bcd60e51b815260206004820152603a60248201527f4e65656420746f2070726f76696465207468652073616d6520616d6f756e742060448201527f6f66207369676e61747572657320616e6420726571756573747300000000000060648201526084016104e7565b60008167ffffffffffffffff8111156105d2576105d2612dbd565b6040519080825280602002602001820160405280156105fb578160200160208202803683370190505b50905060005b8881101561067e57600061064b8b8b8481811061062057610620613592565b9050610100020188888581811061063957610639613592565b90506020028101906102bd91906135a8565b90508083838151811061066057610660613592565b60209081029190910101525080610676816135ef565b915050610601565b5060005b8681101561070f5760006106968a8361357f565b905060006106d98a8a858181106106af576106af613592565b905060c002018989858181106106c7576106c7613592565b90506020028101906102d091906135a8565b9050808483815181106106ee576106ee613592565b60200260200101818152505050508080610707906135ef565b915050610682565b5098975050505050505050565b6107246122d2565b6005805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6040805160c0810182526010608082019081527f436f6e647569745369676e61747572650000000000000000000000000000000060a083015281528151808301835260018152603160f81b60208083019190915282015260009182916107c5918101465b81523060209091015261232c565b90506000816107d386612087565b6040517f190100000000000000000000000000000000000000000000000000000000000060208201526022810192909252604282015260620160408051601f198184030181529082905280516020909101207f97aba7f9000000000000000000000000000000000000000000000000000000008252915073d3bb8475c30fd70675f6250fb725e30b3a6e6094906397aba7f990610876908490889060040161362c565b602060405180830381865af4158015610893573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b79190613666565b925050505b92915050565b6108ca6122d2565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6040805160c0810182526010608082019081527f436f6e647569745369676e61747572650000000000000000000000000000000060a083015281528151808301835260018152603160f81b6020808301919091528201526000918291610961918101466107b7565b90506000816107d38661211c565b600554604080517ff2d6382600000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316918391839163f2d638269160048083019260209291908290030181865afa1580156109d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109fa9190613666565b905060006001600160a01b0382166354240429610a1d60408a0160208b01613093565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260808a013560248201526044016040805180830381865afa158015610a6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8e9190613683565b915060009050610aa28260808a013561357f565b90506000610ab660408a0160208b01613093565b905060006001600160a01b0316816001600160a01b03166312384c886040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b259190613666565b6001600160a01b031614610d50576000816001600160a01b03166312384c886040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b979190613666565b90506001600160a01b0381166323b872dd336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604481018690526064016020604051808303816000875af1158015610bfc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2091906136c1565b610c3d5760405163467d86d160e01b815260040160405180910390fd5b6001600160a01b03811663095ea7b3610c5c60408d0160208e01613093565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018690526044016020604051808303816000875af1158015610ca9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ccd91906136c1565b50604051636322735160e11b81526001600160a01b0383169063c644e6a290610d00908d908d908d90339060040161373d565b6020604051808303816000875af1158015610d1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4391906137e6565b9650505050505050610e1f565b81341015610da05760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f7567682045544820737570706c69656400000000000000000060448201526064016104e7565b604051636322735160e11b81526001600160a01b0382169063c644e6a2908490610dd4908d908d908d90339060040161373d565b60206040518083038185885af1158015610df2573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e1791906137e6565b955050505050505b9392505050565b6000600260015403610e7a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104e7565b60026001556000610e8a856123ac565b9050600481604051610e9c91906137ff565b9081526040519081900360200190205460ff1615610efc5760405162461bcd60e51b815260206004820181905260248201527f4f72646572207761732066696e616c697a6564206f722063616e63656c6c656460448201526064016104e7565b610f0785858561240e565b60025460405163152a902d60e11b815260a087013560048201526020870135602482018190529160009182916001600160a01b031690632a55205a906044016040805180830381865afa158015610f62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f869190613683565b90925090506000610f9d60608a0160408b01613093565b6001600160a01b03160361110c5782341015610ffb5760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f7567682045544820737570706c69656400000000000000000060448201526064016104e7565b8015611083576000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461104e576040519150601f19603f3d011682016040523d82523d6000602084013e611053565b606091505b50509050806110755760405163467d86d160e01b815260040160405180910390fd5b61107f828561381b565b9350505b600061109560a08a0160808b01613093565b6001600160a01b03168460405160006040518083038185875af1925050503d80600081146110df576040519150601f19603f3d011682016040523d82523d6000602084013e6110e4565b606091505b50509050806111065760405163467d86d160e01b815260040160405180910390fd5b50611290565b600061111e60608a0160408b01613093565b905081156111d9576001600160a01b0381166323b872dd336040516001600160e01b031960e084901b1681526001600160a01b0391821660048201529086166024820152604481018590526064016020604051808303816000875af115801561118b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111af91906136c1565b6111cc5760405163467d86d160e01b815260040160405180910390fd5b6111d6828561381b565b93505b6001600160a01b0381166323b872dd336111f960a08d0160808e01613093565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018790526064016020604051808303816000875af115801561124d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127191906136c1565b61128e5760405163467d86d160e01b815260040160405180910390fd5b505b6002546001600160a01b03166342842e0e6112b160a08b0160808c01613093565b336040516001600160e01b031960e085901b1681526001600160a01b0392831660048201529116602482015260a08b01356044820152606401600060405180830381600087803b15801561130457600080fd5b505af1158015611318573d6000803e3d6000fd5b50505050600160048560405161132e91906137ff565b908152604051908190036020019020805491151560ff199092169190911790557fc2343138751b0dbb1d2adad07b5a1281c20529fe918032e6f80eeb77d07ae11060a089018035908a35906113869060808d01613093565b6040805193845260208401929092526001600160a01b031682820152336060830152519081900360800190a150506001805550505060a09092013592915050565b6113cf6122d2565b6113d96000612693565b565b60006113e6856126f0565b905060003390506004826040516113fd91906137ff565b9081526040519081900360200190205460ff161561145d5760405162461bcd60e51b815260206004820181905260248201527f4f72646572207761732066696e616c697a6564206f722063616e63656c6c656460448201526064016104e7565b6005546001600160a01b0316635ab78ee1336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156114b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d791906136c1565b6115235760405162461bcd60e51b815260206004820152601160248201527f506f6f6c206973206e6f742076616c696400000000000000000000000000000060448201526064016104e7565b8061153081888888612702565b60006115426060890160408a01613093565b60025460405163152a902d60e11b81526004810188905260208b0135602482015291925060009182916001600160a01b031690632a55205a906044016040805180830381865afa15801561159a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115be9190613683565b9092509050801561167e576001600160a01b0383166323b872dd6115e860c08d0160a08e01613093565b6040516001600160e01b031960e084901b1681526001600160a01b0391821660048201529085166024820152604481018490526064016020604051808303816000875af115801561163d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061166191906136c1565b61167e5760405163467d86d160e01b815260040160405180910390fd5b6001600160a01b0383166323b872dd61169d60c08d0160a08e01613093565b87848e602001356116ae919061381b565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303816000875af1158015611702573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061172691906136c1565b6117435760405163467d86d160e01b815260040160405180910390fd5b600160048760405161175591906137ff565b908152604051908190036020019020805491151560ff199092169190911790557f6a1bab267301962efae7b5d2818298402738176c45151aaa4bf11a71291eab2d878b356117a960c08e0160a08f01613093565b6040805193845260208401929092526001600160a01b039081168383015288166060830152519081900360800190a150505050505050505050565b6000546001600160a01b031690565b6002600154036118455760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104e7565b60026001556000611855846126f0565b905060048160405161186791906137ff565b9081526040519081900360200190205460ff16156118c75760405162461bcd60e51b815260206004820181905260248201527f4f72646572207761732066696e616c697a6564206f722063616e63656c6c656460448201526064016104e7565b846118d3878287612a92565b6118df81868686612702565b60025460405163152a902d60e11b8152600481018990526020870135602482018190529160009182916001600160a01b031690632a55205a906044016040805180830381865afa158015611937573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061195b9190613683565b9092509050600061197260608a0160408b01613093565b90508115611a3c576001600160a01b0381166323b872dd61199960c08c0160a08d01613093565b6040516001600160e01b031960e084901b1681526001600160a01b0391821660048201529086166024820152604481018590526064016020604051808303816000875af11580156119ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1291906136c1565b611a2f5760405163467d86d160e01b815260040160405180910390fd5b611a39828561381b565b93505b6001600160a01b0381166323b872dd611a5b60c08c0160a08d01613093565b336040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018790526064016020604051808303816000875af1158015611ab0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ad491906136c1565b611af15760405163467d86d160e01b815260040160405180910390fd5b6002546001600160a01b03166342842e0e33611b1360c08d0160a08e01613093565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018e9052606401600060405180830381600087803b158015611b6257600080fd5b505af1158015611b76573d6000803e3d6000fd5b505050506001600487604051611b8c91906137ff565b908152604051908190036020019020805491151560ff199092169190911790557f6a1bab267301962efae7b5d2818298402738176c45151aaa4bf11a71291eab2d8b8a35611be060c08d0160a08e01613093565b6040805193845260208401929092526001600160a01b031682820152336060830152519081900360800190a1505060018055505050505050505050565b611c7b611c2f368590038501856134d5565b83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611c769250505060c0870160a08801613093565b612d5a565b611cc75760405162461bcd60e51b815260206004820152601360248201527f496e636f7272656374207369676e61747572650000000000000000000000000060448201526064016104e7565b611cd760c0840160a08501613093565b6001600160a01b0316336001600160a01b031614611d375760405162461bcd60e51b815260206004820152601a60248201527f4f6e6c7920746865207369676e65722063616e2063616e63656c00000000000060448201526064016104e7565b6000611d42846126f0565b9050600481604051611d5491906137ff565b9081526040519081900360200190205460ff1615611dda5760405162461bcd60e51b815260206004820152602860248201527f4f726465722077617320616c72656164792066696e616c697a6564206f72206360448201527f616e63656c6c656400000000000000000000000000000000000000000000000060648201526084016104e7565b6001600482604051611dec91906137ff565b908152604051908190036020019020805491151560ff199092169190911790557f529d3bdff5de00724e674a22c5cc88aeca2e6496bf02e3369a4e43a7171be0528435611e3f60c0870160a08801613093565b604080519283526001600160a01b0390911660208301520160405180910390a150505050565b611ec3611e77368590038501856134f2565b83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611ebe9250505060a0870160808801613093565b612d82565b611f0f5760405162461bcd60e51b815260206004820152601360248201527f496e636f7272656374207369676e61747572650000000000000000000000000060448201526064016104e7565b611f1f60a0840160808501613093565b6001600160a01b0316336001600160a01b031614611f7f5760405162461bcd60e51b815260206004820152601a60248201527f4f6e6c7920746865207369676e65722063616e2063616e63656c00000000000060448201526064016104e7565b6000611f8a846123ac565b9050600481604051611f9c91906137ff565b9081526040519081900360200190205460ff16156120225760405162461bcd60e51b815260206004820152602860248201527f4f726465722077617320616c72656164792066696e616c697a6564206f72206360448201527f616e63656c6c656400000000000000000000000000000000000000000000000060648201526084016104e7565b600160048260405161203491906137ff565b908152604051908190036020019020805491151560ff199092169190911790557f91c7d8c44f8d1802e95d38f8a5f185d75097756975f49a41090e5d3b6d2ef5d28435611e3f60a0870160808801613093565b60007fcfed8675be2b6dad7b83883dab6adf58d407658938cd6e786220bfa51447482e826000015183602001518460400151856060015186608001518760a001518860c001518960e001518a61010001518b61012001518c61014001516040516020016120ff9c9b9a9998979695949392919061382e565b604051602081830303815290604052805190602001209050919050565b60007f603eed03ebfd34f03ded43a90e136ba1da6110e929244a72cdc9d71acbcaceeb826000015183602001518460400151856060015186608001518760a001516040516020016120ff9796959493929190968752602087019590955260408601939093526001600160a01b03918216606086015260808501521660a083015260c082015260e00190565b6121af6122d2565b6001600160a01b03811661222b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016104e7565b61223481612693565b50565b61223f6122d2565b6040517f42842e0e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038281166024830152604482018490528416906342842e0e90606401600060405180830381600087803b1580156122a857600080fd5b505af11580156122bc573d6000803e3d6000fd5b50505050505050565b6122cd6122d2565b600355565b6000546001600160a01b031633146113d95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e7565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f826000015180519060200120836020015180519060200120846040015185606001516040516020016120ff9594939291909485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b60606123be60a0830160808401613093565b60405160609190911b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166020820152823560348201526054016040516020818303038152906040529050919050565b6002546040516331a9108f60e11b815260a085013560048201526000916001600160a01b031690636352211e90602401602060405180830381865afa15801561245b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061247f9190613666565b90506124d3612493368690038601866134f2565b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611ebe92506117e4915050565b8061252957506125296124eb368690038601866134f2565b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250869250612d82915050565b6125755760405162461bcd60e51b815260206004820152601360248201527f496e636f7272656374207369676e61747572650000000000000000000000000060448201526064016104e7565b61258560a0850160808601613093565b6001600160a01b0316816001600160a01b0316146125e55760405162461bcd60e51b815260206004820152601360248201527f53656c6c6572206973206e6f74206f776e65720000000000000000000000000060448201526064016104e7565b42846060013510156126395760405162461bcd60e51b815260206004820152600d60248201527f4f7264657220657870697265640000000000000000000000000000000000000060448201526064016104e7565b600084602001351161268d5760405162461bcd60e51b815260206004820181905260248201527f5072696365206e6565647320746f2062652067726561746572207468616e203060448201526064016104e7565b50505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60606123be60c0830160a08401613093565b612754612714368590038501856134d5565b83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611c7692506117e4915050565b8061276c575061276c611c2f368590038501856134d5565b6127b85760405162461bcd60e51b815260206004820152601360248201527f496e636f7272656374207369676e61747572650000000000000000000000000060448201526064016104e7565b60006127ca6060850160408601613093565b6001600160a01b0316036128465760405162461bcd60e51b815260206004820152602360248201527f426964646572206469646e27742070726f76696465206120455243323020746f60448201527f6b656e000000000000000000000000000000000000000000000000000000000060648201526084016104e7565b428360800135101561289a5760405162461bcd60e51b815260206004820152600d60248201527f4f7264657220657870697265640000000000000000000000000000000000000060448201526064016104e7565b60008360200135116128ee5760405162461bcd60e51b815260206004820181905260248201527f5072696365206e6565647320746f2062652067726561746572207468616e203060448201526064016104e7565b6128fe6080840160608501613093565b6001600160a01b0316846001600160a01b031663be9a71bd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612945573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129699190613666565b6001600160a01b0316146129bf5760405162461bcd60e51b815260206004820152601760248201527f436f6c6c656374696f6e7320646f6e2774206d6174636800000000000000000060448201526064016104e7565b6129d161016084016101408501613093565b6001600160a01b0316846001600160a01b03166312384c886040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a3c9190613666565b6001600160a01b03161461268d5760405162461bcd60e51b815260206004820152601e60248201527f4f7074696f6e206c697175696469747920646f65736e2774206d61746368000060448201526064016104e7565b336002546040516331a9108f60e11b8152600481018690526001600160a01b039283169290911690636352211e90602401602060405180830381865afa158015612ae0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b049190613666565b6001600160a01b031614612b5a5760405162461bcd60e51b815260206004820152601360248201527f53656c6c6572206973206e6f74206f776e65720000000000000000000000000060448201526064016104e7565b6040517fe2213a4b000000000000000000000000000000000000000000000000000000008152600481018490526000906001600160a01b0384169063e2213a4b9060240160a060405180830381865afa158015612bbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bdf91906138a9565b9050612bf160e0830160c08401613929565b6001811115612c0257612c026136dc565b81602001516001811115612c1857612c186136dc565b14612c655760405162461bcd60e51b815260206004820152601860248201527f4f7074696f6e20747970657320646f6e2774206d61746368000000000000000060448201526064016104e7565b8160e00135816040015114612cbc5760405162461bcd60e51b815260206004820152601960248201527f537472696b652070726963657320646f6e2774206d617463680000000000000060448201526064016104e7565b6000826101000135826060015111612ce7576060820151612ce29061010085013561381b565b612cfc565b8261010001358260600151612cfc919061381b565b9050826101200135811115612d535760405162461bcd60e51b815260206004820152601760248201527f4e6f742077697468696e206578706972792072616e676500000000000000000060448201526064016104e7565b5050505050565b6000816001600160a01b0316612d708585610753565b6001600160a01b031614949350505050565b6000816001600160a01b0316612d7085856108f9565b6001600160a01b038116811461223457600080fd5b8035612db881612d98565b919050565b634e487b7160e01b600052604160045260246000fd5b604051610160810167ffffffffffffffff81118282101715612df757612df7612dbd565b60405290565b600082601f830112612e0e57600080fd5b813567ffffffffffffffff80821115612e2957612e29612dbd565b604051601f8301601f19908116603f01168101908282118183101715612e5157612e51612dbd565b81604052838152866020858801011115612e6a57600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060008060808587031215612ea057600080fd5b8435612eab81612d98565b93506020850135612ebb81612d98565b925060408501359150606085013567ffffffffffffffff811115612ede57600080fd5b612eea87828801612dfd565b91505092959194509250565b60008083601f840112612f0857600080fd5b50813567ffffffffffffffff811115612f2057600080fd5b60208301915083602060c083028501011115612f3b57600080fd5b9250929050565b60008083601f840112612f5457600080fd5b50813567ffffffffffffffff811115612f6c57600080fd5b6020830191508360208260051b8501011115612f3b57600080fd5b60008060008060008060608789031215612fa057600080fd5b863567ffffffffffffffff80821115612fb857600080fd5b818901915089601f830112612fcc57600080fd5b813581811115612fdb57600080fd5b8a60208260081b8501011115612ff057600080fd5b60209283019850965090880135908082111561300b57600080fd5b6130178a838b01612ef6565b9096509450604089013591508082111561303057600080fd5b5061303d89828a01612f42565b979a9699509497509295939492505050565b6020808252825182820181905260009190848201906040850190845b818110156130875783518352928401929184019160010161306b565b50909695505050505050565b6000602082840312156130a557600080fd5b8135610e1f81612d98565b6002811061223457600080fd5b8035612db8816130b0565b600061016082840312156130db57600080fd5b6130e3612dd3565b905081358152602082013560208201526130ff60408301612dad565b604082015261311060608301612dad565b60608201526080820135608082015261312b60a08301612dad565b60a082015261313c60c083016130bd565b60c082015260e082810135908201526101008083013590820152610120808301359082015261014061316f818401612dad565b9082015292915050565b600080610180838503121561318d57600080fd5b61319784846130c8565b915061016083013567ffffffffffffffff8111156131b457600080fd5b6131c085828601612dfd565b9150509250929050565b600060c082840312156131dc57600080fd5b60405160c0810181811067ffffffffffffffff821117156131ff576131ff612dbd565b80604052508091508235815260208301356020820152604083013561322381612d98565b604082015260608381013590820152608083013561324081612d98565b608082015260a092830135920191909152919050565b60008060e0838503121561326957600080fd5b61327384846131ca565b915060c083013567ffffffffffffffff8111156131b457600080fd5b60008083601f8401126132a157600080fd5b50813567ffffffffffffffff8111156132b957600080fd5b602083019150836020828501011115612f3b57600080fd5b60008060008385036101208112156132e857600080fd5b610100808212156132f857600080fd5b859450840135905067ffffffffffffffff81111561331557600080fd5b6133218682870161328f565b9497909650939450505050565b600080600083850360e081121561334457600080fd5b60c081121561335257600080fd5b5083925060c084013567ffffffffffffffff81111561331557600080fd5b6000610160828403121561338357600080fd5b50919050565b6000806000806101a085870312156133a057600080fd5b6133aa8686613370565b935061016085013567ffffffffffffffff8111156133c757600080fd5b6133d38782880161328f565b959890975094956101800135949350505050565b6000602082840312156133f957600080fd5b813567ffffffffffffffff81111561341057600080fd5b61341c84828501612dfd565b949350505050565b60008060008060006101c0868803121561343d57600080fd5b85359450602086013561344f81612d98565b935061345e8760408801613370565b92506101a086013567ffffffffffffffff81111561347b57600080fd5b6134878882890161328f565b969995985093965092949392505050565b600080600061018084860312156134ae57600080fd5b6134b88585613370565b925061016084013567ffffffffffffffff81111561331557600080fd5b600061016082840312156134e857600080fd5b610e1f83836130c8565b600060c0828403121561350457600080fd5b610e1f83836131ca565b60008060006060848603121561352357600080fd5b833561352e81612d98565b925060208401359150604084013561354581612d98565b809150509250925092565b60006020828403121561356257600080fd5b5035919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156108bc576108bc613569565b634e487b7160e01b600052603260045260246000fd5b6000808335601e198436030181126135bf57600080fd5b83018035915067ffffffffffffffff8211156135da57600080fd5b602001915036819003821315612f3b57600080fd5b60006001820161360157613601613569565b5060010190565b60005b8381101561362357818101518382015260200161360b565b50506000910152565b8281526040602082015260008251806040840152613651816060850160208701613608565b601f01601f1916919091016060019392505050565b60006020828403121561367857600080fd5b8151610e1f81612d98565b6000806040838503121561369657600080fd5b82516136a181612d98565b6020939093015192949293505050565b80518015158114612db857600080fd5b6000602082840312156136d357600080fd5b610e1f826136b1565b634e487b7160e01b600052602160045260246000fd5b6002811061371057634e487b7160e01b600052602160045260246000fd5b9052565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b600061014086358352602087013561375481612d98565b6001600160a01b031660208401526040870135613770816130b0565b61377d60408501826136f2565b50606087013560608401526080870135608084015260a087013560a084015260c087013560c084015260e087013560e0840152806101008401526137c48184018688613714565b9150506137dd6101208301846001600160a01b03169052565b95945050505050565b6000602082840312156137f857600080fd5b5051919050565b60008251613811818460208701613608565b9190910192915050565b818103818111156108bc576108bc613569565b6000610180820190508d82528c60208301528b60408301526001600160a01b03808c166060840152808b1660808401528960a084015280891660c084015261387960e08401896136f2565b866101008401528561012084015284610140840152808416610160840152509d9c50505050505050505050505050565b600060a082840312156138bb57600080fd5b60405160a0810181811067ffffffffffffffff821117156138de576138de612dbd565b6040526138ea836136b1565b815260208301516138fa816130b0565b806020830152506040830151604082015260608301516060820152608083015160808201528091505092915050565b60006020828403121561393b57600080fd5b8135610e1f816130b056fea26469706673582212205e0e64385f86e07fe599fc812ed7c3c21f26d44efa5dbc72795a4e5bf91516c464736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000fc68f2130e094c95b6c4f5494158cbeb172e18a0
-----Decoded View---------------
Arg [0] : _option (address): 0xFc68f2130e094C95B6C4F5494158cbeB172e18a0
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000fc68f2130e094c95b6c4f5494158cbeb172e18a0
Loading...
Loading
Loading...
Loading
OVERVIEW
Wasabi Conduit is a smart contract that allows users to buy NFT options from any options pools present on the Wasabi protocol.Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,234.62 | 0.002 | $6.47 |
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.