// 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 19: 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 19: 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 4 of 19: ERC721.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)pragmasolidity ^0.8.0;import"./IERC721.sol";
import"./IERC721Receiver.sol";
import"./extensions/IERC721Metadata.sol";
import"../../utils/Address.sol";
import"../../utils/Context.sol";
import"../../utils/Strings.sol";
import"../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/contractERC721isContext, ERC165, IERC721, IERC721Metadata{
usingAddressforaddress;
usingStringsforuint256;
// Token namestringprivate _name;
// Token symbolstringprivate _symbol;
// Mapping from token ID to owner addressmapping(uint256=>address) private _owners;
// Mapping owner address to token countmapping(address=>uint256) private _balances;
// Mapping from token ID to approved addressmapping(uint256=>address) private _tokenApprovals;
// Mapping from owner to operator approvalsmapping(address=>mapping(address=>bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/constructor(stringmemory name_, stringmemory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/functionsupportsInterface(bytes4 interfaceId) publicviewvirtualoverride(ERC165, IERC165) returns (bool) {
return
interfaceId ==type(IERC721).interfaceId||
interfaceId ==type(IERC721Metadata).interfaceId||super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/functionbalanceOf(address owner) publicviewvirtualoverridereturns (uint256) {
require(owner !=address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/functionownerOf(uint256 tokenId) publicviewvirtualoverridereturns (address) {
address owner = _owners[tokenId];
require(owner !=address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/functionname() publicviewvirtualoverridereturns (stringmemory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/functionsymbol() publicviewvirtualoverridereturns (stringmemory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/functiontokenURI(uint256 tokenId) publicviewvirtualoverridereturns (stringmemory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
stringmemory baseURI = _baseURI();
returnbytes(baseURI).length>0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/function_baseURI() internalviewvirtualreturns (stringmemory) {
return"";
}
/**
* @dev See {IERC721-approve}.
*/functionapprove(address to, uint256 tokenId) publicvirtualoverride{
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/functiongetApproved(uint256 tokenId) publicviewvirtualoverridereturns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/functionsetApprovalForAll(address operator, bool approved) publicvirtualoverride{
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/functionisApprovedForAll(address owner, address operator) publicviewvirtualoverridereturns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/functiontransferFrom(addressfrom,
address to,
uint256 tokenId
) publicvirtualoverride{
//solhint-disable-next-line max-line-lengthrequire(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/functionsafeTransferFrom(addressfrom,
address to,
uint256 tokenId
) publicvirtualoverride{
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/functionsafeTransferFrom(addressfrom,
address to,
uint256 tokenId,
bytesmemory _data
) publicvirtualoverride{
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/function_safeTransfer(addressfrom,
address to,
uint256 tokenId,
bytesmemory _data
) internalvirtual{
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/function_exists(uint256 tokenId) internalviewvirtualreturns (bool) {
return _owners[tokenId] !=address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/function_isApprovedOrOwner(address spender, uint256 tokenId) internalviewvirtualreturns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/function_safeMint(address to, uint256 tokenId) internalvirtual{
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/function_safeMint(address to,
uint256 tokenId,
bytesmemory _data
) internalvirtual{
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/function_mint(address to, uint256 tokenId) internalvirtual{
require(to !=address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] +=1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/function_burn(uint256 tokenId) internalvirtual{
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -=1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/function_transfer(addressfrom,
address to,
uint256 tokenId
) internalvirtual{
require(ERC721.ownerOf(tokenId) ==from, "ERC721: transfer from incorrect owner");
require(to !=address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -=1;
_balances[to] +=1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/function_approve(address to, uint256 tokenId) internalvirtual{
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @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, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/function_checkOnERC721Received(addressfrom,
address to,
uint256 tokenId,
bytesmemory _data
) privatereturns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytesmemory reason) {
if (reason.length==0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
returntrue;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/function_beforeTokenTransfer(addressfrom,
address to,
uint256 tokenId
) internalvirtual{}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/function_afterTokenTransfer(addressfrom,
address to,
uint256 tokenId
) internalvirtual{}
}
Contract Source Code
File 5 of 19: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)pragmasolidity ^0.8.0;import"../ERC721.sol";
import"./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/abstractcontractERC721EnumerableisERC721, IERC721Enumerable{
// Mapping from owner to list of owned token IDsmapping(address=>mapping(uint256=>uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens listmapping(uint256=>uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumerationuint256[] private _allTokens;
// Mapping from token id to position in the allTokens arraymapping(uint256=>uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/functionsupportsInterface(bytes4 interfaceId) publicviewvirtualoverride(IERC165, ERC721) returns (bool) {
return interfaceId ==type(IERC721Enumerable).interfaceId||super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/functiontokenOfOwnerByIndex(address owner, uint256 index) publicviewvirtualoverridereturns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/functiontotalSupply() publicviewvirtualoverridereturns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/functiontokenByIndex(uint256 index) publicviewvirtualoverridereturns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/function_beforeTokenTransfer(addressfrom,
address to,
uint256 tokenId
) internalvirtualoverride{
super._beforeTokenTransfer(from, to, tokenId);
if (from==address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} elseif (from!= to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to ==address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} elseif (to !=from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/function_addTokenToOwnerEnumeration(address to, uint256 tokenId) private{
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/function_addTokenToAllTokensEnumeration(uint256 tokenId) private{
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/function_removeTokenFromOwnerEnumeration(addressfrom, uint256 tokenId) private{
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and// then delete the last slot (swap and pop).uint256 lastTokenIndex = ERC721.balanceOf(from) -1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessaryif (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the arraydelete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/function_removeTokenFromAllTokensEnumeration(uint256 tokenId) private{
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and// then delete the last slot (swap and pop).uint256 lastTokenIndex = _allTokens.length-1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding// an 'if' statement (like in _removeTokenFromOwnerEnumeration)uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index// This also deletes the contents at the last position of the arraydelete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
// 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);
}
Contract Source Code
File 8 of 19: IERC20.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)pragmasolidity ^0.8.0;/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/interfaceIERC20{
/**
* @dev Returns the amount of tokens in existence.
*/functiontotalSupply() externalviewreturns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/functionbalanceOf(address account) externalviewreturns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/functiontransfer(address to, uint256 amount) externalreturns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/functionallowance(address owner, address spender) externalviewreturns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/functionapprove(address spender, uint256 amount) externalreturns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/functiontransferFrom(addressfrom,
address to,
uint256 amount
) externalreturns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/eventTransfer(addressindexedfrom, addressindexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/eventApproval(addressindexed owner, addressindexed spender, uint256 value);
}
Contract Source Code
File 9 of 19: IERC721.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)pragmasolidity ^0.8.0;import"../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/interfaceIERC721isIERC165{
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/eventTransfer(addressindexedfrom, addressindexed to, uint256indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/eventApproval(addressindexed owner, addressindexed approved, uint256indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/eventApprovalForAll(addressindexed owner, addressindexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/functionbalanceOf(address owner) externalviewreturns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/functionownerOf(uint256 tokenId) externalviewreturns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/functionsafeTransferFrom(addressfrom,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/functiontransferFrom(addressfrom,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/functionapprove(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/functiongetApproved(uint256 tokenId) externalviewreturns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/functionsetApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/functionisApprovedForAll(address owner, address operator) externalviewreturns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/functionsafeTransferFrom(addressfrom,
address to,
uint256 tokenId,
bytescalldata data
) external;
}
Contract Source Code
File 10 of 19: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)pragmasolidity ^0.8.0;import"../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/interfaceIERC721EnumerableisIERC721{
/**
* @dev Returns the total amount of tokens stored by the contract.
*/functiontotalSupply() externalviewreturns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/functiontokenOfOwnerByIndex(address owner, uint256 index) externalviewreturns (uint256);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/functiontokenByIndex(uint256 index) externalviewreturns (uint256);
}
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)pragmasolidity ^0.8.0;/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/interfaceIERC721Receiver{
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/functiononERC721Received(address operator,
addressfrom,
uint256 tokenId,
bytescalldata data
) externalreturns (bytes4);
}
Contract Source Code
File 13 of 19: Math.sol
// SPDX-License-Identifier: MITpragmasolidity ^0.8.4;/// @title Simple math library for Max and Min.libraryMath{
functionmax(int24 a, int24 b) internalpurereturns (int24) {
return a >= b ? a : b;
}
functionmin(int24 a, int24 b) internalpurereturns (int24) {
return a < b ? a : b;
}
functionmax(uint256 a, uint256 b) internalpurereturns (uint256) {
return a >= b ? a : b;
}
functionmin(uint256 a, uint256 b) internalpurereturns (uint256) {
return a < b ? a : b;
}
functiontickFloor(int24 tick, int24 tickSpacing)
internalpurereturns (int24)
{
int24 c = tick / tickSpacing;
if (tick <0&& tick % tickSpacing !=0) {
c = c -1;
}
c = c * tickSpacing;
return c;
}
functiontickUpper(int24 tick, int24 tickSpacing)
internalpurereturns (int24)
{
int24 c = tick / tickSpacing;
if (tick >0&& tick % tickSpacing !=0) {
c = c +1;
}
c = c * tickSpacing;
return c;
}
}
Contract Source Code
File 14 of 19: Ownable.sol
// 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 15 of 19: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)pragmasolidity ^0.8.0;/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/abstractcontractReentrancyGuard{
// Booleans are more expensive than uint256 or any type that takes up a full// word because each write operation emits an extra SLOAD to first read the// slot's contents, replace the bits taken up by the boolean, and then write// back. This is the compiler's defense against contract upgrades and// pointer aliasing, and it cannot be disabled.// The values being non-zero value makes deployment a bit more expensive,// but in exchange the refund on every call to nonReentrant will be lower in// amount. Since refunds are capped to a percentage of the total// transaction's gas, it is best to keep them low in cases like this one, to// increase the likelihood of the full refund coming into effect.uint256privateconstant _NOT_ENTERED =1;
uint256privateconstant _ENTERED =2;
uint256private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/modifiernonReentrant() {
// On the first call to nonReentrant, _notEntered will be truerequire(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
Contract Source Code
File 16 of 19: SafeERC20.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)pragmasolidity ^0.8.0;import"../IERC20.sol";
import"../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/librarySafeERC20{
usingAddressforaddress;
functionsafeTransfer(
IERC20 token,
address to,
uint256 value
) internal{
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
functionsafeTransferFrom(
IERC20 token,
addressfrom,
address to,
uint256 value
) internal{
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/functionsafeApprove(
IERC20 token,
address spender,
uint256 value
) internal{
// safeApprove should only be called when setting an initial allowance,// or when resetting it to zero. To increase and decrease it, use// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'require(
(value ==0) || (token.allowance(address(this), spender) ==0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
functionsafeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal{
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
functionsafeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal{
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/function_callOptionalReturn(IERC20 token, bytesmemory data) private{
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that// the target address contains contract code and also asserts for success in the low-level call.bytesmemory returndata =address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length>0) {
// Return data is optionalrequire(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
Contract Source Code
File 17 of 19: 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 18 of 19: multicall.sol
// SPDX-License-Identifier: MITpragmasolidity 0.8.4;/// @title Multicall/// @notice Enables calling multiple methods in a single call to the contractabstractcontractMulticall{
functionmulticall(bytes[] calldata data) externalpayablereturns (bytes[] memory results) {
results =newbytes[](data.length);
for (uint256 i =0; i < data.length; i++) {
(bool success, bytesmemory result) =address(this).delegatecall(data[i]);
if (!success) {
// Next 5 lines from https://ethereum.stackexchange.com/a/83577if (result.length<68) revert();
assembly {
result :=add(result, 0x04)
}
revert(abi.decode(result, (string)));
}
results[i] = result;
}
}
}
Contract Source Code
File 19 of 19: veiZi.sol
// SPDX-License-Identifier: BUSL-1.1pragmasolidity ^0.8.4;import"./libraries/multicall.sol";
import"./libraries/Math.sol";
import"./libraries/FixedPoints.sol";
import"@openzeppelin/contracts/token/ERC20/IERC20.sol";
import"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import"@openzeppelin/contracts/access/Ownable.sol";
import"@openzeppelin/contracts/security/ReentrancyGuard.sol";
import'@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import'@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
// import "hardhat/console.sol";contractveiZiisOwnable, Multicall, ReentrancyGuard, ERC721Enumerable, IERC721Receiver{
usingSafeERC20forIERC20;
/// @dev Point of epochs/// for each epoch, y = bias - (t - timestamp) * slopestructPoint {
int256 bias;
int256 slope;
// start of segmentuint256 timestamp;
}
/// @dev locked info of a nftstructLockedBalance {
// amount of token lockedint256 amount;
// end blockuint256 end;
}
int128constant DEPOSIT_FOR_TYPE =0;
int128constant CREATE_LOCK_TYPE =1;
int128constant INCREASE_LOCK_AMOUNT =2;
int128constant INCREASE_UNLOCK_TIME =3;
/// @notice emit if successfully deposit (calling increaseAmount, createLock, increaseUnlockTime)/// @param nftId id of nft, starts from 1/// @param value amount of token locked/// @param lockBlk end block/// @param depositType createLock / increaseAmount / increaseUnlockTime / depositFor/// @param timestamp start timestampeventDeposit(uint256indexed nftId, uint256 value, uint256indexed lockBlk, int128 depositType, uint256 timestamp);
/// @notice emit if successfuly withdraw/// @param nftId id of nft, starts from 1/// @param value amount of token released/// @param timestamp block timestamp when calling withdraw(...)eventWithdraw(uint256indexed nftId, uint256 value, uint256 timestamp);
/// @notice emit if an user successfully staked a nft/// @param nftId id of nft, starts from 1/// @param owner address of usereventStake(uint256indexed nftId, addressindexed owner);
/// @notice emit if an user unstaked a staked nft/// @param nftId id of nft, starts from 1/// @param owner address of usereventUnstake(uint256indexed nftId, addressindexed owner);
/// @notice emit if the total amount of locked token changes/// @param preSupply total amount before change/// @param supply total amount after changeeventSupply(uint256 preSupply, uint256 supply);
/// @notice number of block in a week (estimated)uint256public WEEK;
/// @notice number of block for 4 yearsuint256public MAXTIME;
/// @notice block delta uint256public secondsPerBlockX64;
/// @notice erc-20 token to lockaddresspublic token;
/// @notice total amount of locked tokenuint256public supply;
/// @notice num of nft generateduint256public nftNum =0;
/// @notice locked info for each nftmapping(uint256=> LockedBalance) public nftLocked;
uint256public epoch;
/// @notice weight-curve(veiZi amount) of total-weight for all nftmapping(uint256=> Point) public pointHistory;
mapping(uint256=>int256) public slopeChanges;
/// @notice weight-curve of each nftmapping(uint256=>mapping(uint256=> Point)) public nftPointHistory;
mapping(uint256=>uint256) public nftPointEpoch;
/// @notice total num of nft stakeduint256public stakeNum =0; // +1 every time when calling stake(...)/// @notice total amount of staked iZiuint256public stakeiZiAmount =0;
structStakingStatus {
uint256 stakingId;
uint256 lockAmount;
uint256 lastVeiZi;
uint256 lastTouchBlock;
uint256 lastTouchAccRewardPerShare;
}
/// @notice nftId to staking statusmapping(uint256=> StakingStatus) public stakingStatus;
/// @notice owner address of staked nftmapping(uint256=>address) public stakedNftOwners;
/// @notice nftid the user staked, 0 for no staked. each user can stake at most 1 nftmapping(address=>uint256) public stakedNft;
stringpublic baseTokenURI;
mapping(uint256=>address) public delegateAddress;
structRewardInfo {
/// @dev who provides rewardaddress provider;
/// @dev Accumulated Reward Tokens per share, times Q128.uint256 accRewardPerShare;
/// @dev Reward amount for each block.uint256 rewardPerBlock;
/// @dev Last block number that the accRewardRerShare is touched.uint256 lastTouchBlock;
/// @dev The block number when NFT mining rewards starts/ends.uint256 startBlock;
/// @dev The block number when NFT mining rewards starts/ends.uint256 endBlock;
}
/// @dev reward infos
RewardInfo public rewardInfo;
modifiercheckAuth(uint256 nftId, bool allowStaked) {
bool auth = _isApprovedOrOwner(msg.sender, nftId);
if (allowStaked) {
auth = auth || (stakedNft[msg.sender] == nftId);
}
require(auth, "Not Owner or Not exist!");
_;
}
/// @notice constructor/// @param tokenAddr address of locked token/// @param _rewardInfo reward infoconstructor(address tokenAddr, RewardInfo memory _rewardInfo) ERC721("iZUMi DAO veNFT", "veiZi") {
token = tokenAddr;
pointHistory[0].timestamp =block.timestamp;
WEEK =7*24*3600;
MAXTIME = (4*365+1) *24*3600;
rewardInfo = _rewardInfo;
rewardInfo.accRewardPerShare =0;
rewardInfo.lastTouchBlock = Math.max(_rewardInfo.startBlock, block.number);
}
/// @notice Used for ERC721 safeTransferFromfunctiononERC721Received(address, address, uint256, bytesmemory)
publicvirtualoverridereturns (bytes4)
{
returnthis.onERC721Received.selector;
}
/// @notice get slope of last epoch of weight-curve of an nft/// @param nftId id of nft, starts from 1functiongetLastNftSlope(uint256 nftId) externalviewreturns(int256) {
uint256 uepoch = nftPointEpoch[nftId];
return nftPointHistory[nftId][uepoch].slope;
}
structCheckPointState {
int256 oldDslope;
int256 newDslope;
uint256 _epoch;
}
function_checkPoint(uint256 nftId, LockedBalance memory oldLocked, LockedBalance memory newLocked) internal{
Point memory uOld;
Point memory uNew;
CheckPointState memory cpState;
cpState.oldDslope =0;
cpState.newDslope =0;
cpState._epoch = epoch;
if (nftId !=0) {
if (oldLocked.end >block.timestamp&& oldLocked.amount >0) {
uOld.slope = oldLocked.amount /int256(MAXTIME);
uOld.bias = uOld.slope *int256(oldLocked.end -block.timestamp);
}
if (newLocked.end >block.timestamp&& newLocked.amount >0) {
uNew.slope = newLocked.amount /int256(MAXTIME);
uNew.bias = uNew.slope *int256(newLocked.end -block.timestamp);
}
cpState.oldDslope = slopeChanges[oldLocked.end];
if (newLocked.end !=0) {
if (newLocked.end == oldLocked.end) {
cpState.newDslope = cpState.oldDslope;
} else {
cpState.newDslope = slopeChanges[newLocked.end];
}
}
}
Point memory lastPoint = Point({bias: 0, slope: 0, timestamp: block.timestamp});
if (cpState._epoch >0) {
lastPoint = pointHistory[cpState._epoch];
}
uint256 lastCheckPoint = lastPoint.timestamp;
uint256 ti = (lastCheckPoint / WEEK) * WEEK;
for (uint24 i =0; i <255; i ++) {
ti += WEEK;
int256 dSlope =0;
if (ti >block.timestamp) {
ti =block.timestamp;
} else {
dSlope = slopeChanges[ti];
}
// ti >= lastCheckPoint
lastPoint.bias -= lastPoint.slope *int256(ti - lastCheckPoint);
lastPoint.slope += dSlope;
if (lastPoint.bias <0) {
lastPoint.bias =0;
}
if (lastPoint.slope <0) {
lastPoint.slope =0;
}
lastCheckPoint = ti;
lastPoint.timestamp = ti;
if (ti ==block.timestamp) {
cpState._epoch +=1;
break;
} else {
if (dSlope !=0) {
// slope changes
cpState._epoch +=1;
pointHistory[cpState._epoch] = lastPoint;
}
}
}
epoch = cpState._epoch;
if (nftId !=0) {
lastPoint.slope += (uNew.slope - uOld.slope);
lastPoint.bias += (uNew.bias - uOld.bias);
if (lastPoint.slope <0) {
lastPoint.slope =0;
}
if (lastPoint.bias <0) {
lastPoint.bias =0;
}
}
pointHistory[cpState._epoch] = lastPoint;
if (nftId !=0) {
if (oldLocked.end >block.timestamp) {
cpState.oldDslope += uOld.slope;
if (newLocked.end == oldLocked.end) {
cpState.oldDslope -= uNew.slope;
}
slopeChanges[oldLocked.end] = cpState.oldDslope;
}
if (newLocked.end >block.timestamp) {
if (newLocked.end > oldLocked.end) {
cpState.newDslope -= uNew.slope;
slopeChanges[newLocked.end] = cpState.newDslope;
}
}
uint256 nftEpoch = nftPointEpoch[nftId] +1;
uNew.timestamp =block.timestamp;
nftPointHistory[nftId][nftEpoch] = uNew;
nftPointEpoch[nftId] = nftEpoch;
}
}
function_depositFor(uint256 nftId, uint256 _value, uint256 unlockTime, LockedBalance memory lockedBalance, int128 depositType) internal{
LockedBalance memory _locked = lockedBalance;
uint256 supplyBefore = supply;
supply = supplyBefore + _value;
LockedBalance memory oldLocked = LockedBalance({amount: _locked.amount, end: _locked.end});
_locked.amount +=int256(_value);
if (unlockTime !=0) {
_locked.end = unlockTime;
}
_checkPoint(nftId, oldLocked, _locked);
nftLocked[nftId] = _locked;
if (_value !=0) {
IERC20(token).safeTransferFrom(msg.sender, address(this), _value);
}
emit Deposit(nftId, _value, _locked.end, depositType, block.timestamp);
emit Supply(supplyBefore, supplyBefore + _value);
}
/// @notice update global curve status to current blockfunctioncheckPoint() external{
_checkPoint(0, LockedBalance({amount: 0, end: 0}), LockedBalance({amount: 0, end: 0}));
}
function_baseURI() internalviewvirtualoverridereturns (stringmemory) {
return baseTokenURI;
}
functionsetBaseURI(stringcalldata baseURI) externalonlyOwner{
baseTokenURI = baseURI;
}
/// @notice create a new lock and generate a new nft/// @param _value amount of token to lock/// @param _unlockTime future timestamp to unlock/// @return nftId id of generated nft, starts from 1functioncreateLock(uint256 _value, uint256 _unlockTime) externalnonReentrantreturns(uint256 nftId) {
uint256 unlockTime = (_unlockTime / WEEK) * WEEK;
nftNum ++;
nftId = nftNum; // id starts from 1
_mint(msg.sender, nftId);
LockedBalance memory _locked = nftLocked[nftId];
require(_value >0, "Amount should >0");
require(_locked.amount ==0, "Withdraw old tokens first");
require(unlockTime >block.timestamp, "Can only lock until time in the future");
require(unlockTime <=block.timestamp+ MAXTIME, "Voting lock can be 4 years max");
_depositFor(nftId, _value, unlockTime, _locked, CREATE_LOCK_TYPE);
}
/// @notice increase amount of locked token in an nft/// @param nftId id of nft, starts from 1/// @param _value increase amountfunctionincreaseAmount(uint256 nftId, uint256 _value) externalnonReentrant{
LockedBalance memory _locked = nftLocked[nftId];
require(_value >0, "Amount should >0");
require(_locked.end >block.timestamp, "Can only lock until time in the future");
_depositFor(nftId, _value, 0, _locked, (msg.sender== ownerOf(nftId) || stakedNft[msg.sender] == nftId) ? INCREASE_LOCK_AMOUNT : DEPOSIT_FOR_TYPE);
if (stakingStatus[nftId].stakingId !=0) {
_updateGlobalStatus();
// this nft is staking// donot collect reward
stakeiZiAmount += _value;
stakingStatus[nftId].lockAmount += _value;
}
}
/// @notice increase unlock time of an nft/// @param nftId id of nft/// @param _unlockTime future block number to unlockfunctionincreaseUnlockTime(uint256 nftId, uint256 _unlockTime) externalcheckAuth(nftId, true) nonReentrant{
LockedBalance memory _locked = nftLocked[nftId];
uint256 unlockTime = (_unlockTime / WEEK) * WEEK;
require(unlockTime > _locked.end, "Can only increase unlock time");
require(unlockTime >block.timestamp, "Can only lock until time in the future");
require(unlockTime <=block.timestamp+ MAXTIME, "Voting lock can be 4 years max");
_depositFor(nftId, 0, unlockTime, _locked, INCREASE_UNLOCK_TIME);
if (stakingStatus[nftId].stakingId !=0) {
// this nft is stakingaddress stakingOwner = stakedNftOwners[nftId];
_collectReward(nftId, stakingOwner);
}
}
/// @notice withdraw an unstaked-nft/// @param nftId id of nftfunctionwithdraw(uint256 nftId) externalcheckAuth(nftId, false) nonReentrant{
LockedBalance memory _locked = nftLocked[nftId];
require(block.timestamp>= _locked.end, "The lock didn't expire");
uint256 value =uint256(_locked.amount);
LockedBalance memory oldLocked = LockedBalance({amount: _locked.amount, end: _locked.end});
_locked.end =0;
_locked.amount =0;
nftLocked[nftId] = _locked;
uint256 supplyBefore = supply;
supply = supplyBefore - value;
_checkPoint(nftId, oldLocked, _locked);
IERC20(token).safeTransfer(msg.sender, value);
emit Withdraw(nftId, value, block.timestamp);
emit Supply(supplyBefore, supplyBefore - value);
}
/// @notice burn an unstaked-nft (dangerous!!!)/// @param nftId id of nftfunctionburn(uint256 nftId) externalcheckAuth(nftId, false) nonReentrant{
LockedBalance memory _locked = nftLocked[nftId];
require(_locked.amount ==0, "Not Withdrawed!");
_burn(nftId);
}
/// @notice merge nftFrom to nftTo/// @param nftFrom nft id of nftFrom, cannot be staked, owner must be msg.sender/// @param nftTo nft id of nftTo, cannot be staked, owner must be msg.senderfunctionmerge(uint256 nftFrom, uint256 nftTo) externalnonReentrant{
require(_isApprovedOrOwner(msg.sender, nftFrom), "Not Owner of nftFrom");
require(_isApprovedOrOwner(msg.sender, nftTo), "Not Owner of nftTo");
require(stakingStatus[nftFrom].stakingId ==0, "nftFrom is staked");
require(stakingStatus[nftTo].stakingId ==0, "nftTo is staked");
require(nftFrom != nftTo, 'Same nft!');
LockedBalance memory lockedFrom = nftLocked[nftFrom];
LockedBalance memory lockedTo = nftLocked[nftTo];
require(lockedTo.end >= lockedFrom.end, "Endblock: nftFrom > nftTo");
// cancel lockedFrom in the weight-curve
_checkPoint(nftFrom, LockedBalance({amount: lockedFrom.amount, end: lockedFrom.end}), LockedBalance({amount: 0, end: lockedFrom.end}));
// add locked iZi of nftFrom to nftTo
_checkPoint(nftTo, LockedBalance({amount: lockedTo.amount, end: lockedTo.end}), LockedBalance({amount: lockedTo.amount + lockedFrom.amount, end: lockedTo.end}));
nftLocked[nftFrom].amount =0;
nftLocked[nftTo].amount = lockedTo.amount + lockedFrom.amount;
}
function_findTimestampEpoch(uint256 _timestamp, uint256 maxEpoch) internalviewreturns(uint256) {
uint256 _min =0;
uint256 _max = maxEpoch;
for (uint24 i =0; i <128; i ++) {
if (_min >= _max) {
break;
}
uint256 _mid = (_min + _max +1) /2;
if (pointHistory[_mid].timestamp <= _timestamp) {
_min = _mid;
} else {
_max = _mid -1;
}
}
return _min;
}
function_findNftTimestampEpoch(uint256 nftId, uint256 _timestamp) internalviewreturns(uint256) {
uint256 _min =0;
uint256 _max = nftPointEpoch[nftId];
for (uint24 i =0; i <128; i ++) {
if (_min >= _max) {
break;
}
uint256 _mid = (_min + _max +1) /2;
if (nftPointHistory[nftId][_mid].timestamp <= _timestamp) {
_min = _mid;
} else {
_max = _mid -1;
}
}
return _min;
}
/// @notice weight of nft (veiZi amount) at certain time after latest update of that nft/// @param nftId id of nft/// @param timestamp specified timestamp after latest update of this nft (amount change or end change)/// @return weightfunctionnftVeiZi(uint256 nftId, uint256 timestamp) publicviewreturns(uint256) {
uint256 _epoch = nftPointEpoch[nftId];
if (_epoch ==0) {
return0;
} else {
Point memory lastPoint = nftPointHistory[nftId][_epoch];
require(timestamp >= lastPoint.timestamp, "Too early");
lastPoint.bias -= lastPoint.slope *int256(timestamp - lastPoint.timestamp);
if (lastPoint.bias <0) {
lastPoint.bias =0;
}
returnuint256(lastPoint.bias);
}
}
/// @notice weight of nft (veiZi amount) at certain time/// @param nftId id of nft/// @param timestamp specified timestamp after latest update of this nft (amount change or end change)/// @return weightfunctionnftVeiZiAt(uint256 nftId, uint256 timestamp) publicviewreturns(uint256) {
uint256 targetEpoch = _findNftTimestampEpoch(nftId, timestamp);
Point memory uPoint = nftPointHistory[nftId][targetEpoch];
if (timestamp < uPoint.timestamp) {
return0;
}
uPoint.bias -= uPoint.slope * (int256(timestamp) -int256(uPoint.timestamp));
if (uPoint.bias <0) {
uPoint.bias =0;
}
returnuint256(uPoint.bias);
}
function_totalVeiZiAt(Point memory point, uint256 timestamp) internalviewreturns(uint256) {
Point memory lastPoint = point;
uint256 ti = (lastPoint.timestamp / WEEK) * WEEK;
for (uint24 i =0; i <255; i ++) {
ti += WEEK;
int256 dSlope =0;
if (ti > timestamp) {
ti = timestamp;
} else {
dSlope = slopeChanges[ti];
}
lastPoint.bias -= lastPoint.slope *int256(ti - lastPoint.timestamp);
if (lastPoint.bias <=0) {
lastPoint.bias =0;
break;
}
if (ti == timestamp) {
break;
}
lastPoint.slope += dSlope;
lastPoint.timestamp = ti;
}
returnuint256(lastPoint.bias);
}
/// @notice total weight of all nft at a certain time after check-point of all-nft-collection's curve/// @param timestamp specified blockNumber, "certain time" in above line/// @return total weightfunctiontotalVeiZi(uint256 timestamp) externalviewreturns(uint256) {
uint256 _epoch = epoch;
Point memory lastPoint = pointHistory[_epoch];
require(timestamp >= lastPoint.timestamp, "Too Early");
return _totalVeiZiAt(lastPoint, timestamp);
}
/// @notice total weight of all nft at a certain time/// @param timestamp specified blockNumber, "certain time" in above line/// @return total weightfunctiontotalVeiZiAt(uint256 timestamp) externalviewreturns(uint256) {
uint256 _epoch = epoch;
uint256 targetEpoch = _findTimestampEpoch(timestamp, _epoch);
Point memory point = pointHistory[targetEpoch];
if (timestamp < point.timestamp) {
return0;
}
if (targetEpoch == _epoch) {
return _totalVeiZiAt(point, timestamp);
} else {
point.bias = point.bias - point.slope * (int256(timestamp) -int256(point.timestamp));
if (point.bias <0) {
point.bias =0;
}
returnuint256(point.bias);
}
}
function_updateStakingStatus(uint256 nftId) internal{
StakingStatus storage t = stakingStatus[nftId];
t.lastTouchBlock = rewardInfo.lastTouchBlock;
t.lastTouchAccRewardPerShare = rewardInfo.accRewardPerShare;
t.lastVeiZi = t.lockAmount / MAXTIME * (Math.max(block.timestamp, nftLocked[nftId].end) -block.timestamp);
}
/// @notice Collect pending reward for a single veizi-nft. /// @param nftId The related position id./// @param recipient who acquires rewardfunction_collectReward(uint256 nftId, address recipient) internal{
StakingStatus memory t = stakingStatus[nftId];
_updateGlobalStatus();
uint256 reward = (t.lastVeiZi * (rewardInfo.accRewardPerShare - t.lastTouchAccRewardPerShare)) / FixedPoints.Q128;
if (reward >0) {
IERC20(token).safeTransferFrom(
rewardInfo.provider,
recipient,
reward
);
}
_updateStakingStatus(nftId);
}
functionsetDelegateAddress(uint256 nftId, address addr) externalcheckAuth(nftId, true) nonReentrant{
delegateAddress[nftId] = addr;
}
function_beforeTokenTransfer(addressfrom, address to, uint256 nftId) internalvirtualoverride{
super._beforeTokenTransfer(from, to, nftId);
// when calling stake() or unStake() (to is contract address, or from is contract address)// delegateAddress will not changeif (from!=address(this) && to !=address(this)) {
delegateAddress[nftId] =address(0);
}
}
/// @notice stake an nft/// @param nftId id of nftfunctionstake(uint256 nftId) externalnonReentrant{
require(nftLocked[nftId].end >block.timestamp, "Lock expired");
// nftId starts from 1, zero or not owner(including staked) cannot be transfered
safeTransferFrom(msg.sender, address(this), nftId);
require(stakedNft[msg.sender] ==0, "Has Staked!");
_updateGlobalStatus();
stakedNft[msg.sender] = nftId;
stakedNftOwners[nftId] =msg.sender;
stakeNum +=1;
uint256 lockAmount =uint256(nftLocked[nftId].amount);
stakingStatus[nftId] = StakingStatus({
stakingId: stakeNum,
lockAmount: lockAmount,
lastVeiZi: lockAmount / MAXTIME * (Math.max(block.timestamp, nftLocked[nftId].end) -block.timestamp),
lastTouchBlock: rewardInfo.lastTouchBlock,
lastTouchAccRewardPerShare: rewardInfo.accRewardPerShare
});
stakeiZiAmount += lockAmount;
emit Stake(nftId, msg.sender);
}
/// @notice unstake an nftfunctionunStake() externalnonReentrant{
uint256 nftId = stakedNft[msg.sender];
require(nftId !=0, "No Staked Nft!");
stakingStatus[nftId].stakingId =0;
stakedNft[msg.sender] =0;
stakedNftOwners[nftId] =address(0);
_collectReward(nftId, msg.sender);
// refund nft// note we can not use safeTransferFrom here because the// opterator is msg.sender who is not approved
_safeTransfer(address(this), msg.sender, nftId, "");
stakeiZiAmount -=uint256(nftLocked[nftId].amount);
emit Unstake(nftId, msg.sender);
}
/// @notice get user's staking info/// @param user address of user/// @return nftId id of veizi-nft/// @return stakingId id of stake/// @return amount amount of locked iZi in nftfunctionstakingInfo(address user) externalviewreturns(uint256 nftId, uint256 stakingId, uint256 amount) {
nftId = stakedNft[user];
if (nftId !=0) {
stakingId = stakingStatus[nftId].stakingId;
amount =uint256(nftLocked[nftId].amount);
uint256 remainBlock = Math.max(nftLocked[nftId].end, block.timestamp) -block.timestamp;
amount = amount / MAXTIME * remainBlock;
} else {
stakingId =0;
amount =0;
}
}
/// @notice Update the global status.function_updateGlobalStatus() internal{
if (block.number<= rewardInfo.lastTouchBlock) {
return;
}
if (rewardInfo.lastTouchBlock >= rewardInfo.endBlock) {
return;
}
uint256 currBlockNumber = Math.min(block.number, rewardInfo.endBlock);
if (stakeiZiAmount ==0) {
rewardInfo.lastTouchBlock = currBlockNumber;
return;
}
// tokenReward < 2^25 * 2^64 * 2^10, 15 years, 1000 r/blockuint256 tokenReward = (currBlockNumber - rewardInfo.lastTouchBlock) * rewardInfo.rewardPerBlock;
// tokenReward * Q128 < 2^(25 + 64 + 10 + 128)
rewardInfo.accRewardPerShare = rewardInfo.accRewardPerShare + ((tokenReward * FixedPoints.Q128) / stakeiZiAmount);
rewardInfo.lastTouchBlock = currBlockNumber;
}
/// @notice Return reward multiplier over the given _from to _to block./// @param _from The start block./// @param _to The end block.function_getRewardBlockNum(uint256 _from, uint256 _to)
internalviewreturns (uint256)
{
if (_from > _to) {
return0;
}
if (_to <= rewardInfo.endBlock) {
return _to - _from;
} elseif (_from >= rewardInfo.endBlock) {
return0;
} else {
return rewardInfo.endBlock - _from;
}
}
/// @notice View function to see pending Reward for a staked NFT./// @param nftId The staked NFT id./// @return reward iZi reward amountfunctionpendingRewardOfToken(uint256 nftId)
publicviewreturns (uint256 reward)
{
reward =0;
StakingStatus memory t = stakingStatus[nftId];
if (t.stakingId !=0) {
// we are sure that stakeiZiAmount is not 0uint256 tokenReward = _getRewardBlockNum(
rewardInfo.lastTouchBlock,
block.number
) * rewardInfo.rewardPerBlock;
// we are sure that stakeiZiAmount >= t.lockAmount > 0uint256 rewardPerShare = rewardInfo.accRewardPerShare + (tokenReward * FixedPoints.Q128) / stakeiZiAmount;
// l * (currentAcc - lastAcc)
reward = (t.lastVeiZi * (rewardPerShare - t.lastTouchAccRewardPerShare)) / FixedPoints.Q128;
}
}
/// @notice View function to see pending Reward for a user./// @param user The related user address./// @return reward iZi reward amountfunctionpendingRewardOfAddress(address user)
publicviewreturns (uint256 reward)
{
reward =0;
uint256 nftId = stakedNft[user];
if (nftId !=0) {
reward = pendingRewardOfToken(nftId);
}
}
/// @notice collect pending reward if some user has a staked veizi-nftfunctioncollect() externalnonReentrant{
uint256 nftId = stakedNft[msg.sender];
require(nftId !=0, 'No Staked veizi-nft!');
_collectReward(nftId, msg.sender);
}
/// @notice Set new reward end block./// @param endBlock New end block.functionmodifyEndBlock(uint256 endBlock) externalonlyOwner{
require(endBlock >block.number, "OUT OF DATE");
_updateGlobalStatus();
// jump if origin endBlock < block.number
rewardInfo.lastTouchBlock =block.number;
rewardInfo.endBlock = endBlock;
}
/// @notice Set new reward per block./// @param _rewardPerBlock new reward per blockfunctionmodifyRewardPerBlock(uint256 _rewardPerBlock)
externalonlyOwner{
_updateGlobalStatus();
rewardInfo.rewardPerBlock = _rewardPerBlock;
}
functionmodifyStartBlock(uint256 startBlock) externalonlyOwner{
require(rewardInfo.startBlock >block.number, 'has started!');
require(startBlock >block.number, 'Too Early!');
require(startBlock < rewardInfo.endBlock, 'Too Late!');
rewardInfo.startBlock = startBlock;
rewardInfo.lastTouchBlock = startBlock; // before start, lastTouchBlock = max(block.number, startBlock)
}
/// @notice Set new reward provider./// @param provider New providerfunctionmodifyProvider(address provider)
externalonlyOwner{
rewardInfo.provider = provider;
}
}