Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
feat: add EthKeyringWrapper for common Eth logic
  • Loading branch information
mathieuartu committed Dec 3, 2025
commit e75db9c64698a0b5243c19c9b0afa85cb75771eb
2 changes: 2 additions & 0 deletions packages/keyring-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- Add `EthKeyringWrapper` abstract class for Ethereum-based `KeyringV2` implementations ([#404](https://github.com/MetaMask/accounts/pull/404))
- Provides common Ethereum signing method routing (`submitRequest`) for all Eth keyrings.
- Add `KeyringWrapper` base class to adapt legacy keyrings to `KeyringV2` ([#398](https://github.com/MetaMask/accounts/pull/398))

## [21.3.0]
Expand Down
2 changes: 2 additions & 0 deletions packages/keyring-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@
"test:watch": "jest --watch"
},
"dependencies": {
"@ethereumjs/tx": "^5.4.0",
"@metamask/eth-sig-util": "^8.2.0",
"@metamask/keyring-utils": "workspace:^",
"@metamask/superstruct": "^3.1.0",
"@metamask/utils": "^11.1.0",
Expand Down
1 change: 1 addition & 0 deletions packages/keyring-api/src/eth/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ export * from './erc4337';
export * from './rpc';
export * from './types';
export * from './utils';
export * from './v2';
Loading
Loading