Skip to content

Commit 6b2a950

Browse files
committed
fix lint error
1 parent 5b44dad commit 6b2a950

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

services/decoder/protocols/blur/blur.decoders.ts

+11-10
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ GoldRushDecoder.on(
7474
extraParams: string;
7575
};
7676
buyHash: string;
77-
}
77+
};
7878
};
7979

8080
const tokens: EventTokens = [];
@@ -103,15 +103,16 @@ GoldRushDecoder.on(
103103
];
104104

105105
const date = TimestampParser(block_signed_at, "YYYY-MM-DD");
106-
const { data: tokenPriceData } = await covalent_client.PricingService.getTokenPrices(
107-
chain_name,
108-
"USD",
109-
decoded.sell.collection || decoded.buy.collection,
110-
{
111-
from: date,
112-
to: date,
113-
}
114-
);
106+
const { data: tokenPriceData } =
107+
await covalent_client.PricingService.getTokenPrices(
108+
chain_name,
109+
"USD",
110+
decoded.sell.collection || decoded.buy.collection,
111+
{
112+
from: date,
113+
to: date,
114+
}
115+
);
115116
tokens.push({
116117
heading: `Matched to ${decoded.buy.trader}`,
117118
value: decoded.sell.amount.toString() || decoded.buy.amount.toString(),

0 commit comments

Comments
 (0)