https://github.com/bootnodedev/escrow-manager-contracts
https://github.com/bootnodedev/escrow-manager-contracts
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bootnodedev/escrow-manager-contracts
- Owner: BootNodeDev
- Created: 2022-12-26T17:41:11.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-05-22T17:20:15.000Z (almost 3 years ago)
- Last Synced: 2025-07-04T14:56:31.880Z (9 months ago)
- Language: Solidity
- Size: 124 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```