Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
Loading...
Loading
Contract Name:
TicketMint
Compiler Version
v0.8.12+commit.f00d7308
Optimization Enabled:
Yes with 2000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "./IFlightTickets.sol"; import "./Rocks.sol"; contract TicketMint is Ownable { event TicketUsed( address indexed from, uint256 indexed zoneId, uint256[] ticketTypes, uint256[] ticketAmounts, uint256 timestamp ); address public signerAddress; IFlightTickets public ticketsContract; Rocks public rocksContract; modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } uint256 constant ROCK_A = 0; uint256 constant ROCK_B = 1; uint256 constant ROCK_C = 2; uint256 constant ROCK_D = 3; uint256 constant ROCK_E = 4; uint256 constant ROCK_F = 5; uint256 constant ROCK_G = 6; uint256 constant ROCK_H = 7; uint256 constant ROCK_I = 8; uint256 constant ROCK_J = 9; uint256 constant ROCK_K = 10; uint256 constant ROCK_L = 11; uint256 constant ROCK_M = 12; uint256 constant ROCK_N = 13; uint256 constant ROCK_O = 14; uint256 constant TICKET_FIRST_CLASS_PPP = 0; uint256 constant TICKET_FIRST_CLASS_PP = 1; uint256 constant TICKET_FIRST_CLASS_P = 2; uint256 constant TICKET_FIRST_CLASS = 3; uint256 constant TICKET_BUSINESS = 4; uint256 constant TICKET_ECONOMY = 5; uint256 constant ZONE_VALLES = 0; uint256 constant ZONE_OLYMPUS = 1; uint256 constant ZONE_POLAR = 2; uint256 public economyMintPrice = 0.08 ether; mapping(uint256 => mapping(uint256 => RockData[])) public rocksMap; struct RockData { uint256 id; uint256 quantity; } constructor() { // VALLES rocksMap[ZONE_VALLES][TICKET_FIRST_CLASS_PPP].push(RockData(ROCK_G, 1)); rocksMap[ZONE_VALLES][TICKET_FIRST_CLASS_PPP].push(RockData(ROCK_M, 2)); rocksMap[ZONE_VALLES][TICKET_FIRST_CLASS_PP].push(RockData(ROCK_D, 1)); rocksMap[ZONE_VALLES][TICKET_FIRST_CLASS_PP].push(RockData(ROCK_M, 2)); rocksMap[ZONE_VALLES][TICKET_FIRST_CLASS_P].push(RockData(ROCK_G, 1)); rocksMap[ZONE_VALLES][TICKET_FIRST_CLASS_P].push(RockData(ROCK_M, 1)); rocksMap[ZONE_VALLES][TICKET_FIRST_CLASS].push(RockData(ROCK_D, 1)); rocksMap[ZONE_VALLES][TICKET_FIRST_CLASS].push(RockData(ROCK_J, 1)); rocksMap[ZONE_VALLES][TICKET_BUSINESS].push(RockData(ROCK_A, 1)); rocksMap[ZONE_VALLES][TICKET_ECONOMY].push(RockData(ROCK_D, 1)); // OLYMPUS rocksMap[ZONE_OLYMPUS][TICKET_FIRST_CLASS_PPP].push(RockData(ROCK_H, 1)); rocksMap[ZONE_OLYMPUS][TICKET_FIRST_CLASS_PPP].push(RockData(ROCK_N, 2)); rocksMap[ZONE_OLYMPUS][TICKET_FIRST_CLASS_PP].push(RockData(ROCK_E, 1)); rocksMap[ZONE_OLYMPUS][TICKET_FIRST_CLASS_PP].push(RockData(ROCK_N, 2)); rocksMap[ZONE_OLYMPUS][TICKET_FIRST_CLASS_P].push(RockData(ROCK_H, 1)); rocksMap[ZONE_OLYMPUS][TICKET_FIRST_CLASS_P].push(RockData(ROCK_N, 1)); rocksMap[ZONE_OLYMPUS][TICKET_FIRST_CLASS].push(RockData(ROCK_E, 1)); rocksMap[ZONE_OLYMPUS][TICKET_FIRST_CLASS].push(RockData(ROCK_K, 1)); rocksMap[ZONE_OLYMPUS][TICKET_BUSINESS].push(RockData(ROCK_B, 1)); rocksMap[ZONE_OLYMPUS][TICKET_ECONOMY].push(RockData(ROCK_E, 1)); // POLAR rocksMap[ZONE_POLAR][TICKET_FIRST_CLASS_PPP].push(RockData(ROCK_I, 1)); rocksMap[ZONE_POLAR][TICKET_FIRST_CLASS_PPP].push(RockData(ROCK_O, 2)); rocksMap[ZONE_POLAR][TICKET_FIRST_CLASS_PP].push(RockData(ROCK_F, 1)); rocksMap[ZONE_POLAR][TICKET_FIRST_CLASS_PP].push(RockData(ROCK_O, 2)); rocksMap[ZONE_POLAR][TICKET_FIRST_CLASS_P].push(RockData(ROCK_I, 1)); rocksMap[ZONE_POLAR][TICKET_FIRST_CLASS_P].push(RockData(ROCK_O, 1)); rocksMap[ZONE_POLAR][TICKET_FIRST_CLASS].push(RockData(ROCK_F, 1)); rocksMap[ZONE_POLAR][TICKET_FIRST_CLASS].push(RockData(ROCK_L, 1)); rocksMap[ZONE_POLAR][TICKET_BUSINESS].push(RockData(ROCK_C, 1)); rocksMap[ZONE_POLAR][TICKET_ECONOMY].push(RockData(ROCK_F, 1)); } /** * @dev Sets the address that generates the signatures for whitelisting */ function setSignerAddress(address _signerAddress) external onlyOwner { signerAddress = _signerAddress; } /** * @dev Sets the tickets smart contract */ function setTicketsContract(address _ticketsContractAddress) external onlyOwner { ticketsContract = IFlightTickets(_ticketsContractAddress); } /** * @dev Sets the rocks smart contract */ function setRocksContract(address _rocksContractAddress) external onlyOwner { rocksContract = Rocks(_rocksContractAddress); } /** * @dev Sets the mint price to be paid by economy tickets holders */ function setEconomyMintPrice(uint256 _economyMintPrice) external onlyOwner { economyMintPrice = _economyMintPrice; } /** * @dev Allows to withdraw the Ether in the contract. */ function withdraw() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } // END ONLY OWNER /** * @dev Mints rocks for the given tickets */ function mint( uint256[] memory _ticketTypes, uint256[] memory _ticketAmounts, uint256 _zone, uint256 _fromTimestamp, uint256 _toTimestamp, bytes calldata _signature ) external payable { require( ECDSA.recover(generateMessageHash(_fromTimestamp, _toTimestamp, address(this)), _signature) == signerAddress, "Invalid signature for the caller" ); require(block.timestamp >= _fromTimestamp, "Too early to mint"); require(block.timestamp <= _toTimestamp, "The signature has expired"); require( _ticketTypes.length == _ticketAmounts.length, "Amount of mints per tickets does not match the ticket array" ); require(_zone <= ZONE_POLAR, "The given zone is not valid"); uint256 totalToPay; uint256[15] memory _rocks; for (uint256 i; i < _ticketTypes.length; i++) { require(_ticketTypes[i] <= TICKET_ECONOMY, "Invalid ticket type"); require(_ticketAmounts[i] > 0, "Amount must be greater than 0"); if (_ticketTypes[i] == TICKET_ECONOMY) { totalToPay += _ticketAmounts[i] * economyMintPrice; } for (uint256 f; f < rocksMap[_zone][_ticketTypes[i]].length; f++) { _rocks[rocksMap[_zone][_ticketTypes[i]][f].id] += rocksMap[_zone][_ticketTypes[i]][f].quantity * _ticketAmounts[i]; } } require(msg.value >= totalToPay, "Not enough ETH to mint"); uint256 typesCount; for (uint256 i; i < _rocks.length; i++) { if (_rocks[i] == 0) { continue; } typesCount++; } require(typesCount > 0, "Nothing to mint"); uint256[] memory _ids = new uint256[](typesCount); uint256[] memory _amounts = new uint256[](typesCount); uint256 c; for (uint256 i; i < _rocks.length; i++) { if (_rocks[i] > 0) { _ids[c] = i; _amounts[c] = _rocks[i]; c++; } } ticketsContract.useTickets(msg.sender, _ticketTypes, _ticketAmounts); rocksContract.mint(msg.sender, _ids, _amounts); emit TicketUsed(msg.sender, _zone, _ticketTypes, _ticketAmounts, block.timestamp); } /** * @dev Generates the message hash for the given parameters */ function generateMessageHash( uint256 _fromTimestamp, uint256 _toTimestamp, address _contractAddress ) internal pure returns (bytes32) { return keccak256( abi.encodePacked("\x19Ethereum Signed Message:\n84", _fromTimestamp, _toTimestamp, _contractAddress) ); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(_msgSender() != operator, "ERC1155: setting approval status for self"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`. * * Emits a {TransferSingle} event. * * Requirements: * * - `account` cannot be the zero address. * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address account, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(account != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][account] += amount; emit TransferSingle(operator, address(0), account, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `account` * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens of token type `id`. */ function _burn( address account, uint256 id, uint256 amount ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } emit TransferSingle(operator, account, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address account, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } } emit TransferBatch(operator, account, address(0), ids, amounts); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @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); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT 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 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 pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; interface IFlightTickets is IERC1155 { function useTickets( address _owner, uint256[] memory _ticketTypes, uint256[] memory _amounts ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract Rocks is ERC1155, Ownable { using Strings for uint256; address public signerAddress; bool public isFrozen = false; string public name = "Tom Sachs: Rocket Factory - Mars Rocks"; address[] public minterAddresses; address public useRocksAddress; modifier contractIsNotFrozen() { require(isFrozen == false, "This function can not be called anymore"); _; } modifier onlyMinter() { bool isAllowed; for (uint256 i; i < minterAddresses.length; i++) { if (minterAddresses[i] == msg.sender) { isAllowed = true; break; } } require(isAllowed, "Minter: caller is not an allowed minter"); _; } constructor() ERC1155("https://tomsachsrocketfactory.mypinata.cloud/ipfs/") {} function uri(uint256 _tokenId) public view virtual override returns (string memory) { return string(abi.encodePacked(ERC1155.uri(_tokenId), _tokenId.toString())); } // ONLY OWNER /** * @dev Sets the base URI for the API that provides the NFT data. */ function setURI(string memory _uri) external onlyOwner contractIsNotFrozen { _setURI(_uri); } /** * @dev Empty transaction to leave a record in the blockchain history of the URI for * the revealed tokens */ function setRevealedURI(string memory _uri) external onlyOwner {} /** * @dev Freezes the smart contract */ function freeze() external onlyOwner { isFrozen = true; } /** * @dev Adds an address that is allowed to mint */ function addMinterAddress(address _minterAddress) external onlyOwner { minterAddresses.push(_minterAddress); } /** * @dev Removes permission to mint to an address */ function removeMinterAddress(address _minterAddress) external onlyOwner { for (uint256 i; i < minterAddresses.length; i++) { if (minterAddresses[i] != _minterAddress) { continue; } minterAddresses[i] = minterAddresses[minterAddresses.length - 1]; minterAddresses.pop(); } } /** * @dev Sets the address that it's allowed to call the function useRocks */ function setUseRocksAddress(address _useRocksAddress) external onlyOwner { useRocksAddress = _useRocksAddress; } // END ONLY OWNER /** * @dev Mints rocks to the given address */ function mint( address _recipient, uint256[] memory _ids, uint256[] memory _amounts ) external onlyMinter contractIsNotFrozen { _mintBatch(_recipient, _ids, _amounts, ""); } /** * @dev Uses rocks */ function useRocks( address _owner, uint256[] memory _rockTypes, uint256[] memory _amounts ) external { require(msg.sender == useRocksAddress, "Caller is not allowed"); _burnBatch(_owner, _rockTypes, _amounts); } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 2000 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"zoneId","type":"uint256"},{"indexed":false,"internalType":"uint256[]","name":"ticketTypes","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"ticketAmounts","type":"uint256[]"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TicketUsed","type":"event"},{"inputs":[],"name":"economyMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ticketTypes","type":"uint256[]"},{"internalType":"uint256[]","name":"_ticketAmounts","type":"uint256[]"},{"internalType":"uint256","name":"_zone","type":"uint256"},{"internalType":"uint256","name":"_fromTimestamp","type":"uint256"},{"internalType":"uint256","name":"_toTimestamp","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rocksContract","outputs":[{"internalType":"contract Rocks","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"rocksMap","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_economyMintPrice","type":"uint256"}],"name":"setEconomyMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_rocksContractAddress","type":"address"}],"name":"setRocksContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signerAddress","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_ticketsContractAddress","type":"address"}],"name":"setTicketsContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ticketsContract","outputs":[{"internalType":"contract IFlightTickets","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405267011c37937e08000060045534801561001c57600080fd5b5061002633610d16565b7f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc6020818152604080518082018252600680825260018285018181527f45d21ede0cb86a9bc9f3a728b8ad730cd840abb3d7468e2d1713e27e21c48d2880548084018255600082815295517fe5703db246f6ffb6da1b43bbc56fd8a4b0681595467dfde8baedd5e0692753d460029283028181019290925593517fe5703db246f6ffb6da1b43bbc56fd8a4b0681595467dfde8baedd5e0692753d59182015589895287518089018952600c808252818b0184815285548089018755958a52915194840295860194909455519301929092558787528551808701875260038082528189018581527ffe0302fa40a9aa67fb13db4902e99a41f9ab1a813e451068847ae01ccb64e67d80548088018255818a5293517fe3019de7bfcc531d8dd58941a9431e69e8d58d6037770afe42d4f081d39a81a39487028581019190915591517fe3019de7bfcc531d8dd58941a9431e69e8d58d6037770afe42d4f081d39a81a4928301558b8b528951808b018b52858152808c018781528254808a018455928b5290519187029485019190915551920191909155888852865180880188529485528488018481527ff4085a40beb3a956513aa583d649f4942a3fb72c82f6452a096736948ab118bb8054808701825581895296517fdfb17b2b0efb21dbdb2513f94efdc84d99083d4a00704ed33abbda05db0e2a049786028881019190915591517fdfb17b2b0efb21dbdb2513f94efdc84d99083d4a00704ed33abbda05db0e2a05928301558a8a528851808a018a52938452838a018681528154808801835591895293519085029687015591519490910193909355868652845180860186528381528087018381527ff5ddc995ce1838b80347e1c0406f0ae450a8cef06f9fab292132081dbe42317d8054808601825581885292517fdd164bfe0e39e308d33b2b1a9a858fa6986c26f1441e8b61e12a9154c41da7579385028481019190915591517fdd164bfe0e39e308d33b2b1a9a858fa6986c26f1441e8b61e12a9154c41da758928301558989528751808901895260098152808a018681528254808801845592895290519185029384019190915551910155868652845180860186528481528087018381527fcd54eaf66f0ca8f80b6904200aa04bd3a2ebf31729b569771b2cb7ec7bf61dfa8054808601825590875291517f4785b4b79855ae3baca0820d142e92821f44e1ec28395dc93d296e132c4f8cdc92840292830155517f4785b4b79855ae3baca0820d142e92821f44e1ec28395dc93d296e132c4f8cdd90910155958552835180850185529182528185018181527f513211bc9156a8ca5505d897e812fbb5b908c0c1095dbe775b6579e14d658b4d8054808401825590855292517f474f024f970a348b2a298bde6325c89020cb576acee94a7e59ac2362ee4ed6c993880293840155517f474f024f970a348b2a298bde6325c89020cb576acee94a7e59ac2362ee4ed6ca909201919091557f1471eb6eb2c5e789fc3de43f8ce62938c7d1836ec861730447e2ada8fd81017b8085528351808501855260078082528187018481527f07f793f8fd62a1688d9e2ebd2c8b2e8ab72cd080250f71b53bf5b4113f244d5e8054808701825581885293517f3df16b9b65036139faf9cbe388b9dca74b8e64c19062266695d01f128c4b65a5948b028581019190915591517f3df16b9b65036139faf9cbe388b9dca74b8e64c19062266695d01f128c4b65a69283015584895287518089018952600d808252818b018c81528354808a018555938a529151928c02958601929092555193909101929092558287528551808701875260048082528189018681527f5f3486166877647309981c8ac04440249bce15ac04aa12124ca980947a9a5cbb80548089018255818a5293517f07eb06d10f17cc39276b685bc76b4c190dba0764151e2a682b62624d68308a1f948d028581019190915591517f07eb06d10f17cc39276b685bc76b4c190dba0764151e2a682b62624d68308a2092830155868b528951808b018b52868152808c018d81528254808b018455928b529051918d029485019190915551920191909155838852865180880188529182528188018581527ff5420ca259a62a5d01b98236cad4b6c63e18c1c4aeae10e9ea108330f776d4798054808801825581895293517f89c12a96fe7f08f4539db323d1ceff4bb503ca89cced334d720ada41ea5e6010948c028581019190915591517f89c12a96fe7f08f4539db323d1ceff4bb503ca89cced334d720ada41ea5e601192830155858a528851808a018a52948552848a01878152815480890183559189529451908b029384015592519190920155818652845180860186528181528087018481527fae0d4d0ca061c554e850c8013a76c42d75d5ba7cebc01d1240c06efd18fbf8e58054808701825581885292517fa026542a46bb61642006902845fe279ac22a89329c752b9b2998bba41c75b02a938b028481019190915591517fa026542a46bb61642006902845fe279ac22a89329c752b9b2998bba41c75b02b9283015584895287518089018952600a8152808a01878152825480890184559289529051918b029384019190915551910155818652845180860186528381528087018481527f65184d2438cc20d1fa2c68669e77a616b105039ff7427fc7da11ff290af06c398054808701825590875291517f87b8b8156542123e083c44282a65f54d0d0e5f53f9b252c093caa84364fdc133928a0292830155517f87b8b8156542123e083c44282a65f54d0d0e5f53f9b252c093caa84364fdc13490910155908552835180850185529081528085018281527f75db5e6d0b0a914643be9e797917913c95267976bfa5920adfb212a1ca10da6d8054808501825590855291517ff6ea52f0f66c39a0d12119fc9d4218f501bee9d68edfa983718c50196cc0fe4192880292830155517ff6ea52f0f66c39a0d12119fc9d4218f501bee9d68edfa983718c50196cc0fe42909101557f89832631fb3c3307a103ba2c84ab569c64d6182a18893dcd163f0f1c2090733a8085528351808501855260088082528187018481527fc586c88e6f767a75f10d71e7d47c2ce455a9b1b48f44f5fb01af65ba267f7cf98054808701825581885293517f10a617ad07c093b33a00534f4cf18ab7d68b67b622d0f374f8bbe13d6298f5f9948b028581019190915591517f10a617ad07c093b33a00534f4cf18ab7d68b67b622d0f374f8bbe13d6298f5fa9283015584895287518089018952600e808252818b018c81528354808a018555938a529151928c02958601929092555193909101929092558287528551808701875260058082528189018681527f1aa088828ea439c2d2cdaa4e7f27dcd7c5331394988678b45d5d5c605686963b80548089018255818a5293517fdf46009e415c770789996af7378a71a63bd945f841d3bb6fb8c938f5e7e20b64948d028581019190915591517fdf46009e415c770789996af7378a71a63bd945f841d3bb6fb8c938f5e7e20b6592830155868b528951808b018b52868152808c018d81528254808b018455928b529051918d029485019190915551920191909155838852865180880188529182528188018581527fc3872fadc793fb0bb284ae601a7003728d4f91ef813a9c52151175538e74d8e98054808801825581895293517fa3407b21104764cdc8cc87504e41991af7a6b15d06f5dfd4f63fe476d5e0b6d4948c028581019190915591517fa3407b21104764cdc8cc87504e41991af7a6b15d06f5dfd4f63fe476d5e0b6d592830155858a528851808a018a52948552848a01878152815480890183559189529451908b029384015592519190920155818652845180860186528181528087018481527fa77ae0bd3e56335ff49c76055f2eca0ced7395ada69e971c1cfc4ce403a7a1ef8054808701825581885292517f0e4deb894aa42cf4a7550fc46cfc7afc15b96213d91d231db7631a706a93b61e938b028481019190915591517f0e4deb894aa42cf4a7550fc46cfc7afc15b96213d91d231db7631a706a93b61f9283015584895287518089018952600b8152808a01878152825480890184559289529051918b029384019190915551910155818652845180860186528781528087018481527fd5033b5c6ec3f975a886fe492a1e8c351a4abaa393165409272abe5bdf5fcbe48054808701825590875291517f979675acf854bc2cd46a1da4a2930f3a2854830815f74031dd233c727a551d93928a0292830155517f979675acf854bc2cd46a1da4a2930f3a2854830815f74031dd233c727a551d9490910155908552835180850190945283529282018381527f4736e49b4e6f6378c251bb0d7a2b25691715b46adcc87b5d12d897f4d492f2678054948501815590915290517fcb6480dff065c314b6f1fa17aa055f2fac17085e3b4a098c189cc85dd651280d929093029182019290925590517fcb6480dff065c314b6f1fa17aa055f2fac17085e3b4a098c189cc85dd651280e90910155610d66565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61172280610d756000396000f3fe6080604052600436106100dd5760003560e01c80635b7633d01161007f57806375d76cad1161005957806375d76cad146102225780638da5cb5b14610257578063998a6e8214610275578063f2fde38b1461029557600080fd5b80635b7633d0146101da57806370238eb2146101fa578063715018a61461020d57600080fd5b80632d483e04116100bb5780632d483e04146101445780633ccfd60b1461016d578063526cee8d1461018257806353048413146101ba57600080fd5b8063046dc166146100e25780630c66a19e146101045780632cc6d16714610124575b600080fd5b3480156100ee57600080fd5b506101026100fd3660046113aa565b6102b5565b005b34801561011057600080fd5b5061010261011f3660046113da565b610343565b34801561013057600080fd5b5061010261013f3660046113aa565b6103a2565b34801561015057600080fd5b5061015a60045481565b6040519081526020015b60405180910390f35b34801561017957600080fd5b5061010261042b565b34801561018e57600080fd5b506002546101a2906001600160a01b031681565b6040516001600160a01b039091168152602001610164565b3480156101c657600080fd5b506101026101d53660046113aa565b6104b4565b3480156101e657600080fd5b506001546101a2906001600160a01b031681565b6101026102083660046114a4565b61053d565b34801561021957600080fd5b50610102610de5565b34801561022e57600080fd5b5061024261023d36600461157d565b610e4b565b60408051928352602083019190915201610164565b34801561026357600080fd5b506000546001600160a01b03166101a2565b34801561028157600080fd5b506003546101a2906001600160a01b031681565b3480156102a157600080fd5b506101026102b03660046113aa565b610e95565b6000546001600160a01b031633146103145760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461039d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161030b565b600455565b6000546001600160a01b031633146103fc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161030b565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6000546001600160a01b031633146104855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161030b565b60405133904780156108fc02916000818181858888f193505050501580156104b1573d6000803e3d6000fd5b50565b6000546001600160a01b0316331461050e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161030b565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600154604080517f19457468657265756d205369676e6564204d6573736167653a0a383400000000602080830191909152603c8201889052605c82018790523060601b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016607c83015282516070818403018152609090920190925280519101206001600160a01b039091169061060a9084848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610f7492505050565b6001600160a01b0316146106605760405162461bcd60e51b815260206004820181905260248201527f496e76616c6964207369676e617475726520666f72207468652063616c6c6572604482015260640161030b565b834210156106b05760405162461bcd60e51b815260206004820152601160248201527f546f6f206561726c7920746f206d696e74000000000000000000000000000000604482015260640161030b565b824211156107005760405162461bcd60e51b815260206004820152601960248201527f546865207369676e617475726520686173206578706972656400000000000000604482015260640161030b565b85518751146107775760405162461bcd60e51b815260206004820152603b60248201527f416d6f756e74206f66206d696e747320706572207469636b65747320646f657360448201527f206e6f74206d6174636820746865207469636b65742061727261790000000000606482015260840161030b565b60028511156107c85760405162461bcd60e51b815260206004820152601b60248201527f54686520676976656e207a6f6e65206973206e6f742076616c69640000000000604482015260640161030b565b60006107d261138b565b60005b8951811015610a7d5760058a82815181106107f2576107f26115a9565b602002602001015111156108485760405162461bcd60e51b815260206004820152601360248201527f496e76616c6964207469636b6574207479706500000000000000000000000000604482015260640161030b565b600089828151811061085c5761085c6115a9565b6020026020010151116108b15760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e2030000000604482015260640161030b565b60058a82815181106108c5576108c56115a9565b60200260200101511415610907576004548982815181106108e8576108e86115a9565b60200260200101516108fa91906115d5565b61090490846115f4565b92505b60005b600560008a815260200190815260200160002060008c8481518110610931576109316115a9565b6020026020010151815260200190815260200160002080549050811015610a6a57898281518110610964576109646115a9565b6020026020010151600560008b815260200190815260200160002060008d8581518110610993576109936115a9565b6020026020010151815260200190815260200160002082815481106109ba576109ba6115a9565b9060005260206000209060020201600101546109d691906115d5565b60008a81526005602052604081208d518692908f90879081106109fb576109fb6115a9565b602002602001015181526020019081526020016000208381548110610a2257610a226115a9565b906000526020600020906002020160000154600f8110610a4457610a446115a9565b60200201818151610a5591906115f4565b90525080610a628161160c565b91505061090a565b5080610a758161160c565b9150506107d5565b5081341015610ace5760405162461bcd60e51b815260206004820152601660248201527f4e6f7420656e6f7567682045544820746f206d696e7400000000000000000000604482015260640161030b565b6000805b600f811015610b1b578281600f8110610aed57610aed6115a9565b6020020151610afb57610b09565b81610b058161160c565b9250505b80610b138161160c565b915050610ad2565b5060008111610b6c5760405162461bcd60e51b815260206004820152600f60248201527f4e6f7468696e6720746f206d696e740000000000000000000000000000000000604482015260640161030b565b60008167ffffffffffffffff811115610b8757610b876113f3565b604051908082528060200260200182016040528015610bb0578160200160208202803683370190505b50905060008267ffffffffffffffff811115610bce57610bce6113f3565b604051908082528060200260200182016040528015610bf7578160200160208202803683370190505b5090506000805b600f811015610c995760008682600f8110610c1b57610c1b6115a9565b60200201511115610c875780848381518110610c3957610c396115a9565b6020026020010181815250508581600f8110610c5757610c576115a9565b6020020151838381518110610c6e57610c6e6115a9565b602090810291909101015281610c838161160c565b9250505b80610c918161160c565b915050610bfe565b50600260009054906101000a90046001600160a01b03166001600160a01b031663869e72f0338f8f6040518463ffffffff1660e01b8152600401610cdf93929190611662565b600060405180830381600087803b158015610cf957600080fd5b505af1158015610d0d573d6000803e3d6000fd5b50506003546040517f9727756a0000000000000000000000000000000000000000000000000000000081526001600160a01b039091169250639727756a9150610d5e90339087908790600401611662565b600060405180830381600087803b158015610d7857600080fd5b505af1158015610d8c573d6000803e3d6000fd5b505050508a336001600160a01b03167f3c78e87dded738f68cc731515eca673934cf0f37ae5231b757725088d9377ba28f8f42604051610dce939291906116a0565b60405180910390a350505050505050505050505050565b6000546001600160a01b03163314610e3f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161030b565b610e496000610f98565b565b60056020528260005260406000206020528160005260406000208181548110610e7357600080fd5b6000918252602090912060029091020180546001909101549093509150839050565b6000546001600160a01b03163314610eef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161030b565b6001600160a01b038116610f6b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161030b565b6104b181610f98565b6000806000610f838585610ff5565b91509150610f9081611065565b509392505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008082516041141561102c5760208301516040840151606085015160001a61102087828585611256565b9450945050505061105e565b825160401415611056576020830151604084015161104b868383611343565b93509350505061105e565b506000905060025b9250929050565b6000816004811115611079576110796116d6565b14156110825750565b6001816004811115611096576110966116d6565b14156110e45760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161030b565b60028160048111156110f8576110f86116d6565b14156111465760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161030b565b600381600481111561115a5761115a6116d6565b14156111ce5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161030b565b60048160048111156111e2576111e26116d6565b14156104b15760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161030b565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561128d575060009050600361133a565b8460ff16601b141580156112a557508460ff16601c14155b156112b6575060009050600461133a565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561130a573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166113335760006001925092505061133a565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b0161137d87828885611256565b935093505050935093915050565b604051806101e00160405280600f906020820280368337509192915050565b6000602082840312156113bc57600080fd5b81356001600160a01b03811681146113d357600080fd5b9392505050565b6000602082840312156113ec57600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261141a57600080fd5b8135602067ffffffffffffffff80831115611437576114376113f3565b8260051b604051601f19603f8301168101818110848211171561145c5761145c6113f3565b60405293845285810183019383810192508785111561147a57600080fd5b83870191505b8482101561149957813583529183019190830190611480565b979650505050505050565b600080600080600080600060c0888a0312156114bf57600080fd5b873567ffffffffffffffff808211156114d757600080fd5b6114e38b838c01611409565b985060208a01359150808211156114f957600080fd5b6115058b838c01611409565b975060408a0135965060608a0135955060808a0135945060a08a013591508082111561153057600080fd5b818a0191508a601f83011261154457600080fd5b81358181111561155357600080fd5b8b602082850101111561156557600080fd5b60208301945080935050505092959891949750929550565b60008060006060848603121561159257600080fd5b505081359360208301359350604090920135919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156115ef576115ef6115bf565b500290565b60008219821115611607576116076115bf565b500190565b6000600019821415611620576116206115bf565b5060010190565b600081518084526020808501945080840160005b838110156116575781518752958201959082019060010161163b565b509495945050505050565b6001600160a01b03841681526060602082015260006116846060830185611627565b82810360408401526116968185611627565b9695505050505050565b6060815260006116b36060830186611627565b82810360208401526116c58186611627565b915050826040830152949350505050565b634e487b7160e01b600052602160045260246000fdfea264697066735822122061f9a8427b803aea5b1addb4e716b79013ac2a428513e07ff771fb65abed7e6464736f6c634300080c0033
Deployed Bytecode
0x6080604052600436106100dd5760003560e01c80635b7633d01161007f57806375d76cad1161005957806375d76cad146102225780638da5cb5b14610257578063998a6e8214610275578063f2fde38b1461029557600080fd5b80635b7633d0146101da57806370238eb2146101fa578063715018a61461020d57600080fd5b80632d483e04116100bb5780632d483e04146101445780633ccfd60b1461016d578063526cee8d1461018257806353048413146101ba57600080fd5b8063046dc166146100e25780630c66a19e146101045780632cc6d16714610124575b600080fd5b3480156100ee57600080fd5b506101026100fd3660046113aa565b6102b5565b005b34801561011057600080fd5b5061010261011f3660046113da565b610343565b34801561013057600080fd5b5061010261013f3660046113aa565b6103a2565b34801561015057600080fd5b5061015a60045481565b6040519081526020015b60405180910390f35b34801561017957600080fd5b5061010261042b565b34801561018e57600080fd5b506002546101a2906001600160a01b031681565b6040516001600160a01b039091168152602001610164565b3480156101c657600080fd5b506101026101d53660046113aa565b6104b4565b3480156101e657600080fd5b506001546101a2906001600160a01b031681565b6101026102083660046114a4565b61053d565b34801561021957600080fd5b50610102610de5565b34801561022e57600080fd5b5061024261023d36600461157d565b610e4b565b60408051928352602083019190915201610164565b34801561026357600080fd5b506000546001600160a01b03166101a2565b34801561028157600080fd5b506003546101a2906001600160a01b031681565b3480156102a157600080fd5b506101026102b03660046113aa565b610e95565b6000546001600160a01b031633146103145760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461039d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161030b565b600455565b6000546001600160a01b031633146103fc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161030b565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6000546001600160a01b031633146104855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161030b565b60405133904780156108fc02916000818181858888f193505050501580156104b1573d6000803e3d6000fd5b50565b6000546001600160a01b0316331461050e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161030b565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600154604080517f19457468657265756d205369676e6564204d6573736167653a0a383400000000602080830191909152603c8201889052605c82018790523060601b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016607c83015282516070818403018152609090920190925280519101206001600160a01b039091169061060a9084848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610f7492505050565b6001600160a01b0316146106605760405162461bcd60e51b815260206004820181905260248201527f496e76616c6964207369676e617475726520666f72207468652063616c6c6572604482015260640161030b565b834210156106b05760405162461bcd60e51b815260206004820152601160248201527f546f6f206561726c7920746f206d696e74000000000000000000000000000000604482015260640161030b565b824211156107005760405162461bcd60e51b815260206004820152601960248201527f546865207369676e617475726520686173206578706972656400000000000000604482015260640161030b565b85518751146107775760405162461bcd60e51b815260206004820152603b60248201527f416d6f756e74206f66206d696e747320706572207469636b65747320646f657360448201527f206e6f74206d6174636820746865207469636b65742061727261790000000000606482015260840161030b565b60028511156107c85760405162461bcd60e51b815260206004820152601b60248201527f54686520676976656e207a6f6e65206973206e6f742076616c69640000000000604482015260640161030b565b60006107d261138b565b60005b8951811015610a7d5760058a82815181106107f2576107f26115a9565b602002602001015111156108485760405162461bcd60e51b815260206004820152601360248201527f496e76616c6964207469636b6574207479706500000000000000000000000000604482015260640161030b565b600089828151811061085c5761085c6115a9565b6020026020010151116108b15760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e2030000000604482015260640161030b565b60058a82815181106108c5576108c56115a9565b60200260200101511415610907576004548982815181106108e8576108e86115a9565b60200260200101516108fa91906115d5565b61090490846115f4565b92505b60005b600560008a815260200190815260200160002060008c8481518110610931576109316115a9565b6020026020010151815260200190815260200160002080549050811015610a6a57898281518110610964576109646115a9565b6020026020010151600560008b815260200190815260200160002060008d8581518110610993576109936115a9565b6020026020010151815260200190815260200160002082815481106109ba576109ba6115a9565b9060005260206000209060020201600101546109d691906115d5565b60008a81526005602052604081208d518692908f90879081106109fb576109fb6115a9565b602002602001015181526020019081526020016000208381548110610a2257610a226115a9565b906000526020600020906002020160000154600f8110610a4457610a446115a9565b60200201818151610a5591906115f4565b90525080610a628161160c565b91505061090a565b5080610a758161160c565b9150506107d5565b5081341015610ace5760405162461bcd60e51b815260206004820152601660248201527f4e6f7420656e6f7567682045544820746f206d696e7400000000000000000000604482015260640161030b565b6000805b600f811015610b1b578281600f8110610aed57610aed6115a9565b6020020151610afb57610b09565b81610b058161160c565b9250505b80610b138161160c565b915050610ad2565b5060008111610b6c5760405162461bcd60e51b815260206004820152600f60248201527f4e6f7468696e6720746f206d696e740000000000000000000000000000000000604482015260640161030b565b60008167ffffffffffffffff811115610b8757610b876113f3565b604051908082528060200260200182016040528015610bb0578160200160208202803683370190505b50905060008267ffffffffffffffff811115610bce57610bce6113f3565b604051908082528060200260200182016040528015610bf7578160200160208202803683370190505b5090506000805b600f811015610c995760008682600f8110610c1b57610c1b6115a9565b60200201511115610c875780848381518110610c3957610c396115a9565b6020026020010181815250508581600f8110610c5757610c576115a9565b6020020151838381518110610c6e57610c6e6115a9565b602090810291909101015281610c838161160c565b9250505b80610c918161160c565b915050610bfe565b50600260009054906101000a90046001600160a01b03166001600160a01b031663869e72f0338f8f6040518463ffffffff1660e01b8152600401610cdf93929190611662565b600060405180830381600087803b158015610cf957600080fd5b505af1158015610d0d573d6000803e3d6000fd5b50506003546040517f9727756a0000000000000000000000000000000000000000000000000000000081526001600160a01b039091169250639727756a9150610d5e90339087908790600401611662565b600060405180830381600087803b158015610d7857600080fd5b505af1158015610d8c573d6000803e3d6000fd5b505050508a336001600160a01b03167f3c78e87dded738f68cc731515eca673934cf0f37ae5231b757725088d9377ba28f8f42604051610dce939291906116a0565b60405180910390a350505050505050505050505050565b6000546001600160a01b03163314610e3f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161030b565b610e496000610f98565b565b60056020528260005260406000206020528160005260406000208181548110610e7357600080fd5b6000918252602090912060029091020180546001909101549093509150839050565b6000546001600160a01b03163314610eef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161030b565b6001600160a01b038116610f6b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161030b565b6104b181610f98565b6000806000610f838585610ff5565b91509150610f9081611065565b509392505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008082516041141561102c5760208301516040840151606085015160001a61102087828585611256565b9450945050505061105e565b825160401415611056576020830151604084015161104b868383611343565b93509350505061105e565b506000905060025b9250929050565b6000816004811115611079576110796116d6565b14156110825750565b6001816004811115611096576110966116d6565b14156110e45760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161030b565b60028160048111156110f8576110f86116d6565b14156111465760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161030b565b600381600481111561115a5761115a6116d6565b14156111ce5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161030b565b60048160048111156111e2576111e26116d6565b14156104b15760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161030b565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561128d575060009050600361133a565b8460ff16601b141580156112a557508460ff16601c14155b156112b6575060009050600461133a565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561130a573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166113335760006001925092505061133a565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b0161137d87828885611256565b935093505050935093915050565b604051806101e00160405280600f906020820280368337509192915050565b6000602082840312156113bc57600080fd5b81356001600160a01b03811681146113d357600080fd5b9392505050565b6000602082840312156113ec57600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261141a57600080fd5b8135602067ffffffffffffffff80831115611437576114376113f3565b8260051b604051601f19603f8301168101818110848211171561145c5761145c6113f3565b60405293845285810183019383810192508785111561147a57600080fd5b83870191505b8482101561149957813583529183019190830190611480565b979650505050505050565b600080600080600080600060c0888a0312156114bf57600080fd5b873567ffffffffffffffff808211156114d757600080fd5b6114e38b838c01611409565b985060208a01359150808211156114f957600080fd5b6115058b838c01611409565b975060408a0135965060608a0135955060808a0135945060a08a013591508082111561153057600080fd5b818a0191508a601f83011261154457600080fd5b81358181111561155357600080fd5b8b602082850101111561156557600080fd5b60208301945080935050505092959891949750929550565b60008060006060848603121561159257600080fd5b505081359360208301359350604090920135919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156115ef576115ef6115bf565b500290565b60008219821115611607576116076115bf565b500190565b6000600019821415611620576116206115bf565b5060010190565b600081518084526020808501945080840160005b838110156116575781518752958201959082019060010161163b565b509495945050505050565b6001600160a01b03841681526060602082015260006116846060830185611627565b82810360408401526116968185611627565b9695505050505050565b6060815260006116b36060830186611627565b82810360208401526116c58186611627565b915050826040830152949350505050565b634e487b7160e01b600052602160045260246000fdfea264697066735822122061f9a8427b803aea5b1addb4e716b79013ac2a428513e07ff771fb65abed7e6464736f6c634300080c0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.