evmos.proto.autogen.py.cosmos.crisis.v1beta1

Classes

GenesisState(constant_fee)

GenesisState defines the crisis module's genesis state.

MsgBase()

MsgStub(channel, *[, timeout, deadline, ...])

MsgUpdateParams(authority, constant_fee)

MsgUpdateParams is the Msg/UpdateParams request type.

MsgUpdateParamsResponse()

MsgUpdateParamsResponse defines the response structure for executing a MsgUpdateParams message.

MsgVerifyInvariant(sender, ...)

MsgVerifyInvariant represents a message to verify a particular invariance.

MsgVerifyInvariantResponse()

MsgVerifyInvariantResponse defines the Msg/VerifyInvariant response type.

class evmos.proto.autogen.py.cosmos.crisis.v1beta1.GenesisState(constant_fee: ~evmos.proto.autogen.py.cosmos.base.v1beta1.Coin = <object object>)[source]

Bases: Message

GenesisState defines the crisis module’s genesis state.

constant_fee: Coin = <object object>

constant_fee is the fee used to verify the invariant in the crisis module.

class evmos.proto.autogen.py.cosmos.crisis.v1beta1.MsgBase[source]

Bases: ServiceBase

async update_params(msg_update_params: MsgUpdateParams) MsgUpdateParamsResponse[source]
async verify_invariant(msg_verify_invariant: MsgVerifyInvariant) MsgVerifyInvariantResponse[source]
class evmos.proto.autogen.py.cosmos.crisis.v1beta1.MsgStub(channel: Channel, *, timeout: float | None = None, deadline: Deadline | None = None, metadata: Mapping[str, str | bytes] | Collection[Tuple[str, str | bytes]] | None = None)[source]

Bases: ServiceStub

async update_params(msg_update_params: MsgUpdateParams, *, timeout: float | None = None, deadline: Deadline | None = None, metadata: MetadataLike | None = None) MsgUpdateParamsResponse[source]
async verify_invariant(msg_verify_invariant: MsgVerifyInvariant, *, timeout: float | None = None, deadline: Deadline | None = None, metadata: MetadataLike | None = None) MsgVerifyInvariantResponse[source]
class evmos.proto.autogen.py.cosmos.crisis.v1beta1.MsgUpdateParams(authority: str = <object object>, constant_fee: ~evmos.proto.autogen.py.cosmos.base.v1beta1.Coin = <object object>)[source]

Bases: Message

MsgUpdateParams is the Msg/UpdateParams request type. .. versionadded:: 0.47

authority: str = <object object>

authority is the address that controls the module (defaults to x/gov unless overwritten).

constant_fee: Coin = <object object>

constant_fee defines the x/crisis parameter.

class evmos.proto.autogen.py.cosmos.crisis.v1beta1.MsgUpdateParamsResponse[source]

Bases: Message

MsgUpdateParamsResponse defines the response structure for executing a MsgUpdateParams message. .. versionadded:: 0.47

class evmos.proto.autogen.py.cosmos.crisis.v1beta1.MsgVerifyInvariant(sender: str = <object object>, invariant_module_name: str = <object object>, invariant_route: str = <object object>)[source]

Bases: Message

MsgVerifyInvariant represents a message to verify a particular invariance.

invariant_module_name: str = <object object>

name of the invariant module.

invariant_route: str = <object object>

invariant_route is the msg’s invariant route.

sender: str = <object object>

sender is the account address of private key to send coins to fee collector account.

class evmos.proto.autogen.py.cosmos.crisis.v1beta1.MsgVerifyInvariantResponse[source]

Bases: Message

MsgVerifyInvariantResponse defines the Msg/VerifyInvariant response type.