Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0xpuddi/qd-marketplace-contracts
The NFTs Marketplce of QuarryDraw is a very adaptable and comprehensive marketplace. You can trade ERC721 and ERC1155 with a multitude of exchange types such as Standard listing, Timer listing, Dutch lisitng, English listing, Sealed bid listing, Standard request, Timer request, Dutch request and Amount request.
https://github.com/0xpuddi/qd-marketplace-contracts
erc1155 erc721 nft-marketplace solidity
Last synced: 7 days ago
JSON representation
The NFTs Marketplce of QuarryDraw is a very adaptable and comprehensive marketplace. You can trade ERC721 and ERC1155 with a multitude of exchange types such as Standard listing, Timer listing, Dutch lisitng, English listing, Sealed bid listing, Standard request, Timer request, Dutch request and Amount request.
- Host: GitHub
- URL: https://github.com/0xpuddi/qd-marketplace-contracts
- Owner: 0xPuddi
- License: mit
- Created: 2024-01-08T13:34:46.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-01-09T08:39:26.000Z (12 months ago)
- Last Synced: 2024-11-07T04:15:30.890Z (about 2 months ago)
- Topics: erc1155, erc721, nft-marketplace, solidity
- Language: Solidity
- Homepage:
- Size: 342 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Quarry Draw NFTs Marketplace Contracts
The NFTs Marketplce of QuarryDraw is a very adaptable and comprehensive marketplace. You can trade ERC721 and ERC1155 with a multitude of exchange types such as Standard listing, Timer listing, Dutch lisitng, English listing, Sealed bid listing, Standard request, Timer request, Dutch request and Amount request. You can find out more informations and a very detailed description about each listing in the contract `./contracts/marketplace/facets/MarketplaceFacet.sol`.
This project uses a gas-optimized reference implementation for [EIP-2535 Diamonds](https://github.com/ethereum/EIPs/issues/2535). To learn more about this and other implementations go here: https://github.com/mudgen/diamond
This implementation uses Hardhat and Solidity 0.8.*
## Installation
1. Clone this repo:
```sh
git clone [email protected]:Puddi1/QD-Marketplace-Contracts.git
```2. Install NPM packages:
```sh
cd QD-Marketplace-Contracts
npm i
```## Compile
To compile the contracts in `./contract` run:
```sh
npx hardhat compile
```Their artifacts will be placed in `./artifacts/contracts`
## Tests
To run test, which are stored in `./test` run:
```sh
npx hardhat test
```## Deployment
Deployments scripts are handled in `./scripts`, to deploy:
```sh
npx hardhat run scripts/deploy.js
```