-
Notifications
You must be signed in to change notification settings - Fork 2
/
bot.ts
215 lines (179 loc) · 5.68 KB
/
bot.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
require("dotenv").config();
import { MessageBuilder, Webhook } from "discord-webhook-node";
import Fuse from "./fuse.node.commonjs2.js";
const fuse = new Fuse(
"wss://eth-mainnet.ws.alchemyapi.io/v2/hyzY6NPaP88J5E8UJKYoiUi2i_a4O7l4"
);
console.log("Connecting to Discord Webhook:", process.env.WEBHOOK_URL);
const hook = new Webhook(process.env.WEBHOOK_URL);
hook.setUsername("Fuse Alerts");
hook.setAvatar(
"https://raw.githubusercontent.com/Rari-Capital/fuse-webhooks-bot/main/fuse.png"
);
const smallFormatter = Intl.NumberFormat("en-US", {
minimumFractionDigits: 2,
maximumFractionDigits: 2
});
function formatAmount(amount: any, decimals: any) {
return smallFormatter.format(amount / 10 ** decimals);
}
export interface FuseAsset {
cToken: string;
borrowBalance: number;
supplyBalance: number;
liquidity: number;
membership: boolean;
underlyingName: string;
underlyingSymbol: string;
underlyingToken: string;
underlyingDecimals: number;
underlyingPrice: number;
collateralFactor: number;
reserveFactor: number;
adminFee: number;
fuseFee: number;
borrowRatePerBlock: number;
supplyRatePerBlock: number;
totalBorrow: number;
totalSupply: number;
}
async function main() {
const { 1: fusePools } = await fuse.contracts.FusePoolLens.methods
.getPublicPoolsByVerificationWithData(true)
.call({ gas: 1e18 });
for (let i = 0; i < fusePools.length; i++) {
if (i == 4) {
// Pool 4 is broken, we'll just skip it for now.
continue;
}
fuse.contracts.FusePoolLens.methods
.getPoolAssetsWithData(fusePools[i].comptroller)
.call({
from: "0x0000000000000000000000000000000000000000",
gas: 1e18
})
.then((assets: FuseAsset[]) => {
assets.forEach(asset => {
const cToken = new fuse.web3.eth.Contract(
JSON.parse(
fuse.compoundContracts[
"contracts/CEtherDelegate.sol:CEtherDelegate"
].abi
),
asset.cToken
);
cToken.events.allEvents({}, function (_, event) {
console.log("New Event", event.transactionHash);
const eventName = event.event;
if (
eventName != "Transfer" &&
eventName != "Approval" &&
eventName != "AccrueInterest" &&
eventName != "Failure"
) {
let embed = new MessageBuilder()
.setTitle(eventName)
.setDescription(`from \`${event.returnValues["0"]}\` \n\u200B`) // Return value '0' is always the from address.
.addField("Pool", filterPoolName(fusePools[i].name), true)
.addField("Asset", asset.underlyingSymbol, true)
.setTimestamp();
if (eventName === "Mint") {
embed = embed
.addField(
"Amount",
formatAmount(
event.returnValues.mintAmount,
asset.underlyingDecimals
),
true
)
.setColor(0x7ea8e8);
}
if (eventName === "Redeem") {
embed = embed
.addField(
"Amount",
formatAmount(
event.returnValues.redeemAmount,
asset.underlyingDecimals
),
true
)
.setColor(0xf5740d);
}
if (eventName === "Borrow") {
embed = embed
.addField(
"Amount",
formatAmount(
event.returnValues.borrowAmount,
asset.underlyingDecimals
),
true
)
.setColor(0x90ad6c);
}
if (eventName === "RepayBorrow") {
embed = embed
.addField(
"Amount",
formatAmount(
event.returnValues.repayAmount,
asset.underlyingDecimals
),
true
)
.setColor(0xdb4152);
}
if (eventName === "LiquidateBorrow") {
embed = embed
.addField(
"Amount",
formatAmount(
event.returnValues.repayAmount,
asset.underlyingDecimals
),
true
)
.setColor(0xf1c219);
}
hook.send(
embed.addField(
"\u200B",
"https://etherscan.io/tx/" + event.transactionHash
)
);
}
});
});
});
}
}
main();
// Prevent node from exiting early.
process.stdin.resume();
// Keep this in sync with the version in https://github.com/Rari-Capital/rari-dApp/blob/master/src/utils/fetchFusePoolData.ts
function filterPoolName(name: string) {
if (name === "Tetranode's Pool") {
return "Tetranode's Locker";
}
if (name === "state's pool") {
return "Ribbon Pool";
}
if (name === "Stake DAO Pool") {
return "The Animal Kingdom";
}
if (name === "Tetranode's ETH Pool") {
return "ChainLinkGod's / Tetranode's Up Only Pool";
}
if (name === "Tetranode's Flavor of the Month") {
return "FeiRari (Fei DAO Pool)";
}
if (name === "WOO pool") {
return "Warlord's WOO Pool";
}
if (name === "Yearn's Yield") {
return "Yearn Soup Pot of Yield";
}
return name;
}