We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 044a2fd commit bbf3f48Copy full SHA for bbf3f48
src/lib/diffs.ts
@@ -85,6 +85,16 @@ export function getDiffs(calls: DecodedEVCCall[]): Diffs {
85
maxLiquidationDiscount: call.decoded.args[0],
86
},
87
};
88
+ } else if (f === "setHookConfig") {
89
+ const existingVault = vaults[targetContract];
90
+ vaults[targetContract] = {
91
+ ...existingVault,
92
+ newValues: {
93
+ ...existingVault?.newValues,
94
+ hookTarget: call.decoded.args[0],
95
+ hookedOps: call.decoded.args[1],
96
+ },
97
+ };
98
} else if (f === "setInterestFee") {
99
const existingVault = vaults[targetContract];
100
vaults[targetContract] = {
0 commit comments