Skip to content

Commit

Permalink
Fix missing export in @solana/keys (#3128)
Browse files Browse the repository at this point in the history
Some complete idiot (me) forgot to export the `public-key` file from the `@solana/keys` package. This PR fixes it. Thanks SolAndy for pointing this out.
  • Loading branch information
lorisleiva authored Aug 21, 2024
1 parent 2af1c86 commit 0158b31
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/weak-peaches-fly.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@solana/keys': patch
---

Fix missing export in `@solana/keys` package. This means, the `getPublicKeyFromPrivateKey` function is now properly exported.
1 change: 1 addition & 0 deletions packages/keys/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * from './key-pair';
export * from './private-key';
export * from './public-key';
export * from './signatures';

0 comments on commit 0158b31

Please sign in to comment.