evmos.proto.autogen.py.cosmos.base.v1beta1

Classes

Coin(denom, amount)

Coin defines a token with a denomination and an amount.

DecCoin(denom, amount)

DecCoin defines a token with a denomination and a decimal amount.

DecProto(dec)

DecProto defines a Protobuf wrapper around a Dec object.

IntProto(int)

IntProto defines a Protobuf wrapper around an Int object.

class evmos.proto.autogen.py.cosmos.base.v1beta1.Coin(denom: str = <object object>, amount: str = <object object>)[source]

Bases: Message

Coin defines a token with a denomination and an amount. NOTE: The amount field is an Int which implements the custom method signatures required by gogoproto.

amount: str = <object object>
denom: str = <object object>
class evmos.proto.autogen.py.cosmos.base.v1beta1.DecCoin(denom: str = <object object>, amount: str = <object object>)[source]

Bases: Message

DecCoin defines a token with a denomination and a decimal amount. NOTE: The amount field is an Dec which implements the custom method signatures required by gogoproto.

amount: str = <object object>
denom: str = <object object>
class evmos.proto.autogen.py.cosmos.base.v1beta1.DecProto(dec: str = <object object>)[source]

Bases: Message

DecProto defines a Protobuf wrapper around a Dec object. Deprecated: Prefer to use math.LegacyDec directly. It supports binary Marshal and Unmarshal.

dec: str = <object object>
class evmos.proto.autogen.py.cosmos.base.v1beta1.IntProto(int: str = <object object>)[source]

Bases: Message

IntProto defines a Protobuf wrapper around an Int object. Deprecated: Prefer to use math.Int directly. It supports binary Marshal and Unmarshal.

int: str = <object object>