mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-04-22 14:57:56 +00:00
c31e508b45
* Add edgeware test 2 * Add egdeware logos
19 lines
438 B
TypeScript
19 lines
438 B
TypeScript
// Copyright 2017-2019 @polkadot/ui-settings authors & contributors
|
|
// This software may be modified and distributed under the terms
|
|
// of the Apache-2.0 license. See the LICENSE file for details.
|
|
|
|
import { Option } from '../types';
|
|
|
|
export const CRYPTOS: Option[] = [
|
|
{
|
|
info: 'ed25519',
|
|
text: 'Edwards (ed25519)',
|
|
value: 'ed25519'
|
|
},
|
|
{
|
|
info: 'sr25519',
|
|
text: 'Schnorrkel (sr25519)',
|
|
value: 'sr25519'
|
|
}
|
|
];
|