mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-05-31 18:01:04 +00:00
15 lines
304 B
TypeScript
15 lines
304 B
TypeScript
// Copyright 2017-2020 @polkadot/ui-keyring authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import './detectPackage';
|
|
|
|
import { Keyring } from './Keyring';
|
|
|
|
export { default as Ledger } from '@polkadot/ledger';
|
|
|
|
const keyring = new Keyring();
|
|
|
|
export default keyring;
|
|
|
|
export { Keyring };
|