Skip to content

Commit

Permalink
Merge pull request #628 from lidofinance/refactor/nft_renaming
Browse files Browse the repository at this point in the history
refactor: nft renaming
  • Loading branch information
TheDZhon authored Feb 18, 2023
2 parents 2b5b9a9 + fabb410 commit c5be3cf
Show file tree
Hide file tree
Showing 4 changed files with 84 additions and 84 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ import {UnstructuredRefStorage} from "./lib/UnstructuredRefStorage.sol";
/// NFT is minted on every request and burned on claim
///
/// @author psirex, folkyatina
contract WithdrawalRequestNFT is IERC721Metadata, WithdrawalQueue {
contract WithdrawalQueueERC721 is IERC721Metadata, WithdrawalQueue {
using Address for address;
using Strings for uint256;
using EnumerableSet for EnumerableSet.UintSet;
using UnstructuredRefStorage for bytes32;

bytes32 internal constant TOKEN_APPROVALS_POSITION = keccak256("lido.WithdrawalRequestNFT.tokenApprovals");
bytes32 internal constant OPERATOR_APPROVALS_POSITION = keccak256("lido.WithdrawalRequestNFT.operatorApprovals");
bytes32 internal constant BASE_URI_POSITION = keccak256("lido.WithdrawalRequestNFT.baseUri");
bytes32 internal constant TOKEN_APPROVALS_POSITION = keccak256("lido.WithdrawalQueueERC721.tokenApprovals");
bytes32 internal constant OPERATOR_APPROVALS_POSITION = keccak256("lido.WithdrawalQueueERC721.operatorApprovals");
bytes32 internal constant BASE_URI_POSITION = keccak256("lido.WithdrawalQueueERC721.baseUri");

bytes32 public constant SET_BASE_URI_ROLE = keccak256("SET_BASE_URI_ROLE");

Expand Down
File renamed without changes.
Loading

0 comments on commit c5be3cf

Please sign in to comment.