-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.ts
154 lines (136 loc) · 4.3 KB
/
server.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
import express from 'express';
import bodyParser from 'body-parser';
import { Promise as BlueBirdPromise } from 'bluebird';
import { detectFlashLoanAttack } from './FlashLoanAttack';
import { getBlockTraces, getTransactionTraces } from './cache';
import { FlashLoanAnaylisis } from './types';
import { ethers } from 'ethers';
import { provider } from './const';
import { logTrace } from './logger';
const app = express();
const port = 3000;
app.use(bodyParser.json()); // for parsing application/json
app.use(bodyParser.urlencoded({ extended: true })); // for parsing application/x-www-form-urlencoded
app.post('/analyze-block', async (req, res) => {
const { blockNumber } = req.body;
if (blockNumber === undefined || typeof blockNumber !== 'number') {
res.status(400).send('Invalid block number');
return;
}
console.log('Requesting block number: ', blockNumber);
const blockTraces = await getBlockTraces(blockNumber);
const analysisPerTransaction = await BlueBirdPromise.map(
blockTraces,
async (transaction) => {
console.time(transaction.txHash);
const transactionAnalysis = await detectFlashLoanAttack(
transaction.result,
blockNumber,
);
console.timeEnd(transaction.txHash);
return { [transaction.txHash]: transactionAnalysis };
},
{ concurrency: 3 },
).reduce(
(acc, curr) => ({
...acc,
...curr,
}),
{} as Record<string, FlashLoanAnaylisis | undefined>,
);
if (!Object.keys(analysisPerTransaction).length) {
res.send([]);
return;
}
const analysisEntries = Object.entries(analysisPerTransaction);
const presenceOfAttack = analysisEntries.some(
([, analysis]) =>
!!analysis?.flashLoan && !!analysis?.borrow && !!analysis?.liquidation,
);
res.send({
blockNumber,
presenceOfAttack,
suspectTransactions: analysisEntries
.map(([txHash, analysis]) => {
const isFlashLoan = !!analysis?.flashLoan;
if (!isFlashLoan) return;
const hasSelfLiquidation =
!!analysis?.borrow && !!analysis?.liquidation;
const victims = analysis!.drainedTokens
? Object.entries(analysis!.drainedTokens).flatMap(
([token, records]) =>
records.map((record) => ({
...record,
token,
})),
)
: null;
return {
txHash,
isFlashLoan,
anaylisis: {
selfLiquidation: hasSelfLiquidation,
...(hasSelfLiquidation
? { attacker: analysis.liquidation!.borrower }
: {}),
...(victims ? { victims } : {}),
},
};
})
.filter(Boolean),
});
});
app.post('/analyze-transaction', async (req, res) => {
const { txHash } = req.body;
if (txHash === undefined || !ethers.utils.isHexString(txHash)) {
res.status(400).send('Invalid transaction hash');
return;
}
console.log('Requesting transaction hash: ', txHash);
console.time(txHash);
const [{ blockNumber }, transactionTraces] = await Promise.all([
provider.getTransaction(txHash),
getTransactionTraces(txHash),
]);
if (!transactionTraces || !blockNumber) {
res.status(404).send('Transaction not found');
return;
}
// await logTrace(transactionTraces).then((logs) =>
// console.log(
// logs
// .map(
// (v, i) =>
// `${i.toString().padStart(logs.length.toString().length, '0')} ${v}`,
// )
// .join('\n'),
// ),
// );
const analysis = await detectFlashLoanAttack(transactionTraces, blockNumber);
console.timeEnd(txHash);
const isFlashLoan = !!analysis?.flashLoan;
if (!isFlashLoan) return;
const hasSelfLiquidation = !!analysis?.borrow && !!analysis?.liquidation;
const victims = analysis!.drainedTokens
? Object.entries(analysis!.drainedTokens).flatMap(([token, records]) =>
records.map((record) => ({
...record,
token,
})),
)
: null;
res.send({
blockNumber,
isFlashLoan,
anaylisis: {
selfLiquidation: hasSelfLiquidation,
...(hasSelfLiquidation
? { attacker: analysis.liquidation!.borrower }
: {}),
...(victims ? { victims } : {}),
},
});
});
app.listen(port, () => {
console.log(`Server is running on port ${port}`);
});