https://github.com/bootnodedev/escrow-manager-contracts
https://github.com/bootnodedev/escrow-manager-contracts
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bootnodedev/escrow-manager-contracts
- Owner: BootNodeDev
- Created: 2022-12-26T17:41:11.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-22T17:20:15.000Z (about 2 years ago)
- Last Synced: 2025-01-19T03:48:10.463Z (5 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
```