Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/curvefi/curve-stablecoin
Stablecoin powered by LLAMMAs
https://github.com/curvefi/curve-stablecoin
Last synced: 1 day ago
JSON representation
Stablecoin powered by LLAMMAs
- Host: GitHub
- URL: https://github.com/curvefi/curve-stablecoin
- Owner: curvefi
- License: other
- Created: 2022-05-23T09:42:27.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-15T14:13:59.000Z (8 months ago)
- Last Synced: 2024-04-16T07:19:46.433Z (8 months ago)
- Language: Python
- Size: 3.69 MB
- Stars: 431
- Watchers: 32
- Forks: 74
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Curve Stablecoin contracts
## Install dependencies using poetry
Installing poetry and all dependencies for tests
```shell
pip install poetry
poetry install
```Installing specific dependency groups (main/dev(tests)/ape(deploy))
```shell
poetry install --without dev,ape
```Updating dependencies
```shell
poetry add vyper
poetry add "vyper>=0.3.7,<0.4"
poetry add --group dev "git+https://github.com/vyperlang/titanoboa.git@6ffcfa724023fb2b9f8ed02221c8bcbf4511712c"
```Removing dependencies
```shell
poetry remove ape-alchemy --group ape
```## Environment for forked tests
Install env for forked tests
```shell
cd deploy_env
poetry install --sync
cd -
```Put settings file ("_.env_") into [parent](.) directory.
[Example](./.env-example) defines all required parameters, mainly
external web3 provider.