@merkl/api 0.16.8 → 0.16.9
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.
package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/BalancerV3PoolProcessor.js
CHANGED
@@ -59,7 +59,6 @@ export class BalancerV3PoolProcessor extends GenericProcessor {
|
|
59
59
|
const symbols = [];
|
60
60
|
for (let i = 0; i < typeInfo.numberTokens; i++) {
|
61
61
|
let symbolToClean = typeInfo[`symbolToken${i}`];
|
62
|
-
symbolToClean = symbolToClean.replace("sc", "");
|
63
62
|
symbolToClean = symbolToClean.replace("wmooSiloV2Sonic", "");
|
64
63
|
symbolToClean = symbolToClean.replace(" (wS Market)", "");
|
65
64
|
symbols.push(symbolToClean);
|
@@ -38,7 +38,7 @@ export function generateCardName(type, typeInfo, campaign, symbols = [""], displ
|
|
38
38
|
if (campaign.computeChainId === ChainId.SONIC) {
|
39
39
|
typeInfo.protocol = "Beets";
|
40
40
|
}
|
41
|
-
return `Provide liquidity to ${typeInfo.protocol} ${symbols.join("-")}`;
|
41
|
+
return `Provide liquidity to ${typeInfo.protocol} Boosted ${symbols.join("-")}`;
|
42
42
|
}
|
43
43
|
case tokenType.aura:
|
44
44
|
return `Provide liquidity to ${typeInfo.protocol} ${symbols.join("-")}`;
|