penumbra_sdk_proto

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 Value

Source§

const NAME: &'static str = "Value"

Source§

const PACKAGE: &'static str = "penumbra.cnidarium.v1"

Source§

fn full_name() -> String

Source§

fn type_url() -> String

Source§

impl Name for Key

Source§

const NAME: &'static str = "Key"

Source§

const PACKAGE: &'static str = "penumbra.cnidarium.v1"

Source§

fn full_name() -> String

Source§

fn type_url() -> String

Source§

impl Name for Value

Source§

const NAME: &'static str = "Value"

Source§

const PACKAGE: &'static str = "penumbra.cnidarium.v1"

Source§

fn full_name() -> String

Source§

fn type_url() -> String

Source§

impl Name for KeyValueRequest

Source§

const NAME: &'static str = "KeyValueRequest"

Source§

const PACKAGE: &'static str = "penumbra.cnidarium.v1"

Source§

fn full_name() -> String

Source§

fn type_url() -> String

Source§

impl Name for KeyValueResponse

Source§

const NAME: &'static str = "KeyValueResponse"

Source§

const PACKAGE: &'static str = "penumbra.cnidarium.v1"

Source§

fn full_name() -> String

Source§

fn type_url() -> String

Source§

impl Name for NonVerifiableKeyValueRequest

Source§

const NAME: &'static str = "NonVerifiableKeyValueRequest"

Source§

const PACKAGE: &'static str = "penumbra.cnidarium.v1"

Source§

fn full_name() -> String

Source§

fn type_url() -> String

Source§

impl Name for NonVerifiableKeyValueResponse

Source§

const NAME: &'static str = "NonVerifiableKeyValueResponse"

Source§

const PACKAGE: &'static str = "penumbra.cnidarium.v1"

Source§

fn full_name() -> String

Source§

fn type_url() -> String

Source§

impl Name for PrefixValueRequest

Source§

const NAME: &'static str = "PrefixValueRequest"

Source§

const PACKAGE: &'static str = "penumbra.cnidarium.v1"

Source§

fn full_name() -> String

Source§

fn type_url() -> String

Source§

impl Name for PrefixValueResponse

Source§

const NAME: &'static str = "PrefixValueResponse"

Source§

const PACKAGE: &'static str = "penumbra.cnidarium.v1"

Source§

fn full_name() -> String

Source§

fn type_url() -> String

Source§

impl Name for WatchRequest

Source§

const NAME: &'static str = "WatchRequest"

Source§

const PACKAGE: &'static str = "penumbra.cnidarium.v1"

Source§

fn full_name() -> String

Source§

fn type_url() -> String

Source§

impl Name for WatchResponse

Source§

const NAME: &'static str = "WatchResponse"

Source§

const PACKAGE: &'static str = "penumbra.cnidarium.v1"

Source§

fn full_name() -> String

Source§

fn type_url() -> String

Source§

impl Name for KeyValue

Source§

const NAME: &'static str = "KeyValue"

Source§

const PACKAGE: &'static str = "penumbra.cnidarium.v1"

Source§

fn full_name() -> String

Source§

fn type_url() -> String

Source§

impl Name for NvKeyValue

Source§

const NAME: &'static str = "NvKeyValue"

Source§

const PACKAGE: &'static str = "penumbra.cnidarium.v1"

Source§

fn full_name() -> String

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

§

impl Name for AbciMessageLog

§

const NAME: &'static str = "ABCIMessageLog"

§

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

§

fn full_name() -> String

§

impl Name for AbciQueryRequest

§

const NAME: &'static str = "ABCIQueryRequest"

§

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

§

fn full_name() -> String

§

impl Name for AbciQueryResponse

§

const NAME: &'static str = "ABCIQueryResponse"

§

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

§

fn full_name() -> String

§

impl Name for Acknowledgement

§

const NAME: &'static str = "Acknowledgement"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for AddressBytesToStringRequest

§

const NAME: &'static str = "AddressBytesToStringRequest"

§

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

§

fn full_name() -> String

§

impl Name for AddressBytesToStringResponse

§

const NAME: &'static str = "AddressBytesToStringResponse"

§

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

§

fn full_name() -> String

§

impl Name for AddressList

§

const NAME: &'static str = "AddressList"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for AddressStringToBytesRequest

§

const NAME: &'static str = "AddressStringToBytesRequest"

§

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

§

fn full_name() -> String

§

impl Name for AddressStringToBytesResponse

§

const NAME: &'static str = "AddressStringToBytesResponse"

§

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

§

fn full_name() -> String

§

impl Name for Allocation

§

const NAME: &'static str = "Allocation"

§

const PACKAGE: &'static str = "ibc.applications.transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for AllowedMsgAllowance

§

const NAME: &'static str = "AllowedMsgAllowance"

§

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

§

fn full_name() -> String

§

impl Name for Any

§

const PACKAGE: &'static str = PACKAGE

§

const NAME: &'static str = "Any"

§

fn type_url() -> String

§

impl Name for AppDescriptor

§

const NAME: &'static str = "AppDescriptor"

§

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

§

fn full_name() -> String

§

impl Name for Attribute

§

const NAME: &'static str = "Attribute"

§

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

§

fn full_name() -> String

§

impl Name for AuthInfo

§

const NAME: &'static str = "AuthInfo"

§

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

§

fn full_name() -> String

§

impl Name for AuthnDescriptor

§

const NAME: &'static str = "AuthnDescriptor"

§

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

§

fn full_name() -> String

§

impl Name for AuxSignerData

§

const NAME: &'static str = "AuxSignerData"

§

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

§

fn full_name() -> String

§

impl Name for Balance

§

const NAME: &'static str = "Balance"

§

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

§

fn full_name() -> String

§

impl Name for BaseAccount

§

const NAME: &'static str = "BaseAccount"

§

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

§

fn full_name() -> String

§

impl Name for BaseVestingAccount

§

const NAME: &'static str = "BaseVestingAccount"

§

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

§

fn full_name() -> String

§

impl Name for BasicAllowance

§

const NAME: &'static str = "BasicAllowance"

§

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

§

fn full_name() -> String

§

impl Name for Bech32PrefixRequest

§

const NAME: &'static str = "Bech32PrefixRequest"

§

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

§

fn full_name() -> String

§

impl Name for Bech32PrefixResponse

§

const NAME: &'static str = "Bech32PrefixResponse"

§

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

§

fn full_name() -> String

§

impl Name for Block

§

const NAME: &'static str = "Block"

§

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

§

fn full_name() -> String

§

impl Name for BroadcastTxRequest

§

const NAME: &'static str = "BroadcastTxRequest"

§

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

§

fn full_name() -> String

§

impl Name for BroadcastTxResponse

§

const NAME: &'static str = "BroadcastTxResponse"

§

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

§

fn full_name() -> 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

§

impl Name for CancelSoftwareUpgradeProposal

§

const NAME: &'static str = "CancelSoftwareUpgradeProposal"

§

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

§

fn full_name() -> String

§

impl Name for Chain

§

const NAME: &'static str = "Chain"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ChainDescriptor

§

const NAME: &'static str = "ChainDescriptor"

§

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

§

fn full_name() -> String

§

impl Name for ChainInfo

§

const NAME: &'static str = "ChainInfo"

§

const PACKAGE: &'static str = "interchain_security.ccv.consumer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ChangeRewardDenomsProposal

§

const NAME: &'static str = "ChangeRewardDenomsProposal"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Channel

§

const NAME: &'static str = "Channel"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ChannelToChain

§

const NAME: &'static str = "ChannelToChain"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Checksums

§

const NAME: &'static str = "Checksums"

§

const PACKAGE: &'static str = "ibc.lightclients.wasm.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ClassTrace

§

const NAME: &'static str = "ClassTrace"

§

const PACKAGE: &'static str = "ibc.applications.nft_transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ClientConsensusStates

§

const NAME: &'static str = "ClientConsensusStates"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ClientMessage

§

const NAME: &'static str = "ClientMessage"

§

const PACKAGE: &'static str = "ibc.lightclients.wasm.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ClientPaths

§

const NAME: &'static str = "ClientPaths"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ClientState

§

const NAME: &'static str = "ClientState"

§

const PACKAGE: &'static str = "ibc.lightclients.localhost.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ClientState

§

const NAME: &'static str = "ClientState"

§

const PACKAGE: &'static str = "ibc.lightclients.localhost.v2"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ClientState

§

const NAME: &'static str = "ClientState"

§

const PACKAGE: &'static str = "ibc.lightclients.solomachine.v3"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ClientState

§

const NAME: &'static str = "ClientState"

§

const PACKAGE: &'static str = "ibc.lightclients.tendermint.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ClientState

§

const NAME: &'static str = "ClientState"

§

const PACKAGE: &'static str = "ibc.lightclients.wasm.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ClientState

§

const NAME: &'static str = "ClientState"

§

const PACKAGE: &'static str = "ibc.mock"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ClientUpdateProposal

§

const NAME: &'static str = "ClientUpdateProposal"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for CodecDescriptor

§

const NAME: &'static str = "CodecDescriptor"

§

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

§

fn full_name() -> String

§

impl Name for Coin

§

const NAME: &'static str = "Coin"

§

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

§

fn full_name() -> String

§

impl Name for Commission

§

const NAME: &'static str = "Commission"

§

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

§

fn full_name() -> String

§

impl Name for CommissionRates

§

const NAME: &'static str = "CommissionRates"

§

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

§

fn full_name() -> String

§

impl Name for CommunityPoolSpendProposal

§

const NAME: &'static str = "CommunityPoolSpendProposal"

§

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

§

fn full_name() -> String

§

impl Name for CommunityPoolSpendProposalWithDeposit

§

const NAME: &'static str = "CommunityPoolSpendProposalWithDeposit"

§

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

§

fn full_name() -> String

§

impl Name for CompactBitArray

§

const NAME: &'static str = "CompactBitArray"

§

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

§

fn full_name() -> String

§

impl Name for ConfigRequest

§

const NAME: &'static str = "ConfigRequest"

§

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

§

fn full_name() -> String

§

impl Name for ConfigResponse

§

const NAME: &'static str = "ConfigResponse"

§

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

§

fn full_name() -> String

§

impl Name for ConfigurationDescriptor

§

const NAME: &'static str = "ConfigurationDescriptor"

§

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

§

fn full_name() -> String

§

impl Name for ConnectionEnd

§

const NAME: &'static str = "ConnectionEnd"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ConnectionPaths

§

const NAME: &'static str = "ConnectionPaths"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ConsensusState

§

const NAME: &'static str = "ConsensusState"

§

const PACKAGE: &'static str = "ibc.lightclients.solomachine.v3"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ConsensusState

§

const NAME: &'static str = "ConsensusState"

§

const PACKAGE: &'static str = "ibc.lightclients.tendermint.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ConsensusState

§

const NAME: &'static str = "ConsensusState"

§

const PACKAGE: &'static str = "ibc.lightclients.wasm.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ConsensusState

§

const NAME: &'static str = "ConsensusState"

§

const PACKAGE: &'static str = "ibc.mock"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ConsensusStateWithHeight

§

const NAME: &'static str = "ConsensusStateWithHeight"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ConsensusValidator

§

const NAME: &'static str = "ConsensusValidator"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ConsumerAdditionProposal

§

const NAME: &'static str = "ConsumerAdditionProposal"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ConsumerAdditionProposals

§

const NAME: &'static str = "ConsumerAdditionProposals"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ConsumerAddrsToPruneV2

§

const NAME: &'static str = "ConsumerAddrsToPruneV2"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ConsumerGenesisState

§

const NAME: &'static str = "ConsumerGenesisState"

§

const PACKAGE: &'static str = "interchain_security.ccv.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ConsumerIds

§

const NAME: &'static str = "ConsumerIds"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ConsumerInitializationParameters

§

const NAME: &'static str = "ConsumerInitializationParameters"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ConsumerMetadata

§

const NAME: &'static str = "ConsumerMetadata"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ConsumerModificationProposal

§

const NAME: &'static str = "ConsumerModificationProposal"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ConsumerPacketData

§

const NAME: &'static str = "ConsumerPacketData"

§

const PACKAGE: &'static str = "interchain_security.ccv.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ConsumerPacketDataList

§

const NAME: &'static str = "ConsumerPacketDataList"

§

const PACKAGE: &'static str = "interchain_security.ccv.consumer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ConsumerPacketDataV1

§

const NAME: &'static str = "ConsumerPacketDataV1"

§

const PACKAGE: &'static str = "interchain_security.ccv.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ConsumerParams

§

const NAME: &'static str = "ConsumerParams"

§

const PACKAGE: &'static str = "interchain_security.ccv.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ConsumerRemovalProposal

§

const NAME: &'static str = "ConsumerRemovalProposal"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ConsumerRemovalProposals

§

const NAME: &'static str = "ConsumerRemovalProposals"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ConsumerRewardsAllocation

§

const NAME: &'static str = "ConsumerRewardsAllocation"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ConsumerState

§

const NAME: &'static str = "ConsumerState"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ContinuousVestingAccount

§

const NAME: &'static str = "ContinuousVestingAccount"

§

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

§

fn full_name() -> String

§

impl Name for Contract

§

const NAME: &'static str = "Contract"

§

const PACKAGE: &'static str = "ibc.lightclients.wasm.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for CosmosTx

§

const NAME: &'static str = "CosmosTx"

§

const PACKAGE: &'static str = "ibc.applications.interchain_accounts.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Counterparty

§

const NAME: &'static str = "Counterparty"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Counterparty

§

const NAME: &'static str = "Counterparty"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for CrossChainValidator

§

const NAME: &'static str = "CrossChainValidator"

§

const PACKAGE: &'static str = "interchain_security.ccv.consumer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Data

§

const NAME: &'static str = "Data"

§

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

§

fn full_name() -> String

§

impl Name for DecCoin

§

const NAME: &'static str = "DecCoin"

§

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

§

fn full_name() -> String

§

impl Name for DecProto

§

const NAME: &'static str = "DecProto"

§

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

§

fn full_name() -> String

§

impl Name for DelayedVestingAccount

§

const NAME: &'static str = "DelayedVestingAccount"

§

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

§

fn full_name() -> String

§

impl Name for Delegation

§

const NAME: &'static str = "Delegation"

§

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

§

fn full_name() -> String

§

impl Name for DelegationDelegatorReward

§

const NAME: &'static str = "DelegationDelegatorReward"

§

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

§

fn full_name() -> String

§

impl Name for DelegationResponse

§

const NAME: &'static str = "DelegationResponse"

§

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

§

fn full_name() -> String

§

impl Name for DelegatorStartingInfo

§

const NAME: &'static str = "DelegatorStartingInfo"

§

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

§

fn full_name() -> String

§

impl Name for DelegatorStartingInfoRecord

§

const NAME: &'static str = "DelegatorStartingInfoRecord"

§

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

§

fn full_name() -> String

§

impl Name for DelegatorWithdrawInfo

§

const NAME: &'static str = "DelegatorWithdrawInfo"

§

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

§

fn full_name() -> String

§

impl Name for DenomOwner

§

const NAME: &'static str = "DenomOwner"

§

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

§

fn full_name() -> String

§

impl Name for DenomTrace

§

const NAME: &'static str = "DenomTrace"

§

const PACKAGE: &'static str = "ibc.applications.transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for DenomUnit

§

const NAME: &'static str = "DenomUnit"

§

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

§

fn full_name() -> String

§

impl Name for Deposit

§

const NAME: &'static str = "Deposit"

§

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

§

fn full_name() -> String

§

impl Name for Deposit

§

const NAME: &'static str = "Deposit"

§

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

§

fn full_name() -> String

§

impl Name for DepositParams

§

const NAME: &'static str = "DepositParams"

§

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

§

fn full_name() -> String

§

impl Name for DepositParams

§

const NAME: &'static str = "DepositParams"

§

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

§

fn full_name() -> String

§

impl Name for Description

§

const NAME: &'static str = "Description"

§

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

§

fn full_name() -> String

§

impl Name for Duration

§

const PACKAGE: &'static str = PACKAGE

§

const NAME: &'static str = "Duration"

§

fn type_url() -> String

§

impl Name for DvPair

§

const NAME: &'static str = "DVPair"

§

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

§

fn full_name() -> String

§

impl Name for DvPairs

§

const NAME: &'static str = "DVPairs"

§

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

§

fn full_name() -> String

§

impl Name for DvvTriplet

§

const NAME: &'static str = "DVVTriplet"

§

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

§

fn full_name() -> String

§

impl Name for DvvTriplets

§

const NAME: &'static str = "DVVTriplets"

§

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

§

fn full_name() -> String

§

impl Name for Equivocation

§

const NAME: &'static str = "Equivocation"

§

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

§

fn full_name() -> String

§

impl Name for EquivocationProposal

§

const NAME: &'static str = "EquivocationProposal"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ErrorReceipt

§

const NAME: &'static str = "ErrorReceipt"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for EventGrant

§

const NAME: &'static str = "EventGrant"

§

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

§

fn full_name() -> String

§

impl Name for EventRevoke

§

const NAME: &'static str = "EventRevoke"

§

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

§

fn full_name() -> String

§

impl Name for Fee

§

const NAME: &'static str = "Fee"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Fee

§

const NAME: &'static str = "Fee"

§

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

§

fn full_name() -> String

§

impl Name for FeeEnabledChannel

§

const NAME: &'static str = "FeeEnabledChannel"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for FeePool

§

const NAME: &'static str = "FeePool"

§

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

§

fn full_name() -> String

§

impl Name for ForwardRelayerAddress

§

const NAME: &'static str = "ForwardRelayerAddress"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Fraction

§

const NAME: &'static str = "Fraction"

§

const PACKAGE: &'static str = "ibc.lightclients.tendermint.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for FungibleTokenPacketData

§

const NAME: &'static str = "FungibleTokenPacketData"

§

const PACKAGE: &'static str = "ibc.applications.transfer.v2"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for GasInfo

§

const NAME: &'static str = "GasInfo"

§

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

§

fn full_name() -> String

§

impl Name for GenericAuthorization

§

const NAME: &'static str = "GenericAuthorization"

§

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

§

fn full_name() -> String

§

impl Name for GenesisMetadata

§

const NAME: &'static str = "GenesisMetadata"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for GenesisState

§

const NAME: &'static str = "GenesisState"

§

const PACKAGE: &'static str = "ibc.applications.transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for GenesisState

§

const NAME: &'static str = "GenesisState"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for GenesisState

§

const NAME: &'static str = "GenesisState"

§

const PACKAGE: &'static str = "ibc.applications.nft_transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for GenesisState

§

const NAME: &'static str = "GenesisState"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for GenesisState

§

const NAME: &'static str = "GenesisState"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for GenesisState

§

const NAME: &'static str = "GenesisState"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for GenesisState

§

const NAME: &'static str = "GenesisState"

§

const PACKAGE: &'static str = "ibc.core.types.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for GenesisState

§

const NAME: &'static str = "GenesisState"

§

const PACKAGE: &'static str = "ibc.lightclients.wasm.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for GenesisState

§

const NAME: &'static str = "GenesisState"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for GenesisState

§

const NAME: &'static str = "GenesisState"

§

const PACKAGE: &'static str = "interchain_security.ccv.consumer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for GenesisState

§

const NAME: &'static str = "GenesisState"

§

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

§

fn full_name() -> String

§

impl Name for GenesisState

§

const NAME: &'static str = "GenesisState"

§

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

§

fn full_name() -> String

§

impl Name for GenesisState

§

const NAME: &'static str = "GenesisState"

§

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

§

fn full_name() -> String

§

impl Name for GenesisState

§

const NAME: &'static str = "GenesisState"

§

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

§

fn full_name() -> String

§

impl Name for GenesisState

§

const NAME: &'static str = "GenesisState"

§

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

§

fn full_name() -> String

§

impl Name for GenesisState

§

const NAME: &'static str = "GenesisState"

§

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

§

fn full_name() -> String

§

impl Name for GenesisState

§

const NAME: &'static str = "GenesisState"

§

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

§

fn full_name() -> String

§

impl Name for GenesisState

§

const NAME: &'static str = "GenesisState"

§

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

§

fn full_name() -> String

§

impl Name for GenesisState

§

const NAME: &'static str = "GenesisState"

§

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

§

fn full_name() -> String

§

impl Name for GenesisState

§

const NAME: &'static str = "GenesisState"

§

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

§

fn full_name() -> String

§

impl Name for GenesisState

§

const NAME: &'static str = "GenesisState"

§

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

§

fn full_name() -> String

§

impl Name for GenesisState

§

const NAME: &'static str = "GenesisState"

§

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

§

fn full_name() -> String

§

impl Name for GenesisState

§

const NAME: &'static str = "GenesisState"

§

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

§

fn full_name() -> String

§

impl Name for GetAuthnDescriptorRequest

§

const NAME: &'static str = "GetAuthnDescriptorRequest"

§

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

§

fn full_name() -> String

§

impl Name for GetAuthnDescriptorResponse

§

const NAME: &'static str = "GetAuthnDescriptorResponse"

§

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

§

fn full_name() -> String

§

impl Name for GetBlockByHeightRequest

§

const NAME: &'static str = "GetBlockByHeightRequest"

§

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

§

fn full_name() -> String

§

impl Name for GetBlockByHeightResponse

§

const NAME: &'static str = "GetBlockByHeightResponse"

§

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

§

fn full_name() -> String

§

impl Name for GetBlockWithTxsRequest

§

const NAME: &'static str = "GetBlockWithTxsRequest"

§

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

§

fn full_name() -> String

§

impl Name for GetBlockWithTxsResponse

§

const NAME: &'static str = "GetBlockWithTxsResponse"

§

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

§

fn full_name() -> String

§

impl Name for GetChainDescriptorRequest

§

const NAME: &'static str = "GetChainDescriptorRequest"

§

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

§

fn full_name() -> String

§

impl Name for GetChainDescriptorResponse

§

const NAME: &'static str = "GetChainDescriptorResponse"

§

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

§

fn full_name() -> String

§

impl Name for GetCodecDescriptorRequest

§

const NAME: &'static str = "GetCodecDescriptorRequest"

§

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

§

fn full_name() -> String

§

impl Name for GetCodecDescriptorResponse

§

const NAME: &'static str = "GetCodecDescriptorResponse"

§

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

§

fn full_name() -> String

§

impl Name for GetConfigurationDescriptorRequest

§

const NAME: &'static str = "GetConfigurationDescriptorRequest"

§

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

§

fn full_name() -> String

§

impl Name for GetConfigurationDescriptorResponse

§

const NAME: &'static str = "GetConfigurationDescriptorResponse"

§

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

§

fn full_name() -> String

§

impl Name for GetLatestBlockRequest

§

const NAME: &'static str = "GetLatestBlockRequest"

§

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

§

fn full_name() -> String

§

impl Name for GetLatestBlockResponse

§

const NAME: &'static str = "GetLatestBlockResponse"

§

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

§

fn full_name() -> String

§

impl Name for GetLatestValidatorSetRequest

§

const NAME: &'static str = "GetLatestValidatorSetRequest"

§

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

§

fn full_name() -> String

§

impl Name for GetLatestValidatorSetResponse

§

const NAME: &'static str = "GetLatestValidatorSetResponse"

§

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

§

fn full_name() -> String

§

impl Name for GetNodeInfoRequest

§

const NAME: &'static str = "GetNodeInfoRequest"

§

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

§

fn full_name() -> String

§

impl Name for GetNodeInfoResponse

§

const NAME: &'static str = "GetNodeInfoResponse"

§

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

§

fn full_name() -> String

§

impl Name for GetQueryServicesDescriptorRequest

§

const NAME: &'static str = "GetQueryServicesDescriptorRequest"

§

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

§

fn full_name() -> String

§

impl Name for GetQueryServicesDescriptorResponse

§

const NAME: &'static str = "GetQueryServicesDescriptorResponse"

§

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

§

fn full_name() -> String

§

impl Name for GetSyncingRequest

§

const NAME: &'static str = "GetSyncingRequest"

§

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

§

fn full_name() -> String

§

impl Name for GetSyncingResponse

§

const NAME: &'static str = "GetSyncingResponse"

§

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

§

fn full_name() -> String

§

impl Name for GetTxDescriptorRequest

§

const NAME: &'static str = "GetTxDescriptorRequest"

§

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

§

fn full_name() -> String

§

impl Name for GetTxDescriptorResponse

§

const NAME: &'static str = "GetTxDescriptorResponse"

§

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

§

fn full_name() -> String

§

impl Name for GetTxRequest

§

const NAME: &'static str = "GetTxRequest"

§

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

§

fn full_name() -> String

§

impl Name for GetTxResponse

§

const NAME: &'static str = "GetTxResponse"

§

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

§

fn full_name() -> String

§

impl Name for GetTxsEventRequest

§

const NAME: &'static str = "GetTxsEventRequest"

§

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

§

fn full_name() -> String

§

impl Name for GetTxsEventResponse

§

const NAME: &'static str = "GetTxsEventResponse"

§

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

§

fn full_name() -> String

§

impl Name for GetValidatorSetByHeightRequest

§

const NAME: &'static str = "GetValidatorSetByHeightRequest"

§

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

§

fn full_name() -> String

§

impl Name for GetValidatorSetByHeightResponse

§

const NAME: &'static str = "GetValidatorSetByHeightResponse"

§

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

§

fn full_name() -> String

§

impl Name for GlobalSlashEntry

§

const NAME: &'static str = "GlobalSlashEntry"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Grant

§

const NAME: &'static str = "Grant"

§

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

§

fn full_name() -> String

§

impl Name for Grant

§

const NAME: &'static str = "Grant"

§

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

§

fn full_name() -> String

§

impl Name for GrantAuthorization

§

const NAME: &'static str = "GrantAuthorization"

§

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

§

fn full_name() -> String

§

impl Name for GrantQueueItem

§

const NAME: &'static str = "GrantQueueItem"

§

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

§

fn full_name() -> String

§

impl Name for HandshakeMetadata

§

const NAME: &'static str = "HandshakeMetadata"

§

const PACKAGE: &'static str = "interchain_security.ccv.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Header

§

const NAME: &'static str = "Header"

§

const PACKAGE: &'static str = "ibc.lightclients.solomachine.v3"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Header

§

const NAME: &'static str = "Header"

§

const PACKAGE: &'static str = "ibc.lightclients.tendermint.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Header

§

const NAME: &'static str = "Header"

§

const PACKAGE: &'static str = "ibc.mock"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Header

§

const NAME: &'static str = "Header"

§

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

§

fn full_name() -> String

§

impl Name for HeaderData

§

const NAME: &'static str = "HeaderData"

§

const PACKAGE: &'static str = "ibc.lightclients.solomachine.v3"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Height

§

const NAME: &'static str = "Height"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for HeightToValsetUpdateId

§

const NAME: &'static str = "HeightToValsetUpdateID"

§

const PACKAGE: &'static str = "interchain_security.ccv.consumer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for HistoricalInfo

§

const NAME: &'static str = "HistoricalInfo"

§

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

§

fn full_name() -> String

§

impl Name for IdentifiedChannel

§

const NAME: &'static str = "IdentifiedChannel"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for IdentifiedClientState

§

const NAME: &'static str = "IdentifiedClientState"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for IdentifiedConnection

§

const NAME: &'static str = "IdentifiedConnection"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for IdentifiedGenesisMetadata

§

const NAME: &'static str = "IdentifiedGenesisMetadata"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for IdentifiedPacketFees

§

const NAME: &'static str = "IdentifiedPacketFees"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for IncentivizedAcknowledgement

§

const NAME: &'static str = "IncentivizedAcknowledgement"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Input

§

const NAME: &'static str = "Input"

§

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

§

fn full_name() -> String

§

impl Name for IntProto

§

const NAME: &'static str = "IntProto"

§

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

§

fn full_name() -> String

§

impl Name for InterchainAccount

§

const NAME: &'static str = "InterchainAccount"

§

const PACKAGE: &'static str = "ibc.applications.interchain_accounts.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for InterchainAccountPacketData

§

const NAME: &'static str = "InterchainAccountPacketData"

§

const PACKAGE: &'static str = "ibc.applications.interchain_accounts.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for InterfaceAcceptingMessageDescriptor

§

const NAME: &'static str = "InterfaceAcceptingMessageDescriptor"

§

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

§

fn full_name() -> String

§

impl Name for InterfaceDescriptor

§

const NAME: &'static str = "InterfaceDescriptor"

§

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

§

fn full_name() -> String

§

impl Name for InterfaceImplementerDescriptor

§

const NAME: &'static str = "InterfaceImplementerDescriptor"

§

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

§

fn full_name() -> String

§

impl Name for KeyAssignmentReplacement

§

const NAME: &'static str = "KeyAssignmentReplacement"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for LastTransmissionBlockHeight

§

const NAME: &'static str = "LastTransmissionBlockHeight"

§

const PACKAGE: &'static str = "interchain_security.ccv.consumer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for LastValidatorPower

§

const NAME: &'static str = "LastValidatorPower"

§

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

§

fn full_name() -> String

§

impl Name for LegacyAminoPubKey

§

const NAME: &'static str = "LegacyAminoPubKey"

§

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

§

fn full_name() -> String

§

impl Name for ListAllInterfacesRequest

§

const NAME: &'static str = "ListAllInterfacesRequest"

§

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

§

fn full_name() -> String

§

impl Name for ListAllInterfacesResponse

§

const NAME: &'static str = "ListAllInterfacesResponse"

§

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

§

fn full_name() -> String

§

impl Name for ListImplementationsRequest

§

const NAME: &'static str = "ListImplementationsRequest"

§

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

§

fn full_name() -> String

§

impl Name for ListImplementationsResponse

§

const NAME: &'static str = "ListImplementationsResponse"

§

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

§

fn full_name() -> String

§

impl Name for MaturingVscPacket

§

const NAME: &'static str = "MaturingVSCPacket"

§

const PACKAGE: &'static str = "interchain_security.ccv.consumer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MerklePath

§

const NAME: &'static str = "MerklePath"

§

const PACKAGE: &'static str = "ibc.core.commitment.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MerklePrefix

§

const NAME: &'static str = "MerklePrefix"

§

const PACKAGE: &'static str = "ibc.core.commitment.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MerkleProof

§

const NAME: &'static str = "MerkleProof"

§

const PACKAGE: &'static str = "ibc.core.commitment.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MerkleRoot

§

const NAME: &'static str = "MerkleRoot"

§

const PACKAGE: &'static str = "ibc.core.commitment.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Metadata

§

const NAME: &'static str = "Metadata"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Metadata

§

const NAME: &'static str = "Metadata"

§

const PACKAGE: &'static str = "ibc.applications.interchain_accounts.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Metadata

§

const NAME: &'static str = "Metadata"

§

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

§

fn full_name() -> String

§

impl Name for Minter

§

const NAME: &'static str = "Minter"

§

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

§

fn full_name() -> String

§

impl Name for Misbehaviour

§

const NAME: &'static str = "Misbehaviour"

§

const PACKAGE: &'static str = "ibc.lightclients.solomachine.v3"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Misbehaviour

§

const NAME: &'static str = "Misbehaviour"

§

const PACKAGE: &'static str = "ibc.lightclients.tendermint.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Misbehaviour

§

const NAME: &'static str = "Misbehaviour"

§

const PACKAGE: &'static str = "ibc.mock"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MissedBlock

§

const NAME: &'static str = "MissedBlock"

§

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

§

fn full_name() -> String

§

impl Name for ModeInfo

§

const NAME: &'static str = "ModeInfo"

§

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

§

fn full_name() -> String

§

impl Name for Module

§

const NAME: &'static str = "Module"

§

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

§

fn full_name() -> String

§

impl Name for ModuleAccount

§

const NAME: &'static str = "ModuleAccount"

§

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

§

fn full_name() -> String

§

impl Name for ModuleCredential

§

const NAME: &'static str = "ModuleCredential"

§

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

§

fn full_name() -> String

§

impl Name for ModuleVersion

§

const NAME: &'static str = "ModuleVersion"

§

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

§

fn full_name() -> String

§

impl Name for MsgAcknowledgement

§

const NAME: &'static str = "MsgAcknowledgement"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgAcknowledgementResponse

§

const NAME: &'static str = "MsgAcknowledgementResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgAssignConsumerKey

§

const NAME: &'static str = "MsgAssignConsumerKey"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgAssignConsumerKeyResponse

§

const NAME: &'static str = "MsgAssignConsumerKeyResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgBeginRedelegate

§

const NAME: &'static str = "MsgBeginRedelegate"

§

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

§

fn full_name() -> String

§

impl Name for MsgBeginRedelegateResponse

§

const NAME: &'static str = "MsgBeginRedelegateResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgCancelProposal

§

const NAME: &'static str = "MsgCancelProposal"

§

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

§

fn full_name() -> String

§

impl Name for MsgCancelProposalResponse

§

const NAME: &'static str = "MsgCancelProposalResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgCancelUnbondingDelegation

§

const NAME: &'static str = "MsgCancelUnbondingDelegation"

§

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

§

fn full_name() -> String

§

impl Name for MsgCancelUnbondingDelegationResponse

§

const NAME: &'static str = "MsgCancelUnbondingDelegationResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgCancelUpgrade

§

const NAME: &'static str = "MsgCancelUpgrade"

§

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

§

fn full_name() -> String

§

impl Name for MsgCancelUpgradeResponse

§

const NAME: &'static str = "MsgCancelUpgradeResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgChangeRewardDenoms

§

const NAME: &'static str = "MsgChangeRewardDenoms"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChangeRewardDenomsResponse

§

const NAME: &'static str = "MsgChangeRewardDenomsResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelCloseConfirm

§

const NAME: &'static str = "MsgChannelCloseConfirm"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelCloseConfirmResponse

§

const NAME: &'static str = "MsgChannelCloseConfirmResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelCloseInit

§

const NAME: &'static str = "MsgChannelCloseInit"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelCloseInitResponse

§

const NAME: &'static str = "MsgChannelCloseInitResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelOpenAck

§

const NAME: &'static str = "MsgChannelOpenAck"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelOpenAckResponse

§

const NAME: &'static str = "MsgChannelOpenAckResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelOpenConfirm

§

const NAME: &'static str = "MsgChannelOpenConfirm"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelOpenConfirmResponse

§

const NAME: &'static str = "MsgChannelOpenConfirmResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelOpenInit

§

const NAME: &'static str = "MsgChannelOpenInit"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelOpenInitResponse

§

const NAME: &'static str = "MsgChannelOpenInitResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelOpenTry

§

const NAME: &'static str = "MsgChannelOpenTry"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelOpenTryResponse

§

const NAME: &'static str = "MsgChannelOpenTryResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelUpgradeAck

§

const NAME: &'static str = "MsgChannelUpgradeAck"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelUpgradeAckResponse

§

const NAME: &'static str = "MsgChannelUpgradeAckResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelUpgradeCancel

§

const NAME: &'static str = "MsgChannelUpgradeCancel"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelUpgradeCancelResponse

§

const NAME: &'static str = "MsgChannelUpgradeCancelResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelUpgradeConfirm

§

const NAME: &'static str = "MsgChannelUpgradeConfirm"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelUpgradeConfirmResponse

§

const NAME: &'static str = "MsgChannelUpgradeConfirmResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelUpgradeInit

§

const NAME: &'static str = "MsgChannelUpgradeInit"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelUpgradeInitResponse

§

const NAME: &'static str = "MsgChannelUpgradeInitResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelUpgradeOpen

§

const NAME: &'static str = "MsgChannelUpgradeOpen"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelUpgradeOpenResponse

§

const NAME: &'static str = "MsgChannelUpgradeOpenResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelUpgradeTimeout

§

const NAME: &'static str = "MsgChannelUpgradeTimeout"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelUpgradeTimeoutResponse

§

const NAME: &'static str = "MsgChannelUpgradeTimeoutResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelUpgradeTry

§

const NAME: &'static str = "MsgChannelUpgradeTry"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgChannelUpgradeTryResponse

§

const NAME: &'static str = "MsgChannelUpgradeTryResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgCommunityPoolSpend

§

const NAME: &'static str = "MsgCommunityPoolSpend"

§

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

§

fn full_name() -> String

§

impl Name for MsgCommunityPoolSpendResponse

§

const NAME: &'static str = "MsgCommunityPoolSpendResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgConnectionOpenAck

§

const NAME: &'static str = "MsgConnectionOpenAck"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgConnectionOpenAckResponse

§

const NAME: &'static str = "MsgConnectionOpenAckResponse"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgConnectionOpenConfirm

§

const NAME: &'static str = "MsgConnectionOpenConfirm"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgConnectionOpenConfirmResponse

§

const NAME: &'static str = "MsgConnectionOpenConfirmResponse"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgConnectionOpenInit

§

const NAME: &'static str = "MsgConnectionOpenInit"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgConnectionOpenInitResponse

§

const NAME: &'static str = "MsgConnectionOpenInitResponse"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgConnectionOpenTry

§

const NAME: &'static str = "MsgConnectionOpenTry"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgConnectionOpenTryResponse

§

const NAME: &'static str = "MsgConnectionOpenTryResponse"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgConsumerAddition

§

const NAME: &'static str = "MsgConsumerAddition"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgConsumerModification

§

const NAME: &'static str = "MsgConsumerModification"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgConsumerModificationResponse

§

const NAME: &'static str = "MsgConsumerModificationResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgConsumerRemoval

§

const NAME: &'static str = "MsgConsumerRemoval"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgCreateClient

§

const NAME: &'static str = "MsgCreateClient"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgCreateClientResponse

§

const NAME: &'static str = "MsgCreateClientResponse"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgCreateConsumer

§

const NAME: &'static str = "MsgCreateConsumer"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgCreateConsumerResponse

§

const NAME: &'static str = "MsgCreateConsumerResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgCreatePeriodicVestingAccount

§

const NAME: &'static str = "MsgCreatePeriodicVestingAccount"

§

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

§

fn full_name() -> String

§

impl Name for MsgCreatePeriodicVestingAccountResponse

§

const NAME: &'static str = "MsgCreatePeriodicVestingAccountResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgCreatePermanentLockedAccount

§

const NAME: &'static str = "MsgCreatePermanentLockedAccount"

§

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

§

fn full_name() -> String

§

impl Name for MsgCreatePermanentLockedAccountResponse

§

const NAME: &'static str = "MsgCreatePermanentLockedAccountResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgCreateValidator

§

const NAME: &'static str = "MsgCreateValidator"

§

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

§

fn full_name() -> String

§

impl Name for MsgCreateValidatorResponse

§

const NAME: &'static str = "MsgCreateValidatorResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgCreateVestingAccount

§

const NAME: &'static str = "MsgCreateVestingAccount"

§

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

§

fn full_name() -> String

§

impl Name for MsgCreateVestingAccountResponse

§

const NAME: &'static str = "MsgCreateVestingAccountResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgData

§

const NAME: &'static str = "MsgData"

§

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

§

fn full_name() -> String

§

impl Name for MsgDelegate

§

const NAME: &'static str = "MsgDelegate"

§

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

§

fn full_name() -> String

§

impl Name for MsgDelegateResponse

§

const NAME: &'static str = "MsgDelegateResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgDeposit

§

const NAME: &'static str = "MsgDeposit"

§

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

§

fn full_name() -> String

§

impl Name for MsgDeposit

§

const NAME: &'static str = "MsgDeposit"

§

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

§

fn full_name() -> String

§

impl Name for MsgDepositResponse

§

const NAME: &'static str = "MsgDepositResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgDepositResponse

§

const NAME: &'static str = "MsgDepositResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgDepositValidatorRewardsPool

§

const NAME: &'static str = "MsgDepositValidatorRewardsPool"

§

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

§

fn full_name() -> String

§

impl Name for MsgDepositValidatorRewardsPoolResponse

§

const NAME: &'static str = "MsgDepositValidatorRewardsPoolResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgDescriptor

§

const NAME: &'static str = "MsgDescriptor"

§

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

§

fn full_name() -> String

§

impl Name for MsgEditValidator

§

const NAME: &'static str = "MsgEditValidator"

§

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

§

fn full_name() -> String

§

impl Name for MsgEditValidatorResponse

§

const NAME: &'static str = "MsgEditValidatorResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgExec

§

const NAME: &'static str = "MsgExec"

§

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

§

fn full_name() -> String

§

impl Name for MsgExecLegacyContent

§

const NAME: &'static str = "MsgExecLegacyContent"

§

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

§

fn full_name() -> String

§

impl Name for MsgExecLegacyContentResponse

§

const NAME: &'static str = "MsgExecLegacyContentResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgExecResponse

§

const NAME: &'static str = "MsgExecResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgFundCommunityPool

§

const NAME: &'static str = "MsgFundCommunityPool"

§

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

§

fn full_name() -> String

§

impl Name for MsgFundCommunityPoolResponse

§

const NAME: &'static str = "MsgFundCommunityPoolResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgGrant

§

const NAME: &'static str = "MsgGrant"

§

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

§

fn full_name() -> String

§

impl Name for MsgGrantAllowance

§

const NAME: &'static str = "MsgGrantAllowance"

§

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

§

fn full_name() -> String

§

impl Name for MsgGrantAllowanceResponse

§

const NAME: &'static str = "MsgGrantAllowanceResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgGrantResponse

§

const NAME: &'static str = "MsgGrantResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgIbcSoftwareUpgrade

§

const NAME: &'static str = "MsgIBCSoftwareUpgrade"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgIbcSoftwareUpgradeResponse

§

const NAME: &'static str = "MsgIBCSoftwareUpgradeResponse"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgMigrateContract

§

const NAME: &'static str = "MsgMigrateContract"

§

const PACKAGE: &'static str = "ibc.lightclients.wasm.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgMigrateContractResponse

§

const NAME: &'static str = "MsgMigrateContractResponse"

§

const PACKAGE: &'static str = "ibc.lightclients.wasm.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgMultiSend

§

const NAME: &'static str = "MsgMultiSend"

§

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

§

fn full_name() -> String

§

impl Name for MsgMultiSendResponse

§

const NAME: &'static str = "MsgMultiSendResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgOptIn

§

const NAME: &'static str = "MsgOptIn"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgOptInResponse

§

const NAME: &'static str = "MsgOptInResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgOptOut

§

const NAME: &'static str = "MsgOptOut"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgOptOutResponse

§

const NAME: &'static str = "MsgOptOutResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgPayPacketFee

§

const NAME: &'static str = "MsgPayPacketFee"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgPayPacketFeeAsync

§

const NAME: &'static str = "MsgPayPacketFeeAsync"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgPayPacketFeeAsyncResponse

§

const NAME: &'static str = "MsgPayPacketFeeAsyncResponse"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgPayPacketFeeResponse

§

const NAME: &'static str = "MsgPayPacketFeeResponse"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgPruneAcknowledgements

§

const NAME: &'static str = "MsgPruneAcknowledgements"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgPruneAcknowledgementsResponse

§

const NAME: &'static str = "MsgPruneAcknowledgementsResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgPruneAllowances

§

const NAME: &'static str = "MsgPruneAllowances"

§

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

§

fn full_name() -> String

§

impl Name for MsgPruneAllowancesResponse

§

const NAME: &'static str = "MsgPruneAllowancesResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgRecoverClient

§

const NAME: &'static str = "MsgRecoverClient"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgRecoverClientResponse

§

const NAME: &'static str = "MsgRecoverClientResponse"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgRecvPacket

§

const NAME: &'static str = "MsgRecvPacket"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgRecvPacketResponse

§

const NAME: &'static str = "MsgRecvPacketResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgRegisterCounterpartyPayee

§

const NAME: &'static str = "MsgRegisterCounterpartyPayee"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgRegisterCounterpartyPayeeResponse

§

const NAME: &'static str = "MsgRegisterCounterpartyPayeeResponse"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgRegisterInterchainAccount

§

const NAME: &'static str = "MsgRegisterInterchainAccount"

§

const PACKAGE: &'static str = "ibc.applications.interchain_accounts.controller.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgRegisterInterchainAccountResponse

§

const NAME: &'static str = "MsgRegisterInterchainAccountResponse"

§

const PACKAGE: &'static str = "ibc.applications.interchain_accounts.controller.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgRegisterPayee

§

const NAME: &'static str = "MsgRegisterPayee"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgRegisterPayeeResponse

§

const NAME: &'static str = "MsgRegisterPayeeResponse"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgRemoveChecksum

§

const NAME: &'static str = "MsgRemoveChecksum"

§

const PACKAGE: &'static str = "ibc.lightclients.wasm.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgRemoveChecksumResponse

§

const NAME: &'static str = "MsgRemoveChecksumResponse"

§

const PACKAGE: &'static str = "ibc.lightclients.wasm.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgRemoveConsumer

§

const NAME: &'static str = "MsgRemoveConsumer"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgRemoveConsumerResponse

§

const NAME: &'static str = "MsgRemoveConsumerResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgRevoke

§

const NAME: &'static str = "MsgRevoke"

§

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

§

fn full_name() -> String

§

impl Name for MsgRevokeAllowance

§

const NAME: &'static str = "MsgRevokeAllowance"

§

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

§

fn full_name() -> String

§

impl Name for MsgRevokeAllowanceResponse

§

const NAME: &'static str = "MsgRevokeAllowanceResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgRevokeResponse

§

const NAME: &'static str = "MsgRevokeResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgSend

§

const NAME: &'static str = "MsgSend"

§

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

§

fn full_name() -> String

§

impl Name for MsgSendResponse

§

const NAME: &'static str = "MsgSendResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgSendTx

§

const NAME: &'static str = "MsgSendTx"

§

const PACKAGE: &'static str = "ibc.applications.interchain_accounts.controller.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgSendTxResponse

§

const NAME: &'static str = "MsgSendTxResponse"

§

const PACKAGE: &'static str = "ibc.applications.interchain_accounts.controller.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgSetConsumerCommissionRate

§

const NAME: &'static str = "MsgSetConsumerCommissionRate"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgSetConsumerCommissionRateResponse

§

const NAME: &'static str = "MsgSetConsumerCommissionRateResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgSetSendEnabled

§

const NAME: &'static str = "MsgSetSendEnabled"

§

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

§

fn full_name() -> String

§

impl Name for MsgSetSendEnabledResponse

§

const NAME: &'static str = "MsgSetSendEnabledResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgSetWithdrawAddress

§

const NAME: &'static str = "MsgSetWithdrawAddress"

§

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

§

fn full_name() -> String

§

impl Name for MsgSetWithdrawAddressResponse

§

const NAME: &'static str = "MsgSetWithdrawAddressResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgSoftwareUpgrade

§

const NAME: &'static str = "MsgSoftwareUpgrade"

§

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

§

fn full_name() -> String

§

impl Name for MsgSoftwareUpgradeResponse

§

const NAME: &'static str = "MsgSoftwareUpgradeResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgStoreCode

§

const NAME: &'static str = "MsgStoreCode"

§

const PACKAGE: &'static str = "ibc.lightclients.wasm.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgStoreCodeResponse

§

const NAME: &'static str = "MsgStoreCodeResponse"

§

const PACKAGE: &'static str = "ibc.lightclients.wasm.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgSubmitConsumerDoubleVoting

§

const NAME: &'static str = "MsgSubmitConsumerDoubleVoting"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgSubmitConsumerDoubleVotingResponse

§

const NAME: &'static str = "MsgSubmitConsumerDoubleVotingResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgSubmitConsumerMisbehaviour

§

const NAME: &'static str = "MsgSubmitConsumerMisbehaviour"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgSubmitConsumerMisbehaviourResponse

§

const NAME: &'static str = "MsgSubmitConsumerMisbehaviourResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgSubmitEvidence

§

const NAME: &'static str = "MsgSubmitEvidence"

§

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

§

fn full_name() -> String

§

impl Name for MsgSubmitEvidenceResponse

§

const NAME: &'static str = "MsgSubmitEvidenceResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgSubmitMisbehaviour

§

const NAME: &'static str = "MsgSubmitMisbehaviour"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgSubmitMisbehaviourResponse

§

const NAME: &'static str = "MsgSubmitMisbehaviourResponse"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgSubmitProposal

§

const NAME: &'static str = "MsgSubmitProposal"

§

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

§

fn full_name() -> String

§

impl Name for MsgSubmitProposal

§

const NAME: &'static str = "MsgSubmitProposal"

§

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

§

fn full_name() -> String

§

impl Name for MsgSubmitProposalResponse

§

const NAME: &'static str = "MsgSubmitProposalResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgSubmitProposalResponse

§

const NAME: &'static str = "MsgSubmitProposalResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgSubmitQueryResponse

§

const NAME: &'static str = "MsgSubmitQueryResponse"

§

const PACKAGE: &'static str = "stride.interchainquery.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgSubmitQueryResponseResponse

§

const NAME: &'static str = "MsgSubmitQueryResponseResponse"

§

const PACKAGE: &'static str = "stride.interchainquery.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgTimeout

§

const NAME: &'static str = "MsgTimeout"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgTimeoutOnClose

§

const NAME: &'static str = "MsgTimeoutOnClose"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgTimeoutOnCloseResponse

§

const NAME: &'static str = "MsgTimeoutOnCloseResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgTimeoutResponse

§

const NAME: &'static str = "MsgTimeoutResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgTransfer

§

const NAME: &'static str = "MsgTransfer"

§

const PACKAGE: &'static str = "ibc.applications.transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgTransfer

§

const NAME: &'static str = "MsgTransfer"

§

const PACKAGE: &'static str = "ibc.applications.nft_transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgTransferResponse

§

const NAME: &'static str = "MsgTransferResponse"

§

const PACKAGE: &'static str = "ibc.applications.transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgTransferResponse

§

const NAME: &'static str = "MsgTransferResponse"

§

const PACKAGE: &'static str = "ibc.applications.nft_transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUndelegate

§

const NAME: &'static str = "MsgUndelegate"

§

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

§

fn full_name() -> String

§

impl Name for MsgUndelegateResponse

§

const NAME: &'static str = "MsgUndelegateResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgUnjail

§

const NAME: &'static str = "MsgUnjail"

§

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

§

fn full_name() -> String

§

impl Name for MsgUnjailResponse

§

const NAME: &'static str = "MsgUnjailResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgUpdateClient

§

const NAME: &'static str = "MsgUpdateClient"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUpdateClientResponse

§

const NAME: &'static str = "MsgUpdateClientResponse"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUpdateConsumer

§

const NAME: &'static str = "MsgUpdateConsumer"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUpdateConsumerResponse

§

const NAME: &'static str = "MsgUpdateConsumerResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUpdateParams

§

const NAME: &'static str = "MsgUpdateParams"

§

const PACKAGE: &'static str = "ibc.applications.transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUpdateParams

§

const NAME: &'static str = "MsgUpdateParams"

§

const PACKAGE: &'static str = "ibc.applications.interchain_accounts.controller.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUpdateParams

§

const NAME: &'static str = "MsgUpdateParams"

§

const PACKAGE: &'static str = "ibc.applications.interchain_accounts.host.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUpdateParams

§

const NAME: &'static str = "MsgUpdateParams"

§

const PACKAGE: &'static str = "ibc.applications.nft_transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUpdateParams

§

const NAME: &'static str = "MsgUpdateParams"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUpdateParams

§

const NAME: &'static str = "MsgUpdateParams"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUpdateParams

§

const NAME: &'static str = "MsgUpdateParams"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUpdateParams

§

const NAME: &'static str = "MsgUpdateParams"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUpdateParams

§

const NAME: &'static str = "MsgUpdateParams"

§

const PACKAGE: &'static str = "interchain_security.ccv.consumer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUpdateParams

§

const NAME: &'static str = "MsgUpdateParams"

§

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

§

fn full_name() -> String

§

impl Name for MsgUpdateParams

§

const NAME: &'static str = "MsgUpdateParams"

§

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

§

fn full_name() -> String

§

impl Name for MsgUpdateParams

§

const NAME: &'static str = "MsgUpdateParams"

§

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

§

fn full_name() -> String

§

impl Name for MsgUpdateParams

§

const NAME: &'static str = "MsgUpdateParams"

§

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

§

fn full_name() -> String

§

impl Name for MsgUpdateParams

§

const NAME: &'static str = "MsgUpdateParams"

§

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

§

fn full_name() -> String

§

impl Name for MsgUpdateParams

§

const NAME: &'static str = "MsgUpdateParams"

§

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

§

fn full_name() -> String

§

impl Name for MsgUpdateParams

§

const NAME: &'static str = "MsgUpdateParams"

§

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

§

fn full_name() -> String

§

impl Name for MsgUpdateParams

§

const NAME: &'static str = "MsgUpdateParams"

§

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

§

fn full_name() -> String

§

impl Name for MsgUpdateParamsResponse

§

const NAME: &'static str = "MsgUpdateParamsResponse"

§

const PACKAGE: &'static str = "ibc.applications.transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUpdateParamsResponse

§

const NAME: &'static str = "MsgUpdateParamsResponse"

§

const PACKAGE: &'static str = "ibc.applications.interchain_accounts.controller.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUpdateParamsResponse

§

const NAME: &'static str = "MsgUpdateParamsResponse"

§

const PACKAGE: &'static str = "ibc.applications.interchain_accounts.host.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUpdateParamsResponse

§

const NAME: &'static str = "MsgUpdateParamsResponse"

§

const PACKAGE: &'static str = "ibc.applications.nft_transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUpdateParamsResponse

§

const NAME: &'static str = "MsgUpdateParamsResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUpdateParamsResponse

§

const NAME: &'static str = "MsgUpdateParamsResponse"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUpdateParamsResponse

§

const NAME: &'static str = "MsgUpdateParamsResponse"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUpdateParamsResponse

§

const NAME: &'static str = "MsgUpdateParamsResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUpdateParamsResponse

§

const NAME: &'static str = "MsgUpdateParamsResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.consumer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUpdateParamsResponse

§

const NAME: &'static str = "MsgUpdateParamsResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgUpdateParamsResponse

§

const NAME: &'static str = "MsgUpdateParamsResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgUpdateParamsResponse

§

const NAME: &'static str = "MsgUpdateParamsResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgUpdateParamsResponse

§

const NAME: &'static str = "MsgUpdateParamsResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgUpdateParamsResponse

§

const NAME: &'static str = "MsgUpdateParamsResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgUpdateParamsResponse

§

const NAME: &'static str = "MsgUpdateParamsResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgUpdateParamsResponse

§

const NAME: &'static str = "MsgUpdateParamsResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgUpdateParamsResponse

§

const NAME: &'static str = "MsgUpdateParamsResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgUpgradeClient

§

const NAME: &'static str = "MsgUpgradeClient"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgUpgradeClientResponse

§

const NAME: &'static str = "MsgUpgradeClientResponse"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for MsgVerifyInvariant

§

const NAME: &'static str = "MsgVerifyInvariant"

§

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

§

fn full_name() -> String

§

impl Name for MsgVerifyInvariantResponse

§

const NAME: &'static str = "MsgVerifyInvariantResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgVote

§

const NAME: &'static str = "MsgVote"

§

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

§

fn full_name() -> String

§

impl Name for MsgVote

§

const NAME: &'static str = "MsgVote"

§

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

§

fn full_name() -> String

§

impl Name for MsgVoteResponse

§

const NAME: &'static str = "MsgVoteResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgVoteResponse

§

const NAME: &'static str = "MsgVoteResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgVoteWeighted

§

const NAME: &'static str = "MsgVoteWeighted"

§

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

§

fn full_name() -> String

§

impl Name for MsgVoteWeighted

§

const NAME: &'static str = "MsgVoteWeighted"

§

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

§

fn full_name() -> String

§

impl Name for MsgVoteWeightedResponse

§

const NAME: &'static str = "MsgVoteWeightedResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgVoteWeightedResponse

§

const NAME: &'static str = "MsgVoteWeightedResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgWithdrawDelegatorReward

§

const NAME: &'static str = "MsgWithdrawDelegatorReward"

§

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

§

fn full_name() -> String

§

impl Name for MsgWithdrawDelegatorRewardResponse

§

const NAME: &'static str = "MsgWithdrawDelegatorRewardResponse"

§

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

§

fn full_name() -> String

§

impl Name for MsgWithdrawValidatorCommission

§

const NAME: &'static str = "MsgWithdrawValidatorCommission"

§

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

§

fn full_name() -> String

§

impl Name for MsgWithdrawValidatorCommissionResponse

§

const NAME: &'static str = "MsgWithdrawValidatorCommissionResponse"

§

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

§

fn full_name() -> String

§

impl Name for Multi

§

const NAME: &'static str = "Multi"

§

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

§

fn full_name() -> String

§

impl Name for Multi

§

const NAME: &'static str = "Multi"

§

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

§

fn full_name() -> String

§

impl Name for MultiSignature

§

const NAME: &'static str = "MultiSignature"

§

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

§

fn full_name() -> String

§

impl Name for NextFeeDistributionEstimate

§

const NAME: &'static str = "NextFeeDistributionEstimate"

§

const PACKAGE: &'static str = "interchain_security.ccv.consumer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for NonFungibleTokenPacketData

§

const NAME: &'static str = "NonFungibleTokenPacketData"

§

const PACKAGE: &'static str = "ibc.applications.nft_transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Output

§

const NAME: &'static str = "Output"

§

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

§

fn full_name() -> String

§

impl Name for OutstandingDowntime

§

const NAME: &'static str = "OutstandingDowntime"

§

const PACKAGE: &'static str = "interchain_security.ccv.consumer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Packet

§

const NAME: &'static str = "Packet"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for PacketFee

§

const NAME: &'static str = "PacketFee"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for PacketFees

§

const NAME: &'static str = "PacketFees"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for PacketId

§

const NAME: &'static str = "PacketId"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for PacketSequence

§

const NAME: &'static str = "PacketSequence"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for PacketState

§

const NAME: &'static str = "PacketState"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for PageRequest

§

const NAME: &'static str = "PageRequest"

§

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

§

fn full_name() -> String

§

impl Name for PageResponse

§

const NAME: &'static str = "PageResponse"

§

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

§

fn full_name() -> String

§

impl Name for PairValConAddrProviderAndConsumer

§

const NAME: &'static str = "PairValConAddrProviderAndConsumer"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ParamChange

§

const NAME: &'static str = "ParamChange"

§

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

§

fn full_name() -> String

§

impl Name for ParameterChangeProposal

§

const NAME: &'static str = "ParameterChangeProposal"

§

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

§

fn full_name() -> String

§

impl Name for Params

§

const NAME: &'static str = "Params"

§

const PACKAGE: &'static str = "ibc.applications.transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Params

§

const NAME: &'static str = "Params"

§

const PACKAGE: &'static str = "ibc.applications.interchain_accounts.controller.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Params

§

const NAME: &'static str = "Params"

§

const PACKAGE: &'static str = "ibc.applications.interchain_accounts.host.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Params

§

const NAME: &'static str = "Params"

§

const PACKAGE: &'static str = "ibc.applications.nft_transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Params

§

const NAME: &'static str = "Params"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Params

§

const NAME: &'static str = "Params"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Params

§

const NAME: &'static str = "Params"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Params

§

const NAME: &'static str = "Params"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Params

§

const NAME: &'static str = "Params"

§

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

§

fn full_name() -> String

§

impl Name for Params

§

const NAME: &'static str = "Params"

§

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

§

fn full_name() -> String

§

impl Name for Params

§

const NAME: &'static str = "Params"

§

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

§

fn full_name() -> String

§

impl Name for Params

§

const NAME: &'static str = "Params"

§

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

§

fn full_name() -> String

§

impl Name for Params

§

const NAME: &'static str = "Params"

§

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

§

fn full_name() -> String

§

impl Name for Params

§

const NAME: &'static str = "Params"

§

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

§

fn full_name() -> String

§

impl Name for Params

§

const NAME: &'static str = "Params"

§

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

§

fn full_name() -> String

§

impl Name for Period

§

const NAME: &'static str = "Period"

§

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

§

fn full_name() -> String

§

impl Name for PeriodicAllowance

§

const NAME: &'static str = "PeriodicAllowance"

§

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

§

fn full_name() -> String

§

impl Name for PeriodicVestingAccount

§

const NAME: &'static str = "PeriodicVestingAccount"

§

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

§

fn full_name() -> String

§

impl Name for PermanentLockedAccount

§

const NAME: &'static str = "PermanentLockedAccount"

§

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

§

fn full_name() -> String

§

impl Name for Plan

§

const NAME: &'static str = "Plan"

§

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

§

fn full_name() -> String

§

impl Name for Pool

§

const NAME: &'static str = "Pool"

§

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

§

fn full_name() -> String

§

impl Name for PowerShapingParameters

§

const NAME: &'static str = "PowerShapingParameters"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for PrivKey

§

const NAME: &'static str = "PrivKey"

§

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

§

fn full_name() -> String

§

impl Name for PrivKey

§

const NAME: &'static str = "PrivKey"

§

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

§

fn full_name() -> String

§

impl Name for PrivKey

§

const NAME: &'static str = "PrivKey"

§

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

§

fn full_name() -> String

§

impl Name for ProofOp

§

const NAME: &'static str = "ProofOp"

§

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

§

fn full_name() -> String

§

impl Name for ProofOps

§

const NAME: &'static str = "ProofOps"

§

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

§

fn full_name() -> String

§

impl Name for Proposal

§

const NAME: &'static str = "Proposal"

§

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

§

fn full_name() -> String

§

impl Name for Proposal

§

const NAME: &'static str = "Proposal"

§

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

§

fn full_name() -> String

§

impl Name for ProviderInfo

§

const NAME: &'static str = "ProviderInfo"

§

const PACKAGE: &'static str = "interchain_security.ccv.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for PubKey

§

const NAME: &'static str = "PubKey"

§

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

§

fn full_name() -> String

§

impl Name for PubKey

§

const NAME: &'static str = "PubKey"

§

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

§

fn full_name() -> String

§

impl Name for PubKey

§

const NAME: &'static str = "PubKey"

§

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

§

fn full_name() -> String

§

impl Name for QueryAccountAddressByIdRequest

§

const NAME: &'static str = "QueryAccountAddressByIDRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryAccountAddressByIdResponse

§

const NAME: &'static str = "QueryAccountAddressByIDResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryAccountInfoRequest

§

const NAME: &'static str = "QueryAccountInfoRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryAccountInfoResponse

§

const NAME: &'static str = "QueryAccountInfoResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryAccountRequest

§

const NAME: &'static str = "QueryAccountRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryAccountResponse

§

const NAME: &'static str = "QueryAccountResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryAccountsRequest

§

const NAME: &'static str = "QueryAccountsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryAccountsResponse

§

const NAME: &'static str = "QueryAccountsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryAllBalancesRequest

§

const NAME: &'static str = "QueryAllBalancesRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryAllBalancesResponse

§

const NAME: &'static str = "QueryAllBalancesResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryAllEvidenceRequest

§

const NAME: &'static str = "QueryAllEvidenceRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryAllEvidenceResponse

§

const NAME: &'static str = "QueryAllEvidenceResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryAllPairsValConsAddrByConsumerRequest

§

const NAME: &'static str = "QueryAllPairsValConsAddrByConsumerRequest"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryAllPairsValConsAddrByConsumerResponse

§

const NAME: &'static str = "QueryAllPairsValConsAddrByConsumerResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryAllowanceRequest

§

const NAME: &'static str = "QueryAllowanceRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryAllowanceResponse

§

const NAME: &'static str = "QueryAllowanceResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryAllowancesByGranterRequest

§

const NAME: &'static str = "QueryAllowancesByGranterRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryAllowancesByGranterResponse

§

const NAME: &'static str = "QueryAllowancesByGranterResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryAllowancesRequest

§

const NAME: &'static str = "QueryAllowancesRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryAllowancesResponse

§

const NAME: &'static str = "QueryAllowancesResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryAnnualProvisionsRequest

§

const NAME: &'static str = "QueryAnnualProvisionsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryAnnualProvisionsResponse

§

const NAME: &'static str = "QueryAnnualProvisionsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryAppliedPlanRequest

§

const NAME: &'static str = "QueryAppliedPlanRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryAppliedPlanResponse

§

const NAME: &'static str = "QueryAppliedPlanResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryAuthorityRequest

§

const NAME: &'static str = "QueryAuthorityRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryAuthorityResponse

§

const NAME: &'static str = "QueryAuthorityResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryBalanceRequest

§

const NAME: &'static str = "QueryBalanceRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryBalanceResponse

§

const NAME: &'static str = "QueryBalanceResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryBlocksUntilNextEpochRequest

§

const NAME: &'static str = "QueryBlocksUntilNextEpochRequest"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryBlocksUntilNextEpochResponse

§

const NAME: &'static str = "QueryBlocksUntilNextEpochResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryChannelClientStateRequest

§

const NAME: &'static str = "QueryChannelClientStateRequest"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryChannelClientStateResponse

§

const NAME: &'static str = "QueryChannelClientStateResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryChannelConsensusStateRequest

§

const NAME: &'static str = "QueryChannelConsensusStateRequest"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryChannelConsensusStateResponse

§

const NAME: &'static str = "QueryChannelConsensusStateResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryChannelParamsRequest

§

const NAME: &'static str = "QueryChannelParamsRequest"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryChannelParamsResponse

§

const NAME: &'static str = "QueryChannelParamsResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryChannelRequest

§

const NAME: &'static str = "QueryChannelRequest"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryChannelResponse

§

const NAME: &'static str = "QueryChannelResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryChannelsRequest

§

const NAME: &'static str = "QueryChannelsRequest"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryChannelsResponse

§

const NAME: &'static str = "QueryChannelsResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryChecksumsRequest

§

const NAME: &'static str = "QueryChecksumsRequest"

§

const PACKAGE: &'static str = "ibc.lightclients.wasm.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryChecksumsResponse

§

const NAME: &'static str = "QueryChecksumsResponse"

§

const PACKAGE: &'static str = "ibc.lightclients.wasm.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryClassHashRequest

§

const NAME: &'static str = "QueryClassHashRequest"

§

const PACKAGE: &'static str = "ibc.applications.nft_transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryClassHashResponse

§

const NAME: &'static str = "QueryClassHashResponse"

§

const PACKAGE: &'static str = "ibc.applications.nft_transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryClassTraceRequest

§

const NAME: &'static str = "QueryClassTraceRequest"

§

const PACKAGE: &'static str = "ibc.applications.nft_transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryClassTraceResponse

§

const NAME: &'static str = "QueryClassTraceResponse"

§

const PACKAGE: &'static str = "ibc.applications.nft_transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryClassTracesRequest

§

const NAME: &'static str = "QueryClassTracesRequest"

§

const PACKAGE: &'static str = "ibc.applications.nft_transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryClassTracesResponse

§

const NAME: &'static str = "QueryClassTracesResponse"

§

const PACKAGE: &'static str = "ibc.applications.nft_transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryClientConnectionsRequest

§

const NAME: &'static str = "QueryClientConnectionsRequest"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryClientConnectionsResponse

§

const NAME: &'static str = "QueryClientConnectionsResponse"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryClientParamsRequest

§

const NAME: &'static str = "QueryClientParamsRequest"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryClientParamsResponse

§

const NAME: &'static str = "QueryClientParamsResponse"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryClientStateRequest

§

const NAME: &'static str = "QueryClientStateRequest"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryClientStateResponse

§

const NAME: &'static str = "QueryClientStateResponse"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryClientStatesRequest

§

const NAME: &'static str = "QueryClientStatesRequest"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryClientStatesResponse

§

const NAME: &'static str = "QueryClientStatesResponse"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryClientStatusRequest

§

const NAME: &'static str = "QueryClientStatusRequest"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryClientStatusResponse

§

const NAME: &'static str = "QueryClientStatusResponse"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryCodeRequest

§

const NAME: &'static str = "QueryCodeRequest"

§

const PACKAGE: &'static str = "ibc.lightclients.wasm.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryCodeResponse

§

const NAME: &'static str = "QueryCodeResponse"

§

const PACKAGE: &'static str = "ibc.lightclients.wasm.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryCommunityPoolRequest

§

const NAME: &'static str = "QueryCommunityPoolRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryCommunityPoolResponse

§

const NAME: &'static str = "QueryCommunityPoolResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryConnectionChannelsRequest

§

const NAME: &'static str = "QueryConnectionChannelsRequest"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConnectionChannelsResponse

§

const NAME: &'static str = "QueryConnectionChannelsResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConnectionClientStateRequest

§

const NAME: &'static str = "QueryConnectionClientStateRequest"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConnectionClientStateResponse

§

const NAME: &'static str = "QueryConnectionClientStateResponse"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConnectionConsensusStateRequest

§

const NAME: &'static str = "QueryConnectionConsensusStateRequest"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConnectionConsensusStateResponse

§

const NAME: &'static str = "QueryConnectionConsensusStateResponse"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConnectionParamsRequest

§

const NAME: &'static str = "QueryConnectionParamsRequest"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConnectionParamsResponse

§

const NAME: &'static str = "QueryConnectionParamsResponse"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConnectionRequest

§

const NAME: &'static str = "QueryConnectionRequest"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConnectionResponse

§

const NAME: &'static str = "QueryConnectionResponse"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConnectionsRequest

§

const NAME: &'static str = "QueryConnectionsRequest"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConnectionsResponse

§

const NAME: &'static str = "QueryConnectionsResponse"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConsensusStateHeightsRequest

§

const NAME: &'static str = "QueryConsensusStateHeightsRequest"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConsensusStateHeightsResponse

§

const NAME: &'static str = "QueryConsensusStateHeightsResponse"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConsensusStateRequest

§

const NAME: &'static str = "QueryConsensusStateRequest"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConsensusStateResponse

§

const NAME: &'static str = "QueryConsensusStateResponse"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConsensusStatesRequest

§

const NAME: &'static str = "QueryConsensusStatesRequest"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConsensusStatesResponse

§

const NAME: &'static str = "QueryConsensusStatesResponse"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConstitutionRequest

§

const NAME: &'static str = "QueryConstitutionRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryConstitutionResponse

§

const NAME: &'static str = "QueryConstitutionResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryConsumerChainOptedInValidatorsRequest

§

const NAME: &'static str = "QueryConsumerChainOptedInValidatorsRequest"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConsumerChainOptedInValidatorsResponse

§

const NAME: &'static str = "QueryConsumerChainOptedInValidatorsResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConsumerChainRequest

§

const NAME: &'static str = "QueryConsumerChainRequest"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConsumerChainResponse

§

const NAME: &'static str = "QueryConsumerChainResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConsumerChainsRequest

§

const NAME: &'static str = "QueryConsumerChainsRequest"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConsumerChainsResponse

§

const NAME: &'static str = "QueryConsumerChainsResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConsumerChainsValidatorHasToValidateRequest

§

const NAME: &'static str = "QueryConsumerChainsValidatorHasToValidateRequest"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConsumerChainsValidatorHasToValidateResponse

§

const NAME: &'static str = "QueryConsumerChainsValidatorHasToValidateResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConsumerGenesisRequest

§

const NAME: &'static str = "QueryConsumerGenesisRequest"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConsumerGenesisResponse

§

const NAME: &'static str = "QueryConsumerGenesisResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConsumerIdFromClientIdRequest

§

const NAME: &'static str = "QueryConsumerIdFromClientIdRequest"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConsumerIdFromClientIdResponse

§

const NAME: &'static str = "QueryConsumerIdFromClientIdResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConsumerValidatorsRequest

§

const NAME: &'static str = "QueryConsumerValidatorsRequest"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConsumerValidatorsResponse

§

const NAME: &'static str = "QueryConsumerValidatorsResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryConsumerValidatorsValidator

§

const NAME: &'static str = "QueryConsumerValidatorsValidator"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryCounterpartyPayeeRequest

§

const NAME: &'static str = "QueryCounterpartyPayeeRequest"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryCounterpartyPayeeResponse

§

const NAME: &'static str = "QueryCounterpartyPayeeResponse"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryCurrentPlanRequest

§

const NAME: &'static str = "QueryCurrentPlanRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryCurrentPlanResponse

§

const NAME: &'static str = "QueryCurrentPlanResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryDelegationRequest

§

const NAME: &'static str = "QueryDelegationRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryDelegationResponse

§

const NAME: &'static str = "QueryDelegationResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryDelegationRewardsRequest

§

const NAME: &'static str = "QueryDelegationRewardsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryDelegationRewardsResponse

§

const NAME: &'static str = "QueryDelegationRewardsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryDelegationTotalRewardsRequest

§

const NAME: &'static str = "QueryDelegationTotalRewardsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryDelegationTotalRewardsResponse

§

const NAME: &'static str = "QueryDelegationTotalRewardsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryDelegatorDelegationsRequest

§

const NAME: &'static str = "QueryDelegatorDelegationsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryDelegatorDelegationsResponse

§

const NAME: &'static str = "QueryDelegatorDelegationsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryDelegatorUnbondingDelegationsRequest

§

const NAME: &'static str = "QueryDelegatorUnbondingDelegationsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryDelegatorUnbondingDelegationsResponse

§

const NAME: &'static str = "QueryDelegatorUnbondingDelegationsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryDelegatorValidatorRequest

§

const NAME: &'static str = "QueryDelegatorValidatorRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryDelegatorValidatorResponse

§

const NAME: &'static str = "QueryDelegatorValidatorResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryDelegatorValidatorsRequest

§

const NAME: &'static str = "QueryDelegatorValidatorsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryDelegatorValidatorsRequest

§

const NAME: &'static str = "QueryDelegatorValidatorsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryDelegatorValidatorsResponse

§

const NAME: &'static str = "QueryDelegatorValidatorsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryDelegatorValidatorsResponse

§

const NAME: &'static str = "QueryDelegatorValidatorsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryDelegatorWithdrawAddressRequest

§

const NAME: &'static str = "QueryDelegatorWithdrawAddressRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryDelegatorWithdrawAddressResponse

§

const NAME: &'static str = "QueryDelegatorWithdrawAddressResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryDenomHashRequest

§

const NAME: &'static str = "QueryDenomHashRequest"

§

const PACKAGE: &'static str = "ibc.applications.transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryDenomHashResponse

§

const NAME: &'static str = "QueryDenomHashResponse"

§

const PACKAGE: &'static str = "ibc.applications.transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryDenomMetadataByQueryStringRequest

§

const NAME: &'static str = "QueryDenomMetadataByQueryStringRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryDenomMetadataByQueryStringResponse

§

const NAME: &'static str = "QueryDenomMetadataByQueryStringResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryDenomMetadataRequest

§

const NAME: &'static str = "QueryDenomMetadataRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryDenomMetadataResponse

§

const NAME: &'static str = "QueryDenomMetadataResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryDenomOwnersByQueryRequest

§

const NAME: &'static str = "QueryDenomOwnersByQueryRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryDenomOwnersByQueryResponse

§

const NAME: &'static str = "QueryDenomOwnersByQueryResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryDenomOwnersRequest

§

const NAME: &'static str = "QueryDenomOwnersRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryDenomOwnersResponse

§

const NAME: &'static str = "QueryDenomOwnersResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryDenomTraceRequest

§

const NAME: &'static str = "QueryDenomTraceRequest"

§

const PACKAGE: &'static str = "ibc.applications.transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryDenomTraceResponse

§

const NAME: &'static str = "QueryDenomTraceResponse"

§

const PACKAGE: &'static str = "ibc.applications.transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryDenomTracesRequest

§

const NAME: &'static str = "QueryDenomTracesRequest"

§

const PACKAGE: &'static str = "ibc.applications.transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryDenomTracesResponse

§

const NAME: &'static str = "QueryDenomTracesResponse"

§

const PACKAGE: &'static str = "ibc.applications.transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryDenomsMetadataRequest

§

const NAME: &'static str = "QueryDenomsMetadataRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryDenomsMetadataResponse

§

const NAME: &'static str = "QueryDenomsMetadataResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryDepositRequest

§

const NAME: &'static str = "QueryDepositRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryDepositRequest

§

const NAME: &'static str = "QueryDepositRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryDepositResponse

§

const NAME: &'static str = "QueryDepositResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryDepositResponse

§

const NAME: &'static str = "QueryDepositResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryDepositsRequest

§

const NAME: &'static str = "QueryDepositsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryDepositsRequest

§

const NAME: &'static str = "QueryDepositsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryDepositsResponse

§

const NAME: &'static str = "QueryDepositsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryDepositsResponse

§

const NAME: &'static str = "QueryDepositsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryEscrowAddressRequest

§

const NAME: &'static str = "QueryEscrowAddressRequest"

§

const PACKAGE: &'static str = "ibc.applications.transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryEscrowAddressRequest

§

const NAME: &'static str = "QueryEscrowAddressRequest"

§

const PACKAGE: &'static str = "ibc.applications.nft_transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryEscrowAddressResponse

§

const NAME: &'static str = "QueryEscrowAddressResponse"

§

const PACKAGE: &'static str = "ibc.applications.transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryEscrowAddressResponse

§

const NAME: &'static str = "QueryEscrowAddressResponse"

§

const PACKAGE: &'static str = "ibc.applications.nft_transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryEvidenceRequest

§

const NAME: &'static str = "QueryEvidenceRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryEvidenceResponse

§

const NAME: &'static str = "QueryEvidenceResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryFeeEnabledChannelRequest

§

const NAME: &'static str = "QueryFeeEnabledChannelRequest"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryFeeEnabledChannelResponse

§

const NAME: &'static str = "QueryFeeEnabledChannelResponse"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryFeeEnabledChannelsRequest

§

const NAME: &'static str = "QueryFeeEnabledChannelsRequest"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryFeeEnabledChannelsResponse

§

const NAME: &'static str = "QueryFeeEnabledChannelsResponse"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryGranteeGrantsRequest

§

const NAME: &'static str = "QueryGranteeGrantsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryGranteeGrantsResponse

§

const NAME: &'static str = "QueryGranteeGrantsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryGranterGrantsRequest

§

const NAME: &'static str = "QueryGranterGrantsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryGranterGrantsResponse

§

const NAME: &'static str = "QueryGranterGrantsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryGrantsRequest

§

const NAME: &'static str = "QueryGrantsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryGrantsResponse

§

const NAME: &'static str = "QueryGrantsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryHistoricalInfoRequest

§

const NAME: &'static str = "QueryHistoricalInfoRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryHistoricalInfoResponse

§

const NAME: &'static str = "QueryHistoricalInfoResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryIncentivizedPacketRequest

§

const NAME: &'static str = "QueryIncentivizedPacketRequest"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryIncentivizedPacketResponse

§

const NAME: &'static str = "QueryIncentivizedPacketResponse"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryIncentivizedPacketsForChannelRequest

§

const NAME: &'static str = "QueryIncentivizedPacketsForChannelRequest"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryIncentivizedPacketsForChannelResponse

§

const NAME: &'static str = "QueryIncentivizedPacketsForChannelResponse"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryIncentivizedPacketsRequest

§

const NAME: &'static str = "QueryIncentivizedPacketsRequest"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryIncentivizedPacketsResponse

§

const NAME: &'static str = "QueryIncentivizedPacketsResponse"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryInflationRequest

§

const NAME: &'static str = "QueryInflationRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryInflationResponse

§

const NAME: &'static str = "QueryInflationResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryInterchainAccountRequest

§

const NAME: &'static str = "QueryInterchainAccountRequest"

§

const PACKAGE: &'static str = "ibc.applications.interchain_accounts.controller.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryInterchainAccountResponse

§

const NAME: &'static str = "QueryInterchainAccountResponse"

§

const PACKAGE: &'static str = "ibc.applications.interchain_accounts.controller.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryMethodDescriptor

§

const NAME: &'static str = "QueryMethodDescriptor"

§

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

§

fn full_name() -> String

§

impl Name for QueryModuleAccountByNameRequest

§

const NAME: &'static str = "QueryModuleAccountByNameRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryModuleAccountByNameResponse

§

const NAME: &'static str = "QueryModuleAccountByNameResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryModuleAccountsRequest

§

const NAME: &'static str = "QueryModuleAccountsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryModuleAccountsResponse

§

const NAME: &'static str = "QueryModuleAccountsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryModuleVersionsRequest

§

const NAME: &'static str = "QueryModuleVersionsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryModuleVersionsResponse

§

const NAME: &'static str = "QueryModuleVersionsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryNextFeeDistributionEstimateRequest

§

const NAME: &'static str = "QueryNextFeeDistributionEstimateRequest"

§

const PACKAGE: &'static str = "interchain_security.ccv.consumer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryNextFeeDistributionEstimateResponse

§

const NAME: &'static str = "QueryNextFeeDistributionEstimateResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.consumer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryNextSequenceReceiveRequest

§

const NAME: &'static str = "QueryNextSequenceReceiveRequest"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryNextSequenceReceiveResponse

§

const NAME: &'static str = "QueryNextSequenceReceiveResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryNextSequenceSendRequest

§

const NAME: &'static str = "QueryNextSequenceSendRequest"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryNextSequenceSendResponse

§

const NAME: &'static str = "QueryNextSequenceSendResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryPacketAcknowledgementRequest

§

const NAME: &'static str = "QueryPacketAcknowledgementRequest"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryPacketAcknowledgementResponse

§

const NAME: &'static str = "QueryPacketAcknowledgementResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryPacketAcknowledgementsRequest

§

const NAME: &'static str = "QueryPacketAcknowledgementsRequest"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryPacketAcknowledgementsResponse

§

const NAME: &'static str = "QueryPacketAcknowledgementsResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryPacketCommitmentRequest

§

const NAME: &'static str = "QueryPacketCommitmentRequest"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryPacketCommitmentResponse

§

const NAME: &'static str = "QueryPacketCommitmentResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryPacketCommitmentsRequest

§

const NAME: &'static str = "QueryPacketCommitmentsRequest"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryPacketCommitmentsResponse

§

const NAME: &'static str = "QueryPacketCommitmentsResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryPacketReceiptRequest

§

const NAME: &'static str = "QueryPacketReceiptRequest"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryPacketReceiptResponse

§

const NAME: &'static str = "QueryPacketReceiptResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryParamsRequest

§

const NAME: &'static str = "QueryParamsRequest"

§

const PACKAGE: &'static str = "ibc.applications.transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryParamsRequest

§

const NAME: &'static str = "QueryParamsRequest"

§

const PACKAGE: &'static str = "ibc.applications.interchain_accounts.controller.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryParamsRequest

§

const NAME: &'static str = "QueryParamsRequest"

§

const PACKAGE: &'static str = "ibc.applications.interchain_accounts.host.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryParamsRequest

§

const NAME: &'static str = "QueryParamsRequest"

§

const PACKAGE: &'static str = "ibc.applications.nft_transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryParamsRequest

§

const NAME: &'static str = "QueryParamsRequest"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryParamsRequest

§

const NAME: &'static str = "QueryParamsRequest"

§

const PACKAGE: &'static str = "interchain_security.ccv.consumer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryParamsRequest

§

const NAME: &'static str = "QueryParamsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryParamsRequest

§

const NAME: &'static str = "QueryParamsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryParamsRequest

§

const NAME: &'static str = "QueryParamsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryParamsRequest

§

const NAME: &'static str = "QueryParamsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryParamsRequest

§

const NAME: &'static str = "QueryParamsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryParamsRequest

§

const NAME: &'static str = "QueryParamsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryParamsRequest

§

const NAME: &'static str = "QueryParamsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryParamsRequest

§

const NAME: &'static str = "QueryParamsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryParamsRequest

§

const NAME: &'static str = "QueryParamsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryParamsResponse

§

const NAME: &'static str = "QueryParamsResponse"

§

const PACKAGE: &'static str = "ibc.applications.transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryParamsResponse

§

const NAME: &'static str = "QueryParamsResponse"

§

const PACKAGE: &'static str = "ibc.applications.interchain_accounts.controller.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryParamsResponse

§

const NAME: &'static str = "QueryParamsResponse"

§

const PACKAGE: &'static str = "ibc.applications.interchain_accounts.host.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryParamsResponse

§

const NAME: &'static str = "QueryParamsResponse"

§

const PACKAGE: &'static str = "ibc.applications.nft_transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryParamsResponse

§

const NAME: &'static str = "QueryParamsResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryParamsResponse

§

const NAME: &'static str = "QueryParamsResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.consumer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryParamsResponse

§

const NAME: &'static str = "QueryParamsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryParamsResponse

§

const NAME: &'static str = "QueryParamsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryParamsResponse

§

const NAME: &'static str = "QueryParamsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryParamsResponse

§

const NAME: &'static str = "QueryParamsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryParamsResponse

§

const NAME: &'static str = "QueryParamsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryParamsResponse

§

const NAME: &'static str = "QueryParamsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryParamsResponse

§

const NAME: &'static str = "QueryParamsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryParamsResponse

§

const NAME: &'static str = "QueryParamsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryParamsResponse

§

const NAME: &'static str = "QueryParamsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryPayeeRequest

§

const NAME: &'static str = "QueryPayeeRequest"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryPayeeResponse

§

const NAME: &'static str = "QueryPayeeResponse"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryPoolRequest

§

const NAME: &'static str = "QueryPoolRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryPoolResponse

§

const NAME: &'static str = "QueryPoolResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryProposalRequest

§

const NAME: &'static str = "QueryProposalRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryProposalRequest

§

const NAME: &'static str = "QueryProposalRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryProposalResponse

§

const NAME: &'static str = "QueryProposalResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryProposalResponse

§

const NAME: &'static str = "QueryProposalResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryProposalsRequest

§

const NAME: &'static str = "QueryProposalsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryProposalsRequest

§

const NAME: &'static str = "QueryProposalsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryProposalsResponse

§

const NAME: &'static str = "QueryProposalsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryProposalsResponse

§

const NAME: &'static str = "QueryProposalsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryProviderInfoRequest

§

const NAME: &'static str = "QueryProviderInfoRequest"

§

const PACKAGE: &'static str = "interchain_security.ccv.consumer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryProviderInfoResponse

§

const NAME: &'static str = "QueryProviderInfoResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.consumer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryRedelegationsRequest

§

const NAME: &'static str = "QueryRedelegationsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryRedelegationsResponse

§

const NAME: &'static str = "QueryRedelegationsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryRegisteredConsumerRewardDenomsRequest

§

const NAME: &'static str = "QueryRegisteredConsumerRewardDenomsRequest"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryRegisteredConsumerRewardDenomsResponse

§

const NAME: &'static str = "QueryRegisteredConsumerRewardDenomsResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QuerySendEnabledRequest

§

const NAME: &'static str = "QuerySendEnabledRequest"

§

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

§

fn full_name() -> String

§

impl Name for QuerySendEnabledResponse

§

const NAME: &'static str = "QuerySendEnabledResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryServiceDescriptor

§

const NAME: &'static str = "QueryServiceDescriptor"

§

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

§

fn full_name() -> String

§

impl Name for QueryServicesDescriptor

§

const NAME: &'static str = "QueryServicesDescriptor"

§

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

§

fn full_name() -> String

§

impl Name for QuerySigningInfoRequest

§

const NAME: &'static str = "QuerySigningInfoRequest"

§

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

§

fn full_name() -> String

§

impl Name for QuerySigningInfoResponse

§

const NAME: &'static str = "QuerySigningInfoResponse"

§

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

§

fn full_name() -> String

§

impl Name for QuerySigningInfosRequest

§

const NAME: &'static str = "QuerySigningInfosRequest"

§

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

§

fn full_name() -> String

§

impl Name for QuerySigningInfosResponse

§

const NAME: &'static str = "QuerySigningInfosResponse"

§

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

§

fn full_name() -> String

§

impl Name for QuerySpendableBalanceByDenomRequest

§

const NAME: &'static str = "QuerySpendableBalanceByDenomRequest"

§

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

§

fn full_name() -> String

§

impl Name for QuerySpendableBalanceByDenomResponse

§

const NAME: &'static str = "QuerySpendableBalanceByDenomResponse"

§

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

§

fn full_name() -> String

§

impl Name for QuerySpendableBalancesRequest

§

const NAME: &'static str = "QuerySpendableBalancesRequest"

§

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

§

fn full_name() -> String

§

impl Name for QuerySpendableBalancesResponse

§

const NAME: &'static str = "QuerySpendableBalancesResponse"

§

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

§

fn full_name() -> String

§

impl Name for QuerySubspacesRequest

§

const NAME: &'static str = "QuerySubspacesRequest"

§

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

§

fn full_name() -> String

§

impl Name for QuerySubspacesResponse

§

const NAME: &'static str = "QuerySubspacesResponse"

§

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

§

fn full_name() -> String

§

impl Name for QuerySupplyOfRequest

§

const NAME: &'static str = "QuerySupplyOfRequest"

§

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

§

fn full_name() -> String

§

impl Name for QuerySupplyOfResponse

§

const NAME: &'static str = "QuerySupplyOfResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryTallyResultRequest

§

const NAME: &'static str = "QueryTallyResultRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryTallyResultRequest

§

const NAME: &'static str = "QueryTallyResultRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryTallyResultResponse

§

const NAME: &'static str = "QueryTallyResultResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryTallyResultResponse

§

const NAME: &'static str = "QueryTallyResultResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryThrottleStateRequest

§

const NAME: &'static str = "QueryThrottleStateRequest"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryThrottleStateRequest

§

const NAME: &'static str = "QueryThrottleStateRequest"

§

const PACKAGE: &'static str = "interchain_security.ccv.consumer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryThrottleStateResponse

§

const NAME: &'static str = "QueryThrottleStateResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryThrottleStateResponse

§

const NAME: &'static str = "QueryThrottleStateResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.consumer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryTotalAckFeesRequest

§

const NAME: &'static str = "QueryTotalAckFeesRequest"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryTotalAckFeesResponse

§

const NAME: &'static str = "QueryTotalAckFeesResponse"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryTotalEscrowForDenomRequest

§

const NAME: &'static str = "QueryTotalEscrowForDenomRequest"

§

const PACKAGE: &'static str = "ibc.applications.transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryTotalEscrowForDenomResponse

§

const NAME: &'static str = "QueryTotalEscrowForDenomResponse"

§

const PACKAGE: &'static str = "ibc.applications.transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryTotalRecvFeesRequest

§

const NAME: &'static str = "QueryTotalRecvFeesRequest"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryTotalRecvFeesResponse

§

const NAME: &'static str = "QueryTotalRecvFeesResponse"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryTotalSupplyRequest

§

const NAME: &'static str = "QueryTotalSupplyRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryTotalSupplyResponse

§

const NAME: &'static str = "QueryTotalSupplyResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryTotalTimeoutFeesRequest

§

const NAME: &'static str = "QueryTotalTimeoutFeesRequest"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryTotalTimeoutFeesResponse

§

const NAME: &'static str = "QueryTotalTimeoutFeesResponse"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryUnbondingDelegationRequest

§

const NAME: &'static str = "QueryUnbondingDelegationRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryUnbondingDelegationResponse

§

const NAME: &'static str = "QueryUnbondingDelegationResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryUnreceivedAcksRequest

§

const NAME: &'static str = "QueryUnreceivedAcksRequest"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryUnreceivedAcksResponse

§

const NAME: &'static str = "QueryUnreceivedAcksResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryUnreceivedPacketsRequest

§

const NAME: &'static str = "QueryUnreceivedPacketsRequest"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryUnreceivedPacketsResponse

§

const NAME: &'static str = "QueryUnreceivedPacketsResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryUpgradeErrorRequest

§

const NAME: &'static str = "QueryUpgradeErrorRequest"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryUpgradeErrorResponse

§

const NAME: &'static str = "QueryUpgradeErrorResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryUpgradeRequest

§

const NAME: &'static str = "QueryUpgradeRequest"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryUpgradeResponse

§

const NAME: &'static str = "QueryUpgradeResponse"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryUpgradedClientStateRequest

§

const NAME: &'static str = "QueryUpgradedClientStateRequest"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryUpgradedClientStateResponse

§

const NAME: &'static str = "QueryUpgradedClientStateResponse"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryUpgradedConsensusStateRequest

§

const NAME: &'static str = "QueryUpgradedConsensusStateRequest"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryUpgradedConsensusStateRequest

§

const NAME: &'static str = "QueryUpgradedConsensusStateRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryUpgradedConsensusStateResponse

§

const NAME: &'static str = "QueryUpgradedConsensusStateResponse"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryUpgradedConsensusStateResponse

§

const NAME: &'static str = "QueryUpgradedConsensusStateResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryValidatorCommissionRequest

§

const NAME: &'static str = "QueryValidatorCommissionRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryValidatorCommissionResponse

§

const NAME: &'static str = "QueryValidatorCommissionResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryValidatorConsumerAddrRequest

§

const NAME: &'static str = "QueryValidatorConsumerAddrRequest"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryValidatorConsumerAddrResponse

§

const NAME: &'static str = "QueryValidatorConsumerAddrResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryValidatorConsumerCommissionRateRequest

§

const NAME: &'static str = "QueryValidatorConsumerCommissionRateRequest"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryValidatorConsumerCommissionRateResponse

§

const NAME: &'static str = "QueryValidatorConsumerCommissionRateResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryValidatorDelegationsRequest

§

const NAME: &'static str = "QueryValidatorDelegationsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryValidatorDelegationsResponse

§

const NAME: &'static str = "QueryValidatorDelegationsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryValidatorDistributionInfoRequest

§

const NAME: &'static str = "QueryValidatorDistributionInfoRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryValidatorDistributionInfoResponse

§

const NAME: &'static str = "QueryValidatorDistributionInfoResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryValidatorOutstandingRewardsRequest

§

const NAME: &'static str = "QueryValidatorOutstandingRewardsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryValidatorOutstandingRewardsResponse

§

const NAME: &'static str = "QueryValidatorOutstandingRewardsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryValidatorProviderAddrRequest

§

const NAME: &'static str = "QueryValidatorProviderAddrRequest"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryValidatorProviderAddrResponse

§

const NAME: &'static str = "QueryValidatorProviderAddrResponse"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for QueryValidatorRequest

§

const NAME: &'static str = "QueryValidatorRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryValidatorResponse

§

const NAME: &'static str = "QueryValidatorResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryValidatorSlashesRequest

§

const NAME: &'static str = "QueryValidatorSlashesRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryValidatorSlashesResponse

§

const NAME: &'static str = "QueryValidatorSlashesResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryValidatorUnbondingDelegationsRequest

§

const NAME: &'static str = "QueryValidatorUnbondingDelegationsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryValidatorUnbondingDelegationsResponse

§

const NAME: &'static str = "QueryValidatorUnbondingDelegationsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryValidatorsRequest

§

const NAME: &'static str = "QueryValidatorsRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryValidatorsResponse

§

const NAME: &'static str = "QueryValidatorsResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryVoteRequest

§

const NAME: &'static str = "QueryVoteRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryVoteRequest

§

const NAME: &'static str = "QueryVoteRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryVoteResponse

§

const NAME: &'static str = "QueryVoteResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryVoteResponse

§

const NAME: &'static str = "QueryVoteResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryVotesRequest

§

const NAME: &'static str = "QueryVotesRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryVotesRequest

§

const NAME: &'static str = "QueryVotesRequest"

§

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

§

fn full_name() -> String

§

impl Name for QueryVotesResponse

§

const NAME: &'static str = "QueryVotesResponse"

§

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

§

fn full_name() -> String

§

impl Name for QueryVotesResponse

§

const NAME: &'static str = "QueryVotesResponse"

§

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

§

fn full_name() -> String

§

impl Name for Redelegation

§

const NAME: &'static str = "Redelegation"

§

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

§

fn full_name() -> String

§

impl Name for RedelegationEntry

§

const NAME: &'static str = "RedelegationEntry"

§

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

§

fn full_name() -> String

§

impl Name for RedelegationEntryResponse

§

const NAME: &'static str = "RedelegationEntryResponse"

§

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

§

fn full_name() -> String

§

impl Name for RedelegationResponse

§

const NAME: &'static str = "RedelegationResponse"

§

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

§

fn full_name() -> String

§

impl Name for RegisteredCounterpartyPayee

§

const NAME: &'static str = "RegisteredCounterpartyPayee"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for RegisteredPayee

§

const NAME: &'static str = "RegisteredPayee"

§

const PACKAGE: &'static str = "ibc.applications.fee.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Result

§

const NAME: &'static str = "Result"

§

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

§

fn full_name() -> String

§

impl Name for SearchBlocksResult

§

const NAME: &'static str = "SearchBlocksResult"

§

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

§

fn full_name() -> String

§

impl Name for SearchTxsResult

§

const NAME: &'static str = "SearchTxsResult"

§

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

§

fn full_name() -> String

§

impl Name for SendAuthorization

§

const NAME: &'static str = "SendAuthorization"

§

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

§

fn full_name() -> String

§

impl Name for SendEnabled

§

const NAME: &'static str = "SendEnabled"

§

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

§

fn full_name() -> String

§

impl Name for SignBytes

§

const NAME: &'static str = "SignBytes"

§

const PACKAGE: &'static str = "ibc.lightclients.solomachine.v3"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for SignDoc

§

const NAME: &'static str = "SignDoc"

§

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

§

fn full_name() -> String

§

impl Name for SignDocDirectAux

§

const NAME: &'static str = "SignDocDirectAux"

§

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

§

fn full_name() -> String

§

impl Name for SignatureAndData

§

const NAME: &'static str = "SignatureAndData"

§

const PACKAGE: &'static str = "ibc.lightclients.solomachine.v3"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for SignatureDescriptor

§

const NAME: &'static str = "SignatureDescriptor"

§

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

§

fn full_name() -> String

§

impl Name for SignatureDescriptors

§

const NAME: &'static str = "SignatureDescriptors"

§

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

§

fn full_name() -> String

§

impl Name for SignerInfo

§

const NAME: &'static str = "SignerInfo"

§

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

§

fn full_name() -> String

§

impl Name for SigningInfo

§

const NAME: &'static str = "SigningInfo"

§

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

§

fn full_name() -> String

§

impl Name for SigningModeDescriptor

§

const NAME: &'static str = "SigningModeDescriptor"

§

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

§

fn full_name() -> String

§

impl Name for SimulateRequest

§

const NAME: &'static str = "SimulateRequest"

§

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

§

fn full_name() -> String

§

impl Name for SimulateResponse

§

const NAME: &'static str = "SimulateResponse"

§

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

§

fn full_name() -> String

§

impl Name for SimulationResponse

§

const NAME: &'static str = "SimulationResponse"

§

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

§

fn full_name() -> String

§

impl Name for Single

§

const NAME: &'static str = "Single"

§

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

§

fn full_name() -> String

§

impl Name for Single

§

const NAME: &'static str = "Single"

§

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

§

fn full_name() -> String

§

impl Name for SlashAcks

§

const NAME: &'static str = "SlashAcks"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for SlashPacketData

§

const NAME: &'static str = "SlashPacketData"

§

const PACKAGE: &'static str = "interchain_security.ccv.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for SlashPacketDataV1

§

const NAME: &'static str = "SlashPacketDataV1"

§

const PACKAGE: &'static str = "interchain_security.ccv.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for SlashRecord

§

const NAME: &'static str = "SlashRecord"

§

const PACKAGE: &'static str = "interchain_security.ccv.consumer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for SoftwareUpgradeProposal

§

const NAME: &'static str = "SoftwareUpgradeProposal"

§

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

§

fn full_name() -> String

§

impl Name for StakeAuthorization

§

const NAME: &'static str = "StakeAuthorization"

§

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

§

fn full_name() -> String

§

impl Name for StatusRequest

§

const NAME: &'static str = "StatusRequest"

§

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

§

fn full_name() -> String

§

impl Name for StatusResponse

§

const NAME: &'static str = "StatusResponse"

§

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

§

fn full_name() -> String

§

impl Name for StringEvent

§

const NAME: &'static str = "StringEvent"

§

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

§

fn full_name() -> String

§

impl Name for Subspace

§

const NAME: &'static str = "Subspace"

§

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

§

fn full_name() -> String

§

impl Name for Supply

§

const NAME: &'static str = "Supply"

§

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

§

fn full_name() -> String

§

impl Name for TallyParams

§

const NAME: &'static str = "TallyParams"

§

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

§

fn full_name() -> String

§

impl Name for TallyParams

§

const NAME: &'static str = "TallyParams"

§

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

§

fn full_name() -> String

§

impl Name for TallyResult

§

const NAME: &'static str = "TallyResult"

§

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

§

fn full_name() -> String

§

impl Name for TallyResult

§

const NAME: &'static str = "TallyResult"

§

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

§

fn full_name() -> String

§

impl Name for TextProposal

§

const NAME: &'static str = "TextProposal"

§

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

§

fn full_name() -> String

§

impl Name for Timeout

§

const NAME: &'static str = "Timeout"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Timestamp

§

const PACKAGE: &'static str = PACKAGE

§

const NAME: &'static str = "Timestamp"

§

fn type_url() -> String

§

impl Name for TimestampedSignatureData

§

const NAME: &'static str = "TimestampedSignatureData"

§

const PACKAGE: &'static str = "ibc.lightclients.solomachine.v3"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Tip

§

const NAME: &'static str = "Tip"

§

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

§

fn full_name() -> String

§

impl Name for TransferAuthorization

§

const NAME: &'static str = "TransferAuthorization"

§

const PACKAGE: &'static str = "ibc.applications.transfer.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Tx

§

const NAME: &'static str = "Tx"

§

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

§

fn full_name() -> String

§

impl Name for TxBody

§

const NAME: &'static str = "TxBody"

§

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

§

fn full_name() -> String

§

impl Name for TxDecodeAminoRequest

§

const NAME: &'static str = "TxDecodeAminoRequest"

§

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

§

fn full_name() -> String

§

impl Name for TxDecodeAminoResponse

§

const NAME: &'static str = "TxDecodeAminoResponse"

§

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

§

fn full_name() -> String

§

impl Name for TxDecodeRequest

§

const NAME: &'static str = "TxDecodeRequest"

§

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

§

fn full_name() -> String

§

impl Name for TxDecodeResponse

§

const NAME: &'static str = "TxDecodeResponse"

§

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

§

fn full_name() -> String

§

impl Name for TxDescriptor

§

const NAME: &'static str = "TxDescriptor"

§

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

§

fn full_name() -> String

§

impl Name for TxEncodeAminoRequest

§

const NAME: &'static str = "TxEncodeAminoRequest"

§

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

§

fn full_name() -> String

§

impl Name for TxEncodeAminoResponse

§

const NAME: &'static str = "TxEncodeAminoResponse"

§

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

§

fn full_name() -> String

§

impl Name for TxEncodeRequest

§

const NAME: &'static str = "TxEncodeRequest"

§

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

§

fn full_name() -> String

§

impl Name for TxEncodeResponse

§

const NAME: &'static str = "TxEncodeResponse"

§

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

§

fn full_name() -> String

§

impl Name for TxMsgData

§

const NAME: &'static str = "TxMsgData"

§

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

§

fn full_name() -> String

§

impl Name for TxRaw

§

const NAME: &'static str = "TxRaw"

§

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

§

fn full_name() -> String

§

impl Name for TxResponse

§

const NAME: &'static str = "TxResponse"

§

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

§

fn full_name() -> String

§

impl Name for UnbondingDelegation

§

const NAME: &'static str = "UnbondingDelegation"

§

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

§

fn full_name() -> String

§

impl Name for UnbondingDelegationEntry

§

const NAME: &'static str = "UnbondingDelegationEntry"

§

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

§

fn full_name() -> String

§

impl Name for Upgrade

§

const NAME: &'static str = "Upgrade"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for UpgradeFields

§

const NAME: &'static str = "UpgradeFields"

§

const PACKAGE: &'static str = "ibc.core.channel.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for UpgradeProposal

§

const NAME: &'static str = "UpgradeProposal"

§

const PACKAGE: &'static str = "ibc.core.client.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ValAddresses

§

const NAME: &'static str = "ValAddresses"

§

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

§

fn full_name() -> String

§

impl Name for Validator

§

const NAME: &'static str = "Validator"

§

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

§

fn full_name() -> String

§

impl Name for Validator

§

const NAME: &'static str = "Validator"

§

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

§

fn full_name() -> String

§

impl Name for ValidatorAccumulatedCommission

§

const NAME: &'static str = "ValidatorAccumulatedCommission"

§

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

§

fn full_name() -> String

§

impl Name for ValidatorAccumulatedCommissionRecord

§

const NAME: &'static str = "ValidatorAccumulatedCommissionRecord"

§

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

§

fn full_name() -> String

§

impl Name for ValidatorByConsumerAddr

§

const NAME: &'static str = "ValidatorByConsumerAddr"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ValidatorConsumerPubKey

§

const NAME: &'static str = "ValidatorConsumerPubKey"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ValidatorCurrentRewards

§

const NAME: &'static str = "ValidatorCurrentRewards"

§

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

§

fn full_name() -> String

§

impl Name for ValidatorCurrentRewardsRecord

§

const NAME: &'static str = "ValidatorCurrentRewardsRecord"

§

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

§

fn full_name() -> String

§

impl Name for ValidatorHistoricalRewards

§

const NAME: &'static str = "ValidatorHistoricalRewards"

§

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

§

fn full_name() -> String

§

impl Name for ValidatorHistoricalRewardsRecord

§

const NAME: &'static str = "ValidatorHistoricalRewardsRecord"

§

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

§

fn full_name() -> String

§

impl Name for ValidatorMissedBlocks

§

const NAME: &'static str = "ValidatorMissedBlocks"

§

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

§

fn full_name() -> String

§

impl Name for ValidatorOutstandingRewards

§

const NAME: &'static str = "ValidatorOutstandingRewards"

§

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

§

fn full_name() -> String

§

impl Name for ValidatorOutstandingRewardsRecord

§

const NAME: &'static str = "ValidatorOutstandingRewardsRecord"

§

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

§

fn full_name() -> String

§

impl Name for ValidatorSetChangePacketData

§

const NAME: &'static str = "ValidatorSetChangePacketData"

§

const PACKAGE: &'static str = "interchain_security.ccv.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ValidatorSetChangePackets

§

const NAME: &'static str = "ValidatorSetChangePackets"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for ValidatorSigningInfo

§

const NAME: &'static str = "ValidatorSigningInfo"

§

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

§

fn full_name() -> String

§

impl Name for ValidatorSlashEvent

§

const NAME: &'static str = "ValidatorSlashEvent"

§

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

§

fn full_name() -> String

§

impl Name for ValidatorSlashEventRecord

§

const NAME: &'static str = "ValidatorSlashEventRecord"

§

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

§

fn full_name() -> String

§

impl Name for ValidatorSlashEvents

§

const NAME: &'static str = "ValidatorSlashEvents"

§

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

§

fn full_name() -> String

§

impl Name for ValidatorUpdates

§

const NAME: &'static str = "ValidatorUpdates"

§

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

§

fn full_name() -> String

§

impl Name for Validators

§

const NAME: &'static str = "Validators"

§

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

§

fn full_name() -> String

§

impl Name for ValsetUpdateIdToHeight

§

const NAME: &'static str = "ValsetUpdateIdToHeight"

§

const PACKAGE: &'static str = "interchain_security.ccv.provider.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for Version

§

const NAME: &'static str = "Version"

§

const PACKAGE: &'static str = "ibc.core.connection.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for VersionInfo

§

const NAME: &'static str = "VersionInfo"

§

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

§

fn full_name() -> String

§

impl Name for Vote

§

const NAME: &'static str = "Vote"

§

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

§

fn full_name() -> String

§

impl Name for Vote

§

const NAME: &'static str = "Vote"

§

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

§

fn full_name() -> String

§

impl Name for VotingParams

§

const NAME: &'static str = "VotingParams"

§

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

§

fn full_name() -> String

§

impl Name for VotingParams

§

const NAME: &'static str = "VotingParams"

§

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

§

fn full_name() -> String

§

impl Name for VscMaturedPacketData

§

const NAME: &'static str = "VSCMaturedPacketData"

§

const PACKAGE: &'static str = "interchain_security.ccv.v1"

§

fn full_name() -> String

§

fn type_url() -> String

§

impl Name for WeightedVoteOption

§

const NAME: &'static str = "WeightedVoteOption"

§

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

§

fn full_name() -> String

§

impl Name for WeightedVoteOption

§

const NAME: &'static str = "WeightedVoteOption"

§

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

§

fn full_name() -> String

Implementors§

Source§

impl Name for penumbra_sdk_proto::cosmos::auth::v1beta1::BaseAccount

Source§

const NAME: &'static str = "BaseAccount"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::auth::v1beta1::ModuleAccount

Source§

const NAME: &'static str = "ModuleAccount"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::auth::v1beta1::ModuleCredential

Source§

const NAME: &'static str = "ModuleCredential"

Source§

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

Source§

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

Source§

const NAME: &'static str = "Params"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::DenomOwner

Source§

const NAME: &'static str = "DenomOwner"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::DenomUnit

Source§

const NAME: &'static str = "DenomUnit"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::Input

Source§

const NAME: &'static str = "Input"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::Metadata

Source§

const NAME: &'static str = "Metadata"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::Output

Source§

const NAME: &'static str = "Output"

Source§

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

Source§

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

Source§

const NAME: &'static str = "Params"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::QueryAllBalancesRequest

Source§

const NAME: &'static str = "QueryAllBalancesRequest"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::QueryAllBalancesResponse

Source§

const NAME: &'static str = "QueryAllBalancesResponse"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::QueryBalanceRequest

Source§

const NAME: &'static str = "QueryBalanceRequest"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::QueryBalanceResponse

Source§

const NAME: &'static str = "QueryBalanceResponse"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::QueryDenomMetadataRequest

Source§

const NAME: &'static str = "QueryDenomMetadataRequest"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::QueryDenomMetadataResponse

Source§

const NAME: &'static str = "QueryDenomMetadataResponse"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::QueryDenomOwnersRequest

Source§

const NAME: &'static str = "QueryDenomOwnersRequest"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::QueryDenomOwnersResponse

Source§

const NAME: &'static str = "QueryDenomOwnersResponse"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::QueryDenomsMetadataRequest

Source§

const NAME: &'static str = "QueryDenomsMetadataRequest"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::QueryDenomsMetadataResponse

Source§

const NAME: &'static str = "QueryDenomsMetadataResponse"

Source§

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

Source§

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

Source§

const NAME: &'static str = "QueryParamsRequest"

Source§

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

Source§

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

Source§

const NAME: &'static str = "QueryParamsResponse"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::QuerySendEnabledRequest

Source§

const NAME: &'static str = "QuerySendEnabledRequest"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::QuerySendEnabledResponse

Source§

const NAME: &'static str = "QuerySendEnabledResponse"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::QuerySpendableBalanceByDenomRequest

Source§

const NAME: &'static str = "QuerySpendableBalanceByDenomRequest"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::QuerySpendableBalanceByDenomResponse

Source§

const NAME: &'static str = "QuerySpendableBalanceByDenomResponse"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::QuerySpendableBalancesRequest

Source§

const NAME: &'static str = "QuerySpendableBalancesRequest"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::QuerySpendableBalancesResponse

Source§

const NAME: &'static str = "QuerySpendableBalancesResponse"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::QuerySupplyOfRequest

Source§

const NAME: &'static str = "QuerySupplyOfRequest"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::QuerySupplyOfResponse

Source§

const NAME: &'static str = "QuerySupplyOfResponse"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::QueryTotalSupplyRequest

Source§

const NAME: &'static str = "QueryTotalSupplyRequest"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::QueryTotalSupplyResponse

Source§

const NAME: &'static str = "QueryTotalSupplyResponse"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::SendEnabled

Source§

const NAME: &'static str = "SendEnabled"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::bank::v1beta1::Supply

Source§

const NAME: &'static str = "Supply"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::base::abci::v1beta1::AbciMessageLog

Source§

const NAME: &'static str = "ABCIMessageLog"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::base::abci::v1beta1::Attribute

Source§

const NAME: &'static str = "Attribute"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::base::abci::v1beta1::GasInfo

Source§

const NAME: &'static str = "GasInfo"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::base::abci::v1beta1::MsgData

Source§

const NAME: &'static str = "MsgData"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::base::abci::v1beta1::Result

Source§

const NAME: &'static str = "Result"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::base::abci::v1beta1::SearchBlocksResult

Source§

const NAME: &'static str = "SearchBlocksResult"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::base::abci::v1beta1::SearchTxsResult

Source§

const NAME: &'static str = "SearchTxsResult"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::base::abci::v1beta1::SimulationResponse

Source§

const NAME: &'static str = "SimulationResponse"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::base::abci::v1beta1::StringEvent

Source§

const NAME: &'static str = "StringEvent"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::base::abci::v1beta1::TxMsgData

Source§

const NAME: &'static str = "TxMsgData"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::base::abci::v1beta1::TxResponse

Source§

const NAME: &'static str = "TxResponse"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::base::query::v1beta1::PageRequest

Source§

const NAME: &'static str = "PageRequest"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::base::query::v1beta1::PageResponse

Source§

const NAME: &'static str = "PageResponse"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::base::v1beta1::Coin

Source§

const NAME: &'static str = "Coin"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::base::v1beta1::DecCoin

Source§

const NAME: &'static str = "DecCoin"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::crypto::multisig::v1beta1::CompactBitArray

Source§

const NAME: &'static str = "CompactBitArray"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::crypto::multisig::v1beta1::MultiSignature

Source§

const NAME: &'static str = "MultiSignature"

Source§

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

Source§

impl Name for Config

Source§

const NAME: &'static str = "Config"

Source§

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

Source§

impl Name for penumbra_sdk_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 penumbra_sdk_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 penumbra_sdk_proto::cosmos::tx::signing::v1beta1::signature_descriptor::Data

Source§

const NAME: &'static str = "Data"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::signing::v1beta1::SignatureDescriptor

Source§

const NAME: &'static str = "SignatureDescriptor"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::signing::v1beta1::SignatureDescriptors

Source§

const NAME: &'static str = "SignatureDescriptors"

Source§

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

Source§

impl Name for penumbra_sdk_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 penumbra_sdk_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 penumbra_sdk_proto::cosmos::tx::v1beta1::AuthInfo

Source§

const NAME: &'static str = "AuthInfo"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::AuxSignerData

Source§

const NAME: &'static str = "AuxSignerData"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::BroadcastTxRequest

Source§

const NAME: &'static str = "BroadcastTxRequest"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::BroadcastTxResponse

Source§

const NAME: &'static str = "BroadcastTxResponse"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::Fee

Source§

const NAME: &'static str = "Fee"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::GetBlockWithTxsRequest

Source§

const NAME: &'static str = "GetBlockWithTxsRequest"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::GetBlockWithTxsResponse

Source§

const NAME: &'static str = "GetBlockWithTxsResponse"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::GetTxRequest

Source§

const NAME: &'static str = "GetTxRequest"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::GetTxResponse

Source§

const NAME: &'static str = "GetTxResponse"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::GetTxsEventRequest

Source§

const NAME: &'static str = "GetTxsEventRequest"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::GetTxsEventResponse

Source§

const NAME: &'static str = "GetTxsEventResponse"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::ModeInfo

Source§

const NAME: &'static str = "ModeInfo"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::SignDoc

Source§

const NAME: &'static str = "SignDoc"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::SignDocDirectAux

Source§

const NAME: &'static str = "SignDocDirectAux"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::SignerInfo

Source§

const NAME: &'static str = "SignerInfo"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::SimulateRequest

Source§

const NAME: &'static str = "SimulateRequest"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::SimulateResponse

Source§

const NAME: &'static str = "SimulateResponse"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::Tip

Source§

const NAME: &'static str = "Tip"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::Tx

Source§

const NAME: &'static str = "Tx"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::TxBody

Source§

const NAME: &'static str = "TxBody"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::TxDecodeAminoRequest

Source§

const NAME: &'static str = "TxDecodeAminoRequest"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::TxDecodeAminoResponse

Source§

const NAME: &'static str = "TxDecodeAminoResponse"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::TxDecodeRequest

Source§

const NAME: &'static str = "TxDecodeRequest"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::TxDecodeResponse

Source§

const NAME: &'static str = "TxDecodeResponse"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::TxEncodeAminoRequest

Source§

const NAME: &'static str = "TxEncodeAminoRequest"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::TxEncodeAminoResponse

Source§

const NAME: &'static str = "TxEncodeAminoResponse"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::TxEncodeRequest

Source§

const NAME: &'static str = "TxEncodeRequest"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::TxEncodeResponse

Source§

const NAME: &'static str = "TxEncodeResponse"

Source§

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

Source§

impl Name for penumbra_sdk_proto::cosmos::tx::v1beta1::TxRaw

Source§

const NAME: &'static str = "TxRaw"

Source§

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

Source§

impl Name for RegisterAccountDataWrapper

Source§

const NAME: &'static str = "RegisterAccountDataWrapper"

Source§

const PACKAGE: &'static str = "noble.forwarding.v1"

Source§

impl Name for ForwardingAccount

Source§

const NAME: &'static str = "ForwardingAccount"

Source§

const PACKAGE: &'static str = "noble.forwarding.v1"

Source§

impl Name for ForwardingPubKey

Source§

const NAME: &'static str = "ForwardingPubKey"

Source§

const PACKAGE: &'static str = "noble.forwarding.v1"

Source§

impl Name for penumbra_sdk_proto::noble::forwarding::v1::GenesisState

Source§

const NAME: &'static str = "GenesisState"

Source§

const PACKAGE: &'static str = "noble.forwarding.v1"

Source§

impl Name for MsgClearAccount

Source§

const NAME: &'static str = "MsgClearAccount"

Source§

const PACKAGE: &'static str = "noble.forwarding.v1"

Source§

impl Name for MsgClearAccountResponse

Source§

const NAME: &'static str = "MsgClearAccountResponse"

Source§

const PACKAGE: &'static str = "noble.forwarding.v1"

Source§

impl Name for MsgRegisterAccount

Source§

const NAME: &'static str = "MsgRegisterAccount"

Source§

const PACKAGE: &'static str = "noble.forwarding.v1"

Source§

impl Name for MsgRegisterAccountResponse

Source§

const NAME: &'static str = "MsgRegisterAccountResponse"

Source§

const PACKAGE: &'static str = "noble.forwarding.v1"

Source§

impl Name for QueryAddress

Source§

const NAME: &'static str = "QueryAddress"

Source§

const PACKAGE: &'static str = "noble.forwarding.v1"

Source§

impl Name for QueryAddressResponse

Source§

const NAME: &'static str = "QueryAddressResponse"

Source§

const PACKAGE: &'static str = "noble.forwarding.v1"

Source§

impl Name for QueryStats

Source§

const NAME: &'static str = "QueryStats"

Source§

const PACKAGE: &'static str = "noble.forwarding.v1"

Source§

impl Name for QueryStatsByChannel

Source§

const NAME: &'static str = "QueryStatsByChannel"

Source§

const PACKAGE: &'static str = "noble.forwarding.v1"

Source§

impl Name for QueryStatsByChannelResponse

Source§

const NAME: &'static str = "QueryStatsByChannelResponse"

Source§

const PACKAGE: &'static str = "noble.forwarding.v1"

Source§

impl Name for QueryStatsResponse

Source§

const NAME: &'static str = "QueryStatsResponse"

Source§

const PACKAGE: &'static str = "noble.forwarding.v1"

Source§

impl Name for RegisterAccountData

Source§

const NAME: &'static str = "RegisterAccountData"

Source§

const PACKAGE: &'static str = "noble.forwarding.v1"

Source§

impl Name for RegisterAccountMemo

Source§

const NAME: &'static str = "RegisterAccountMemo"

Source§

const PACKAGE: &'static str = "noble.forwarding.v1"

Source§

impl Name for Stats

Source§

const NAME: &'static str = "Stats"

Source§

const PACKAGE: &'static str = "noble.forwarding.v1"

Source§

impl Name for AppParameters

Source§

const NAME: &'static str = "AppParameters"

Source§

const PACKAGE: &'static str = "penumbra.core.app.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::app::v1::AppParametersRequest

Source§

const NAME: &'static str = "AppParametersRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.app.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::app::v1::AppParametersResponse

Source§

const NAME: &'static str = "AppParametersResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.app.v1"

Source§

impl Name for GenesisAppState

Source§

const NAME: &'static str = "GenesisAppState"

Source§

const PACKAGE: &'static str = "penumbra.core.app.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::app::v1::GenesisContent

Source§

const NAME: &'static str = "GenesisContent"

Source§

const PACKAGE: &'static str = "penumbra.core.app.v1"

Source§

impl Name for TransactionsByHeightRequest

Source§

const NAME: &'static str = "TransactionsByHeightRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.app.v1"

Source§

impl Name for TransactionsByHeightResponse

Source§

const NAME: &'static str = "TransactionsByHeightResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.app.v1"

Source§

impl Name for Theme

Source§

const NAME: &'static str = "Theme"

Source§

const PACKAGE: &'static str = "penumbra.core.asset.v1"

Source§

impl Name for SignedValue

Source§

const NAME: &'static str = "SignedValue"

Source§

const PACKAGE: &'static str = "penumbra.core.asset.v1"

Source§

impl Name for AssetId

Source§

const NAME: &'static str = "AssetId"

Source§

const PACKAGE: &'static str = "penumbra.core.asset.v1"

Source§

impl Name for AssetImage

Source§

const NAME: &'static str = "AssetImage"

Source§

const PACKAGE: &'static str = "penumbra.core.asset.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::asset::v1::Balance

Source§

const NAME: &'static str = "Balance"

Source§

const PACKAGE: &'static str = "penumbra.core.asset.v1"

Source§

impl Name for BalanceCommitment

Source§

const NAME: &'static str = "BalanceCommitment"

Source§

const PACKAGE: &'static str = "penumbra.core.asset.v1"

Source§

impl Name for Denom

Source§

const NAME: &'static str = "Denom"

Source§

const PACKAGE: &'static str = "penumbra.core.asset.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::asset::v1::DenomUnit

Source§

const NAME: &'static str = "DenomUnit"

Source§

const PACKAGE: &'static str = "penumbra.core.asset.v1"

Source§

impl Name for EquivalentValue

Source§

const NAME: &'static str = "EquivalentValue"

Source§

const PACKAGE: &'static str = "penumbra.core.asset.v1"

Source§

impl Name for EstimatedPrice

Source§

const NAME: &'static str = "EstimatedPrice"

Source§

const PACKAGE: &'static str = "penumbra.core.asset.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::asset::v1::Metadata

Source§

const NAME: &'static str = "Metadata"

Source§

const PACKAGE: &'static str = "penumbra.core.asset.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::asset::v1::Value

Source§

const NAME: &'static str = "Value"

Source§

const PACKAGE: &'static str = "penumbra.core.asset.v1"

Source§

impl Name for ValueView

Source§

const NAME: &'static str = "ValueView"

Source§

const PACKAGE: &'static str = "penumbra.core.asset.v1"

Source§

impl Name for KnownAssetId

Source§

const NAME: &'static str = "KnownAssetId"

Source§

const PACKAGE: &'static str = "penumbra.core.asset.v1"

Source§

impl Name for UnknownAssetId

Source§

const NAME: &'static str = "UnknownAssetId"

Source§

const PACKAGE: &'static str = "penumbra.core.asset.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::auction::v1::ActionDutchAuctionEnd

Source§

const NAME: &'static str = "ActionDutchAuctionEnd"

Source§

const PACKAGE: &'static str = "penumbra.core.component.auction.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::auction::v1::ActionDutchAuctionSchedule

Source§

const NAME: &'static str = "ActionDutchAuctionSchedule"

Source§

const PACKAGE: &'static str = "penumbra.core.component.auction.v1"

Source§

impl Name for ActionDutchAuctionScheduleView

Source§

const NAME: &'static str = "ActionDutchAuctionScheduleView"

Source§

const PACKAGE: &'static str = "penumbra.core.component.auction.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::auction::v1::ActionDutchAuctionWithdraw

Source§

const NAME: &'static str = "ActionDutchAuctionWithdraw"

Source§

const PACKAGE: &'static str = "penumbra.core.component.auction.v1"

Source§

impl Name for ActionDutchAuctionWithdrawPlan

Source§

const NAME: &'static str = "ActionDutchAuctionWithdrawPlan"

Source§

const PACKAGE: &'static str = "penumbra.core.component.auction.v1"

Source§

impl Name for ActionDutchAuctionWithdrawView

Source§

const NAME: &'static str = "ActionDutchAuctionWithdrawView"

Source§

const PACKAGE: &'static str = "penumbra.core.component.auction.v1"

Source§

impl Name for AuctionId

Source§

const NAME: &'static str = "AuctionId"

Source§

const PACKAGE: &'static str = "penumbra.core.component.auction.v1"

Source§

impl Name for AuctionNft

Source§

const NAME: &'static str = "AuctionNft"

Source§

const PACKAGE: &'static str = "penumbra.core.component.auction.v1"

Source§

impl Name for AuctionParameters

Source§

const NAME: &'static str = "AuctionParameters"

Source§

const PACKAGE: &'static str = "penumbra.core.component.auction.v1"

Source§

impl Name for AuctionStateByIdRequest

Source§

const NAME: &'static str = "AuctionStateByIdRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.auction.v1"

Source§

impl Name for AuctionStateByIdResponse

Source§

const NAME: &'static str = "AuctionStateByIdResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.auction.v1"

Source§

impl Name for AuctionStateByIdsRequest

Source§

const NAME: &'static str = "AuctionStateByIdsRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.auction.v1"

Source§

impl Name for AuctionStateByIdsResponse

Source§

const NAME: &'static str = "AuctionStateByIdsResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.auction.v1"

Source§

impl Name for DutchAuction

Source§

const NAME: &'static str = "DutchAuction"

Source§

const PACKAGE: &'static str = "penumbra.core.component.auction.v1"

Source§

impl Name for DutchAuctionDescription

Source§

const NAME: &'static str = "DutchAuctionDescription"

Source§

const PACKAGE: &'static str = "penumbra.core.component.auction.v1"

Source§

impl Name for DutchAuctionState

Source§

const NAME: &'static str = "DutchAuctionState"

Source§

const PACKAGE: &'static str = "penumbra.core.component.auction.v1"

Source§

impl Name for EventDutchAuctionEnded

Source§

const NAME: &'static str = "EventDutchAuctionEnded"

Source§

const PACKAGE: &'static str = "penumbra.core.component.auction.v1"

Source§

impl Name for EventDutchAuctionScheduled

Source§

const NAME: &'static str = "EventDutchAuctionScheduled"

Source§

const PACKAGE: &'static str = "penumbra.core.component.auction.v1"

Source§

impl Name for EventDutchAuctionUpdated

Source§

const NAME: &'static str = "EventDutchAuctionUpdated"

Source§

const PACKAGE: &'static str = "penumbra.core.component.auction.v1"

Source§

impl Name for EventDutchAuctionWithdrawn

Source§

const NAME: &'static str = "EventDutchAuctionWithdrawn"

Source§

const PACKAGE: &'static str = "penumbra.core.component.auction.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::auction::v1::EventValueCircuitBreakerCredit

Source§

const NAME: &'static str = "EventValueCircuitBreakerCredit"

Source§

const PACKAGE: &'static str = "penumbra.core.component.auction.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::auction::v1::EventValueCircuitBreakerDebit

Source§

const NAME: &'static str = "EventValueCircuitBreakerDebit"

Source§

const PACKAGE: &'static str = "penumbra.core.component.auction.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::auction::v1::GenesisContent

Source§

const NAME: &'static str = "GenesisContent"

Source§

const PACKAGE: &'static str = "penumbra.core.component.auction.v1"

Source§

impl Name for CommunityPoolAssetBalancesRequest

Source§

const NAME: &'static str = "CommunityPoolAssetBalancesRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.community_pool.v1"

Source§

impl Name for CommunityPoolAssetBalancesResponse

Source§

const NAME: &'static str = "CommunityPoolAssetBalancesResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.community_pool.v1"

Source§

impl Name for CommunityPoolParameters

Source§

const NAME: &'static str = "CommunityPoolParameters"

Source§

const PACKAGE: &'static str = "penumbra.core.component.community_pool.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::community_pool::v1::GenesisContent

Source§

const NAME: &'static str = "GenesisContent"

Source§

const PACKAGE: &'static str = "penumbra.core.component.community_pool.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::compact_block::v1::state_payload::Note

Source§

const NAME: &'static str = "Note"

Source§

const PACKAGE: &'static str = "penumbra.core.component.compact_block.v1"

Source§

impl Name for RolledUp

Source§

const NAME: &'static str = "RolledUp"

Source§

const PACKAGE: &'static str = "penumbra.core.component.compact_block.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::compact_block::v1::state_payload::Swap

Source§

const NAME: &'static str = "Swap"

Source§

const PACKAGE: &'static str = "penumbra.core.component.compact_block.v1"

Source§

impl Name for CompactBlock

Source§

const NAME: &'static str = "CompactBlock"

Source§

const PACKAGE: &'static str = "penumbra.core.component.compact_block.v1"

Source§

impl Name for CompactBlockRangeRequest

Source§

const NAME: &'static str = "CompactBlockRangeRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.compact_block.v1"

Source§

impl Name for CompactBlockRangeResponse

Source§

const NAME: &'static str = "CompactBlockRangeResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.compact_block.v1"

Source§

impl Name for CompactBlockRequest

Source§

const NAME: &'static str = "CompactBlockRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.compact_block.v1"

Source§

impl Name for CompactBlockResponse

Source§

const NAME: &'static str = "CompactBlockResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.compact_block.v1"

Source§

impl Name for StatePayload

Source§

const NAME: &'static str = "StatePayload"

Source§

const PACKAGE: &'static str = "penumbra.core.component.compact_block.v1"

Source§

impl Name for Default

Source§

const NAME: &'static str = "Default"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for SingleHop

Source§

const NAME: &'static str = "SingleHop"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for Routing

Source§

const NAME: &'static str = "Routing"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for ArbExecutionRequest

Source§

const NAME: &'static str = "ArbExecutionRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for ArbExecutionResponse

Source§

const NAME: &'static str = "ArbExecutionResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for ArbExecutionsRequest

Source§

const NAME: &'static str = "ArbExecutionsRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for ArbExecutionsResponse

Source§

const NAME: &'static str = "ArbExecutionsResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for BareTradingFunction

Source§

const NAME: &'static str = "BareTradingFunction"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for BatchSwapOutputData

Source§

const NAME: &'static str = "BatchSwapOutputData"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for BatchSwapOutputDataRequest

Source§

const NAME: &'static str = "BatchSwapOutputDataRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for BatchSwapOutputDataResponse

Source§

const NAME: &'static str = "BatchSwapOutputDataResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for CandlestickData

Source§

const NAME: &'static str = "CandlestickData"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for CandlestickDataRequest

Source§

const NAME: &'static str = "CandlestickDataRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for CandlestickDataResponse

Source§

const NAME: &'static str = "CandlestickDataResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for CandlestickDataStreamRequest

Source§

const NAME: &'static str = "CandlestickDataStreamRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for CandlestickDataStreamResponse

Source§

const NAME: &'static str = "CandlestickDataStreamResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for DexParameters

Source§

const NAME: &'static str = "DexParameters"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for DirectedTradingPair

Source§

const NAME: &'static str = "DirectedTradingPair"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for EventArbExecution

Source§

const NAME: &'static str = "EventArbExecution"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for EventBatchSwap

Source§

const NAME: &'static str = "EventBatchSwap"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for EventCandlestickData

Source§

const NAME: &'static str = "EventCandlestickData"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for EventPositionClose

Source§

const NAME: &'static str = "EventPositionClose"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for EventPositionExecution

Source§

const NAME: &'static str = "EventPositionExecution"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for EventPositionOpen

Source§

const NAME: &'static str = "EventPositionOpen"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for EventPositionWithdraw

Source§

const NAME: &'static str = "EventPositionWithdraw"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for EventQueuePositionClose

Source§

const NAME: &'static str = "EventQueuePositionClose"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for EventSwap

Source§

const NAME: &'static str = "EventSwap"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for EventSwapClaim

Source§

const NAME: &'static str = "EventSwapClaim"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::dex::v1::EventValueCircuitBreakerCredit

Source§

const NAME: &'static str = "EventValueCircuitBreakerCredit"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::dex::v1::EventValueCircuitBreakerDebit

Source§

const NAME: &'static str = "EventValueCircuitBreakerDebit"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::dex::v1::GenesisContent

Source§

const NAME: &'static str = "GenesisContent"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for LiquidityPositionByIdRequest

Source§

const NAME: &'static str = "LiquidityPositionByIdRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for LiquidityPositionByIdResponse

Source§

const NAME: &'static str = "LiquidityPositionByIdResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for LiquidityPositionsByIdRequest

Source§

const NAME: &'static str = "LiquidityPositionsByIdRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for LiquidityPositionsByIdResponse

Source§

const NAME: &'static str = "LiquidityPositionsByIdResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for LiquidityPositionsByPriceRequest

Source§

const NAME: &'static str = "LiquidityPositionsByPriceRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for LiquidityPositionsByPriceResponse

Source§

const NAME: &'static str = "LiquidityPositionsByPriceResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for LiquidityPositionsRequest

Source§

const NAME: &'static str = "LiquidityPositionsRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for LiquidityPositionsResponse

Source§

const NAME: &'static str = "LiquidityPositionsResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for LpNft

Source§

const NAME: &'static str = "LpNft"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::dex::v1::Position

Source§

const NAME: &'static str = "Position"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::dex::v1::PositionClose

Source§

const NAME: &'static str = "PositionClose"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for PositionId

Source§

const NAME: &'static str = "PositionId"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::dex::v1::PositionOpen

Source§

const NAME: &'static str = "PositionOpen"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for PositionRewardClaim

Source§

const NAME: &'static str = "PositionRewardClaim"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for PositionRewardClaimPlan

Source§

const NAME: &'static str = "PositionRewardClaimPlan"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for PositionState

Source§

const NAME: &'static str = "PositionState"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::dex::v1::PositionWithdraw

Source§

const NAME: &'static str = "PositionWithdraw"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for PositionWithdrawPlan

Source§

const NAME: &'static str = "PositionWithdrawPlan"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for Reserves

Source§

const NAME: &'static str = "Reserves"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for SimulateTradeRequest

Source§

const NAME: &'static str = "SimulateTradeRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for SimulateTradeResponse

Source§

const NAME: &'static str = "SimulateTradeResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for SpreadRequest

Source§

const NAME: &'static str = "SpreadRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for SpreadResponse

Source§

const NAME: &'static str = "SpreadResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::dex::v1::Swap

Source§

const NAME: &'static str = "Swap"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for SwapBody

Source§

const NAME: &'static str = "SwapBody"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::dex::v1::SwapClaim

Source§

const NAME: &'static str = "SwapClaim"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for SwapClaimBody

Source§

const NAME: &'static str = "SwapClaimBody"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for SwapClaimPlan

Source§

const NAME: &'static str = "SwapClaimPlan"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for SwapClaimView

Source§

const NAME: &'static str = "SwapClaimView"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for SwapExecution

Source§

const NAME: &'static str = "SwapExecution"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for SwapExecutionRequest

Source§

const NAME: &'static str = "SwapExecutionRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for SwapExecutionResponse

Source§

const NAME: &'static str = "SwapExecutionResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for SwapExecutionsRequest

Source§

const NAME: &'static str = "SwapExecutionsRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for SwapExecutionsResponse

Source§

const NAME: &'static str = "SwapExecutionsResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for SwapPayload

Source§

const NAME: &'static str = "SwapPayload"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for SwapPlaintext

Source§

const NAME: &'static str = "SwapPlaintext"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for SwapPlan

Source§

const NAME: &'static str = "SwapPlan"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for SwapView

Source§

const NAME: &'static str = "SwapView"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for TradingFunction

Source§

const NAME: &'static str = "TradingFunction"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for TradingPair

Source§

const NAME: &'static str = "TradingPair"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for ZkSwapClaimProof

Source§

const NAME: &'static str = "ZKSwapClaimProof"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for ZkSwapProof

Source§

const NAME: &'static str = "ZKSwapProof"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::dex::v1::swap_claim_view::Opaque

Source§

const NAME: &'static str = "Opaque"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::dex::v1::swap_claim_view::Visible

Source§

const NAME: &'static str = "Visible"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for Trace

Source§

const NAME: &'static str = "Trace"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::dex::v1::swap_view::Opaque

Source§

const NAME: &'static str = "Opaque"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::dex::v1::swap_view::Visible

Source§

const NAME: &'static str = "Visible"

Source§

const PACKAGE: &'static str = "penumbra.core.component.dex.v1"

Source§

impl Name for DistributionsParameters

Source§

const NAME: &'static str = "DistributionsParameters"

Source§

const PACKAGE: &'static str = "penumbra.core.component.distributions.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::distributions::v1::GenesisContent

Source§

const NAME: &'static str = "GenesisContent"

Source§

const PACKAGE: &'static str = "penumbra.core.component.distributions.v1"

Source§

impl Name for CurrentGasPricesRequest

Source§

const NAME: &'static str = "CurrentGasPricesRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.fee.v1"

Source§

impl Name for CurrentGasPricesResponse

Source§

const NAME: &'static str = "CurrentGasPricesResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.fee.v1"

Source§

impl Name for EventBlockFees

Source§

const NAME: &'static str = "EventBlockFees"

Source§

const PACKAGE: &'static str = "penumbra.core.component.fee.v1"

Source§

impl Name for EventPaidFee

Source§

const NAME: &'static str = "EventPaidFee"

Source§

const PACKAGE: &'static str = "penumbra.core.component.fee.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::fee::v1::Fee

Source§

const NAME: &'static str = "Fee"

Source§

const PACKAGE: &'static str = "penumbra.core.component.fee.v1"

Source§

impl Name for FeeParameters

Source§

const NAME: &'static str = "FeeParameters"

Source§

const PACKAGE: &'static str = "penumbra.core.component.fee.v1"

Source§

impl Name for FeeTier

Source§

const NAME: &'static str = "FeeTier"

Source§

const PACKAGE: &'static str = "penumbra.core.component.fee.v1"

Source§

impl Name for Gas

Source§

const NAME: &'static str = "Gas"

Source§

const PACKAGE: &'static str = "penumbra.core.component.fee.v1"

Source§

impl Name for GasPrices

Source§

const NAME: &'static str = "GasPrices"

Source§

const PACKAGE: &'static str = "penumbra.core.component.fee.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::fee::v1::GenesisContent

Source§

const NAME: &'static str = "GenesisContent"

Source§

const PACKAGE: &'static str = "penumbra.core.component.fee.v1"

Source§

impl Name for EventFundingStreamReward

Source§

const NAME: &'static str = "EventFundingStreamReward"

Source§

const PACKAGE: &'static str = "penumbra.core.component.funding.v1"

Source§

impl Name for FundingParameters

Source§

const NAME: &'static str = "FundingParameters"

Source§

const PACKAGE: &'static str = "penumbra.core.component.funding.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::funding::v1::GenesisContent

Source§

const NAME: &'static str = "GenesisContent"

Source§

const PACKAGE: &'static str = "penumbra.core.component.funding.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::governance::v1::delegator_vote_view::Opaque

Source§

const NAME: &'static str = "Opaque"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::governance::v1::delegator_vote_view::Visible

Source§

const NAME: &'static str = "Visible"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::governance::v1::proposal::CommunityPoolSpend

Source§

const NAME: &'static str = "CommunityPoolSpend"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for Emergency

Source§

const NAME: &'static str = "Emergency"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for FreezeIbcClient

Source§

const NAME: &'static str = "FreezeIbcClient"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for ParameterChange

Source§

const NAME: &'static str = "ParameterChange"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for Signaling

Source§

const NAME: &'static str = "Signaling"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for UnfreezeIbcClient

Source§

const NAME: &'static str = "UnfreezeIbcClient"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for UpgradePlan

Source§

const NAME: &'static str = "UpgradePlan"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for Failed

Source§

const NAME: &'static str = "Failed"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for Passed

Source§

const NAME: &'static str = "Passed"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for Slashed

Source§

const NAME: &'static str = "Slashed"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::governance::v1::proposal_outcome::Withdrawn

Source§

const NAME: &'static str = "Withdrawn"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for Claimed

Source§

const NAME: &'static str = "Claimed"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for Finished

Source§

const NAME: &'static str = "Finished"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for Voting

Source§

const NAME: &'static str = "Voting"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::governance::v1::proposal_state::Withdrawn

Source§

const NAME: &'static str = "Withdrawn"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for AllTalliedDelegatorVotesForProposalRequest

Source§

const NAME: &'static str = "AllTalliedDelegatorVotesForProposalRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for AllTalliedDelegatorVotesForProposalResponse

Source§

const NAME: &'static str = "AllTalliedDelegatorVotesForProposalResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for ChangedAppParameters

Source§

const NAME: &'static str = "ChangedAppParameters"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for ChangedAppParametersSet

Source§

const NAME: &'static str = "ChangedAppParametersSet"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for CommunityPoolDeposit

Source§

const NAME: &'static str = "CommunityPoolDeposit"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::governance::v1::CommunityPoolOutput

Source§

const NAME: &'static str = "CommunityPoolOutput"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::governance::v1::CommunityPoolSpend

Source§

const NAME: &'static str = "CommunityPoolSpend"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::governance::v1::DelegatorVote

Source§

const NAME: &'static str = "DelegatorVote"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for DelegatorVoteBody

Source§

const NAME: &'static str = "DelegatorVoteBody"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for DelegatorVotePlan

Source§

const NAME: &'static str = "DelegatorVotePlan"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for DelegatorVoteView

Source§

const NAME: &'static str = "DelegatorVoteView"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for EncodedParameter

Source§

const NAME: &'static str = "EncodedParameter"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for EventDelegatorVote

Source§

const NAME: &'static str = "EventDelegatorVote"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for EventProposalDepositClaim

Source§

const NAME: &'static str = "EventProposalDepositClaim"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for EventProposalFailed

Source§

const NAME: &'static str = "EventProposalFailed"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for EventProposalPassed

Source§

const NAME: &'static str = "EventProposalPassed"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for EventProposalSlashed

Source§

const NAME: &'static str = "EventProposalSlashed"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for EventProposalSubmit

Source§

const NAME: &'static str = "EventProposalSubmit"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for EventProposalWithdraw

Source§

const NAME: &'static str = "EventProposalWithdraw"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for EventValidatorVote

Source§

const NAME: &'static str = "EventValidatorVote"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::governance::v1::GenesisContent

Source§

const NAME: &'static str = "GenesisContent"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for GovernanceParameters

Source§

const NAME: &'static str = "GovernanceParameters"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for NextProposalIdRequest

Source§

const NAME: &'static str = "NextProposalIdRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for NextProposalIdResponse

Source§

const NAME: &'static str = "NextProposalIdResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::governance::v1::Proposal

Source§

const NAME: &'static str = "Proposal"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for ProposalDataRequest

Source§

const NAME: &'static str = "ProposalDataRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for ProposalDataResponse

Source§

const NAME: &'static str = "ProposalDataResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for ProposalDepositClaim

Source§

const NAME: &'static str = "ProposalDepositClaim"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for ProposalInfoRequest

Source§

const NAME: &'static str = "ProposalInfoRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for ProposalInfoResponse

Source§

const NAME: &'static str = "ProposalInfoResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for ProposalListRequest

Source§

const NAME: &'static str = "ProposalListRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for ProposalListResponse

Source§

const NAME: &'static str = "ProposalListResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for ProposalOutcome

Source§

const NAME: &'static str = "ProposalOutcome"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for ProposalRateDataRequest

Source§

const NAME: &'static str = "ProposalRateDataRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for ProposalRateDataResponse

Source§

const NAME: &'static str = "ProposalRateDataResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for ProposalState

Source§

const NAME: &'static str = "ProposalState"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for ProposalSubmit

Source§

const NAME: &'static str = "ProposalSubmit"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for ProposalWithdraw

Source§

const NAME: &'static str = "ProposalWithdraw"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for Ratio

Source§

const NAME: &'static str = "Ratio"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for Tally

Source§

const NAME: &'static str = "Tally"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for ValidatorVote

Source§

const NAME: &'static str = "ValidatorVote"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for ValidatorVoteBody

Source§

const NAME: &'static str = "ValidatorVoteBody"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for ValidatorVoteReason

Source§

const NAME: &'static str = "ValidatorVoteReason"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for ValidatorVotesRequest

Source§

const NAME: &'static str = "ValidatorVotesRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for ValidatorVotesResponse

Source§

const NAME: &'static str = "ValidatorVotesResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::governance::v1::Vote

Source§

const NAME: &'static str = "Vote"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for VotingPowerAtProposalStartRequest

Source§

const NAME: &'static str = "VotingPowerAtProposalStartRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for VotingPowerAtProposalStartResponse

Source§

const NAME: &'static str = "VotingPowerAtProposalStartResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for ZkDelegatorVoteProof

Source§

const NAME: &'static str = "ZKDelegatorVoteProof"

Source§

const PACKAGE: &'static str = "penumbra.core.component.governance.v1"

Source§

impl Name for ClientConnections

Source§

const NAME: &'static str = "ClientConnections"

Source§

const PACKAGE: &'static str = "penumbra.core.component.ibc.v1"

Source§

impl Name for ClientCounter

Source§

const NAME: &'static str = "ClientCounter"

Source§

const PACKAGE: &'static str = "penumbra.core.component.ibc.v1"

Source§

impl Name for ClientData

Source§

const NAME: &'static str = "ClientData"

Source§

const PACKAGE: &'static str = "penumbra.core.component.ibc.v1"

Source§

impl Name for ConnectionCounter

Source§

const NAME: &'static str = "ConnectionCounter"

Source§

const PACKAGE: &'static str = "penumbra.core.component.ibc.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::ibc::v1::ConsensusState

Source§

const NAME: &'static str = "ConsensusState"

Source§

const PACKAGE: &'static str = "penumbra.core.component.ibc.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::ibc::v1::FungibleTokenPacketData

Source§

const NAME: &'static str = "FungibleTokenPacketData"

Source§

const PACKAGE: &'static str = "penumbra.core.component.ibc.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::ibc::v1::GenesisContent

Source§

const NAME: &'static str = "GenesisContent"

Source§

const PACKAGE: &'static str = "penumbra.core.component.ibc.v1"

Source§

impl Name for IbcParameters

Source§

const NAME: &'static str = "IbcParameters"

Source§

const PACKAGE: &'static str = "penumbra.core.component.ibc.v1"

Source§

impl Name for IbcRelay

Source§

const NAME: &'static str = "IbcRelay"

Source§

const PACKAGE: &'static str = "penumbra.core.component.ibc.v1"

Source§

impl Name for Ics20Withdrawal

Source§

const NAME: &'static str = "Ics20Withdrawal"

Source§

const PACKAGE: &'static str = "penumbra.core.component.ibc.v1"

Source§

impl Name for VerifiedHeights

Source§

const NAME: &'static str = "VerifiedHeights"

Source§

const PACKAGE: &'static str = "penumbra.core.component.ibc.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::sct::v1::commitment_source::CommunityPoolOutput

Source§

const NAME: &'static str = "CommunityPoolOutput"

Source§

const PACKAGE: &'static str = "penumbra.core.component.sct.v1"

Source§

impl Name for FundingStreamReward

Source§

const NAME: &'static str = "FundingStreamReward"

Source§

const PACKAGE: &'static str = "penumbra.core.component.sct.v1"

Source§

impl Name for Genesis

Source§

const NAME: &'static str = "Genesis"

Source§

const PACKAGE: &'static str = "penumbra.core.component.sct.v1"

Source§

impl Name for Ics20Transfer

Source§

const NAME: &'static str = "Ics20Transfer"

Source§

const PACKAGE: &'static str = "penumbra.core.component.sct.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::sct::v1::commitment_source::Transaction

Source§

const NAME: &'static str = "Transaction"

Source§

const PACKAGE: &'static str = "penumbra.core.component.sct.v1"

Source§

impl Name for AnchorByHeightRequest

Source§

const NAME: &'static str = "AnchorByHeightRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.sct.v1"

Source§

impl Name for AnchorByHeightResponse

Source§

const NAME: &'static str = "AnchorByHeightResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.sct.v1"

Source§

impl Name for CommitmentSource

Source§

const NAME: &'static str = "CommitmentSource"

Source§

const PACKAGE: &'static str = "penumbra.core.component.sct.v1"

Source§

impl Name for Epoch

Source§

const NAME: &'static str = "Epoch"

Source§

const PACKAGE: &'static str = "penumbra.core.component.sct.v1"

Source§

impl Name for EpochByHeightRequest

Source§

const NAME: &'static str = "EpochByHeightRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.sct.v1"

Source§

impl Name for EpochByHeightResponse

Source§

const NAME: &'static str = "EpochByHeightResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.sct.v1"

Source§

impl Name for EventAnchor

Source§

const NAME: &'static str = "EventAnchor"

Source§

const PACKAGE: &'static str = "penumbra.core.component.sct.v1"

Source§

impl Name for EventBlockRoot

Source§

const NAME: &'static str = "EventBlockRoot"

Source§

const PACKAGE: &'static str = "penumbra.core.component.sct.v1"

Source§

impl Name for EventCommitment

Source§

const NAME: &'static str = "EventCommitment"

Source§

const PACKAGE: &'static str = "penumbra.core.component.sct.v1"

Source§

impl Name for EventEpochRoot

Source§

const NAME: &'static str = "EventEpochRoot"

Source§

const PACKAGE: &'static str = "penumbra.core.component.sct.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::sct::v1::GenesisContent

Source§

const NAME: &'static str = "GenesisContent"

Source§

const PACKAGE: &'static str = "penumbra.core.component.sct.v1"

Source§

impl Name for NullificationInfo

Source§

const NAME: &'static str = "NullificationInfo"

Source§

const PACKAGE: &'static str = "penumbra.core.component.sct.v1"

Source§

impl Name for Nullifier

Source§

const NAME: &'static str = "Nullifier"

Source§

const PACKAGE: &'static str = "penumbra.core.component.sct.v1"

Source§

impl Name for SctParameters

Source§

const NAME: &'static str = "SctParameters"

Source§

const PACKAGE: &'static str = "penumbra.core.component.sct.v1"

Source§

impl Name for TimestampByHeightRequest

Source§

const NAME: &'static str = "TimestampByHeightRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.sct.v1"

Source§

impl Name for TimestampByHeightResponse

Source§

const NAME: &'static str = "TimestampByHeightResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.sct.v1"

Source§

impl Name for AlgorithmSlidingWindow

Source§

const NAME: &'static str = "AlgorithmSlidingWindow"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for FixedState

Source§

const NAME: &'static str = "FixedState"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for SlidingWindowState

Source§

const NAME: &'static str = "SlidingWindowState"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::shielded_pool::v1::genesis_content::Allocation

Source§

const NAME: &'static str = "Allocation"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::shielded_pool::v1::output_view::Opaque

Source§

const NAME: &'static str = "Opaque"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::shielded_pool::v1::output_view::Visible

Source§

const NAME: &'static str = "Visible"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::shielded_pool::v1::spend_view::Opaque

Source§

const NAME: &'static str = "Opaque"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::shielded_pool::v1::spend_view::Visible

Source§

const NAME: &'static str = "Visible"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::shielded_pool::v1::AssetMetadataByIdRequest

Source§

const NAME: &'static str = "AssetMetadataByIdRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::shielded_pool::v1::AssetMetadataByIdResponse

Source§

const NAME: &'static str = "AssetMetadataByIdResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for AssetMetadataByIdsRequest

Source§

const NAME: &'static str = "AssetMetadataByIdsRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for AssetMetadataByIdsResponse

Source§

const NAME: &'static str = "AssetMetadataByIdsResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for EventBroadcastClue

Source§

const NAME: &'static str = "EventBroadcastClue"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for EventInboundFungibleTokenTransfer

Source§

const NAME: &'static str = "EventInboundFungibleTokenTransfer"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for EventOutboundFungibleTokenRefund

Source§

const NAME: &'static str = "EventOutboundFungibleTokenRefund"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for EventOutboundFungibleTokenTransfer

Source§

const NAME: &'static str = "EventOutboundFungibleTokenTransfer"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for EventOutput

Source§

const NAME: &'static str = "EventOutput"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for EventSpend

Source§

const NAME: &'static str = "EventSpend"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for FmdMetaParameters

Source§

const NAME: &'static str = "FmdMetaParameters"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for FmdMetaParametersAlgorithmState

Source§

const NAME: &'static str = "FmdMetaParametersAlgorithmState"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for FmdParameters

Source§

const NAME: &'static str = "FmdParameters"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for FungibleTokenTransferPacketMetadata

Source§

const NAME: &'static str = "FungibleTokenTransferPacketMetadata"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::shielded_pool::v1::GenesisContent

Source§

const NAME: &'static str = "GenesisContent"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::shielded_pool::v1::Note

Source§

const NAME: &'static str = "Note"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for NoteCiphertext

Source§

const NAME: &'static str = "NoteCiphertext"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for NotePayload

Source§

const NAME: &'static str = "NotePayload"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for NoteView

Source§

const NAME: &'static str = "NoteView"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::shielded_pool::v1::Output

Source§

const NAME: &'static str = "Output"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for OutputBody

Source§

const NAME: &'static str = "OutputBody"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for OutputPlan

Source§

const NAME: &'static str = "OutputPlan"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for OutputView

Source§

const NAME: &'static str = "OutputView"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for ShieldedPoolParameters

Source§

const NAME: &'static str = "ShieldedPoolParameters"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::shielded_pool::v1::Spend

Source§

const NAME: &'static str = "Spend"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for SpendBody

Source§

const NAME: &'static str = "SpendBody"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for SpendPlan

Source§

const NAME: &'static str = "SpendPlan"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for SpendView

Source§

const NAME: &'static str = "SpendView"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for ZkNullifierDerivationProof

Source§

const NAME: &'static str = "ZKNullifierDerivationProof"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for ZkOutputProof

Source§

const NAME: &'static str = "ZKOutputProof"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for ZkSpendProof

Source§

const NAME: &'static str = "ZKSpendProof"

Source§

const PACKAGE: &'static str = "penumbra.core.component.shielded_pool.v1"

Source§

impl Name for ToAddress

Source§

const NAME: &'static str = "ToAddress"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for ToCommunityPool

Source§

const NAME: &'static str = "ToCommunityPool"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for BaseRateData

Source§

const NAME: &'static str = "BaseRateData"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for BondingState

Source§

const NAME: &'static str = "BondingState"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for CurrentConsensusKeys

Source§

const NAME: &'static str = "CurrentConsensusKeys"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for CurrentValidatorRateRequest

Source§

const NAME: &'static str = "CurrentValidatorRateRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for CurrentValidatorRateResponse

Source§

const NAME: &'static str = "CurrentValidatorRateResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::stake::v1::Delegate

Source§

const NAME: &'static str = "Delegate"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for DelegationChanges

Source§

const NAME: &'static str = "DelegationChanges"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for EventDelegate

Source§

const NAME: &'static str = "EventDelegate"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for EventRateDataChange

Source§

const NAME: &'static str = "EventRateDataChange"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for EventSlashingPenaltyApplied

Source§

const NAME: &'static str = "EventSlashingPenaltyApplied"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for EventTombstoneValidator

Source§

const NAME: &'static str = "EventTombstoneValidator"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for EventUndelegate

Source§

const NAME: &'static str = "EventUndelegate"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for EventValidatorBondingStateChange

Source§

const NAME: &'static str = "EventValidatorBondingStateChange"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for EventValidatorDefinitionUpload

Source§

const NAME: &'static str = "EventValidatorDefinitionUpload"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for EventValidatorMissedBlock

Source§

const NAME: &'static str = "EventValidatorMissedBlock"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for EventValidatorStateChange

Source§

const NAME: &'static str = "EventValidatorStateChange"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for EventValidatorVotingPowerChange

Source§

const NAME: &'static str = "EventValidatorVotingPowerChange"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for FundingStream

Source§

const NAME: &'static str = "FundingStream"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::stake::v1::GenesisContent

Source§

const NAME: &'static str = "GenesisContent"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for GetValidatorInfoRequest

Source§

const NAME: &'static str = "GetValidatorInfoRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for GetValidatorInfoResponse

Source§

const NAME: &'static str = "GetValidatorInfoResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for Penalty

Source§

const NAME: &'static str = "Penalty"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for RateData

Source§

const NAME: &'static str = "RateData"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for StakeParameters

Source§

const NAME: &'static str = "StakeParameters"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::stake::v1::Undelegate

Source§

const NAME: &'static str = "Undelegate"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::stake::v1::UndelegateClaim

Source§

const NAME: &'static str = "UndelegateClaim"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for UndelegateClaimBody

Source§

const NAME: &'static str = "UndelegateClaimBody"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for UndelegateClaimPlan

Source§

const NAME: &'static str = "UndelegateClaimPlan"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for Uptime

Source§

const NAME: &'static str = "Uptime"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::component::stake::v1::Validator

Source§

const NAME: &'static str = "Validator"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for ValidatorDefinition

Source§

const NAME: &'static str = "ValidatorDefinition"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for ValidatorInfo

Source§

const NAME: &'static str = "ValidatorInfo"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for ValidatorInfoRequest

Source§

const NAME: &'static str = "ValidatorInfoRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for ValidatorInfoResponse

Source§

const NAME: &'static str = "ValidatorInfoResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for ValidatorList

Source§

const NAME: &'static str = "ValidatorList"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for ValidatorPenaltyRequest

Source§

const NAME: &'static str = "ValidatorPenaltyRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for ValidatorPenaltyResponse

Source§

const NAME: &'static str = "ValidatorPenaltyResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for ValidatorState

Source§

const NAME: &'static str = "ValidatorState"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for ValidatorStatus

Source§

const NAME: &'static str = "ValidatorStatus"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for ValidatorStatusRequest

Source§

const NAME: &'static str = "ValidatorStatusRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for ValidatorStatusResponse

Source§

const NAME: &'static str = "ValidatorStatusResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for ValidatorUptimeRequest

Source§

const NAME: &'static str = "ValidatorUptimeRequest"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for ValidatorUptimeResponse

Source§

const NAME: &'static str = "ValidatorUptimeResponse"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for ZkUndelegateClaimProof

Source§

const NAME: &'static str = "ZKUndelegateClaimProof"

Source§

const PACKAGE: &'static str = "penumbra.core.component.stake.v1"

Source§

impl Name for Decoded

Source§

const NAME: &'static str = "Decoded"

Source§

const PACKAGE: &'static str = "penumbra.core.keys.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::keys::v1::address_view::Opaque

Source§

const NAME: &'static str = "Opaque"

Source§

const PACKAGE: &'static str = "penumbra.core.keys.v1"

Source§

impl Name for Address

Source§

const NAME: &'static str = "Address"

Source§

const PACKAGE: &'static str = "penumbra.core.keys.v1"

Source§

impl Name for AddressIndex

Source§

const NAME: &'static str = "AddressIndex"

Source§

const PACKAGE: &'static str = "penumbra.core.keys.v1"

Source§

impl Name for AddressView

Source§

const NAME: &'static str = "AddressView"

Source§

const PACKAGE: &'static str = "penumbra.core.keys.v1"

Source§

impl Name for ConsensusKey

Source§

const NAME: &'static str = "ConsensusKey"

Source§

const PACKAGE: &'static str = "penumbra.core.keys.v1"

Source§

impl Name for Diversifier

Source§

const NAME: &'static str = "Diversifier"

Source§

const PACKAGE: &'static str = "penumbra.core.keys.v1"

Source§

impl Name for FullViewingKey

Source§

const NAME: &'static str = "FullViewingKey"

Source§

const PACKAGE: &'static str = "penumbra.core.keys.v1"

Source§

impl Name for GovernanceKey

Source§

const NAME: &'static str = "GovernanceKey"

Source§

const PACKAGE: &'static str = "penumbra.core.keys.v1"

Source§

impl Name for IdentityKey

Source§

const NAME: &'static str = "IdentityKey"

Source§

const PACKAGE: &'static str = "penumbra.core.keys.v1"

Source§

impl Name for PayloadKey

Source§

const NAME: &'static str = "PayloadKey"

Source§

const PACKAGE: &'static str = "penumbra.core.keys.v1"

Source§

impl Name for SpendKey

Source§

const NAME: &'static str = "SpendKey"

Source§

const PACKAGE: &'static str = "penumbra.core.keys.v1"

Source§

impl Name for WalletId

Source§

const NAME: &'static str = "WalletId"

Source§

const PACKAGE: &'static str = "penumbra.core.keys.v1"

Source§

impl Name for Amount

Source§

const NAME: &'static str = "Amount"

Source§

const PACKAGE: &'static str = "penumbra.core.num.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::transaction::v1::memo_view::Opaque

Source§

const NAME: &'static str = "Opaque"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::transaction::v1::memo_view::Visible

Source§

const NAME: &'static str = "Visible"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for Action

Source§

const NAME: &'static str = "Action"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for ActionPlan

Source§

const NAME: &'static str = "ActionPlan"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for ActionView

Source§

const NAME: &'static str = "ActionView"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for AuthorizationData

Source§

const NAME: &'static str = "AuthorizationData"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for CluePlan

Source§

const NAME: &'static str = "CluePlan"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for DetectionData

Source§

const NAME: &'static str = "DetectionData"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for DetectionDataPlan

Source§

const NAME: &'static str = "DetectionDataPlan"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for MemoCiphertext

Source§

const NAME: &'static str = "MemoCiphertext"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for MemoPlaintext

Source§

const NAME: &'static str = "MemoPlaintext"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for MemoPlaintextView

Source§

const NAME: &'static str = "MemoPlaintextView"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for MemoPlan

Source§

const NAME: &'static str = "MemoPlan"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for MemoView

Source§

const NAME: &'static str = "MemoView"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for NullifierWithNote

Source§

const NAME: &'static str = "NullifierWithNote"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for PayloadKeyWithCommitment

Source§

const NAME: &'static str = "PayloadKeyWithCommitment"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::core::transaction::v1::Transaction

Source§

const NAME: &'static str = "Transaction"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for TransactionBody

Source§

const NAME: &'static str = "TransactionBody"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for TransactionBodyView

Source§

const NAME: &'static str = "TransactionBodyView"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for TransactionParameters

Source§

const NAME: &'static str = "TransactionParameters"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for TransactionPerspective

Source§

const NAME: &'static str = "TransactionPerspective"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for TransactionPlan

Source§

const NAME: &'static str = "TransactionPlan"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for TransactionSummary

Source§

const NAME: &'static str = "TransactionSummary"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for TransactionView

Source§

const NAME: &'static str = "TransactionView"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for WitnessData

Source§

const NAME: &'static str = "WitnessData"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for CreationTransactionIdByNullifier

Source§

const NAME: &'static str = "CreationTransactionIdByNullifier"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for ExtendedMetadataById

Source§

const NAME: &'static str = "ExtendedMetadataById"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for NullificationTransactionIdByCommitment

Source§

const NAME: &'static str = "NullificationTransactionIdByCommitment"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for Effects

Source§

const NAME: &'static str = "Effects"

Source§

const PACKAGE: &'static str = "penumbra.core.transaction.v1"

Source§

impl Name for EffectHash

Source§

const NAME: &'static str = "EffectHash"

Source§

const PACKAGE: &'static str = "penumbra.core.txhash.v1"

Source§

impl Name for TransactionId

Source§

const NAME: &'static str = "TransactionId"

Source§

const PACKAGE: &'static str = "penumbra.core.txhash.v1"

Source§

impl Name for Clue

Source§

const NAME: &'static str = "Clue"

Source§

const PACKAGE: &'static str = "penumbra.crypto.decaf377_fmd.v1"

Source§

impl Name for DkgRound1Package

Source§

const NAME: &'static str = "DKGRound1Package"

Source§

const PACKAGE: &'static str = "penumbra.crypto.decaf377_frost.v1"

Source§

impl Name for DkgRound2Package

Source§

const NAME: &'static str = "DKGRound2Package"

Source§

const PACKAGE: &'static str = "penumbra.crypto.decaf377_frost.v1"

Source§

impl Name for NonceCommitment

Source§

const NAME: &'static str = "NonceCommitment"

Source§

const PACKAGE: &'static str = "penumbra.crypto.decaf377_frost.v1"

Source§

impl Name for SignatureShare

Source§

const NAME: &'static str = "SignatureShare"

Source§

const PACKAGE: &'static str = "penumbra.crypto.decaf377_frost.v1"

Source§

impl Name for SigningCommitments

Source§

const NAME: &'static str = "SigningCommitments"

Source§

const PACKAGE: &'static str = "penumbra.crypto.decaf377_frost.v1"

Source§

impl Name for SigningShare

Source§

const NAME: &'static str = "SigningShare"

Source§

const PACKAGE: &'static str = "penumbra.crypto.decaf377_frost.v1"

Source§

impl Name for VerifiableSecretSharingCommitment

Source§

const NAME: &'static str = "VerifiableSecretSharingCommitment"

Source§

const PACKAGE: &'static str = "penumbra.crypto.decaf377_frost.v1"

Source§

impl Name for BindingSignature

Source§

const NAME: &'static str = "BindingSignature"

Source§

const PACKAGE: &'static str = "penumbra.crypto.decaf377_rdsa.v1"

Source§

impl Name for SpendAuthSignature

Source§

const NAME: &'static str = "SpendAuthSignature"

Source§

const PACKAGE: &'static str = "penumbra.crypto.decaf377_rdsa.v1"

Source§

impl Name for SpendVerificationKey

Source§

const NAME: &'static str = "SpendVerificationKey"

Source§

const PACKAGE: &'static str = "penumbra.crypto.decaf377_rdsa.v1"

Source§

impl Name for MerklePathChunk

Source§

const NAME: &'static str = "MerklePathChunk"

Source§

const PACKAGE: &'static str = "penumbra.crypto.tct.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::crypto::tct::v1::MerkleRoot

Source§

const NAME: &'static str = "MerkleRoot"

Source§

const PACKAGE: &'static str = "penumbra.crypto.tct.v1"

Source§

impl Name for StateCommitment

Source§

const NAME: &'static str = "StateCommitment"

Source§

const PACKAGE: &'static str = "penumbra.crypto.tct.v1"

Source§

impl Name for StateCommitmentProof

Source§

const NAME: &'static str = "StateCommitmentProof"

Source§

const PACKAGE: &'static str = "penumbra.crypto.tct.v1"

Source§

impl Name for IdentifiedCommitments

Source§

const NAME: &'static str = "IdentifiedCommitments"

Source§

const PACKAGE: &'static str = "penumbra.custody.threshold.v1"

Source§

impl Name for PartialSigningPackage

Source§

const NAME: &'static str = "PartialSigningPackage"

Source§

const PACKAGE: &'static str = "penumbra.custody.threshold.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::custody::threshold::v1::dkg_round2::Inner

Source§

const NAME: &'static str = "Inner"

Source§

const PACKAGE: &'static str = "penumbra.custody.threshold.v1"

Source§

impl Name for TargetedPackage

Source§

const NAME: &'static str = "TargetedPackage"

Source§

const PACKAGE: &'static str = "penumbra.custody.threshold.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::custody::threshold::v1::follower_round1::Inner

Source§

const NAME: &'static str = "Inner"

Source§

const PACKAGE: &'static str = "penumbra.custody.threshold.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::custody::threshold::v1::follower_round2::Inner

Source§

const NAME: &'static str = "Inner"

Source§

const PACKAGE: &'static str = "penumbra.custody.threshold.v1"

Source§

impl Name for CoordinatorRound1

Source§

const NAME: &'static str = "CoordinatorRound1"

Source§

const PACKAGE: &'static str = "penumbra.custody.threshold.v1"

Source§

impl Name for CoordinatorRound2

Source§

const NAME: &'static str = "CoordinatorRound2"

Source§

const PACKAGE: &'static str = "penumbra.custody.threshold.v1"

Source§

impl Name for DkgRound1

Source§

const NAME: &'static str = "DKGRound1"

Source§

const PACKAGE: &'static str = "penumbra.custody.threshold.v1"

Source§

impl Name for DkgRound2

Source§

const NAME: &'static str = "DKGRound2"

Source§

const PACKAGE: &'static str = "penumbra.custody.threshold.v1"

Source§

impl Name for FollowerRound1

Source§

const NAME: &'static str = "FollowerRound1"

Source§

const PACKAGE: &'static str = "penumbra.custody.threshold.v1"

Source§

impl Name for FollowerRound2

Source§

const NAME: &'static str = "FollowerRound2"

Source§

const PACKAGE: &'static str = "penumbra.custody.threshold.v1"

Source§

impl Name for Signature

Source§

const NAME: &'static str = "Signature"

Source§

const PACKAGE: &'static str = "penumbra.custody.threshold.v1"

Source§

impl Name for VerificationKey

Source§

const NAME: &'static str = "VerificationKey"

Source§

const PACKAGE: &'static str = "penumbra.custody.threshold.v1"

Source§

impl Name for Ed25519

Source§

const NAME: &'static str = "Ed25519"

Source§

const PACKAGE: &'static str = "penumbra.custody.v1"

Source§

impl Name for AuthorizeRequest

Source§

const NAME: &'static str = "AuthorizeRequest"

Source§

const PACKAGE: &'static str = "penumbra.custody.v1"

Source§

impl Name for AuthorizeResponse

Source§

const NAME: &'static str = "AuthorizeResponse"

Source§

const PACKAGE: &'static str = "penumbra.custody.v1"

Source§

impl Name for AuthorizeValidatorDefinitionRequest

Source§

const NAME: &'static str = "AuthorizeValidatorDefinitionRequest"

Source§

const PACKAGE: &'static str = "penumbra.custody.v1"

Source§

impl Name for AuthorizeValidatorDefinitionResponse

Source§

const NAME: &'static str = "AuthorizeValidatorDefinitionResponse"

Source§

const PACKAGE: &'static str = "penumbra.custody.v1"

Source§

impl Name for AuthorizeValidatorVoteRequest

Source§

const NAME: &'static str = "AuthorizeValidatorVoteRequest"

Source§

const PACKAGE: &'static str = "penumbra.custody.v1"

Source§

impl Name for AuthorizeValidatorVoteResponse

Source§

const NAME: &'static str = "AuthorizeValidatorVoteResponse"

Source§

const PACKAGE: &'static str = "penumbra.custody.v1"

Source§

impl Name for ConfirmAddressRequest

Source§

const NAME: &'static str = "ConfirmAddressRequest"

Source§

const PACKAGE: &'static str = "penumbra.custody.v1"

Source§

impl Name for ConfirmAddressResponse

Source§

const NAME: &'static str = "ConfirmAddressResponse"

Source§

const PACKAGE: &'static str = "penumbra.custody.v1"

Source§

impl Name for ExportFullViewingKeyRequest

Source§

const NAME: &'static str = "ExportFullViewingKeyRequest"

Source§

const PACKAGE: &'static str = "penumbra.custody.v1"

Source§

impl Name for ExportFullViewingKeyResponse

Source§

const NAME: &'static str = "ExportFullViewingKeyResponse"

Source§

const PACKAGE: &'static str = "penumbra.custody.v1"

Source§

impl Name for PreAuthorization

Source§

const NAME: &'static str = "PreAuthorization"

Source§

const PACKAGE: &'static str = "penumbra.custody.v1"

Source§

impl Name for Contribution

Source§

const NAME: &'static str = "Contribution"

Source§

const PACKAGE: &'static str = "penumbra.tools.summoning.v1"

Source§

impl Name for Identify

Source§

const NAME: &'static str = "Identify"

Source§

const PACKAGE: &'static str = "penumbra.tools.summoning.v1"

Source§

impl Name for Confirm

Source§

const NAME: &'static str = "Confirm"

Source§

const PACKAGE: &'static str = "penumbra.tools.summoning.v1"

Source§

impl Name for ContributeNow

Source§

const NAME: &'static str = "ContributeNow"

Source§

const PACKAGE: &'static str = "penumbra.tools.summoning.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::tools::summoning::v1::participate_response::Position

Source§

const NAME: &'static str = "Position"

Source§

const PACKAGE: &'static str = "penumbra.tools.summoning.v1"

Source§

impl Name for CeremonyCrs

Source§

const NAME: &'static str = "CeremonyCrs"

Source§

const PACKAGE: &'static str = "penumbra.tools.summoning.v1"

Source§

impl Name for CeremonyLinkingProof

Source§

const NAME: &'static str = "CeremonyLinkingProof"

Source§

const PACKAGE: &'static str = "penumbra.tools.summoning.v1"

Source§

impl Name for CeremonyParentHashes

Source§

const NAME: &'static str = "CeremonyParentHashes"

Source§

const PACKAGE: &'static str = "penumbra.tools.summoning.v1"

Source§

impl Name for ParticipateRequest

Source§

const NAME: &'static str = "ParticipateRequest"

Source§

const PACKAGE: &'static str = "penumbra.tools.summoning.v1"

Source§

impl Name for ParticipateResponse

Source§

const NAME: &'static str = "ParticipateResponse"

Source§

const PACKAGE: &'static str = "penumbra.tools.summoning.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::util::tendermint_proxy::v1::AbciQueryRequest

Source§

const NAME: &'static str = "ABCIQueryRequest"

Source§

const PACKAGE: &'static str = "penumbra.util.tendermint_proxy.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::util::tendermint_proxy::v1::AbciQueryResponse

Source§

const NAME: &'static str = "ABCIQueryResponse"

Source§

const PACKAGE: &'static str = "penumbra.util.tendermint_proxy.v1"

Source§

impl Name for BroadcastTxAsyncRequest

Source§

const NAME: &'static str = "BroadcastTxAsyncRequest"

Source§

const PACKAGE: &'static str = "penumbra.util.tendermint_proxy.v1"

Source§

impl Name for BroadcastTxAsyncResponse

Source§

const NAME: &'static str = "BroadcastTxAsyncResponse"

Source§

const PACKAGE: &'static str = "penumbra.util.tendermint_proxy.v1"

Source§

impl Name for BroadcastTxSyncRequest

Source§

const NAME: &'static str = "BroadcastTxSyncRequest"

Source§

const PACKAGE: &'static str = "penumbra.util.tendermint_proxy.v1"

Source§

impl Name for BroadcastTxSyncResponse

Source§

const NAME: &'static str = "BroadcastTxSyncResponse"

Source§

const PACKAGE: &'static str = "penumbra.util.tendermint_proxy.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::util::tendermint_proxy::v1::GetBlockByHeightRequest

Source§

const NAME: &'static str = "GetBlockByHeightRequest"

Source§

const PACKAGE: &'static str = "penumbra.util.tendermint_proxy.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::util::tendermint_proxy::v1::GetBlockByHeightResponse

Source§

const NAME: &'static str = "GetBlockByHeightResponse"

Source§

const PACKAGE: &'static str = "penumbra.util.tendermint_proxy.v1"

Source§

impl Name for GetStatusRequest

Source§

const NAME: &'static str = "GetStatusRequest"

Source§

const PACKAGE: &'static str = "penumbra.util.tendermint_proxy.v1"

Source§

impl Name for GetStatusResponse

Source§

const NAME: &'static str = "GetStatusResponse"

Source§

const PACKAGE: &'static str = "penumbra.util.tendermint_proxy.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::util::tendermint_proxy::v1::GetTxRequest

Source§

const NAME: &'static str = "GetTxRequest"

Source§

const PACKAGE: &'static str = "penumbra.util.tendermint_proxy.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::util::tendermint_proxy::v1::GetTxResponse

Source§

const NAME: &'static str = "GetTxResponse"

Source§

const PACKAGE: &'static str = "penumbra.util.tendermint_proxy.v1"

Source§

impl Name for SyncInfo

Source§

const NAME: &'static str = "SyncInfo"

Source§

const PACKAGE: &'static str = "penumbra.util.tendermint_proxy.v1"

Source§

impl Name for Tag

Source§

const NAME: &'static str = "Tag"

Source§

const PACKAGE: &'static str = "penumbra.util.tendermint_proxy.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::util::tendermint_proxy::v1::TxResult

Source§

const NAME: &'static str = "TxResult"

Source§

const PACKAGE: &'static str = "penumbra.util.tendermint_proxy.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::authorize_and_build_response::BuildProgress

Source§

const NAME: &'static str = "BuildProgress"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::authorize_and_build_response::Complete

Source§

const NAME: &'static str = "Complete"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for BroadcastSuccess

Source§

const NAME: &'static str = "BroadcastSuccess"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for Confirmed

Source§

const NAME: &'static str = "Confirmed"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for AddressByIndexRequest

Source§

const NAME: &'static str = "AddressByIndexRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for AddressByIndexResponse

Source§

const NAME: &'static str = "AddressByIndexResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::AppParametersRequest

Source§

const NAME: &'static str = "AppParametersRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::AppParametersResponse

Source§

const NAME: &'static str = "AppParametersResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::AssetMetadataByIdRequest

Source§

const NAME: &'static str = "AssetMetadataByIdRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::AssetMetadataByIdResponse

Source§

const NAME: &'static str = "AssetMetadataByIdResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for AssetsRequest

Source§

const NAME: &'static str = "AssetsRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for AssetsResponse

Source§

const NAME: &'static str = "AssetsResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for AuctionsRequest

Source§

const NAME: &'static str = "AuctionsRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for AuctionsResponse

Source§

const NAME: &'static str = "AuctionsResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for AuthorizeAndBuildRequest

Source§

const NAME: &'static str = "AuthorizeAndBuildRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for AuthorizeAndBuildResponse

Source§

const NAME: &'static str = "AuthorizeAndBuildResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for BalancesRequest

Source§

const NAME: &'static str = "BalancesRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for BalancesResponse

Source§

const NAME: &'static str = "BalancesResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for BroadcastTransactionRequest

Source§

const NAME: &'static str = "BroadcastTransactionRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for BroadcastTransactionResponse

Source§

const NAME: &'static str = "BroadcastTransactionResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for DelegationsByAddressIndexRequest

Source§

const NAME: &'static str = "DelegationsByAddressIndexRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for DelegationsByAddressIndexResponse

Source§

const NAME: &'static str = "DelegationsByAddressIndexResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for EphemeralAddressRequest

Source§

const NAME: &'static str = "EphemeralAddressRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for EphemeralAddressResponse

Source§

const NAME: &'static str = "EphemeralAddressResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for FmdParametersRequest

Source§

const NAME: &'static str = "FMDParametersRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for FmdParametersResponse

Source§

const NAME: &'static str = "FMDParametersResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for GasPricesRequest

Source§

const NAME: &'static str = "GasPricesRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for GasPricesResponse

Source§

const NAME: &'static str = "GasPricesResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for IndexByAddressRequest

Source§

const NAME: &'static str = "IndexByAddressRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for IndexByAddressResponse

Source§

const NAME: &'static str = "IndexByAddressResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for NoteByCommitmentRequest

Source§

const NAME: &'static str = "NoteByCommitmentRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for NoteByCommitmentResponse

Source§

const NAME: &'static str = "NoteByCommitmentResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for NotesForVotingRequest

Source§

const NAME: &'static str = "NotesForVotingRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for NotesForVotingResponse

Source§

const NAME: &'static str = "NotesForVotingResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for NotesRequest

Source§

const NAME: &'static str = "NotesRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for NotesResponse

Source§

const NAME: &'static str = "NotesResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for NullifierStatusRequest

Source§

const NAME: &'static str = "NullifierStatusRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for NullifierStatusResponse

Source§

const NAME: &'static str = "NullifierStatusResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for OwnedPositionIdsRequest

Source§

const NAME: &'static str = "OwnedPositionIdsRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for OwnedPositionIdsResponse

Source§

const NAME: &'static str = "OwnedPositionIdsResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for SpendableNoteRecord

Source§

const NAME: &'static str = "SpendableNoteRecord"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::StatusRequest

Source§

const NAME: &'static str = "StatusRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::StatusResponse

Source§

const NAME: &'static str = "StatusResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for StatusStreamRequest

Source§

const NAME: &'static str = "StatusStreamRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for StatusStreamResponse

Source§

const NAME: &'static str = "StatusStreamResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for SwapByCommitmentRequest

Source§

const NAME: &'static str = "SwapByCommitmentRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for SwapByCommitmentResponse

Source§

const NAME: &'static str = "SwapByCommitmentResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for SwapRecord

Source§

const NAME: &'static str = "SwapRecord"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for TransactionInfo

Source§

const NAME: &'static str = "TransactionInfo"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for TransactionInfoByHashRequest

Source§

const NAME: &'static str = "TransactionInfoByHashRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for TransactionInfoByHashResponse

Source§

const NAME: &'static str = "TransactionInfoByHashResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for TransactionInfoRequest

Source§

const NAME: &'static str = "TransactionInfoRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for TransactionInfoResponse

Source§

const NAME: &'static str = "TransactionInfoResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for TransactionPlannerRequest

Source§

const NAME: &'static str = "TransactionPlannerRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for TransactionPlannerResponse

Source§

const NAME: &'static str = "TransactionPlannerResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for TransparentAddressRequest

Source§

const NAME: &'static str = "TransparentAddressRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for TransparentAddressResponse

Source§

const NAME: &'static str = "TransparentAddressResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for UnbondingTokensByAddressIndexRequest

Source§

const NAME: &'static str = "UnbondingTokensByAddressIndexRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for UnbondingTokensByAddressIndexResponse

Source§

const NAME: &'static str = "UnbondingTokensByAddressIndexResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for UnclaimedSwapsRequest

Source§

const NAME: &'static str = "UnclaimedSwapsRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for UnclaimedSwapsResponse

Source§

const NAME: &'static str = "UnclaimedSwapsResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for WalletIdRequest

Source§

const NAME: &'static str = "WalletIdRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for WalletIdResponse

Source§

const NAME: &'static str = "WalletIdResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for WitnessAndBuildRequest

Source§

const NAME: &'static str = "WitnessAndBuildRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for WitnessAndBuildResponse

Source§

const NAME: &'static str = "WitnessAndBuildResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for WitnessRequest

Source§

const NAME: &'static str = "WitnessRequest"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for WitnessResponse

Source§

const NAME: &'static str = "WitnessResponse"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::transaction_planner_request::ActionDutchAuctionEnd

Source§

const NAME: &'static str = "ActionDutchAuctionEnd"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::transaction_planner_request::ActionDutchAuctionSchedule

Source§

const NAME: &'static str = "ActionDutchAuctionSchedule"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::transaction_planner_request::ActionDutchAuctionWithdraw

Source§

const NAME: &'static str = "ActionDutchAuctionWithdraw"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::transaction_planner_request::Delegate

Source§

const NAME: &'static str = "Delegate"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::transaction_planner_request::DelegatorVote

Source§

const NAME: &'static str = "DelegatorVote"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::transaction_planner_request::Output

Source§

const NAME: &'static str = "Output"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::transaction_planner_request::PositionClose

Source§

const NAME: &'static str = "PositionClose"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::transaction_planner_request::PositionOpen

Source§

const NAME: &'static str = "PositionOpen"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::transaction_planner_request::PositionWithdraw

Source§

const NAME: &'static str = "PositionWithdraw"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::transaction_planner_request::Spend

Source§

const NAME: &'static str = "Spend"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::transaction_planner_request::Swap

Source§

const NAME: &'static str = "Swap"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::transaction_planner_request::SwapClaim

Source§

const NAME: &'static str = "SwapClaim"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::transaction_planner_request::Undelegate

Source§

const NAME: &'static str = "Undelegate"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::transaction_planner_request::UndelegateClaim

Source§

const NAME: &'static str = "UndelegateClaim"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::witness_and_build_response::BuildProgress

Source§

const NAME: &'static str = "BuildProgress"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for penumbra_sdk_proto::penumbra::view::v1::witness_and_build_response::Complete

Source§

const NAME: &'static str = "Complete"

Source§

const PACKAGE: &'static str = "penumbra.view.v1"

Source§

impl Name for CommitInfo

Source§

const NAME: &'static str = "CommitInfo"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for Event

Source§

const NAME: &'static str = "Event"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for EventAttribute

Source§

const NAME: &'static str = "EventAttribute"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for ExtendedCommitInfo

Source§

const NAME: &'static str = "ExtendedCommitInfo"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for ExtendedVoteInfo

Source§

const NAME: &'static str = "ExtendedVoteInfo"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for Misbehavior

Source§

const NAME: &'static str = "Misbehavior"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for Request

Source§

const NAME: &'static str = "Request"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for RequestApplySnapshotChunk

Source§

const NAME: &'static str = "RequestApplySnapshotChunk"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for RequestBeginBlock

Source§

const NAME: &'static str = "RequestBeginBlock"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for RequestCheckTx

Source§

const NAME: &'static str = "RequestCheckTx"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for RequestCommit

Source§

const NAME: &'static str = "RequestCommit"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for RequestDeliverTx

Source§

const NAME: &'static str = "RequestDeliverTx"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for RequestEcho

Source§

const NAME: &'static str = "RequestEcho"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for RequestEndBlock

Source§

const NAME: &'static str = "RequestEndBlock"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for RequestFlush

Source§

const NAME: &'static str = "RequestFlush"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for RequestInfo

Source§

const NAME: &'static str = "RequestInfo"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for RequestInitChain

Source§

const NAME: &'static str = "RequestInitChain"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for RequestListSnapshots

Source§

const NAME: &'static str = "RequestListSnapshots"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for RequestLoadSnapshotChunk

Source§

const NAME: &'static str = "RequestLoadSnapshotChunk"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for RequestOfferSnapshot

Source§

const NAME: &'static str = "RequestOfferSnapshot"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for RequestPrepareProposal

Source§

const NAME: &'static str = "RequestPrepareProposal"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for RequestProcessProposal

Source§

const NAME: &'static str = "RequestProcessProposal"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for RequestQuery

Source§

const NAME: &'static str = "RequestQuery"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for Response

Source§

const NAME: &'static str = "Response"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for ResponseApplySnapshotChunk

Source§

const NAME: &'static str = "ResponseApplySnapshotChunk"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for ResponseBeginBlock

Source§

const NAME: &'static str = "ResponseBeginBlock"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for ResponseCheckTx

Source§

const NAME: &'static str = "ResponseCheckTx"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for ResponseCommit

Source§

const NAME: &'static str = "ResponseCommit"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for ResponseDeliverTx

Source§

const NAME: &'static str = "ResponseDeliverTx"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for ResponseEcho

Source§

const NAME: &'static str = "ResponseEcho"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for ResponseEndBlock

Source§

const NAME: &'static str = "ResponseEndBlock"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for ResponseException

Source§

const NAME: &'static str = "ResponseException"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for ResponseFlush

Source§

const NAME: &'static str = "ResponseFlush"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for ResponseInfo

Source§

const NAME: &'static str = "ResponseInfo"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for ResponseInitChain

Source§

const NAME: &'static str = "ResponseInitChain"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for ResponseListSnapshots

Source§

const NAME: &'static str = "ResponseListSnapshots"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for ResponseLoadSnapshotChunk

Source§

const NAME: &'static str = "ResponseLoadSnapshotChunk"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for ResponseOfferSnapshot

Source§

const NAME: &'static str = "ResponseOfferSnapshot"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for ResponsePrepareProposal

Source§

const NAME: &'static str = "ResponsePrepareProposal"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for ResponseProcessProposal

Source§

const NAME: &'static str = "ResponseProcessProposal"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for ResponseQuery

Source§

const NAME: &'static str = "ResponseQuery"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for Snapshot

Source§

const NAME: &'static str = "Snapshot"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for penumbra_sdk_proto::tendermint::abci::TxResult

Source§

const NAME: &'static str = "TxResult"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for penumbra_sdk_proto::tendermint::abci::Validator

Source§

const NAME: &'static str = "Validator"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for ValidatorUpdate

Source§

const NAME: &'static str = "ValidatorUpdate"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for VoteInfo

Source§

const NAME: &'static str = "VoteInfo"

Source§

const PACKAGE: &'static str = "tendermint.abci"

Source§

impl Name for DominoOp

Source§

const NAME: &'static str = "DominoOp"

Source§

const PACKAGE: &'static str = "tendermint.crypto"

Source§

impl Name for Proof

Source§

const NAME: &'static str = "Proof"

Source§

const PACKAGE: &'static str = "tendermint.crypto"

Source§

impl Name for penumbra_sdk_proto::tendermint::crypto::ProofOp

Source§

const NAME: &'static str = "ProofOp"

Source§

const PACKAGE: &'static str = "tendermint.crypto"

Source§

impl Name for penumbra_sdk_proto::tendermint::crypto::ProofOps

Source§

const NAME: &'static str = "ProofOps"

Source§

const PACKAGE: &'static str = "tendermint.crypto"

Source§

impl Name for PublicKey

Source§

const NAME: &'static str = "PublicKey"

Source§

const PACKAGE: &'static str = "tendermint.crypto"

Source§

impl Name for ValueOp

Source§

const NAME: &'static str = "ValueOp"

Source§

const PACKAGE: &'static str = "tendermint.crypto"

Source§

impl Name for DefaultNodeInfo

Source§

const NAME: &'static str = "DefaultNodeInfo"

Source§

const PACKAGE: &'static str = "tendermint.p2p"

Source§

impl Name for DefaultNodeInfoOther

Source§

const NAME: &'static str = "DefaultNodeInfoOther"

Source§

const PACKAGE: &'static str = "tendermint.p2p"

Source§

impl Name for NetAddress

Source§

const NAME: &'static str = "NetAddress"

Source§

const PACKAGE: &'static str = "tendermint.p2p"

Source§

impl Name for ProtocolVersion

Source§

const NAME: &'static str = "ProtocolVersion"

Source§

const PACKAGE: &'static str = "tendermint.p2p"

Source§

impl Name for penumbra_sdk_proto::tendermint::types::Block

Source§

const NAME: &'static str = "Block"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for BlockId

Source§

const NAME: &'static str = "BlockID"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for BlockMeta

Source§

const NAME: &'static str = "BlockMeta"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for BlockParams

Source§

const NAME: &'static str = "BlockParams"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for Commit

Source§

const NAME: &'static str = "Commit"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for CommitSig

Source§

const NAME: &'static str = "CommitSig"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for ConsensusParams

Source§

const NAME: &'static str = "ConsensusParams"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for penumbra_sdk_proto::tendermint::types::Data

Source§

const NAME: &'static str = "Data"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for DuplicateVoteEvidence

Source§

const NAME: &'static str = "DuplicateVoteEvidence"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for Evidence

Source§

const NAME: &'static str = "Evidence"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for EvidenceList

Source§

const NAME: &'static str = "EvidenceList"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for EvidenceParams

Source§

const NAME: &'static str = "EvidenceParams"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for HashedParams

Source§

const NAME: &'static str = "HashedParams"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for penumbra_sdk_proto::tendermint::types::Header

Source§

const NAME: &'static str = "Header"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for LightBlock

Source§

const NAME: &'static str = "LightBlock"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for LightClientAttackEvidence

Source§

const NAME: &'static str = "LightClientAttackEvidence"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for Part

Source§

const NAME: &'static str = "Part"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for PartSetHeader

Source§

const NAME: &'static str = "PartSetHeader"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for penumbra_sdk_proto::tendermint::types::Proposal

Source§

const NAME: &'static str = "Proposal"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for SignedHeader

Source§

const NAME: &'static str = "SignedHeader"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for SimpleValidator

Source§

const NAME: &'static str = "SimpleValidator"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for TxProof

Source§

const NAME: &'static str = "TxProof"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for penumbra_sdk_proto::tendermint::types::Validator

Source§

const NAME: &'static str = "Validator"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for ValidatorParams

Source§

const NAME: &'static str = "ValidatorParams"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for ValidatorSet

Source§

const NAME: &'static str = "ValidatorSet"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for VersionParams

Source§

const NAME: &'static str = "VersionParams"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for penumbra_sdk_proto::tendermint::types::Vote

Source§

const NAME: &'static str = "Vote"

Source§

const PACKAGE: &'static str = "tendermint.types"

Source§

impl Name for App

Source§

const NAME: &'static str = "App"

Source§

const PACKAGE: &'static str = "tendermint.version"

Source§

impl Name for Consensus

Source§

const NAME: &'static str = "Consensus"

Source§

const PACKAGE: &'static str = "tendermint.version"