liquidator/README.md

40 lines
847 B
Markdown
Raw Normal View History

2021-03-09 05:32:07 -08:00
# Mango Liquidator
## Setup Full Liquidator
2021-03-09 05:32:07 -08:00
Make sure to edit the .env file to look something like this:
```
export CLUSTER="mainnet-beta"
export CLUSTER_URL="https://solana-api.projectserum.com"
export KEYPAIR=~/.config/solana/id.json
export NODE_ENV=production
export GROUP_NAME="BTC_ETH_USDT"
2021-03-09 05:32:07 -08:00
```
### Run
2021-03-09 05:32:07 -08:00
```
yarn install
source .env
yarn liquidate
```
## Setup Partial Liquidator
Make sure to edit the .env file to look something like this:
```
export CLUSTER="mainnet-beta"
export CLUSTER_URL="https://solana-api.projectserum.com"
export KEYPAIR=~/.config/solana/id.json
export NODE_ENV=production
export TARGETS="0.1 2"
export GROUP_NAME="BTC_ETH_USDT"
```
TARGETS represents the BTC and ETH amounts the partial liquidator should try to maintain
in the liquidator's wallet
### Run
```
yarn install
source .env
yarn partialLiquidate
2021-03-09 05:32:07 -08:00
```