Skip to content

Commit

Permalink
nft name separation from collection name
Browse files Browse the repository at this point in the history
  • Loading branch information
juliancwirko committed Apr 24, 2022
1 parent e587088 commit eb002fc
Show file tree
Hide file tree
Showing 12 changed files with 390 additions and 70 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### [1.6.0](https://github.com/ElvenTools/elven-nft-minter-sc/releases/tag/v1.6.0) (2022-04-24)
- 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.

### [1.5.2](https://github.com/ElvenTools/elven-nft-minter-sc/releases/tag/v1.5.2) (2022-03-05)
- elrond-wasm upgraded to 0.29.3
- cleanup for temporary sha256 functionality
Expand Down
172 changes: 156 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "elven-nft-minter"
version = "1.5.2"
version = "1.6.0"
authors = ["Julian Ćwirko <julian.cwirko@gmail.com>"]
edition = "2018"
publish = false
Expand All @@ -9,10 +9,10 @@ publish = false
path = "src/lib.rs"

[dependencies.elrond-wasm]
version = "0.29.3"
version = "0.30.0"

[dev-dependencies.elrond-wasm-debug]
version = "0.29.3"
version = "0.30.0"

[dev-dependencies]
num-bigint = "0.4.2"
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@
- Quick jumpstart: [www.elven.tools/docs/jump-start.html](https://www.elven.tools/docs/jump-start.html)
- Intro video: [www.youtu.be/resGP6a7_34](https://youtu.be/resGP6a7_34)

🚨 Be aware that the Smart Contract doesn't have any audits. It has complete functionality for the first version, but it is still needs some improvements. Test it first on the devnet/testnet. 🚨
🚨 Be aware that the Smart Contract doesn't have any audits. It has complete functionality for the first version, but it still needs some improvements. Test it first on the devnet/testnet. 🚨

**You can use [elven-tools-cli](https://github.com/ElvenTools/elven-tools-cli) for deployment and interactions!**

**You can use [elven-tools-dapp](https://github.com/ElvenTools/elven-tools-dapp) as your frontend dapp for minting process! (NextJS based app)**

### What is it?

You are reading about the Smart Contract designed for the Elrond blockchain. Its primary purpose is to provide a simple logic for minting and buying a previously configured collection of NFTs. It does it in a randomized way. Version 1 of it supports:
Expand Down
Loading

0 comments on commit eb002fc

Please sign in to comment.