An open API service indexing awesome lists of open source software.

https://github.com/dev-protocol/youtube-market


https://github.com/dev-protocol/youtube-market

Last synced: 6 months ago
JSON representation

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
```