pub struct StakeKeeper { /* private fields */ }Implementations§
Source§impl StakeKeeper
impl StakeKeeper
pub fn new() -> Self
Sourcepub fn setup(
&self,
storage: &mut dyn Storage,
staking_info: StakingInfo,
) -> AnyResult<()>
pub fn setup( &self, storage: &mut dyn Storage, staking_info: StakingInfo, ) -> AnyResult<()>
Provides some general parameters to the stake keeper
Trait Implementations§
Source§impl Default for StakeKeeper
impl Default for StakeKeeper
Source§impl Module for StakeKeeper
impl Module for StakeKeeper
type ExecT = StakingMsg
type QueryT = StakingQuery
type SudoT = StakingSudo
Source§fn execute<ExecC, QueryC: CustomQuery>(
&self,
api: &dyn Api,
storage: &mut dyn Storage,
router: &dyn CosmosRouter<ExecC = ExecC, QueryC = QueryC>,
block: &BlockInfo,
sender: Addr,
msg: StakingMsg,
) -> AnyResult<AppResponse>
fn execute<ExecC, QueryC: CustomQuery>( &self, api: &dyn Api, storage: &mut dyn Storage, router: &dyn CosmosRouter<ExecC = ExecC, QueryC = QueryC>, block: &BlockInfo, sender: Addr, msg: StakingMsg, ) -> AnyResult<AppResponse>
execute runs any ExecT message, which can be called by any external actor
or smart contract
Source§fn sudo<ExecC, QueryC: CustomQuery>(
&self,
api: &dyn Api,
storage: &mut dyn Storage,
router: &dyn CosmosRouter<ExecC = ExecC, QueryC = QueryC>,
block: &BlockInfo,
msg: StakingSudo,
) -> AnyResult<AppResponse>
fn sudo<ExecC, QueryC: CustomQuery>( &self, api: &dyn Api, storage: &mut dyn Storage, router: &dyn CosmosRouter<ExecC = ExecC, QueryC = QueryC>, block: &BlockInfo, msg: StakingSudo, ) -> AnyResult<AppResponse>
sudo runs privileged actions, like minting tokens, or governance proposals.
This allows modules to have full access to these privileged actions,
that cannot be triggered by smart contracts. Read more
fn query( &self, api: &dyn Api, storage: &dyn Storage, _querier: &dyn Querier, block: &BlockInfo, request: StakingQuery, ) -> AnyResult<Binary>
impl Staking for StakeKeeper
Auto Trait Implementations§
impl Freeze for StakeKeeper
impl RefUnwindSafe for StakeKeeper
impl Send for StakeKeeper
impl Sync for StakeKeeper
impl Unpin for StakeKeeper
impl UnwindSafe for StakeKeeper
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> 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