Skip to content

Commit

Permalink
Fix the build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nazarhussain committed Feb 12, 2024
1 parent 280032a commit 8759569
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/beacon-node/src/eth1/provider/jwt.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import type {TAlgorithm} from "jwt-simple";
// TODO: fix jwt-simple types
import {encode, decode} from "jwt-simple";
import jwt from "jwt-simple";

// eslint-disable-next-line import/no-named-as-default-member
const {encode, decode} = jwt;

/**
* jwt token has iat which is issued at unix timestamp, an optional exp for expiry,
Expand Down

0 comments on commit 8759569

Please sign in to comment.