Trait Name

Source
pub trait Name: Message {
    const NAME: &'static str;
    const PACKAGE: &'static str;

    // Provided methods
    fn full_name() -> String { ... }
    fn type_url() -> String { ... }
}
Expand description

Associate a type name with a Message type.

Required Associated Constants§

Source

const NAME: &'static str

Simple name for this Message. This name is the same as it appears in the source .proto file, e.g. FooBar.

Source

const PACKAGE: &'static str

Package name this message type is contained in. They are domain-like and delimited by ., e.g. google.protobuf.

Provided Methods§

Source

fn full_name() -> String

Fully-qualified unique name for this Message. It’s prefixed with the package name and names of any parent messages, e.g. google.rpc.BadRequest.FieldViolation. By default, this is the package name followed by the message name. Fully-qualified names must be unique within a domain of Type URLs.

Source

fn type_url() -> String

Type URL for this Message, which by default is the full name with a leading slash, but may also include a leading domain name, e.g. type.googleapis.com/google.profile.Person. This can be used when serializing into the google.protobuf.Any type.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Name for bool

google.protobuf.BoolValue

Source§

const NAME: &'static str = "BoolValue"

Source§

const PACKAGE: &'static str = "google.protobuf"

Source§

fn type_url() -> String

Source§

impl Name for f32

google.protobuf.FloatValue

Source§

const NAME: &'static str = "FloatValue"

Source§

const PACKAGE: &'static str = "google.protobuf"

Source§

fn type_url() -> String

Source§

impl Name for f64

google.protobuf.DoubleValue

Source§

const NAME: &'static str = "DoubleValue"

Source§

const PACKAGE: &'static str = "google.protobuf"

Source§

fn type_url() -> String

Source§

impl Name for i32

google.protobuf.Int32Value

Source§

const NAME: &'static str = "Int32Value"

Source§

const PACKAGE: &'static str = "google.protobuf"

Source§

fn type_url() -> String

Source§

impl Name for i64

google.protobuf.Int64Value

Source§

const NAME: &'static str = "Int64Value"

Source§

const PACKAGE: &'static str = "google.protobuf"

Source§

fn type_url() -> String

Source§

impl Name for u32

google.protobuf.UInt32Value

Source§

const NAME: &'static str = "UInt32Value"

Source§

const PACKAGE: &'static str = "google.protobuf"

Source§

fn type_url() -> String

Source§

impl Name for u64

google.protobuf.UInt64Value

Source§

const NAME: &'static str = "UInt64Value"

Source§

const PACKAGE: &'static str = "google.protobuf"

Source§

fn type_url() -> String

Source§

impl Name for ()

google.protobuf.Empty

Source§

const NAME: &'static str = "Empty"

Source§

const PACKAGE: &'static str = "google.protobuf"

Source§

fn type_url() -> String

Source§

impl Name for String

google.protobuf.StringValue

Source§

const NAME: &'static str = "StringValue"

Source§

const PACKAGE: &'static str = "google.protobuf"

Source§

fn type_url() -> String

Source§

impl Name for Vec<u8>

google.protobuf.BytesValue

Source§

const NAME: &'static str = "BytesValue"

Source§

const PACKAGE: &'static str = "google.protobuf"

Source§

fn type_url() -> String

Source§

impl Name for Bytes

google.protobuf.BytesValue

Source§

const NAME: &'static str = "BytesValue"

Source§

const PACKAGE: &'static str = "google.protobuf"

Source§

fn type_url() -> String

Source§

impl Name for Duration

Source§

const PACKAGE: &'static str = PACKAGE

Source§

const NAME: &'static str = "Duration"

Source§

fn type_url() -> String

Implementors§

Source§

impl Name for AddressBytesToStringRequest

Source§

const NAME: &'static str = "AddressBytesToStringRequest"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for AddressBytesToStringResponse

Source§

const NAME: &'static str = "AddressBytesToStringResponse"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for AddressStringToBytesRequest

Source§

const NAME: &'static str = "AddressStringToBytesRequest"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for AddressStringToBytesResponse

Source§

const NAME: &'static str = "AddressStringToBytesResponse"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for BaseAccount

Source§

const NAME: &'static str = "BaseAccount"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for Bech32PrefixRequest

Source§

const NAME: &'static str = "Bech32PrefixRequest"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for Bech32PrefixResponse

Source§

const NAME: &'static str = "Bech32PrefixResponse"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for side_proto::cosmos::auth::v1beta1::GenesisState

Source§

const NAME: &'static str = "GenesisState"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for ModuleAccount

Source§

const NAME: &'static str = "ModuleAccount"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for ModuleCredential

Source§

const NAME: &'static str = "ModuleCredential"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for side_proto::cosmos::auth::v1beta1::MsgUpdateParams

Source§

const NAME: &'static str = "MsgUpdateParams"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for side_proto::cosmos::auth::v1beta1::MsgUpdateParamsResponse

Source§

const NAME: &'static str = "MsgUpdateParamsResponse"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for side_proto::cosmos::auth::v1beta1::Params

Source§

const NAME: &'static str = "Params"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for QueryAccountAddressByIdRequest

Source§

const NAME: &'static str = "QueryAccountAddressByIDRequest"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for QueryAccountAddressByIdResponse

Source§

const NAME: &'static str = "QueryAccountAddressByIDResponse"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for QueryAccountInfoRequest

Source§

const NAME: &'static str = "QueryAccountInfoRequest"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for QueryAccountInfoResponse

Source§

const NAME: &'static str = "QueryAccountInfoResponse"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for QueryAccountRequest

Source§

const NAME: &'static str = "QueryAccountRequest"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for QueryAccountResponse

Source§

const NAME: &'static str = "QueryAccountResponse"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for QueryAccountsRequest

Source§

const NAME: &'static str = "QueryAccountsRequest"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for QueryAccountsResponse

Source§

const NAME: &'static str = "QueryAccountsResponse"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for QueryModuleAccountByNameRequest

Source§

const NAME: &'static str = "QueryModuleAccountByNameRequest"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for QueryModuleAccountByNameResponse

Source§

const NAME: &'static str = "QueryModuleAccountByNameResponse"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for QueryModuleAccountsRequest

Source§

const NAME: &'static str = "QueryModuleAccountsRequest"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for QueryModuleAccountsResponse

Source§

const NAME: &'static str = "QueryModuleAccountsResponse"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for side_proto::cosmos::auth::v1beta1::QueryParamsRequest

Source§

const NAME: &'static str = "QueryParamsRequest"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for side_proto::cosmos::auth::v1beta1::QueryParamsResponse

Source§

const NAME: &'static str = "QueryParamsResponse"

Source§

const PACKAGE: &'static str = "cosmos.auth.v1beta1"

Source§

impl Name for EventGrant

Source§

const NAME: &'static str = "EventGrant"

Source§

const PACKAGE: &'static str = "cosmos.authz.v1beta1"

Source§

impl Name for EventRevoke

Source§

const NAME: &'static str = "EventRevoke"

Source§

const PACKAGE: &'static str = "cosmos.authz.v1beta1"

Source§

impl Name for GenericAuthorization

Source§

const NAME: &'static str = "GenericAuthorization"

Source§

const PACKAGE: &'static str = "cosmos.authz.v1beta1"

Source§

impl Name for side_proto::cosmos::authz::v1beta1::GenesisState

Source§

const NAME: &'static str = "GenesisState"

Source§

const PACKAGE: &'static str = "cosmos.authz.v1beta1"

Source§

impl Name for side_proto::cosmos::authz::v1beta1::Grant

Source§

const NAME: &'static str = "Grant"

Source§

const PACKAGE: &'static str = "cosmos.authz.v1beta1"

Source§

impl Name for GrantAuthorization

Source§

const NAME: &'static str = "GrantAuthorization"

Source§

const PACKAGE: &'static str = "cosmos.authz.v1beta1"

Source§

impl Name for GrantQueueItem

Source§

const NAME: &'static str = "GrantQueueItem"

Source§

const PACKAGE: &'static str = "cosmos.authz.v1beta1"

Source§

impl Name for MsgExec

Source§

const NAME: &'static str = "MsgExec"

Source§

const PACKAGE: &'static str = "cosmos.authz.v1beta1"

Source§

impl Name for MsgExecResponse

Source§

const NAME: &'static str = "MsgExecResponse"

Source§

const PACKAGE: &'static str = "cosmos.authz.v1beta1"

Source§

impl Name for MsgGrant

Source§

const NAME: &'static str = "MsgGrant"

Source§

const PACKAGE: &'static str = "cosmos.authz.v1beta1"

Source§

impl Name for MsgGrantResponse

Source§

const NAME: &'static str = "MsgGrantResponse"

Source§

const PACKAGE: &'static str = "cosmos.authz.v1beta1"

Source§

impl Name for MsgRevoke

Source§

const NAME: &'static str = "MsgRevoke"

Source§

const PACKAGE: &'static str = "cosmos.authz.v1beta1"

Source§

impl Name for MsgRevokeResponse

Source§

const NAME: &'static str = "MsgRevokeResponse"

Source§

const PACKAGE: &'static str = "cosmos.authz.v1beta1"

Source§

impl Name for QueryGranteeGrantsRequest

Source§

const NAME: &'static str = "QueryGranteeGrantsRequest"

Source§

const PACKAGE: &'static str = "cosmos.authz.v1beta1"

Source§

impl Name for QueryGranteeGrantsResponse

Source§

const NAME: &'static str = "QueryGranteeGrantsResponse"

Source§

const PACKAGE: &'static str = "cosmos.authz.v1beta1"

Source§

impl Name for QueryGranterGrantsRequest

Source§

const NAME: &'static str = "QueryGranterGrantsRequest"

Source§

const PACKAGE: &'static str = "cosmos.authz.v1beta1"

Source§

impl Name for QueryGranterGrantsResponse

Source§

const NAME: &'static str = "QueryGranterGrantsResponse"

Source§

const PACKAGE: &'static str = "cosmos.authz.v1beta1"

Source§

impl Name for QueryGrantsRequest

Source§

const NAME: &'static str = "QueryGrantsRequest"

Source§

const PACKAGE: &'static str = "cosmos.authz.v1beta1"

Source§

impl Name for QueryGrantsResponse

Source§

const NAME: &'static str = "QueryGrantsResponse"

Source§

const PACKAGE: &'static str = "cosmos.authz.v1beta1"

Source§

impl Name for Balance

Source§

const NAME: &'static str = "Balance"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for DenomOwner

Source§

const NAME: &'static str = "DenomOwner"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for DenomUnit

Source§

const NAME: &'static str = "DenomUnit"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for side_proto::cosmos::bank::v1beta1::GenesisState

Source§

const NAME: &'static str = "GenesisState"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for Input

Source§

const NAME: &'static str = "Input"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for Metadata

Source§

const NAME: &'static str = "Metadata"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for MsgMultiSend

Source§

const NAME: &'static str = "MsgMultiSend"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for MsgMultiSendResponse

Source§

const NAME: &'static str = "MsgMultiSendResponse"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for MsgSend

Source§

const NAME: &'static str = "MsgSend"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for MsgSendResponse

Source§

const NAME: &'static str = "MsgSendResponse"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for MsgSetSendEnabled

Source§

const NAME: &'static str = "MsgSetSendEnabled"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for MsgSetSendEnabledResponse

Source§

const NAME: &'static str = "MsgSetSendEnabledResponse"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for side_proto::cosmos::bank::v1beta1::MsgUpdateParams

Source§

const NAME: &'static str = "MsgUpdateParams"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for side_proto::cosmos::bank::v1beta1::MsgUpdateParamsResponse

Source§

const NAME: &'static str = "MsgUpdateParamsResponse"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for Output

Source§

const NAME: &'static str = "Output"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for side_proto::cosmos::bank::v1beta1::Params

Source§

const NAME: &'static str = "Params"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QueryAllBalancesRequest

Source§

const NAME: &'static str = "QueryAllBalancesRequest"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QueryAllBalancesResponse

Source§

const NAME: &'static str = "QueryAllBalancesResponse"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QueryBalanceRequest

Source§

const NAME: &'static str = "QueryBalanceRequest"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QueryBalanceResponse

Source§

const NAME: &'static str = "QueryBalanceResponse"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QueryDenomMetadataByQueryStringRequest

Source§

const NAME: &'static str = "QueryDenomMetadataByQueryStringRequest"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QueryDenomMetadataByQueryStringResponse

Source§

const NAME: &'static str = "QueryDenomMetadataByQueryStringResponse"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QueryDenomMetadataRequest

Source§

const NAME: &'static str = "QueryDenomMetadataRequest"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QueryDenomMetadataResponse

Source§

const NAME: &'static str = "QueryDenomMetadataResponse"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QueryDenomOwnersByQueryRequest

Source§

const NAME: &'static str = "QueryDenomOwnersByQueryRequest"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QueryDenomOwnersByQueryResponse

Source§

const NAME: &'static str = "QueryDenomOwnersByQueryResponse"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QueryDenomOwnersRequest

Source§

const NAME: &'static str = "QueryDenomOwnersRequest"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QueryDenomOwnersResponse

Source§

const NAME: &'static str = "QueryDenomOwnersResponse"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QueryDenomsMetadataRequest

Source§

const NAME: &'static str = "QueryDenomsMetadataRequest"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QueryDenomsMetadataResponse

Source§

const NAME: &'static str = "QueryDenomsMetadataResponse"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for side_proto::cosmos::bank::v1beta1::QueryParamsRequest

Source§

const NAME: &'static str = "QueryParamsRequest"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for side_proto::cosmos::bank::v1beta1::QueryParamsResponse

Source§

const NAME: &'static str = "QueryParamsResponse"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QuerySendEnabledRequest

Source§

const NAME: &'static str = "QuerySendEnabledRequest"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QuerySendEnabledResponse

Source§

const NAME: &'static str = "QuerySendEnabledResponse"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QuerySpendableBalanceByDenomRequest

Source§

const NAME: &'static str = "QuerySpendableBalanceByDenomRequest"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QuerySpendableBalanceByDenomResponse

Source§

const NAME: &'static str = "QuerySpendableBalanceByDenomResponse"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QuerySpendableBalancesRequest

Source§

const NAME: &'static str = "QuerySpendableBalancesRequest"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QuerySpendableBalancesResponse

Source§

const NAME: &'static str = "QuerySpendableBalancesResponse"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QuerySupplyOfRequest

Source§

const NAME: &'static str = "QuerySupplyOfRequest"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QuerySupplyOfResponse

Source§

const NAME: &'static str = "QuerySupplyOfResponse"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QueryTotalSupplyRequest

Source§

const NAME: &'static str = "QueryTotalSupplyRequest"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for QueryTotalSupplyResponse

Source§

const NAME: &'static str = "QueryTotalSupplyResponse"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for SendAuthorization

Source§

const NAME: &'static str = "SendAuthorization"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for SendEnabled

Source§

const NAME: &'static str = "SendEnabled"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for Supply

Source§

const NAME: &'static str = "Supply"

Source§

const PACKAGE: &'static str = "cosmos.bank.v1beta1"

Source§

impl Name for AbciMessageLog

Source§

const NAME: &'static str = "ABCIMessageLog"

Source§

const PACKAGE: &'static str = "cosmos.base.abci.v1beta1"

Source§

impl Name for Attribute

Source§

const NAME: &'static str = "Attribute"

Source§

const PACKAGE: &'static str = "cosmos.base.abci.v1beta1"

Source§

impl Name for GasInfo

Source§

const NAME: &'static str = "GasInfo"

Source§

const PACKAGE: &'static str = "cosmos.base.abci.v1beta1"

Source§

impl Name for MsgData

Source§

const NAME: &'static str = "MsgData"

Source§

const PACKAGE: &'static str = "cosmos.base.abci.v1beta1"

Source§

impl Name for Result

Source§

const NAME: &'static str = "Result"

Source§

const PACKAGE: &'static str = "cosmos.base.abci.v1beta1"

Source§

impl Name for SearchBlocksResult

Source§

const NAME: &'static str = "SearchBlocksResult"

Source§

const PACKAGE: &'static str = "cosmos.base.abci.v1beta1"

Source§

impl Name for SearchTxsResult

Source§

const NAME: &'static str = "SearchTxsResult"

Source§

const PACKAGE: &'static str = "cosmos.base.abci.v1beta1"

Source§

impl Name for SimulationResponse

Source§

const NAME: &'static str = "SimulationResponse"

Source§

const PACKAGE: &'static str = "cosmos.base.abci.v1beta1"

Source§

impl Name for StringEvent

Source§

const NAME: &'static str = "StringEvent"

Source§

const PACKAGE: &'static str = "cosmos.base.abci.v1beta1"

Source§

impl Name for TxMsgData

Source§

const NAME: &'static str = "TxMsgData"

Source§

const PACKAGE: &'static str = "cosmos.base.abci.v1beta1"

Source§

impl Name for TxResponse

Source§

const NAME: &'static str = "TxResponse"

Source§

const PACKAGE: &'static str = "cosmos.base.abci.v1beta1"

Source§

impl Name for ConfigRequest

Source§

const NAME: &'static str = "ConfigRequest"

Source§

const PACKAGE: &'static str = "cosmos.base.node.v1beta1"

Source§

impl Name for ConfigResponse

Source§

const NAME: &'static str = "ConfigResponse"

Source§

const PACKAGE: &'static str = "cosmos.base.node.v1beta1"

Source§

impl Name for StatusRequest

Source§

const NAME: &'static str = "StatusRequest"

Source§

const PACKAGE: &'static str = "cosmos.base.node.v1beta1"

Source§

impl Name for StatusResponse

Source§

const NAME: &'static str = "StatusResponse"

Source§

const PACKAGE: &'static str = "cosmos.base.node.v1beta1"

Source§

impl Name for PageRequest

Source§

const NAME: &'static str = "PageRequest"

Source§

const PACKAGE: &'static str = "cosmos.base.query.v1beta1"

Source§

impl Name for PageResponse

Source§

const NAME: &'static str = "PageResponse"

Source§

const PACKAGE: &'static str = "cosmos.base.query.v1beta1"

Source§

impl Name for ListAllInterfacesRequest

Source§

const NAME: &'static str = "ListAllInterfacesRequest"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v1beta1"

Source§

impl Name for ListAllInterfacesResponse

Source§

const NAME: &'static str = "ListAllInterfacesResponse"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v1beta1"

Source§

impl Name for ListImplementationsRequest

Source§

const NAME: &'static str = "ListImplementationsRequest"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v1beta1"

Source§

impl Name for ListImplementationsResponse

Source§

const NAME: &'static str = "ListImplementationsResponse"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v1beta1"

Source§

impl Name for AppDescriptor

Source§

const NAME: &'static str = "AppDescriptor"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for AuthnDescriptor

Source§

const NAME: &'static str = "AuthnDescriptor"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for ChainDescriptor

Source§

const NAME: &'static str = "ChainDescriptor"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for CodecDescriptor

Source§

const NAME: &'static str = "CodecDescriptor"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for ConfigurationDescriptor

Source§

const NAME: &'static str = "ConfigurationDescriptor"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for GetAuthnDescriptorRequest

Source§

const NAME: &'static str = "GetAuthnDescriptorRequest"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for GetAuthnDescriptorResponse

Source§

const NAME: &'static str = "GetAuthnDescriptorResponse"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for GetChainDescriptorRequest

Source§

const NAME: &'static str = "GetChainDescriptorRequest"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for GetChainDescriptorResponse

Source§

const NAME: &'static str = "GetChainDescriptorResponse"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for GetCodecDescriptorRequest

Source§

const NAME: &'static str = "GetCodecDescriptorRequest"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for GetCodecDescriptorResponse

Source§

const NAME: &'static str = "GetCodecDescriptorResponse"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for GetConfigurationDescriptorRequest

Source§

const NAME: &'static str = "GetConfigurationDescriptorRequest"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for GetConfigurationDescriptorResponse

Source§

const NAME: &'static str = "GetConfigurationDescriptorResponse"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for GetQueryServicesDescriptorRequest

Source§

const NAME: &'static str = "GetQueryServicesDescriptorRequest"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for GetQueryServicesDescriptorResponse

Source§

const NAME: &'static str = "GetQueryServicesDescriptorResponse"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for GetTxDescriptorRequest

Source§

const NAME: &'static str = "GetTxDescriptorRequest"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for GetTxDescriptorResponse

Source§

const NAME: &'static str = "GetTxDescriptorResponse"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for InterfaceAcceptingMessageDescriptor

Source§

const NAME: &'static str = "InterfaceAcceptingMessageDescriptor"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for InterfaceDescriptor

Source§

const NAME: &'static str = "InterfaceDescriptor"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for InterfaceImplementerDescriptor

Source§

const NAME: &'static str = "InterfaceImplementerDescriptor"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for MsgDescriptor

Source§

const NAME: &'static str = "MsgDescriptor"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for QueryMethodDescriptor

Source§

const NAME: &'static str = "QueryMethodDescriptor"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for QueryServiceDescriptor

Source§

const NAME: &'static str = "QueryServiceDescriptor"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for QueryServicesDescriptor

Source§

const NAME: &'static str = "QueryServicesDescriptor"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for SigningModeDescriptor

Source§

const NAME: &'static str = "SigningModeDescriptor"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for TxDescriptor

Source§

const NAME: &'static str = "TxDescriptor"

Source§

const PACKAGE: &'static str = "cosmos.base.reflection.v2alpha1"

Source§

impl Name for AbciQueryRequest

Source§

const NAME: &'static str = "ABCIQueryRequest"

Source§

const PACKAGE: &'static str = "cosmos.base.tendermint.v1beta1"

Source§

impl Name for AbciQueryResponse

Source§

const NAME: &'static str = "ABCIQueryResponse"

Source§

const PACKAGE: &'static str = "cosmos.base.tendermint.v1beta1"

Source§

impl Name for Block

Source§

const NAME: &'static str = "Block"

Source§

const PACKAGE: &'static str = "cosmos.base.tendermint.v1beta1"

Source§

impl Name for GetBlockByHeightRequest

Source§

const NAME: &'static str = "GetBlockByHeightRequest"

Source§

const PACKAGE: &'static str = "cosmos.base.tendermint.v1beta1"

Source§

impl Name for GetBlockByHeightResponse

Source§

const NAME: &'static str = "GetBlockByHeightResponse"

Source§

const PACKAGE: &'static str = "cosmos.base.tendermint.v1beta1"

Source§

impl Name for GetLatestBlockRequest

Source§

const NAME: &'static str = "GetLatestBlockRequest"

Source§

const PACKAGE: &'static str = "cosmos.base.tendermint.v1beta1"

Source§

impl Name for GetLatestBlockResponse

Source§

const NAME: &'static str = "GetLatestBlockResponse"

Source§

const PACKAGE: &'static str = "cosmos.base.tendermint.v1beta1"

Source§

impl Name for GetLatestValidatorSetRequest

Source§

const NAME: &'static str = "GetLatestValidatorSetRequest"

Source§

const PACKAGE: &'static str = "cosmos.base.tendermint.v1beta1"

Source§

impl Name for GetLatestValidatorSetResponse

Source§

const NAME: &'static str = "GetLatestValidatorSetResponse"

Source§

const PACKAGE: &'static str = "cosmos.base.tendermint.v1beta1"

Source§

impl Name for GetNodeInfoRequest

Source§

const NAME: &'static str = "GetNodeInfoRequest"

Source§

const PACKAGE: &'static str = "cosmos.base.tendermint.v1beta1"

Source§

impl Name for GetNodeInfoResponse

Source§

const NAME: &'static str = "GetNodeInfoResponse"

Source§

const PACKAGE: &'static str = "cosmos.base.tendermint.v1beta1"

Source§

impl Name for GetSyncingRequest

Source§

const NAME: &'static str = "GetSyncingRequest"

Source§

const PACKAGE: &'static str = "cosmos.base.tendermint.v1beta1"

Source§

impl Name for GetSyncingResponse

Source§

const NAME: &'static str = "GetSyncingResponse"

Source§

const PACKAGE: &'static str = "cosmos.base.tendermint.v1beta1"

Source§

impl Name for GetValidatorSetByHeightRequest

Source§

const NAME: &'static str = "GetValidatorSetByHeightRequest"

Source§

const PACKAGE: &'static str = "cosmos.base.tendermint.v1beta1"

Source§

impl Name for GetValidatorSetByHeightResponse

Source§

const NAME: &'static str = "GetValidatorSetByHeightResponse"

Source§

const PACKAGE: &'static str = "cosmos.base.tendermint.v1beta1"

Source§

impl Name for Header

Source§

const NAME: &'static str = "Header"

Source§

const PACKAGE: &'static str = "cosmos.base.tendermint.v1beta1"

Source§

impl Name for Module

Source§

const NAME: &'static str = "Module"

Source§

const PACKAGE: &'static str = "cosmos.base.tendermint.v1beta1"

Source§

impl Name for ProofOp

Source§

const NAME: &'static str = "ProofOp"

Source§

const PACKAGE: &'static str = "cosmos.base.tendermint.v1beta1"

Source§

impl Name for ProofOps

Source§

const NAME: &'static str = "ProofOps"

Source§

const PACKAGE: &'static str = "cosmos.base.tendermint.v1beta1"

Source§

impl Name for side_proto::cosmos::base::tendermint::v1beta1::Validator

Source§

const NAME: &'static str = "Validator"

Source§

const PACKAGE: &'static str = "cosmos.base.tendermint.v1beta1"

Source§

impl Name for VersionInfo

Source§

const NAME: &'static str = "VersionInfo"

Source§

const PACKAGE: &'static str = "cosmos.base.tendermint.v1beta1"

Source§

impl Name for Coin

Source§

const NAME: &'static str = "Coin"

Source§

const PACKAGE: &'static str = "cosmos.base.v1beta1"

Source§

impl Name for DecCoin

Source§

const NAME: &'static str = "DecCoin"

Source§

const PACKAGE: &'static str = "cosmos.base.v1beta1"

Source§

impl Name for DecProto

Source§

const NAME: &'static str = "DecProto"

Source§

const PACKAGE: &'static str = "cosmos.base.v1beta1"

Source§

impl Name for IntProto

Source§

const NAME: &'static str = "IntProto"

Source§

const PACKAGE: &'static str = "cosmos.base.v1beta1"

Source§

impl Name for side_proto::cosmos::crisis::v1beta1::GenesisState

Source§

const NAME: &'static str = "GenesisState"

Source§

const PACKAGE: &'static str = "cosmos.crisis.v1beta1"

Source§

impl Name for side_proto::cosmos::crisis::v1beta1::MsgUpdateParams

Source§

const NAME: &'static str = "MsgUpdateParams"

Source§

const PACKAGE: &'static str = "cosmos.crisis.v1beta1"

Source§

impl Name for side_proto::cosmos::crisis::v1beta1::MsgUpdateParamsResponse

Source§

const NAME: &'static str = "MsgUpdateParamsResponse"

Source§

const PACKAGE: &'static str = "cosmos.crisis.v1beta1"

Source§

impl Name for MsgVerifyInvariant

Source§

const NAME: &'static str = "MsgVerifyInvariant"

Source§

const PACKAGE: &'static str = "cosmos.crisis.v1beta1"

Source§

impl Name for MsgVerifyInvariantResponse

Source§

const NAME: &'static str = "MsgVerifyInvariantResponse"

Source§

const PACKAGE: &'static str = "cosmos.crisis.v1beta1"

Source§

impl Name for side_proto::cosmos::crypto::ed25519::PrivKey

Source§

const NAME: &'static str = "PrivKey"

Source§

const PACKAGE: &'static str = "cosmos.crypto.ed25519"

Source§

impl Name for side_proto::cosmos::crypto::ed25519::PubKey

Source§

const NAME: &'static str = "PubKey"

Source§

const PACKAGE: &'static str = "cosmos.crypto.ed25519"

Source§

impl Name for LegacyAminoPubKey

Source§

const NAME: &'static str = "LegacyAminoPubKey"

Source§

const PACKAGE: &'static str = "cosmos.crypto.multisig"

Source§

impl Name for CompactBitArray

Source§

const NAME: &'static str = "CompactBitArray"

Source§

const PACKAGE: &'static str = "cosmos.crypto.multisig.v1beta1"

Source§

impl Name for MultiSignature

Source§

const NAME: &'static str = "MultiSignature"

Source§

const PACKAGE: &'static str = "cosmos.crypto.multisig.v1beta1"

Source§

impl Name for side_proto::cosmos::crypto::secp256k1::PrivKey

Source§

const NAME: &'static str = "PrivKey"

Source§

const PACKAGE: &'static str = "cosmos.crypto.secp256k1"

Source§

impl Name for side_proto::cosmos::crypto::secp256k1::PubKey

Source§

const NAME: &'static str = "PubKey"

Source§

const PACKAGE: &'static str = "cosmos.crypto.secp256k1"

Source§

impl Name for side_proto::cosmos::crypto::secp256r1::PrivKey

Source§

const NAME: &'static str = "PrivKey"

Source§

const PACKAGE: &'static str = "cosmos.crypto.secp256r1"

Source§

impl Name for side_proto::cosmos::crypto::secp256r1::PubKey

Source§

const NAME: &'static str = "PubKey"

Source§

const PACKAGE: &'static str = "cosmos.crypto.secp256r1"

Source§

impl Name for CommunityPoolSpendProposal

Source§

const NAME: &'static str = "CommunityPoolSpendProposal"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for CommunityPoolSpendProposalWithDeposit

Source§

const NAME: &'static str = "CommunityPoolSpendProposalWithDeposit"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for DelegationDelegatorReward

Source§

const NAME: &'static str = "DelegationDelegatorReward"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for DelegatorStartingInfo

Source§

const NAME: &'static str = "DelegatorStartingInfo"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for DelegatorStartingInfoRecord

Source§

const NAME: &'static str = "DelegatorStartingInfoRecord"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for DelegatorWithdrawInfo

Source§

const NAME: &'static str = "DelegatorWithdrawInfo"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for FeePool

Source§

const NAME: &'static str = "FeePool"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for side_proto::cosmos::distribution::v1beta1::GenesisState

Source§

const NAME: &'static str = "GenesisState"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for MsgCommunityPoolSpend

Source§

const NAME: &'static str = "MsgCommunityPoolSpend"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for MsgCommunityPoolSpendResponse

Source§

const NAME: &'static str = "MsgCommunityPoolSpendResponse"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for MsgDepositValidatorRewardsPool

Source§

const NAME: &'static str = "MsgDepositValidatorRewardsPool"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for MsgDepositValidatorRewardsPoolResponse

Source§

const NAME: &'static str = "MsgDepositValidatorRewardsPoolResponse"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for MsgFundCommunityPool

Source§

const NAME: &'static str = "MsgFundCommunityPool"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for MsgFundCommunityPoolResponse

Source§

const NAME: &'static str = "MsgFundCommunityPoolResponse"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for MsgSetWithdrawAddress

Source§

const NAME: &'static str = "MsgSetWithdrawAddress"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for MsgSetWithdrawAddressResponse

Source§

const NAME: &'static str = "MsgSetWithdrawAddressResponse"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for side_proto::cosmos::distribution::v1beta1::MsgUpdateParams

Source§

const NAME: &'static str = "MsgUpdateParams"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for side_proto::cosmos::distribution::v1beta1::MsgUpdateParamsResponse

Source§

const NAME: &'static str = "MsgUpdateParamsResponse"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for MsgWithdrawDelegatorReward

Source§

const NAME: &'static str = "MsgWithdrawDelegatorReward"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for MsgWithdrawDelegatorRewardResponse

Source§

const NAME: &'static str = "MsgWithdrawDelegatorRewardResponse"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for MsgWithdrawValidatorCommission

Source§

const NAME: &'static str = "MsgWithdrawValidatorCommission"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for MsgWithdrawValidatorCommissionResponse

Source§

const NAME: &'static str = "MsgWithdrawValidatorCommissionResponse"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for side_proto::cosmos::distribution::v1beta1::Params

Source§

const NAME: &'static str = "Params"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for QueryCommunityPoolRequest

Source§

const NAME: &'static str = "QueryCommunityPoolRequest"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for QueryCommunityPoolResponse

Source§

const NAME: &'static str = "QueryCommunityPoolResponse"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for QueryDelegationRewardsRequest

Source§

const NAME: &'static str = "QueryDelegationRewardsRequest"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for QueryDelegationRewardsResponse

Source§

const NAME: &'static str = "QueryDelegationRewardsResponse"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for QueryDelegationTotalRewardsRequest

Source§

const NAME: &'static str = "QueryDelegationTotalRewardsRequest"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for QueryDelegationTotalRewardsResponse

Source§

const NAME: &'static str = "QueryDelegationTotalRewardsResponse"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for side_proto::cosmos::distribution::v1beta1::QueryDelegatorValidatorsRequest

Source§

const NAME: &'static str = "QueryDelegatorValidatorsRequest"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for side_proto::cosmos::distribution::v1beta1::QueryDelegatorValidatorsResponse

Source§

const NAME: &'static str = "QueryDelegatorValidatorsResponse"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for QueryDelegatorWithdrawAddressRequest

Source§

const NAME: &'static str = "QueryDelegatorWithdrawAddressRequest"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for QueryDelegatorWithdrawAddressResponse

Source§

const NAME: &'static str = "QueryDelegatorWithdrawAddressResponse"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for side_proto::cosmos::distribution::v1beta1::QueryParamsRequest

Source§

const NAME: &'static str = "QueryParamsRequest"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for side_proto::cosmos::distribution::v1beta1::QueryParamsResponse

Source§

const NAME: &'static str = "QueryParamsResponse"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for QueryValidatorCommissionRequest

Source§

const NAME: &'static str = "QueryValidatorCommissionRequest"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for QueryValidatorCommissionResponse

Source§

const NAME: &'static str = "QueryValidatorCommissionResponse"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for QueryValidatorDistributionInfoRequest

Source§

const NAME: &'static str = "QueryValidatorDistributionInfoRequest"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for QueryValidatorDistributionInfoResponse

Source§

const NAME: &'static str = "QueryValidatorDistributionInfoResponse"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for QueryValidatorOutstandingRewardsRequest

Source§

const NAME: &'static str = "QueryValidatorOutstandingRewardsRequest"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for QueryValidatorOutstandingRewardsResponse

Source§

const NAME: &'static str = "QueryValidatorOutstandingRewardsResponse"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for QueryValidatorSlashesRequest

Source§

const NAME: &'static str = "QueryValidatorSlashesRequest"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for QueryValidatorSlashesResponse

Source§

const NAME: &'static str = "QueryValidatorSlashesResponse"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for ValidatorAccumulatedCommission

Source§

const NAME: &'static str = "ValidatorAccumulatedCommission"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for ValidatorAccumulatedCommissionRecord

Source§

const NAME: &'static str = "ValidatorAccumulatedCommissionRecord"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for ValidatorCurrentRewards

Source§

const NAME: &'static str = "ValidatorCurrentRewards"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for ValidatorCurrentRewardsRecord

Source§

const NAME: &'static str = "ValidatorCurrentRewardsRecord"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for ValidatorHistoricalRewards

Source§

const NAME: &'static str = "ValidatorHistoricalRewards"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for ValidatorHistoricalRewardsRecord

Source§

const NAME: &'static str = "ValidatorHistoricalRewardsRecord"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for ValidatorOutstandingRewards

Source§

const NAME: &'static str = "ValidatorOutstandingRewards"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for ValidatorOutstandingRewardsRecord

Source§

const NAME: &'static str = "ValidatorOutstandingRewardsRecord"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for ValidatorSlashEvent

Source§

const NAME: &'static str = "ValidatorSlashEvent"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for ValidatorSlashEventRecord

Source§

const NAME: &'static str = "ValidatorSlashEventRecord"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for ValidatorSlashEvents

Source§

const NAME: &'static str = "ValidatorSlashEvents"

Source§

const PACKAGE: &'static str = "cosmos.distribution.v1beta1"

Source§

impl Name for Equivocation

Source§

const NAME: &'static str = "Equivocation"

Source§

const PACKAGE: &'static str = "cosmos.evidence.v1beta1"

Source§

impl Name for side_proto::cosmos::evidence::v1beta1::GenesisState

Source§

const NAME: &'static str = "GenesisState"

Source§

const PACKAGE: &'static str = "cosmos.evidence.v1beta1"

Source§

impl Name for MsgSubmitEvidence

Source§

const NAME: &'static str = "MsgSubmitEvidence"

Source§

const PACKAGE: &'static str = "cosmos.evidence.v1beta1"

Source§

impl Name for MsgSubmitEvidenceResponse

Source§

const NAME: &'static str = "MsgSubmitEvidenceResponse"

Source§

const PACKAGE: &'static str = "cosmos.evidence.v1beta1"

Source§

impl Name for QueryAllEvidenceRequest

Source§

const NAME: &'static str = "QueryAllEvidenceRequest"

Source§

const PACKAGE: &'static str = "cosmos.evidence.v1beta1"

Source§

impl Name for QueryAllEvidenceResponse

Source§

const NAME: &'static str = "QueryAllEvidenceResponse"

Source§

const PACKAGE: &'static str = "cosmos.evidence.v1beta1"

Source§

impl Name for QueryEvidenceRequest

Source§

const NAME: &'static str = "QueryEvidenceRequest"

Source§

const PACKAGE: &'static str = "cosmos.evidence.v1beta1"

Source§

impl Name for QueryEvidenceResponse

Source§

const NAME: &'static str = "QueryEvidenceResponse"

Source§

const PACKAGE: &'static str = "cosmos.evidence.v1beta1"

Source§

impl Name for AllowedMsgAllowance

Source§

const NAME: &'static str = "AllowedMsgAllowance"

Source§

const PACKAGE: &'static str = "cosmos.feegrant.v1beta1"

Source§

impl Name for BasicAllowance

Source§

const NAME: &'static str = "BasicAllowance"

Source§

const PACKAGE: &'static str = "cosmos.feegrant.v1beta1"

Source§

impl Name for side_proto::cosmos::feegrant::v1beta1::GenesisState

Source§

const NAME: &'static str = "GenesisState"

Source§

const PACKAGE: &'static str = "cosmos.feegrant.v1beta1"

Source§

impl Name for side_proto::cosmos::feegrant::v1beta1::Grant

Source§

const NAME: &'static str = "Grant"

Source§

const PACKAGE: &'static str = "cosmos.feegrant.v1beta1"

Source§

impl Name for MsgGrantAllowance

Source§

const NAME: &'static str = "MsgGrantAllowance"

Source§

const PACKAGE: &'static str = "cosmos.feegrant.v1beta1"

Source§

impl Name for MsgGrantAllowanceResponse

Source§

const NAME: &'static str = "MsgGrantAllowanceResponse"

Source§

const PACKAGE: &'static str = "cosmos.feegrant.v1beta1"

Source§

impl Name for MsgPruneAllowances

Source§

const NAME: &'static str = "MsgPruneAllowances"

Source§

const PACKAGE: &'static str = "cosmos.feegrant.v1beta1"

Source§

impl Name for MsgPruneAllowancesResponse

Source§

const NAME: &'static str = "MsgPruneAllowancesResponse"

Source§

const PACKAGE: &'static str = "cosmos.feegrant.v1beta1"

Source§

impl Name for MsgRevokeAllowance

Source§

const NAME: &'static str = "MsgRevokeAllowance"

Source§

const PACKAGE: &'static str = "cosmos.feegrant.v1beta1"

Source§

impl Name for MsgRevokeAllowanceResponse

Source§

const NAME: &'static str = "MsgRevokeAllowanceResponse"

Source§

const PACKAGE: &'static str = "cosmos.feegrant.v1beta1"

Source§

impl Name for PeriodicAllowance

Source§

const NAME: &'static str = "PeriodicAllowance"

Source§

const PACKAGE: &'static str = "cosmos.feegrant.v1beta1"

Source§

impl Name for QueryAllowanceRequest

Source§

const NAME: &'static str = "QueryAllowanceRequest"

Source§

const PACKAGE: &'static str = "cosmos.feegrant.v1beta1"

Source§

impl Name for QueryAllowanceResponse

Source§

const NAME: &'static str = "QueryAllowanceResponse"

Source§

const PACKAGE: &'static str = "cosmos.feegrant.v1beta1"

Source§

impl Name for QueryAllowancesByGranterRequest

Source§

const NAME: &'static str = "QueryAllowancesByGranterRequest"

Source§

const PACKAGE: &'static str = "cosmos.feegrant.v1beta1"

Source§

impl Name for QueryAllowancesByGranterResponse

Source§

const NAME: &'static str = "QueryAllowancesByGranterResponse"

Source§

const PACKAGE: &'static str = "cosmos.feegrant.v1beta1"

Source§

impl Name for QueryAllowancesRequest

Source§

const NAME: &'static str = "QueryAllowancesRequest"

Source§

const PACKAGE: &'static str = "cosmos.feegrant.v1beta1"

Source§

impl Name for QueryAllowancesResponse

Source§

const NAME: &'static str = "QueryAllowancesResponse"

Source§

const PACKAGE: &'static str = "cosmos.feegrant.v1beta1"

Source§

impl Name for side_proto::cosmos::genutil::v1beta1::GenesisState

Source§

const NAME: &'static str = "GenesisState"

Source§

const PACKAGE: &'static str = "cosmos.genutil.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1::Deposit

Source§

const NAME: &'static str = "Deposit"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::DepositParams

Source§

const NAME: &'static str = "DepositParams"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::GenesisState

Source§

const NAME: &'static str = "GenesisState"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for MsgCancelProposal

Source§

const NAME: &'static str = "MsgCancelProposal"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for MsgCancelProposalResponse

Source§

const NAME: &'static str = "MsgCancelProposalResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::MsgDeposit

Source§

const NAME: &'static str = "MsgDeposit"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::MsgDepositResponse

Source§

const NAME: &'static str = "MsgDepositResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for MsgExecLegacyContent

Source§

const NAME: &'static str = "MsgExecLegacyContent"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for MsgExecLegacyContentResponse

Source§

const NAME: &'static str = "MsgExecLegacyContentResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::MsgSubmitProposal

Source§

const NAME: &'static str = "MsgSubmitProposal"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::MsgSubmitProposalResponse

Source§

const NAME: &'static str = "MsgSubmitProposalResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::MsgUpdateParams

Source§

const NAME: &'static str = "MsgUpdateParams"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::MsgUpdateParamsResponse

Source§

const NAME: &'static str = "MsgUpdateParamsResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::MsgVote

Source§

const NAME: &'static str = "MsgVote"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::MsgVoteResponse

Source§

const NAME: &'static str = "MsgVoteResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::MsgVoteWeighted

Source§

const NAME: &'static str = "MsgVoteWeighted"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::MsgVoteWeightedResponse

Source§

const NAME: &'static str = "MsgVoteWeightedResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::Params

Source§

const NAME: &'static str = "Params"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::Proposal

Source§

const NAME: &'static str = "Proposal"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for QueryConstitutionRequest

Source§

const NAME: &'static str = "QueryConstitutionRequest"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for QueryConstitutionResponse

Source§

const NAME: &'static str = "QueryConstitutionResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::QueryDepositRequest

Source§

const NAME: &'static str = "QueryDepositRequest"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::QueryDepositResponse

Source§

const NAME: &'static str = "QueryDepositResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::QueryDepositsRequest

Source§

const NAME: &'static str = "QueryDepositsRequest"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::QueryDepositsResponse

Source§

const NAME: &'static str = "QueryDepositsResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::QueryParamsRequest

Source§

const NAME: &'static str = "QueryParamsRequest"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::QueryParamsResponse

Source§

const NAME: &'static str = "QueryParamsResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::QueryProposalRequest

Source§

const NAME: &'static str = "QueryProposalRequest"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::QueryProposalResponse

Source§

const NAME: &'static str = "QueryProposalResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::QueryProposalsRequest

Source§

const NAME: &'static str = "QueryProposalsRequest"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::QueryProposalsResponse

Source§

const NAME: &'static str = "QueryProposalsResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::QueryTallyResultRequest

Source§

const NAME: &'static str = "QueryTallyResultRequest"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::QueryTallyResultResponse

Source§

const NAME: &'static str = "QueryTallyResultResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::QueryVoteRequest

Source§

const NAME: &'static str = "QueryVoteRequest"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::QueryVoteResponse

Source§

const NAME: &'static str = "QueryVoteResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::QueryVotesRequest

Source§

const NAME: &'static str = "QueryVotesRequest"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::QueryVotesResponse

Source§

const NAME: &'static str = "QueryVotesResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::TallyParams

Source§

const NAME: &'static str = "TallyParams"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::TallyResult

Source§

const NAME: &'static str = "TallyResult"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::Vote

Source§

const NAME: &'static str = "Vote"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::VotingParams

Source§

const NAME: &'static str = "VotingParams"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1::WeightedVoteOption

Source§

const NAME: &'static str = "WeightedVoteOption"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::Deposit

Source§

const NAME: &'static str = "Deposit"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::DepositParams

Source§

const NAME: &'static str = "DepositParams"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::GenesisState

Source§

const NAME: &'static str = "GenesisState"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::MsgDeposit

Source§

const NAME: &'static str = "MsgDeposit"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::MsgDepositResponse

Source§

const NAME: &'static str = "MsgDepositResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::MsgSubmitProposal

Source§

const NAME: &'static str = "MsgSubmitProposal"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::MsgSubmitProposalResponse

Source§

const NAME: &'static str = "MsgSubmitProposalResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::MsgVote

Source§

const NAME: &'static str = "MsgVote"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::MsgVoteResponse

Source§

const NAME: &'static str = "MsgVoteResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::MsgVoteWeighted

Source§

const NAME: &'static str = "MsgVoteWeighted"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::MsgVoteWeightedResponse

Source§

const NAME: &'static str = "MsgVoteWeightedResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::Proposal

Source§

const NAME: &'static str = "Proposal"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::QueryDepositRequest

Source§

const NAME: &'static str = "QueryDepositRequest"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::QueryDepositResponse

Source§

const NAME: &'static str = "QueryDepositResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::QueryDepositsRequest

Source§

const NAME: &'static str = "QueryDepositsRequest"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::QueryDepositsResponse

Source§

const NAME: &'static str = "QueryDepositsResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::QueryParamsRequest

Source§

const NAME: &'static str = "QueryParamsRequest"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::QueryParamsResponse

Source§

const NAME: &'static str = "QueryParamsResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::QueryProposalRequest

Source§

const NAME: &'static str = "QueryProposalRequest"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::QueryProposalResponse

Source§

const NAME: &'static str = "QueryProposalResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::QueryProposalsRequest

Source§

const NAME: &'static str = "QueryProposalsRequest"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::QueryProposalsResponse

Source§

const NAME: &'static str = "QueryProposalsResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::QueryTallyResultRequest

Source§

const NAME: &'static str = "QueryTallyResultRequest"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::QueryTallyResultResponse

Source§

const NAME: &'static str = "QueryTallyResultResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::QueryVoteRequest

Source§

const NAME: &'static str = "QueryVoteRequest"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::QueryVoteResponse

Source§

const NAME: &'static str = "QueryVoteResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::QueryVotesRequest

Source§

const NAME: &'static str = "QueryVotesRequest"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::QueryVotesResponse

Source§

const NAME: &'static str = "QueryVotesResponse"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::TallyParams

Source§

const NAME: &'static str = "TallyParams"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::TallyResult

Source§

const NAME: &'static str = "TallyResult"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for TextProposal

Source§

const NAME: &'static str = "TextProposal"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::Vote

Source§

const NAME: &'static str = "Vote"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::VotingParams

Source§

const NAME: &'static str = "VotingParams"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::gov::v1beta1::WeightedVoteOption

Source§

const NAME: &'static str = "WeightedVoteOption"

Source§

const PACKAGE: &'static str = "cosmos.gov.v1beta1"

Source§

impl Name for side_proto::cosmos::mint::v1beta1::GenesisState

Source§

const NAME: &'static str = "GenesisState"

Source§

const PACKAGE: &'static str = "cosmos.mint.v1beta1"

Source§

impl Name for Minter

Source§

const NAME: &'static str = "Minter"

Source§

const PACKAGE: &'static str = "cosmos.mint.v1beta1"

Source§

impl Name for side_proto::cosmos::mint::v1beta1::MsgUpdateParams

Source§

const NAME: &'static str = "MsgUpdateParams"

Source§

const PACKAGE: &'static str = "cosmos.mint.v1beta1"

Source§

impl Name for side_proto::cosmos::mint::v1beta1::MsgUpdateParamsResponse

Source§

const NAME: &'static str = "MsgUpdateParamsResponse"

Source§

const PACKAGE: &'static str = "cosmos.mint.v1beta1"

Source§

impl Name for side_proto::cosmos::mint::v1beta1::Params

Source§

const NAME: &'static str = "Params"

Source§

const PACKAGE: &'static str = "cosmos.mint.v1beta1"

Source§

impl Name for QueryAnnualProvisionsRequest

Source§

const NAME: &'static str = "QueryAnnualProvisionsRequest"

Source§

const PACKAGE: &'static str = "cosmos.mint.v1beta1"

Source§

impl Name for QueryAnnualProvisionsResponse

Source§

const NAME: &'static str = "QueryAnnualProvisionsResponse"

Source§

const PACKAGE: &'static str = "cosmos.mint.v1beta1"

Source§

impl Name for QueryInflationRequest

Source§

const NAME: &'static str = "QueryInflationRequest"

Source§

const PACKAGE: &'static str = "cosmos.mint.v1beta1"

Source§

impl Name for QueryInflationResponse

Source§

const NAME: &'static str = "QueryInflationResponse"

Source§

const PACKAGE: &'static str = "cosmos.mint.v1beta1"

Source§

impl Name for side_proto::cosmos::mint::v1beta1::QueryParamsRequest

Source§

const NAME: &'static str = "QueryParamsRequest"

Source§

const PACKAGE: &'static str = "cosmos.mint.v1beta1"

Source§

impl Name for side_proto::cosmos::mint::v1beta1::QueryParamsResponse

Source§

const NAME: &'static str = "QueryParamsResponse"

Source§

const PACKAGE: &'static str = "cosmos.mint.v1beta1"

Source§

impl Name for ParamChange

Source§

const NAME: &'static str = "ParamChange"

Source§

const PACKAGE: &'static str = "cosmos.params.v1beta1"

Source§

impl Name for ParameterChangeProposal

Source§

const NAME: &'static str = "ParameterChangeProposal"

Source§

const PACKAGE: &'static str = "cosmos.params.v1beta1"

Source§

impl Name for side_proto::cosmos::params::v1beta1::QueryParamsRequest

Source§

const NAME: &'static str = "QueryParamsRequest"

Source§

const PACKAGE: &'static str = "cosmos.params.v1beta1"

Source§

impl Name for side_proto::cosmos::params::v1beta1::QueryParamsResponse

Source§

const NAME: &'static str = "QueryParamsResponse"

Source§

const PACKAGE: &'static str = "cosmos.params.v1beta1"

Source§

impl Name for QuerySubspacesRequest

Source§

const NAME: &'static str = "QuerySubspacesRequest"

Source§

const PACKAGE: &'static str = "cosmos.params.v1beta1"

Source§

impl Name for QuerySubspacesResponse

Source§

const NAME: &'static str = "QuerySubspacesResponse"

Source§

const PACKAGE: &'static str = "cosmos.params.v1beta1"

Source§

impl Name for Subspace

Source§

const NAME: &'static str = "Subspace"

Source§

const PACKAGE: &'static str = "cosmos.params.v1beta1"

Source§

impl Name for side_proto::cosmos::slashing::v1beta1::GenesisState

Source§

const NAME: &'static str = "GenesisState"

Source§

const PACKAGE: &'static str = "cosmos.slashing.v1beta1"

Source§

impl Name for MissedBlock

Source§

const NAME: &'static str = "MissedBlock"

Source§

const PACKAGE: &'static str = "cosmos.slashing.v1beta1"

Source§

impl Name for MsgUnjail

Source§

const NAME: &'static str = "MsgUnjail"

Source§

const PACKAGE: &'static str = "cosmos.slashing.v1beta1"

Source§

impl Name for MsgUnjailResponse

Source§

const NAME: &'static str = "MsgUnjailResponse"

Source§

const PACKAGE: &'static str = "cosmos.slashing.v1beta1"

Source§

impl Name for side_proto::cosmos::slashing::v1beta1::MsgUpdateParams

Source§

const NAME: &'static str = "MsgUpdateParams"

Source§

const PACKAGE: &'static str = "cosmos.slashing.v1beta1"

Source§

impl Name for side_proto::cosmos::slashing::v1beta1::MsgUpdateParamsResponse

Source§

const NAME: &'static str = "MsgUpdateParamsResponse"

Source§

const PACKAGE: &'static str = "cosmos.slashing.v1beta1"

Source§

impl Name for side_proto::cosmos::slashing::v1beta1::Params

Source§

const NAME: &'static str = "Params"

Source§

const PACKAGE: &'static str = "cosmos.slashing.v1beta1"

Source§

impl Name for side_proto::cosmos::slashing::v1beta1::QueryParamsRequest

Source§

const NAME: &'static str = "QueryParamsRequest"

Source§

const PACKAGE: &'static str = "cosmos.slashing.v1beta1"

Source§

impl Name for side_proto::cosmos::slashing::v1beta1::QueryParamsResponse

Source§

const NAME: &'static str = "QueryParamsResponse"

Source§

const PACKAGE: &'static str = "cosmos.slashing.v1beta1"

Source§

impl Name for QuerySigningInfoRequest

Source§

const NAME: &'static str = "QuerySigningInfoRequest"

Source§

const PACKAGE: &'static str = "cosmos.slashing.v1beta1"

Source§

impl Name for QuerySigningInfoResponse

Source§

const NAME: &'static str = "QuerySigningInfoResponse"

Source§

const PACKAGE: &'static str = "cosmos.slashing.v1beta1"

Source§

impl Name for QuerySigningInfosRequest

Source§

const NAME: &'static str = "QuerySigningInfosRequest"

Source§

const PACKAGE: &'static str = "cosmos.slashing.v1beta1"

Source§

impl Name for QuerySigningInfosResponse

Source§

const NAME: &'static str = "QuerySigningInfosResponse"

Source§

const PACKAGE: &'static str = "cosmos.slashing.v1beta1"

Source§

impl Name for SigningInfo

Source§

const NAME: &'static str = "SigningInfo"

Source§

const PACKAGE: &'static str = "cosmos.slashing.v1beta1"

Source§

impl Name for ValidatorMissedBlocks

Source§

const NAME: &'static str = "ValidatorMissedBlocks"

Source§

const PACKAGE: &'static str = "cosmos.slashing.v1beta1"

Source§

impl Name for ValidatorSigningInfo

Source§

const NAME: &'static str = "ValidatorSigningInfo"

Source§

const PACKAGE: &'static str = "cosmos.slashing.v1beta1"

Source§

impl Name for Validators

Source§

const NAME: &'static str = "Validators"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for Commission

Source§

const NAME: &'static str = "Commission"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for CommissionRates

Source§

const NAME: &'static str = "CommissionRates"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for Delegation

Source§

const NAME: &'static str = "Delegation"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for DelegationResponse

Source§

const NAME: &'static str = "DelegationResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for Description

Source§

const NAME: &'static str = "Description"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for DvPair

Source§

const NAME: &'static str = "DVPair"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for DvPairs

Source§

const NAME: &'static str = "DVPairs"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for DvvTriplet

Source§

const NAME: &'static str = "DVVTriplet"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for DvvTriplets

Source§

const NAME: &'static str = "DVVTriplets"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for side_proto::cosmos::staking::v1beta1::GenesisState

Source§

const NAME: &'static str = "GenesisState"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for HistoricalInfo

Source§

const NAME: &'static str = "HistoricalInfo"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for LastValidatorPower

Source§

const NAME: &'static str = "LastValidatorPower"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for MsgBeginRedelegate

Source§

const NAME: &'static str = "MsgBeginRedelegate"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for MsgBeginRedelegateResponse

Source§

const NAME: &'static str = "MsgBeginRedelegateResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for MsgCancelUnbondingDelegation

Source§

const NAME: &'static str = "MsgCancelUnbondingDelegation"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for MsgCancelUnbondingDelegationResponse

Source§

const NAME: &'static str = "MsgCancelUnbondingDelegationResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for MsgCreateValidator

Source§

const NAME: &'static str = "MsgCreateValidator"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for MsgCreateValidatorResponse

Source§

const NAME: &'static str = "MsgCreateValidatorResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for MsgDelegate

Source§

const NAME: &'static str = "MsgDelegate"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for MsgDelegateResponse

Source§

const NAME: &'static str = "MsgDelegateResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for MsgEditValidator

Source§

const NAME: &'static str = "MsgEditValidator"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for MsgEditValidatorResponse

Source§

const NAME: &'static str = "MsgEditValidatorResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for MsgUndelegate

Source§

const NAME: &'static str = "MsgUndelegate"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for MsgUndelegateResponse

Source§

const NAME: &'static str = "MsgUndelegateResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for side_proto::cosmos::staking::v1beta1::MsgUpdateParams

Source§

const NAME: &'static str = "MsgUpdateParams"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for side_proto::cosmos::staking::v1beta1::MsgUpdateParamsResponse

Source§

const NAME: &'static str = "MsgUpdateParamsResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for side_proto::cosmos::staking::v1beta1::Params

Source§

const NAME: &'static str = "Params"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for Pool

Source§

const NAME: &'static str = "Pool"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for QueryDelegationRequest

Source§

const NAME: &'static str = "QueryDelegationRequest"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for QueryDelegationResponse

Source§

const NAME: &'static str = "QueryDelegationResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for QueryDelegatorDelegationsRequest

Source§

const NAME: &'static str = "QueryDelegatorDelegationsRequest"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for QueryDelegatorDelegationsResponse

Source§

const NAME: &'static str = "QueryDelegatorDelegationsResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for QueryDelegatorUnbondingDelegationsRequest

Source§

const NAME: &'static str = "QueryDelegatorUnbondingDelegationsRequest"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for QueryDelegatorUnbondingDelegationsResponse

Source§

const NAME: &'static str = "QueryDelegatorUnbondingDelegationsResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for QueryDelegatorValidatorRequest

Source§

const NAME: &'static str = "QueryDelegatorValidatorRequest"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for QueryDelegatorValidatorResponse

Source§

const NAME: &'static str = "QueryDelegatorValidatorResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for side_proto::cosmos::staking::v1beta1::QueryDelegatorValidatorsRequest

Source§

const NAME: &'static str = "QueryDelegatorValidatorsRequest"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for side_proto::cosmos::staking::v1beta1::QueryDelegatorValidatorsResponse

Source§

const NAME: &'static str = "QueryDelegatorValidatorsResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for QueryHistoricalInfoRequest

Source§

const NAME: &'static str = "QueryHistoricalInfoRequest"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for QueryHistoricalInfoResponse

Source§

const NAME: &'static str = "QueryHistoricalInfoResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for side_proto::cosmos::staking::v1beta1::QueryParamsRequest

Source§

const NAME: &'static str = "QueryParamsRequest"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for side_proto::cosmos::staking::v1beta1::QueryParamsResponse

Source§

const NAME: &'static str = "QueryParamsResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for side_proto::cosmos::staking::v1beta1::QueryPoolRequest

Source§

const NAME: &'static str = "QueryPoolRequest"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for side_proto::cosmos::staking::v1beta1::QueryPoolResponse

Source§

const NAME: &'static str = "QueryPoolResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for QueryRedelegationsRequest

Source§

const NAME: &'static str = "QueryRedelegationsRequest"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for QueryRedelegationsResponse

Source§

const NAME: &'static str = "QueryRedelegationsResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for QueryUnbondingDelegationRequest

Source§

const NAME: &'static str = "QueryUnbondingDelegationRequest"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for QueryUnbondingDelegationResponse

Source§

const NAME: &'static str = "QueryUnbondingDelegationResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for QueryValidatorDelegationsRequest

Source§

const NAME: &'static str = "QueryValidatorDelegationsRequest"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for QueryValidatorDelegationsResponse

Source§

const NAME: &'static str = "QueryValidatorDelegationsResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for QueryValidatorRequest

Source§

const NAME: &'static str = "QueryValidatorRequest"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for QueryValidatorResponse

Source§

const NAME: &'static str = "QueryValidatorResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for QueryValidatorUnbondingDelegationsRequest

Source§

const NAME: &'static str = "QueryValidatorUnbondingDelegationsRequest"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for QueryValidatorUnbondingDelegationsResponse

Source§

const NAME: &'static str = "QueryValidatorUnbondingDelegationsResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for QueryValidatorsRequest

Source§

const NAME: &'static str = "QueryValidatorsRequest"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for QueryValidatorsResponse

Source§

const NAME: &'static str = "QueryValidatorsResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for Redelegation

Source§

const NAME: &'static str = "Redelegation"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for RedelegationEntry

Source§

const NAME: &'static str = "RedelegationEntry"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for RedelegationEntryResponse

Source§

const NAME: &'static str = "RedelegationEntryResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for RedelegationResponse

Source§

const NAME: &'static str = "RedelegationResponse"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for StakeAuthorization

Source§

const NAME: &'static str = "StakeAuthorization"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for UnbondingDelegation

Source§

const NAME: &'static str = "UnbondingDelegation"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for UnbondingDelegationEntry

Source§

const NAME: &'static str = "UnbondingDelegationEntry"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for ValAddresses

Source§

const NAME: &'static str = "ValAddresses"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for side_proto::cosmos::staking::v1beta1::Validator

Source§

const NAME: &'static str = "Validator"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for ValidatorUpdates

Source§

const NAME: &'static str = "ValidatorUpdates"

Source§

const PACKAGE: &'static str = "cosmos.staking.v1beta1"

Source§

impl Name for side_proto::cosmos::tx::signing::v1beta1::signature_descriptor::data::Multi

Source§

const NAME: &'static str = "Multi"

Source§

const PACKAGE: &'static str = "cosmos.tx.signing.v1beta1"

Source§

impl Name for side_proto::cosmos::tx::signing::v1beta1::signature_descriptor::data::Single

Source§

const NAME: &'static str = "Single"

Source§

const PACKAGE: &'static str = "cosmos.tx.signing.v1beta1"

Source§

impl Name for Data

Source§

const NAME: &'static str = "Data"

Source§

const PACKAGE: &'static str = "cosmos.tx.signing.v1beta1"

Source§

impl Name for SignatureDescriptor

Source§

const NAME: &'static str = "SignatureDescriptor"

Source§

const PACKAGE: &'static str = "cosmos.tx.signing.v1beta1"

Source§

impl Name for SignatureDescriptors

Source§

const NAME: &'static str = "SignatureDescriptors"

Source§

const PACKAGE: &'static str = "cosmos.tx.signing.v1beta1"

Source§

impl Name for side_proto::cosmos::tx::v1beta1::mode_info::Multi

Source§

const NAME: &'static str = "Multi"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for side_proto::cosmos::tx::v1beta1::mode_info::Single

Source§

const NAME: &'static str = "Single"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for AuthInfo

Source§

const NAME: &'static str = "AuthInfo"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for AuxSignerData

Source§

const NAME: &'static str = "AuxSignerData"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for BroadcastTxRequest

Source§

const NAME: &'static str = "BroadcastTxRequest"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for BroadcastTxResponse

Source§

const NAME: &'static str = "BroadcastTxResponse"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for Fee

Source§

const NAME: &'static str = "Fee"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for GetBlockWithTxsRequest

Source§

const NAME: &'static str = "GetBlockWithTxsRequest"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for GetBlockWithTxsResponse

Source§

const NAME: &'static str = "GetBlockWithTxsResponse"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for GetTxRequest

Source§

const NAME: &'static str = "GetTxRequest"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for GetTxResponse

Source§

const NAME: &'static str = "GetTxResponse"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for GetTxsEventRequest

Source§

const NAME: &'static str = "GetTxsEventRequest"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for GetTxsEventResponse

Source§

const NAME: &'static str = "GetTxsEventResponse"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for ModeInfo

Source§

const NAME: &'static str = "ModeInfo"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for SignDoc

Source§

const NAME: &'static str = "SignDoc"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for SignDocDirectAux

Source§

const NAME: &'static str = "SignDocDirectAux"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for SignerInfo

Source§

const NAME: &'static str = "SignerInfo"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for SimulateRequest

Source§

const NAME: &'static str = "SimulateRequest"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for SimulateResponse

Source§

const NAME: &'static str = "SimulateResponse"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for Tip

Source§

const NAME: &'static str = "Tip"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for Tx

Source§

const NAME: &'static str = "Tx"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for TxBody

Source§

const NAME: &'static str = "TxBody"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for TxDecodeAminoRequest

Source§

const NAME: &'static str = "TxDecodeAminoRequest"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for TxDecodeAminoResponse

Source§

const NAME: &'static str = "TxDecodeAminoResponse"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for TxDecodeRequest

Source§

const NAME: &'static str = "TxDecodeRequest"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for TxDecodeResponse

Source§

const NAME: &'static str = "TxDecodeResponse"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for TxEncodeAminoRequest

Source§

const NAME: &'static str = "TxEncodeAminoRequest"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for TxEncodeAminoResponse

Source§

const NAME: &'static str = "TxEncodeAminoResponse"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for TxEncodeRequest

Source§

const NAME: &'static str = "TxEncodeRequest"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for TxEncodeResponse

Source§

const NAME: &'static str = "TxEncodeResponse"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for TxRaw

Source§

const NAME: &'static str = "TxRaw"

Source§

const PACKAGE: &'static str = "cosmos.tx.v1beta1"

Source§

impl Name for CancelSoftwareUpgradeProposal

Source§

const NAME: &'static str = "CancelSoftwareUpgradeProposal"

Source§

const PACKAGE: &'static str = "cosmos.upgrade.v1beta1"

Source§

impl Name for ModuleVersion

Source§

const NAME: &'static str = "ModuleVersion"

Source§

const PACKAGE: &'static str = "cosmos.upgrade.v1beta1"

Source§

impl Name for MsgCancelUpgrade

Source§

const NAME: &'static str = "MsgCancelUpgrade"

Source§

const PACKAGE: &'static str = "cosmos.upgrade.v1beta1"

Source§

impl Name for MsgCancelUpgradeResponse

Source§

const NAME: &'static str = "MsgCancelUpgradeResponse"

Source§

const PACKAGE: &'static str = "cosmos.upgrade.v1beta1"

Source§

impl Name for MsgSoftwareUpgrade

Source§

const NAME: &'static str = "MsgSoftwareUpgrade"

Source§

const PACKAGE: &'static str = "cosmos.upgrade.v1beta1"

Source§

impl Name for MsgSoftwareUpgradeResponse

Source§

const NAME: &'static str = "MsgSoftwareUpgradeResponse"

Source§

const PACKAGE: &'static str = "cosmos.upgrade.v1beta1"

Source§

impl Name for Plan

Source§

const NAME: &'static str = "Plan"

Source§

const PACKAGE: &'static str = "cosmos.upgrade.v1beta1"

Source§

impl Name for QueryAppliedPlanRequest

Source§

const NAME: &'static str = "QueryAppliedPlanRequest"

Source§

const PACKAGE: &'static str = "cosmos.upgrade.v1beta1"

Source§

impl Name for QueryAppliedPlanResponse

Source§

const NAME: &'static str = "QueryAppliedPlanResponse"

Source§

const PACKAGE: &'static str = "cosmos.upgrade.v1beta1"

Source§

impl Name for QueryAuthorityRequest

Source§

const NAME: &'static str = "QueryAuthorityRequest"

Source§

const PACKAGE: &'static str = "cosmos.upgrade.v1beta1"

Source§

impl Name for QueryAuthorityResponse

Source§

const NAME: &'static str = "QueryAuthorityResponse"

Source§

const PACKAGE: &'static str = "cosmos.upgrade.v1beta1"

Source§

impl Name for QueryCurrentPlanRequest

Source§

const NAME: &'static str = "QueryCurrentPlanRequest"

Source§

const PACKAGE: &'static str = "cosmos.upgrade.v1beta1"

Source§

impl Name for QueryCurrentPlanResponse

Source§

const NAME: &'static str = "QueryCurrentPlanResponse"

Source§

const PACKAGE: &'static str = "cosmos.upgrade.v1beta1"

Source§

impl Name for QueryModuleVersionsRequest

Source§

const NAME: &'static str = "QueryModuleVersionsRequest"

Source§

const PACKAGE: &'static str = "cosmos.upgrade.v1beta1"

Source§

impl Name for QueryModuleVersionsResponse

Source§

const NAME: &'static str = "QueryModuleVersionsResponse"

Source§

const PACKAGE: &'static str = "cosmos.upgrade.v1beta1"

Source§

impl Name for QueryUpgradedConsensusStateRequest

Source§

const NAME: &'static str = "QueryUpgradedConsensusStateRequest"

Source§

const PACKAGE: &'static str = "cosmos.upgrade.v1beta1"

Source§

impl Name for QueryUpgradedConsensusStateResponse

Source§

const NAME: &'static str = "QueryUpgradedConsensusStateResponse"

Source§

const PACKAGE: &'static str = "cosmos.upgrade.v1beta1"

Source§

impl Name for SoftwareUpgradeProposal

Source§

const NAME: &'static str = "SoftwareUpgradeProposal"

Source§

const PACKAGE: &'static str = "cosmos.upgrade.v1beta1"

Source§

impl Name for BaseVestingAccount

Source§

const NAME: &'static str = "BaseVestingAccount"

Source§

const PACKAGE: &'static str = "cosmos.vesting.v1beta1"

Source§

impl Name for ContinuousVestingAccount

Source§

const NAME: &'static str = "ContinuousVestingAccount"

Source§

const PACKAGE: &'static str = "cosmos.vesting.v1beta1"

Source§

impl Name for DelayedVestingAccount

Source§

const NAME: &'static str = "DelayedVestingAccount"

Source§

const PACKAGE: &'static str = "cosmos.vesting.v1beta1"

Source§

impl Name for MsgCreatePeriodicVestingAccount

Source§

const NAME: &'static str = "MsgCreatePeriodicVestingAccount"

Source§

const PACKAGE: &'static str = "cosmos.vesting.v1beta1"

Source§

impl Name for MsgCreatePeriodicVestingAccountResponse

Source§

const NAME: &'static str = "MsgCreatePeriodicVestingAccountResponse"

Source§

const PACKAGE: &'static str = "cosmos.vesting.v1beta1"

Source§

impl Name for MsgCreatePermanentLockedAccount

Source§

const NAME: &'static str = "MsgCreatePermanentLockedAccount"

Source§

const PACKAGE: &'static str = "cosmos.vesting.v1beta1"

Source§

impl Name for MsgCreatePermanentLockedAccountResponse

Source§

const NAME: &'static str = "MsgCreatePermanentLockedAccountResponse"

Source§

const PACKAGE: &'static str = "cosmos.vesting.v1beta1"

Source§

impl Name for MsgCreateVestingAccount

Source§

const NAME: &'static str = "MsgCreateVestingAccount"

Source§

const PACKAGE: &'static str = "cosmos.vesting.v1beta1"

Source§

impl Name for MsgCreateVestingAccountResponse

Source§

const NAME: &'static str = "MsgCreateVestingAccountResponse"

Source§

const PACKAGE: &'static str = "cosmos.vesting.v1beta1"

Source§

impl Name for Period

Source§

const NAME: &'static str = "Period"

Source§

const PACKAGE: &'static str = "cosmos.vesting.v1beta1"

Source§

impl Name for PeriodicVestingAccount

Source§

const NAME: &'static str = "PeriodicVestingAccount"

Source§

const PACKAGE: &'static str = "cosmos.vesting.v1beta1"

Source§

impl Name for PermanentLockedAccount

Source§

const NAME: &'static str = "PermanentLockedAccount"

Source§

const PACKAGE: &'static str = "cosmos.vesting.v1beta1"

Source§

impl Name for AddressRateLimit

Source§

const NAME: &'static str = "AddressRateLimit"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for AddressRateLimitDetails

Source§

const NAME: &'static str = "AddressRateLimitDetails"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for AddressRateLimitParams

Source§

const NAME: &'static str = "AddressRateLimitParams"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for BtcConsolidation

Source§

const NAME: &'static str = "BtcConsolidation"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for CompactSigningRequest

Source§

const NAME: &'static str = "CompactSigningRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for DkgCompletionRequest

Source§

const NAME: &'static str = "DKGCompletionRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::DkgParticipant

Source§

const NAME: &'static str = "DKGParticipant"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::DkgRequest

Source§

const NAME: &'static str = "DKGRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for Edict

Source§

const NAME: &'static str = "Edict"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for FeeRate

Source§

const NAME: &'static str = "FeeRate"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::GenesisState

Source§

const NAME: &'static str = "GenesisState"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for GlobalRateLimit

Source§

const NAME: &'static str = "GlobalRateLimit"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for GlobalRateLimitParams

Source§

const NAME: &'static str = "GlobalRateLimitParams"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for IbcParams

Source§

const NAME: &'static str = "IBCParams"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for IbcWithdrawRequest

Source§

const NAME: &'static str = "IBCWithdrawRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::MsgCompleteDkg

Source§

const NAME: &'static str = "MsgCompleteDKG"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::MsgCompleteDkgResponse

Source§

const NAME: &'static str = "MsgCompleteDKGResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::MsgCompleteRefreshing

Source§

const NAME: &'static str = "MsgCompleteRefreshing"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::MsgCompleteRefreshingResponse

Source§

const NAME: &'static str = "MsgCompleteRefreshingResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for MsgConsolidateVaults

Source§

const NAME: &'static str = "MsgConsolidateVaults"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for MsgConsolidateVaultsResponse

Source§

const NAME: &'static str = "MsgConsolidateVaultsResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for MsgInitiateDkg

Source§

const NAME: &'static str = "MsgInitiateDKG"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for MsgInitiateDkgResponse

Source§

const NAME: &'static str = "MsgInitiateDKGResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::MsgRefresh

Source§

const NAME: &'static str = "MsgRefresh"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::MsgRefreshResponse

Source§

const NAME: &'static str = "MsgRefreshResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::MsgSubmitDepositTransaction

Source§

const NAME: &'static str = "MsgSubmitDepositTransaction"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::MsgSubmitDepositTransactionResponse

Source§

const NAME: &'static str = "MsgSubmitDepositTransactionResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for MsgSubmitFeeRate

Source§

const NAME: &'static str = "MsgSubmitFeeRate"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for MsgSubmitFeeRateResponse

Source§

const NAME: &'static str = "MsgSubmitFeeRateResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::MsgSubmitSignatures

Source§

const NAME: &'static str = "MsgSubmitSignatures"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::MsgSubmitSignaturesResponse

Source§

const NAME: &'static str = "MsgSubmitSignaturesResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for MsgSubmitWithdrawTransaction

Source§

const NAME: &'static str = "MsgSubmitWithdrawTransaction"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for MsgSubmitWithdrawTransactionResponse

Source§

const NAME: &'static str = "MsgSubmitWithdrawTransactionResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for MsgTransferVault

Source§

const NAME: &'static str = "MsgTransferVault"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for MsgTransferVaultResponse

Source§

const NAME: &'static str = "MsgTransferVaultResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::MsgUpdateParams

Source§

const NAME: &'static str = "MsgUpdateParams"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::MsgUpdateParamsResponse

Source§

const NAME: &'static str = "MsgUpdateParamsResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for MsgUpdateTrustedFeeProviders

Source§

const NAME: &'static str = "MsgUpdateTrustedFeeProviders"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for MsgUpdateTrustedFeeProvidersResponse

Source§

const NAME: &'static str = "MsgUpdateTrustedFeeProvidersResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for MsgUpdateTrustedNonBtcRelayers

Source§

const NAME: &'static str = "MsgUpdateTrustedNonBtcRelayers"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for MsgUpdateTrustedNonBtcRelayersResponse

Source§

const NAME: &'static str = "MsgUpdateTrustedNonBtcRelayersResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for MsgWithdrawToBitcoin

Source§

const NAME: &'static str = "MsgWithdrawToBitcoin"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for MsgWithdrawToBitcoinResponse

Source§

const NAME: &'static str = "MsgWithdrawToBitcoinResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::Params

Source§

const NAME: &'static str = "Params"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for ParamsV1

Source§

const NAME: &'static str = "ParamsV1"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for ProtocolFees

Source§

const NAME: &'static str = "ProtocolFees"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for ProtocolLimits

Source§

const NAME: &'static str = "ProtocolLimits"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryAllDkgRequestsRequest

Source§

const NAME: &'static str = "QueryAllDKGRequestsRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryAllDkgRequestsResponse

Source§

const NAME: &'static str = "QueryAllDKGRequestsResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryDkgCompletionRequestsRequest

Source§

const NAME: &'static str = "QueryDKGCompletionRequestsRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryDkgCompletionRequestsResponse

Source§

const NAME: &'static str = "QueryDKGCompletionRequestsResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::QueryDkgRequestRequest

Source§

const NAME: &'static str = "QueryDKGRequestRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::QueryDkgRequestResponse

Source§

const NAME: &'static str = "QueryDKGRequestResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::QueryDkgRequestsRequest

Source§

const NAME: &'static str = "QueryDKGRequestsRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::QueryDkgRequestsResponse

Source§

const NAME: &'static str = "QueryDKGRequestsResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryFeeRateRequest

Source§

const NAME: &'static str = "QueryFeeRateRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryFeeRateResponse

Source§

const NAME: &'static str = "QueryFeeRateResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryIbcDepositScriptRequest

Source§

const NAME: &'static str = "QueryIBCDepositScriptRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryIbcDepositScriptResponse

Source§

const NAME: &'static str = "QueryIBCDepositScriptResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::QueryParamsRequest

Source§

const NAME: &'static str = "QueryParamsRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::QueryParamsResponse

Source§

const NAME: &'static str = "QueryParamsResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryPendingBtcWithdrawRequestsRequest

Source§

const NAME: &'static str = "QueryPendingBtcWithdrawRequestsRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryPendingBtcWithdrawRequestsResponse

Source§

const NAME: &'static str = "QueryPendingBtcWithdrawRequestsResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryPendingSigningRequestsRequest

Source§

const NAME: &'static str = "QueryPendingSigningRequestsRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryPendingSigningRequestsResponse

Source§

const NAME: &'static str = "QueryPendingSigningRequestsResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryRateLimitByAddressRequest

Source§

const NAME: &'static str = "QueryRateLimitByAddressRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryRateLimitByAddressResponse

Source§

const NAME: &'static str = "QueryRateLimitByAddressResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryRateLimitRequest

Source§

const NAME: &'static str = "QueryRateLimitRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryRateLimitResponse

Source§

const NAME: &'static str = "QueryRateLimitResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::QueryRefreshingCompletionsRequest

Source§

const NAME: &'static str = "QueryRefreshingCompletionsRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::QueryRefreshingCompletionsResponse

Source§

const NAME: &'static str = "QueryRefreshingCompletionsResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::QueryRefreshingRequestRequest

Source§

const NAME: &'static str = "QueryRefreshingRequestRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::QueryRefreshingRequestResponse

Source§

const NAME: &'static str = "QueryRefreshingRequestResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::QueryRefreshingRequestsRequest

Source§

const NAME: &'static str = "QueryRefreshingRequestsRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::QueryRefreshingRequestsResponse

Source§

const NAME: &'static str = "QueryRefreshingRequestsResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QuerySigningRequestByTxHashRequest

Source§

const NAME: &'static str = "QuerySigningRequestByTxHashRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QuerySigningRequestByTxHashResponse

Source§

const NAME: &'static str = "QuerySigningRequestByTxHashResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::QuerySigningRequestRequest

Source§

const NAME: &'static str = "QuerySigningRequestRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::QuerySigningRequestResponse

Source§

const NAME: &'static str = "QuerySigningRequestResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QuerySigningRequestsByAddressRequest

Source§

const NAME: &'static str = "QuerySigningRequestsByAddressRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QuerySigningRequestsByAddressResponse

Source§

const NAME: &'static str = "QuerySigningRequestsByAddressResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::QuerySigningRequestsRequest

Source§

const NAME: &'static str = "QuerySigningRequestsRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::QuerySigningRequestsResponse

Source§

const NAME: &'static str = "QuerySigningRequestsResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryUtxOsByAddressRequest

Source§

const NAME: &'static str = "QueryUTXOsByAddressRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryUtxOsByAddressResponse

Source§

const NAME: &'static str = "QueryUTXOsByAddressResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryUtxOsRequest

Source§

const NAME: &'static str = "QueryUTXOsRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryUtxOsResponse

Source§

const NAME: &'static str = "QueryUTXOsResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryUtxoCountAndBalancesByAddressRequest

Source§

const NAME: &'static str = "QueryUTXOCountAndBalancesByAddressRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryUtxoCountAndBalancesByAddressResponse

Source§

const NAME: &'static str = "QueryUTXOCountAndBalancesByAddressResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryWithdrawRequestsByAddressRequest

Source§

const NAME: &'static str = "QueryWithdrawRequestsByAddressRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryWithdrawRequestsByAddressResponse

Source§

const NAME: &'static str = "QueryWithdrawRequestsByAddressResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryWithdrawRequestsByTxHashRequest

Source§

const NAME: &'static str = "QueryWithdrawRequestsByTxHashRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryWithdrawRequestsByTxHashResponse

Source§

const NAME: &'static str = "QueryWithdrawRequestsByTxHashResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryWithdrawalNetworkFeeRequest

Source§

const NAME: &'static str = "QueryWithdrawalNetworkFeeRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for QueryWithdrawalNetworkFeeResponse

Source§

const NAME: &'static str = "QueryWithdrawalNetworkFeeResponse"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for RateLimit

Source§

const NAME: &'static str = "RateLimit"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for RateLimitParams

Source§

const NAME: &'static str = "RateLimitParams"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::RefreshingCompletion

Source§

const NAME: &'static str = "RefreshingCompletion"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::RefreshingRequest

Source§

const NAME: &'static str = "RefreshingRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for RuneBalance

Source§

const NAME: &'static str = "RuneBalance"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for RuneId

Source§

const NAME: &'static str = "RuneId"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for RunesConsolidation

Source§

const NAME: &'static str = "RunesConsolidation"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for side_proto::side::btcbridge::SigningRequest

Source§

const NAME: &'static str = "SigningRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for TssParams

Source§

const NAME: &'static str = "TSSParams"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for Utxo

Source§

const NAME: &'static str = "UTXO"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for Vault

Source§

const NAME: &'static str = "Vault"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for WithdrawParams

Source§

const NAME: &'static str = "WithdrawParams"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for WithdrawRequest

Source§

const NAME: &'static str = "WithdrawRequest"

Source§

const PACKAGE: &'static str = "side.btcbridge"

Source§

impl Name for Dcm

Source§

const NAME: &'static str = "DCM"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for DlcAttestation

Source§

const NAME: &'static str = "DLCAttestation"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for DlcEvent

Source§

const NAME: &'static str = "DLCEvent"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for DlcNonce

Source§

const NAME: &'static str = "DLCNonce"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for DlcOracle

Source§

const NAME: &'static str = "DLCOracle"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for side_proto::side::dlc::GenesisState

Source§

const NAME: &'static str = "GenesisState"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for MsgCreateDcm

Source§

const NAME: &'static str = "MsgCreateDCM"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for MsgCreateDcmResponse

Source§

const NAME: &'static str = "MsgCreateDCMResponse"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for side_proto::side::dlc::MsgUpdateParams

Source§

const NAME: &'static str = "MsgUpdateParams"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for side_proto::side::dlc::MsgUpdateParamsResponse

Source§

const NAME: &'static str = "MsgUpdateParamsResponse"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for OracleParticipantLiveness

Source§

const NAME: &'static str = "OracleParticipantLiveness"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for side_proto::side::dlc::Params

Source§

const NAME: &'static str = "Params"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryAttestationByEventRequest

Source§

const NAME: &'static str = "QueryAttestationByEventRequest"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryAttestationByEventResponse

Source§

const NAME: &'static str = "QueryAttestationByEventResponse"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryAttestationRequest

Source§

const NAME: &'static str = "QueryAttestationRequest"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryAttestationResponse

Source§

const NAME: &'static str = "QueryAttestationResponse"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryAttestationsRequest

Source§

const NAME: &'static str = "QueryAttestationsRequest"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryAttestationsResponse

Source§

const NAME: &'static str = "QueryAttestationsResponse"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryCountNoncesRequest

Source§

const NAME: &'static str = "QueryCountNoncesRequest"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryCountNoncesResponse

Source§

const NAME: &'static str = "QueryCountNoncesResponse"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryDcMsRequest

Source§

const NAME: &'static str = "QueryDCMsRequest"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryDcMsResponse

Source§

const NAME: &'static str = "QueryDCMsResponse"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryDcmRequest

Source§

const NAME: &'static str = "QueryDCMRequest"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryDcmResponse

Source§

const NAME: &'static str = "QueryDCMResponse"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryEventRequest

Source§

const NAME: &'static str = "QueryEventRequest"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryEventResponse

Source§

const NAME: &'static str = "QueryEventResponse"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryEventsRequest

Source§

const NAME: &'static str = "QueryEventsRequest"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryEventsResponse

Source§

const NAME: &'static str = "QueryEventsResponse"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryNonceRequest

Source§

const NAME: &'static str = "QueryNonceRequest"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryNonceResponse

Source§

const NAME: &'static str = "QueryNonceResponse"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryNoncesRequest

Source§

const NAME: &'static str = "QueryNoncesRequest"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryNoncesResponse

Source§

const NAME: &'static str = "QueryNoncesResponse"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryOracleParticipantLivenessRequest

Source§

const NAME: &'static str = "QueryOracleParticipantLivenessRequest"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryOracleParticipantLivenessResponse

Source§

const NAME: &'static str = "QueryOracleParticipantLivenessResponse"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryOracleRequest

Source§

const NAME: &'static str = "QueryOracleRequest"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryOracleResponse

Source§

const NAME: &'static str = "QueryOracleResponse"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryOraclesRequest

Source§

const NAME: &'static str = "QueryOraclesRequest"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for QueryOraclesResponse

Source§

const NAME: &'static str = "QueryOraclesResponse"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for side_proto::side::dlc::QueryParamsRequest

Source§

const NAME: &'static str = "QueryParamsRequest"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for side_proto::side::dlc::QueryParamsResponse

Source§

const NAME: &'static str = "QueryParamsResponse"

Source§

const PACKAGE: &'static str = "side.dlc"

Source§

impl Name for side_proto::side::lending::AssetMetadata

Source§

const NAME: &'static str = "AssetMetadata"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for Authorization

Source§

const NAME: &'static str = "Authorization"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for CetInfo

Source§

const NAME: &'static str = "CetInfo"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for DepositLog

Source§

const NAME: &'static str = "DepositLog"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for DlcMeta

Source§

const NAME: &'static str = "DLCMeta"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for side_proto::side::lending::GenesisState

Source§

const NAME: &'static str = "GenesisState"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for LeafScript

Source§

const NAME: &'static str = "LeafScript"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for LendingPool

Source§

const NAME: &'static str = "LendingPool"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for LiquidationCet

Source§

const NAME: &'static str = "LiquidationCet"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for Loan

Source§

const NAME: &'static str = "Loan"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for MsgAddLiquidity

Source§

const NAME: &'static str = "MsgAddLiquidity"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for MsgAddLiquidityResponse

Source§

const NAME: &'static str = "MsgAddLiquidityResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for MsgApply

Source§

const NAME: &'static str = "MsgApply"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for MsgApplyResponse

Source§

const NAME: &'static str = "MsgApplyResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for MsgCreatePool

Source§

const NAME: &'static str = "MsgCreatePool"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for MsgCreatePoolResponse

Source§

const NAME: &'static str = "MsgCreatePoolResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for MsgRedeem

Source§

const NAME: &'static str = "MsgRedeem"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for MsgRedeemResponse

Source§

const NAME: &'static str = "MsgRedeemResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for MsgRegisterReferrer

Source§

const NAME: &'static str = "MsgRegisterReferrer"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for MsgRegisterReferrerResponse

Source§

const NAME: &'static str = "MsgRegisterReferrerResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for MsgRemoveLiquidity

Source§

const NAME: &'static str = "MsgRemoveLiquidity"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for MsgRemoveLiquidityResponse

Source§

const NAME: &'static str = "MsgRemoveLiquidityResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for MsgRepay

Source§

const NAME: &'static str = "MsgRepay"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for MsgRepayResponse

Source§

const NAME: &'static str = "MsgRepayResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for MsgSubmitCets

Source§

const NAME: &'static str = "MsgSubmitCets"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for MsgSubmitCetsResponse

Source§

const NAME: &'static str = "MsgSubmitCetsResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for side_proto::side::lending::MsgSubmitDepositTransaction

Source§

const NAME: &'static str = "MsgSubmitDepositTransaction"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for side_proto::side::lending::MsgSubmitDepositTransactionResponse

Source§

const NAME: &'static str = "MsgSubmitDepositTransactionResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for side_proto::side::lending::MsgUpdateParams

Source§

const NAME: &'static str = "MsgUpdateParams"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for side_proto::side::lending::MsgUpdateParamsResponse

Source§

const NAME: &'static str = "MsgUpdateParamsResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for MsgUpdatePoolConfig

Source§

const NAME: &'static str = "MsgUpdatePoolConfig"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for MsgUpdatePoolConfigResponse

Source§

const NAME: &'static str = "MsgUpdatePoolConfigResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for MsgUpdateReferrer

Source§

const NAME: &'static str = "MsgUpdateReferrer"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for MsgUpdateReferrerResponse

Source§

const NAME: &'static str = "MsgUpdateReferrerResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for side_proto::side::lending::Params

Source§

const NAME: &'static str = "Params"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for PoolConfig

Source§

const NAME: &'static str = "PoolConfig"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for PoolTranche

Source§

const NAME: &'static str = "PoolTranche"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for PoolTrancheConfig

Source§

const NAME: &'static str = "PoolTrancheConfig"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryCollateralAddressRequest

Source§

const NAME: &'static str = "QueryCollateralAddressRequest"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryCollateralAddressResponse

Source§

const NAME: &'static str = "QueryCollateralAddressResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryCurrentInterestRequest

Source§

const NAME: &'static str = "QueryCurrentInterestRequest"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryCurrentInterestResponse

Source§

const NAME: &'static str = "QueryCurrentInterestResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryDlcEventCountRequest

Source§

const NAME: &'static str = "QueryDlcEventCountRequest"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryDlcEventCountResponse

Source§

const NAME: &'static str = "QueryDlcEventCountResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryLiquidationPriceRequest

Source§

const NAME: &'static str = "QueryLiquidationPriceRequest"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryLiquidationPriceResponse

Source§

const NAME: &'static str = "QueryLiquidationPriceResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryLoanAuthorizationRequest

Source§

const NAME: &'static str = "QueryLoanAuthorizationRequest"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryLoanAuthorizationResponse

Source§

const NAME: &'static str = "QueryLoanAuthorizationResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryLoanCetInfosRequest

Source§

const NAME: &'static str = "QueryLoanCetInfosRequest"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryLoanCetInfosResponse

Source§

const NAME: &'static str = "QueryLoanCetInfosResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryLoanDepositsRequest

Source§

const NAME: &'static str = "QueryLoanDepositsRequest"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryLoanDepositsResponse

Source§

const NAME: &'static str = "QueryLoanDepositsResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryLoanDlcMetaRequest

Source§

const NAME: &'static str = "QueryLoanDlcMetaRequest"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryLoanDlcMetaResponse

Source§

const NAME: &'static str = "QueryLoanDlcMetaResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryLoanRequest

Source§

const NAME: &'static str = "QueryLoanRequest"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryLoanResponse

Source§

const NAME: &'static str = "QueryLoanResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryLoansByAddressRequest

Source§

const NAME: &'static str = "QueryLoansByAddressRequest"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryLoansByAddressResponse

Source§

const NAME: &'static str = "QueryLoansByAddressResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryLoansByOracleRequest

Source§

const NAME: &'static str = "QueryLoansByOracleRequest"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryLoansByOracleResponse

Source§

const NAME: &'static str = "QueryLoansByOracleResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryLoansRequest

Source§

const NAME: &'static str = "QueryLoansRequest"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryLoansResponse

Source§

const NAME: &'static str = "QueryLoansResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for side_proto::side::lending::QueryParamsRequest

Source§

const NAME: &'static str = "QueryParamsRequest"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for side_proto::side::lending::QueryParamsResponse

Source§

const NAME: &'static str = "QueryParamsResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryPoolExchangeRateRequest

Source§

const NAME: &'static str = "QueryPoolExchangeRateRequest"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryPoolExchangeRateResponse

Source§

const NAME: &'static str = "QueryPoolExchangeRateResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for side_proto::side::lending::QueryPoolRequest

Source§

const NAME: &'static str = "QueryPoolRequest"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for side_proto::side::lending::QueryPoolResponse

Source§

const NAME: &'static str = "QueryPoolResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryPoolsRequest

Source§

const NAME: &'static str = "QueryPoolsRequest"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryPoolsResponse

Source§

const NAME: &'static str = "QueryPoolsResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryRedemptionRequest

Source§

const NAME: &'static str = "QueryRedemptionRequest"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryRedemptionResponse

Source§

const NAME: &'static str = "QueryRedemptionResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryReferrersRequest

Source§

const NAME: &'static str = "QueryReferrersRequest"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryReferrersResponse

Source§

const NAME: &'static str = "QueryReferrersResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryRepaymentRequest

Source§

const NAME: &'static str = "QueryRepaymentRequest"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for QueryRepaymentResponse

Source§

const NAME: &'static str = "QueryRepaymentResponse"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for Redemption

Source§

const NAME: &'static str = "Redemption"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for Referrer

Source§

const NAME: &'static str = "Referrer"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for Repayment

Source§

const NAME: &'static str = "Repayment"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for RepaymentCet

Source§

const NAME: &'static str = "RepaymentCet"

Source§

const PACKAGE: &'static str = "side.lending"

Source§

impl Name for side_proto::side::liquidation::AssetMetadata

Source§

const NAME: &'static str = "AssetMetadata"

Source§

const PACKAGE: &'static str = "side.liquidation"

Source§

impl Name for side_proto::side::liquidation::GenesisState

Source§

const NAME: &'static str = "GenesisState"

Source§

const PACKAGE: &'static str = "side.liquidation"

Source§

impl Name for Liquidation

Source§

const NAME: &'static str = "Liquidation"

Source§

const PACKAGE: &'static str = "side.liquidation"

Source§

impl Name for LiquidationRecord

Source§

const NAME: &'static str = "LiquidationRecord"

Source§

const PACKAGE: &'static str = "side.liquidation"

Source§

impl Name for MsgLiquidate

Source§

const NAME: &'static str = "MsgLiquidate"

Source§

const PACKAGE: &'static str = "side.liquidation"

Source§

impl Name for MsgLiquidateResponse

Source§

const NAME: &'static str = "MsgLiquidateResponse"

Source§

const PACKAGE: &'static str = "side.liquidation"

Source§

impl Name for side_proto::side::liquidation::MsgUpdateParams

Source§

const NAME: &'static str = "MsgUpdateParams"

Source§

const PACKAGE: &'static str = "side.liquidation"

Source§

impl Name for side_proto::side::liquidation::MsgUpdateParamsResponse

Source§

const NAME: &'static str = "MsgUpdateParamsResponse"

Source§

const PACKAGE: &'static str = "side.liquidation"

Source§

impl Name for side_proto::side::liquidation::Params

Source§

const NAME: &'static str = "Params"

Source§

const PACKAGE: &'static str = "side.liquidation"

Source§

impl Name for QueryLiquidationRecordRequest

Source§

const NAME: &'static str = "QueryLiquidationRecordRequest"

Source§

const PACKAGE: &'static str = "side.liquidation"

Source§

impl Name for QueryLiquidationRecordResponse

Source§

const NAME: &'static str = "QueryLiquidationRecordResponse"

Source§

const PACKAGE: &'static str = "side.liquidation"

Source§

impl Name for QueryLiquidationRecordsRequest

Source§

const NAME: &'static str = "QueryLiquidationRecordsRequest"

Source§

const PACKAGE: &'static str = "side.liquidation"

Source§

impl Name for QueryLiquidationRecordsResponse

Source§

const NAME: &'static str = "QueryLiquidationRecordsResponse"

Source§

const PACKAGE: &'static str = "side.liquidation"

Source§

impl Name for QueryLiquidationRequest

Source§

const NAME: &'static str = "QueryLiquidationRequest"

Source§

const PACKAGE: &'static str = "side.liquidation"

Source§

impl Name for QueryLiquidationResponse

Source§

const NAME: &'static str = "QueryLiquidationResponse"

Source§

const PACKAGE: &'static str = "side.liquidation"

Source§

impl Name for QueryLiquidationsRequest

Source§

const NAME: &'static str = "QueryLiquidationsRequest"

Source§

const PACKAGE: &'static str = "side.liquidation"

Source§

impl Name for QueryLiquidationsResponse

Source§

const NAME: &'static str = "QueryLiquidationsResponse"

Source§

const PACKAGE: &'static str = "side.liquidation"

Source§

impl Name for side_proto::side::liquidation::QueryParamsRequest

Source§

const NAME: &'static str = "QueryParamsRequest"

Source§

const PACKAGE: &'static str = "side.liquidation"

Source§

impl Name for side_proto::side::liquidation::QueryParamsResponse

Source§

const NAME: &'static str = "QueryParamsResponse"

Source§

const PACKAGE: &'static str = "side.liquidation"

Source§

impl Name for BlockHeader

Source§

const NAME: &'static str = "BlockHeader"

Source§

const PACKAGE: &'static str = "side.oracle"

Source§

impl Name for side_proto::side::oracle::GenesisState

Source§

const NAME: &'static str = "GenesisState"

Source§

const PACKAGE: &'static str = "side.oracle"

Source§

impl Name for side_proto::side::oracle::MsgUpdateParams

Source§

const NAME: &'static str = "MsgUpdateParams"

Source§

const PACKAGE: &'static str = "side.oracle"

Source§

impl Name for side_proto::side::oracle::MsgUpdateParamsResponse

Source§

const NAME: &'static str = "MsgUpdateParamsResponse"

Source§

const PACKAGE: &'static str = "side.oracle"

Source§

impl Name for OraclePrice

Source§

const NAME: &'static str = "OraclePrice"

Source§

const PACKAGE: &'static str = "side.oracle"

Source§

impl Name for OracleVoteExtension

Source§

const NAME: &'static str = "OracleVoteExtension"

Source§

const PACKAGE: &'static str = "side.oracle"

Source§

impl Name for side_proto::side::oracle::Params

Source§

const NAME: &'static str = "Params"

Source§

const PACKAGE: &'static str = "side.oracle"

Source§

impl Name for QueryBestBlockHeaderRequest

Source§

const NAME: &'static str = "QueryBestBlockHeaderRequest"

Source§

const PACKAGE: &'static str = "side.oracle"

Source§

impl Name for QueryBestBlockHeaderResponse

Source§

const NAME: &'static str = "QueryBestBlockHeaderResponse"

Source§

const PACKAGE: &'static str = "side.oracle"

Source§

impl Name for QueryBlockHeaderByHashRequest

Source§

const NAME: &'static str = "QueryBlockHeaderByHashRequest"

Source§

const PACKAGE: &'static str = "side.oracle"

Source§

impl Name for QueryBlockHeaderByHashResponse

Source§

const NAME: &'static str = "QueryBlockHeaderByHashResponse"

Source§

const PACKAGE: &'static str = "side.oracle"

Source§

impl Name for QueryBlockHeaderByHeightRequest

Source§

const NAME: &'static str = "QueryBlockHeaderByHeightRequest"

Source§

const PACKAGE: &'static str = "side.oracle"

Source§

impl Name for QueryBlockHeaderByHeightResponse

Source§

const NAME: &'static str = "QueryBlockHeaderByHeightResponse"

Source§

const PACKAGE: &'static str = "side.oracle"

Source§

impl Name for QueryChainTipRequest

Source§

const NAME: &'static str = "QueryChainTipRequest"

Source§

const PACKAGE: &'static str = "side.oracle"

Source§

impl Name for QueryChainTipResponse

Source§

const NAME: &'static str = "QueryChainTipResponse"

Source§

const PACKAGE: &'static str = "side.oracle"

Source§

impl Name for QueryGetPriceBySymbolRequest

Source§

const NAME: &'static str = "QueryGetPriceBySymbolRequest"

Source§

const PACKAGE: &'static str = "side.oracle"

Source§

impl Name for QueryGetPriceBySymbolResponse

Source§

const NAME: &'static str = "QueryGetPriceBySymbolResponse"

Source§

const PACKAGE: &'static str = "side.oracle"

Source§

impl Name for QueryListPricesRequest

Source§

const NAME: &'static str = "QueryListPricesRequest"

Source§

const PACKAGE: &'static str = "side.oracle"

Source§

impl Name for QueryListPricesResponse

Source§

const NAME: &'static str = "QueryListPricesResponse"

Source§

const PACKAGE: &'static str = "side.oracle"

Source§

impl Name for side_proto::side::oracle::QueryParamsRequest

Source§

const NAME: &'static str = "QueryParamsRequest"

Source§

const PACKAGE: &'static str = "side.oracle"

Source§

impl Name for side_proto::side::oracle::QueryParamsResponse

Source§

const NAME: &'static str = "QueryParamsResponse"

Source§

const PACKAGE: &'static str = "side.oracle"

Source§

impl Name for DkgCompletion

Source§

const NAME: &'static str = "DKGCompletion"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::DkgParticipant

Source§

const NAME: &'static str = "DKGParticipant"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::DkgRequest

Source§

const NAME: &'static str = "DKGRequest"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::GenesisState

Source§

const NAME: &'static str = "GenesisState"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::MsgCompleteDkg

Source§

const NAME: &'static str = "MsgCompleteDKG"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::MsgCompleteDkgResponse

Source§

const NAME: &'static str = "MsgCompleteDKGResponse"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::MsgCompleteRefreshing

Source§

const NAME: &'static str = "MsgCompleteRefreshing"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::MsgCompleteRefreshingResponse

Source§

const NAME: &'static str = "MsgCompleteRefreshingResponse"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::MsgRefresh

Source§

const NAME: &'static str = "MsgRefresh"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::MsgRefreshResponse

Source§

const NAME: &'static str = "MsgRefreshResponse"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::MsgSubmitSignatures

Source§

const NAME: &'static str = "MsgSubmitSignatures"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::MsgSubmitSignaturesResponse

Source§

const NAME: &'static str = "MsgSubmitSignaturesResponse"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::MsgUpdateParams

Source§

const NAME: &'static str = "MsgUpdateParams"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::MsgUpdateParamsResponse

Source§

const NAME: &'static str = "MsgUpdateParamsResponse"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::Params

Source§

const NAME: &'static str = "Params"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for QueryDkgCompletionsRequest

Source§

const NAME: &'static str = "QueryDKGCompletionsRequest"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for QueryDkgCompletionsResponse

Source§

const NAME: &'static str = "QueryDKGCompletionsResponse"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::QueryDkgRequestRequest

Source§

const NAME: &'static str = "QueryDKGRequestRequest"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::QueryDkgRequestResponse

Source§

const NAME: &'static str = "QueryDKGRequestResponse"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::QueryDkgRequestsRequest

Source§

const NAME: &'static str = "QueryDKGRequestsRequest"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::QueryDkgRequestsResponse

Source§

const NAME: &'static str = "QueryDKGRequestsResponse"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::QueryParamsRequest

Source§

const NAME: &'static str = "QueryParamsRequest"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::QueryParamsResponse

Source§

const NAME: &'static str = "QueryParamsResponse"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::QueryRefreshingCompletionsRequest

Source§

const NAME: &'static str = "QueryRefreshingCompletionsRequest"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::QueryRefreshingCompletionsResponse

Source§

const NAME: &'static str = "QueryRefreshingCompletionsResponse"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::QueryRefreshingRequestRequest

Source§

const NAME: &'static str = "QueryRefreshingRequestRequest"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::QueryRefreshingRequestResponse

Source§

const NAME: &'static str = "QueryRefreshingRequestResponse"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::QueryRefreshingRequestsRequest

Source§

const NAME: &'static str = "QueryRefreshingRequestsRequest"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::QueryRefreshingRequestsResponse

Source§

const NAME: &'static str = "QueryRefreshingRequestsResponse"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::QuerySigningRequestRequest

Source§

const NAME: &'static str = "QuerySigningRequestRequest"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::QuerySigningRequestResponse

Source§

const NAME: &'static str = "QuerySigningRequestResponse"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::QuerySigningRequestsRequest

Source§

const NAME: &'static str = "QuerySigningRequestsRequest"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::QuerySigningRequestsResponse

Source§

const NAME: &'static str = "QuerySigningRequestsResponse"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::RefreshingCompletion

Source§

const NAME: &'static str = "RefreshingCompletion"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::RefreshingRequest

Source§

const NAME: &'static str = "RefreshingRequest"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for SigningOptions

Source§

const NAME: &'static str = "SigningOptions"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for side_proto::side::tss::SigningRequest

Source§

const NAME: &'static str = "SigningRequest"

Source§

const PACKAGE: &'static str = "side.tss"

Source§

impl Name for Any

Source§

const PACKAGE: &'static str = PACKAGE

Source§

const NAME: &'static str = "Any"

Source§

impl Name for Timestamp

Source§

const PACKAGE: &'static str = PACKAGE

Source§

const NAME: &'static str = "Timestamp"