https://github.com/dev-protocol/youtube-market
https://github.com/dev-protocol/youtube-market
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dev-protocol/youtube-market
- Owner: dev-protocol
- License: mpl-2.0
- Created: 2021-10-22T04:57:05.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-08-19T11:59:18.000Z (6 months ago)
- Last Synced: 2025-08-19T13:41:02.923Z (6 months ago)
- Language: TypeScript
- Size: 804 KB
- Stars: 3
- Watchers: 6
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Installation
```bash
yarn
```
# Verifying a deployed contracts
## For a contract with no constructor arguments
Run hardhat-etherscan
```bash
yarn hardhat verify --network
```
## For a contract with constructor arguments
1. Create an arguments declaration file
```js
// cat ./scripts/arguments.js
module.exports = [
'arguments 1',
'arguments 2',
'arguments 3',
...
]
```
2. Run hardhat-etherscan
```bash
yarn hardhat verify --network --contract : --constructor-args ./scripts/arguments.js
```