Skip to content

Commit

Permalink
update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeSchwert committed Mar 11, 2024
1 parent 58dd411 commit 9f477d4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// eslint-disable-next-line @typescript-eslint/naming-convention
import BN from 'bn.js';
import elliptic from 'elliptic';
import * as elliptic from 'elliptic';
// import { curves, ec as Ec } from 'elliptic';
import hashJS from 'hash.js';

Expand Down
2 changes: 1 addition & 1 deletion packages/x-client/src/utils/stark/legacy/crypto/crypto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import assert from 'assert';
// eslint-disable-next-line @typescript-eslint/naming-convention
import BN from 'bn.js';
import elliptic from 'elliptic';
import * as elliptic from 'elliptic';
// import { ec } from 'elliptic';
import * as encUtils from 'enc-utils';
import { hdkey } from 'ethereumjs-wallet';
Expand Down
2 changes: 1 addition & 1 deletion packages/x-client/src/utils/stark/starkCurve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { Signer } from '@ethersproject/abstract-signer';
import { splitSignature } from '@ethersproject/bytes';
import hash from 'hash.js';
import elliptic from 'elliptic';
import * as elliptic from 'elliptic';
// import { curves, ec } from 'elliptic';
import * as encUtils from 'enc-utils';
// eslint-disable-next-line @typescript-eslint/naming-convention
Expand Down

0 comments on commit 9f477d4

Please sign in to comment.