nft-address-finder
v1.8.1
Published
Helps find a master NFT, and all of its prints, on the Solana blockchain
Downloads
20
Readme
NFT Address Finder
This project contains a function that can find a master NFT, and all of its prints, on the Solana blockchain, using any associated address as input.
Use
const { findNftAddresses } = require ('nft-address-finder');
const resp = await findNftAddresses('6vCYMSFkpH9oD2f1zFxXTodWnCvPfnt3NofyhbUrZU97');
console.log(resp);
/*
{
masterAddress: '6vCYMSFkpH9oD2f1zFxXTodWnCvPfnt3NofyhbUrZU97',
printAddresses: [
'GGjvuJHpHVr2p4E194we2FFJbipv5snbTzsV7fyECidA',
'7V7ALnEVAqgBmy9rUdvBQLQgY4MTL193RwFXKHCjyPVL',
'4i5nKhjTfuddPLEr2w8bNvUC8VoxT4Lfu4dEsVbsRRzf'
]
}
*/
Build
Build with npm run build
test with npm test
.