Enum cosmwasm_std::StakingMsg[][src]

#[non_exhaustive]pub enum StakingMsg {
    Delegate {
        validator: String,
        amount: Coin,
    },
    Undelegate {
        validator: String,
        amount: Coin,
    },
    Withdraw {
        validator: String,
        recipient: Option<String>,
    },
    Redelegate {
        src_validator: String,
        dst_validator: String,
        amount: Coin,
    },
}

The message types of the staking module.

See https://github.com/cosmos/cosmos-sdk/blob/v0.40.0/proto/cosmos/staking/v1beta1/tx.proto

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Delegate

This is translated to a MsgDelegate. delegator_address is automatically filled with the current contract’s address.

Fields of Delegate

validator: Stringamount: Coin
Undelegate

This is translated to a MsgUndelegate. delegator_address is automatically filled with the current contract’s address.

Fields of Undelegate

validator: Stringamount: Coin
Withdraw

This is translated to a MsgSetWithdrawAddress followed by a MsgWithdrawDelegatorReward. delegator_address is automatically filled with the current contract’s address.

Fields of Withdraw

validator: Stringrecipient: Option<String>

this is the “withdraw address”, the one that should receive the rewards if None, then use delegator address

Redelegate

This is translated to a MsgBeginRedelegate. delegator_address is automatically filled with the current contract’s address.

Fields of Redelegate

src_validator: Stringdst_validator: Stringamount: Coin

Trait Implementations

impl Clone for StakingMsg[src]

impl Debug for StakingMsg[src]

impl<'de> Deserialize<'de> for StakingMsg[src]

impl JsonSchema for StakingMsg[src]

impl PartialEq<StakingMsg> for StakingMsg[src]

impl Serialize for StakingMsg[src]

impl StructuralPartialEq for StakingMsg[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Conv for T

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> DynClone for T where
    T: Clone
[src]

impl<T> FmtForward for T

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> TryConv for T

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.