@merkl/api 0.20.71 → 0.20.72
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.
@@ -108,10 +108,10 @@ async function computeCollatListAndReturnVaults(chainId, vaults) {
|
|
108
108
|
catch { }
|
109
109
|
vault.collaterals.push({
|
110
110
|
address: collat.collateral,
|
111
|
-
|
111
|
+
symbol: symbolCollateral,
|
112
112
|
symbolUnderlying: symbolUnderlying,
|
113
113
|
borrowLTV: collat.borrowLTV.toString(),
|
114
|
-
|
114
|
+
name: (await fetchEulerVaultName(collat.collateral, chainId)) ?? symbolCollateral,
|
115
115
|
});
|
116
116
|
}
|
117
117
|
return { ...vault };
|
@@ -72,6 +72,7 @@ export function generateCardName(type, typeInfo, campaign, symbols = [""], displ
|
|
72
72
|
return `Supply ${typeInfo.symbolShortToken}-${typeInfo.symbolLongToken} on ${capitalize(typeInfo.protocol)}`;
|
73
73
|
case tokenType.radiant_borrow:
|
74
74
|
case tokenType.aave_borrowing:
|
75
|
+
case tokenType.sake_borrowing:
|
75
76
|
case tokenType.vicuna_borrowing:
|
76
77
|
case tokenType.yei_borrowing:
|
77
78
|
case tokenType.ironclad_borrowing:
|
@@ -88,6 +89,7 @@ export function generateCardName(type, typeInfo, campaign, symbols = [""], displ
|
|
88
89
|
case tokenType.splice:
|
89
90
|
case tokenType.aave_lending:
|
90
91
|
case tokenType.vicuna_lending:
|
92
|
+
case tokenType.sake_lending:
|
91
93
|
case tokenType.yei_lending:
|
92
94
|
case tokenType.ironclad_lending:
|
93
95
|
case tokenType.zerolend_lending:
|