Files
pezkuwi-ui/packages/ui-settings/src/defaults/crypto.ts
T
Jaco Greeff c31e508b45 Add edgeware test 2 (#200)
* Add edgeware test 2

* Add egdeware logos
2019-09-12 22:46:29 +02:00

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'
}
];