Example Module

NFTXEligibility

This is a contract is intended to be inherited and overridden when creating an eligibility module. The functions outlined will be called throughout the NFTX vault journey and this abstract contract provides a number of helper functions.

https://github.com/NFTX-project/nftx-protocol-v2/blob/master/contracts/solidity/eligibility/NFTXEligibility.sol

Public Methods

The following are a collection of understood functions that should be defined in your implementation.

name

function name() public pure virtual returns (string)

Defines the constant name of the eligibility module.

Try to keep the naming convention of the eligibility module short, but desciptive as this will be displayed to end users looking to implement it.

finalized

function finalized() public view virtual returns (bool)

If the eligibility has been finalized then it can no longer be updated, meaning the processing logic can no longer be modified and it is safe to use.

targetAsset

function targetAsset() public pure virtual returns (address)

Allows the module to define an asset that is targetted. This can be subsequently used for internal calls to reference the token address being queried.

This is not a required field, and can just return address(0) if no subsequent use is needed.

__NFTXEligibility_init_bytes

function __NFTXEligibility_init_bytes(bytes initData) public virtual

Called when initialising the eligibility module, allowing configuring data to be passed and initial module contract setup to be performed.

If no further configuration is required, then we can just omit providing the bytes with an attribute name and ignore any calculation.

checkIsEligible

function checkIsEligible(uint256 tokenId) external view virtual returns (bool)

Checks if a tokenId is eligible to be received by the vault.

checkEligible

function checkEligible(uint256[] tokenIds) external view virtual returns (bool[])

Checks if an array of tokenIds are eligible to be received by the vault.

checkAllEligible

function checkAllEligible(uint256[] tokenIds) external view virtual returns (bool)

Checks if all tokenIds in an array are eligible to be received by the vault.

checkAllIneligible

function checkAllIneligible(uint256[] tokenIds) external view virtual returns (bool)

Checks if all provided NFTs are NOT eligible. This is needed for mint requesting where all NFTs provided must be ineligible.

beforeMintHook

function beforeMintHook(uint256[] tokenIds) external virtual

Called before tokenIds are minted into the NFTX vault.

This function is not currently implemented in the NFTX Vault.

afterMintHook

function afterMintHook(uint256[] tokenIds) external virtual

Called after tokenIds have been minted into the NFTX vault.

This function is not currently implemented in the NFTX Vault.

beforeRedeemHook

function beforeRedeemHook(uint256[] tokenIds) external virtual

Called before tokenIds are redeemed from the NFTX vault.

This function is not currently implemented in the NFTX Vault.

afterRedeemHook

function afterRedeemHook(uint256[] tokenIds) external virtual

Called after tokenIds are redeemed from the NFTX vault.

_checkIfEligible

function _checkIfEligible(uint256 _tokenId) internal view virtual returns (bool)

Contains logic to determine if a tokenId is eligible to be handled by the NFTX vault.

This is the minimum required logic to be processed in order to create a functioning eligibility module.

Last updated