https://github.com/andreid/dutchauctionnft
public dutch auction nft (decreasing price)
https://github.com/andreid/dutchauctionnft
Last synced: 7 days ago
JSON representation
public dutch auction nft (decreasing price)
- Host: GitHub
- URL: https://github.com/andreid/dutchauctionnft
- Owner: AndreiD
- License: unlicense
- Created: 2022-01-25T20:46:37.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T14:41:35.000Z (over 3 years ago)
- Last Synced: 2025-10-26T02:24:14.992Z (9 months ago)
- Language: Jupyter Notebook
- Size: 188 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dutch Auction NFT (decreasing price)
Note: based on an modified version of CRIPS... https://github.com/FrankieIsLost/CRISP
## Introduction
The Constant Rate Issuance Sales Protocol, or CRISP, is a pricing mechanism that aims to sell NFTs at a targeted rate. This repo prodives a sample solidity implementation, as well as a python notebook modeling the mechanisms behaviour.
## Development
### Set up
```
git clone https://github.com/FrankieIsLost/CRISP
git submodule update --init --recursive ## install dependencies
forge build
```
### Test
```
forge test
```
### Lint
```
npm install
npm run lint
```