NFTXVaultUpgradeableV3
NFTXVaultUpgradeableV3.sol
The NFTX vault implementation used by the vault beacon proxy (and therefore all vaults).
Table of Contents
Constants
BASE
10^18.
WETH
WETH contract address.
CRYPTO_PUNKS
CryptoPunks contract address.
CRYPTO_KITTIES
CryptoKitties contract address.
assetAddress
Contract address of NFT collection that can enter the vault.
vaultFactory
Address of NFTX Vault Factory.
vaultId
The vault's ID number.
is1155
Whether the vault is for an ERC1155 NFT.
Variables
manager
Address of vault manager.
eligibilityStorage
Address of Eligibility Storage.
allowAllItems
Whether all NFT tokenIDs are eligible to enter this vault.
enableMint
Whether minting is enabled.
enableRedeem
Whether redeeming is enabled.
enableSwap
Whether swapping is enabled.
tokenDepositInfo
Timestamp and depositor address of each ERC721 deposit.
depositInfo1155
Quantity, depositor address, and timestamp of each ERC1155 deposit.
pointerIndex1155
Pointer index of oldest DepositInfo1155 object, for each ERC1155 tokenID.
Events
VaultInit
Emitted by __NFTXVault_init
function.
vaultId
uint256
ID of vault initialized.
assetAddress
address
NFT collection address associated with vault.
is1155
bool
Whether the NFT collection uses ERC1155.
allowAllItems
bool
Whether all tokenIDs are allowed into vault.
ManagerSet
Emitted by setManager
function.
manager
address
New vault manager address.
EligibilityDeployed
Emitted by deployEligibilityStorage
function.
moduleIndex
uint256
Eligibility module number.
eligibilityAddr
address
Address of eligibility contract just added.
EnableMintUpdated
Emitted by setVaultFeatures
function.
enabled
bool
True if minting has just been enabled, false if minting has been disabled.
EnableRedeemUpdated
Emitted by setVaultFeatures
function.
enabled
bool
True if redeeming has just been enabled, false if redeeming has been disabled.
EnableSwapUpdated
Emitted by setVaultFeatures
function.
enabled
bool
True if NFT-to-NFT swapping has just been enabled, false if it has been disabled.
Minted
Emitted by mint
function.
nftIds
uint256[]
TokenIDs of NFTs added to vault.
amounts
uint256[]
Amounts of each NFT tokenID (for ERC1155).
to
address
Recipient address that vTokens were sent to.
depositor
address
Depositor address that should receive premiums for the nftIds
deposited.
Redeemed
Emitted by redeem
function.
specificIds
uint256[]
TokenIDs of redeemed NFTs.
to
address
Recipient address that NFTs were sent to.
Swapped
Emitted by swap
function.
nftIds
uint256[]
TokenIDs of NFTs sent to vault.
amounts
uint256[]
Amounts for NFT token IDs that entered the vault, and also for NFT tokenIDs that exited the vault.
specificIds
uint256[]
TokenIDs of NFTs sent to recipient.
to
address
Recipient address that NFTs were sent to.
depositor
address
Depositor address that should receive premiums for the nftIds
deposited.
PremiumShared
Emitted by redeem
and swap
functions.
depositor
address
NFT depositor who receives bulk of premium fee.
wethPremium
uint256
WETH premium fee amount (total shared).
FeesDistributed
Emitted by mint
, redeem
and swap
functions.
wethFees
uint256
WETH fee amount distributed.
VaultShutdown
Emitted by shutdown
.
assetAddress
address
NFT collection address of shutdown vault.
numItems
uint256
Number of NFTs in vault at time of shutdown.
recipient
address
Recipient address where vault NFTs were sent.
Write Functions
mint
Mints vault tokens in exchange for depositing NFTs. Mint fee is paid in ETH.
tokenIds
uint256[]
Token IDs of NFTs being sent to vault.
amounts
uint256[]
Quantity of each NFT. Ignored for ERC721 vaults.
depositor
address
Address that should receive premium fees for tokenIds
.
to
address
Address to receive minted vToken.
msg.value
uint256
Amount of ETH to send.
vTokensMinted
uint256
The amount of vTokens minted.
redeem
Redeems NFTs by burning vToken. Redeem fee is paid in ETH or WETH.
idsOut
uint256[]
Token IDs of NFTs to redeem.
to
address
Address to receive redeemed NFTs.
wethAmount
uint256
Amount of WETH to send for fees. If set to zero, then ETH is used instead.
vTokenPremiumLimit
uint256
Max total premium fees (denominated in vToken) that the user is willing to pay.
forceFees
bool
Whether to enforce fees even if caller is set as excludedFromFees.
msg.value
uint256
Amount of ETH to send.
ethFees
uint256
Total fees paid (in WETH or ETH).
swap
Swap one or more NFTs (idsIn
) for other NFTs from the vault (idsOut
). Swap fee is paid in ETH.
idsIn
uint256[]
Token IDs of NFTs going to vault.
amounts
uint256[]
Quantity of each NFT going to vault. Ignored for ERC721.
idsOut
uint256[]
Token IDs of NFTs leaving vault.
depositor
address
Address that should receive premium fees for idsIn
.
to
address
Address to receive NFTs from vault.
vTokenPremiumLimit
uint256
Max total premium fees (denominated in vToken) that the user is willing to pay.
forceFees
bool
Whether to enforce fees even if caller is set as excludedFromFees.
msg.value
uint256
Amount of ETH to send.
ethFees
uint256
Total fees paid (in WETH or ETH).
flashLoan
Performs a flash loan. New tokens are minted and sent to receiver
, who is required to implement the IERC3156FlashBorrower
interface. By the end of the flash loan, the receiver is expected to own amount
of tokens and have them approved back to the token contract itself so they can be burned and distributed.
The fee required to execute a flash loan is paid in ETH and is the highest of the vault's mint, redeem, and swap fees. All ETH proceeds are sent to the vault's inventory stakers.
receiver
IERC3156FlashBorrowerUpgradeable
The receiver address of the flash loan.
token
address
The token to be flash loaned. Only address(this)
is supported.
amount
uint256
The amount of tokens to be loaned.
data
bytes
An arbitrary data field that is passed to the receiver.
unnamed
bool
true
if the flash loan was successful.
Privileged Functions
These functions can only be called by the vault manager or (if there is no vault manager) the contract owner.
finalizeVault
Removes the vault manager.
setVaultMetadata
Sets the name and symbol of the vault's ERC20 vToken.
name_
string
New name.
symbol_
string
New symbol.
setVaultFeatures
Sets minting, redeeming, and swapping as either on or off.
enableMint_
bool
Whether minting is enabled.
enableRedeem_
bool
Whether redeeming is enabled.
enableSwap_
bool
Whether swapping is enabled.
setFees
Sets mint, redeem, and (NFT-to-NFT) swap fees. 1e16 = 1%.
mintFee_
uint256
New mint fee.
redeemFee_
uint256
New redeem fee.
swapFee_
uint256
New swap fee (for NFT swaps).
disableVaultFees
Removes custom vault fee settings, reverting to the global/default vault fee settings.
deployEligibilityStorage
Deploys and initializes an eligibility module contract from the EligibilityManager.
moduleIndex
uint256
Index of module to deploy.
initData
bytes
ABI encoded parameters for module.
unnamed
address
Address of deployed module.
setManager
Sets the vault manager.
manager_
address
Address of new vault manager.
Owner Functions
rescueTokens
Rescues ERC20, ERC721, or ERC1155 tokens.
tt
TokenType
Enum: ERC20
, ERC721
, or ERC1155.
token
IERC20Upgradeable
Contract address of token to retrieve.
ids
uint256[]
Token IDs for ERC721 or ERC1155 NFTs. Ignored for ERC20.
amounts
uint256[]
Quantities for ERC1155 token IDs. Ignored for ERC20 and ERC721.
shutdown
Shuts the vault down and sends its NFTs to recipient
. This function is meant to be used by the DAO when a vault has lost liquidity, and the vToken is too dispersed for any one user to redeem. When this happens, one or more users can request a shutdown, which is initiated by the DAO. The DAO then sells the assets for ETH and distributes the ETH to the vToken holders.
This function works for both ERC721 and ERC1155 vaults. For ERC1155, the total amount of each tokenID will be sent to the recipient.
recipient
address
Address to receives NFTs.
tokenIds
uint256[]
TokenIDs to send (should include all held by vault).
Read Functions
nftIdAt
Retrieves the NFT token ID stored at a specified index in holdings.
holdingsIndex
uint256
Index position of holdings data to retrieve.
unnamed
uint256
NFT Token ID, if found.
allHoldings
Returns an array of all NFT token IDs held by the vault.
unnamed
uint256[]
All token IDs in holdings.
totalHoldings
Returns the number of distinct NFT token IDs in holdings.
unnamed
uint256[]
Number of distinct token IDs in holdings.
holdingsContains
Returns whether an NFT tokenId is in the vault.
tokenId
uint256
NFT tokenID to check for.
unnamed
bool
Whether the tokenID is in the vault.
vaultFees
The mint, redeem, and swap fees.
mintFee
uint256
Mint fee.
redeemFee
uint256
Redeem fee.
swapFee
uint256
Swap fee, for NFT-to-NFT swaps.
allValidNFTs
Checks whether all NFT Token IDs inputed are valid for minting vToken.
tokenIds
uint256
Token IDs of NFTs to check.
unnamed
bool
Whether all the NFT tokenIDs are valid to enter.
vTokenToETH
Calculate ETH amount corresponding to a given vToken amount, calculated via the TWAP from the NFTX AMM.
vTokenAmount
uint256
Amount of vToken to calculate in ETH.
ethAmount
uint256
ETH amount that is equal in value to the vToken amount, based on TWAP.
depositInfo1155Length
Returns length of the depositInfo1155
list for a given tokenID.
tokenId
uint256
NFT tokenID to check.
unnamed
uint256
Length of depositInfo1155[tokenId]
.
version
Returns the version of this contract.
unnamed
string
Contract version.
Last updated