Files
pezkuwi-ui/packages/ui-settings/src/defaults/ledger.ts
T
pezkuwichain d1cd13072f Rebrand: polkadot → pezkuwi
- Updated all package references
- Fixed react-identicon and related packages
- Version 3.16.8
2026-01-07 02:35:24 +03:00

51 lines
1.0 KiB
TypeScript

// Copyright 2017-2025 @pezkuwi/ui-settings authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { Option } from '../types.js';
export const LEDGER_CONN_DEFAULT = 'none';
export const LEDGER_CONN: Option[] = [
{
info: 'none',
text: 'Do not attach Ledger devices',
value: 'none'
},
// Deprecated
// {
// info: 'u2f',
// text: 'Attach Ledger via U2F',
// value: 'u2f'
// },
{
info: 'webusb',
text: 'Attach Ledger via WebUSB (Chrome, recommended)',
value: 'webusb'
},
{
info: 'hid',
text: 'Attach Ledger via WebHID (Chrome, experimental)',
value: 'hid'
}
];
export const LEDGER_APP_DEFAULT = 'generic';
export const LEDGER_APP: Option[] = [
{
info: 'generic',
text: 'Use the Ledger Polkadot Generic App',
value: 'generic'
},
{
info: 'migration',
text: 'Use the Ledger Migration App',
value: 'migration'
},
{
info: 'chainSpecific',
text: 'Use the Chain Specific Ledger App',
value: 'chainSpecific'
}
];