Skip to content

Commit

Permalink
Fix issue with ESM file import
Browse files Browse the repository at this point in the history
  • Loading branch information
brayansdt committed Jun 8, 2024
1 parent 0260480 commit eb087d3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/x-client/src/utils/crypto/crypto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import BN from 'bn.js';
import elliptic from 'elliptic';
import * as encUtils from 'enc-utils';
import { Signer } from '@ethersproject/abstract-signer';
import { solidityKeccak256 } from 'ethers/lib/utils';
// eslint-disable-next-line import/extensions
import { solidityKeccak256 } from 'ethers/lib/utils.js';
import { StarkSigner } from '../../types';
import { starkEcOrder } from '../stark/starkCurve';

Expand Down

0 comments on commit eb087d3

Please sign in to comment.