Skip to content
This repository has been archived by the owner on Feb 25, 2023. It is now read-only.

Commit

Permalink
Merge pull request #42 from CoinAlpha/development
Browse files Browse the repository at this point in the history
release / sync dev 0.4.0 -> master
  • Loading branch information
gyozajiro authored Mar 9, 2021
2 parents bafbff7 + ac8cbef commit 755e011
Show file tree
Hide file tree
Showing 7 changed files with 1,306 additions and 1 deletion.
13 changes: 13 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@perp/contract": "^1.0.6",
"@balancer-labs/sor": "^0.3.3",
"@terra-money/terra.js": "^0.5.8",
"@uniswap/sdk": "^3.0.3",
Expand All @@ -31,7 +32,8 @@
"moment": "^2.29.1",
"util": "^0.12.3",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
"winston-daily-rotate-file": "^4.5.0",
"cross-fetch": "^3.0.6"
},
"devDependencies": {
"@babel/core": "^7.11.6",
Expand Down
2 changes: 2 additions & 0 deletions src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import balancerRoutes from './routes/balancer.route'
import ethRoutes from './routes/eth.route'
import terraRoutes from './routes/terra.route'
import uniswapRoutes from './routes/uniswap.route'
import perpFiRoutes from './routes/perpetual_finance.route'

// terminate if environment not found
const result = dotenv.config();
Expand Down Expand Up @@ -46,6 +47,7 @@ app.use('/eth', ethRoutes);
// app.use('/celo', celoRoutes);
app.use('/terra', terraRoutes);
app.use('/balancer', balancerRoutes);
app.use('/perpfi', perpFiRoutes);

app.get('/', (req, res, next) => {
res.send('ok')
Expand Down
Loading

0 comments on commit 755e011

Please sign in to comment.