Skip to content

Commit

Permalink
adjusted imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Egge21M committed Nov 27, 2024
1 parent 42998e5 commit f509124
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/CashuWallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import {
} from '@cashu/crypto/modules/client';
import { deriveBlindingFactor, deriveSecret } from '@cashu/crypto/modules/client/NUT09';
import { createP2PKsecret, getSignedProofs } from '@cashu/crypto/modules/client/NUT11';
import { type Proof as NUT11Proof, DLEQ } from '@cashu/crypto/modules/common/index';
import { type Proof as NUT11Proof, DLEQ } from '@cashu/crypto/modules/common';
import { SubscriptionCanceller } from './model/types/wallet/websocket.js';
import { verifyDLEQProof_reblind } from '@cashu/crypto/modules/client/NUT12';
import { MintInfo } from './model/MintInfo.js';
Expand Down
2 changes: 1 addition & 1 deletion src/model/BlindedSignature.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ProjPointType } from '@noble/curves/abstract/weierstrass';
import { SerializedBlindedSignature } from './types/index.js';
import { DLEQ } from '@cashu/crypto/modules/common';
import { bytesToHex } from '@noble/hashes/utils.js';
import { bytesToHex } from '@noble/hashes/utils';
import { numberToHexPadded64 } from '../utils.js';

class BlindedSignature {
Expand Down

0 comments on commit f509124

Please sign in to comment.