Add edgeware test 2 (#200)

* Add edgeware test 2

* Add egdeware logos
This commit is contained in:
Jaco Greeff
2019-09-12 22:46:29 +02:00
committed by GitHub
parent 5e7efcf2e0
commit c31e508b45
10 changed files with 263 additions and 189 deletions
@@ -0,0 +1,18 @@
// 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'
}
];