@merkl/api 0.10.398 → 0.10.400
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -41,6 +41,12 @@ async function getCompoundV2ForksVaults() {
|
|
41
41
|
acc[cToken] = true;
|
42
42
|
}
|
43
43
|
}
|
44
|
+
else {
|
45
|
+
const [cToken] = defaultAbiCoder.decode(["address"], transfer.topics[1]);
|
46
|
+
if (!!cToken) {
|
47
|
+
acc[cToken] = true;
|
48
|
+
}
|
49
|
+
}
|
44
50
|
return acc;
|
45
51
|
}, {}));
|
46
52
|
// Ensure that the entry in compoundVaults for the current chainId and compFork exists
|