pub struct Signer {
pub party_id: String,
pub verification_key: Vec<u8>,
pub verification_key_signature: Option<Vec<u8>>,
pub operational_certificate: Option<Vec<u8>>,
pub kes_period: Option<i64>,
}Expand description
Signer : Signer represents a signing participant in the network
Fields§
§party_id: StringThe unique identifier of the signer
verification_key: Vec<u8>The public key used to authenticate signer signature
verification_key_signature: Option<Vec<u8>>The signature of the verification_key (signed by the Cardano node KES secret key)
operational_certificate: Option<Vec<u8>>The operational certificate of the stake pool operator attached to the signer node
kes_period: Option<i64>The number of updates of the KES secret key that signed the verification key
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Signer
impl<'de> Deserialize<'de> for Signer
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Signer
Auto Trait Implementations§
impl Freeze for Signer
impl RefUnwindSafe for Signer
impl Send for Signer
impl Sync for Signer
impl Unpin for Signer
impl UnwindSafe for Signer
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more