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

Commit bd37721

Browse files
authored
Fetch Sushiswap transactions and remove redundant code (#461)
1 parent 7335ef3 commit bd37721

9 files changed

+9
-535
lines changed

src/jobs/batch-schedule-transaction-fetch.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,15 @@ const batchScheduleTransactionFetch = async ({ batchSize }, { logger }) => {
88
// Fetch a batch of unprocessed events
99
const events = await Event.find({
1010
'scheduler.transactionFetchScheduled': { $in: [null, false] },
11-
type: { $in: ['Fill', 'LogFill', 'TransformedERC20', 'UniswapV2Swap'] },
11+
type: {
12+
$in: [
13+
'Fill',
14+
'LogFill',
15+
'SushiswapSwap',
16+
'TransformedERC20',
17+
'UniswapV2Swap',
18+
],
19+
},
1220
})
1321
.select('_id blockNumber transactionHash')
1422
.limit(batchSize)

src/jobs/cache-address-metrics.js

-73
This file was deleted.

src/jobs/index.js

-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ const _ = require('lodash');
33
const batchScheduleTransactionFetch = require('./batch-schedule-transaction-fetch');
44
const batchScheduleTransformedERC20FillCreation = require('./batch-schedule-transformed-erc20-fill-creation');
55
const batchScheduleUniswapV2SwapFillCreation = require('./batch-schedule-uniswap-v2-swap-fill-creation');
6-
const cacheAddressMetrics = require('./cache-address-metrics');
76
const createFills = require('./create-fills');
87
const deriveFillPrices = require('./derive-fill-prices');
98
const fetchArticles = require('./fetch-articles');
@@ -14,7 +13,6 @@ const jobFns = {
1413
batchScheduleTransactionFetch,
1514
batchScheduleTransformedERC20FillCreation,
1615
batchScheduleUniswapV2SwapFillCreation,
17-
cacheAddressMetrics,
1816
createFills,
1917
deriveFillPrices,
2018
fetchArticles,

src/metrics/compute-address-metrics.js

-278
This file was deleted.

0 commit comments

Comments
 (0)