mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-06-17 16:01:05 +00:00
Ordering for crypto types (#321)
This commit is contained in:
@@ -26,7 +26,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@polkadot/keyring": "^2.10.1",
|
||||
"@polkadot/types": "^1.14.1",
|
||||
"@polkadot/types": "^1.15.0-beta.5",
|
||||
"@polkadot/util": "^2.10.1",
|
||||
"@types/ledgerhq__hw-transport-node-hid": "^4.22.1",
|
||||
"@types/mkdirp": "^1.0.0",
|
||||
|
||||
@@ -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'
|
||||
}
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user