Get List Derivative NFT By Original
Request
try {
const mainnetClient = nft2Client.getNFT2ContractMultichain('mainnet');
const { nfts, total } = await mainnetClient.getNFTsByOriginal(
43114,
"0x...", // original collection address
"123", // original token id
{
limit: 20,
offset: 0
}
);
console.log(nfts, total)
} catch (e) {
console.error(e);
}Parameters
Response
Last updated