// Copyright 2017-2021 @polkadot/ledger authors & contributors // SPDX-License-Identifier: Apache-2.0 import type Transport from '@ledgerhq/hw-transport'; import type { TransportDef } from './types'; import LedgerHid from '@ledgerhq/hw-transport-node-hid-singleton'; const transports: TransportDef[] = [ { create: (): Promise => LedgerHid.create(), type: 'hid' } ]; export { transports };