mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-06-30 20:37:22 +00:00
31 lines
596 B
TypeScript
31 lines
596 B
TypeScript
// Copyright 2017-2020 @polkadot/ui-settings authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import { Option } from '../types';
|
|
|
|
export const CRYPTOS: Option[] = [
|
|
{
|
|
info: 'sr25519',
|
|
text: 'Schnorrkel (sr25519, recommended)',
|
|
value: 'sr25519'
|
|
},
|
|
{
|
|
info: 'ed25519',
|
|
text: 'Edwards (ed25519, alternative)',
|
|
value: 'ed25519'
|
|
},
|
|
{
|
|
info: 'ecdsa',
|
|
text: 'ECDSA (Non BTC/ETH compatible)',
|
|
value: 'ecdsa'
|
|
}
|
|
];
|
|
|
|
export const CRYPTOS_ETH: Option[] = [
|
|
{
|
|
info: 'ethereum',
|
|
text: 'ECDSA (ETH compatible)',
|
|
value: 'ethereum'
|
|
}
|
|
];
|