Skip to content

Commit

Permalink
fix: fix @near-js/crypto/lib/key_pair imports
Browse files Browse the repository at this point in the history
  • Loading branch information
gtsonevv committed Jul 12, 2024
1 parent b79dbe5 commit 7ce5bda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/biometric-ed25519/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {
} from './utils';
import { Fido2 } from './fido2';
import { AssertionResponse } from './index.d';
import { KeyPairString } from '@near-js/crypto/lib/key_pair';
import { KeyPairString } from '@near-js/crypto';

const CHALLENGE_TIMEOUT_MS = 90 * 1000;
const RP_NAME = 'NEAR_API_JS_WEBAUTHN';
Expand Down
2 changes: 1 addition & 1 deletion packages/keystores/src/in_memory_key_store.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { KeyPair } from '@near-js/crypto';
import { KeyStore } from './keystore';
import { KeyPairString } from '@near-js/crypto/lib/key_pair';
import { KeyPairString } from '@near-js/crypto';

/**
* Simple in-memory keystore for mainly for testing purposes.
Expand Down

0 comments on commit 7ce5bda

Please sign in to comment.