sciNFTist_eth

Results 7 comments of sciNFTist_eth

In this comment I will explain how we can Index batch minted tokens by lazy indexing. `_ownedTokens` mapping is the data structure responsible for indexing an arbitrary owner tokens, but...

In this comment I'm going to explain how we can calculate the totalSupply of the token. `_totalConsecutiveSupply()` count how many tokens were batch minted, and this value won't change after...

Hi @TrejGun , thank you for reading, 1. If you want to batch mint outside of contract constructor you should be aware that if you made single mint between batch...

I'm glad that I could help, 1. there is nothing that prevent you to use `{_mintConsecutive}` twice, maybe data type isn't right if you are using ERC721Consecutive.sol since `_mintConsecutive(address to,...

for updating _balances you can use [{_beforeTokenTransfer}](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/1575cc6908f0f38bfb36d459c4ce7295f0f89c49/contracts/token/ERC721/ERC721.sol#L437) hook in ERC721 OpenZepplen v4.8.0 and for _owners you can override the` _ownerOf(tokenId)` see [{ownerOf}](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/1575cc6908f0f38bfb36d459c4ce7295f0f89c49/contracts/token/ERC721/ERC721.sol#L198) but you should be careful in your implementation.

Hey @TrejGun sorry I didn't seen your comment sooner. great point I made initial `_totalConsecutiveSupply()` internal. it comes handy in development. but `{_safeMint}` is part of the OpenZeppelin ERC721.sol and...

also tried ``` export GITHUB_TOKEN='username:ghp_0000000000000000000000000000000000000' ``` in dotenv and no luck also run also tried in terminal ``` export GITHUB_TOKEN='username:ghp_0000000000000000000000000000000000000' ``` now echo $GITHUB_TOKEN return the value but still no...