This small command line tool let's you create a blazing fast snapshot of all the owners of a NFT collection. For a 10k NFT collection it usally takes 1-2 seconds.
Currently supported Networks:
- Ethereum Mainnet
- Polygon Mainnet
- Binance Smart Chain
git clone https://github.com/nicoelzer/nft-snapshot
yarn
Modify the configuration file to your needs
{
"provider": "https://mainnet.infura.io/v3/<key>",
"contractAddress": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
"startId": 0,
"endId": 9999,
"outputFile": "snapshot.json"
}
yarn start
{
stats: {
total_nfts: 10,
unique_owners: 4,
unique_owners_percentage: '40.00'
},
holders: [
{
owner: '0xcBb70653e9FaD92CDC7B432d846Df251E78A8ebc',
amount: 4,
tokens: [1,2,3,4]
},
{
owner: '0xe0609Fa28e5521919c2a19f773ef0AF44793406c',
amount: 3,
tokens: [5,6,7]
},
{
owner: '0xad12F4535EA9ab41365eBD282f304dDE69c221CE',
amount: 2,
tokens: [8,9]
},
{
owner: '0x20e10D173a7c8319C143c994a0b198b201312a24',
amount: 1,
tokens: [10]
}
],
tokenList: [
{ tokenId: 0, owner: '0xcBb70653e9FaD92CDC7B432d846Df251E78A8ebc' },
{ tokenId: 1, owner: '0xe0609Fa28e5521919c2a19f773ef0AF44793406c' },
{ tokenId: 2, owner: '0xad12F4535EA9ab41365eBD282f304dDE69c221CE' },
{ tokenId: 3, owner: '0x20e10D173a7c8319C143c994a0b198b201312a24' }
]
}