xrpld
Loading...
Searching...
No Matches
nftPageMask.h
1#pragma once
2
3#include <xrpl/basics/base_uint.h>
4
5#include <string_view>
6
7namespace xrpl::nft {
8
9// NFT directory pages order their contents based only on the low 96 bits of
10// the NFToken value. This mask provides easy access to the necessary mask.
12 std::string_view("0000000000000000000000000000000000000000ffffffffffffffffffffffff"));
13
14} // namespace xrpl::nft
constexpr uint256 kPageMask(std::string_view("0000000000000000000000000000000000000000ffffffffffffffffffffffff"))
BaseUInt< 256 > uint256
Definition base_uint.h:562