evmos.proto.autogen.py.cosmos.vesting.v1beta1

Classes

BaseVestingAccount(base_account, ...)

BaseVestingAccount implements the VestingAccount interface.

ContinuousVestingAccount(...)

ContinuousVestingAccount implements the VestingAccount interface.

DelayedVestingAccount(base_vesting_account)

DelayedVestingAccount implements the VestingAccount interface.

MsgBase()

MsgCreateVestingAccount(from_address, ...)

MsgCreateVestingAccount defines a message that enables creating a vesting account.

MsgCreateVestingAccountResponse()

MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type.

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

Period(length, amount)

Period defines a length of time and amount of coins that will vest.

PeriodicVestingAccount(base_vesting_account, ...)

PeriodicVestingAccount implements the VestingAccount interface.

PermanentLockedAccount(base_vesting_account)

PermanentLockedAccount implements the VestingAccount interface.

class evmos.proto.autogen.py.cosmos.vesting.v1beta1.BaseVestingAccount(base_account: ~evmos.proto.autogen.py.cosmos.auth.v1beta1.BaseAccount = <object object>, original_vesting: ~typing.List[~evmos.proto.autogen.py.cosmos.base.v1beta1.Coin] = <object object>, delegated_free: ~typing.List[~evmos.proto.autogen.py.cosmos.base.v1beta1.Coin] = <object object>, delegated_vesting: ~typing.List[~evmos.proto.autogen.py.cosmos.base.v1beta1.Coin] = <object object>, end_time: int = <object object>)[source]

Bases: Message

BaseVestingAccount implements the VestingAccount interface. It contains all the necessary fields needed for any vesting account implementation.

base_account: BaseAccount = <object object>
delegated_free: List[Coin] = <object object>
delegated_vesting: List[Coin] = <object object>
end_time: int = <object object>
original_vesting: List[Coin] = <object object>
class evmos.proto.autogen.py.cosmos.vesting.v1beta1.ContinuousVestingAccount(base_vesting_account: ~evmos.proto.autogen.py.cosmos.vesting.v1beta1.BaseVestingAccount = <object object>, start_time: int = <object object>)[source]

Bases: Message

ContinuousVestingAccount implements the VestingAccount interface. It continuously vests by unlocking coins linearly with respect to time.

base_vesting_account: BaseVestingAccount = <object object>
start_time: int = <object object>
class evmos.proto.autogen.py.cosmos.vesting.v1beta1.DelayedVestingAccount(base_vesting_account: ~evmos.proto.autogen.py.cosmos.vesting.v1beta1.BaseVestingAccount = <object object>)[source]

Bases: Message

DelayedVestingAccount implements the VestingAccount interface. It vests all coins after a specific time, but non prior. In other words, it keeps them locked until a specified time.

base_vesting_account: BaseVestingAccount = <object object>
class evmos.proto.autogen.py.cosmos.vesting.v1beta1.MsgBase[source]

Bases: ServiceBase

async create_vesting_account(msg_create_vesting_account: MsgCreateVestingAccount) MsgCreateVestingAccountResponse[source]
class evmos.proto.autogen.py.cosmos.vesting.v1beta1.MsgCreateVestingAccount(from_address: str = <object object>, to_address: str = <object object>, amount: ~typing.List[~evmos.proto.autogen.py.cosmos.base.v1beta1.Coin] = <object object>, end_time: int = <object object>, delayed: bool = <object object>)[source]

Bases: Message

MsgCreateVestingAccount defines a message that enables creating a vesting account.

amount: List[Coin] = <object object>
delayed: bool = <object object>
end_time: int = <object object>
from_address: str = <object object>
to_address: str = <object object>
class evmos.proto.autogen.py.cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse[source]

Bases: Message

MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type.

class evmos.proto.autogen.py.cosmos.vesting.v1beta1.MsgStub(channel: Channel, *, timeout: Optional[float] = None, deadline: Optional[Deadline] = None, metadata: Optional[Union[Mapping[str, Union[str, bytes]], Collection[Tuple[str, Union[str, bytes]]]]] = None)[source]

Bases: ServiceStub

async create_vesting_account(msg_create_vesting_account: MsgCreateVestingAccount, *, timeout: Optional[float] = None, deadline: Optional[Deadline] = None, metadata: Optional[MetadataLike] = None) MsgCreateVestingAccountResponse[source]
class evmos.proto.autogen.py.cosmos.vesting.v1beta1.Period(length: int = <object object>, amount: ~typing.List[~evmos.proto.autogen.py.cosmos.base.v1beta1.Coin] = <object object>)[source]

Bases: Message

Period defines a length of time and amount of coins that will vest.

amount: List[Coin] = <object object>
length: int = <object object>
class evmos.proto.autogen.py.cosmos.vesting.v1beta1.PeriodicVestingAccount(base_vesting_account: ~evmos.proto.autogen.py.cosmos.vesting.v1beta1.BaseVestingAccount = <object object>, start_time: int = <object object>, vesting_periods: ~typing.List[~evmos.proto.autogen.py.cosmos.vesting.v1beta1.Period] = <object object>)[source]

Bases: Message

PeriodicVestingAccount implements the VestingAccount interface. It periodically vests by unlocking coins during each specified period.

base_vesting_account: BaseVestingAccount = <object object>
start_time: int = <object object>
vesting_periods: List[Period] = <object object>
class evmos.proto.autogen.py.cosmos.vesting.v1beta1.PermanentLockedAccount(base_vesting_account: ~evmos.proto.autogen.py.cosmos.vesting.v1beta1.BaseVestingAccount = <object object>)[source]

Bases: Message

PermanentLockedAccount implements the VestingAccount interface. It does not ever release coins, locking them indefinitely. Coins in this account can still be used for delegating and for governance votes even while locked. .. versionadded:: 0.43

base_vesting_account: BaseVestingAccount = <object object>