bnsd

package
v1.0.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 12, 2020 License: Apache-2.0 Imports: 45 Imported by: 1

Documentation

Overview

Package app links together all the various components to construct the bnsd app.

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidLengthCodec = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowCodec   = fmt.Errorf("proto: integer overflow")
)
View Source
var CronTaskMarshaler = taskMarshaler{}

CronTaskMarshaler is a task marshaler implementation to be used by the bnsd application when dealing with scheduled tasks.

This implementation relies on the CronTask protobuf declaration.

Functions

func Application

func Application(
	name string,
	h weave.Handler,
	tx weave.TxDecoder,
	dbPath string,
	options *server.Options,
) (app.BaseApp, error)

Application constructs a basic ABCI application with the given arguments. If you are not sure what to use for the Handler, just use Stack().

func Authenticator

func Authenticator() x.Authenticator

Authenticator returns the typical authentication, just using public key signatures

func Chain

func Chain(authFn x.Authenticator, minFee coin.Coin) app.Decorators

Chain returns a chain of decorators, to handle authentication, fees, logging, and recovery

func CommitKVStore

func CommitKVStore(dbPath string) (weave.CommitKVStore, error)

CommitKVStore returns an initialized KVStore that persists the data to the named path.

func CronStack added in v0.19.0

func CronStack() weave.Handler

CronStack wires up a standard router with a cron specific decorator chain. This can be passed into BaseApp. Cron stack configuration is a subset of the main stack. It is using the same components but not all functionalities are needed or expected (ie no message fee).

func DecorateApp added in v0.11.2

func DecorateApp(application app.BaseApp, logger log.Logger) app.BaseApp

DecorateApp adds initializers and Logger to an Application

func Examples

func Examples() []commands.Example

Examples generates some example structs to dump out with testgen

func GenInitOptions

func GenInitOptions(args []string) (json.RawMessage, error)

GenInitOptions will produce some basic options for one rich account, to use for dev mode

You can set

func GenerateApp

func GenerateApp(options *server.Options) (abci.Application, error)

GenerateApp is used to create a stub for server/start.go command

func GenerateCoinKey

func GenerateCoinKey() (weave.Address, string, error)

GenerateCoinKey returns the address of a public key, along with a json representation of the keys. You can give coins to this address and import the keys in the js client to use them

func InlineApp added in v0.11.2

func InlineApp(kv weave.CommitKVStore, logger log.Logger, debug bool) abci.Application

InlineApp will take a previously prepared CommitStore and return a complete Application

func QueryRouter

func QueryRouter(minFee coin.Coin) weave.QueryRouter

QueryRouter returns a default query router.

func Router

func Router(authFn x.Authenticator, issuer weave.Address) *app.Router

Router returns a default router, only dispatching to the cash.SendMsg

func Stack

func Stack(issuer weave.Address, minFee coin.Coin) weave.Handler

Stack wires up a standard router with a standard decorator chain. This can be passed into BaseApp.

func TxDecoder

func TxDecoder(bz []byte) (weave.Tx, error)

TxDecoder creates a Tx and unmarshals bytes into it

Types

type CronTask added in v0.19.0

type CronTask struct {
	// Authenticators contains a list of conditions that authenticate execution
	// of this task.
	// This is one of the main differences between the CronTask and Tx entities.
	// CronTask is created interanlly and does not have to be signed. Because we
	// use the same handlers as for the Tx to process a cron task, we must
	// provide authentication method. This attribute contains all authentication
	// conditions required for execution, that will be inserted into the context.
	Authenticators []github_com_iov_one_weave.Condition `protobuf:"bytes,1,rep,name=authenticators,proto3,casttype=github.com/iov-one/weave.Condition" json:"authenticators,omitempty"`
	// Use the same indexes for the messages as the Tx message.
	//
	// Types that are valid to be assigned to Sum:
	//	*CronTask_EscrowReleaseMsg
	//	*CronTask_EscrowReturnMsg
	//	*CronTask_DistributionDistributeMsg
	//	*CronTask_AswapReleaseMsg
	//	*CronTask_GovTallyMsg
	Sum isCronTask_Sum `protobuf_oneof:"sum"`
}

CronTask is a format used by the CronMarshaler to marshal and unmarshal cron task.

When there is a gap in message sequence numbers - that most likely means some old fields got deprecated. This is done to maintain binary compatibility.

func (*CronTask) Descriptor added in v0.19.0

func (*CronTask) Descriptor() ([]byte, []int)

func (*CronTask) GetAswapReleaseMsg added in v0.19.0

func (m *CronTask) GetAswapReleaseMsg() *aswap.ReleaseMsg

func (*CronTask) GetAuthenticators added in v0.19.0

func (m *CronTask) GetAuthenticators() []github_com_iov_one_weave.Condition

func (*CronTask) GetDistributionDistributeMsg added in v0.19.0

func (m *CronTask) GetDistributionDistributeMsg() *distribution.DistributeMsg

func (*CronTask) GetEscrowReleaseMsg added in v0.19.0

func (m *CronTask) GetEscrowReleaseMsg() *escrow.ReleaseMsg

func (*CronTask) GetEscrowReturnMsg added in v0.19.0

func (m *CronTask) GetEscrowReturnMsg() *escrow.ReturnMsg

func (*CronTask) GetGovTallyMsg added in v0.19.0

func (m *CronTask) GetGovTallyMsg() *gov.TallyMsg

func (*CronTask) GetSum added in v0.19.0

func (m *CronTask) GetSum() isCronTask_Sum

func (*CronTask) Marshal added in v0.19.0

func (m *CronTask) Marshal() (dAtA []byte, err error)

func (*CronTask) MarshalTo added in v0.19.0

func (m *CronTask) MarshalTo(dAtA []byte) (int, error)

func (*CronTask) ProtoMessage added in v0.19.0

func (*CronTask) ProtoMessage()

func (*CronTask) Reset added in v0.19.0

func (m *CronTask) Reset()

func (*CronTask) Size added in v0.19.0

func (m *CronTask) Size() (n int)

func (*CronTask) String added in v0.19.0

func (m *CronTask) String() string

func (*CronTask) Unmarshal added in v0.19.0

func (m *CronTask) Unmarshal(dAtA []byte) error

func (*CronTask) XXX_DiscardUnknown added in v0.19.0

func (m *CronTask) XXX_DiscardUnknown()

func (*CronTask) XXX_Marshal added in v0.19.0

func (m *CronTask) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CronTask) XXX_Merge added in v0.19.0

func (m *CronTask) XXX_Merge(src proto.Message)

func (*CronTask) XXX_OneofFuncs added in v0.19.0

func (*CronTask) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{})

XXX_OneofFuncs is for the internal use of the proto package.

func (*CronTask) XXX_Size added in v0.19.0

func (m *CronTask) XXX_Size() int

func (*CronTask) XXX_Unmarshal added in v0.19.0

func (m *CronTask) XXX_Unmarshal(b []byte) error

type CronTask_AswapReleaseMsg added in v0.19.0

type CronTask_AswapReleaseMsg struct {
	AswapReleaseMsg *aswap.ReleaseMsg `protobuf:"bytes,71,opt,name=aswap_release_msg,json=aswapReleaseMsg,proto3,oneof"`
}

func (*CronTask_AswapReleaseMsg) MarshalTo added in v0.19.0

func (m *CronTask_AswapReleaseMsg) MarshalTo(dAtA []byte) (int, error)

func (*CronTask_AswapReleaseMsg) Size added in v0.19.0

func (m *CronTask_AswapReleaseMsg) Size() (n int)

type CronTask_DistributionDistributeMsg added in v0.19.0

type CronTask_DistributionDistributeMsg struct {
	DistributionDistributeMsg *distribution.DistributeMsg `protobuf:"bytes,67,opt,name=distribution_distribute_msg,json=distributionDistributeMsg,proto3,oneof"`
}

func (*CronTask_DistributionDistributeMsg) MarshalTo added in v0.19.0

func (m *CronTask_DistributionDistributeMsg) MarshalTo(dAtA []byte) (int, error)

func (*CronTask_DistributionDistributeMsg) Size added in v0.19.0

type CronTask_EscrowReleaseMsg added in v0.19.0

type CronTask_EscrowReleaseMsg struct {
	EscrowReleaseMsg *escrow.ReleaseMsg `protobuf:"bytes,53,opt,name=escrow_release_msg,json=escrowReleaseMsg,proto3,oneof"`
}

func (*CronTask_EscrowReleaseMsg) MarshalTo added in v0.19.0

func (m *CronTask_EscrowReleaseMsg) MarshalTo(dAtA []byte) (int, error)

func (*CronTask_EscrowReleaseMsg) Size added in v0.19.0

func (m *CronTask_EscrowReleaseMsg) Size() (n int)

type CronTask_EscrowReturnMsg added in v0.19.0

type CronTask_EscrowReturnMsg struct {
	EscrowReturnMsg *escrow.ReturnMsg `protobuf:"bytes,54,opt,name=escrow_return_msg,json=escrowReturnMsg,proto3,oneof"`
}

func (*CronTask_EscrowReturnMsg) MarshalTo added in v0.19.0

func (m *CronTask_EscrowReturnMsg) MarshalTo(dAtA []byte) (int, error)

func (*CronTask_EscrowReturnMsg) Size added in v0.19.0

func (m *CronTask_EscrowReturnMsg) Size() (n int)

type CronTask_GovTallyMsg added in v0.19.0

type CronTask_GovTallyMsg struct {
	GovTallyMsg *gov.TallyMsg `protobuf:"bytes,76,opt,name=gov_tally_msg,json=govTallyMsg,proto3,oneof"`
}

func (*CronTask_GovTallyMsg) MarshalTo added in v0.19.0

func (m *CronTask_GovTallyMsg) MarshalTo(dAtA []byte) (int, error)

func (*CronTask_GovTallyMsg) Size added in v0.19.0

func (m *CronTask_GovTallyMsg) Size() (n int)

type ExecuteBatchMsg added in v0.17.0

type ExecuteBatchMsg struct {
	Messages []ExecuteBatchMsg_Union `protobuf:"bytes,1,rep,name=messages,proto3" json:"messages"`
}

ExecuteBatchMsg encapsulates multiple messages to support batch transaction

func (*ExecuteBatchMsg) Descriptor added in v0.17.0

func (*ExecuteBatchMsg) Descriptor() ([]byte, []int)

func (*ExecuteBatchMsg) GetMessages added in v0.17.0

func (m *ExecuteBatchMsg) GetMessages() []ExecuteBatchMsg_Union

func (*ExecuteBatchMsg) Marshal added in v0.17.0

func (m *ExecuteBatchMsg) Marshal() (dAtA []byte, err error)

func (*ExecuteBatchMsg) MarshalTo added in v0.17.0

func (m *ExecuteBatchMsg) MarshalTo(dAtA []byte) (int, error)

func (*ExecuteBatchMsg) MsgList added in v0.17.0

func (msg *ExecuteBatchMsg) MsgList() ([]weave.Msg, error)

func (*ExecuteBatchMsg) Path added in v0.17.0

func (*ExecuteBatchMsg) Path() string

func (*ExecuteBatchMsg) ProtoMessage added in v0.17.0

func (*ExecuteBatchMsg) ProtoMessage()

func (*ExecuteBatchMsg) Reset added in v0.17.0

func (m *ExecuteBatchMsg) Reset()

func (*ExecuteBatchMsg) Size added in v0.17.0

func (m *ExecuteBatchMsg) Size() (n int)

func (*ExecuteBatchMsg) String added in v0.17.0

func (m *ExecuteBatchMsg) String() string

func (*ExecuteBatchMsg) Unmarshal added in v0.17.0

func (m *ExecuteBatchMsg) Unmarshal(dAtA []byte) error

func (*ExecuteBatchMsg) Validate added in v0.17.0

func (msg *ExecuteBatchMsg) Validate() error

func (*ExecuteBatchMsg) XXX_DiscardUnknown added in v0.17.0

func (m *ExecuteBatchMsg) XXX_DiscardUnknown()

func (*ExecuteBatchMsg) XXX_Marshal added in v0.17.0

func (m *ExecuteBatchMsg) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ExecuteBatchMsg) XXX_Merge added in v0.17.0

func (m *ExecuteBatchMsg) XXX_Merge(src proto.Message)

func (*ExecuteBatchMsg) XXX_Size added in v0.17.0

func (m *ExecuteBatchMsg) XXX_Size() int

func (*ExecuteBatchMsg) XXX_Unmarshal added in v0.17.0

func (m *ExecuteBatchMsg) XXX_Unmarshal(b []byte) error

type ExecuteBatchMsg_Union added in v0.17.0

type ExecuteBatchMsg_Union struct {
	// Types that are valid to be assigned to Sum:
	//	*ExecuteBatchMsg_Union_CashSendMsg
	//	*ExecuteBatchMsg_Union_EscrowCreateMsg
	//	*ExecuteBatchMsg_Union_EscrowReleaseMsg
	//	*ExecuteBatchMsg_Union_EscrowReturnMsg
	//	*ExecuteBatchMsg_Union_EscrowUpdatePartiesMsg
	//	*ExecuteBatchMsg_Union_MultisigCreateMsg
	//	*ExecuteBatchMsg_Union_MultisigUpdateMsg
	//	*ExecuteBatchMsg_Union_ValidatorsApplyDiffMsg
	//	*ExecuteBatchMsg_Union_CurrencyCreateMsg
	//	*ExecuteBatchMsg_Union_UsernameRegisterTokenMsg
	//	*ExecuteBatchMsg_Union_UsernameTransferTokenMsg
	//	*ExecuteBatchMsg_Union_UsernameChangeTokenTargetsMsg
	//	*ExecuteBatchMsg_Union_UsernameUpdateConfigurationMsg
	//	*ExecuteBatchMsg_Union_DistributionCreateMsg
	//	*ExecuteBatchMsg_Union_DistributionMsg
	//	*ExecuteBatchMsg_Union_DistributionResetMsg
	//	*ExecuteBatchMsg_Union_MsgfeeSetMsgFeeMsg
	//	*ExecuteBatchMsg_Union_DatamigrationExecuteMigrationMsg
	//	*ExecuteBatchMsg_Union_AccountUpdateConfigurationMsg
	//	*ExecuteBatchMsg_Union_AccountRegisterDomainMsg
	//	*ExecuteBatchMsg_Union_AccountReplaceAccountMsgFeesMsg
	//	*ExecuteBatchMsg_Union_AccountTransferDomainMsg
	//	*ExecuteBatchMsg_Union_AccountRenewDomainMsg
	//	*ExecuteBatchMsg_Union_AccountDeleteDomainMsg
	//	*ExecuteBatchMsg_Union_AccountRegisterAccountMsg
	//	*ExecuteBatchMsg_Union_AccountTransferAccountMsg
	//	*ExecuteBatchMsg_Union_AccountReplaceAccountTargetsMsg
	//	*ExecuteBatchMsg_Union_AccountDeleteAccountMsg
	//	*ExecuteBatchMsg_Union_AccountFlushDomainMsg
	//	*ExecuteBatchMsg_Union_AccountRenewAccountMsg
	//	*ExecuteBatchMsg_Union_AccountAddAccountCertificateMsg
	//	*ExecuteBatchMsg_Union_AccountDeleteAccountCertificateMsg
	//	*ExecuteBatchMsg_Union_CashUpdateConfigurationMsg
	//	*ExecuteBatchMsg_Union_TxfeeUpdateConfigurationMsg
	//	*ExecuteBatchMsg_Union_TermdepositCreateDepositContractMsg
	//	*ExecuteBatchMsg_Union_TermdepositDepositMsg
	//	*ExecuteBatchMsg_Union_TermdepositReleaseDepositMsg
	//	*ExecuteBatchMsg_Union_TermdepositUpdateConfigurationMsg
	//	*ExecuteBatchMsg_Union_QualityscoreUpdateConfigurationMsg
	//	*ExecuteBatchMsg_Union_PreregistrationUpdateConfigurationMsg
	//	*ExecuteBatchMsg_Union_MsgfeeUpdateConfigurationMsg
	Sum isExecuteBatchMsg_Union_Sum `protobuf_oneof:"sum"`
}

func (*ExecuteBatchMsg_Union) Descriptor added in v0.17.0

func (*ExecuteBatchMsg_Union) Descriptor() ([]byte, []int)

func (*ExecuteBatchMsg_Union) GetAccountAddAccountCertificateMsg added in v0.24.0

func (m *ExecuteBatchMsg_Union) GetAccountAddAccountCertificateMsg() *account.AddAccountCertificateMsg

func (*ExecuteBatchMsg_Union) GetAccountDeleteAccountCertificateMsg added in v0.24.0

func (m *ExecuteBatchMsg_Union) GetAccountDeleteAccountCertificateMsg() *account.DeleteAccountCertificateMsg

func (*ExecuteBatchMsg_Union) GetAccountDeleteAccountMsg added in v0.24.0

func (m *ExecuteBatchMsg_Union) GetAccountDeleteAccountMsg() *account.DeleteAccountMsg

func (*ExecuteBatchMsg_Union) GetAccountDeleteDomainMsg added in v0.24.0

func (m *ExecuteBatchMsg_Union) GetAccountDeleteDomainMsg() *account.DeleteDomainMsg

func (*ExecuteBatchMsg_Union) GetAccountFlushDomainMsg added in v0.24.0

func (m *ExecuteBatchMsg_Union) GetAccountFlushDomainMsg() *account.FlushDomainMsg

func (*ExecuteBatchMsg_Union) GetAccountRegisterAccountMsg added in v0.24.0

func (m *ExecuteBatchMsg_Union) GetAccountRegisterAccountMsg() *account.RegisterAccountMsg

func (*ExecuteBatchMsg_Union) GetAccountRegisterDomainMsg added in v0.24.0

func (m *ExecuteBatchMsg_Union) GetAccountRegisterDomainMsg() *account.RegisterDomainMsg

func (*ExecuteBatchMsg_Union) GetAccountRenewAccountMsg added in v0.24.0

func (m *ExecuteBatchMsg_Union) GetAccountRenewAccountMsg() *account.RenewAccountMsg

func (*ExecuteBatchMsg_Union) GetAccountRenewDomainMsg added in v0.24.0

func (m *ExecuteBatchMsg_Union) GetAccountRenewDomainMsg() *account.RenewDomainMsg

func (*ExecuteBatchMsg_Union) GetAccountReplaceAccountMsgFeesMsg added in v0.24.0

func (m *ExecuteBatchMsg_Union) GetAccountReplaceAccountMsgFeesMsg() *account.ReplaceAccountMsgFeesMsg

func (*ExecuteBatchMsg_Union) GetAccountReplaceAccountTargetsMsg added in v0.24.0

func (m *ExecuteBatchMsg_Union) GetAccountReplaceAccountTargetsMsg() *account.ReplaceAccountTargetsMsg

func (*ExecuteBatchMsg_Union) GetAccountTransferAccountMsg added in v0.24.0

func (m *ExecuteBatchMsg_Union) GetAccountTransferAccountMsg() *account.TransferAccountMsg

func (*ExecuteBatchMsg_Union) GetAccountTransferDomainMsg added in v0.24.0

func (m *ExecuteBatchMsg_Union) GetAccountTransferDomainMsg() *account.TransferDomainMsg

func (*ExecuteBatchMsg_Union) GetAccountUpdateConfigurationMsg added in v0.24.0

func (m *ExecuteBatchMsg_Union) GetAccountUpdateConfigurationMsg() *account.UpdateConfigurationMsg

func (*ExecuteBatchMsg_Union) GetCashSendMsg added in v0.17.0

func (m *ExecuteBatchMsg_Union) GetCashSendMsg() *cash.SendMsg

func (*ExecuteBatchMsg_Union) GetCashUpdateConfigurationMsg added in v0.24.0

func (m *ExecuteBatchMsg_Union) GetCashUpdateConfigurationMsg() *cash.UpdateConfigurationMsg

func (*ExecuteBatchMsg_Union) GetCurrencyCreateMsg added in v0.17.0

func (m *ExecuteBatchMsg_Union) GetCurrencyCreateMsg() *currency.CreateMsg

func (*ExecuteBatchMsg_Union) GetDatamigrationExecuteMigrationMsg added in v0.24.0

func (m *ExecuteBatchMsg_Union) GetDatamigrationExecuteMigrationMsg() *datamigration.ExecuteMigrationMsg

func (*ExecuteBatchMsg_Union) GetDistributionCreateMsg added in v0.17.0

func (m *ExecuteBatchMsg_Union) GetDistributionCreateMsg() *distribution.CreateMsg

func (*ExecuteBatchMsg_Union) GetDistributionMsg added in v0.17.0

func (m *ExecuteBatchMsg_Union) GetDistributionMsg() *distribution.DistributeMsg

func (*ExecuteBatchMsg_Union) GetDistributionResetMsg added in v0.17.0

func (m *ExecuteBatchMsg_Union) GetDistributionResetMsg() *distribution.ResetMsg

func (*ExecuteBatchMsg_Union) GetEscrowCreateMsg added in v0.17.0

func (m *ExecuteBatchMsg_Union) GetEscrowCreateMsg() *escrow.CreateMsg

func (*ExecuteBatchMsg_Union) GetEscrowReleaseMsg added in v0.17.0

func (m *ExecuteBatchMsg_Union) GetEscrowReleaseMsg() *escrow.ReleaseMsg

func (*ExecuteBatchMsg_Union) GetEscrowReturnMsg added in v0.17.0

func (m *ExecuteBatchMsg_Union) GetEscrowReturnMsg() *escrow.ReturnMsg

func (*ExecuteBatchMsg_Union) GetEscrowUpdatePartiesMsg added in v0.17.0

func (m *ExecuteBatchMsg_Union) GetEscrowUpdatePartiesMsg() *escrow.UpdatePartiesMsg

func (*ExecuteBatchMsg_Union) GetMsgfeeSetMsgFeeMsg added in v0.21.3

func (m *ExecuteBatchMsg_Union) GetMsgfeeSetMsgFeeMsg() *msgfee.SetMsgFeeMsg

func (*ExecuteBatchMsg_Union) GetMsgfeeUpdateConfigurationMsg added in v1.0.0

func (m *ExecuteBatchMsg_Union) GetMsgfeeUpdateConfigurationMsg() *msgfee.UpdateConfigurationMsg

func (*ExecuteBatchMsg_Union) GetMultisigCreateMsg added in v0.17.0

func (m *ExecuteBatchMsg_Union) GetMultisigCreateMsg() *multisig.CreateMsg

func (*ExecuteBatchMsg_Union) GetMultisigUpdateMsg added in v0.17.0

func (m *ExecuteBatchMsg_Union) GetMultisigUpdateMsg() *multisig.UpdateMsg

func (*ExecuteBatchMsg_Union) GetPreregistrationUpdateConfigurationMsg added in v1.0.0

func (m *ExecuteBatchMsg_Union) GetPreregistrationUpdateConfigurationMsg() *preregistration.UpdateConfigurationMsg

func (*ExecuteBatchMsg_Union) GetQualityscoreUpdateConfigurationMsg added in v1.0.0

func (m *ExecuteBatchMsg_Union) GetQualityscoreUpdateConfigurationMsg() *qualityscore.UpdateConfigurationMsg

func (*ExecuteBatchMsg_Union) GetSum added in v0.17.0

func (m *ExecuteBatchMsg_Union) GetSum() isExecuteBatchMsg_Union_Sum

func (*ExecuteBatchMsg_Union) GetTermdepositCreateDepositContractMsg added in v1.0.0

func (m *ExecuteBatchMsg_Union) GetTermdepositCreateDepositContractMsg() *termdeposit.CreateDepositContractMsg

func (*ExecuteBatchMsg_Union) GetTermdepositDepositMsg added in v1.0.0

func (m *ExecuteBatchMsg_Union) GetTermdepositDepositMsg() *termdeposit.DepositMsg

func (*ExecuteBatchMsg_Union) GetTermdepositReleaseDepositMsg added in v1.0.0

func (m *ExecuteBatchMsg_Union) GetTermdepositReleaseDepositMsg() *termdeposit.ReleaseDepositMsg

func (*ExecuteBatchMsg_Union) GetTermdepositUpdateConfigurationMsg added in v1.0.0

func (m *ExecuteBatchMsg_Union) GetTermdepositUpdateConfigurationMsg() *termdeposit.UpdateConfigurationMsg

func (*ExecuteBatchMsg_Union) GetTxfeeUpdateConfigurationMsg added in v0.25.0

func (m *ExecuteBatchMsg_Union) GetTxfeeUpdateConfigurationMsg() *txfee.UpdateConfigurationMsg

func (*ExecuteBatchMsg_Union) GetUsernameChangeTokenTargetsMsg added in v0.17.0

func (m *ExecuteBatchMsg_Union) GetUsernameChangeTokenTargetsMsg() *username.ChangeTokenTargetsMsg

func (*ExecuteBatchMsg_Union) GetUsernameRegisterTokenMsg added in v0.17.0

func (m *ExecuteBatchMsg_Union) GetUsernameRegisterTokenMsg() *username.RegisterTokenMsg

func (*ExecuteBatchMsg_Union) GetUsernameTransferTokenMsg added in v0.17.0

func (m *ExecuteBatchMsg_Union) GetUsernameTransferTokenMsg() *username.TransferTokenMsg

func (*ExecuteBatchMsg_Union) GetUsernameUpdateConfigurationMsg added in v0.22.0

func (m *ExecuteBatchMsg_Union) GetUsernameUpdateConfigurationMsg() *username.UpdateConfigurationMsg

func (*ExecuteBatchMsg_Union) GetValidatorsApplyDiffMsg added in v0.17.0

func (m *ExecuteBatchMsg_Union) GetValidatorsApplyDiffMsg() *validators.ApplyDiffMsg

func (*ExecuteBatchMsg_Union) Marshal added in v0.17.0

func (m *ExecuteBatchMsg_Union) Marshal() (dAtA []byte, err error)

func (*ExecuteBatchMsg_Union) MarshalTo added in v0.17.0

func (m *ExecuteBatchMsg_Union) MarshalTo(dAtA []byte) (int, error)

func (*ExecuteBatchMsg_Union) ProtoMessage added in v0.17.0

func (*ExecuteBatchMsg_Union) ProtoMessage()

func (*ExecuteBatchMsg_Union) Reset added in v0.17.0

func (m *ExecuteBatchMsg_Union) Reset()

func (*ExecuteBatchMsg_Union) Size added in v0.17.0

func (m *ExecuteBatchMsg_Union) Size() (n int)

func (*ExecuteBatchMsg_Union) String added in v0.17.0

func (m *ExecuteBatchMsg_Union) String() string

func (*ExecuteBatchMsg_Union) Unmarshal added in v0.17.0

func (m *ExecuteBatchMsg_Union) Unmarshal(dAtA []byte) error

func (*ExecuteBatchMsg_Union) XXX_DiscardUnknown added in v0.17.0

func (m *ExecuteBatchMsg_Union) XXX_DiscardUnknown()

func (*ExecuteBatchMsg_Union) XXX_Marshal added in v0.17.0

func (m *ExecuteBatchMsg_Union) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ExecuteBatchMsg_Union) XXX_Merge added in v0.17.0

func (m *ExecuteBatchMsg_Union) XXX_Merge(src proto.Message)

func (*ExecuteBatchMsg_Union) XXX_OneofFuncs added in v0.17.0

func (*ExecuteBatchMsg_Union) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{})

XXX_OneofFuncs is for the internal use of the proto package.

func (*ExecuteBatchMsg_Union) XXX_Size added in v0.17.0

func (m *ExecuteBatchMsg_Union) XXX_Size() int

func (*ExecuteBatchMsg_Union) XXX_Unmarshal added in v0.17.0

func (m *ExecuteBatchMsg_Union) XXX_Unmarshal(b []byte) error

type ExecuteBatchMsg_Union_AccountAddAccountCertificateMsg added in v0.24.0

type ExecuteBatchMsg_Union_AccountAddAccountCertificateMsg struct {
	AccountAddAccountCertificateMsg *account.AddAccountCertificateMsg `protobuf:"bytes,94,opt,name=account_add_account_certificate_msg,json=accountAddAccountCertificateMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_AccountAddAccountCertificateMsg) MarshalTo added in v0.24.0

func (*ExecuteBatchMsg_Union_AccountAddAccountCertificateMsg) Size added in v0.24.0

type ExecuteBatchMsg_Union_AccountDeleteAccountCertificateMsg added in v0.24.0

type ExecuteBatchMsg_Union_AccountDeleteAccountCertificateMsg struct {
	AccountDeleteAccountCertificateMsg *account.DeleteAccountCertificateMsg `protobuf:"bytes,95,opt,name=account_delete_account_certificate_msg,json=accountDeleteAccountCertificateMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_AccountDeleteAccountCertificateMsg) MarshalTo added in v0.24.0

func (*ExecuteBatchMsg_Union_AccountDeleteAccountCertificateMsg) Size added in v0.24.0

type ExecuteBatchMsg_Union_AccountDeleteAccountMsg added in v0.24.0

type ExecuteBatchMsg_Union_AccountDeleteAccountMsg struct {
	AccountDeleteAccountMsg *account.DeleteAccountMsg `protobuf:"bytes,91,opt,name=account_delete_account_msg,json=accountDeleteAccountMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_AccountDeleteAccountMsg) MarshalTo added in v0.24.0

func (*ExecuteBatchMsg_Union_AccountDeleteAccountMsg) Size added in v0.24.0

type ExecuteBatchMsg_Union_AccountDeleteDomainMsg added in v0.24.0

type ExecuteBatchMsg_Union_AccountDeleteDomainMsg struct {
	AccountDeleteDomainMsg *account.DeleteDomainMsg `protobuf:"bytes,87,opt,name=account_delete_domain_msg,json=accountDeleteDomainMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_AccountDeleteDomainMsg) MarshalTo added in v0.24.0

func (*ExecuteBatchMsg_Union_AccountDeleteDomainMsg) Size added in v0.24.0

type ExecuteBatchMsg_Union_AccountFlushDomainMsg added in v0.24.0

type ExecuteBatchMsg_Union_AccountFlushDomainMsg struct {
	AccountFlushDomainMsg *account.FlushDomainMsg `protobuf:"bytes,92,opt,name=account_flush_domain_msg,json=accountFlushDomainMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_AccountFlushDomainMsg) MarshalTo added in v0.24.0

func (*ExecuteBatchMsg_Union_AccountFlushDomainMsg) Size added in v0.24.0

type ExecuteBatchMsg_Union_AccountRegisterAccountMsg added in v0.24.0

type ExecuteBatchMsg_Union_AccountRegisterAccountMsg struct {
	AccountRegisterAccountMsg *account.RegisterAccountMsg `protobuf:"bytes,88,opt,name=account_register_account_msg,json=accountRegisterAccountMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_AccountRegisterAccountMsg) MarshalTo added in v0.24.0

func (*ExecuteBatchMsg_Union_AccountRegisterAccountMsg) Size added in v0.24.0

type ExecuteBatchMsg_Union_AccountRegisterDomainMsg added in v0.24.0

type ExecuteBatchMsg_Union_AccountRegisterDomainMsg struct {
	AccountRegisterDomainMsg *account.RegisterDomainMsg `protobuf:"bytes,83,opt,name=account_register_domain_msg,json=accountRegisterDomainMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_AccountRegisterDomainMsg) MarshalTo added in v0.24.0

func (*ExecuteBatchMsg_Union_AccountRegisterDomainMsg) Size added in v0.24.0

type ExecuteBatchMsg_Union_AccountRenewAccountMsg added in v0.24.0

type ExecuteBatchMsg_Union_AccountRenewAccountMsg struct {
	AccountRenewAccountMsg *account.RenewAccountMsg `protobuf:"bytes,93,opt,name=account_renew_account_msg,json=accountRenewAccountMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_AccountRenewAccountMsg) MarshalTo added in v0.24.0

func (*ExecuteBatchMsg_Union_AccountRenewAccountMsg) Size added in v0.24.0

type ExecuteBatchMsg_Union_AccountRenewDomainMsg added in v0.24.0

type ExecuteBatchMsg_Union_AccountRenewDomainMsg struct {
	AccountRenewDomainMsg *account.RenewDomainMsg `protobuf:"bytes,86,opt,name=account_renew_domain_msg,json=accountRenewDomainMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_AccountRenewDomainMsg) MarshalTo added in v0.24.0

func (*ExecuteBatchMsg_Union_AccountRenewDomainMsg) Size added in v0.24.0

type ExecuteBatchMsg_Union_AccountReplaceAccountMsgFeesMsg added in v0.24.0

type ExecuteBatchMsg_Union_AccountReplaceAccountMsgFeesMsg struct {
	AccountReplaceAccountMsgFeesMsg *account.ReplaceAccountMsgFeesMsg `protobuf:"bytes,84,opt,name=account_replace_account_msg_fees_msg,json=accountReplaceAccountMsgFeesMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_AccountReplaceAccountMsgFeesMsg) MarshalTo added in v0.24.0

func (*ExecuteBatchMsg_Union_AccountReplaceAccountMsgFeesMsg) Size added in v0.24.0

type ExecuteBatchMsg_Union_AccountReplaceAccountTargetsMsg added in v0.24.0

type ExecuteBatchMsg_Union_AccountReplaceAccountTargetsMsg struct {
	AccountReplaceAccountTargetsMsg *account.ReplaceAccountTargetsMsg `protobuf:"bytes,90,opt,name=account_replace_account_targets_msg,json=accountReplaceAccountTargetsMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_AccountReplaceAccountTargetsMsg) MarshalTo added in v0.24.0

func (*ExecuteBatchMsg_Union_AccountReplaceAccountTargetsMsg) Size added in v0.24.0

type ExecuteBatchMsg_Union_AccountTransferAccountMsg added in v0.24.0

type ExecuteBatchMsg_Union_AccountTransferAccountMsg struct {
	AccountTransferAccountMsg *account.TransferAccountMsg `protobuf:"bytes,89,opt,name=account_transfer_account_msg,json=accountTransferAccountMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_AccountTransferAccountMsg) MarshalTo added in v0.24.0

func (*ExecuteBatchMsg_Union_AccountTransferAccountMsg) Size added in v0.24.0

type ExecuteBatchMsg_Union_AccountTransferDomainMsg added in v0.24.0

type ExecuteBatchMsg_Union_AccountTransferDomainMsg struct {
	AccountTransferDomainMsg *account.TransferDomainMsg `protobuf:"bytes,85,opt,name=account_transfer_domain_msg,json=accountTransferDomainMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_AccountTransferDomainMsg) MarshalTo added in v0.24.0

func (*ExecuteBatchMsg_Union_AccountTransferDomainMsg) Size added in v0.24.0

type ExecuteBatchMsg_Union_AccountUpdateConfigurationMsg added in v0.24.0

type ExecuteBatchMsg_Union_AccountUpdateConfigurationMsg struct {
	AccountUpdateConfigurationMsg *account.UpdateConfigurationMsg `protobuf:"bytes,82,opt,name=account_update_configuration_msg,json=accountUpdateConfigurationMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_AccountUpdateConfigurationMsg) MarshalTo added in v0.24.0

func (*ExecuteBatchMsg_Union_AccountUpdateConfigurationMsg) Size added in v0.24.0

type ExecuteBatchMsg_Union_CashSendMsg added in v0.17.0

type ExecuteBatchMsg_Union_CashSendMsg struct {
	CashSendMsg *cash.SendMsg `protobuf:"bytes,51,opt,name=cash_send_msg,json=cashSendMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_CashSendMsg) MarshalTo added in v0.17.0

func (m *ExecuteBatchMsg_Union_CashSendMsg) MarshalTo(dAtA []byte) (int, error)

func (*ExecuteBatchMsg_Union_CashSendMsg) Size added in v0.17.0

func (m *ExecuteBatchMsg_Union_CashSendMsg) Size() (n int)

type ExecuteBatchMsg_Union_CashUpdateConfigurationMsg added in v0.24.0

type ExecuteBatchMsg_Union_CashUpdateConfigurationMsg struct {
	CashUpdateConfigurationMsg *cash.UpdateConfigurationMsg `protobuf:"bytes,97,opt,name=cash_update_configuration_msg,json=cashUpdateConfigurationMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_CashUpdateConfigurationMsg) MarshalTo added in v0.24.0

func (*ExecuteBatchMsg_Union_CashUpdateConfigurationMsg) Size added in v0.24.0

type ExecuteBatchMsg_Union_CurrencyCreateMsg added in v0.17.0

type ExecuteBatchMsg_Union_CurrencyCreateMsg struct {
	CurrencyCreateMsg *currency.CreateMsg `protobuf:"bytes,59,opt,name=currency_create_msg,json=currencyCreateMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_CurrencyCreateMsg) MarshalTo added in v0.17.0

func (m *ExecuteBatchMsg_Union_CurrencyCreateMsg) MarshalTo(dAtA []byte) (int, error)

func (*ExecuteBatchMsg_Union_CurrencyCreateMsg) Size added in v0.17.0

type ExecuteBatchMsg_Union_DatamigrationExecuteMigrationMsg added in v0.24.0

type ExecuteBatchMsg_Union_DatamigrationExecuteMigrationMsg struct {
	DatamigrationExecuteMigrationMsg *datamigration.ExecuteMigrationMsg `protobuf:"bytes,81,opt,name=datamigration_execute_migration_msg,json=datamigrationExecuteMigrationMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_DatamigrationExecuteMigrationMsg) MarshalTo added in v0.24.0

func (*ExecuteBatchMsg_Union_DatamigrationExecuteMigrationMsg) Size added in v0.24.0

type ExecuteBatchMsg_Union_DistributionCreateMsg added in v0.17.0

type ExecuteBatchMsg_Union_DistributionCreateMsg struct {
	DistributionCreateMsg *distribution.CreateMsg `protobuf:"bytes,66,opt,name=distribution_create_msg,json=distributionCreateMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_DistributionCreateMsg) MarshalTo added in v0.17.0

func (*ExecuteBatchMsg_Union_DistributionCreateMsg) Size added in v0.17.0

type ExecuteBatchMsg_Union_DistributionMsg added in v0.17.0

type ExecuteBatchMsg_Union_DistributionMsg struct {
	DistributionMsg *distribution.DistributeMsg `protobuf:"bytes,67,opt,name=distribution_msg,json=distributionMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_DistributionMsg) MarshalTo added in v0.17.0

func (m *ExecuteBatchMsg_Union_DistributionMsg) MarshalTo(dAtA []byte) (int, error)

func (*ExecuteBatchMsg_Union_DistributionMsg) Size added in v0.17.0

type ExecuteBatchMsg_Union_DistributionResetMsg added in v0.17.0

type ExecuteBatchMsg_Union_DistributionResetMsg struct {
	DistributionResetMsg *distribution.ResetMsg `protobuf:"bytes,68,opt,name=distribution_reset_msg,json=distributionResetMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_DistributionResetMsg) MarshalTo added in v0.17.0

func (m *ExecuteBatchMsg_Union_DistributionResetMsg) MarshalTo(dAtA []byte) (int, error)

func (*ExecuteBatchMsg_Union_DistributionResetMsg) Size added in v0.17.0

type ExecuteBatchMsg_Union_EscrowCreateMsg added in v0.17.0

type ExecuteBatchMsg_Union_EscrowCreateMsg struct {
	EscrowCreateMsg *escrow.CreateMsg `protobuf:"bytes,52,opt,name=escrow_create_msg,json=escrowCreateMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_EscrowCreateMsg) MarshalTo added in v0.17.0

func (m *ExecuteBatchMsg_Union_EscrowCreateMsg) MarshalTo(dAtA []byte) (int, error)

func (*ExecuteBatchMsg_Union_EscrowCreateMsg) Size added in v0.17.0

type ExecuteBatchMsg_Union_EscrowReleaseMsg added in v0.17.0

type ExecuteBatchMsg_Union_EscrowReleaseMsg struct {
	EscrowReleaseMsg *escrow.ReleaseMsg `protobuf:"bytes,53,opt,name=escrow_release_msg,json=escrowReleaseMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_EscrowReleaseMsg) MarshalTo added in v0.17.0

func (m *ExecuteBatchMsg_Union_EscrowReleaseMsg) MarshalTo(dAtA []byte) (int, error)

func (*ExecuteBatchMsg_Union_EscrowReleaseMsg) Size added in v0.17.0

type ExecuteBatchMsg_Union_EscrowReturnMsg added in v0.17.0

type ExecuteBatchMsg_Union_EscrowReturnMsg struct {
	EscrowReturnMsg *escrow.ReturnMsg `protobuf:"bytes,54,opt,name=escrow_return_msg,json=escrowReturnMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_EscrowReturnMsg) MarshalTo added in v0.17.0

func (m *ExecuteBatchMsg_Union_EscrowReturnMsg) MarshalTo(dAtA []byte) (int, error)

func (*ExecuteBatchMsg_Union_EscrowReturnMsg) Size added in v0.17.0

type ExecuteBatchMsg_Union_EscrowUpdatePartiesMsg added in v0.17.0

type ExecuteBatchMsg_Union_EscrowUpdatePartiesMsg struct {
	EscrowUpdatePartiesMsg *escrow.UpdatePartiesMsg `protobuf:"bytes,55,opt,name=escrow_update_parties_msg,json=escrowUpdatePartiesMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_EscrowUpdatePartiesMsg) MarshalTo added in v0.17.0

func (*ExecuteBatchMsg_Union_EscrowUpdatePartiesMsg) Size added in v0.17.0

type ExecuteBatchMsg_Union_MsgfeeSetMsgFeeMsg added in v0.21.3

type ExecuteBatchMsg_Union_MsgfeeSetMsgFeeMsg struct {
	MsgfeeSetMsgFeeMsg *msgfee.SetMsgFeeMsg `protobuf:"bytes,80,opt,name=msgfee_set_msg_fee_msg,json=msgfeeSetMsgFeeMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_MsgfeeSetMsgFeeMsg) MarshalTo added in v0.21.3

func (m *ExecuteBatchMsg_Union_MsgfeeSetMsgFeeMsg) MarshalTo(dAtA []byte) (int, error)

func (*ExecuteBatchMsg_Union_MsgfeeSetMsgFeeMsg) Size added in v0.21.3

type ExecuteBatchMsg_Union_MsgfeeUpdateConfigurationMsg added in v1.0.0

type ExecuteBatchMsg_Union_MsgfeeUpdateConfigurationMsg struct {
	MsgfeeUpdateConfigurationMsg *msgfee.UpdateConfigurationMsg `protobuf:"bytes,105,opt,name=msgfee_update_configuration_msg,json=msgfeeUpdateConfigurationMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_MsgfeeUpdateConfigurationMsg) MarshalTo added in v1.0.0

func (*ExecuteBatchMsg_Union_MsgfeeUpdateConfigurationMsg) Size added in v1.0.0

type ExecuteBatchMsg_Union_MultisigCreateMsg added in v0.17.0

type ExecuteBatchMsg_Union_MultisigCreateMsg struct {
	MultisigCreateMsg *multisig.CreateMsg `protobuf:"bytes,56,opt,name=multisig_create_msg,json=multisigCreateMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_MultisigCreateMsg) MarshalTo added in v0.17.0

func (m *ExecuteBatchMsg_Union_MultisigCreateMsg) MarshalTo(dAtA []byte) (int, error)

func (*ExecuteBatchMsg_Union_MultisigCreateMsg) Size added in v0.17.0

type ExecuteBatchMsg_Union_MultisigUpdateMsg added in v0.17.0

type ExecuteBatchMsg_Union_MultisigUpdateMsg struct {
	MultisigUpdateMsg *multisig.UpdateMsg `protobuf:"bytes,57,opt,name=multisig_update_msg,json=multisigUpdateMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_MultisigUpdateMsg) MarshalTo added in v0.17.0

func (m *ExecuteBatchMsg_Union_MultisigUpdateMsg) MarshalTo(dAtA []byte) (int, error)

func (*ExecuteBatchMsg_Union_MultisigUpdateMsg) Size added in v0.17.0

type ExecuteBatchMsg_Union_PreregistrationUpdateConfigurationMsg added in v1.0.0

type ExecuteBatchMsg_Union_PreregistrationUpdateConfigurationMsg struct {
	PreregistrationUpdateConfigurationMsg *preregistration.UpdateConfigurationMsg `` /* 126-byte string literal not displayed */
}

func (*ExecuteBatchMsg_Union_PreregistrationUpdateConfigurationMsg) MarshalTo added in v1.0.0

func (*ExecuteBatchMsg_Union_PreregistrationUpdateConfigurationMsg) Size added in v1.0.0

type ExecuteBatchMsg_Union_QualityscoreUpdateConfigurationMsg added in v1.0.0

type ExecuteBatchMsg_Union_QualityscoreUpdateConfigurationMsg struct {
	QualityscoreUpdateConfigurationMsg *qualityscore.UpdateConfigurationMsg `protobuf:"bytes,103,opt,name=qualityscore_update_configuration_msg,json=qualityscoreUpdateConfigurationMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_QualityscoreUpdateConfigurationMsg) MarshalTo added in v1.0.0

func (*ExecuteBatchMsg_Union_QualityscoreUpdateConfigurationMsg) Size added in v1.0.0

type ExecuteBatchMsg_Union_TermdepositCreateDepositContractMsg added in v1.0.0

type ExecuteBatchMsg_Union_TermdepositCreateDepositContractMsg struct {
	TermdepositCreateDepositContractMsg *termdeposit.CreateDepositContractMsg `protobuf:"bytes,99,opt,name=termdeposit_create_deposit_contract_msg,json=termdepositCreateDepositContractMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_TermdepositCreateDepositContractMsg) MarshalTo added in v1.0.0

func (*ExecuteBatchMsg_Union_TermdepositCreateDepositContractMsg) Size added in v1.0.0

type ExecuteBatchMsg_Union_TermdepositDepositMsg added in v1.0.0

type ExecuteBatchMsg_Union_TermdepositDepositMsg struct {
	TermdepositDepositMsg *termdeposit.DepositMsg `protobuf:"bytes,100,opt,name=termdeposit_deposit_msg,json=termdepositDepositMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_TermdepositDepositMsg) MarshalTo added in v1.0.0

func (*ExecuteBatchMsg_Union_TermdepositDepositMsg) Size added in v1.0.0

type ExecuteBatchMsg_Union_TermdepositReleaseDepositMsg added in v1.0.0

type ExecuteBatchMsg_Union_TermdepositReleaseDepositMsg struct {
	TermdepositReleaseDepositMsg *termdeposit.ReleaseDepositMsg `protobuf:"bytes,101,opt,name=termdeposit_release_deposit_msg,json=termdepositReleaseDepositMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_TermdepositReleaseDepositMsg) MarshalTo added in v1.0.0

func (*ExecuteBatchMsg_Union_TermdepositReleaseDepositMsg) Size added in v1.0.0

type ExecuteBatchMsg_Union_TermdepositUpdateConfigurationMsg added in v1.0.0

type ExecuteBatchMsg_Union_TermdepositUpdateConfigurationMsg struct {
	TermdepositUpdateConfigurationMsg *termdeposit.UpdateConfigurationMsg `protobuf:"bytes,102,opt,name=termdeposit_update_configuration_msg,json=termdepositUpdateConfigurationMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_TermdepositUpdateConfigurationMsg) MarshalTo added in v1.0.0

func (*ExecuteBatchMsg_Union_TermdepositUpdateConfigurationMsg) Size added in v1.0.0

type ExecuteBatchMsg_Union_TxfeeUpdateConfigurationMsg added in v0.25.0

type ExecuteBatchMsg_Union_TxfeeUpdateConfigurationMsg struct {
	TxfeeUpdateConfigurationMsg *txfee.UpdateConfigurationMsg `protobuf:"bytes,98,opt,name=txfee_update_configuration_msg,json=txfeeUpdateConfigurationMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_TxfeeUpdateConfigurationMsg) MarshalTo added in v0.25.0

func (*ExecuteBatchMsg_Union_TxfeeUpdateConfigurationMsg) Size added in v0.25.0

type ExecuteBatchMsg_Union_UsernameChangeTokenTargetsMsg added in v0.17.0

type ExecuteBatchMsg_Union_UsernameChangeTokenTargetsMsg struct {
	UsernameChangeTokenTargetsMsg *username.ChangeTokenTargetsMsg `protobuf:"bytes,63,opt,name=username_change_token_targets_msg,json=usernameChangeTokenTargetsMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_UsernameChangeTokenTargetsMsg) MarshalTo added in v0.17.0

func (*ExecuteBatchMsg_Union_UsernameChangeTokenTargetsMsg) Size added in v0.17.0

type ExecuteBatchMsg_Union_UsernameRegisterTokenMsg added in v0.17.0

type ExecuteBatchMsg_Union_UsernameRegisterTokenMsg struct {
	UsernameRegisterTokenMsg *username.RegisterTokenMsg `protobuf:"bytes,61,opt,name=username_register_token_msg,json=usernameRegisterTokenMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_UsernameRegisterTokenMsg) MarshalTo added in v0.17.0

func (*ExecuteBatchMsg_Union_UsernameRegisterTokenMsg) Size added in v0.17.0

type ExecuteBatchMsg_Union_UsernameTransferTokenMsg added in v0.17.0

type ExecuteBatchMsg_Union_UsernameTransferTokenMsg struct {
	UsernameTransferTokenMsg *username.TransferTokenMsg `protobuf:"bytes,62,opt,name=username_transfer_token_msg,json=usernameTransferTokenMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_UsernameTransferTokenMsg) MarshalTo added in v0.17.0

func (*ExecuteBatchMsg_Union_UsernameTransferTokenMsg) Size added in v0.17.0

type ExecuteBatchMsg_Union_UsernameUpdateConfigurationMsg added in v0.22.0

type ExecuteBatchMsg_Union_UsernameUpdateConfigurationMsg struct {
	UsernameUpdateConfigurationMsg *username.UpdateConfigurationMsg `protobuf:"bytes,64,opt,name=username_update_configuration_msg,json=usernameUpdateConfigurationMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_UsernameUpdateConfigurationMsg) MarshalTo added in v0.22.0

func (*ExecuteBatchMsg_Union_UsernameUpdateConfigurationMsg) Size added in v0.22.0

type ExecuteBatchMsg_Union_ValidatorsApplyDiffMsg added in v0.17.0

type ExecuteBatchMsg_Union_ValidatorsApplyDiffMsg struct {
	ValidatorsApplyDiffMsg *validators.ApplyDiffMsg `protobuf:"bytes,58,opt,name=validators_apply_diff_msg,json=validatorsApplyDiffMsg,proto3,oneof"`
}

func (*ExecuteBatchMsg_Union_ValidatorsApplyDiffMsg) MarshalTo added in v0.17.0

func (*ExecuteBatchMsg_Union_ValidatorsApplyDiffMsg) Size added in v0.17.0

type ExecuteProposalBatchMsg added in v0.17.0

type ExecuteProposalBatchMsg struct {
	Messages []ExecuteProposalBatchMsg_Union `protobuf:"bytes,1,rep,name=messages,proto3" json:"messages"`
}

func (*ExecuteProposalBatchMsg) Descriptor added in v0.17.0

func (*ExecuteProposalBatchMsg) Descriptor() ([]byte, []int)

func (*ExecuteProposalBatchMsg) GetMessages added in v0.17.0

func (*ExecuteProposalBatchMsg) Marshal added in v0.17.0

func (m *ExecuteProposalBatchMsg) Marshal() (dAtA []byte, err error)

func (*ExecuteProposalBatchMsg) MarshalTo added in v0.17.0

func (m *ExecuteProposalBatchMsg) MarshalTo(dAtA []byte) (int, error)

func (*ExecuteProposalBatchMsg) MsgList added in v0.17.0

func (msg *ExecuteProposalBatchMsg) MsgList() ([]weave.Msg, error)

func (*ExecuteProposalBatchMsg) Path added in v0.17.0

func (*ExecuteProposalBatchMsg) ProtoMessage added in v0.17.0

func (*ExecuteProposalBatchMsg) ProtoMessage()

func (*ExecuteProposalBatchMsg) Reset added in v0.17.0

func (m *ExecuteProposalBatchMsg) Reset()

func (*ExecuteProposalBatchMsg) Size added in v0.17.0

func (m *ExecuteProposalBatchMsg) Size() (n int)

func (*ExecuteProposalBatchMsg) String added in v0.17.0

func (m *ExecuteProposalBatchMsg) String() string

func (*ExecuteProposalBatchMsg) Unmarshal added in v0.17.0

func (m *ExecuteProposalBatchMsg) Unmarshal(dAtA []byte) error

func (*ExecuteProposalBatchMsg) Validate added in v0.17.0

func (msg *ExecuteProposalBatchMsg) Validate() error

func (*ExecuteProposalBatchMsg) XXX_DiscardUnknown added in v0.17.0

func (m *ExecuteProposalBatchMsg) XXX_DiscardUnknown()

func (*ExecuteProposalBatchMsg) XXX_Marshal added in v0.17.0

func (m *ExecuteProposalBatchMsg) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ExecuteProposalBatchMsg) XXX_Merge added in v0.17.0

func (m *ExecuteProposalBatchMsg) XXX_Merge(src proto.Message)

func (*ExecuteProposalBatchMsg) XXX_Size added in v0.17.0

func (m *ExecuteProposalBatchMsg) XXX_Size() int

func (*ExecuteProposalBatchMsg) XXX_Unmarshal added in v0.17.0

func (m *ExecuteProposalBatchMsg) XXX_Unmarshal(b []byte) error

type ExecuteProposalBatchMsg_Union added in v0.17.0

type ExecuteProposalBatchMsg_Union struct {
	// Types that are valid to be assigned to Sum:
	//	*ExecuteProposalBatchMsg_Union_SendMsg
	//	*ExecuteProposalBatchMsg_Union_EscrowReleaseMsg
	//	*ExecuteProposalBatchMsg_Union_UpdateEscrowPartiesMsg
	//	*ExecuteProposalBatchMsg_Union_MultisigUpdateMsg
	//	*ExecuteProposalBatchMsg_Union_ValidatorsApplyDiffMsg
	//	*ExecuteProposalBatchMsg_Union_UsernameRegisterTokenMsg
	//	*ExecuteProposalBatchMsg_Union_UsernameTransferTokenMsg
	//	*ExecuteProposalBatchMsg_Union_UsernameChangeTokenTargetsMsg
	//	*ExecuteProposalBatchMsg_Union_UsernameUpdateConfigurationMsg
	//	*ExecuteProposalBatchMsg_Union_DistributionCreateMsg
	//	*ExecuteProposalBatchMsg_Union_DistributionMsg
	//	*ExecuteProposalBatchMsg_Union_DistributionResetMsg
	//	*ExecuteProposalBatchMsg_Union_GovUpdateElectorateMsg
	//	*ExecuteProposalBatchMsg_Union_GovUpdateElectionRuleMsg
	//	*ExecuteProposalBatchMsg_Union_GovCreateTextResolutionMsg
	//	*ExecuteProposalBatchMsg_Union_MsgfeeSetMsgFeeMsg
	//	*ExecuteProposalBatchMsg_Union_DatamigrationExecuteMigrationMsg
	//	*ExecuteProposalBatchMsg_Union_AccountUpdateConfigurationMsg
	//	*ExecuteProposalBatchMsg_Union_AccountRegisterDomainMsg
	//	*ExecuteProposalBatchMsg_Union_AccountReplaceAccountMsgFeesMsg
	//	*ExecuteProposalBatchMsg_Union_AccountTransferDomainMsg
	//	*ExecuteProposalBatchMsg_Union_AccountRenewDomainMsg
	//	*ExecuteProposalBatchMsg_Union_AccountDeleteDomainMsg
	//	*ExecuteProposalBatchMsg_Union_AccountRegisterAccountMsg
	//	*ExecuteProposalBatchMsg_Union_AccountTransferAccountMsg
	//	*ExecuteProposalBatchMsg_Union_AccountReplaceAccountTargetsMsg
	//	*ExecuteProposalBatchMsg_Union_AccountDeleteAccountMsg
	//	*ExecuteProposalBatchMsg_Union_AccountFlushDomainMsg
	//	*ExecuteProposalBatchMsg_Union_AccountRenewAccountMsg
	//	*ExecuteProposalBatchMsg_Union_AccountAddAccountCertificateMsg
	//	*ExecuteProposalBatchMsg_Union_AccountDeleteAccountCertificateMsg
	//	*ExecuteProposalBatchMsg_Union_CashUpdateConfigurationMsg
	//	*ExecuteProposalBatchMsg_Union_TxfeeUpdateConfigurationMsg
	//	*ExecuteProposalBatchMsg_Union_TermdepositCreateDepositContractMsg
	//	*ExecuteProposalBatchMsg_Union_TermdepositDepositMsg
	//	*ExecuteProposalBatchMsg_Union_TermdepositReleaseDepositMsg
	//	*ExecuteProposalBatchMsg_Union_TermdepositUpdateConfigurationMsg
	//	*ExecuteProposalBatchMsg_Union_QualityscoreUpdateConfigurationMsg
	//	*ExecuteProposalBatchMsg_Union_PreregistrationUpdateConfigurationMsg
	//	*ExecuteProposalBatchMsg_Union_MsgfeeUpdateConfigurationMsg
	Sum isExecuteProposalBatchMsg_Union_Sum `protobuf_oneof:"sum"`
}

func (*ExecuteProposalBatchMsg_Union) Descriptor added in v0.17.0

func (*ExecuteProposalBatchMsg_Union) Descriptor() ([]byte, []int)

func (*ExecuteProposalBatchMsg_Union) GetAccountAddAccountCertificateMsg added in v1.0.0

func (m *ExecuteProposalBatchMsg_Union) GetAccountAddAccountCertificateMsg() *account.AddAccountCertificateMsg

func (*ExecuteProposalBatchMsg_Union) GetAccountDeleteAccountCertificateMsg added in v1.0.0

func (m *ExecuteProposalBatchMsg_Union) GetAccountDeleteAccountCertificateMsg() *account.DeleteAccountCertificateMsg

func (*ExecuteProposalBatchMsg_Union) GetAccountDeleteAccountMsg added in v1.0.0

func (m *ExecuteProposalBatchMsg_Union) GetAccountDeleteAccountMsg() *account.DeleteAccountMsg

func (*ExecuteProposalBatchMsg_Union) GetAccountDeleteDomainMsg added in v1.0.0

func (m *ExecuteProposalBatchMsg_Union) GetAccountDeleteDomainMsg() *account.DeleteDomainMsg

func (*ExecuteProposalBatchMsg_Union) GetAccountFlushDomainMsg added in v1.0.0

func (m *ExecuteProposalBatchMsg_Union) GetAccountFlushDomainMsg() *account.FlushDomainMsg

func (*ExecuteProposalBatchMsg_Union) GetAccountRegisterAccountMsg added in v1.0.0

func (m *ExecuteProposalBatchMsg_Union) GetAccountRegisterAccountMsg() *account.RegisterAccountMsg

func (*ExecuteProposalBatchMsg_Union) GetAccountRegisterDomainMsg added in v1.0.0

func (m *ExecuteProposalBatchMsg_Union) GetAccountRegisterDomainMsg() *account.RegisterDomainMsg

func (*ExecuteProposalBatchMsg_Union) GetAccountRenewAccountMsg added in v1.0.0

func (m *ExecuteProposalBatchMsg_Union) GetAccountRenewAccountMsg() *account.RenewAccountMsg

func (*ExecuteProposalBatchMsg_Union) GetAccountRenewDomainMsg added in v1.0.0

func (m *ExecuteProposalBatchMsg_Union) GetAccountRenewDomainMsg() *account.RenewDomainMsg

func (*ExecuteProposalBatchMsg_Union) GetAccountReplaceAccountMsgFeesMsg added in v1.0.0

func (m *ExecuteProposalBatchMsg_Union) GetAccountReplaceAccountMsgFeesMsg() *account.ReplaceAccountMsgFeesMsg

func (*ExecuteProposalBatchMsg_Union) GetAccountReplaceAccountTargetsMsg added in v1.0.0

func (m *ExecuteProposalBatchMsg_Union) GetAccountReplaceAccountTargetsMsg() *account.ReplaceAccountTargetsMsg

func (*ExecuteProposalBatchMsg_Union) GetAccountTransferAccountMsg added in v1.0.0

func (m *ExecuteProposalBatchMsg_Union) GetAccountTransferAccountMsg() *account.TransferAccountMsg

func (*ExecuteProposalBatchMsg_Union) GetAccountTransferDomainMsg added in v1.0.0

func (m *ExecuteProposalBatchMsg_Union) GetAccountTransferDomainMsg() *account.TransferDomainMsg

func (*ExecuteProposalBatchMsg_Union) GetAccountUpdateConfigurationMsg added in v1.0.0

func (m *ExecuteProposalBatchMsg_Union) GetAccountUpdateConfigurationMsg() *account.UpdateConfigurationMsg

func (*ExecuteProposalBatchMsg_Union) GetCashUpdateConfigurationMsg added in v0.24.0

func (m *ExecuteProposalBatchMsg_Union) GetCashUpdateConfigurationMsg() *cash.UpdateConfigurationMsg

func (*ExecuteProposalBatchMsg_Union) GetDatamigrationExecuteMigrationMsg added in v0.24.0

func (m *ExecuteProposalBatchMsg_Union) GetDatamigrationExecuteMigrationMsg() *datamigration.ExecuteMigrationMsg

func (*ExecuteProposalBatchMsg_Union) GetDistributionCreateMsg added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) GetDistributionCreateMsg() *distribution.CreateMsg

func (*ExecuteProposalBatchMsg_Union) GetDistributionMsg added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) GetDistributionMsg() *distribution.DistributeMsg

func (*ExecuteProposalBatchMsg_Union) GetDistributionResetMsg added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) GetDistributionResetMsg() *distribution.ResetMsg

func (*ExecuteProposalBatchMsg_Union) GetEscrowReleaseMsg added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) GetEscrowReleaseMsg() *escrow.ReleaseMsg

func (*ExecuteProposalBatchMsg_Union) GetGovCreateTextResolutionMsg added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) GetGovCreateTextResolutionMsg() *gov.CreateTextResolutionMsg

func (*ExecuteProposalBatchMsg_Union) GetGovUpdateElectionRuleMsg added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) GetGovUpdateElectionRuleMsg() *gov.UpdateElectionRuleMsg

func (*ExecuteProposalBatchMsg_Union) GetGovUpdateElectorateMsg added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) GetGovUpdateElectorateMsg() *gov.UpdateElectorateMsg

func (*ExecuteProposalBatchMsg_Union) GetMsgfeeSetMsgFeeMsg added in v0.21.3

func (m *ExecuteProposalBatchMsg_Union) GetMsgfeeSetMsgFeeMsg() *msgfee.SetMsgFeeMsg

func (*ExecuteProposalBatchMsg_Union) GetMsgfeeUpdateConfigurationMsg added in v1.0.0

func (m *ExecuteProposalBatchMsg_Union) GetMsgfeeUpdateConfigurationMsg() *msgfee.UpdateConfigurationMsg

func (*ExecuteProposalBatchMsg_Union) GetMultisigUpdateMsg added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) GetMultisigUpdateMsg() *multisig.UpdateMsg

func (*ExecuteProposalBatchMsg_Union) GetPreregistrationUpdateConfigurationMsg added in v1.0.0

func (m *ExecuteProposalBatchMsg_Union) GetPreregistrationUpdateConfigurationMsg() *preregistration.UpdateConfigurationMsg

func (*ExecuteProposalBatchMsg_Union) GetQualityscoreUpdateConfigurationMsg added in v1.0.0

func (m *ExecuteProposalBatchMsg_Union) GetQualityscoreUpdateConfigurationMsg() *qualityscore.UpdateConfigurationMsg

func (*ExecuteProposalBatchMsg_Union) GetSendMsg added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) GetSendMsg() *cash.SendMsg

func (*ExecuteProposalBatchMsg_Union) GetSum added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) GetSum() isExecuteProposalBatchMsg_Union_Sum

func (*ExecuteProposalBatchMsg_Union) GetTermdepositCreateDepositContractMsg added in v1.0.0

func (m *ExecuteProposalBatchMsg_Union) GetTermdepositCreateDepositContractMsg() *termdeposit.CreateDepositContractMsg

func (*ExecuteProposalBatchMsg_Union) GetTermdepositDepositMsg added in v1.0.0

func (m *ExecuteProposalBatchMsg_Union) GetTermdepositDepositMsg() *termdeposit.DepositMsg

func (*ExecuteProposalBatchMsg_Union) GetTermdepositReleaseDepositMsg added in v1.0.0

func (m *ExecuteProposalBatchMsg_Union) GetTermdepositReleaseDepositMsg() *termdeposit.ReleaseDepositMsg

func (*ExecuteProposalBatchMsg_Union) GetTermdepositUpdateConfigurationMsg added in v1.0.0

func (m *ExecuteProposalBatchMsg_Union) GetTermdepositUpdateConfigurationMsg() *termdeposit.UpdateConfigurationMsg

func (*ExecuteProposalBatchMsg_Union) GetTxfeeUpdateConfigurationMsg added in v0.25.0

func (m *ExecuteProposalBatchMsg_Union) GetTxfeeUpdateConfigurationMsg() *txfee.UpdateConfigurationMsg

func (*ExecuteProposalBatchMsg_Union) GetUpdateEscrowPartiesMsg added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) GetUpdateEscrowPartiesMsg() *escrow.UpdatePartiesMsg

func (*ExecuteProposalBatchMsg_Union) GetUsernameChangeTokenTargetsMsg added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) GetUsernameChangeTokenTargetsMsg() *username.ChangeTokenTargetsMsg

func (*ExecuteProposalBatchMsg_Union) GetUsernameRegisterTokenMsg added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) GetUsernameRegisterTokenMsg() *username.RegisterTokenMsg

func (*ExecuteProposalBatchMsg_Union) GetUsernameTransferTokenMsg added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) GetUsernameTransferTokenMsg() *username.TransferTokenMsg

func (*ExecuteProposalBatchMsg_Union) GetUsernameUpdateConfigurationMsg added in v0.22.0

func (m *ExecuteProposalBatchMsg_Union) GetUsernameUpdateConfigurationMsg() *username.UpdateConfigurationMsg

func (*ExecuteProposalBatchMsg_Union) GetValidatorsApplyDiffMsg added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) GetValidatorsApplyDiffMsg() *validators.ApplyDiffMsg

func (*ExecuteProposalBatchMsg_Union) Marshal added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) Marshal() (dAtA []byte, err error)

func (*ExecuteProposalBatchMsg_Union) MarshalTo added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) MarshalTo(dAtA []byte) (int, error)

func (*ExecuteProposalBatchMsg_Union) ProtoMessage added in v0.17.0

func (*ExecuteProposalBatchMsg_Union) ProtoMessage()

func (*ExecuteProposalBatchMsg_Union) Reset added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) Reset()

func (*ExecuteProposalBatchMsg_Union) Size added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) Size() (n int)

func (*ExecuteProposalBatchMsg_Union) String added in v0.17.0

func (*ExecuteProposalBatchMsg_Union) Unmarshal added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) Unmarshal(dAtA []byte) error

func (*ExecuteProposalBatchMsg_Union) XXX_DiscardUnknown added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) XXX_DiscardUnknown()

func (*ExecuteProposalBatchMsg_Union) XXX_Marshal added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ExecuteProposalBatchMsg_Union) XXX_Merge added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) XXX_Merge(src proto.Message)

func (*ExecuteProposalBatchMsg_Union) XXX_OneofFuncs added in v0.17.0

func (*ExecuteProposalBatchMsg_Union) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{})

XXX_OneofFuncs is for the internal use of the proto package.

func (*ExecuteProposalBatchMsg_Union) XXX_Size added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) XXX_Size() int

func (*ExecuteProposalBatchMsg_Union) XXX_Unmarshal added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union) XXX_Unmarshal(b []byte) error

type ExecuteProposalBatchMsg_Union_AccountAddAccountCertificateMsg added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountAddAccountCertificateMsg struct {
	AccountAddAccountCertificateMsg *account.AddAccountCertificateMsg `protobuf:"bytes,94,opt,name=account_add_account_certificate_msg,json=accountAddAccountCertificateMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_AccountAddAccountCertificateMsg) MarshalTo added in v1.0.0

func (*ExecuteProposalBatchMsg_Union_AccountAddAccountCertificateMsg) Size added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountDeleteAccountCertificateMsg added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountDeleteAccountCertificateMsg struct {
	AccountDeleteAccountCertificateMsg *account.DeleteAccountCertificateMsg `protobuf:"bytes,95,opt,name=account_delete_account_certificate_msg,json=accountDeleteAccountCertificateMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_AccountDeleteAccountCertificateMsg) MarshalTo added in v1.0.0

func (*ExecuteProposalBatchMsg_Union_AccountDeleteAccountCertificateMsg) Size added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountDeleteAccountMsg added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountDeleteAccountMsg struct {
	AccountDeleteAccountMsg *account.DeleteAccountMsg `protobuf:"bytes,91,opt,name=account_delete_account_msg,json=accountDeleteAccountMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_AccountDeleteAccountMsg) MarshalTo added in v1.0.0

func (*ExecuteProposalBatchMsg_Union_AccountDeleteAccountMsg) Size added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountDeleteDomainMsg added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountDeleteDomainMsg struct {
	AccountDeleteDomainMsg *account.DeleteDomainMsg `protobuf:"bytes,87,opt,name=account_delete_domain_msg,json=accountDeleteDomainMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_AccountDeleteDomainMsg) MarshalTo added in v1.0.0

func (*ExecuteProposalBatchMsg_Union_AccountDeleteDomainMsg) Size added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountFlushDomainMsg added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountFlushDomainMsg struct {
	AccountFlushDomainMsg *account.FlushDomainMsg `protobuf:"bytes,92,opt,name=account_flush_domain_msg,json=accountFlushDomainMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_AccountFlushDomainMsg) MarshalTo added in v1.0.0

func (*ExecuteProposalBatchMsg_Union_AccountFlushDomainMsg) Size added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountRegisterAccountMsg added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountRegisterAccountMsg struct {
	AccountRegisterAccountMsg *account.RegisterAccountMsg `protobuf:"bytes,88,opt,name=account_register_account_msg,json=accountRegisterAccountMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_AccountRegisterAccountMsg) MarshalTo added in v1.0.0

func (*ExecuteProposalBatchMsg_Union_AccountRegisterAccountMsg) Size added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountRegisterDomainMsg added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountRegisterDomainMsg struct {
	AccountRegisterDomainMsg *account.RegisterDomainMsg `protobuf:"bytes,83,opt,name=account_register_domain_msg,json=accountRegisterDomainMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_AccountRegisterDomainMsg) MarshalTo added in v1.0.0

func (*ExecuteProposalBatchMsg_Union_AccountRegisterDomainMsg) Size added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountRenewAccountMsg added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountRenewAccountMsg struct {
	AccountRenewAccountMsg *account.RenewAccountMsg `protobuf:"bytes,93,opt,name=account_renew_account_msg,json=accountRenewAccountMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_AccountRenewAccountMsg) MarshalTo added in v1.0.0

func (*ExecuteProposalBatchMsg_Union_AccountRenewAccountMsg) Size added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountRenewDomainMsg added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountRenewDomainMsg struct {
	AccountRenewDomainMsg *account.RenewDomainMsg `protobuf:"bytes,86,opt,name=account_renew_domain_msg,json=accountRenewDomainMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_AccountRenewDomainMsg) MarshalTo added in v1.0.0

func (*ExecuteProposalBatchMsg_Union_AccountRenewDomainMsg) Size added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountReplaceAccountMsgFeesMsg added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountReplaceAccountMsgFeesMsg struct {
	AccountReplaceAccountMsgFeesMsg *account.ReplaceAccountMsgFeesMsg `protobuf:"bytes,84,opt,name=account_replace_account_msg_fees_msg,json=accountReplaceAccountMsgFeesMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_AccountReplaceAccountMsgFeesMsg) MarshalTo added in v1.0.0

func (*ExecuteProposalBatchMsg_Union_AccountReplaceAccountMsgFeesMsg) Size added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountReplaceAccountTargetsMsg added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountReplaceAccountTargetsMsg struct {
	AccountReplaceAccountTargetsMsg *account.ReplaceAccountTargetsMsg `protobuf:"bytes,90,opt,name=account_replace_account_targets_msg,json=accountReplaceAccountTargetsMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_AccountReplaceAccountTargetsMsg) MarshalTo added in v1.0.0

func (*ExecuteProposalBatchMsg_Union_AccountReplaceAccountTargetsMsg) Size added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountTransferAccountMsg added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountTransferAccountMsg struct {
	AccountTransferAccountMsg *account.TransferAccountMsg `protobuf:"bytes,89,opt,name=account_transfer_account_msg,json=accountTransferAccountMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_AccountTransferAccountMsg) MarshalTo added in v1.0.0

func (*ExecuteProposalBatchMsg_Union_AccountTransferAccountMsg) Size added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountTransferDomainMsg added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountTransferDomainMsg struct {
	AccountTransferDomainMsg *account.TransferDomainMsg `protobuf:"bytes,85,opt,name=account_transfer_domain_msg,json=accountTransferDomainMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_AccountTransferDomainMsg) MarshalTo added in v1.0.0

func (*ExecuteProposalBatchMsg_Union_AccountTransferDomainMsg) Size added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountUpdateConfigurationMsg added in v1.0.0

type ExecuteProposalBatchMsg_Union_AccountUpdateConfigurationMsg struct {
	AccountUpdateConfigurationMsg *account.UpdateConfigurationMsg `protobuf:"bytes,82,opt,name=account_update_configuration_msg,json=accountUpdateConfigurationMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_AccountUpdateConfigurationMsg) MarshalTo added in v1.0.0

func (*ExecuteProposalBatchMsg_Union_AccountUpdateConfigurationMsg) Size added in v1.0.0

type ExecuteProposalBatchMsg_Union_CashUpdateConfigurationMsg added in v0.24.0

type ExecuteProposalBatchMsg_Union_CashUpdateConfigurationMsg struct {
	CashUpdateConfigurationMsg *cash.UpdateConfigurationMsg `protobuf:"bytes,97,opt,name=cash_update_configuration_msg,json=cashUpdateConfigurationMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_CashUpdateConfigurationMsg) MarshalTo added in v0.24.0

func (*ExecuteProposalBatchMsg_Union_CashUpdateConfigurationMsg) Size added in v0.24.0

type ExecuteProposalBatchMsg_Union_DatamigrationExecuteMigrationMsg added in v0.24.0

type ExecuteProposalBatchMsg_Union_DatamigrationExecuteMigrationMsg struct {
	DatamigrationExecuteMigrationMsg *datamigration.ExecuteMigrationMsg `protobuf:"bytes,81,opt,name=datamigration_execute_migration_msg,json=datamigrationExecuteMigrationMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_DatamigrationExecuteMigrationMsg) MarshalTo added in v0.24.0

func (*ExecuteProposalBatchMsg_Union_DatamigrationExecuteMigrationMsg) Size added in v0.24.0

type ExecuteProposalBatchMsg_Union_DistributionCreateMsg added in v0.17.0

type ExecuteProposalBatchMsg_Union_DistributionCreateMsg struct {
	DistributionCreateMsg *distribution.CreateMsg `protobuf:"bytes,66,opt,name=distribution_create_msg,json=distributionCreateMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_DistributionCreateMsg) MarshalTo added in v0.17.0

func (*ExecuteProposalBatchMsg_Union_DistributionCreateMsg) Size added in v0.17.0

type ExecuteProposalBatchMsg_Union_DistributionMsg added in v0.17.0

type ExecuteProposalBatchMsg_Union_DistributionMsg struct {
	DistributionMsg *distribution.DistributeMsg `protobuf:"bytes,67,opt,name=distribution_msg,json=distributionMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_DistributionMsg) MarshalTo added in v0.17.0

func (*ExecuteProposalBatchMsg_Union_DistributionMsg) Size added in v0.17.0

type ExecuteProposalBatchMsg_Union_DistributionResetMsg added in v0.17.0

type ExecuteProposalBatchMsg_Union_DistributionResetMsg struct {
	DistributionResetMsg *distribution.ResetMsg `protobuf:"bytes,68,opt,name=distribution_reset_msg,json=distributionResetMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_DistributionResetMsg) MarshalTo added in v0.17.0

func (*ExecuteProposalBatchMsg_Union_DistributionResetMsg) Size added in v0.17.0

type ExecuteProposalBatchMsg_Union_EscrowReleaseMsg added in v0.17.0

type ExecuteProposalBatchMsg_Union_EscrowReleaseMsg struct {
	EscrowReleaseMsg *escrow.ReleaseMsg `protobuf:"bytes,53,opt,name=escrow_release_msg,json=escrowReleaseMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_EscrowReleaseMsg) MarshalTo added in v0.17.0

func (*ExecuteProposalBatchMsg_Union_EscrowReleaseMsg) Size added in v0.17.0

type ExecuteProposalBatchMsg_Union_GovCreateTextResolutionMsg added in v0.17.0

type ExecuteProposalBatchMsg_Union_GovCreateTextResolutionMsg struct {
	GovCreateTextResolutionMsg *gov.CreateTextResolutionMsg `protobuf:"bytes,79,opt,name=gov_create_text_resolution_msg,json=govCreateTextResolutionMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_GovCreateTextResolutionMsg) MarshalTo added in v0.17.0

func (*ExecuteProposalBatchMsg_Union_GovCreateTextResolutionMsg) Size added in v0.17.0

type ExecuteProposalBatchMsg_Union_GovUpdateElectionRuleMsg added in v0.17.0

type ExecuteProposalBatchMsg_Union_GovUpdateElectionRuleMsg struct {
	GovUpdateElectionRuleMsg *gov.UpdateElectionRuleMsg `protobuf:"bytes,78,opt,name=gov_update_election_rule_msg,json=govUpdateElectionRuleMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_GovUpdateElectionRuleMsg) MarshalTo added in v0.17.0

func (*ExecuteProposalBatchMsg_Union_GovUpdateElectionRuleMsg) Size added in v0.17.0

type ExecuteProposalBatchMsg_Union_GovUpdateElectorateMsg added in v0.17.0

type ExecuteProposalBatchMsg_Union_GovUpdateElectorateMsg struct {
	GovUpdateElectorateMsg *gov.UpdateElectorateMsg `protobuf:"bytes,77,opt,name=gov_update_electorate_msg,json=govUpdateElectorateMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_GovUpdateElectorateMsg) MarshalTo added in v0.17.0

func (*ExecuteProposalBatchMsg_Union_GovUpdateElectorateMsg) Size added in v0.17.0

type ExecuteProposalBatchMsg_Union_MsgfeeSetMsgFeeMsg added in v0.21.3

type ExecuteProposalBatchMsg_Union_MsgfeeSetMsgFeeMsg struct {
	MsgfeeSetMsgFeeMsg *msgfee.SetMsgFeeMsg `protobuf:"bytes,80,opt,name=msgfee_set_msg_fee_msg,json=msgfeeSetMsgFeeMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_MsgfeeSetMsgFeeMsg) MarshalTo added in v0.21.3

func (*ExecuteProposalBatchMsg_Union_MsgfeeSetMsgFeeMsg) Size added in v0.21.3

type ExecuteProposalBatchMsg_Union_MsgfeeUpdateConfigurationMsg added in v1.0.0

type ExecuteProposalBatchMsg_Union_MsgfeeUpdateConfigurationMsg struct {
	MsgfeeUpdateConfigurationMsg *msgfee.UpdateConfigurationMsg `protobuf:"bytes,105,opt,name=msgfee_update_configuration_msg,json=msgfeeUpdateConfigurationMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_MsgfeeUpdateConfigurationMsg) MarshalTo added in v1.0.0

func (*ExecuteProposalBatchMsg_Union_MsgfeeUpdateConfigurationMsg) Size added in v1.0.0

type ExecuteProposalBatchMsg_Union_MultisigUpdateMsg added in v0.17.0

type ExecuteProposalBatchMsg_Union_MultisigUpdateMsg struct {
	MultisigUpdateMsg *multisig.UpdateMsg `protobuf:"bytes,57,opt,name=multisig_update_msg,json=multisigUpdateMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_MultisigUpdateMsg) MarshalTo added in v0.17.0

func (*ExecuteProposalBatchMsg_Union_MultisigUpdateMsg) Size added in v0.17.0

type ExecuteProposalBatchMsg_Union_PreregistrationUpdateConfigurationMsg added in v1.0.0

type ExecuteProposalBatchMsg_Union_PreregistrationUpdateConfigurationMsg struct {
	PreregistrationUpdateConfigurationMsg *preregistration.UpdateConfigurationMsg `` /* 126-byte string literal not displayed */
}

func (*ExecuteProposalBatchMsg_Union_PreregistrationUpdateConfigurationMsg) MarshalTo added in v1.0.0

func (*ExecuteProposalBatchMsg_Union_PreregistrationUpdateConfigurationMsg) Size added in v1.0.0

type ExecuteProposalBatchMsg_Union_QualityscoreUpdateConfigurationMsg added in v1.0.0

type ExecuteProposalBatchMsg_Union_QualityscoreUpdateConfigurationMsg struct {
	QualityscoreUpdateConfigurationMsg *qualityscore.UpdateConfigurationMsg `protobuf:"bytes,103,opt,name=qualityscore_update_configuration_msg,json=qualityscoreUpdateConfigurationMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_QualityscoreUpdateConfigurationMsg) MarshalTo added in v1.0.0

func (*ExecuteProposalBatchMsg_Union_QualityscoreUpdateConfigurationMsg) Size added in v1.0.0

type ExecuteProposalBatchMsg_Union_SendMsg added in v0.17.0

type ExecuteProposalBatchMsg_Union_SendMsg struct {
	SendMsg *cash.SendMsg `protobuf:"bytes,51,opt,name=send_msg,json=sendMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_SendMsg) MarshalTo added in v0.17.0

func (m *ExecuteProposalBatchMsg_Union_SendMsg) MarshalTo(dAtA []byte) (int, error)

func (*ExecuteProposalBatchMsg_Union_SendMsg) Size added in v0.17.0

type ExecuteProposalBatchMsg_Union_TermdepositCreateDepositContractMsg added in v1.0.0

type ExecuteProposalBatchMsg_Union_TermdepositCreateDepositContractMsg struct {
	TermdepositCreateDepositContractMsg *termdeposit.CreateDepositContractMsg `protobuf:"bytes,99,opt,name=termdeposit_create_deposit_contract_msg,json=termdepositCreateDepositContractMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_TermdepositCreateDepositContractMsg) MarshalTo added in v1.0.0

func (*ExecuteProposalBatchMsg_Union_TermdepositCreateDepositContractMsg) Size added in v1.0.0

type ExecuteProposalBatchMsg_Union_TermdepositDepositMsg added in v1.0.0

type ExecuteProposalBatchMsg_Union_TermdepositDepositMsg struct {
	TermdepositDepositMsg *termdeposit.DepositMsg `protobuf:"bytes,100,opt,name=termdeposit_deposit_msg,json=termdepositDepositMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_TermdepositDepositMsg) MarshalTo added in v1.0.0

func (*ExecuteProposalBatchMsg_Union_TermdepositDepositMsg) Size added in v1.0.0

type ExecuteProposalBatchMsg_Union_TermdepositReleaseDepositMsg added in v1.0.0

type ExecuteProposalBatchMsg_Union_TermdepositReleaseDepositMsg struct {
	TermdepositReleaseDepositMsg *termdeposit.ReleaseDepositMsg `protobuf:"bytes,101,opt,name=termdeposit_release_deposit_msg,json=termdepositReleaseDepositMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_TermdepositReleaseDepositMsg) MarshalTo added in v1.0.0

func (*ExecuteProposalBatchMsg_Union_TermdepositReleaseDepositMsg) Size added in v1.0.0

type ExecuteProposalBatchMsg_Union_TermdepositUpdateConfigurationMsg added in v1.0.0

type ExecuteProposalBatchMsg_Union_TermdepositUpdateConfigurationMsg struct {
	TermdepositUpdateConfigurationMsg *termdeposit.UpdateConfigurationMsg `protobuf:"bytes,102,opt,name=termdeposit_update_configuration_msg,json=termdepositUpdateConfigurationMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_TermdepositUpdateConfigurationMsg) MarshalTo added in v1.0.0

func (*ExecuteProposalBatchMsg_Union_TermdepositUpdateConfigurationMsg) Size added in v1.0.0

type ExecuteProposalBatchMsg_Union_TxfeeUpdateConfigurationMsg added in v0.25.0

type ExecuteProposalBatchMsg_Union_TxfeeUpdateConfigurationMsg struct {
	TxfeeUpdateConfigurationMsg *txfee.UpdateConfigurationMsg `protobuf:"bytes,98,opt,name=txfee_update_configuration_msg,json=txfeeUpdateConfigurationMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_TxfeeUpdateConfigurationMsg) MarshalTo added in v0.25.0

func (*ExecuteProposalBatchMsg_Union_TxfeeUpdateConfigurationMsg) Size added in v0.25.0

type ExecuteProposalBatchMsg_Union_UpdateEscrowPartiesMsg added in v0.17.0

type ExecuteProposalBatchMsg_Union_UpdateEscrowPartiesMsg struct {
	UpdateEscrowPartiesMsg *escrow.UpdatePartiesMsg `protobuf:"bytes,55,opt,name=update_escrow_parties_msg,json=updateEscrowPartiesMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_UpdateEscrowPartiesMsg) MarshalTo added in v0.17.0

func (*ExecuteProposalBatchMsg_Union_UpdateEscrowPartiesMsg) Size added in v0.17.0

type ExecuteProposalBatchMsg_Union_UsernameChangeTokenTargetsMsg added in v0.17.0

type ExecuteProposalBatchMsg_Union_UsernameChangeTokenTargetsMsg struct {
	UsernameChangeTokenTargetsMsg *username.ChangeTokenTargetsMsg `protobuf:"bytes,63,opt,name=username_change_token_targets_msg,json=usernameChangeTokenTargetsMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_UsernameChangeTokenTargetsMsg) MarshalTo added in v0.17.0

func (*ExecuteProposalBatchMsg_Union_UsernameChangeTokenTargetsMsg) Size added in v0.17.0

type ExecuteProposalBatchMsg_Union_UsernameRegisterTokenMsg added in v0.17.0

type ExecuteProposalBatchMsg_Union_UsernameRegisterTokenMsg struct {
	UsernameRegisterTokenMsg *username.RegisterTokenMsg `protobuf:"bytes,61,opt,name=username_register_token_msg,json=usernameRegisterTokenMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_UsernameRegisterTokenMsg) MarshalTo added in v0.17.0

func (*ExecuteProposalBatchMsg_Union_UsernameRegisterTokenMsg) Size added in v0.17.0

type ExecuteProposalBatchMsg_Union_UsernameTransferTokenMsg added in v0.17.0

type ExecuteProposalBatchMsg_Union_UsernameTransferTokenMsg struct {
	UsernameTransferTokenMsg *username.TransferTokenMsg `protobuf:"bytes,62,opt,name=username_transfer_token_msg,json=usernameTransferTokenMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_UsernameTransferTokenMsg) MarshalTo added in v0.17.0

func (*ExecuteProposalBatchMsg_Union_UsernameTransferTokenMsg) Size added in v0.17.0

type ExecuteProposalBatchMsg_Union_UsernameUpdateConfigurationMsg added in v0.22.0

type ExecuteProposalBatchMsg_Union_UsernameUpdateConfigurationMsg struct {
	UsernameUpdateConfigurationMsg *username.UpdateConfigurationMsg `protobuf:"bytes,64,opt,name=username_update_configuration_msg,json=usernameUpdateConfigurationMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_UsernameUpdateConfigurationMsg) MarshalTo added in v0.22.0

func (*ExecuteProposalBatchMsg_Union_UsernameUpdateConfigurationMsg) Size added in v0.22.0

type ExecuteProposalBatchMsg_Union_ValidatorsApplyDiffMsg added in v0.17.0

type ExecuteProposalBatchMsg_Union_ValidatorsApplyDiffMsg struct {
	ValidatorsApplyDiffMsg *validators.ApplyDiffMsg `protobuf:"bytes,58,opt,name=validators_apply_diff_msg,json=validatorsApplyDiffMsg,proto3,oneof"`
}

func (*ExecuteProposalBatchMsg_Union_ValidatorsApplyDiffMsg) MarshalTo added in v0.17.0

func (*ExecuteProposalBatchMsg_Union_ValidatorsApplyDiffMsg) Size added in v0.17.0

type ProposalOptions added in v0.16.0

type ProposalOptions struct {
	// Types that are valid to be assigned to Option:
	//	*ProposalOptions_CashSendMsg
	//	*ProposalOptions_EscrowReleaseMsg
	//	*ProposalOptions_UpdateEscrowPartiesMsg
	//	*ProposalOptions_MultisigUpdateMsg
	//	*ProposalOptions_ValidatorsApplyDiffMsg
	//	*ProposalOptions_CurrencyCreateMsg
	//	*ProposalOptions_ExecuteProposalBatchMsg
	//	*ProposalOptions_UsernameRegisterTokenMsg
	//	*ProposalOptions_UsernameTransferTokenMsg
	//	*ProposalOptions_UsernameChangeTokenTargetsMsg
	//	*ProposalOptions_UsernameUpdateConfigurationMsg
	//	*ProposalOptions_DistributionCreateMsg
	//	*ProposalOptions_DistributionMsg
	//	*ProposalOptions_DistributionResetMsg
	//	*ProposalOptions_MigrationUpgradeSchemaMsg
	//	*ProposalOptions_GovUpdateElectorateMsg
	//	*ProposalOptions_GovUpdateElectionRuleMsg
	//	*ProposalOptions_GovCreateTextResolutionMsg
	//	*ProposalOptions_MsgfeeSetMsgFeeMsg
	//	*ProposalOptions_DatamigrationExecuteMigrationMsg
	//	*ProposalOptions_AccountUpdateConfigurationMsg
	//	*ProposalOptions_AccountRegisterDomainMsg
	//	*ProposalOptions_AccountReplaceAccountMsgFeesMsg
	//	*ProposalOptions_AccountTransferDomainMsg
	//	*ProposalOptions_AccountRenewDomainMsg
	//	*ProposalOptions_AccountDeleteDomainMsg
	//	*ProposalOptions_AccountRegisterAccountMsg
	//	*ProposalOptions_AccountTransferAccountMsg
	//	*ProposalOptions_AccountReplaceAccountTargetsMsg
	//	*ProposalOptions_AccountDeleteAccountMsg
	//	*ProposalOptions_AccountFlushDomainMsg
	//	*ProposalOptions_AccountRenewAccountMsg
	//	*ProposalOptions_AccountAddAccountCertificateMsg
	//	*ProposalOptions_AccountDeleteAccountCertificateMsg
	//	*ProposalOptions_CashUpdateConfigurationMsg
	//	*ProposalOptions_TxfeeUpdateConfigurationMsg
	//	*ProposalOptions_TermdepositCreateDepositContractMsg
	//	*ProposalOptions_TermdepositDepositMsg
	//	*ProposalOptions_TermdepositReleaseDepositMsg
	//	*ProposalOptions_TermdepositUpdateConfigurationMsg
	//	*ProposalOptions_QualityscoreUpdateConfigurationMsg
	//	*ProposalOptions_PreregistrationUpdateConfigurationMsg
	//	*ProposalOptions_MsgfeeUpdateConfigurationMsg
	Option isProposalOptions_Option `protobuf_oneof:"option"`
}

ProposalOptions are possible items that can be enacted by a governance vote Trimmed down somewhat arbitrary to what is believed to be reasonable

func (*ProposalOptions) Descriptor added in v0.16.0

func (*ProposalOptions) Descriptor() ([]byte, []int)

func (*ProposalOptions) GetAccountAddAccountCertificateMsg added in v1.0.0

func (m *ProposalOptions) GetAccountAddAccountCertificateMsg() *account.AddAccountCertificateMsg

func (*ProposalOptions) GetAccountDeleteAccountCertificateMsg added in v1.0.0

func (m *ProposalOptions) GetAccountDeleteAccountCertificateMsg() *account.DeleteAccountCertificateMsg

func (*ProposalOptions) GetAccountDeleteAccountMsg added in v1.0.0

func (m *ProposalOptions) GetAccountDeleteAccountMsg() *account.DeleteAccountMsg

func (*ProposalOptions) GetAccountDeleteDomainMsg added in v1.0.0

func (m *ProposalOptions) GetAccountDeleteDomainMsg() *account.DeleteDomainMsg

func (*ProposalOptions) GetAccountFlushDomainMsg added in v1.0.0

func (m *ProposalOptions) GetAccountFlushDomainMsg() *account.FlushDomainMsg

func (*ProposalOptions) GetAccountRegisterAccountMsg added in v1.0.0

func (m *ProposalOptions) GetAccountRegisterAccountMsg() *account.RegisterAccountMsg

func (*ProposalOptions) GetAccountRegisterDomainMsg added in v1.0.0

func (m *ProposalOptions) GetAccountRegisterDomainMsg() *account.RegisterDomainMsg

func (*ProposalOptions) GetAccountRenewAccountMsg added in v1.0.0

func (m *ProposalOptions) GetAccountRenewAccountMsg() *account.RenewAccountMsg

func (*ProposalOptions) GetAccountRenewDomainMsg added in v1.0.0

func (m *ProposalOptions) GetAccountRenewDomainMsg() *account.RenewDomainMsg

func (*ProposalOptions) GetAccountReplaceAccountMsgFeesMsg added in v1.0.0

func (m *ProposalOptions) GetAccountReplaceAccountMsgFeesMsg() *account.ReplaceAccountMsgFeesMsg

func (*ProposalOptions) GetAccountReplaceAccountTargetsMsg added in v1.0.0

func (m *ProposalOptions) GetAccountReplaceAccountTargetsMsg() *account.ReplaceAccountTargetsMsg

func (*ProposalOptions) GetAccountTransferAccountMsg added in v1.0.0

func (m *ProposalOptions) GetAccountTransferAccountMsg() *account.TransferAccountMsg

func (*ProposalOptions) GetAccountTransferDomainMsg added in v1.0.0

func (m *ProposalOptions) GetAccountTransferDomainMsg() *account.TransferDomainMsg

func (*ProposalOptions) GetAccountUpdateConfigurationMsg added in v1.0.0

func (m *ProposalOptions) GetAccountUpdateConfigurationMsg() *account.UpdateConfigurationMsg

func (*ProposalOptions) GetCashSendMsg added in v0.17.0

func (m *ProposalOptions) GetCashSendMsg() *cash.SendMsg

func (*ProposalOptions) GetCashUpdateConfigurationMsg added in v0.24.0

func (m *ProposalOptions) GetCashUpdateConfigurationMsg() *cash.UpdateConfigurationMsg

func (*ProposalOptions) GetCurrencyCreateMsg added in v0.17.0

func (m *ProposalOptions) GetCurrencyCreateMsg() *currency.CreateMsg

func (*ProposalOptions) GetDatamigrationExecuteMigrationMsg added in v0.24.0

func (m *ProposalOptions) GetDatamigrationExecuteMigrationMsg() *datamigration.ExecuteMigrationMsg

func (*ProposalOptions) GetDistributionCreateMsg added in v0.17.0

func (m *ProposalOptions) GetDistributionCreateMsg() *distribution.CreateMsg

func (*ProposalOptions) GetDistributionMsg added in v0.17.0

func (m *ProposalOptions) GetDistributionMsg() *distribution.DistributeMsg

func (*ProposalOptions) GetDistributionResetMsg added in v0.17.0

func (m *ProposalOptions) GetDistributionResetMsg() *distribution.ResetMsg

func (*ProposalOptions) GetEscrowReleaseMsg added in v0.17.0

func (m *ProposalOptions) GetEscrowReleaseMsg() *escrow.ReleaseMsg

func (*ProposalOptions) GetExecuteProposalBatchMsg added in v0.17.0

func (m *ProposalOptions) GetExecuteProposalBatchMsg() *ExecuteProposalBatchMsg

func (*ProposalOptions) GetGovCreateTextResolutionMsg added in v0.17.0

func (m *ProposalOptions) GetGovCreateTextResolutionMsg() *gov.CreateTextResolutionMsg

func (*ProposalOptions) GetGovUpdateElectionRuleMsg added in v0.17.0

func (m *ProposalOptions) GetGovUpdateElectionRuleMsg() *gov.UpdateElectionRuleMsg

func (*ProposalOptions) GetGovUpdateElectorateMsg added in v0.17.0

func (m *ProposalOptions) GetGovUpdateElectorateMsg() *gov.UpdateElectorateMsg

func (*ProposalOptions) GetMigrationUpgradeSchemaMsg added in v0.17.0

func (m *ProposalOptions) GetMigrationUpgradeSchemaMsg() *migration.UpgradeSchemaMsg

func (*ProposalOptions) GetMsgfeeSetMsgFeeMsg added in v0.21.3

func (m *ProposalOptions) GetMsgfeeSetMsgFeeMsg() *msgfee.SetMsgFeeMsg

func (*ProposalOptions) GetMsgfeeUpdateConfigurationMsg added in v1.0.0

func (m *ProposalOptions) GetMsgfeeUpdateConfigurationMsg() *msgfee.UpdateConfigurationMsg

func (*ProposalOptions) GetMultisigUpdateMsg added in v0.17.0

func (m *ProposalOptions) GetMultisigUpdateMsg() *multisig.UpdateMsg

func (*ProposalOptions) GetOption added in v0.16.0

func (m *ProposalOptions) GetOption() isProposalOptions_Option

func (*ProposalOptions) GetPreregistrationUpdateConfigurationMsg added in v1.0.0

func (m *ProposalOptions) GetPreregistrationUpdateConfigurationMsg() *preregistration.UpdateConfigurationMsg

func (*ProposalOptions) GetQualityscoreUpdateConfigurationMsg added in v1.0.0

func (m *ProposalOptions) GetQualityscoreUpdateConfigurationMsg() *qualityscore.UpdateConfigurationMsg

func (*ProposalOptions) GetTermdepositCreateDepositContractMsg added in v1.0.0

func (m *ProposalOptions) GetTermdepositCreateDepositContractMsg() *termdeposit.CreateDepositContractMsg

func (*ProposalOptions) GetTermdepositDepositMsg added in v1.0.0

func (m *ProposalOptions) GetTermdepositDepositMsg() *termdeposit.DepositMsg

func (*ProposalOptions) GetTermdepositReleaseDepositMsg added in v1.0.0

func (m *ProposalOptions) GetTermdepositReleaseDepositMsg() *termdeposit.ReleaseDepositMsg

func (*ProposalOptions) GetTermdepositUpdateConfigurationMsg added in v1.0.0

func (m *ProposalOptions) GetTermdepositUpdateConfigurationMsg() *termdeposit.UpdateConfigurationMsg

func (*ProposalOptions) GetTxfeeUpdateConfigurationMsg added in v0.25.0

func (m *ProposalOptions) GetTxfeeUpdateConfigurationMsg() *txfee.UpdateConfigurationMsg

func (*ProposalOptions) GetUpdateEscrowPartiesMsg added in v0.17.0

func (m *ProposalOptions) GetUpdateEscrowPartiesMsg() *escrow.UpdatePartiesMsg

func (*ProposalOptions) GetUsernameChangeTokenTargetsMsg added in v0.17.0

func (m *ProposalOptions) GetUsernameChangeTokenTargetsMsg() *username.ChangeTokenTargetsMsg

func (*ProposalOptions) GetUsernameRegisterTokenMsg added in v0.17.0

func (m *ProposalOptions) GetUsernameRegisterTokenMsg() *username.RegisterTokenMsg

func (*ProposalOptions) GetUsernameTransferTokenMsg added in v0.17.0

func (m *ProposalOptions) GetUsernameTransferTokenMsg() *username.TransferTokenMsg

func (*ProposalOptions) GetUsernameUpdateConfigurationMsg added in v0.22.0

func (m *ProposalOptions) GetUsernameUpdateConfigurationMsg() *username.UpdateConfigurationMsg

func (*ProposalOptions) GetValidatorsApplyDiffMsg added in v0.17.0

func (m *ProposalOptions) GetValidatorsApplyDiffMsg() *validators.ApplyDiffMsg

func (*ProposalOptions) Marshal added in v0.16.0

func (m *ProposalOptions) Marshal() (dAtA []byte, err error)

func (*ProposalOptions) MarshalTo added in v0.16.0

func (m *ProposalOptions) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions) ProtoMessage added in v0.16.0

func (*ProposalOptions) ProtoMessage()

func (*ProposalOptions) Reset added in v0.16.0

func (m *ProposalOptions) Reset()

func (*ProposalOptions) Size added in v0.16.0

func (m *ProposalOptions) Size() (n int)

func (*ProposalOptions) String added in v0.16.0

func (m *ProposalOptions) String() string

func (*ProposalOptions) Unmarshal added in v0.16.0

func (m *ProposalOptions) Unmarshal(dAtA []byte) error

func (*ProposalOptions) XXX_DiscardUnknown added in v0.16.0

func (m *ProposalOptions) XXX_DiscardUnknown()

func (*ProposalOptions) XXX_Marshal added in v0.16.0

func (m *ProposalOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProposalOptions) XXX_Merge added in v0.16.0

func (m *ProposalOptions) XXX_Merge(src proto.Message)

func (*ProposalOptions) XXX_OneofFuncs added in v0.16.0

func (*ProposalOptions) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{})

XXX_OneofFuncs is for the internal use of the proto package.

func (*ProposalOptions) XXX_Size added in v0.16.0

func (m *ProposalOptions) XXX_Size() int

func (*ProposalOptions) XXX_Unmarshal added in v0.16.0

func (m *ProposalOptions) XXX_Unmarshal(b []byte) error

type ProposalOptions_AccountAddAccountCertificateMsg added in v1.0.0

type ProposalOptions_AccountAddAccountCertificateMsg struct {
	AccountAddAccountCertificateMsg *account.AddAccountCertificateMsg `protobuf:"bytes,94,opt,name=account_add_account_certificate_msg,json=accountAddAccountCertificateMsg,proto3,oneof"`
}

func (*ProposalOptions_AccountAddAccountCertificateMsg) MarshalTo added in v1.0.0

func (*ProposalOptions_AccountAddAccountCertificateMsg) Size added in v1.0.0

type ProposalOptions_AccountDeleteAccountCertificateMsg added in v1.0.0

type ProposalOptions_AccountDeleteAccountCertificateMsg struct {
	AccountDeleteAccountCertificateMsg *account.DeleteAccountCertificateMsg `protobuf:"bytes,95,opt,name=account_delete_account_certificate_msg,json=accountDeleteAccountCertificateMsg,proto3,oneof"`
}

func (*ProposalOptions_AccountDeleteAccountCertificateMsg) MarshalTo added in v1.0.0

func (*ProposalOptions_AccountDeleteAccountCertificateMsg) Size added in v1.0.0

type ProposalOptions_AccountDeleteAccountMsg added in v1.0.0

type ProposalOptions_AccountDeleteAccountMsg struct {
	AccountDeleteAccountMsg *account.DeleteAccountMsg `protobuf:"bytes,91,opt,name=account_delete_account_msg,json=accountDeleteAccountMsg,proto3,oneof"`
}

func (*ProposalOptions_AccountDeleteAccountMsg) MarshalTo added in v1.0.0

func (m *ProposalOptions_AccountDeleteAccountMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_AccountDeleteAccountMsg) Size added in v1.0.0

type ProposalOptions_AccountDeleteDomainMsg added in v1.0.0

type ProposalOptions_AccountDeleteDomainMsg struct {
	AccountDeleteDomainMsg *account.DeleteDomainMsg `protobuf:"bytes,87,opt,name=account_delete_domain_msg,json=accountDeleteDomainMsg,proto3,oneof"`
}

func (*ProposalOptions_AccountDeleteDomainMsg) MarshalTo added in v1.0.0

func (m *ProposalOptions_AccountDeleteDomainMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_AccountDeleteDomainMsg) Size added in v1.0.0

type ProposalOptions_AccountFlushDomainMsg added in v1.0.0

type ProposalOptions_AccountFlushDomainMsg struct {
	AccountFlushDomainMsg *account.FlushDomainMsg `protobuf:"bytes,92,opt,name=account_flush_domain_msg,json=accountFlushDomainMsg,proto3,oneof"`
}

func (*ProposalOptions_AccountFlushDomainMsg) MarshalTo added in v1.0.0

func (m *ProposalOptions_AccountFlushDomainMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_AccountFlushDomainMsg) Size added in v1.0.0

type ProposalOptions_AccountRegisterAccountMsg added in v1.0.0

type ProposalOptions_AccountRegisterAccountMsg struct {
	AccountRegisterAccountMsg *account.RegisterAccountMsg `protobuf:"bytes,88,opt,name=account_register_account_msg,json=accountRegisterAccountMsg,proto3,oneof"`
}

func (*ProposalOptions_AccountRegisterAccountMsg) MarshalTo added in v1.0.0

func (m *ProposalOptions_AccountRegisterAccountMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_AccountRegisterAccountMsg) Size added in v1.0.0

type ProposalOptions_AccountRegisterDomainMsg added in v1.0.0

type ProposalOptions_AccountRegisterDomainMsg struct {
	AccountRegisterDomainMsg *account.RegisterDomainMsg `protobuf:"bytes,83,opt,name=account_register_domain_msg,json=accountRegisterDomainMsg,proto3,oneof"`
}

func (*ProposalOptions_AccountRegisterDomainMsg) MarshalTo added in v1.0.0

func (m *ProposalOptions_AccountRegisterDomainMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_AccountRegisterDomainMsg) Size added in v1.0.0

type ProposalOptions_AccountRenewAccountMsg added in v1.0.0

type ProposalOptions_AccountRenewAccountMsg struct {
	AccountRenewAccountMsg *account.RenewAccountMsg `protobuf:"bytes,93,opt,name=account_renew_account_msg,json=accountRenewAccountMsg,proto3,oneof"`
}

func (*ProposalOptions_AccountRenewAccountMsg) MarshalTo added in v1.0.0

func (m *ProposalOptions_AccountRenewAccountMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_AccountRenewAccountMsg) Size added in v1.0.0

type ProposalOptions_AccountRenewDomainMsg added in v1.0.0

type ProposalOptions_AccountRenewDomainMsg struct {
	AccountRenewDomainMsg *account.RenewDomainMsg `protobuf:"bytes,86,opt,name=account_renew_domain_msg,json=accountRenewDomainMsg,proto3,oneof"`
}

func (*ProposalOptions_AccountRenewDomainMsg) MarshalTo added in v1.0.0

func (m *ProposalOptions_AccountRenewDomainMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_AccountRenewDomainMsg) Size added in v1.0.0

type ProposalOptions_AccountReplaceAccountMsgFeesMsg added in v1.0.0

type ProposalOptions_AccountReplaceAccountMsgFeesMsg struct {
	AccountReplaceAccountMsgFeesMsg *account.ReplaceAccountMsgFeesMsg `protobuf:"bytes,84,opt,name=account_replace_account_msg_fees_msg,json=accountReplaceAccountMsgFeesMsg,proto3,oneof"`
}

func (*ProposalOptions_AccountReplaceAccountMsgFeesMsg) MarshalTo added in v1.0.0

func (*ProposalOptions_AccountReplaceAccountMsgFeesMsg) Size added in v1.0.0

type ProposalOptions_AccountReplaceAccountTargetsMsg added in v1.0.0

type ProposalOptions_AccountReplaceAccountTargetsMsg struct {
	AccountReplaceAccountTargetsMsg *account.ReplaceAccountTargetsMsg `protobuf:"bytes,90,opt,name=account_replace_account_targets_msg,json=accountReplaceAccountTargetsMsg,proto3,oneof"`
}

func (*ProposalOptions_AccountReplaceAccountTargetsMsg) MarshalTo added in v1.0.0

func (*ProposalOptions_AccountReplaceAccountTargetsMsg) Size added in v1.0.0

type ProposalOptions_AccountTransferAccountMsg added in v1.0.0

type ProposalOptions_AccountTransferAccountMsg struct {
	AccountTransferAccountMsg *account.TransferAccountMsg `protobuf:"bytes,89,opt,name=account_transfer_account_msg,json=accountTransferAccountMsg,proto3,oneof"`
}

func (*ProposalOptions_AccountTransferAccountMsg) MarshalTo added in v1.0.0

func (m *ProposalOptions_AccountTransferAccountMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_AccountTransferAccountMsg) Size added in v1.0.0

type ProposalOptions_AccountTransferDomainMsg added in v1.0.0

type ProposalOptions_AccountTransferDomainMsg struct {
	AccountTransferDomainMsg *account.TransferDomainMsg `protobuf:"bytes,85,opt,name=account_transfer_domain_msg,json=accountTransferDomainMsg,proto3,oneof"`
}

func (*ProposalOptions_AccountTransferDomainMsg) MarshalTo added in v1.0.0

func (m *ProposalOptions_AccountTransferDomainMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_AccountTransferDomainMsg) Size added in v1.0.0

type ProposalOptions_AccountUpdateConfigurationMsg added in v1.0.0

type ProposalOptions_AccountUpdateConfigurationMsg struct {
	AccountUpdateConfigurationMsg *account.UpdateConfigurationMsg `protobuf:"bytes,82,opt,name=account_update_configuration_msg,json=accountUpdateConfigurationMsg,proto3,oneof"`
}

func (*ProposalOptions_AccountUpdateConfigurationMsg) MarshalTo added in v1.0.0

func (*ProposalOptions_AccountUpdateConfigurationMsg) Size added in v1.0.0

type ProposalOptions_CashSendMsg added in v0.17.0

type ProposalOptions_CashSendMsg struct {
	CashSendMsg *cash.SendMsg `protobuf:"bytes,51,opt,name=cash_send_msg,json=cashSendMsg,proto3,oneof"`
}

func (*ProposalOptions_CashSendMsg) MarshalTo added in v0.17.0

func (m *ProposalOptions_CashSendMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_CashSendMsg) Size added in v0.17.0

func (m *ProposalOptions_CashSendMsg) Size() (n int)

type ProposalOptions_CashUpdateConfigurationMsg added in v0.24.0

type ProposalOptions_CashUpdateConfigurationMsg struct {
	CashUpdateConfigurationMsg *cash.UpdateConfigurationMsg `protobuf:"bytes,97,opt,name=cash_update_configuration_msg,json=cashUpdateConfigurationMsg,proto3,oneof"`
}

func (*ProposalOptions_CashUpdateConfigurationMsg) MarshalTo added in v0.24.0

func (m *ProposalOptions_CashUpdateConfigurationMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_CashUpdateConfigurationMsg) Size added in v0.24.0

type ProposalOptions_CurrencyCreateMsg added in v0.17.0

type ProposalOptions_CurrencyCreateMsg struct {
	CurrencyCreateMsg *currency.CreateMsg `protobuf:"bytes,59,opt,name=currency_create_msg,json=currencyCreateMsg,proto3,oneof"`
}

func (*ProposalOptions_CurrencyCreateMsg) MarshalTo added in v0.17.0

func (m *ProposalOptions_CurrencyCreateMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_CurrencyCreateMsg) Size added in v0.17.0

func (m *ProposalOptions_CurrencyCreateMsg) Size() (n int)

type ProposalOptions_DatamigrationExecuteMigrationMsg added in v0.24.0

type ProposalOptions_DatamigrationExecuteMigrationMsg struct {
	DatamigrationExecuteMigrationMsg *datamigration.ExecuteMigrationMsg `protobuf:"bytes,81,opt,name=datamigration_execute_migration_msg,json=datamigrationExecuteMigrationMsg,proto3,oneof"`
}

func (*ProposalOptions_DatamigrationExecuteMigrationMsg) MarshalTo added in v0.24.0

func (*ProposalOptions_DatamigrationExecuteMigrationMsg) Size added in v0.24.0

type ProposalOptions_DistributionCreateMsg added in v0.17.0

type ProposalOptions_DistributionCreateMsg struct {
	DistributionCreateMsg *distribution.CreateMsg `protobuf:"bytes,66,opt,name=distribution_create_msg,json=distributionCreateMsg,proto3,oneof"`
}

func (*ProposalOptions_DistributionCreateMsg) MarshalTo added in v0.17.0

func (m *ProposalOptions_DistributionCreateMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_DistributionCreateMsg) Size added in v0.17.0

type ProposalOptions_DistributionMsg added in v0.17.0

type ProposalOptions_DistributionMsg struct {
	DistributionMsg *distribution.DistributeMsg `protobuf:"bytes,67,opt,name=distribution_msg,json=distributionMsg,proto3,oneof"`
}

func (*ProposalOptions_DistributionMsg) MarshalTo added in v0.17.0

func (m *ProposalOptions_DistributionMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_DistributionMsg) Size added in v0.17.0

func (m *ProposalOptions_DistributionMsg) Size() (n int)

type ProposalOptions_DistributionResetMsg added in v0.17.0

type ProposalOptions_DistributionResetMsg struct {
	DistributionResetMsg *distribution.ResetMsg `protobuf:"bytes,68,opt,name=distribution_reset_msg,json=distributionResetMsg,proto3,oneof"`
}

func (*ProposalOptions_DistributionResetMsg) MarshalTo added in v0.17.0

func (m *ProposalOptions_DistributionResetMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_DistributionResetMsg) Size added in v0.17.0

type ProposalOptions_EscrowReleaseMsg added in v0.17.0

type ProposalOptions_EscrowReleaseMsg struct {
	EscrowReleaseMsg *escrow.ReleaseMsg `protobuf:"bytes,53,opt,name=escrow_release_msg,json=escrowReleaseMsg,proto3,oneof"`
}

func (*ProposalOptions_EscrowReleaseMsg) MarshalTo added in v0.17.0

func (m *ProposalOptions_EscrowReleaseMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_EscrowReleaseMsg) Size added in v0.17.0

func (m *ProposalOptions_EscrowReleaseMsg) Size() (n int)

type ProposalOptions_ExecuteProposalBatchMsg added in v0.17.0

type ProposalOptions_ExecuteProposalBatchMsg struct {
	ExecuteProposalBatchMsg *ExecuteProposalBatchMsg `protobuf:"bytes,60,opt,name=execute_proposal_batch_msg,json=executeProposalBatchMsg,proto3,oneof"`
}

func (*ProposalOptions_ExecuteProposalBatchMsg) MarshalTo added in v0.17.0

func (m *ProposalOptions_ExecuteProposalBatchMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_ExecuteProposalBatchMsg) Size added in v0.17.0

type ProposalOptions_GovCreateTextResolutionMsg added in v0.17.0

type ProposalOptions_GovCreateTextResolutionMsg struct {
	GovCreateTextResolutionMsg *gov.CreateTextResolutionMsg `protobuf:"bytes,79,opt,name=gov_create_text_resolution_msg,json=govCreateTextResolutionMsg,proto3,oneof"`
}

func (*ProposalOptions_GovCreateTextResolutionMsg) MarshalTo added in v0.17.0

func (m *ProposalOptions_GovCreateTextResolutionMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_GovCreateTextResolutionMsg) Size added in v0.17.0

type ProposalOptions_GovUpdateElectionRuleMsg added in v0.17.0

type ProposalOptions_GovUpdateElectionRuleMsg struct {
	GovUpdateElectionRuleMsg *gov.UpdateElectionRuleMsg `protobuf:"bytes,78,opt,name=gov_update_election_rule_msg,json=govUpdateElectionRuleMsg,proto3,oneof"`
}

func (*ProposalOptions_GovUpdateElectionRuleMsg) MarshalTo added in v0.17.0

func (m *ProposalOptions_GovUpdateElectionRuleMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_GovUpdateElectionRuleMsg) Size added in v0.17.0

type ProposalOptions_GovUpdateElectorateMsg added in v0.17.0

type ProposalOptions_GovUpdateElectorateMsg struct {
	GovUpdateElectorateMsg *gov.UpdateElectorateMsg `protobuf:"bytes,77,opt,name=gov_update_electorate_msg,json=govUpdateElectorateMsg,proto3,oneof"`
}

func (*ProposalOptions_GovUpdateElectorateMsg) MarshalTo added in v0.17.0

func (m *ProposalOptions_GovUpdateElectorateMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_GovUpdateElectorateMsg) Size added in v0.17.0

type ProposalOptions_MigrationUpgradeSchemaMsg added in v0.17.0

type ProposalOptions_MigrationUpgradeSchemaMsg struct {
	MigrationUpgradeSchemaMsg *migration.UpgradeSchemaMsg `protobuf:"bytes,69,opt,name=migration_upgrade_schema_msg,json=migrationUpgradeSchemaMsg,proto3,oneof"`
}

func (*ProposalOptions_MigrationUpgradeSchemaMsg) MarshalTo added in v0.17.0

func (m *ProposalOptions_MigrationUpgradeSchemaMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_MigrationUpgradeSchemaMsg) Size added in v0.17.0

type ProposalOptions_MsgfeeSetMsgFeeMsg added in v0.21.3

type ProposalOptions_MsgfeeSetMsgFeeMsg struct {
	MsgfeeSetMsgFeeMsg *msgfee.SetMsgFeeMsg `protobuf:"bytes,80,opt,name=msgfee_set_msg_fee_msg,json=msgfeeSetMsgFeeMsg,proto3,oneof"`
}

func (*ProposalOptions_MsgfeeSetMsgFeeMsg) MarshalTo added in v0.21.3

func (m *ProposalOptions_MsgfeeSetMsgFeeMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_MsgfeeSetMsgFeeMsg) Size added in v0.21.3

type ProposalOptions_MsgfeeUpdateConfigurationMsg added in v1.0.0

type ProposalOptions_MsgfeeUpdateConfigurationMsg struct {
	MsgfeeUpdateConfigurationMsg *msgfee.UpdateConfigurationMsg `protobuf:"bytes,105,opt,name=msgfee_update_configuration_msg,json=msgfeeUpdateConfigurationMsg,proto3,oneof"`
}

func (*ProposalOptions_MsgfeeUpdateConfigurationMsg) MarshalTo added in v1.0.0

func (*ProposalOptions_MsgfeeUpdateConfigurationMsg) Size added in v1.0.0

type ProposalOptions_MultisigUpdateMsg added in v0.17.0

type ProposalOptions_MultisigUpdateMsg struct {
	MultisigUpdateMsg *multisig.UpdateMsg `protobuf:"bytes,57,opt,name=multisig_update_msg,json=multisigUpdateMsg,proto3,oneof"`
}

func (*ProposalOptions_MultisigUpdateMsg) MarshalTo added in v0.17.0

func (m *ProposalOptions_MultisigUpdateMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_MultisigUpdateMsg) Size added in v0.17.0

func (m *ProposalOptions_MultisigUpdateMsg) Size() (n int)

type ProposalOptions_PreregistrationUpdateConfigurationMsg added in v1.0.0

type ProposalOptions_PreregistrationUpdateConfigurationMsg struct {
	PreregistrationUpdateConfigurationMsg *preregistration.UpdateConfigurationMsg `` /* 126-byte string literal not displayed */
}

func (*ProposalOptions_PreregistrationUpdateConfigurationMsg) MarshalTo added in v1.0.0

func (*ProposalOptions_PreregistrationUpdateConfigurationMsg) Size added in v1.0.0

type ProposalOptions_QualityscoreUpdateConfigurationMsg added in v1.0.0

type ProposalOptions_QualityscoreUpdateConfigurationMsg struct {
	QualityscoreUpdateConfigurationMsg *qualityscore.UpdateConfigurationMsg `protobuf:"bytes,103,opt,name=qualityscore_update_configuration_msg,json=qualityscoreUpdateConfigurationMsg,proto3,oneof"`
}

func (*ProposalOptions_QualityscoreUpdateConfigurationMsg) MarshalTo added in v1.0.0

func (*ProposalOptions_QualityscoreUpdateConfigurationMsg) Size added in v1.0.0

type ProposalOptions_TermdepositCreateDepositContractMsg added in v1.0.0

type ProposalOptions_TermdepositCreateDepositContractMsg struct {
	TermdepositCreateDepositContractMsg *termdeposit.CreateDepositContractMsg `protobuf:"bytes,99,opt,name=termdeposit_create_deposit_contract_msg,json=termdepositCreateDepositContractMsg,proto3,oneof"`
}

func (*ProposalOptions_TermdepositCreateDepositContractMsg) MarshalTo added in v1.0.0

func (*ProposalOptions_TermdepositCreateDepositContractMsg) Size added in v1.0.0

type ProposalOptions_TermdepositDepositMsg added in v1.0.0

type ProposalOptions_TermdepositDepositMsg struct {
	TermdepositDepositMsg *termdeposit.DepositMsg `protobuf:"bytes,100,opt,name=termdeposit_deposit_msg,json=termdepositDepositMsg,proto3,oneof"`
}

func (*ProposalOptions_TermdepositDepositMsg) MarshalTo added in v1.0.0

func (m *ProposalOptions_TermdepositDepositMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_TermdepositDepositMsg) Size added in v1.0.0

type ProposalOptions_TermdepositReleaseDepositMsg added in v1.0.0

type ProposalOptions_TermdepositReleaseDepositMsg struct {
	TermdepositReleaseDepositMsg *termdeposit.ReleaseDepositMsg `protobuf:"bytes,101,opt,name=termdeposit_release_deposit_msg,json=termdepositReleaseDepositMsg,proto3,oneof"`
}

func (*ProposalOptions_TermdepositReleaseDepositMsg) MarshalTo added in v1.0.0

func (*ProposalOptions_TermdepositReleaseDepositMsg) Size added in v1.0.0

type ProposalOptions_TermdepositUpdateConfigurationMsg added in v1.0.0

type ProposalOptions_TermdepositUpdateConfigurationMsg struct {
	TermdepositUpdateConfigurationMsg *termdeposit.UpdateConfigurationMsg `protobuf:"bytes,102,opt,name=termdeposit_update_configuration_msg,json=termdepositUpdateConfigurationMsg,proto3,oneof"`
}

func (*ProposalOptions_TermdepositUpdateConfigurationMsg) MarshalTo added in v1.0.0

func (*ProposalOptions_TermdepositUpdateConfigurationMsg) Size added in v1.0.0

type ProposalOptions_TxfeeUpdateConfigurationMsg added in v0.25.0

type ProposalOptions_TxfeeUpdateConfigurationMsg struct {
	TxfeeUpdateConfigurationMsg *txfee.UpdateConfigurationMsg `protobuf:"bytes,98,opt,name=txfee_update_configuration_msg,json=txfeeUpdateConfigurationMsg,proto3,oneof"`
}

func (*ProposalOptions_TxfeeUpdateConfigurationMsg) MarshalTo added in v0.25.0

func (*ProposalOptions_TxfeeUpdateConfigurationMsg) Size added in v0.25.0

type ProposalOptions_UpdateEscrowPartiesMsg added in v0.17.0

type ProposalOptions_UpdateEscrowPartiesMsg struct {
	UpdateEscrowPartiesMsg *escrow.UpdatePartiesMsg `protobuf:"bytes,55,opt,name=update_escrow_parties_msg,json=updateEscrowPartiesMsg,proto3,oneof"`
}

func (*ProposalOptions_UpdateEscrowPartiesMsg) MarshalTo added in v0.17.0

func (m *ProposalOptions_UpdateEscrowPartiesMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_UpdateEscrowPartiesMsg) Size added in v0.17.0

type ProposalOptions_UsernameChangeTokenTargetsMsg added in v0.17.0

type ProposalOptions_UsernameChangeTokenTargetsMsg struct {
	UsernameChangeTokenTargetsMsg *username.ChangeTokenTargetsMsg `protobuf:"bytes,63,opt,name=username_change_token_targets_msg,json=usernameChangeTokenTargetsMsg,proto3,oneof"`
}

func (*ProposalOptions_UsernameChangeTokenTargetsMsg) MarshalTo added in v0.17.0

func (*ProposalOptions_UsernameChangeTokenTargetsMsg) Size added in v0.17.0

type ProposalOptions_UsernameRegisterTokenMsg added in v0.17.0

type ProposalOptions_UsernameRegisterTokenMsg struct {
	UsernameRegisterTokenMsg *username.RegisterTokenMsg `protobuf:"bytes,61,opt,name=username_register_token_msg,json=usernameRegisterTokenMsg,proto3,oneof"`
}

func (*ProposalOptions_UsernameRegisterTokenMsg) MarshalTo added in v0.17.0

func (m *ProposalOptions_UsernameRegisterTokenMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_UsernameRegisterTokenMsg) Size added in v0.17.0

type ProposalOptions_UsernameTransferTokenMsg added in v0.17.0

type ProposalOptions_UsernameTransferTokenMsg struct {
	UsernameTransferTokenMsg *username.TransferTokenMsg `protobuf:"bytes,62,opt,name=username_transfer_token_msg,json=usernameTransferTokenMsg,proto3,oneof"`
}

func (*ProposalOptions_UsernameTransferTokenMsg) MarshalTo added in v0.17.0

func (m *ProposalOptions_UsernameTransferTokenMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_UsernameTransferTokenMsg) Size added in v0.17.0

type ProposalOptions_UsernameUpdateConfigurationMsg added in v0.22.0

type ProposalOptions_UsernameUpdateConfigurationMsg struct {
	UsernameUpdateConfigurationMsg *username.UpdateConfigurationMsg `protobuf:"bytes,64,opt,name=username_update_configuration_msg,json=usernameUpdateConfigurationMsg,proto3,oneof"`
}

func (*ProposalOptions_UsernameUpdateConfigurationMsg) MarshalTo added in v0.22.0

func (*ProposalOptions_UsernameUpdateConfigurationMsg) Size added in v0.22.0

type ProposalOptions_ValidatorsApplyDiffMsg added in v0.17.0

type ProposalOptions_ValidatorsApplyDiffMsg struct {
	ValidatorsApplyDiffMsg *validators.ApplyDiffMsg `protobuf:"bytes,58,opt,name=validators_apply_diff_msg,json=validatorsApplyDiffMsg,proto3,oneof"`
}

func (*ProposalOptions_ValidatorsApplyDiffMsg) MarshalTo added in v0.17.0

func (m *ProposalOptions_ValidatorsApplyDiffMsg) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOptions_ValidatorsApplyDiffMsg) Size added in v0.17.0

type Tx

type Tx struct {
	Fees       *cash.FeeInfo        `protobuf:"bytes,1,opt,name=fees,proto3" json:"fees,omitempty"`
	Signatures []*sigs.StdSignature `protobuf:"bytes,2,rep,name=signatures,proto3" json:"signatures,omitempty"`
	// Multisig contains IDs of multisig contracts.
	// empty array results in multisig being ignored, basically the same behaviour
	// as if it never got supplied.
	Multisig [][]byte `protobuf:"bytes,4,rep,name=multisig,proto3" json:"multisig,omitempty"`
	// msg is a sum type over all allowed messages on this chain.
	//
	// Types that are valid to be assigned to Sum:
	//	*Tx_CashSendMsg
	//	*Tx_EscrowCreateMsg
	//	*Tx_EscrowReleaseMsg
	//	*Tx_EscrowReturnMsg
	//	*Tx_EscrowUpdatePartiesMsg
	//	*Tx_MultisigCreateMsg
	//	*Tx_MultisigUpdateMsg
	//	*Tx_ValidatorsApplyDiffMsg
	//	*Tx_CurrencyCreateMsg
	//	*Tx_ExecuteBatchMsg
	//	*Tx_UsernameRegisterTokenMsg
	//	*Tx_UsernameTransferTokenMsg
	//	*Tx_UsernameChangeTokenTargetsMsg
	//	*Tx_UsernameUpdateConfigurationMsg
	//	*Tx_DistributionCreateMsg
	//	*Tx_DistributionMsg
	//	*Tx_DistributionResetMsg
	//	*Tx_MigrationUpgradeSchemaMsg
	//	*Tx_AswapCreateMsg
	//	*Tx_AswapReleaseMsg
	//	*Tx_AswapReturnMsg
	//	*Tx_GovCreateProposalMsg
	//	*Tx_GovDeleteProposalMsg
	//	*Tx_GovVoteMsg
	//	*Tx_GovUpdateElectorateMsg
	//	*Tx_GovUpdateElectionRuleMsg
	//	*Tx_MsgfeeSetMsgFeeMsg
	//	*Tx_DatamigrationExecuteMigrationMsg
	//	*Tx_AccountUpdateConfigurationMsg
	//	*Tx_AccountRegisterDomainMsg
	//	*Tx_AccountReplaceAccountMsgFeesMsg
	//	*Tx_AccountTransferDomainMsg
	//	*Tx_AccountRenewDomainMsg
	//	*Tx_AccountDeleteDomainMsg
	//	*Tx_AccountRegisterAccountMsg
	//	*Tx_AccountTransferAccountMsg
	//	*Tx_AccountReplaceAccountTargetsMsg
	//	*Tx_AccountDeleteAccountMsg
	//	*Tx_AccountFlushDomainMsg
	//	*Tx_AccountRenewAccountMsg
	//	*Tx_AccountAddAccountCertificateMsg
	//	*Tx_AccountDeleteAccountCertificateMsg
	//	*Tx_PreregistrationRegisterMsg
	//	*Tx_CashUpdateConfigurationMsg
	//	*Tx_TxfeeUpdateConfigurationMsg
	//	*Tx_TermdepositCreateDepositContractMsg
	//	*Tx_TermdepositDepositMsg
	//	*Tx_TermdepositReleaseDepositMsg
	//	*Tx_TermdepositUpdateConfigurationMsg
	//	*Tx_QualityscoreUpdateConfigurationMsg
	//	*Tx_PreregistrationUpdateConfigurationMsg
	//	*Tx_MsgfeeUpdateConfigurationMsg
	Sum isTx_Sum `protobuf_oneof:"sum"`
}

Tx contains the message.

When extending Tx, follow the rules:

  • range 1-50 is reserved for middlewares,
  • range 51-inf is reserved for different message types,
  • keep the same numbers for the same message types in both bnsd and other applications. For example, FeeInfo field is used by both and indexed at first position. Skip unused fields (leave index unused or comment out for clarity).

When there is a gap in message sequence numbers - that most likely means some old fields got deprecated. This is done to maintain binary compatibility.

func (*Tx) Descriptor

func (*Tx) Descriptor() ([]byte, []int)

func (*Tx) Fee added in v0.13.0

func (tx *Tx) Fee(payer weave.Address, fee coin.Coin)

Fee sets the FeeInfo for this tx

func (*Tx) GetAccountAddAccountCertificateMsg added in v0.24.0

func (m *Tx) GetAccountAddAccountCertificateMsg() *account.AddAccountCertificateMsg

func (*Tx) GetAccountDeleteAccountCertificateMsg added in v0.24.0

func (m *Tx) GetAccountDeleteAccountCertificateMsg() *account.DeleteAccountCertificateMsg

func (*Tx) GetAccountDeleteAccountMsg added in v0.24.0

func (m *Tx) GetAccountDeleteAccountMsg() *account.DeleteAccountMsg

func (*Tx) GetAccountDeleteDomainMsg added in v0.24.0

func (m *Tx) GetAccountDeleteDomainMsg() *account.DeleteDomainMsg

func (*Tx) GetAccountFlushDomainMsg added in v0.24.0

func (m *Tx) GetAccountFlushDomainMsg() *account.FlushDomainMsg

func (*Tx) GetAccountRegisterAccountMsg added in v0.24.0

func (m *Tx) GetAccountRegisterAccountMsg() *account.RegisterAccountMsg

func (*Tx) GetAccountRegisterDomainMsg added in v0.24.0

func (m *Tx) GetAccountRegisterDomainMsg() *account.RegisterDomainMsg

func (*Tx) GetAccountRenewAccountMsg added in v0.24.0

func (m *Tx) GetAccountRenewAccountMsg() *account.RenewAccountMsg

func (*Tx) GetAccountRenewDomainMsg added in v0.24.0

func (m *Tx) GetAccountRenewDomainMsg() *account.RenewDomainMsg

func (*Tx) GetAccountReplaceAccountMsgFeesMsg added in v0.24.0

func (m *Tx) GetAccountReplaceAccountMsgFeesMsg() *account.ReplaceAccountMsgFeesMsg

func (*Tx) GetAccountReplaceAccountTargetsMsg added in v0.24.0

func (m *Tx) GetAccountReplaceAccountTargetsMsg() *account.ReplaceAccountTargetsMsg

func (*Tx) GetAccountTransferAccountMsg added in v0.24.0

func (m *Tx) GetAccountTransferAccountMsg() *account.TransferAccountMsg

func (*Tx) GetAccountTransferDomainMsg added in v0.24.0

func (m *Tx) GetAccountTransferDomainMsg() *account.TransferDomainMsg

func (*Tx) GetAccountUpdateConfigurationMsg added in v0.24.0

func (m *Tx) GetAccountUpdateConfigurationMsg() *account.UpdateConfigurationMsg

func (*Tx) GetAswapCreateMsg added in v0.17.0

func (m *Tx) GetAswapCreateMsg() *aswap.CreateMsg

func (*Tx) GetAswapReleaseMsg added in v0.17.0

func (m *Tx) GetAswapReleaseMsg() *aswap.ReleaseMsg

func (*Tx) GetAswapReturnMsg added in v0.17.0

func (m *Tx) GetAswapReturnMsg() *aswap.ReturnMsg

func (*Tx) GetCashSendMsg added in v0.17.0

func (m *Tx) GetCashSendMsg() *cash.SendMsg

func (*Tx) GetCashUpdateConfigurationMsg added in v0.24.0

func (m *Tx) GetCashUpdateConfigurationMsg() *cash.UpdateConfigurationMsg

func (*Tx) GetCurrencyCreateMsg added in v0.17.0

func (m *Tx) GetCurrencyCreateMsg() *currency.CreateMsg

func (*Tx) GetDatamigrationExecuteMigrationMsg added in v0.24.0

func (m *Tx) GetDatamigrationExecuteMigrationMsg() *datamigration.ExecuteMigrationMsg

func (*Tx) GetDistributionCreateMsg added in v0.17.0

func (m *Tx) GetDistributionCreateMsg() *distribution.CreateMsg

func (*Tx) GetDistributionMsg added in v0.17.0

func (m *Tx) GetDistributionMsg() *distribution.DistributeMsg

func (*Tx) GetDistributionResetMsg added in v0.17.0

func (m *Tx) GetDistributionResetMsg() *distribution.ResetMsg

func (*Tx) GetEscrowCreateMsg added in v0.17.0

func (m *Tx) GetEscrowCreateMsg() *escrow.CreateMsg

func (*Tx) GetEscrowReleaseMsg added in v0.17.0

func (m *Tx) GetEscrowReleaseMsg() *escrow.ReleaseMsg

func (*Tx) GetEscrowReturnMsg added in v0.17.0

func (m *Tx) GetEscrowReturnMsg() *escrow.ReturnMsg

func (*Tx) GetEscrowUpdatePartiesMsg added in v0.17.0

func (m *Tx) GetEscrowUpdatePartiesMsg() *escrow.UpdatePartiesMsg

func (*Tx) GetExecuteBatchMsg added in v0.17.0

func (m *Tx) GetExecuteBatchMsg() *ExecuteBatchMsg

func (*Tx) GetFees

func (m *Tx) GetFees() *cash.FeeInfo

func (*Tx) GetGovCreateProposalMsg added in v0.17.0

func (m *Tx) GetGovCreateProposalMsg() *gov.CreateProposalMsg

func (*Tx) GetGovDeleteProposalMsg added in v0.17.0

func (m *Tx) GetGovDeleteProposalMsg() *gov.DeleteProposalMsg

func (*Tx) GetGovUpdateElectionRuleMsg added in v0.17.0

func (m *Tx) GetGovUpdateElectionRuleMsg() *gov.UpdateElectionRuleMsg

func (*Tx) GetGovUpdateElectorateMsg added in v0.17.0

func (m *Tx) GetGovUpdateElectorateMsg() *gov.UpdateElectorateMsg

func (*Tx) GetGovVoteMsg added in v0.17.0

func (m *Tx) GetGovVoteMsg() *gov.VoteMsg

func (*Tx) GetMigrationUpgradeSchemaMsg added in v0.17.0

func (m *Tx) GetMigrationUpgradeSchemaMsg() *migration.UpgradeSchemaMsg

func (*Tx) GetMsg

func (tx *Tx) GetMsg() (weave.Msg, error)

GetMsg switches over all types defined in the protobuf file

func (*Tx) GetMsgfeeSetMsgFeeMsg added in v0.21.3

func (m *Tx) GetMsgfeeSetMsgFeeMsg() *msgfee.SetMsgFeeMsg

func (*Tx) GetMsgfeeUpdateConfigurationMsg added in v1.0.0

func (m *Tx) GetMsgfeeUpdateConfigurationMsg() *msgfee.UpdateConfigurationMsg

func (*Tx) GetMultisig

func (m *Tx) GetMultisig() [][]byte

func (*Tx) GetMultisigCreateMsg added in v0.17.0

func (m *Tx) GetMultisigCreateMsg() *multisig.CreateMsg

func (*Tx) GetMultisigUpdateMsg added in v0.17.0

func (m *Tx) GetMultisigUpdateMsg() *multisig.UpdateMsg

func (*Tx) GetPreregistrationRegisterMsg added in v0.25.0

func (m *Tx) GetPreregistrationRegisterMsg() *preregistration.RegisterMsg

func (*Tx) GetPreregistrationUpdateConfigurationMsg added in v1.0.0

func (m *Tx) GetPreregistrationUpdateConfigurationMsg() *preregistration.UpdateConfigurationMsg

func (*Tx) GetQualityscoreUpdateConfigurationMsg added in v1.0.0

func (m *Tx) GetQualityscoreUpdateConfigurationMsg() *qualityscore.UpdateConfigurationMsg

func (*Tx) GetSignBytes

func (tx *Tx) GetSignBytes() ([]byte, error)

GetSignBytes returns the bytes to sign...

func (*Tx) GetSignatures

func (m *Tx) GetSignatures() []*sigs.StdSignature

func (*Tx) GetSum

func (m *Tx) GetSum() isTx_Sum

func (*Tx) GetTermdepositCreateDepositContractMsg added in v1.0.0

func (m *Tx) GetTermdepositCreateDepositContractMsg() *termdeposit.CreateDepositContractMsg

func (*Tx) GetTermdepositDepositMsg added in v1.0.0

func (m *Tx) GetTermdepositDepositMsg() *termdeposit.DepositMsg

func (*Tx) GetTermdepositReleaseDepositMsg added in v1.0.0

func (m *Tx) GetTermdepositReleaseDepositMsg() *termdeposit.ReleaseDepositMsg

func (*Tx) GetTermdepositUpdateConfigurationMsg added in v1.0.0

func (m *Tx) GetTermdepositUpdateConfigurationMsg() *termdeposit.UpdateConfigurationMsg

func (*Tx) GetTxfeeUpdateConfigurationMsg added in v0.25.0

func (m *Tx) GetTxfeeUpdateConfigurationMsg() *txfee.UpdateConfigurationMsg

func (*Tx) GetUsernameChangeTokenTargetsMsg added in v0.17.0

func (m *Tx) GetUsernameChangeTokenTargetsMsg() *username.ChangeTokenTargetsMsg

func (*Tx) GetUsernameRegisterTokenMsg added in v0.17.0

func (m *Tx) GetUsernameRegisterTokenMsg() *username.RegisterTokenMsg

func (*Tx) GetUsernameTransferTokenMsg added in v0.17.0

func (m *Tx) GetUsernameTransferTokenMsg() *username.TransferTokenMsg

func (*Tx) GetUsernameUpdateConfigurationMsg added in v0.22.0

func (m *Tx) GetUsernameUpdateConfigurationMsg() *username.UpdateConfigurationMsg

func (*Tx) GetValidatorsApplyDiffMsg added in v0.17.0

func (m *Tx) GetValidatorsApplyDiffMsg() *validators.ApplyDiffMsg

func (*Tx) Marshal

func (m *Tx) Marshal() (dAtA []byte, err error)

func (*Tx) MarshalTo

func (m *Tx) MarshalTo(dAtA []byte) (int, error)

func (*Tx) ProtoMessage

func (*Tx) ProtoMessage()

func (*Tx) Reset

func (m *Tx) Reset()

func (*Tx) Size

func (m *Tx) Size() (n int)

func (*Tx) String

func (m *Tx) String() string

func (*Tx) Unmarshal

func (m *Tx) Unmarshal(dAtA []byte) error

func (*Tx) XXX_DiscardUnknown added in v0.12.0

func (m *Tx) XXX_DiscardUnknown()

func (*Tx) XXX_Marshal added in v0.12.0

func (m *Tx) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Tx) XXX_Merge added in v0.12.0

func (m *Tx) XXX_Merge(src proto.Message)

func (*Tx) XXX_OneofFuncs

func (*Tx) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{})

XXX_OneofFuncs is for the internal use of the proto package.

func (*Tx) XXX_Size added in v0.12.0

func (m *Tx) XXX_Size() int

func (*Tx) XXX_Unmarshal added in v0.12.0

func (m *Tx) XXX_Unmarshal(b []byte) error

type Tx_AccountAddAccountCertificateMsg added in v0.24.0

type Tx_AccountAddAccountCertificateMsg struct {
	AccountAddAccountCertificateMsg *account.AddAccountCertificateMsg `protobuf:"bytes,94,opt,name=account_add_account_certificate_msg,json=accountAddAccountCertificateMsg,proto3,oneof"`
}

func (*Tx_AccountAddAccountCertificateMsg) MarshalTo added in v0.24.0

func (m *Tx_AccountAddAccountCertificateMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_AccountAddAccountCertificateMsg) Size added in v0.24.0

type Tx_AccountDeleteAccountCertificateMsg added in v0.24.0

type Tx_AccountDeleteAccountCertificateMsg struct {
	AccountDeleteAccountCertificateMsg *account.DeleteAccountCertificateMsg `protobuf:"bytes,95,opt,name=account_delete_account_certificate_msg,json=accountDeleteAccountCertificateMsg,proto3,oneof"`
}

func (*Tx_AccountDeleteAccountCertificateMsg) MarshalTo added in v0.24.0

func (m *Tx_AccountDeleteAccountCertificateMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_AccountDeleteAccountCertificateMsg) Size added in v0.24.0

type Tx_AccountDeleteAccountMsg added in v0.24.0

type Tx_AccountDeleteAccountMsg struct {
	AccountDeleteAccountMsg *account.DeleteAccountMsg `protobuf:"bytes,91,opt,name=account_delete_account_msg,json=accountDeleteAccountMsg,proto3,oneof"`
}

func (*Tx_AccountDeleteAccountMsg) MarshalTo added in v0.24.0

func (m *Tx_AccountDeleteAccountMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_AccountDeleteAccountMsg) Size added in v0.24.0

func (m *Tx_AccountDeleteAccountMsg) Size() (n int)

type Tx_AccountDeleteDomainMsg added in v0.24.0

type Tx_AccountDeleteDomainMsg struct {
	AccountDeleteDomainMsg *account.DeleteDomainMsg `protobuf:"bytes,87,opt,name=account_delete_domain_msg,json=accountDeleteDomainMsg,proto3,oneof"`
}

func (*Tx_AccountDeleteDomainMsg) MarshalTo added in v0.24.0

func (m *Tx_AccountDeleteDomainMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_AccountDeleteDomainMsg) Size added in v0.24.0

func (m *Tx_AccountDeleteDomainMsg) Size() (n int)

type Tx_AccountFlushDomainMsg added in v0.24.0

type Tx_AccountFlushDomainMsg struct {
	AccountFlushDomainMsg *account.FlushDomainMsg `protobuf:"bytes,92,opt,name=account_flush_domain_msg,json=accountFlushDomainMsg,proto3,oneof"`
}

func (*Tx_AccountFlushDomainMsg) MarshalTo added in v0.24.0

func (m *Tx_AccountFlushDomainMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_AccountFlushDomainMsg) Size added in v0.24.0

func (m *Tx_AccountFlushDomainMsg) Size() (n int)

type Tx_AccountRegisterAccountMsg added in v0.24.0

type Tx_AccountRegisterAccountMsg struct {
	AccountRegisterAccountMsg *account.RegisterAccountMsg `protobuf:"bytes,88,opt,name=account_register_account_msg,json=accountRegisterAccountMsg,proto3,oneof"`
}

func (*Tx_AccountRegisterAccountMsg) MarshalTo added in v0.24.0

func (m *Tx_AccountRegisterAccountMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_AccountRegisterAccountMsg) Size added in v0.24.0

func (m *Tx_AccountRegisterAccountMsg) Size() (n int)

type Tx_AccountRegisterDomainMsg added in v0.24.0

type Tx_AccountRegisterDomainMsg struct {
	AccountRegisterDomainMsg *account.RegisterDomainMsg `protobuf:"bytes,83,opt,name=account_register_domain_msg,json=accountRegisterDomainMsg,proto3,oneof"`
}

func (*Tx_AccountRegisterDomainMsg) MarshalTo added in v0.24.0

func (m *Tx_AccountRegisterDomainMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_AccountRegisterDomainMsg) Size added in v0.24.0

func (m *Tx_AccountRegisterDomainMsg) Size() (n int)

type Tx_AccountRenewAccountMsg added in v0.24.0

type Tx_AccountRenewAccountMsg struct {
	AccountRenewAccountMsg *account.RenewAccountMsg `protobuf:"bytes,93,opt,name=account_renew_account_msg,json=accountRenewAccountMsg,proto3,oneof"`
}

func (*Tx_AccountRenewAccountMsg) MarshalTo added in v0.24.0

func (m *Tx_AccountRenewAccountMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_AccountRenewAccountMsg) Size added in v0.24.0

func (m *Tx_AccountRenewAccountMsg) Size() (n int)

type Tx_AccountRenewDomainMsg added in v0.24.0

type Tx_AccountRenewDomainMsg struct {
	AccountRenewDomainMsg *account.RenewDomainMsg `protobuf:"bytes,86,opt,name=account_renew_domain_msg,json=accountRenewDomainMsg,proto3,oneof"`
}

func (*Tx_AccountRenewDomainMsg) MarshalTo added in v0.24.0

func (m *Tx_AccountRenewDomainMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_AccountRenewDomainMsg) Size added in v0.24.0

func (m *Tx_AccountRenewDomainMsg) Size() (n int)

type Tx_AccountReplaceAccountMsgFeesMsg added in v0.24.0

type Tx_AccountReplaceAccountMsgFeesMsg struct {
	AccountReplaceAccountMsgFeesMsg *account.ReplaceAccountMsgFeesMsg `protobuf:"bytes,84,opt,name=account_replace_account_msg_fees_msg,json=accountReplaceAccountMsgFeesMsg,proto3,oneof"`
}

func (*Tx_AccountReplaceAccountMsgFeesMsg) MarshalTo added in v0.24.0

func (m *Tx_AccountReplaceAccountMsgFeesMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_AccountReplaceAccountMsgFeesMsg) Size added in v0.24.0

type Tx_AccountReplaceAccountTargetsMsg added in v0.24.0

type Tx_AccountReplaceAccountTargetsMsg struct {
	AccountReplaceAccountTargetsMsg *account.ReplaceAccountTargetsMsg `protobuf:"bytes,90,opt,name=account_replace_account_targets_msg,json=accountReplaceAccountTargetsMsg,proto3,oneof"`
}

func (*Tx_AccountReplaceAccountTargetsMsg) MarshalTo added in v0.24.0

func (m *Tx_AccountReplaceAccountTargetsMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_AccountReplaceAccountTargetsMsg) Size added in v0.24.0

type Tx_AccountTransferAccountMsg added in v0.24.0

type Tx_AccountTransferAccountMsg struct {
	AccountTransferAccountMsg *account.TransferAccountMsg `protobuf:"bytes,89,opt,name=account_transfer_account_msg,json=accountTransferAccountMsg,proto3,oneof"`
}

func (*Tx_AccountTransferAccountMsg) MarshalTo added in v0.24.0

func (m *Tx_AccountTransferAccountMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_AccountTransferAccountMsg) Size added in v0.24.0

func (m *Tx_AccountTransferAccountMsg) Size() (n int)

type Tx_AccountTransferDomainMsg added in v0.24.0

type Tx_AccountTransferDomainMsg struct {
	AccountTransferDomainMsg *account.TransferDomainMsg `protobuf:"bytes,85,opt,name=account_transfer_domain_msg,json=accountTransferDomainMsg,proto3,oneof"`
}

func (*Tx_AccountTransferDomainMsg) MarshalTo added in v0.24.0

func (m *Tx_AccountTransferDomainMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_AccountTransferDomainMsg) Size added in v0.24.0

func (m *Tx_AccountTransferDomainMsg) Size() (n int)

type Tx_AccountUpdateConfigurationMsg added in v0.24.0

type Tx_AccountUpdateConfigurationMsg struct {
	AccountUpdateConfigurationMsg *account.UpdateConfigurationMsg `protobuf:"bytes,82,opt,name=account_update_configuration_msg,json=accountUpdateConfigurationMsg,proto3,oneof"`
}

func (*Tx_AccountUpdateConfigurationMsg) MarshalTo added in v0.24.0

func (m *Tx_AccountUpdateConfigurationMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_AccountUpdateConfigurationMsg) Size added in v0.24.0

func (m *Tx_AccountUpdateConfigurationMsg) Size() (n int)

type Tx_AswapCreateMsg added in v0.17.0

type Tx_AswapCreateMsg struct {
	AswapCreateMsg *aswap.CreateMsg `protobuf:"bytes,70,opt,name=aswap_create_msg,json=aswapCreateMsg,proto3,oneof"`
}

func (*Tx_AswapCreateMsg) MarshalTo added in v0.17.0

func (m *Tx_AswapCreateMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_AswapCreateMsg) Size added in v0.17.0

func (m *Tx_AswapCreateMsg) Size() (n int)

type Tx_AswapReleaseMsg added in v0.17.0

type Tx_AswapReleaseMsg struct {
	AswapReleaseMsg *aswap.ReleaseMsg `protobuf:"bytes,71,opt,name=aswap_release_msg,json=aswapReleaseMsg,proto3,oneof"`
}

func (*Tx_AswapReleaseMsg) MarshalTo added in v0.17.0

func (m *Tx_AswapReleaseMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_AswapReleaseMsg) Size added in v0.17.0

func (m *Tx_AswapReleaseMsg) Size() (n int)

type Tx_AswapReturnMsg added in v0.17.0

type Tx_AswapReturnMsg struct {
	AswapReturnMsg *aswap.ReturnMsg `protobuf:"bytes,72,opt,name=aswap_return_msg,json=aswapReturnMsg,proto3,oneof"`
}

func (*Tx_AswapReturnMsg) MarshalTo added in v0.17.0

func (m *Tx_AswapReturnMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_AswapReturnMsg) Size added in v0.17.0

func (m *Tx_AswapReturnMsg) Size() (n int)

type Tx_CashSendMsg added in v0.17.0

type Tx_CashSendMsg struct {
	CashSendMsg *cash.SendMsg `protobuf:"bytes,51,opt,name=cash_send_msg,json=cashSendMsg,proto3,oneof"`
}

func (*Tx_CashSendMsg) MarshalTo added in v0.17.0

func (m *Tx_CashSendMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_CashSendMsg) Size added in v0.17.0

func (m *Tx_CashSendMsg) Size() (n int)

type Tx_CashUpdateConfigurationMsg added in v0.24.0

type Tx_CashUpdateConfigurationMsg struct {
	CashUpdateConfigurationMsg *cash.UpdateConfigurationMsg `protobuf:"bytes,97,opt,name=cash_update_configuration_msg,json=cashUpdateConfigurationMsg,proto3,oneof"`
}

func (*Tx_CashUpdateConfigurationMsg) MarshalTo added in v0.24.0

func (m *Tx_CashUpdateConfigurationMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_CashUpdateConfigurationMsg) Size added in v0.24.0

func (m *Tx_CashUpdateConfigurationMsg) Size() (n int)

type Tx_CurrencyCreateMsg added in v0.17.0

type Tx_CurrencyCreateMsg struct {
	CurrencyCreateMsg *currency.CreateMsg `protobuf:"bytes,59,opt,name=currency_create_msg,json=currencyCreateMsg,proto3,oneof"`
}

func (*Tx_CurrencyCreateMsg) MarshalTo added in v0.17.0

func (m *Tx_CurrencyCreateMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_CurrencyCreateMsg) Size added in v0.17.0

func (m *Tx_CurrencyCreateMsg) Size() (n int)

type Tx_DatamigrationExecuteMigrationMsg added in v0.24.0

type Tx_DatamigrationExecuteMigrationMsg struct {
	DatamigrationExecuteMigrationMsg *datamigration.ExecuteMigrationMsg `protobuf:"bytes,81,opt,name=datamigration_execute_migration_msg,json=datamigrationExecuteMigrationMsg,proto3,oneof"`
}

func (*Tx_DatamigrationExecuteMigrationMsg) MarshalTo added in v0.24.0

func (m *Tx_DatamigrationExecuteMigrationMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_DatamigrationExecuteMigrationMsg) Size added in v0.24.0

type Tx_DistributionCreateMsg added in v0.17.0

type Tx_DistributionCreateMsg struct {
	DistributionCreateMsg *distribution.CreateMsg `protobuf:"bytes,66,opt,name=distribution_create_msg,json=distributionCreateMsg,proto3,oneof"`
}

func (*Tx_DistributionCreateMsg) MarshalTo added in v0.17.0

func (m *Tx_DistributionCreateMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_DistributionCreateMsg) Size added in v0.17.0

func (m *Tx_DistributionCreateMsg) Size() (n int)

type Tx_DistributionMsg added in v0.17.0

type Tx_DistributionMsg struct {
	DistributionMsg *distribution.DistributeMsg `protobuf:"bytes,67,opt,name=distribution_msg,json=distributionMsg,proto3,oneof"`
}

func (*Tx_DistributionMsg) MarshalTo added in v0.17.0

func (m *Tx_DistributionMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_DistributionMsg) Size added in v0.17.0

func (m *Tx_DistributionMsg) Size() (n int)

type Tx_DistributionResetMsg added in v0.17.0

type Tx_DistributionResetMsg struct {
	DistributionResetMsg *distribution.ResetMsg `protobuf:"bytes,68,opt,name=distribution_reset_msg,json=distributionResetMsg,proto3,oneof"`
}

func (*Tx_DistributionResetMsg) MarshalTo added in v0.17.0

func (m *Tx_DistributionResetMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_DistributionResetMsg) Size added in v0.17.0

func (m *Tx_DistributionResetMsg) Size() (n int)

type Tx_EscrowCreateMsg added in v0.17.0

type Tx_EscrowCreateMsg struct {
	EscrowCreateMsg *escrow.CreateMsg `protobuf:"bytes,52,opt,name=escrow_create_msg,json=escrowCreateMsg,proto3,oneof"`
}

func (*Tx_EscrowCreateMsg) MarshalTo added in v0.17.0

func (m *Tx_EscrowCreateMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_EscrowCreateMsg) Size added in v0.17.0

func (m *Tx_EscrowCreateMsg) Size() (n int)

type Tx_EscrowReleaseMsg added in v0.17.0

type Tx_EscrowReleaseMsg struct {
	EscrowReleaseMsg *escrow.ReleaseMsg `protobuf:"bytes,53,opt,name=escrow_release_msg,json=escrowReleaseMsg,proto3,oneof"`
}

func (*Tx_EscrowReleaseMsg) MarshalTo added in v0.17.0

func (m *Tx_EscrowReleaseMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_EscrowReleaseMsg) Size added in v0.17.0

func (m *Tx_EscrowReleaseMsg) Size() (n int)

type Tx_EscrowReturnMsg added in v0.17.0

type Tx_EscrowReturnMsg struct {
	EscrowReturnMsg *escrow.ReturnMsg `protobuf:"bytes,54,opt,name=escrow_return_msg,json=escrowReturnMsg,proto3,oneof"`
}

func (*Tx_EscrowReturnMsg) MarshalTo added in v0.17.0

func (m *Tx_EscrowReturnMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_EscrowReturnMsg) Size added in v0.17.0

func (m *Tx_EscrowReturnMsg) Size() (n int)

type Tx_EscrowUpdatePartiesMsg added in v0.17.0

type Tx_EscrowUpdatePartiesMsg struct {
	EscrowUpdatePartiesMsg *escrow.UpdatePartiesMsg `protobuf:"bytes,55,opt,name=escrow_update_parties_msg,json=escrowUpdatePartiesMsg,proto3,oneof"`
}

func (*Tx_EscrowUpdatePartiesMsg) MarshalTo added in v0.17.0

func (m *Tx_EscrowUpdatePartiesMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_EscrowUpdatePartiesMsg) Size added in v0.17.0

func (m *Tx_EscrowUpdatePartiesMsg) Size() (n int)

type Tx_ExecuteBatchMsg added in v0.17.0

type Tx_ExecuteBatchMsg struct {
	ExecuteBatchMsg *ExecuteBatchMsg `protobuf:"bytes,60,opt,name=execute_batch_msg,json=executeBatchMsg,proto3,oneof"`
}

func (*Tx_ExecuteBatchMsg) MarshalTo added in v0.17.0

func (m *Tx_ExecuteBatchMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_ExecuteBatchMsg) Size added in v0.17.0

func (m *Tx_ExecuteBatchMsg) Size() (n int)

type Tx_GovCreateProposalMsg added in v0.17.0

type Tx_GovCreateProposalMsg struct {
	GovCreateProposalMsg *gov.CreateProposalMsg `protobuf:"bytes,73,opt,name=gov_create_proposal_msg,json=govCreateProposalMsg,proto3,oneof"`
}

func (*Tx_GovCreateProposalMsg) MarshalTo added in v0.17.0

func (m *Tx_GovCreateProposalMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_GovCreateProposalMsg) Size added in v0.17.0

func (m *Tx_GovCreateProposalMsg) Size() (n int)

type Tx_GovDeleteProposalMsg added in v0.17.0

type Tx_GovDeleteProposalMsg struct {
	GovDeleteProposalMsg *gov.DeleteProposalMsg `protobuf:"bytes,74,opt,name=gov_delete_proposal_msg,json=govDeleteProposalMsg,proto3,oneof"`
}

func (*Tx_GovDeleteProposalMsg) MarshalTo added in v0.17.0

func (m *Tx_GovDeleteProposalMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_GovDeleteProposalMsg) Size added in v0.17.0

func (m *Tx_GovDeleteProposalMsg) Size() (n int)

type Tx_GovUpdateElectionRuleMsg added in v0.17.0

type Tx_GovUpdateElectionRuleMsg struct {
	GovUpdateElectionRuleMsg *gov.UpdateElectionRuleMsg `protobuf:"bytes,78,opt,name=gov_update_election_rule_msg,json=govUpdateElectionRuleMsg,proto3,oneof"`
}

func (*Tx_GovUpdateElectionRuleMsg) MarshalTo added in v0.17.0

func (m *Tx_GovUpdateElectionRuleMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_GovUpdateElectionRuleMsg) Size added in v0.17.0

func (m *Tx_GovUpdateElectionRuleMsg) Size() (n int)

type Tx_GovUpdateElectorateMsg added in v0.17.0

type Tx_GovUpdateElectorateMsg struct {
	GovUpdateElectorateMsg *gov.UpdateElectorateMsg `protobuf:"bytes,77,opt,name=gov_update_electorate_msg,json=govUpdateElectorateMsg,proto3,oneof"`
}

func (*Tx_GovUpdateElectorateMsg) MarshalTo added in v0.17.0

func (m *Tx_GovUpdateElectorateMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_GovUpdateElectorateMsg) Size added in v0.17.0

func (m *Tx_GovUpdateElectorateMsg) Size() (n int)

type Tx_GovVoteMsg added in v0.17.0

type Tx_GovVoteMsg struct {
	GovVoteMsg *gov.VoteMsg `protobuf:"bytes,75,opt,name=gov_vote_msg,json=govVoteMsg,proto3,oneof"`
}

func (*Tx_GovVoteMsg) MarshalTo added in v0.17.0

func (m *Tx_GovVoteMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_GovVoteMsg) Size added in v0.17.0

func (m *Tx_GovVoteMsg) Size() (n int)

type Tx_MigrationUpgradeSchemaMsg added in v0.17.0

type Tx_MigrationUpgradeSchemaMsg struct {
	MigrationUpgradeSchemaMsg *migration.UpgradeSchemaMsg `protobuf:"bytes,69,opt,name=migration_upgrade_schema_msg,json=migrationUpgradeSchemaMsg,proto3,oneof"`
}

func (*Tx_MigrationUpgradeSchemaMsg) MarshalTo added in v0.17.0

func (m *Tx_MigrationUpgradeSchemaMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_MigrationUpgradeSchemaMsg) Size added in v0.17.0

func (m *Tx_MigrationUpgradeSchemaMsg) Size() (n int)

type Tx_MsgfeeSetMsgFeeMsg added in v0.21.3

type Tx_MsgfeeSetMsgFeeMsg struct {
	MsgfeeSetMsgFeeMsg *msgfee.SetMsgFeeMsg `protobuf:"bytes,80,opt,name=msgfee_set_msg_fee_msg,json=msgfeeSetMsgFeeMsg,proto3,oneof"`
}

func (*Tx_MsgfeeSetMsgFeeMsg) MarshalTo added in v0.21.3

func (m *Tx_MsgfeeSetMsgFeeMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_MsgfeeSetMsgFeeMsg) Size added in v0.21.3

func (m *Tx_MsgfeeSetMsgFeeMsg) Size() (n int)

type Tx_MsgfeeUpdateConfigurationMsg added in v1.0.0

type Tx_MsgfeeUpdateConfigurationMsg struct {
	MsgfeeUpdateConfigurationMsg *msgfee.UpdateConfigurationMsg `protobuf:"bytes,105,opt,name=msgfee_update_configuration_msg,json=msgfeeUpdateConfigurationMsg,proto3,oneof"`
}

func (*Tx_MsgfeeUpdateConfigurationMsg) MarshalTo added in v1.0.0

func (m *Tx_MsgfeeUpdateConfigurationMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_MsgfeeUpdateConfigurationMsg) Size added in v1.0.0

func (m *Tx_MsgfeeUpdateConfigurationMsg) Size() (n int)

type Tx_MultisigCreateMsg added in v0.17.0

type Tx_MultisigCreateMsg struct {
	MultisigCreateMsg *multisig.CreateMsg `protobuf:"bytes,56,opt,name=multisig_create_msg,json=multisigCreateMsg,proto3,oneof"`
}

func (*Tx_MultisigCreateMsg) MarshalTo added in v0.17.0

func (m *Tx_MultisigCreateMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_MultisigCreateMsg) Size added in v0.17.0

func (m *Tx_MultisigCreateMsg) Size() (n int)

type Tx_MultisigUpdateMsg added in v0.17.0

type Tx_MultisigUpdateMsg struct {
	MultisigUpdateMsg *multisig.UpdateMsg `protobuf:"bytes,57,opt,name=multisig_update_msg,json=multisigUpdateMsg,proto3,oneof"`
}

func (*Tx_MultisigUpdateMsg) MarshalTo added in v0.17.0

func (m *Tx_MultisigUpdateMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_MultisigUpdateMsg) Size added in v0.17.0

func (m *Tx_MultisigUpdateMsg) Size() (n int)

type Tx_PreregistrationRegisterMsg added in v0.25.0

type Tx_PreregistrationRegisterMsg struct {
	PreregistrationRegisterMsg *preregistration.RegisterMsg `protobuf:"bytes,96,opt,name=preregistration_register_msg,json=preregistrationRegisterMsg,proto3,oneof"`
}

func (*Tx_PreregistrationRegisterMsg) MarshalTo added in v0.25.0

func (m *Tx_PreregistrationRegisterMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_PreregistrationRegisterMsg) Size added in v0.25.0

func (m *Tx_PreregistrationRegisterMsg) Size() (n int)

type Tx_PreregistrationUpdateConfigurationMsg added in v1.0.0

type Tx_PreregistrationUpdateConfigurationMsg struct {
	PreregistrationUpdateConfigurationMsg *preregistration.UpdateConfigurationMsg `` /* 126-byte string literal not displayed */
}

func (*Tx_PreregistrationUpdateConfigurationMsg) MarshalTo added in v1.0.0

func (m *Tx_PreregistrationUpdateConfigurationMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_PreregistrationUpdateConfigurationMsg) Size added in v1.0.0

type Tx_QualityscoreUpdateConfigurationMsg added in v1.0.0

type Tx_QualityscoreUpdateConfigurationMsg struct {
	QualityscoreUpdateConfigurationMsg *qualityscore.UpdateConfigurationMsg `protobuf:"bytes,103,opt,name=qualityscore_update_configuration_msg,json=qualityscoreUpdateConfigurationMsg,proto3,oneof"`
}

func (*Tx_QualityscoreUpdateConfigurationMsg) MarshalTo added in v1.0.0

func (m *Tx_QualityscoreUpdateConfigurationMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_QualityscoreUpdateConfigurationMsg) Size added in v1.0.0

type Tx_TermdepositCreateDepositContractMsg added in v1.0.0

type Tx_TermdepositCreateDepositContractMsg struct {
	TermdepositCreateDepositContractMsg *termdeposit.CreateDepositContractMsg `protobuf:"bytes,99,opt,name=termdeposit_create_deposit_contract_msg,json=termdepositCreateDepositContractMsg,proto3,oneof"`
}

func (*Tx_TermdepositCreateDepositContractMsg) MarshalTo added in v1.0.0

func (m *Tx_TermdepositCreateDepositContractMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_TermdepositCreateDepositContractMsg) Size added in v1.0.0

type Tx_TermdepositDepositMsg added in v1.0.0

type Tx_TermdepositDepositMsg struct {
	TermdepositDepositMsg *termdeposit.DepositMsg `protobuf:"bytes,100,opt,name=termdeposit_deposit_msg,json=termdepositDepositMsg,proto3,oneof"`
}

func (*Tx_TermdepositDepositMsg) MarshalTo added in v1.0.0

func (m *Tx_TermdepositDepositMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_TermdepositDepositMsg) Size added in v1.0.0

func (m *Tx_TermdepositDepositMsg) Size() (n int)

type Tx_TermdepositReleaseDepositMsg added in v1.0.0

type Tx_TermdepositReleaseDepositMsg struct {
	TermdepositReleaseDepositMsg *termdeposit.ReleaseDepositMsg `protobuf:"bytes,101,opt,name=termdeposit_release_deposit_msg,json=termdepositReleaseDepositMsg,proto3,oneof"`
}

func (*Tx_TermdepositReleaseDepositMsg) MarshalTo added in v1.0.0

func (m *Tx_TermdepositReleaseDepositMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_TermdepositReleaseDepositMsg) Size added in v1.0.0

func (m *Tx_TermdepositReleaseDepositMsg) Size() (n int)

type Tx_TermdepositUpdateConfigurationMsg added in v1.0.0

type Tx_TermdepositUpdateConfigurationMsg struct {
	TermdepositUpdateConfigurationMsg *termdeposit.UpdateConfigurationMsg `protobuf:"bytes,102,opt,name=termdeposit_update_configuration_msg,json=termdepositUpdateConfigurationMsg,proto3,oneof"`
}

func (*Tx_TermdepositUpdateConfigurationMsg) MarshalTo added in v1.0.0

func (m *Tx_TermdepositUpdateConfigurationMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_TermdepositUpdateConfigurationMsg) Size added in v1.0.0

type Tx_TxfeeUpdateConfigurationMsg added in v0.25.0

type Tx_TxfeeUpdateConfigurationMsg struct {
	TxfeeUpdateConfigurationMsg *txfee.UpdateConfigurationMsg `protobuf:"bytes,98,opt,name=txfee_update_configuration_msg,json=txfeeUpdateConfigurationMsg,proto3,oneof"`
}

func (*Tx_TxfeeUpdateConfigurationMsg) MarshalTo added in v0.25.0

func (m *Tx_TxfeeUpdateConfigurationMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_TxfeeUpdateConfigurationMsg) Size added in v0.25.0

func (m *Tx_TxfeeUpdateConfigurationMsg) Size() (n int)

type Tx_UsernameChangeTokenTargetsMsg added in v0.17.0

type Tx_UsernameChangeTokenTargetsMsg struct {
	UsernameChangeTokenTargetsMsg *username.ChangeTokenTargetsMsg `protobuf:"bytes,63,opt,name=username_change_token_targets_msg,json=usernameChangeTokenTargetsMsg,proto3,oneof"`
}

func (*Tx_UsernameChangeTokenTargetsMsg) MarshalTo added in v0.17.0

func (m *Tx_UsernameChangeTokenTargetsMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_UsernameChangeTokenTargetsMsg) Size added in v0.17.0

func (m *Tx_UsernameChangeTokenTargetsMsg) Size() (n int)

type Tx_UsernameRegisterTokenMsg added in v0.17.0

type Tx_UsernameRegisterTokenMsg struct {
	UsernameRegisterTokenMsg *username.RegisterTokenMsg `protobuf:"bytes,61,opt,name=username_register_token_msg,json=usernameRegisterTokenMsg,proto3,oneof"`
}

func (*Tx_UsernameRegisterTokenMsg) MarshalTo added in v0.17.0

func (m *Tx_UsernameRegisterTokenMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_UsernameRegisterTokenMsg) Size added in v0.17.0

func (m *Tx_UsernameRegisterTokenMsg) Size() (n int)

type Tx_UsernameTransferTokenMsg added in v0.17.0

type Tx_UsernameTransferTokenMsg struct {
	UsernameTransferTokenMsg *username.TransferTokenMsg `protobuf:"bytes,62,opt,name=username_transfer_token_msg,json=usernameTransferTokenMsg,proto3,oneof"`
}

func (*Tx_UsernameTransferTokenMsg) MarshalTo added in v0.17.0

func (m *Tx_UsernameTransferTokenMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_UsernameTransferTokenMsg) Size added in v0.17.0

func (m *Tx_UsernameTransferTokenMsg) Size() (n int)

type Tx_UsernameUpdateConfigurationMsg added in v0.22.0

type Tx_UsernameUpdateConfigurationMsg struct {
	UsernameUpdateConfigurationMsg *username.UpdateConfigurationMsg `protobuf:"bytes,64,opt,name=username_update_configuration_msg,json=usernameUpdateConfigurationMsg,proto3,oneof"`
}

func (*Tx_UsernameUpdateConfigurationMsg) MarshalTo added in v0.22.0

func (m *Tx_UsernameUpdateConfigurationMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_UsernameUpdateConfigurationMsg) Size added in v0.22.0

func (m *Tx_UsernameUpdateConfigurationMsg) Size() (n int)

type Tx_ValidatorsApplyDiffMsg added in v0.17.0

type Tx_ValidatorsApplyDiffMsg struct {
	ValidatorsApplyDiffMsg *validators.ApplyDiffMsg `protobuf:"bytes,58,opt,name=validators_apply_diff_msg,json=validatorsApplyDiffMsg,proto3,oneof"`
}

func (*Tx_ValidatorsApplyDiffMsg) MarshalTo added in v0.17.0

func (m *Tx_ValidatorsApplyDiffMsg) MarshalTo(dAtA []byte) (int, error)

func (*Tx_ValidatorsApplyDiffMsg) Size added in v0.17.0

func (m *Tx_ValidatorsApplyDiffMsg) Size() (n int)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL