base eth keyring
npm install @keystonehq/base-eth-keyringbase-eth-keyringThis package is the base module of Keystone implementations of MetaMaskKeyring, you can import this module and extend your own Keystone compatible keyring.
This package uses bc-ur-registry-eth to struct QR code payload.
Please check out eth-keyring and metamask-airgapped-keyring if you wanna an example.
``bash`
yarn add @keystonehq/base-eth-keyring
`bash`
npm install --save @keystonehq/base-eth-keyring
`
import { BaseKeyring } from '@keystonehq/base-eth-keyring';
export class YouOwnKeyring extends BaseKeyring {}
``