Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oxheadalpha/nft-tutorial
Tezos FA2 NFT CLI Tool And Tutorial
https://github.com/oxheadalpha/nft-tutorial
blockchain fa2 ligo nft smart-contracts taquito tezos tzip-12 tzip-16 tzip-21 tznft
Last synced: about 1 month ago
JSON representation
Tezos FA2 NFT CLI Tool And Tutorial
- Host: GitHub
- URL: https://github.com/oxheadalpha/nft-tutorial
- Owner: oxheadalpha
- License: mit
- Created: 2020-08-14T22:05:54.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-10-06T15:31:53.000Z (about 1 year ago)
- Last Synced: 2024-11-14T06:21:29.887Z (about 1 month ago)
- Topics: blockchain, fa2, ligo, nft, smart-contracts, taquito, tezos, tzip-12, tzip-16, tzip-21, tznft
- Language: TypeScript
- Homepage:
- Size: 1.26 MB
- Stars: 92
- Watchers: 10
- Forks: 25
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tutorial: Non-Fungible Tokens on Tezos Using FA2
## Tutorial
The actual tutorial is located [here](./packages/tznft/README.md).
## Packages
The repo has three following yarn workspaces (packages):
* [tezos-tools](./packages/tezos-tools/) - various utilities to interact with
[LIGO](https://ligolang.org/) compiler,
[Flextesa](https://tezos.gitlab.io/flextesa/) sandbox and
[Pinata](https://www.pinata.cloud/) IPFS from TypeScript code.* [fa2-interfaces](./packages/fa2-interfaces/) - TypeScript interfaces to
interact with FA2 contracts on blockchain.* [fa2-contracts](./packages/fa2-contracts/) - modular [LIGO](https://ligolang.org/)
implementation of FA2 smart contracts. Contract generator CLI tool `tzgen` and
[tutorial](./packages/fa2-contracts/README.md).* [tznft](./packages/tznft/) - NFT minting CLI tool `tznft` and
[tutorial](./packages/tznft/README.md).## How to Install And Use CLI Tool
Run the following command to install `tznft` CLI
`npm install -g @oxheadalpha/tznft`You can learn `tznft` command options by running `$ tznft --help` command or
following the [tutorial](./packages/tznft/README.md) steps.## How to Build The Project
```sh
$ yarn install
$ yarn build
```If you want to run `tznft` CLI from your local build, run `yarn link` command from
[tznft](./packages/tznft/) package directory.