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

Commit 755e011

Browse files
authored
Merge pull request #42 from CoinAlpha/development
release / sync dev 0.4.0 -> master
2 parents bafbff7 + ac8cbef commit 755e011

File tree

7 files changed

+1306
-1
lines changed

7 files changed

+1306
-1
lines changed

package-lock.json

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"test": "echo \"Error: no test specified\" && exit 1"
1313
},
1414
"dependencies": {
15+
"@perp/contract": "^1.0.6",
1516
"@balancer-labs/sor": "^0.3.3",
1617
"@terra-money/terra.js": "^0.5.8",
1718
"@uniswap/sdk": "^3.0.3",
@@ -31,7 +32,8 @@
3132
"moment": "^2.29.1",
3233
"util": "^0.12.3",
3334
"winston": "^3.3.3",
34-
"winston-daily-rotate-file": "^4.5.0"
35+
"winston-daily-rotate-file": "^4.5.0",
36+
"cross-fetch": "^3.0.6"
3537
},
3638
"devDependencies": {
3739
"@babel/core": "^7.11.6",

src/app.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import balancerRoutes from './routes/balancer.route'
1414
import ethRoutes from './routes/eth.route'
1515
import terraRoutes from './routes/terra.route'
1616
import uniswapRoutes from './routes/uniswap.route'
17+
import perpFiRoutes from './routes/perpetual_finance.route'
1718

1819
// terminate if environment not found
1920
const result = dotenv.config();
@@ -46,6 +47,7 @@ app.use('/eth', ethRoutes);
4647
// app.use('/celo', celoRoutes);
4748
app.use('/terra', terraRoutes);
4849
app.use('/balancer', balancerRoutes);
50+
app.use('/perpfi', perpFiRoutes);
4951

5052
app.get('/', (req, res, next) => {
5153
res.send('ok')

0 commit comments

Comments
 (0)