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.
function allBNFTAssetLength() external view returns (uint256)
Query the length of all NFT assets.
function getBNFTAddressesByIndex(uint256 index) external view returns (address bNftProxy, address bNftImpl)
Query boundNFT contract address of given index.
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 |