-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: revert in get current price function
- Loading branch information
1 parent
77e7369
commit 149b85f
Showing
8 changed files
with
2,418 additions
and
4,201 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Number Runner Club | ||
|
||
## Overview | ||
"Number Runner Club" is a unique project that combines the strategic depth of chess with Ethereum Name Service (ENS) domains. It features a specialized NFT collection that utilizes ENS addresses in a novel way. | ||
|
||
## Features | ||
Price Checking and Domain Management: Users can easily check the prices and expiration dates of domains. | ||
Reward System: A mechanism for claiming rewards based on certain criteria. | ||
NFT Marketplace Interaction: Allows users to purchase unique NFTs associated with ENS domains. | ||
Chess Integration: The project integrates chess elements into the NFTs, enhancing the strategic and collectible aspects. | ||
|
||
## Libraries & Dependencies | ||
* ABDKMath64x64.sol: For precision mathematical operations. | ||
* ENS.sol: Integrates Ethereum Name Service functionalities. | ||
* ERC721URIStorage.sol: Enhances ERC721 standard for efficient token URI storage. | ||
* OpenZeppelin Contracts: For secure, standard smart contract implementations. | ||
* Chainlink: For reliable external data feeds. | ||
|
||
## User Interactions | ||
Minting: Users can mint NFTs representing various chess pieces. | ||
Marketplace Activities: Includes buying, selling, and trading NFTs. | ||
Rewards Management: Claiming and managing rewards based on user activities and NFT ownership. |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
const NumberRunnerClubGoerli = artifacts.require("NumberRunnerClubGoerli"); | ||
const NumberRunnerClub = artifacts.require("NumberRunnerClub"); | ||
// const test = artifacts.require("ExponentialFunction"); | ||
|
||
module.exports = function (deployer) { | ||
deployer.deploy(NumberRunnerClubGoerli); | ||
deployer.deploy(NumberRunnerClub); | ||
// deployer.deploy(test); | ||
}; |
Oops, something went wrong.