Ordering for crypto types (#321)

This commit is contained in:
Jaco Greeff
2020-05-19 12:18:06 +02:00
committed by GitHub
parent 90aa4bad13
commit b38301efae
3 changed files with 25 additions and 25 deletions
+7 -7
View File
@@ -6,18 +6,18 @@ import { Option } from '../types';
export const CRYPTOS: Option[] = [
{
info: 'ecdsa',
text: 'ECDSA (ecdsa)',
value: 'ecdsa'
info: 'sr25519',
text: 'Schnorrkel (sr25519, recommended)',
value: 'sr25519'
},
{
info: 'ed25519',
text: 'Edwards (ed25519)',
text: 'Edwards (ed25519, alternative)',
value: 'ed25519'
},
{
info: 'sr25519',
text: 'Schnorrkel (sr25519)',
value: 'sr25519'
info: 'ecdsa',
text: 'ECDSA (BTC/ETH compatible)',
value: 'ecdsa'
}
];