https://github.com/dotbithq/das-auction-contract
The solidity contract of dutch auction
https://github.com/dotbithq/das-auction-contract
Last synced: 8 months ago
JSON representation
The solidity contract of dutch auction
- Host: GitHub
- URL: https://github.com/dotbithq/das-auction-contract
- Owner: dotbitHQ
- License: mit
- Created: 2023-03-19T06:28:13.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-17T07:13:16.000Z (about 3 years ago)
- Last Synced: 2025-10-09T12:29:44.119Z (8 months ago)
- Language: JavaScript
- Size: 203 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Overview
This contract is used for the dutch auction to sale expired .bit account
# Prerequisites
ubuntu >= 20.04
nodejs >= 19.*
```shell
apt install sudo
apt install curl
curl -sL https://deb.nodesource.com/setup_19.x | sudo -E bash -
sudo apt install -y nodejs
sudo apt install build-essential
```
# Install & Run
```shell
npm install --save-dev hardhat
npm install --save-dev @openzeppelin/contracts-upgradeable
npm install --save-dev @openzeppelin/contracts
npm install --save-dev @openzeppelin/hardhat-upgrades
```
# Test
```shell
npx hardhat test
```
# Deploy
```shell
npx hardhat run --network goerli ./scripts/deploy.js
```
# Upgrade
```shell
npx hardhat run --network goerli ./scripts/upgrade.js
```