forked from ac12644/NFT-Marketplace
-
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.
- Loading branch information
Showing
137 changed files
with
200,596 additions
and
0 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,49 @@ | ||
/* eslint-disable no-undef */ | ||
module.exports = { | ||
'env': { | ||
'browser': true, | ||
'es2021': true, | ||
}, | ||
'extends': [ | ||
'eslint:recommended', | ||
'plugin:react/recommended', | ||
], | ||
'settings': { | ||
'react': { | ||
'version': 'detect', | ||
}, | ||
}, | ||
'parserOptions': { | ||
'ecmaFeatures': { | ||
'jsx': true, | ||
}, | ||
'ecmaVersion': 12, | ||
'sourceType': 'module', | ||
}, | ||
'plugins': [ | ||
'react', | ||
], | ||
'rules': { | ||
'indent': [ | ||
'error', | ||
2, | ||
{ 'SwitchCase': 1 }, | ||
], | ||
'linebreak-style': [ | ||
'error', | ||
'unix', | ||
], | ||
'quotes': [ | ||
'error', | ||
'single', | ||
], | ||
'semi': [ | ||
'error', | ||
'always', | ||
], | ||
'comma-dangle': [ | ||
'error', | ||
'only-multiline', | ||
], | ||
}, | ||
}; |
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,9 @@ | ||
{ | ||
"trailingComma": "all", | ||
"tabWidth": 2, | ||
"semi": true, | ||
"singleQuote": true, | ||
"printWidth": 80, | ||
"bracketSpacing": true, | ||
"arrowParens": "always" | ||
} |
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,2 @@ | ||
export const nftAddress = "0x73D1Bc7F8699bbF454f2637cC45952Ed501DCa5A"; | ||
export const marketAddress = "0x6D751B3a84893B54dAcA9FDBB2Fb8C1AF2D090d8"; |
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,15 @@ | ||
# Basic Sample Hardhat Project | ||
|
||
This project demonstrates a basic Hardhat use case. It comes with a sample contract, a test for that contract, a sample script that deploys that contract, and an example of a task implementation, which simply lists the available accounts. | ||
|
||
Try running some of the following tasks: | ||
|
||
```shell | ||
npx hardhat accounts | ||
npx hardhat compile | ||
npx hardhat clean | ||
npx hardhat test | ||
npx hardhat node | ||
node scripts/sample-script.js | ||
npx hardhat help | ||
``` |
4 changes: 4 additions & 0 deletions
4
artifacts/@openzeppelin/contracts/security/ReentrancyGuard.sol/ReentrancyGuard.dbg.json
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,4 @@ | ||
{ | ||
"_format": "hh-sol-dbg-1", | ||
"buildInfo": "../../../../build-info/8dfb43da87e0a6a1caa866e7c5be502d.json" | ||
} |
10 changes: 10 additions & 0 deletions
10
artifacts/@openzeppelin/contracts/security/ReentrancyGuard.sol/ReentrancyGuard.json
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,10 @@ | ||
{ | ||
"_format": "hh-sol-artifact-1", | ||
"contractName": "ReentrancyGuard", | ||
"sourceName": "@openzeppelin/contracts/security/ReentrancyGuard.sol", | ||
"abi": [], | ||
"bytecode": "0x", | ||
"deployedBytecode": "0x", | ||
"linkReferences": {}, | ||
"deployedLinkReferences": {} | ||
} |
4 changes: 4 additions & 0 deletions
4
artifacts/@openzeppelin/contracts/token/ERC721/ERC721.sol/ERC721.dbg.json
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,4 @@ | ||
{ | ||
"_format": "hh-sol-dbg-1", | ||
"buildInfo": "../../../../../build-info/8dfb43da87e0a6a1caa866e7c5be502d.json" | ||
} |
Oops, something went wrong.