pub enum TxCert {
RegStaking(Credential, Option<Lovelace>),
UnRegStaking(Credential, Option<Lovelace>),
DelegStaking(Credential, Delegatee),
RegDeleg(Credential, Delegatee, Lovelace),
RegDRep(DRepCredential, Lovelace),
UpdateDRep(DRepCredential),
UnRegDRep(DRepCredential, Lovelace),
PoolRegister(Ed25519PubKeyHash, Ed25519PubKeyHash),
PoolRetire(Ed25519PubKeyHash, BigInt),
AuthHotCommittee(ColdCommitteeCredential, HotCommitteeCredential),
ResignColdCommittee(ColdCommitteeCredential),
}
Variants§
RegStaking(Credential, Option<Lovelace>)
Register staking credential with an optional deposit amount
UnRegStaking(Credential, Option<Lovelace>)
Un-Register staking credential with an optional refund amount
DelegStaking(Credential, Delegatee)
Delegate staking credential to a Delegatee
RegDeleg(Credential, Delegatee, Lovelace)
Register and delegate staking credential to a Delegatee in one certificate. Note that deposit is mandatory.
RegDRep(DRepCredential, Lovelace)
Register a DRep with a deposit value. The optional anchor is omitted.
UpdateDRep(DRepCredential)
Update a DRep. The optional anchor is omitted.
UnRegDRep(DRepCredential, Lovelace)
UnRegister a DRep with mandatory refund value
PoolRegister(Ed25519PubKeyHash, Ed25519PubKeyHash)
A digest of the PoolParams
PoolRetire(Ed25519PubKeyHash, BigInt)
The retirement certificate and the Epoch in which the retirement will take place
AuthHotCommittee(ColdCommitteeCredential, HotCommitteeCredential)
Authorize a Hot credential for a specific Committee member’s cold credential
ResignColdCommittee(ColdCommitteeCredential)
Trait Implementations§
Source§impl IsPlutusData for TxCert
impl IsPlutusData for TxCert
fn to_plutus_data(&self) -> PlutusData
fn from_plutus_data(plutus_data: &PlutusData) -> Result<Self, PlutusDataError>where
Self: Sized,
Source§impl Ord for TxCert
impl Ord for TxCert
Source§impl PartialOrd for TxCert
impl PartialOrd for TxCert
impl Eq for TxCert
impl StructuralPartialEq for TxCert
Auto Trait Implementations§
impl Freeze for TxCert
impl RefUnwindSafe for TxCert
impl Send for TxCert
impl Sync for TxCert
impl Unpin for TxCert
impl UnwindSafe for TxCert
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more