Example Module
Last updated
Last updated
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.
The following are a collection of understood functions that should be defined in your implementation.
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.
Name | Type | Description |
---|---|---|
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.
Name | Type | Description |
---|---|---|
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.
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.
Checks if a tokenId is eligible to be received by the vault.
Checks if an array of tokenIds are eligible to be received by the vault.
Checks if all tokenIds in an array are eligible to be received by the vault.
Checks if all provided NFTs are NOT eligible. This is needed for mint requesting where all NFTs provided must be ineligible.
Called before tokenIds are minted into the NFTX vault.
This function is not currently implemented in the NFTX Vault.
Called after tokenIds have been minted into the NFTX vault.
This function is not currently implemented in the NFTX Vault.
Called before tokenIds are redeemed from the NFTX vault.
This function is not currently implemented in the NFTX Vault.
Called after tokenIds are redeemed from the NFTX vault.
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.
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
[0]
string
The name of the eligibility module
[0]
bool
If the eligibility module is finalized
[0]
address
The address of the asset being referenced by the module
initData
bytes
This allows for abi encoded bytes to be decoded when initialised and allow the module implementation to vary based on the vault's requirements.
tokenId
uint256
A tokenId to check the eligibility of
[0]
bool
True if the tokenId is eligible to be received by the module's logic for the vault, and False if it is not.
tokenIds
uint256[]
An array of tokenIds to check the eligibility of
[0]
bool[]
True if the tokenId is eligible to be received by the module's logic for the vault, and False if it is not. The array of booleans will follow the same order as the tokenIds were passed.
tokenIds
uint256[]
An array of tokenIds to check the eligibility of
[0]
bool
True if all tokenIds are eligible to be received by the module's logic for the vault, and False if any are not.
tokenIds
uint256[]
An array of tokenIds to check the eligibility of
[0]
bool
True if none tokenIds are eligible to be received by the module's logic for the vault, and False if any are.
tokenIds
uint256[]
An array of tokenIds
tokenIds
uint256[]
An array of tokenIds
tokenIds
uint256[]
An array of tokenIds
tokenIds
uint256[]
An array of tokenIds
_tokenId
uint256
A tokenId to check the eligibility of
[0]
bool
A boolean representation of the eligibility of the tokenId