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

https://github.com/bootnodedev/escrow-manager-contracts


https://github.com/bootnodedev/escrow-manager-contracts

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# POC Vesting Escrow Manager Contracts

### Pre-requirements
The following prerequisites are required:
- [`Node.js`](https://nodejs.org/es/)
- [`Yarn`](https://yarnpkg.com/)

### Install dependencies
Before running any command, make sure to install dependencies:

```sh
$ yarn
```

### Compile contracts
Compile the smart contracts with Hardhat:

```sh
$ yarn compile
```

### Test
Run unit tests:

```sh
$ yarn test
```

### Coverage
Run unit tests coverage:

```sh
$ yarn coverage
```

### Gas Report
Run unit tests with gas report:

```sh
$ yarn gas-report
```

### Linter
Run typescript and solidity linters:

```sh
$ yarn lint
```