Skip to content

Commit

Permalink
fix: export keyring from keyring-utils (#208)
Browse files Browse the repository at this point in the history
With #201 the `Keyring` type
has been added to `@metamask/keyring-utils`, specifically under
`src/keyring.ts`. Though this new file is currently not exported from
`index.ts`. This PR fixes that
  • Loading branch information
mikesposito authored Feb 13, 2025
1 parent 5ab531e commit 208be1d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/keyring-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- Export `Keyring` and `KeyringClass` types from package root ([#208](https://github.com/MetaMask/accounts/pull/208))

## [2.1.0]

### Added
Expand Down
1 change: 1 addition & 0 deletions packages/keyring-utils/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ export * from './types';
export * from './typing';
export * from './superstruct';
export * from './JsonRpcRequest';
export type * from './keyring';

0 comments on commit 208be1d

Please sign in to comment.