Skip to content

Latest commit

 

History

History
36 lines (21 loc) · 1.23 KB

boundnft-registry.md

File metadata and controls

36 lines (21 loc) · 1.23 KB

BoundNFT Registry

BoundNFT Registry is the hub of all boundNFT tokens.

The source code can be found here, with the latest deployed address listed in the Deployed Contracts.

Methods

allBNFTAssetLength

function allBNFTAssetLength() external view returns (uint256)

Query the length of all NFT assets.

getBNFTAddressesByIndex

function getBNFTAddressesByIndex(uint256 index) external view returns (address bNftProxy, address bNftImpl)

Query boundNFT contract address of given index.

getBNFTAddresses

function getBNFTAddresses(address nftAsset) external view returns (address bNftProxy, address bNftImpl)

Query boundNFT contract address of given NFT asset.

Parameter Name Type Description
nftAsset address The address of the underlying asset

Return Values

Parameter Name Type Description
bNftProxy address the proxy address of boundNFT
bNftImpl address the implementation address of boundNFT