Releases: ElvenTools/elven-nft-minter-sc
Releases · ElvenTools/elven-nft-minter-sc
v1.6.3
- elrond-wasm framework update to 0.31.1
- small adjustments in the code
v1.6.2
- new endpoints:
getTotalSupply
- total collection supplyisMintingPaused
- check if minting is currently pausedgetTotalSupplyOfCurrentDrop
- total supply per current drop
v1.6.1
- new endpoint
clearAllowlist
- It will clear the whole allowlist. The best is to keep a max of 1300 addresses in the allowlist at a time. Of course, if only you plan to clear it later. If you keep more and want to clear it, you can reach the gas limit for a transaction. So it would be best to split the allowlist per drop, keep it as small as possible and clear it each time. - new endpoint
removeAllowlistAddress
- removes a single address from allowlist
v1.6.0
- elrond-wasm upgraded to 0.30.0
- allow using a different name for NFT tokens. Till now, it was the name of the collection handler
- name change for the storage for the collection token name.
getCollectionTokenName
will now return collection name, andgetNftTokenName
will return the NFTs name if set.
v1.5.2
- elrond-wasm upgraded to 0.29.3
- cleanup for temporary sha256 functionality
v1.5.1
- bugfix related to not correctly handling the
unsetDrop
endpoint. The limits per address per drop were not correct when usingunsetDrop
. - new query endpoint added
isDropActive
.
v1.5.0
- important performance fixes provided by Dorin (@dorin-iancu) (Elrond core dev) 🙏
- upgraded to 0.28.0
- rewrite the URL creation to use static array instead of to_string
- removed SCResult (no longer needed, require stops execution immediately)
- using static buffers for hashing instead of the default legacy implementation (which uses dynamic allocation)
v1.4.2
- fixed bug related to the limits per address - u32 underflow in one case
v1.4.1
v1.4.0
- allowlist functionality - when you enable it, only eligible addresses from the list can mint. You can add more addresses at any time. The amount of tokens per address is the same as usual. You can always change that per drop.
- replace all storage
set
toset_if_empty
- preparation for the upgrade tests and CLI tooling