https://github.com/cloudwalk/compound-periphery
This repository contains Compound periphery contracts.
https://github.com/cloudwalk/compound-periphery
Last synced: about 1 year ago
JSON representation
This repository contains Compound periphery contracts.
- Host: GitHub
- URL: https://github.com/cloudwalk/compound-periphery
- Owner: cloudwalk
- License: mit
- Created: 2022-09-30T12:21:23.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-26T05:30:04.000Z (about 2 years ago)
- Last Synced: 2025-02-08T19:17:03.963Z (over 1 year ago)
- Language: TypeScript
- Size: 384 KB
- Stars: 0
- Watchers: 8
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Compound Periphery
[](https://opensource.org/licenses/MIT)


This repository contains [Compound protocol](https://github.com/cloudwalk/compound-protocol) periphery smart contracts.
## Project Setup
1. Clone the repo.
2. Create the `.env` file based on the `.env.example` one:
* Windows:
```sh
copy .env.example .env
```
* MacOS/Linux:
```sh
cp .env.example .env
```
3. Update settings in the newly created `.env` file if needed (e.g. another solidity version, number of optimization runs, private keys (PK) for networks, network RPC URLs, etc.).
## Build and test
```sh
# Install all dependencies
npm install
# Compile all contracts
npx hardhat compile
# Run all tests
npx hardhat test
```
## Networks and deployments
Information about deployed contracts across all the networks can be found [here](./docs/deployed-contracts.md).
## Licensing
This project is released under the MIT License, see [LICENSE](./LICENSE).