Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pmuens/cryptocobras
NFT example application for EVM-based Blockchains
https://github.com/pmuens/cryptocobras
blockchain erc-721 ethereum nft smart-contract smart-contracts solidity
Last synced: 8 days ago
JSON representation
NFT example application for EVM-based Blockchains
- Host: GitHub
- URL: https://github.com/pmuens/cryptocobras
- Owner: pmuens
- Created: 2021-07-12T09:56:10.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-07-12T09:56:56.000Z (over 3 years ago)
- Last Synced: 2024-10-20T04:45:06.424Z (2 months ago)
- Topics: blockchain, erc-721, ethereum, nft, smart-contract, smart-contracts, solidity
- Language: TypeScript
- Homepage:
- Size: 201 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CryptoCobras
NFT example application for EVM-based Blockchains.
**NOTE:** This NFT implementation is based on [openberry-ac/cryptovipers](https://github.com/openberry-ac/cryptovipers).
## Usage
You want to explore the [contracts](./contracts) and [tests](./tests) to see the dApps APIs and their usages.
1. `npx hardhat node`
2. `npx hardhat deploy --network localhost`
3. `npx hardhat buy --address --network localhost`
4. `npx hardhat oracle --address --network localhost`## Useful Commands
```sh
# Setup
npm install# Build
npm run build# Test
npm run test# Deploy
npm run deploy# Format
npm run format# Lint
npm run lint# Clean
npm run clean
```