# @niftory/niftory-solidity

> Niftory Solidity Contracts

Latest version **0.0.5** (published 2023-02-17) · MIT license · 0 weekly downloads

## Install

```sh
npm install @niftory/niftory-solidity
pnpm add @niftory/niftory-solidity
yarn add @niftory/niftory-solidity
bun add @niftory/niftory-solidity
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.5 |
| Published | 2023-02-17 |
| First published | 2023-02-17 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 10 |
| Unpacked size | 601.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | artur-niftory, sidd-niftory, aniraga-niftory |

## Links

- npm: https://www.npmjs.com/package/@niftory/niftory-solidity
- Repository: https://github.com/niftory/niftory-solidity
- Homepage: https://www.niftory.com
- Issues: https://github.com/niftory/niftory-solidity/issues
- npm.io page: https://npm.io/package/@niftory/niftory-solidity

## Dependencies (10)

- [zod](https://npm.io/package/zod.md) ^3.20.2
- [dotenv](https://npm.io/package/dotenv.md) ^16.0.3
- [ethers](https://npm.io/package/ethers.md) ^5.4.7
- [typechain](https://npm.io/package/typechain.md) ^8.1.1
- [@ethersproject/abi](https://npm.io/package/@ethersproject/abi.md) ^5.4.7
- [@aws-sdk/client-kms](https://npm.io/package/@aws-sdk/client-kms.md) ^3.266.0
- [ecdsa-sig-formatter](https://npm.io/package/ecdsa-sig-formatter.md) ^1.0.11
- [ethers-aws-kms-signer](https://npm.io/package/ethers-aws-kms-signer.md) ^1.3.2
- [@openzeppelin/contracts](https://npm.io/package/@openzeppelin/contracts.md) ^4.7.3
- [@ethersproject/providers](https://npm.io/package/@ethersproject/providers.md) ^5.4.7

## Recent versions

- 0.0.5 (latest) — 2023-02-17

## README

# Niftory Smart Contracts for EVM Compatible Blockchains

This repository hosts all smart contracts (and related scripts, tests, etc.) for Niftory, an NFT management platform. Niftory NFTs are ERC1155 compatible.

Note: This README is autogenerated. Please modify docs from within the `docs` folder and run `yarn build` to regenerate.

## Usage

In order to use the contract, just extend one of the contracts from the `impl` folder. Currently, there is only `NiftoryStandardERC1155`.

Typed APIs, generated with typechain, can be accessed via `src/bindings`. [`NiftoryStandardERC1155Interface` from here](https://github.com/Niftory/niftory-solidity/blob/main/src/bindings/contracts/NiftoryStandardERC1155.ts) is the best place to see the full accessible API in one place.

## Overview

Each uniquely identifiable ERC1155 token maps to a unique `set` (via `setId`) and `template` (via `templateId`) pair. The IERC1155 token `id` (e.g. for the `uri` function) can be expressed as `(setId << 64) + templateId`, as `setId` and `templateId` are both 64 bits each.

A contract can have multiple `set`s, and each `set` can have multiple `templates`. Indexing for both starts at `1` (so there is no `set` with `setId=0` or `template` with `templateId=0` in any set).

Each `template` maps to exactly one `uri`, which can be modified by an Admin or SetAdmin (see next section). `template`s also keep track of how many NFTs have been minted for that template and how many are allowed to minted (`maxMint`). A `template` with a `maxMint` of 0 allows unlimited minting. A `maxMint` may be set later, however.

`set`s can be locked to prevent more templates from being added, and `templates` can have metadata modification and minting locked separately.

`set`s allow Admins to delegate control to a collection of `template`s to a SetAdmin, allowing the SetAdmin to lock and mint from `set`s it owns.

## Roles and Actions

This contract uses a very simple RBAC style management with three different roles, as below.

### Admin

An Admin is the superuser of the contract. An Admin can

- Assign (or revoke) more Admins
- Assign (or revoke) SetAdmins
- Create & lock sets
- Add templates to any set
- Mint from any mintable template
- Change the metadata for any template
- Modify the maximum mint amount for any template
- Lock metadata and minting for any template
- Modify the global default URI

### Set Admin

A SetAdmin is an adminstrator of `set`s it has been given power over, either from an Admin or another previous SetAdmin. A SetAdmin can

- Assign (or revoke) SetAdmins from the sets it owns
- Lock sets it owns
- Add templates to sets it owns
- Mint from mintable templates of sets it owns
- Change the metadata of templates of sets it owns
- Modify the maximum mint amount for templates of sets it owns
- Lock metadata and minting for templates of sets it owns

### Collector

`Collector` is another way of saying "no role" and can be anyone with an account on the blockchain. A `Collector` can

- Hold and transfer tokens
- Approve another account to manage tokens
- Burn tokens

All the above functionality is provided by OpenZeppelin's ERC1155 implementation.

## Architecture

There are three extensions that can be used to power this token, which all assume that an ERC1155 token uses the `set`/`template` scheme mentioned above.

The main `NiftoryStandardERC1155` uses OpenZeppelin's `ERC1155Burnable.sol` as a base. There are three custom extensions used, which can be found in `contracts/extensions`

- `UriManager` manages URI's for templates and allows modification. If the URI is blank, it will use the default `_defaultUri`.
- `RoleManager` manages the Admin and SetAdmin based ownership. `RoleManager` maps an `(address, setId)` pair to a boolean value indicating whether `address` is a SetAdmin of set `setId`. The 0-th bit is used to indicate an Admin. This extension uses a custom library (`lib/AddressIndexedBitmap.sol`) in order to tightly pack the boolean role indicator
- `TemplateManager` is broken into two parts - the `SetManager` and the deriving `TemplateManager`. The `SetManager` stores `Set`s in a `setId => Set` map. A `Set` needs to keep track of how many templates it contains, and also allows locking to stop more templates from being added. `TemplateManager` manages each `Template`, keeping track of what the max mint is, how many NFTs have been minted from it, whether metadata can still be modified, and whether minting is still unlocked.

There are also two libraries in the `lib` folder - `AddressedIndexedBitmap.sol` and `TemplateBasedId.sol`. `AddressedIndexedBitmap` was already mentioned above, but `TemplateBasedId` provides a 1-1 mapping from `(uint64 setId, uint64 templateId) <=> uint256 id`), in order to adhere to `IERC1155`.

## Development

- `yarn` - install all node dependencies
- `yarn clean` - remove all hardhat generated files
- `yarn compile` - compile Solidity files and generate docs
- `yarn build` - clean and compile
- `yarn test` - build and run tests (and show gas usage information)
- `yarn coverage` - generate coverage reports

# Solidity API

## MetadataManager

### State

```solidity
struct State {
  string _contractUri;
  string tokenUri;
  mapping(uint256 => string) tokenUriOverrides;
  struct LockManager.State locks;
}
```

### contractUri

```solidity
function contractUri(struct MetadataManager.State self) internal view returns (string)
```

### uri

```solidity
function uri(struct MetadataManager.State self, uint64 setId, uint64 templateId, uint64 serialNumber) internal view returns (string)
```

### modifyContractUri

```solidity
function modifyContractUri(struct MetadataManager.State self, string newContractUri) internal
```

### modifyTokenUri

```solidity
function modifyTokenUri(struct MetadataManager.State self, string newTokenUri) internal
```

### modifySetOverrides

```solidity
function modifySetOverrides(struct MetadataManager.State self, uint64[] setIds, string[] newTokenUris) internal
```

### modifyTemplateOverrides

```solidity
function modifyTemplateOverrides(struct MetadataManager.State self, uint64 setId, uint64[] templateIds, string[] newTokenUris) internal
```

### modifySerialOverrides

```solidity
function modifySerialOverrides(struct MetadataManager.State self, uint64 setId, uint64 templateId, uint64[] serialNumbers, string[] newTokenUris) internal
```

### lockContract

```solidity
function lockContract(struct MetadataManager.State self) internal
```

### lockSets

```solidity
function lockSets(struct MetadataManager.State self, uint64[] setIds) internal
```

### lockSetRange

```solidity
function lockSetRange(struct MetadataManager.State self, uint64 setIdStart, uint64 setIdEnd) internal
```

### lockTemplates

```solidity
function lockTemplates(struct MetadataManager.State self, uint64 setId, uint64[] templateIds) internal
```

### lockTemplateRange

```solidity
function lockTemplateRange(struct MetadataManager.State self, uint64 setId, uint64 templateIdStart, uint64 templateIdEnd) internal
```

### _getBestUri

```solidity
function _getBestUri(struct MetadataManager.State self, uint64 setId, uint64 templateId, uint64 serialNumber) private view returns (string)
```

## MintManager

### Template

```solidity
struct Template {
  mapping(uint256 => uint256) balances;
  uint64 minted;
  uint64 maxMint;
}
```

### Set

```solidity
struct Set {
  uint64 numTemplates;
}
```

### State

```solidity
struct State {
  mapping(uint256 => struct MintManager.Set) sets;
  mapping(uint256 => struct MintManager.Template) templates;
  struct LockManager.State locks;
  uint64 numSets;
}
```

### addressHasToken

```solidity
function addressHasToken(struct MintManager.State self, address addr, uint64 setId, uint64 templateId, uint64 serialNumber) internal view returns (bool)
```

### doesSetExist

```solidity
function doesSetExist(struct MintManager.State self, uint64 setId) internal view returns (bool)
```

### doesTemplateExist

```solidity
function doesTemplateExist(struct MintManager.State self, uint64 setId, uint64 templateId) internal view returns (bool)
```

### checkSetExists

```solidity
function checkSetExists(struct MintManager.State self, uint64 setId) internal view
```

### checkTemplateExists

```solidity
function checkTemplateExists(struct MintManager.State self, uint64 setId, uint64 templateId) internal view
```

### numberOfSets

```solidity
function numberOfSets(struct MintManager.State self) internal view returns (uint64)
```

### numberOfTemplates

```solidity
function numberOfTemplates(struct MintManager.State self, uint64 setId) internal view returns (uint64)
```

### numberMinted

```solidity
function numberMinted(struct MintManager.State self, uint64 setId, uint64 templateId) internal view returns (uint64)
```

### addSets

```solidity
function addSets(struct MintManager.State self, uint64 numSets) internal
```

### addTemplates

```solidity
function addTemplates(struct MintManager.State self, uint64 setId, uint64 numTemplates) internal
```

### mint

```solidity
function mint(struct MintManager.State self, address[] to, uint64 setId, uint64[] templateIds, uint64[] amounts) internal
```

### lockContract

```solidity
function lockContract(struct MintManager.State self) internal
```

### lockSets

```solidity
function lockSets(struct MintManager.State self, uint64[] setIds) internal
```

### lockTemplates

```solidity
function lockTemplates(struct MintManager.State self, uint64 setId, uint64[] templateIds) internal
```

### setMaxMints

```solidity
function setMaxMints(struct MintManager.State self, uint64 setId, uint64[] templateIds, uint64[] maxMints) internal
```

### transfer

```solidity
function transfer(struct MintManager.State self, address from, address to, uint256[] tokenIds) internal
```

### burn

```solidity
function burn(struct MintManager.State self, address from, uint256[] tokenIds) internal
```

## OperatorManager

### State

```solidity
struct State {
  mapping(uint256 => bool) operators;
}
```

### isApproved

```solidity
function isApproved(struct OperatorManager.State self, address account, address operator) internal view returns (bool)
```

### checkApproved

```solidity
function checkApproved(struct OperatorManager.State self, address account, address operator) internal view
```

### modifyApproval

```solidity
function modifyApproval(struct OperatorManager.State self, address account, address operator, bool approved) internal
```

### _operatorKey

```solidity
function _operatorKey(address account, address operator) private pure returns (uint256)
```

## RoleManager

### _CONTRACT_ADMIN_BIT

```solidity
uint64 _CONTRACT_ADMIN_BIT
```

### State

```solidity
struct State {
  mapping(uint256 => uint256) roles;
}
```

### isContractAdmin

```solidity
function isContractAdmin(struct RoleManager.State self, address addr) internal view returns (bool)
```

### isSetAdmin

```solidity
function isSetAdmin(struct RoleManager.State self, address addr, uint64 setId) internal view returns (bool)
```

### checkContractAdmin

```solidity
function checkContractAdmin(struct RoleManager.State self, address addr) internal view
```

### checkSetAdmin

```solidity
function checkSetAdmin(struct RoleManager.State self, address addr, uint64 setId) internal view
```

### grantContractAdmin

```solidity
function grantContractAdmin(struct RoleManager.State self, address[] addrs) internal
```

### grantSetAdmin

```solidity
function grantSetAdmin(struct RoleManager.State self, uint64[] setIds, address[] addrs) internal
```

### grantSetRangeAdmin

```solidity
function grantSetRangeAdmin(struct RoleManager.State self, uint64 fromSetId, uint64 toSetId, address[] addrs) internal
```

### revokeContractAdmin

```solidity
function revokeContractAdmin(struct RoleManager.State self, address[] addrs) internal
```

### revokeSetRangeAdmin

```solidity
function revokeSetRangeAdmin(struct RoleManager.State self, uint64 fromSetId, uint64 toSetId, address[] addrs) internal
```

## UpgradeManager

### State

```solidity
struct State {
  mapping(address => bool) admins;
}
```

### isAdmin

```solidity
function isAdmin(struct UpgradeManager.State self, address account) internal view returns (bool)
```

### checkAdmin

```solidity
function checkAdmin(struct UpgradeManager.State self, address account) internal view
```

### grantAdmin

```solidity
function grantAdmin(struct UpgradeManager.State self, address account) internal
```

### revokeAdmin

```solidity
function revokeAdmin(struct UpgradeManager.State self, address account) internal
```

## NiftoryOptimizedERC1155

### AdminsAssigned

```solidity
event AdminsAssigned(uint64 setId, address[] admins)
```

### AdminsRevoked

```solidity
event AdminsRevoked(uint64 setId, address[] admins)
```

### SetsAdded

```solidity
event SetsAdded(uint64[] setIds)
```

### SetsLocked

```solidity
event SetsLocked(uint64[] setIds)
```

### TemplatesAdded

```solidity
event TemplatesAdded(uint64 setId, uint64[] templateIds)
```

### TemplatesMetadataLocked

```solidity
event TemplatesMetadataLocked(uint64 setId, uint64[] templateIds)
```

### SetMetadataLocked

```solidity
event SetMetadataLocked(uint64 setId)
```

### TemplatesMaxMintModified

```solidity
event TemplatesMaxMintModified(uint64 setId, uint64[] templateIds, uint64[] newMaxes)
```

### TemplatesMintingLocked

```solidity
event TemplatesMintingLocked(uint64 setId, uint64[] templateIds)
```

### SetMintingLocked

```solidity
event SetMintingLocked(uint64 setId)
```

### _roleManager

```solidity
struct RoleManager.State _roleManager
```

### _operatorManager

```solidity
struct OperatorManager.State _operatorManager
```

### _mintManager

```solidity
struct MintManager.State _mintManager
```

### _metadataManager

```solidity
struct MetadataManager.State _metadataManager
```

### constructor

```solidity
constructor() public
```

### initialize

```solidity
function initialize(address owner, string contractUri, string tokenUri) public
```

### supportsInterface

```solidity
function supportsInterface(bytes4 interfaceId) public pure returns (bool)
```

_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._

### balanceOf

```solidity
function balanceOf(address account, uint256 id) public view returns (uint256)
```

_Returns the amount of tokens of token type `id` owned by `account`.

Requirements:

- `account` cannot be the zero address._

### balanceOfBatch

```solidity
function balanceOfBatch(address[] accounts, uint256[] ids) public view returns (uint256[])
```

_xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.

Requirements:

- `accounts` and `ids` must have the same length._

### setApprovalForAll

```solidity
function setApprovalForAll(address operator, bool approved) public
```

_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._

### isApprovedForAll

```solidity
function isApprovedForAll(address account, address operator) public view returns (bool)
```

_Returns true if `operator` is approved to transfer ``account``'s tokens.

See {setApprovalForAll}._

### safeTransferFrom

```solidity
function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes) public
```

### safeBatchTransferFrom

```solidity
function safeBatchTransferFrom(address from, address to, uint256[] ids, uint256[] amounts, bytes) public
```

### uri

```solidity
function uri(uint256 id) public view returns (string)
```

_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._

### contractURI

```solidity
function contractURI() public view returns (string)
```

### _checkOwner

```solidity
function _checkOwner() internal view
```

_Throws if the sender is not the owner._

### burn

```solidity
function burn(uint256[] ids) public
```

### addSets

```solidity
function addSets(uint64 numSets) public
```

### addTemplates

```solidity
function addTemplates(uint64 setId, uint64 numTemplates) public
```

### mint

```solidity
function mint(address[] to, uint64 setId, uint64[] templateIds, uint64[] amounts) public
```

### lockMintingForContract

```solidity
function lockMintingForContract() public
```

### lockMintingForSets

```solidity
function lockMintingForSets(uint64[] setIds) public
```

### lockMintingForTemplates

```solidity
function lockMintingForTemplates(uint64 setId, uint64[] templateIds) public
```

### setMaxMints

```solidity
function setMaxMints(uint64 setId, uint64[] templateIds, uint64[] maxMints) public
```

### modifyContractMetadataUri

```solidity
function modifyContractMetadataUri(string newUri) public
```

### modifyTokenMetadataUri

```solidity
function modifyTokenMetadataUri(string newUri) public
```

### modifySetMetadataOverrides

```solidity
function modifySetMetadataOverrides(uint64[] setIds, string[] newUris) public
```

### modifyTemplateMetadataOverrides

```solidity
function modifyTemplateMetadataOverrides(uint64 setId, uint64[] templateIds, string[] newUris) public
```

### modifySerialMetadataOverrides

```solidity
function modifySerialMetadataOverrides(uint64 setId, uint64 templateId, uint64[] serialNumbers, string[] newUris) public
```

### lockMetadataForContract

```solidity
function lockMetadataForContract() public
```

### lockMetadataForSets

```solidity
function lockMetadataForSets(uint64[] setIds) public
```

### lockMetadataForTemplates

```solidity
function lockMetadataForTemplates(uint64 setId, uint64[] templateIds) public
```

### grantContractAdmin

```solidity
function grantContractAdmin(address[] admins) public
```

### grantSetAdmin

```solidity
function grantSetAdmin(uint64[] setIds, address[] admins) public
```

### grantSetRangeAdmin

```solidity
function grantSetRangeAdmin(uint64 fromSetId, uint64 toSetId, address[] admins) public
```

## Beacon

### _upgradeManager

```solidity
struct UpgradeManager.State _upgradeManager
```

### constructor

```solidity
constructor(address implementation) public
```

### _checkOwner

```solidity
function _checkOwner() internal view
```

_Throws if the sender is not the owner._

### grantAdmin

```solidity
function grantAdmin(address account) public
```

### revokeAdmin

```solidity
function revokeAdmin(address account) public
```

### deployProxy

```solidity
function deployProxy(bytes data, bool forceCall) public returns (address proxy)
```

## BeaconProxy

### _BEACON_SLOT

```solidity
bytes32 _BEACON_SLOT
```

### BeaconUpgraded

```solidity
event BeaconUpgraded(address beacon)
```

### _roleManager

```solidity
struct RoleManager.State _roleManager
```

### constructor

```solidity
constructor(address beacon, bytes data, bool forceCall) public payable
```

### _implementation

```solidity
function _implementation() internal view returns (address)
```

_This is a virtual function that should be overridden so it returns the address to which the fallback function
and {_fallback} should delegate._

### redirectBeaconProxy

```solidity
function redirectBeaconProxy(address newBeacon, bytes data, bool forceCall) public
```

### _setBeacon

```solidity
function _setBeacon(address newBeacon, bytes data, bool forceCall) private
```

## AddressIndexedBitmap

A bitmap that can be efficiently indexed by an (address, uint64)
pair.

_Best if used as a decorator for a mapping of (uint256 => uint256)_

### _ADDRESS_SHIFT

```solidity
uint256 _ADDRESS_SHIFT
```

### getBit

```solidity
function getBit(mapping(uint256 => uint256) bitmap, address addr, uint64 index) internal view returns (bool)
```

### setBit

```solidity
function setBit(mapping(uint256 => uint256) bitmap, address addr, uint64 index) internal
```

set the bit at position `index` for `addr` in `bitmap`

#### Parameters

| Name | Type | Description |
| ---- | ---- | ----------- |
| bitmap | mapping(uint256 &#x3D;&gt; uint256) | the underlying bitmap - target of decorator |
| addr | address | the address to index into the bitmap |
| index | uint64 | the bit to set |

### setBitRange

```solidity
function setBitRange(mapping(uint256 => uint256) bitmap, address addr, uint64 start, uint64 end) internal
```

### clearBit

```solidity
function clearBit(mapping(uint256 => uint256) bitmap, address addr, uint64 index) internal
```

clear the bit at position `index` for `addr` in `bitmap`

#### Parameters

| Name | Type | Description |
| ---- | ---- | ----------- |
| bitmap | mapping(uint256 &#x3D;&gt; uint256) | the underlying bitmap - target of decorator |
| addr | address | the address to index into the bitmap |
| index | uint64 | the bit to clear |

### clearBitRange

```solidity
function clearBitRange(mapping(uint256 => uint256) bitmap, address addr, uint64 start, uint64 end) internal
```

### _addressKey

```solidity
function _addressKey(address addr) private pure returns (uint256)
```

## ArrayOps

### singleton

```solidity
function singleton(address a) internal pure returns (address[])
```

### singleton

```solidity
function singleton(uint256 a) internal pure returns (uint256[])
```

### singleton

```solidity
function singleton(uint64 a) internal pure returns (uint64[])
```

### singleton

```solidity
function singleton(bool a) internal pure returns (bool[])
```

### fill

```solidity
function fill(address[] arr, address a) internal pure
```

## BitmapOps

Library for manipulating bitmaps. A bitmap is a uint256 -> uint256
mapping. It is assumed that the "word selector" is actually 64 bits, but we
use 256 bits for the mapping key because we can do more with it. However,
this means that we always need to provide the full key separately.

### getBit

```solidity
function getBit(mapping(uint256 => uint256) bitmap, uint256 key, uint64 index, uint256 subWordIndexShift) internal view returns (bool)
```

### getBitRangeForWord

```solidity
function getBitRangeForWord(mapping(uint256 => uint256) bitmap, uint256 key, uint64 start, uint64 end, uint256 subWordIndexShift) internal view returns (uint256)
```

### setBit

```solidity
function setBit(mapping(uint256 => uint256) bitmap, uint256 key, uint64 index, uint256 subWordIndexShift) internal
```

### setBitRange

```solidity
function setBitRange(mapping(uint256 => uint256) bitmap, uint256 key, uint64 start, uint64 end, uint256 subWordIndexShift) internal
```

### clearBit

```solidity
function clearBit(mapping(uint256 => uint256) bitmap, uint256 key, uint64 index, uint256 subWordIndexShift) internal
```

### clearBitRange

```solidity
function clearBitRange(mapping(uint256 => uint256) bitmap, uint256 key, uint64 start, uint64 end, uint256 subWordIndexShift) internal
```

### _wordIndex

```solidity
function _wordIndex(uint256 key, uint64 index, uint256 subWordIndexShift) private pure returns (uint256)
```

## BytesOps

### toAsciiBytes

```solidity
function toAsciiBytes(uint64 value) internal pure returns (bytes)
```

### bytesMatchAtOffset

```solidity
function bytesMatchAtOffset(bytes input, bytes target, uint256 offset) internal pure returns (bool)
```

### slice

```solidity
function slice(bytes input, uint256 start, uint256 end) internal pure returns (bytes)
```

### flatten

```solidity
function flatten(bytes[] input, uint256 numSegments) internal pure returns (bytes)
```

## IdCodec

### _TEMPLATE_SHIFT

```solidity
uint256 _TEMPLATE_SHIFT
```

### _SET_SHIFT

```solidity
uint256 _SET_SHIFT
```

### Decoded

```solidity
struct Decoded {
  uint64 setId;
  uint64 templateId;
  uint64 serialNumber;
}
```

### encodeAsSetMask

```solidity
function encodeAsSetMask(uint64 setId) internal pure returns (uint256)
```

### encodeAsTemplateMask

```solidity
function encodeAsTemplateMask(uint64 setId, uint64 templateId) internal pure returns (uint256)
```

### encodeAsTokenId

```solidity
function encodeAsTokenId(uint64 setId, uint64 templateId, uint64 serialNumber) internal pure returns (uint256)
```

### decodeSetId

```solidity
function decodeSetId(uint256 tokenId) internal pure returns (uint64)
```

### decodeTemplateId

```solidity
function decodeTemplateId(uint256 tokenId) internal pure returns (uint64)
```

### decodeSerialNumber

```solidity
function decodeSerialNumber(uint256 tokenId) internal pure returns (uint64)
```

### decode

```solidity
function decode(uint256 tokenId) internal pure returns (struct IdCodec.Decoded decoded)
```

## LockManager

This library provides arbitrary bitmap-based locking facilities for
Contracts -  0 | 0              | 0                   | 0
Sets      -  0 | setIdWordIndex | 0                   | 0
Templates -  0 | setId          | templateIdWordIndex | 0
Serials   -  0 | setId          | templateId          | serialNumberWordIndex
In the above table,
- 0 represents a 64 bit word
- setId, templateId, serialNumber are 64 bit numbers
- each value in the mapping
- a 'word' is a 256 bit segment of the bitmap, LSB aligned
- *WordIndex is the 64-bit index of the word in the bitmap (i / 256)

### _SET_SHIFT

```solidity
uint256 _SET_SHIFT
```

### _TEMPLATE_SHIFT

```solidity
uint256 _TEMPLATE_SHIFT
```

### _CONTRACT_KEY

```solidity
uint256 _CONTRACT_KEY
```

### _SET_BLANK_KEY

```solidity
uint256 _SET_BLANK_KEY
```

### State

```solidity
struct State {
  mapping(uint256 => uint256) locks;
}
```

### isContractLocked

```solidity
function isContractLocked(struct LockManager.State self) internal view returns (bool)
```

### isSetLocked

```solidity
function isSetLocked(struct LockManager.State self, uint64 setId) internal view returns (bool)
```

### isTemplateLocked

```solidity
function isTemplateLocked(struct LockManager.State self, uint64 setId, uint64 templateId) internal view returns (bool)
```

### isSerialLocked

```solidity
function isSerialLocked(struct LockManager.State self, uint64 setId, uint64 templateId, uint64 serialNumber) internal view returns (bool)
```

### checkContractUnlocked

```solidity
function checkContractUnlocked(struct LockManager.State self) internal view
```

### checkSetUnlocked

```solidity
function checkSetUnlocked(struct LockManager.State self, uint64 setId) internal view
```

### checkTemplateUnlocked

```solidity
function checkTemplateUnlocked(struct LockManager.State self, uint64 setId, uint64 templateId) internal view
```

### lockContract

```solidity
function lockContract(struct LockManager.State self) internal
```

### lockSets

```solidity
function lockSets(struct LockManager.State self, uint64[] setIds) internal
```

### checkSerialUnlocked

```solidity
function checkSerialUnlocked(struct LockManager.State self, uint64 setId, uint64 templateId, uint64 serialNumber) internal view
```

### lockSetRange

```solidity
function lockSetRange(struct LockManager.State self, uint64 start, uint64 end) internal
```

### lockTemplates

```solidity
function lockTemplates(struct LockManager.State self, uint64 setId, uint64[] templateIds) internal
```

### lockTemplateRange

```solidity
function lockTemplateRange(struct LockManager.State self, uint64 setId, uint64 start, uint64 end) internal
```

### lockSerials

```solidity
function lockSerials(struct LockManager.State self, uint64 setId, uint64 templateId, uint64[] serialNumbers) internal
```

### lockSerialRange

```solidity
function lockSerialRange(struct LockManager.State self, uint64 setId, uint64 templateId, uint64 start, uint64 end) internal
```

### _templateBlankKey

```solidity
function _templateBlankKey(uint64 setId) private pure returns (uint256)
```

### _serialBlankKey

```solidity
function _serialBlankKey(uint64 setId, uint64 templateId) private pure returns (uint256)
```

### _indexToWordIndex

```solidity
function _indexToWordIndex(uint64 index) private pure returns (uint256)
```

### _setIdWordIndex

```solidity
function _setIdWordIndex(uint64 setId) private pure returns (uint256)
```

### _templateIdWordIndex

```solidity
function _templateIdWordIndex(uint64 setId, uint64 templateId) private pure returns (uint256)
```

### _serialNumberWordIndex

```solidity
function _serialNumberWordIndex(uint64 setId, uint64 templateId, uint64 serialNumber) private pure returns (uint256)
```

## UriEncoder

### _SET_TAG

```solidity
bytes _SET_TAG
```

### _TEMPLATE_TAG

```solidity
bytes _TEMPLATE_TAG
```

### _SERIAL_TAG

```solidity
bytes _SERIAL_TAG
```

### _MAX_SEGMENTS

```solidity
uint256 _MAX_SEGMENTS
```

### encode

```solidity
function encode(string uri, uint64 setId, uint64 templateId, uint64 serialNumber) internal pure returns (string)
```

---
_Source: https://npm.io/package/@niftory/niftory-solidity · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
