|
| 1 | +const { BigNumber } = require('@0x/utils'); |
| 2 | +const moment = require('moment'); |
| 3 | +const mongoose = require('mongoose'); |
| 4 | + |
| 5 | +const { |
| 6 | + JOB, |
| 7 | + QUEUE, |
| 8 | + FILL_ACTOR, |
| 9 | + FILL_TYPE, |
| 10 | + TOKEN_TYPE, |
| 11 | +} = require('../../constants'); |
| 12 | +const { publishJob } = require('../../queues'); |
| 13 | +const createFills = require('../../fills/create-fills'); |
| 14 | +const createNewTokens = require('../../tokens/create-new-tokens'); |
| 15 | +const Event = require('../../model/event'); |
| 16 | +const Fill = require('../../model/fill'); |
| 17 | +const getTransactionByHash = require('../../transactions/get-transaction-by-hash'); |
| 18 | + |
| 19 | +const createSushiswapSwapEventFill = async (job, { logger }) => { |
| 20 | + const { eventId } = job.data; |
| 21 | + |
| 22 | + /* |
| 23 | + * Ensure the specified eventId is valid and that the associated event exists. |
| 24 | + */ |
| 25 | + if (!mongoose.Types.ObjectId.isValid(eventId)) { |
| 26 | + throw new Error(`Invalid eventId: ${eventId}`); |
| 27 | + } |
| 28 | + |
| 29 | + const event = await Event.findById(eventId); |
| 30 | + |
| 31 | + if (event === null) { |
| 32 | + throw new Error(`Cannot find event: ${eventId}`); |
| 33 | + } |
| 34 | + |
| 35 | + const existingFill = await Fill.findById(eventId); |
| 36 | + |
| 37 | + if (existingFill !== null) { |
| 38 | + logger.warn(`fill already created for event: ${eventId}`); |
| 39 | + return; |
| 40 | + } |
| 41 | + |
| 42 | + /** |
| 43 | + * Verify that the associated transaction has been fetched. |
| 44 | + */ |
| 45 | + const transaction = await getTransactionByHash(event.transactionHash); |
| 46 | + |
| 47 | + if (transaction === null) { |
| 48 | + /* |
| 49 | + * If more than 5 minutes have passed since the SushiswapSwap event was fetched then |
| 50 | + * this might indicate a bottleneck or failure in the transaction fetching job. |
| 51 | + */ |
| 52 | + if (moment().diff(event.dateIngested, 'minutes') >= 5) { |
| 53 | + logger.warn(`transaction not found for event: ${event._id}`); |
| 54 | + } |
| 55 | + |
| 56 | + await publishJob( |
| 57 | + QUEUE.EVENT_PROCESSING, |
| 58 | + JOB.CREATE_SUSHISWAP_SWAP_EVENT_FILL, |
| 59 | + job.data, |
| 60 | + { delay: 30000 }, |
| 61 | + ); |
| 62 | + |
| 63 | + return; |
| 64 | + } |
| 65 | + |
| 66 | + /* |
| 67 | + * Finally, once all checks have passed, create the fill and associate token documents. |
| 68 | + */ |
| 69 | + const fill = { |
| 70 | + _id: event._id, |
| 71 | + affiliateAddress: |
| 72 | + transaction.affiliateAddress !== undefined |
| 73 | + ? transaction.affiliateAddress.toLowerCase() |
| 74 | + : undefined, |
| 75 | + assets: [ |
| 76 | + { |
| 77 | + actor: FILL_ACTOR.MAKER, |
| 78 | + amount: new BigNumber(event.data.makerAmount).toNumber(), |
| 79 | + tokenAddress: event.data.makerToken, |
| 80 | + |
| 81 | + /* |
| 82 | + Sushiswap Bridge – this is a bit of a hack for tracking purposes and should |
| 83 | + be replaced longer-term with something better (e.g. liquidity source) |
| 84 | + */ |
| 85 | + bridgeAddress: '0x47ed0262a0b688dcb836d254c6a2e96b6c48a9f5', |
| 86 | + }, |
| 87 | + { |
| 88 | + actor: FILL_ACTOR.TAKER, |
| 89 | + amount: new BigNumber(event.data.takerAmount).toNumber(), |
| 90 | + tokenAddress: event.data.takerToken.toLowerCase(), |
| 91 | + }, |
| 92 | + ], |
| 93 | + blockHash: transaction.blockHash.toLowerCase(), |
| 94 | + blockNumber: transaction.blockNumber, |
| 95 | + date: transaction.date, |
| 96 | + eventId: event._id, |
| 97 | + logIndex: event.logIndex, |
| 98 | + maker: event.data.maker.toLowerCase(), |
| 99 | + protocolVersion: event.protocolVersion, |
| 100 | + quoteDate: transaction.quoteDate, |
| 101 | + taker: event.data.taker.toLowerCase(), |
| 102 | + transactionHash: transaction.hash.toLowerCase(), |
| 103 | + type: FILL_TYPE.SUSHISWAP_SWAP, |
| 104 | + }; |
| 105 | + |
| 106 | + await createNewTokens( |
| 107 | + fill.assets.map(asset => ({ |
| 108 | + address: asset.tokenAddress, |
| 109 | + type: TOKEN_TYPE.ERC20, |
| 110 | + })), |
| 111 | + ); |
| 112 | + |
| 113 | + await createFills([fill]); |
| 114 | + |
| 115 | + logger.info(`created fill for SushiswapSwap event: ${eventId}`); |
| 116 | +}; |
| 117 | + |
| 118 | +module.exports = { |
| 119 | + fn: createSushiswapSwapEventFill, |
| 120 | + jobName: JOB.CREATE_SUSHISWAP_SWAP_EVENT_FILL, |
| 121 | + queueName: QUEUE.EVENT_PROCESSING, |
| 122 | +}; |
0 commit comments