This repository has been archived by the owner on Oct 7, 2024. It is now read-only.
Releases: MetaMask/eth-trezor-keyring
Releases · MetaMask/eth-trezor-keyring
3.1.0
3.0.0
2.0.0
Added
- Add
destroy
method toTrezorKeyring
, which replacesdispose
(#179)
Changed
- BREAKING: Separate the bridge from the keyring (#143)
- The Trezor bridge is now a separate class (
TrezorConnectBridge
), which must be constructed separately from the keyring and passed in as a constructor argument. - The bridge initialization has been moved from the keyring constructor to the keyring
init
method. The bridge is expected to be passed to the keyring uninitialized, and the keyringinit
method is expected to be called after keyring construction (before the keyring is used). - The keyring constructor no longer accepts keyring state. Instead, any pre-existing keyring state should be passed to the
deserialize
method after construction.
- The Trezor bridge is now a separate class (
Removed
- BREAKING: Remove
dispose
method fromTrezorKeyring
, which is replaced bydestroy
(#179)
1.1.0
1.0.0
Changed
- BREAKING: Rename package to use
@metamask
scope (#160) - BREAKING: Removed support for Node v12 in favor of v14 (#135)
- Update
@ethereumjs/util
,@ethereumjs/tx
,@metamask/eth-sig-util
to latest versions (#146) - Bump trezor-connect - now @trezor/connect-plugin-ethereum & @trezor/connect-web - to v9 (#133, #163)