mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-07-12 04:05:43 +00:00
15c03c0aff
* Detection for mismatched monorepo deps * Bump common
16 lines
350 B
TypeScript
16 lines
350 B
TypeScript
// Copyright 2017-2021 @polkadot/ui-keyring authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import './detectPackage';
|
|
|
|
import { Keyring } from './Keyring';
|
|
|
|
export { Ledger } from '@polkadot/hw-ledger';
|
|
export { packageInfo } from './packageInfo';
|
|
|
|
const keyring = new Keyring();
|
|
|
|
export { Keyring, keyring };
|
|
|
|
export default keyring;
|