https://github.com/dfinity/experimental-minting-tool
CLI tool for minting NFT's
https://github.com/dfinity/experimental-minting-tool
Last synced: 8 months ago
JSON representation
CLI tool for minting NFT's
- Host: GitHub
- URL: https://github.com/dfinity/experimental-minting-tool
- Owner: dfinity
- License: apache-2.0
- Created: 2022-02-23T21:31:34.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-30T17:40:24.000Z (about 3 years ago)
- Last Synced: 2023-04-10T07:31:59.280Z (about 3 years ago)
- Language: Rust
- Size: 43.9 KB
- Stars: 10
- Watchers: 35
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Minting Tool
## What this is
This is an (experimental) minting tool for simple NFTs for [DIP721] NFT canisters on the [Internet Computer][IC] that support the minting operation.
## What this is not
The minting tool only knows how to mint to existing NFT canisters; it does not provide one itself. An example NFT canister can be found in the [examples] repository.
## Installation
To install the minting tool you will need an installation of [Rust], updated at least to 1.65.0. Rust is usually installed via [Rustup], and there may be [extra steps depending on your operating system][instructions].
With Rust installed, run the following command:
```sh
cargo install --git https://github.com/dfinity/experimental-minting-tool --locked
```
This will install the minting tool into your `PATH`, accessible via the `minting-tool` command.
See `minting-tool --help` for usage details.
[DIP721]: https://github.com/Psychedelic/DIP721
[IC]: https://smartcontracts.org
[examples]: https://github.com/dfinity/examples
[Rust]: https://rust-lang.org
[Rustup]: https://rustup.rs
[instructions]: https://doc.rust-lang.org/stable/book/ch01-01-installation.html