Skip to content

Commit

Permalink
remove liquidation pool data
Browse files Browse the repository at this point in the history
  • Loading branch information
ewansheldon committed Jun 24, 2024
1 parent 9606d80 commit 8cd0779
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 138 deletions.
4 changes: 0 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
const http = require('http');
require('dotenv').config();
const { schedulePricingIndexing } = require('./src/pricing');
const { scheduleStatIndexing } = require('./src/stats');
const { scheduleIndexYieldData } = require('./src/yield');
const { scheduleVaultTransactionIndexing } = require('./src/transactions');
const { scheduleLiquidationPoolData } = require('./src/liquidationPools');

const port = process.env.PORT || 3000;

schedulePricingIndexing();
// scheduleStatIndexing();
scheduleIndexYieldData();
scheduleVaultTransactionIndexing();
scheduleLiquidationPoolData();

const server = http.createServer(async (req, res) => {
res.statusCode = 200;
Expand Down
134 changes: 0 additions & 134 deletions src/liquidationPools.js

This file was deleted.

0 comments on commit 8cd0779

Please sign in to comment.