File tree 4 files changed +5
-11
lines changed
cardano-cli/src/Cardano/CLI
4 files changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -42,18 +42,12 @@ module Cardano.Api (
42
42
AsType (.. ),
43
43
-- * Cryptographic key interface
44
44
-- $keys
45
- Key ,
46
- VerificationKey ,
45
+ Key (.. ),
47
46
SigningKey (.. ),
48
- getVerificationKey ,
49
- verificationKeyHash ,
47
+ VerificationKey (.. ),
50
48
castVerificationKey ,
51
49
castSigningKey ,
52
-
53
- -- ** Generating keys
54
50
generateSigningKey ,
55
- deterministicSigningKey ,
56
- deterministicSigningKeySeedSize ,
57
51
58
52
-- ** Hashes
59
53
-- | In Cardano most keys are identified by their hash, and hashes are
@@ -685,7 +679,6 @@ import Cardano.Api.IPC
685
679
import Cardano.Api.IPC.Monad
686
680
import Cardano.Api.Key
687
681
import Cardano.Api.KeysByron
688
- import Cardano.Api.KeysPraos
689
682
import Cardano.Api.KeysShelley
690
683
import Cardano.Api.LedgerEvent
691
684
import Cardano.Api.LedgerState
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ module Cardano.Api.Shelley
12
12
13
13
-- * Cryptographic key interface
14
14
-- $keys
15
+ Key (.. ),
15
16
VerificationKey (.. ),
16
17
SigningKey (.. ),
17
18
@@ -230,6 +231,7 @@ import Cardano.Api.Eras
230
231
import Cardano.Api.IPC
231
232
import Cardano.Api.InMode
232
233
import Cardano.Api.KeysPraos
234
+ import Cardano.Api.KeysByron
233
235
import Cardano.Api.KeysShelley
234
236
import Cardano.Api.LedgerState
235
237
import Cardano.Api.NetworkId
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import qualified Cardano.Crypto.Hashing as Crypto
21
21
import qualified Cardano.Crypto.Signing as Crypto
22
22
23
23
import Cardano.Api hiding (UpdateProposal , GenesisParameters )
24
- import Cardano.Api.Byron (SomeByronSigningKey (.. ), Tx (.. ), VerificationKey ( .. ) )
24
+ import Cardano.Api.Byron (SomeByronSigningKey (.. ), Tx (.. ))
25
25
26
26
import Ouroboros.Consensus.Byron.Ledger (ByronBlock )
27
27
import Ouroboros.Consensus.Ledger.SupportsMempool (ApplyTxErr )
Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ import qualified Cardano.Crypto.Wallet as Crypto
31
31
import qualified Cardano.Ledger.Keys as Shelley
32
32
33
33
import Cardano.Api
34
- import Cardano.Api.Byron hiding (SomeByronSigningKey (.. ))
35
34
import qualified Cardano.Api.Byron as ByronApi
36
35
import Cardano.Api.Crypto.Ed25519Bip32 (xPrvFromBytes )
37
36
import Cardano.Api.Shelley
You can’t perform that action at this time.
0 commit comments