Skip to content

Releases: ElvenTools/elven-nft-minter-sc

v1.6.3

18 May 22:06
Compare
Choose a tag to compare
  • elrond-wasm framework update to 0.31.1
  • small adjustments in the code

v1.6.2

02 May 17:28
Compare
Choose a tag to compare
  • new endpoints:
    • getTotalSupply - total collection supply
    • isMintingPaused - check if minting is currently paused
    • getTotalSupplyOfCurrentDrop - total supply per current drop

v1.6.1

30 Apr 18:26
Compare
Choose a tag to compare
  • 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

24 Apr 14:52
Compare
Choose a tag to compare
  • 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, and getNftTokenName will return the NFTs name if set.

v1.5.2

05 Mar 21:05
319b74b
Compare
Choose a tag to compare
  • elrond-wasm upgraded to 0.29.3
  • cleanup for temporary sha256 functionality

v1.5.1

27 Feb 12:57
Compare
Choose a tag to compare
  • bugfix related to not correctly handling the unsetDrop endpoint. The limits per address per drop were not correct when using unsetDrop.
  • new query endpoint added isDropActive.

v1.5.0

25 Feb 11:15
Compare
Choose a tag to compare
  • 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

17 Feb 22:24
99d26bc
Compare
Choose a tag to compare
  • fixed bug related to the limits per address - u32 underflow in one case

v1.4.1

14 Feb 23:41
ea1b81c
Compare
Choose a tag to compare
  • fix populate indexes after changes in the Elrond's architecture, check out: #34 for more details. It results in more transactions that have to be done. But for now, it is necessary.

v1.4.0

14 Feb 00:50
9154962
Compare
Choose a tag to compare
  • 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 to set_if_empty - preparation for the upgrade tests and CLI tooling