Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
karanpargal committed May 6, 2024
1 parent 0976954 commit 9f6f2a4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions services/decoder/protocols/pendle/pendle.decoders.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { GoldRushDecoder } from "../../decoder";
import { EventDetails, EventTokens, type EventType } from "../../decoder.types";
import type { EventDetails, EventTokens } from "../../decoder.types";
import { type EventType } from "../../decoder.types";
import {
DECODED_ACTION,
DECODED_EVENT_CATEGORY,
Expand Down Expand Up @@ -513,7 +514,10 @@ GoldRushDecoder.on(
},
{
heading: "Expiry",
value: timestampParser(new Date(Number(decoded.expiry) * 1000), "descriptive"),
value: timestampParser(
new Date(Number(decoded.expiry) * 1000),
"descriptive"
),
type: "text",
},
];
Expand Down

0 comments on commit 9f6f2a4

Please sign in to comment.