// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)pragmasolidity ^0.8.1;/**
* @dev Collection of functions related to the address type
*/libraryAddress{
/**
* @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.
* ====
*/functionisContract(address account) internalviewreturns (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].
*/functionsendValue(addresspayable 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._
*/functionfunctionCall(address target, bytesmemory data) internalreturns (bytesmemory) {
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._
*/functionfunctionCall(address target,
bytesmemory data,
stringmemory errorMessage
) internalreturns (bytesmemory) {
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._
*/functionfunctionCallWithValue(address target,
bytesmemory data,
uint256 value
) internalreturns (bytesmemory) {
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._
*/functionfunctionCallWithValue(address target,
bytesmemory data,
uint256 value,
stringmemory errorMessage
) internalreturns (bytesmemory) {
require(address(this).balance>= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytesmemory 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._
*/functionfunctionStaticCall(address target, bytesmemory data) internalviewreturns (bytesmemory) {
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._
*/functionfunctionStaticCall(address target,
bytesmemory data,
stringmemory errorMessage
) internalviewreturns (bytesmemory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytesmemory 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._
*/functionfunctionDelegateCall(address target, bytesmemory data) internalreturns (bytesmemory) {
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._
*/functionfunctionDelegateCall(address target,
bytesmemory data,
stringmemory errorMessage
) internalreturns (bytesmemory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytesmemory 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._
*/functionverifyCallResult(bool success,
bytesmemory returndata,
stringmemory errorMessage
) internalpurereturns (bytesmemory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if presentif (returndata.length>0) {
// The easiest way to bubble the revert reason is using memory via assemblyassembly {
let returndata_size :=mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
Contract Source Code
File 2 of 14: Context.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragmasolidity ^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.
*/abstractcontractContext{
function_msgSender() internalviewvirtualreturns (address) {
returnmsg.sender;
}
function_msgData() internalviewvirtualreturns (bytescalldata) {
returnmsg.data;
}
}
Contract Source Code
File 3 of 14: ERC1155.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)pragmasolidity ^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._
*/contractERC1155isContext, ERC165, IERC1155, IERC1155MetadataURI{
usingAddressforaddress;
// Mapping from token ID to account balancesmapping(uint256=>mapping(address=>uint256)) private _balances;
// Mapping from account to operator approvalsmapping(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}.jsonstringprivate _uri;
/**
* @dev See {_setURI}.
*/constructor(stringmemory uri_) {
_setURI(uri_);
}
/**
* @dev See {IERC165-supportsInterface}.
*/functionsupportsInterface(bytes4 interfaceId) publicviewvirtualoverride(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.
*/functionuri(uint256) publicviewvirtualoverridereturns (stringmemory) {
return _uri;
}
/**
* @dev See {IERC1155-balanceOf}.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/functionbalanceOf(address account, uint256 id) publicviewvirtualoverridereturns (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.
*/functionbalanceOfBatch(address[] memory accounts, uint256[] memory ids)
publicviewvirtualoverridereturns (uint256[] memory)
{
require(accounts.length== ids.length, "ERC1155: accounts and ids length mismatch");
uint256[] memory batchBalances =newuint256[](accounts.length);
for (uint256 i =0; i < accounts.length; ++i) {
batchBalances[i] = balanceOf(accounts[i], ids[i]);
}
return batchBalances;
}
/**
* @dev See {IERC1155-setApprovalForAll}.
*/functionsetApprovalForAll(address operator, bool approved) publicvirtualoverride{
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC1155-isApprovedForAll}.
*/functionisApprovedForAll(address account, address operator) publicviewvirtualoverridereturns (bool) {
return _operatorApprovals[account][operator];
}
/**
* @dev See {IERC1155-safeTransferFrom}.
*/functionsafeTransferFrom(addressfrom,
address to,
uint256 id,
uint256 amount,
bytesmemory data
) publicvirtualoverride{
require(
from== _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: caller is not owner nor approved"
);
_safeTransferFrom(from, to, id, amount, data);
}
/**
* @dev See {IERC1155-safeBatchTransferFrom}.
*/functionsafeBatchTransferFrom(addressfrom,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytesmemory data
) publicvirtualoverride{
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(addressfrom,
address to,
uint256 id,
uint256 amount,
bytesmemory data
) internalvirtual{
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(addressfrom,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytesmemory data
) internalvirtual{
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(stringmemory newuri) internalvirtual{
_uri = newuri;
}
/**
* @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/function_mint(address to,
uint256 id,
uint256 amount,
bytesmemory data
) internalvirtual{
require(to !=address(0), "ERC1155: mint to the zero address");
address operator = _msgSender();
_beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);
_balances[id][to] += amount;
emit TransferSingle(operator, address(0), to, id, amount);
_doSafeTransferAcceptanceCheck(operator, address(0), to, 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,
bytesmemory data
) internalvirtual{
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 `from`
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `from` must have at least `amount` tokens of token type `id`.
*/function_burn(addressfrom,
uint256 id,
uint256 amount
) internalvirtual{
require(from!=address(0), "ERC1155: burn from the zero address");
address operator = _msgSender();
_beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");
uint256 fromBalance = _balances[id][from];
require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
unchecked {
_balances[id][from] = fromBalance - amount;
}
emit TransferSingle(operator, from, 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(addressfrom,
uint256[] memory ids,
uint256[] memory amounts
) internalvirtual{
require(from!=address(0), "ERC1155: burn from the zero address");
require(ids.length== amounts.length, "ERC1155: ids and amounts length mismatch");
address operator = _msgSender();
_beforeTokenTransfer(operator, from, address(0), ids, amounts, "");
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: burn amount exceeds balance");
unchecked {
_balances[id][from] = fromBalance - amount;
}
}
emit TransferBatch(operator, from, address(0), ids, amounts);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/function_setApprovalForAll(address owner,
address operator,
bool approved
) internalvirtual{
require(owner != operator, "ERC1155: setting approval status for self");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @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,
addressfrom,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytesmemory data
) internalvirtual{}
function_doSafeTransferAcceptanceCheck(address operator,
addressfrom,
address to,
uint256 id,
uint256 amount,
bytesmemory 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");
}
} catchError(stringmemory reason) {
revert(reason);
} catch {
revert("ERC1155: transfer to non ERC1155Receiver implementer");
}
}
}
function_doSafeBatchTransferAcceptanceCheck(address operator,
addressfrom,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytesmemory 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");
}
} catchError(stringmemory reason) {
revert(reason);
} catch {
revert("ERC1155: transfer to non ERC1155Receiver implementer");
}
}
}
function_asSingletonArray(uint256 element) privatepurereturns (uint256[] memory) {
uint256[] memory array =newuint256[](1);
array[0] = element;
return array;
}
}
Contract Source Code
File 4 of 14: ERC165.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)pragmasolidity ^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.
*/abstractcontractERC165isIERC165{
/**
* @dev See {IERC165-supportsInterface}.
*/functionsupportsInterface(bytes4 interfaceId) publicviewvirtualoverridereturns (bool) {
return interfaceId ==type(IERC165).interfaceId;
}
}
Contract Source Code
File 5 of 14: HelmsForLoot.sol
// SPDX-License-Identifier: CC0-1.0/// @title The Helms (for Loot) ERC-1155 token// _ _ _ ____ _ _ __// | | | | | | / / _| | | | |\ \// | |__| | ___| |_ __ ___ ___ | | |_ ___ _ __ | | ___ ___ | |_| |// | __ |/ _ \ | '_ ` _ \/ __| | | _/ _ \| '__| | | / _ \ / _ \| __| |// | | | | __/ | | | | | \__ \ | | || (_) | | | |___| (_) | (_) | |_| |// |_| |_|\___|_|_| |_| |_|___/ | |_| \___/|_| |______\___/ \___/ \__| |// \_\ /_//* Helms (for Loot) is a 3D visualisation of the Helms of Loot */import"@openzeppelin/contracts/access/Ownable.sol";
import"@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import"contracts/LootInterfaces.sol";
import"contracts/HelmsMetadata.sol";
pragmasolidity ^0.8.0;interfaceIERC20{
functionbalanceOf(address account) externalviewreturns (uint256);
functiontransfer(address recipient, uint256 amount)
externalreturns (bool);
}
interfaceIERC2981{
functionroyaltyInfo(uint256 _tokenId, uint256 _salePrice)
externalviewreturns (address receiver, uint256 royaltyAmount);
}
interfaceProxyRegistry{
functionproxies(address) externalviewreturns (address);
}
contractHelmsForLootisERC1155, IERC2981, Ownable{
// Code inspired by Rings (for Loot):// https://github.com/w1nt3r-eth/rings-for-loot/blob/main/contracts/RingsForLoot.solstringpublic PROVENANCE ="";
enumSaleState {
Paused,
Phase1, // Common helms available
Phase2, // Epic and legendary helms available
Phase3 // Mythic helms available
}
SaleState public state = SaleState.Paused;
boolpublic lootOnly =true;
// The Lootmart contract is used to calculate the token ID,// guaranteeing the correct supply for each helm
ILoot private ogLootContract;
ILmart private lmartContract;
IRiftData private riftDataContract;
IHelmsMetadata public metadataContract;
// Loot-compatible contracts that we support. Users can claim a matching// helm if they own a token in this contract and `getHead` matches helm's namemapping(ILoot =>bool) private lootContracts;
// We only allow claiming one matching helm per bag. This data structure// holds the contract/bag ids that were already claimedmapping(ILoot =>mapping(uint256=>bool)) public lootClaimed;
// This data structure keeps track of the Loot bags that were minted to// ensure the correct max supply of each helmmapping(uint256=>bool) public lootMinted;
stringpublic name ="Helms for Loot";
stringpublic symbol ="H4L";
// Flag to enable/disable Wyvern Proxy approval for gas-free Opensea listingsboolprivate wyvernProxyWhitelist =true;
// Common and Epic helms can be identified by calculating their greatness, but// to determine whether a helm is legendary or mythic, we use a list of ids// Legendary helm ids are stored as a tightly packed arrays of uint16bytes[5] private under19legendaryIds;
bytes[5] private over19legendaryIds;
// Pricinguint256public lootOwnerPriceCommon =0.02ether;
uint256public publicPriceCommon =0.05ether;
uint256public lootOwnerPriceEpic =0.04ether;
uint256public publicPriceEpic =0.07ether;
uint256public lootOwnerPriceLegendary =0.06ether;
uint256public publicPriceLegendary =0.09ether;
uint256public lootOwnerPriceMythic =0.08ether;
uint256public publicPriceMythic =0.11ether;
eventMinted(uint256 lootId);
eventClaimed(uint256 lootId);
constructor(
ILoot[] memory lootsList,
ILmart lmart,
IRiftData riftData
) ERC1155("") {
for (uint256 i =0; i < lootsList.length; i++) {
if (i ==0) {
ogLootContract = lootsList[i];
}
lootContracts[lootsList[i]] =true;
}
lmartContract = lmart;
riftDataContract = riftData;
// List of legendary helm ids with less than 19 greatness// and over 19 greatness to help with rarity determination
under19legendaryIds[1] =hex"01131028039119120f7b14d2";
under19legendaryIds[2] =hex"0200109b0f441b04";
under19legendaryIds[4] =hex"01400eea06fa1c29088616e60f7c12b5";
over19legendaryIds[1] =hex"00fd148101ee0c02030a0809037013d91d501d88";
over19legendaryIds[2] =hex"064d0a68094114340b611e45";
over19legendaryIds[4] =hex"01a81d870b141087";
}
/**
* @dev Accepts a Loot bag ID and returns the rarity level of the helm contained within that bag.
* Rarity levels (based on the number of times each helm appears in the set of 8000 Loot bags):
* 1 - Common Helm (>19)
* 2 - Epic Helm (<19)
* 3 - Legendary Helm (2)
* 4 - Mythic Helm (1)
*/functionhelmRarity(uint256 lootId) publicviewreturns (uint256) {
// We use a combination of the greatness calculation from the loot contract// and precomputed lists of legendary and mythic helm IDs// to determine the helm rarity.uint256 rand =uint256(
keccak256(abi.encodePacked("HEAD", Strings.toString(lootId)))
);
uint256 greatness = rand %21;
uint256 kind = rand %15;
// Other head armor not supported by this contractrequire(kind <6, "HelmsForLoot: no helm in bag");
if (greatness <=14) {
return (1); // Comon Helm
} elseif (greatness <19) {
// Check if it is in the legendary listif (findHelmIndex(under19legendaryIds[kind], lootId)) {
return (3); // Legendary Helm
}
// Else two possible mythic helms with less than 19 greatness:elseif (lootId ==2304|| lootId ==4557) {
return (4); // Mythic Helm
} else {
return (2); // Epic Helm
}
} else {
if (findHelmIndex(over19legendaryIds[kind], lootId)) {
return (3); // Legendary helm
} else {
return (4); // Mythic Helm
}
}
}
/**
* @dev Accepts an array of Loot bag IDs and mints the corresponding Helm tokens.
*/functionpurchasePublic(uint256[] memory lootIds) publicpayable{
require(!lootOnly, "HelmsForLoot: Loot-only minting period is active");
require(lootIds.length>0, "HelmsForLoot: buy at least one");
require(lootIds.length<=26, "HelmsForLoot: too many at once");
uint256[] memory tokenIds =newuint256[](lootIds.length);
uint256 price =0;
for (uint256 i =0; i < lootIds.length; i++) {
require(!lootMinted[lootIds[i]], "HelmsForLoot: already claimed");
// Reserve Loot IDs 7778 to 8000 for ownerClaimrequire(
lootIds[i] >0&& lootIds[i] <7778,
"HelmsForLoot: invalid Loot ID"
);
uint256 rarity = helmRarity(lootIds[i]);
if (rarity ==1) {
require(
state == SaleState.Phase1 ||
state == SaleState.Phase2 ||
state == SaleState.Phase3,
"HelmsForLoot: sale not active"
);
price += publicPriceCommon;
} elseif (rarity ==2) {
require(
state == SaleState.Phase2 || state == SaleState.Phase3,
"HelmsForLoot: sale not active"
);
price += publicPriceEpic;
} elseif (rarity ==3) {
require(
state == SaleState.Phase3,
"HelmsForLoot: sale not active"
);
price += publicPriceLegendary;
} else {
require(
state == SaleState.Phase3,
"HelmsForLoot: sale not active"
);
price += publicPriceMythic;
}
lootMinted[lootIds[i]] =true;
tokenIds[i] = lmartContract.headId(lootIds[i]);
}
require(msg.value== price, "HelmsForLoot: wrong price");
// We're using a loop with _mint rather than _mintBatch// as currently some centralised tools like Opensea// have issues understanding the `TransferBatch` eventfor (uint256 i =0; i < tokenIds.length; i++) {
_mint(msg.sender, tokenIds[i], 1, "");
emit Minted(lootIds[i]);
}
}
/**
* @dev Allows the owner of a Loot, More Loot, or Genesis Adventurer
* NFT to claim the Helm from a Loot bag that matches the Helm in
* their bag. The address of the contract (Loot, More Loot, or GA)
* needs to be provided, together with claimIds array containing
* the IDs of the bags to be used for the claim, together with a
* corresponding lootIds array that contains the IDs of the Loot Bags
* with matching helms to be claimed. If claimRiftXP is set to true,
* each bag in the claimIds array will gain 200 XP on The Rift.
*/functionpurchaseMatching(
ILoot claimLoot,
uint256[] memory claimIds,
uint256[] memory lootIds,
bool claimRiftXP
) publicpayable{
require(
state == SaleState.Phase1 ||
state == SaleState.Phase2 ||
state == SaleState.Phase3,
"HelmsForLoot: sale not active"
);
require(lootContracts[claimLoot], "HelmsForLoot: not compatible");
if (lootOnly ==true) {
require(
claimLoot == ogLootContract,
"HelmsForLoot: loot-only minting period is active."
);
}
require(lootIds.length>0, "HelmsForLoot: buy at least one");
require(lootIds.length<=26, "HelmsForLoot: too many at once");
uint256[] memory tokenIds =newuint256[](lootIds.length);
uint256 price =0;
for (uint256 i =0; i < lootIds.length; i++) {
// Reserve Loot IDs 7778 to 8000 for ownerClaimrequire(
(lootIds[i] >0&& lootIds[i] <7778),
"HelmsForLoot: invalid Loot ID"
);
require(
claimLoot.ownerOf(claimIds[i]) ==msg.sender,
"HelmsForLoot: not owner"
);
require(
keccak256(abi.encodePacked(claimLoot.getHead(claimIds[i]))) ==keccak256(
abi.encodePacked(ogLootContract.getHead(lootIds[i]))
),
"HelmsForLoot: wrong helm"
);
// Both the original loot bag and matching bag// (loot/mloot/genesis adventurer) to be unclaimedrequire(
!lootClaimed[claimLoot][claimIds[i]],
"HelmsForLoot: bag already used for claim"
);
require(
!lootMinted[lootIds[i]],
"HelmsForLoot: loot bag already minted"
);
uint256 rarity = helmRarity(lootIds[i]);
if (rarity ==1) {
require(
state == SaleState.Phase1 ||
state == SaleState.Phase2 ||
state == SaleState.Phase3,
"HelmsForLoot: sale not active"
);
price += lootOwnerPriceCommon;
} elseif (rarity ==2) {
require(
state == SaleState.Phase2 || state == SaleState.Phase3,
"HelmsForLoot: sale not active"
);
price += lootOwnerPriceEpic;
} elseif (rarity ==3) {
require(
state == SaleState.Phase3,
"HelmsForLoot: sale not active"
);
price += lootOwnerPriceLegendary;
} else {
require(
state == SaleState.Phase3,
"HelmsForLoot: sale not active"
);
price += lootOwnerPriceMythic;
}
lootMinted[lootIds[i]] =true;
lootClaimed[claimLoot][claimIds[i]] =true;
tokenIds[i] = lmartContract.headId(lootIds[i]);
}
require(msg.value== price, "HelmsForLoot: wrong price");
// We're using a loop with _mint rather than _mintBatch// as currently some centralised tools like Opensea// have issues understanding the `TransferBatch` eventfor (uint256 i =0; i < tokenIds.length; i++) {
uint256 riftId;
// Add XP via The Riftif (claimRiftXP ==true) {
// Adjust ID for gLoot:if (claimLoot != ogLootContract && claimIds[i] <8001) {
riftId = claimIds[i] +9997460;
} else {
riftId = claimIds[i];
}
riftDataContract.addXP(200, riftId);
}
_mint(msg.sender, tokenIds[i], 1, "");
emit Claimed(lootIds[i]);
}
}
functionuri(uint256 tokenId) publicviewoverridereturns (stringmemory) {
require(
address(metadataContract) !=address(0),
"HelmsForLoot: no metadata address"
);
return metadataContract.uri(tokenId);
}
/**
* @dev Run a batch query to check if a set of loot, mloot or gloot IDs have been used for a claim.
*/functionlootClaimedBatched(ILoot loot, uint256[] calldata ids)
publicviewreturns (bool[] memory claimed)
{
claimed =newbool[](ids.length);
for (uint256 i =0; i < ids.length; i++) {
claimed[i] = lootClaimed[loot][ids[i]];
}
}
/**
* @dev Run a batch query to check if a set of loot bags have already been claimed.
*/functionlootMintedBatched(uint256[] calldata ids)
publicviewreturns (bool[] memory minted)
{
minted =newbool[](ids.length);
for (uint256 i =0; i < ids.length; i++) {
minted[i] = lootMinted[ids[i]];
}
}
/**
* @dev Utlity function to check a tightly packed array of uint16 for a given id.
*/functionfindHelmIndex(bytesstorage data, uint256 helmId)
internalviewreturns (bool found)
{
for (uint256 i =0; i < data.length/2; i++) {
if (
uint8(data[i *2]) == ((helmId >>8) &0xFF) &&uint8(data[i *2+1]) == (helmId &0xFF)
) {
returntrue;
}
}
returnfalse;
}
// InterfacesfunctionsupportsInterface(bytes4 interfaceId)
publicviewvirtualoverridereturns (bool)
{
return
interfaceId ==type(IERC2981).interfaceId||super.supportsInterface(interfaceId);
}
functionroyaltyInfo(uint256, uint256 salePrice)
externalviewoverridereturns (address receiver, uint256 royaltyAmount)
{
receiver = owner();
royaltyAmount = (salePrice *5) /100;
}
functionisApprovedForAll(address owner, address operator)
publicviewoverridereturns (bool)
{
// Allow easier listing for sale on OpenSea. Based on// https://github.com/ProjectOpenSea/opensea-creatures/blob/f7257a043e82fae8251eec2bdde37a44fee474c4/migrations/2_deploy_contracts.js#L29if (wyvernProxyWhitelist ==true) {
if (block.chainid==4) {
if (
ProxyRegistry(0xF57B2c51dED3A29e6891aba85459d600256Cf317)
.proxies(owner) == operator
) {
returntrue;
}
} elseif (block.chainid==1) {
if (
ProxyRegistry(0xa5409ec958C83C3f309868babACA7c86DCB077c1)
.proxies(owner) == operator
) {
returntrue;
}
}
}
return ERC1155.isApprovedForAll(owner, operator);
}
// AdminfunctionsetProvenance(stringcalldata prov) publiconlyOwner{
PROVENANCE = prov;
}
functionsetState(SaleState newState, bool newlootOnly) publiconlyOwner{
state = newState;
lootOnly = newlootOnly;
}
functionsetMetadataContract(IHelmsMetadata addr) publiconlyOwner{
metadataContract = addr;
}
functionsetWyvernProxyWhitelist(bool enabled) publiconlyOwner{
wyvernProxyWhitelist = enabled;
}
/**
* @dev Allows the owner to mint a set of helms for promotional purposes and to reward contributors.
* Loot IDs 7778->8000
*/functionownerClaim(uint256[] memory lootIds, address to)
publicpayableonlyOwner{
// We're using a loop with _mint rather than _mintBatch// as currently some centralised tools like Opensea// have issues understanding the `TransferBatch` eventfor (uint256 i =0; i < lootIds.length; i++) {
require(lootIds[i] >7777&& lootIds[i] <8001, "Token ID invalid");
lootMinted[lootIds[i]] =true;
uint256 tokenId = lmartContract.headId(lootIds[i]);
_mint(to, tokenId, 1, "");
emit Minted(lootIds[i]);
}
}
/**
* Given an erc721 bag, returns the erc1155 token ids of the helm in the bag
* We use LootMart's bijective encoding function.
*/functionid(uint256 lootId) publicviewreturns (uint256 headId) {
return lmartContract.headId(lootId);
}
functionsetPricesCommon(uint256 newlootOwnerPrice, uint256 newPublicPrice)
publiconlyOwner{
lootOwnerPriceCommon = newlootOwnerPrice;
publicPriceCommon = newPublicPrice;
}
functionsetPricesEpic(uint256 newlootOwnerPrice, uint256 newPublicPrice)
publiconlyOwner{
lootOwnerPriceEpic = newlootOwnerPrice;
publicPriceEpic = newPublicPrice;
}
functionsetPricesLegendary(uint256 newlootOwnerPrice,
uint256 newPublicPrice
) publiconlyOwner{
lootOwnerPriceLegendary = newlootOwnerPrice;
publicPriceLegendary = newPublicPrice;
}
functionsetPricesMythic(uint256 newlootOwnerPrice, uint256 newPublicPrice)
publiconlyOwner{
lootOwnerPriceMythic = newlootOwnerPrice;
publicPriceMythic = newPublicPrice;
}
functionwithdrawAll() publicpayableonlyOwner{
require(payable(msg.sender).send(address(this).balance));
}
functionwithdrawAllERC20(IERC20 erc20Token) publiconlyOwner{
require(
erc20Token.transfer(msg.sender, erc20Token.balanceOf(address(this)))
);
}
}
Contract Source Code
File 6 of 14: HelmsMetadata.sol
// SPDX-License-Identifier: CC0-1.0/// @title The Helms (for Loot) Metadataimport"@openzeppelin/contracts/access/Ownable.sol";
import"base64-sol/base64.sol";
import"contracts/LootInterfaces.sol";
import"@openzeppelin/contracts/utils/Strings.sol";
pragmasolidity ^0.8.0;interfaceIHelmsMetadata{
functionuri(uint256 tokenId) externalviewreturns (stringmemory);
}
contractHelmsMetadataisOwnable, IHelmsMetadata{
stringpublic description;
stringpublic baseUri;
stringprivate imageUriSuffix =".gif";
stringprivate animationUriSuffix =".glb";
ILmart private lmartContract;
constructor(ILmart lmart, stringmemory IpfsUri) Ownable() {
description ="Helms (for Loot) is the first 3D interpretation of the helms of Loot. Adventurers, builders, and artists are encouraged to reference Helms (for Loot) to further expand on the imagination of Loot.";
lmartContract = lmart;
baseUri = IpfsUri;
}
functionsetDescription(stringmemory desc) publiconlyOwner{
description = desc;
}
functionsetbaseUri(stringcalldata newbaseUri) publiconlyOwner{
baseUri = newbaseUri;
}
functionsetUriSuffix(stringcalldata newImageUriSuffix,
stringcalldata newAnimationUriSuffix
) publiconlyOwner{
imageUriSuffix = newImageUriSuffix;
animationUriSuffix = newAnimationUriSuffix;
}
functionuri(uint256 tokenId) publicviewoverridereturns (stringmemory) {
stringmemory name = lmartContract.tokenName(tokenId);
bytesmemory tokenUri =abi.encodePacked(
baseUri,
"/",
Strings.toString(tokenId)
);
stringmemory json = Base64.encode(
bytes(
string(
abi.encodePacked(
'{ "name": "',
name,
'", ',
'"description": ',
'"Helms (for Loot) is the first 3D interpretation of the helms of Loot. Adventurers, builders, and artists are encouraged to reference Helms (for Loot) to further expand on the imagination of Loot.", ',
'"image": ',
'"',
tokenUri,
imageUriSuffix,
'", ''"animation_url": ',
'"',
tokenUri,
animationUriSuffix,
'"'"}"
)
)
)
);
returnstring(abi.encodePacked("data:application/json;base64,", json));
}
}
Contract Source Code
File 7 of 14: IERC1155.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)pragmasolidity ^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._
*/interfaceIERC1155isIERC165{
/**
* @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
*/eventTransferSingle(addressindexed operator, addressindexedfrom, addressindexed to, uint256 id, uint256 value);
/**
* @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
* transfers.
*/eventTransferBatch(addressindexed operator,
addressindexedfrom,
addressindexed to,
uint256[] ids,
uint256[] values
);
/**
* @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
* `approved`.
*/eventApprovalForAll(addressindexed account, addressindexed 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}.
*/eventURI(string value, uint256indexed id);
/**
* @dev Returns the amount of tokens of token type `id` owned by `account`.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/functionbalanceOf(address account, uint256 id) externalviewreturns (uint256);
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
*
* Requirements:
*
* - `accounts` and `ids` must have the same length.
*/functionbalanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
externalviewreturns (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.
*/functionsetApprovalForAll(address operator, bool approved) external;
/**
* @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
*
* See {setApprovalForAll}.
*/functionisApprovedForAll(address account, address operator) externalviewreturns (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.
*/functionsafeTransferFrom(addressfrom,
address to,
uint256 id,
uint256 amount,
bytescalldata 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.
*/functionsafeBatchTransferFrom(addressfrom,
address to,
uint256[] calldata ids,
uint256[] calldata amounts,
bytescalldata data
) external;
}
Contract Source Code
File 8 of 14: IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)pragmasolidity ^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._
*/interfaceIERC1155MetadataURIisIERC1155{
/**
* @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.
*/functionuri(uint256 id) externalviewreturns (stringmemory);
}
Contract Source Code
File 9 of 14: IERC1155Receiver.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)pragmasolidity ^0.8.0;import"../../utils/introspection/IERC165.sol";
/**
* @dev _Available since v3.1._
*/interfaceIERC1155ReceiverisIERC165{
/**
* @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.
*
* NOTE: 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
*/functiononERC1155Received(address operator,
addressfrom,
uint256 id,
uint256 value,
bytescalldata data
) externalreturns (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.
*
* NOTE: 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
*/functiononERC1155BatchReceived(address operator,
addressfrom,
uint256[] calldata ids,
uint256[] calldata values,
bytescalldata data
) externalreturns (bytes4);
}
Contract Source Code
File 10 of 14: IERC165.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)pragmasolidity ^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}.
*/interfaceIERC165{
/**
* @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.
*/functionsupportsInterface(bytes4 interfaceId) externalviewreturns (bool);
}
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)pragmasolidity ^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.
*/abstractcontractOwnableisContext{
addressprivate _owner;
eventOwnershipTransferred(addressindexed previousOwner, addressindexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/functionowner() publicviewvirtualreturns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/modifieronlyOwner() {
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.
*/functionrenounceOwnership() publicvirtualonlyOwner{
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/functiontransferOwnership(address newOwner) publicvirtualonlyOwner{
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) internalvirtual{
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
Contract Source Code
File 13 of 14: Strings.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)pragmasolidity ^0.8.0;/**
* @dev String operations.
*/libraryStrings{
bytes16privateconstant _HEX_SYMBOLS ="0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/functiontoString(uint256 value) internalpurereturns (stringmemory) {
// Inspired by OraclizeAPI's implementation - MIT licence// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.solif (value ==0) {
return"0";
}
uint256 temp = value;
uint256 digits;
while (temp !=0) {
digits++;
temp /=10;
}
bytesmemory buffer =newbytes(digits);
while (value !=0) {
digits -=1;
buffer[digits] =bytes1(uint8(48+uint256(value %10)));
value /=10;
}
returnstring(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/functiontoHexString(uint256 value) internalpurereturns (stringmemory) {
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.
*/functiontoHexString(uint256 value, uint256 length) internalpurereturns (stringmemory) {
bytesmemory buffer =newbytes(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");
returnstring(buffer);
}
}
Contract Source Code
File 14 of 14: base64.sol
// SPDX-License-Identifier: MITpragmasolidity >=0.6.0;/// @title Base64/// @author Brecht Devos - <brecht@loopring.org>/// @notice Provides functions for encoding/decoding base64libraryBase64{
stringinternalconstant TABLE_ENCODE ='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
bytesinternalconstant TABLE_DECODE =hex"0000000000000000000000000000000000000000000000000000000000000000"hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000"hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000"hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000";
functionencode(bytesmemory data) internalpurereturns (stringmemory) {
if (data.length==0) return'';
// load the table into memorystringmemory table = TABLE_ENCODE;
// multiply by 4/3 rounded upuint256 encodedLen =4* ((data.length+2) /3);
// add some extra buffer at the end required for the writingstringmemory result =newstring(encodedLen +32);
assembly {
// set the actual output lengthmstore(result, encodedLen)
// prepare the lookup tablelet tablePtr :=add(table, 1)
// input ptrlet dataPtr := data
let endPtr :=add(dataPtr, mload(data))
// result ptr, jump over lengthlet resultPtr :=add(result, 32)
// run over the input, 3 bytes at a timefor {} lt(dataPtr, endPtr) {}
{
// read 3 bytes
dataPtr :=add(dataPtr, 3)
let input :=mload(dataPtr)
// write 4 charactersmstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
resultPtr :=add(resultPtr, 1)
mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
resultPtr :=add(resultPtr, 1)
mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F))))
resultPtr :=add(resultPtr, 1)
mstore8(resultPtr, mload(add(tablePtr, and( input, 0x3F))))
resultPtr :=add(resultPtr, 1)
}
// padding with '='switchmod(mload(data), 3)
case1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
case2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
}
return result;
}
functiondecode(stringmemory _data) internalpurereturns (bytesmemory) {
bytesmemory data =bytes(_data);
if (data.length==0) returnnewbytes(0);
require(data.length%4==0, "invalid base64 decoder input");
// load the table into memorybytesmemory table = TABLE_DECODE;
// every 4 characters represent 3 bytesuint256 decodedLen = (data.length/4) *3;
// add some extra buffer at the end required for the writingbytesmemory result =newbytes(decodedLen +32);
assembly {
// padding with '='let lastBytes :=mload(add(data, mload(data)))
ifeq(and(lastBytes, 0xFF), 0x3d) {
decodedLen :=sub(decodedLen, 1)
ifeq(and(lastBytes, 0xFFFF), 0x3d3d) {
decodedLen :=sub(decodedLen, 1)
}
}
// set the actual output lengthmstore(result, decodedLen)
// prepare the lookup tablelet tablePtr :=add(table, 1)
// input ptrlet dataPtr := data
let endPtr :=add(dataPtr, mload(data))
// result ptr, jump over lengthlet resultPtr :=add(result, 32)
// run over the input, 4 characters at a timefor {} lt(dataPtr, endPtr) {}
{
// read 4 characters
dataPtr :=add(dataPtr, 4)
let input :=mload(dataPtr)
// write 3 byteslet output :=add(
add(
shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)),
shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))),
add(
shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)),
and(mload(add(tablePtr, and( input , 0xFF))), 0xFF)
)
)
mstore(resultPtr, shl(232, output))
resultPtr :=add(resultPtr, 3)
}
}
return result;
}
}