mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-07-11 12:55:40 +00:00
18 lines
444 B
TypeScript
18 lines
444 B
TypeScript
// Copyright 2017-2020 @polkadot/ui-keyring authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import { detectPackage } from '@polkadot/util';
|
|
|
|
import keyring, { Keyring } from './Keyring';
|
|
import Ledger from './ledger';
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
detectPackage(require('./package.json'), typeof __dirname !== 'undefined' && __dirname);
|
|
|
|
export default keyring;
|
|
|
|
export {
|
|
Keyring,
|
|
Ledger
|
|
};
|