bcc-api-1.99.0
Safe HaskellNone
LanguageHaskell2010

Bcc.Api.SerialiseBech32

Description

Bech32 Serialisation

Synopsis

Documentation

class (HasTypeProxy a, SerialiseAsRawBytes a) ⇒ SerialiseAsBech32 a where Source #

Methods

bech32PrefixFor ∷ a → Text Source #

The human readable prefix to use when encoding this value to Bech32.

bech32PrefixesPermittedAsType a → [Text] Source #

The set of human readable prefixes that can be used for this type.

Instances

Instances details
SerialiseAsBech32 StakeAddress Source # 
Instance details

Defined in Bcc.Api.Address

SerialiseAsBech32 (Hash StakePoolKey) Source # 
Instance details

Defined in Bcc.Api.KeysSophie

SerialiseAsBech32 (VerificationKey StakePoolKey) Source # 
Instance details

Defined in Bcc.Api.KeysSophie

SerialiseAsBech32 (VerificationKey StakeExtendedKey) Source # 
Instance details

Defined in Bcc.Api.KeysSophie

SerialiseAsBech32 (VerificationKey StakeKey) Source # 
Instance details

Defined in Bcc.Api.KeysSophie

SerialiseAsBech32 (VerificationKey PaymentExtendedKey) Source # 
Instance details

Defined in Bcc.Api.KeysSophie

SerialiseAsBech32 (VerificationKey PaymentKey) Source # 
Instance details

Defined in Bcc.Api.KeysSophie

SerialiseAsBech32 (VerificationKey VrfKey) Source # 
Instance details

Defined in Bcc.Api.KeysOptimum

SerialiseAsBech32 (VerificationKey KesKey) Source # 
Instance details

Defined in Bcc.Api.KeysOptimum

SerialiseAsBech32 (SigningKey StakePoolKey) Source # 
Instance details

Defined in Bcc.Api.KeysSophie

SerialiseAsBech32 (SigningKey StakeExtendedKey) Source # 
Instance details

Defined in Bcc.Api.KeysSophie

SerialiseAsBech32 (SigningKey StakeKey) Source # 
Instance details

Defined in Bcc.Api.KeysSophie

SerialiseAsBech32 (SigningKey PaymentExtendedKey) Source # 
Instance details

Defined in Bcc.Api.KeysSophie

SerialiseAsBech32 (SigningKey PaymentKey) Source # 
Instance details

Defined in Bcc.Api.KeysSophie

SerialiseAsBech32 (SigningKey VrfKey) Source # 
Instance details

Defined in Bcc.Api.KeysOptimum

SerialiseAsBech32 (SigningKey KesKey) Source # 
Instance details

Defined in Bcc.Api.KeysOptimum

SerialiseAsBech32 (Address SophieAddr) Source # 
Instance details

Defined in Bcc.Api.Address

data Bech32DecodeError Source #

Bech32 decoding error.

Constructors

Bech32DecodingError !DecodingError

There was an error decoding the string as Bech32.

Bech32UnexpectedPrefix !Text !(Set Text)

The human-readable prefix in the Bech32-encoded string is not one of the ones expected.

Bech32DataPartToBytesError !Text

There was an error in extracting a ByteString from the data part of the Bech32-encoded string.

Bech32DeserialiseFromBytesError !ByteString

There was an error in deserialising the bytes into a value of the expected type.

Bech32WrongPrefix !Text !Text

The human-readable prefix in the Bech32-encoded string does not correspond to the prefix that should be used for the payload value.