diff --git a/src/handlers/triggerAdaptor.js b/src/handlers/triggerAdaptor.js index 37c0cba58e..51aa4effa7 100644 --- a/src/handlers/triggerAdaptor.js +++ b/src/handlers/triggerAdaptor.js @@ -315,7 +315,9 @@ const main = async (body) => { ...p, config_id: id, // config PK field configID: id, // yield FK field referencing config_id in config - symbol: utils.formatSymbol(p.symbol), + symbol: ['USDC+', 'ETH+'].includes(symbol) + ? symbol + : utils.formatSymbol(p.symbol), tvlUsd: Math.round(p.tvlUsd), // round tvlUsd to integer and apy fields to n-dec apy: +p.apy.toFixed(precision), // round apy fields apyBase: p.apyBase !== null ? +p.apyBase.toFixed(precision) : p.apyBase,