types

package
v9.2.1 Latest Latest
Warning

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

Go to latest
Published: Jun 8, 2023 License: Apache-2.0, Apache-2.0 Imports: 31 Imported by: 0

Documentation

Overview

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	ModuleName = "ratelimit"

	// StoreKey defines the primary module store key
	StoreKey = ModuleName

	// RouterKey is the message route for slashing
	RouterKey = ModuleName

	// QuerierRoute defines the module's query routing key
	QuerierRoute = ModuleName
)
View Source
const (
	ProposalTypeAddRateLimit = "AddRateLimit"
)
View Source
const (
	ProposalTypeRemoveRateLimit = "RemoveRateLimit"
)
View Source
const (
	ProposalTypeResetRateLimit = "ResetRateLimit"
)
View Source
const (
	ProposalTypeUpdateRateLimit = "UpdateRateLimit"
)

Variables

View Source
var (
	ErrRateLimitAlreadyExists = errorsmod.Register(ModuleName, 1,
		"ratelimit key duplicated")
	ErrRateLimitNotFound = errorsmod.Register(ModuleName, 2,
		"rate limit not found")
	ErrZeroChannelValue = errorsmod.Register(ModuleName, 3,
		"channel value is zero")
	ErrQuotaExceeded = errorsmod.Register(ModuleName, 4,
		"quota exceeded")
	ErrInvalidClientState = errorsmod.Register(ModuleName, 5,
		"unable to determine client state from channelId")
	ErrChannelNotFound = errorsmod.Register(ModuleName, 6,
		"channel does not exist")
	ErrDenomIsBlacklisted = errorsmod.Register(ModuleName, 7,
		"denom is blacklisted",
	)
)

x/ratelimit module sentinel errors

View Source
var (
	EventTransferDenied = "transfer_denied"

	EventRateLimitExceeded = "rate_limit_exceeded"
	EventBlacklistedDenom  = "blacklisted_denom"

	AttributeKeyReason  = "reason"
	AttributeKeyModule  = "module"
	AttributeKeyAction  = "action"
	AttributeKeyDenom   = "denom"
	AttributeKeyChannel = "channel"
	AttributeKeyAmount  = "amount"
	AttributeKeyError   = "error"
)
View Source
var (
	ErrInvalidLengthGenesis        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenesis          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupGenesis = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthGov        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGov          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupGov = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	PathKeyPrefix      = KeyPrefix("path")
	RateLimitKeyPrefix = KeyPrefix("rate-limit")
	BlacklistKeyPrefix = KeyPrefix("blacklist")
)
View Source
var (
	ErrInvalidLengthParams        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowParams          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupParams = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthQuery        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowQuery          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupQuery = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthRatelimit        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowRatelimit          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupRatelimit = fmt.Errorf("proto: unexpected end of group")
)
View Source
var PacketDirection_name = map[int32]string{
	0: "PACKET_SEND",
	1: "PACKET_RECV",
}
View Source
var PacketDirection_value = map[string]int32{
	"PACKET_SEND": 0,
	"PACKET_RECV": 1,
}

Functions

func KeyPrefix

func KeyPrefix(p string) []byte

func NewAddRateLimitProposal

func NewAddRateLimitProposal(title, description, denom, channelId string, maxPercentSend sdkmath.Int, maxPercentRecv sdkmath.Int, durationHours uint64) govtypes.Content

func NewRemoveRateLimitProposal

func NewRemoveRateLimitProposal(title, description, denom, channelId string) govtypes.Content

func NewResetRateLimitProposal

func NewResetRateLimitProposal(title, description, denom, channelId string) govtypes.Content

func NewUpdateRateLimitProposal

func NewUpdateRateLimitProposal(title, description, denom, channelId string, maxPercentSend sdkmath.Int, maxPercentRecv sdkmath.Int, durationHours uint64) govtypes.Content

func ParamKeyTable

func ParamKeyTable() paramtypes.KeyTable

ParamKeyTable the param key table for launch module

func RegisterCodec

func RegisterCodec(cdc *codec.LegacyAmino)

func RegisterInterfaces

func RegisterInterfaces(registry cdctypes.InterfaceRegistry)

func RegisterQueryHandler

func RegisterQueryHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterQueryHandler registers the http handlers for service Query to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterQueryHandlerClient

func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, client QueryClient) error

RegisterQueryHandlerClient registers the http handlers for service Query to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "QueryClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "QueryClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "QueryClient" to call the correct interceptors.

func RegisterQueryHandlerFromEndpoint

func RegisterQueryHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterQueryHandlerFromEndpoint is same as RegisterQueryHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterQueryHandlerServer

func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error

RegisterQueryHandlerServer registers the http handlers for service Query to "mux". UnaryRPC :call QueryServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterQueryHandlerFromEndpoint instead.

func RegisterQueryServer

func RegisterQueryServer(s grpc1.Server, srv QueryServer)

Types

type AddRateLimitProposal

type AddRateLimitProposal struct {
	Title          string                                 `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description    string                                 `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Denom          string                                 `protobuf:"bytes,3,opt,name=denom,proto3" json:"denom,omitempty"`
	ChannelId      string                                 `protobuf:"bytes,4,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	MaxPercentSend github_com_cosmos_cosmos_sdk_types.Int `` /* 145-byte string literal not displayed */
	MaxPercentRecv github_com_cosmos_cosmos_sdk_types.Int `` /* 145-byte string literal not displayed */
	DurationHours  uint64                                 `protobuf:"varint,7,opt,name=duration_hours,json=durationHours,proto3" json:"duration_hours,omitempty"`
	Deposit        string                                 `protobuf:"bytes,8,opt,name=deposit,proto3" json:"deposit,omitempty" yaml:"deposit"`
}

func (*AddRateLimitProposal) Descriptor

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

func (*AddRateLimitProposal) Equal

func (this *AddRateLimitProposal) Equal(that interface{}) bool

func (*AddRateLimitProposal) GetDescription

func (p *AddRateLimitProposal) GetDescription() string

func (*AddRateLimitProposal) GetTitle

func (p *AddRateLimitProposal) GetTitle() string

func (*AddRateLimitProposal) Marshal

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

func (*AddRateLimitProposal) MarshalTo

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

func (*AddRateLimitProposal) MarshalToSizedBuffer

func (m *AddRateLimitProposal) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*AddRateLimitProposal) ProposalRoute

func (p *AddRateLimitProposal) ProposalRoute() string

func (*AddRateLimitProposal) ProposalType

func (p *AddRateLimitProposal) ProposalType() string

func (*AddRateLimitProposal) ProtoMessage

func (*AddRateLimitProposal) ProtoMessage()

func (*AddRateLimitProposal) Reset

func (m *AddRateLimitProposal) Reset()

func (*AddRateLimitProposal) Size

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

func (AddRateLimitProposal) String

func (p AddRateLimitProposal) String() string

func (*AddRateLimitProposal) Unmarshal

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

func (*AddRateLimitProposal) ValidateBasic

func (p *AddRateLimitProposal) ValidateBasic() error

func (*AddRateLimitProposal) XXX_DiscardUnknown

func (m *AddRateLimitProposal) XXX_DiscardUnknown()

func (*AddRateLimitProposal) XXX_Marshal

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

func (*AddRateLimitProposal) XXX_Merge

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

func (*AddRateLimitProposal) XXX_Size

func (m *AddRateLimitProposal) XXX_Size() int

func (*AddRateLimitProposal) XXX_Unmarshal

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

type BankKeeper

type BankKeeper interface {
	GetSupply(ctx sdk.Context, denom string) sdk.Coin
}

BankKeeper defines the banking contract that must be fulfilled when creating a x/ratelimit keeper.

type ChannelKeeper

type ChannelKeeper interface {
	GetChannel(ctx sdk.Context, portID string, channelID string) (channeltypes.Channel, bool)
	GetChannelClientState(ctx sdk.Context, portID string, channelID string) (string, exported.ClientState, error)
}

ChannelKeeper defines the channel contract that must be fulfilled when creating a x/ratelimit keeper.

type Flow

type Flow struct {
	Inflow       github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,1,opt,name=inflow,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"inflow"`
	Outflow      github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,2,opt,name=outflow,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"outflow"`
	ChannelValue github_com_cosmos_cosmos_sdk_types.Int `` /* 137-byte string literal not displayed */
}

func NewFlow

func NewFlow(channelValue sdkmath.Int) Flow

Initializes a new flow from the channel value

func (*Flow) AddInflow

func (f *Flow) AddInflow(amount sdkmath.Int, quota Quota) error

Adds an amount to the rate limit's flow after an incoming packet was received Returns an error if the new inflow will cause the rate limit to exceed its quota

func (*Flow) AddOutflow

func (f *Flow) AddOutflow(amount sdkmath.Int, quota Quota) error

Adds an amount to the rate limit's flow after a packet was sent Returns an error if the new outflow will cause the rate limit to exceed its quota

func (*Flow) Descriptor

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

func (*Flow) Marshal

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

func (*Flow) MarshalTo

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

func (*Flow) MarshalToSizedBuffer

func (m *Flow) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Flow) ProtoMessage

func (*Flow) ProtoMessage()

func (*Flow) Reset

func (m *Flow) Reset()

func (*Flow) Size

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

func (*Flow) String

func (m *Flow) String() string

func (*Flow) Unmarshal

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

func (*Flow) XXX_DiscardUnknown

func (m *Flow) XXX_DiscardUnknown()

func (*Flow) XXX_Marshal

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

func (*Flow) XXX_Merge

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

func (*Flow) XXX_Size

func (m *Flow) XXX_Size() int

func (*Flow) XXX_Unmarshal

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

type GenesisState

type GenesisState struct {
	// params defines all the parameters of the module.
	Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params" yaml:"params"`
	// list of rate limits
	RateLimits []RateLimit `protobuf:"bytes,2,rep,name=rate_limits,json=rateLimits,proto3" json:"rate_limits" yaml:"rate_limits"`
}

GenesisState defines the ratelimit module's genesis state.

func DefaultGenesis

func DefaultGenesis() *GenesisState

DefaultGenesis returns the default Capability genesis state

func (*GenesisState) Descriptor

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

func (*GenesisState) GetParams

func (m *GenesisState) GetParams() Params

func (*GenesisState) GetRateLimits

func (m *GenesisState) GetRateLimits() []RateLimit

func (*GenesisState) Marshal

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

func (*GenesisState) MarshalTo

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

func (*GenesisState) MarshalToSizedBuffer

func (m *GenesisState) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GenesisState) ProtoMessage

func (*GenesisState) ProtoMessage()

func (*GenesisState) Reset

func (m *GenesisState) Reset()

func (*GenesisState) Size

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

func (*GenesisState) String

func (m *GenesisState) String() string

func (*GenesisState) Unmarshal

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

func (GenesisState) Validate

func (gs GenesisState) Validate() error

Validate performs basic genesis state validation returning an error upon any failure.

func (*GenesisState) XXX_DiscardUnknown

func (m *GenesisState) XXX_DiscardUnknown()

func (*GenesisState) XXX_Marshal

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

func (*GenesisState) XXX_Merge

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

func (*GenesisState) XXX_Size

func (m *GenesisState) XXX_Size() int

func (*GenesisState) XXX_Unmarshal

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

type ICS4Wrapper

type ICS4Wrapper interface {
	WriteAcknowledgement(ctx sdk.Context, chanCap *capabilitytypes.Capability, packet ibcexported.PacketI, acknowledgement ibcexported.Acknowledgement) error
	SendPacket(ctx sdk.Context, channelCap *capabilitytypes.Capability, packet ibcexported.PacketI) error
	GetAppVersion(ctx sdk.Context, portID, channelID string) (string, bool)
}

ICS4Wrapper defines the expected ICS4Wrapper for middleware

type PacketDirection

type PacketDirection int32
const (
	PACKET_SEND PacketDirection = 0
	PACKET_RECV PacketDirection = 1
)

func (PacketDirection) EnumDescriptor

func (PacketDirection) EnumDescriptor() ([]byte, []int)

func (PacketDirection) String

func (x PacketDirection) String() string

type Params

type Params struct {
}

Params defines the ratelimit module's parameters.

func DefaultParams

func DefaultParams() Params

DefaultParams returns a default set of parameters

func NewParams

func NewParams() Params

NewParams creates a new Params instance

func (*Params) Descriptor

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

func (*Params) Marshal

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

func (*Params) MarshalTo

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

func (*Params) MarshalToSizedBuffer

func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Params) ParamSetPairs

func (p *Params) ParamSetPairs() paramtypes.ParamSetPairs

ParamSetPairs get the params.ParamSet

func (*Params) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) Reset

func (m *Params) Reset()

func (*Params) Size

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

func (*Params) String

func (m *Params) String() string

func (*Params) Unmarshal

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

func (Params) Validate

func (p Params) Validate() error

Validate validates the set of params

func (*Params) XXX_DiscardUnknown

func (m *Params) XXX_DiscardUnknown()

func (*Params) XXX_Marshal

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

func (*Params) XXX_Merge

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

func (*Params) XXX_Size

func (m *Params) XXX_Size() int

func (*Params) XXX_Unmarshal

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

type Path

type Path struct {
	Denom     string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	ChannelId string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
}

func (*Path) Descriptor

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

func (*Path) GetChannelId

func (m *Path) GetChannelId() string

func (*Path) GetDenom

func (m *Path) GetDenom() string

func (*Path) Marshal

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

func (*Path) MarshalTo

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

func (*Path) MarshalToSizedBuffer

func (m *Path) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Path) ProtoMessage

func (*Path) ProtoMessage()

func (*Path) Reset

func (m *Path) Reset()

func (*Path) Size

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

func (*Path) String

func (m *Path) String() string

func (*Path) Unmarshal

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

func (*Path) XXX_DiscardUnknown

func (m *Path) XXX_DiscardUnknown()

func (*Path) XXX_Marshal

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

func (*Path) XXX_Merge

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

func (*Path) XXX_Size

func (m *Path) XXX_Size() int

func (*Path) XXX_Unmarshal

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

type QueryAllRateLimitsRequest

type QueryAllRateLimitsRequest struct {
}

func (*QueryAllRateLimitsRequest) Descriptor

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

func (*QueryAllRateLimitsRequest) Marshal

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

func (*QueryAllRateLimitsRequest) MarshalTo

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

func (*QueryAllRateLimitsRequest) MarshalToSizedBuffer

func (m *QueryAllRateLimitsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryAllRateLimitsRequest) ProtoMessage

func (*QueryAllRateLimitsRequest) ProtoMessage()

func (*QueryAllRateLimitsRequest) Reset

func (m *QueryAllRateLimitsRequest) Reset()

func (*QueryAllRateLimitsRequest) Size

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

func (*QueryAllRateLimitsRequest) String

func (m *QueryAllRateLimitsRequest) String() string

func (*QueryAllRateLimitsRequest) Unmarshal

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

func (*QueryAllRateLimitsRequest) XXX_DiscardUnknown

func (m *QueryAllRateLimitsRequest) XXX_DiscardUnknown()

func (*QueryAllRateLimitsRequest) XXX_Marshal

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

func (*QueryAllRateLimitsRequest) XXX_Merge

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

func (*QueryAllRateLimitsRequest) XXX_Size

func (m *QueryAllRateLimitsRequest) XXX_Size() int

func (*QueryAllRateLimitsRequest) XXX_Unmarshal

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

type QueryAllRateLimitsResponse

type QueryAllRateLimitsResponse struct {
	RateLimits []RateLimit `protobuf:"bytes,1,rep,name=rate_limits,json=rateLimits,proto3" json:"rate_limits"`
}

func (*QueryAllRateLimitsResponse) Descriptor

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

func (*QueryAllRateLimitsResponse) GetRateLimits

func (m *QueryAllRateLimitsResponse) GetRateLimits() []RateLimit

func (*QueryAllRateLimitsResponse) Marshal

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

func (*QueryAllRateLimitsResponse) MarshalTo

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

func (*QueryAllRateLimitsResponse) MarshalToSizedBuffer

func (m *QueryAllRateLimitsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryAllRateLimitsResponse) ProtoMessage

func (*QueryAllRateLimitsResponse) ProtoMessage()

func (*QueryAllRateLimitsResponse) Reset

func (m *QueryAllRateLimitsResponse) Reset()

func (*QueryAllRateLimitsResponse) Size

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

func (*QueryAllRateLimitsResponse) String

func (m *QueryAllRateLimitsResponse) String() string

func (*QueryAllRateLimitsResponse) Unmarshal

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

func (*QueryAllRateLimitsResponse) XXX_DiscardUnknown

func (m *QueryAllRateLimitsResponse) XXX_DiscardUnknown()

func (*QueryAllRateLimitsResponse) XXX_Marshal

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

func (*QueryAllRateLimitsResponse) XXX_Merge

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

func (*QueryAllRateLimitsResponse) XXX_Size

func (m *QueryAllRateLimitsResponse) XXX_Size() int

func (*QueryAllRateLimitsResponse) XXX_Unmarshal

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

type QueryClient

QueryClient is the client API for Query service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewQueryClient

func NewQueryClient(cc grpc1.ClientConn) QueryClient

type QueryRateLimitRequest

type QueryRateLimitRequest struct {
	Denom     string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	ChannelId string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
}

func (*QueryRateLimitRequest) Descriptor

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

func (*QueryRateLimitRequest) GetChannelId

func (m *QueryRateLimitRequest) GetChannelId() string

func (*QueryRateLimitRequest) GetDenom

func (m *QueryRateLimitRequest) GetDenom() string

func (*QueryRateLimitRequest) Marshal

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

func (*QueryRateLimitRequest) MarshalTo

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

func (*QueryRateLimitRequest) MarshalToSizedBuffer

func (m *QueryRateLimitRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryRateLimitRequest) ProtoMessage

func (*QueryRateLimitRequest) ProtoMessage()

func (*QueryRateLimitRequest) Reset

func (m *QueryRateLimitRequest) Reset()

func (*QueryRateLimitRequest) Size

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

func (*QueryRateLimitRequest) String

func (m *QueryRateLimitRequest) String() string

func (*QueryRateLimitRequest) Unmarshal

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

func (*QueryRateLimitRequest) XXX_DiscardUnknown

func (m *QueryRateLimitRequest) XXX_DiscardUnknown()

func (*QueryRateLimitRequest) XXX_Marshal

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

func (*QueryRateLimitRequest) XXX_Merge

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

func (*QueryRateLimitRequest) XXX_Size

func (m *QueryRateLimitRequest) XXX_Size() int

func (*QueryRateLimitRequest) XXX_Unmarshal

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

type QueryRateLimitResponse

type QueryRateLimitResponse struct {
	RateLimit *RateLimit `protobuf:"bytes,1,opt,name=rate_limit,json=rateLimit,proto3" json:"rate_limit,omitempty"`
}

func (*QueryRateLimitResponse) Descriptor

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

func (*QueryRateLimitResponse) GetRateLimit

func (m *QueryRateLimitResponse) GetRateLimit() *RateLimit

func (*QueryRateLimitResponse) Marshal

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

func (*QueryRateLimitResponse) MarshalTo

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

func (*QueryRateLimitResponse) MarshalToSizedBuffer

func (m *QueryRateLimitResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryRateLimitResponse) ProtoMessage

func (*QueryRateLimitResponse) ProtoMessage()

func (*QueryRateLimitResponse) Reset

func (m *QueryRateLimitResponse) Reset()

func (*QueryRateLimitResponse) Size

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

func (*QueryRateLimitResponse) String

func (m *QueryRateLimitResponse) String() string

func (*QueryRateLimitResponse) Unmarshal

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

func (*QueryRateLimitResponse) XXX_DiscardUnknown

func (m *QueryRateLimitResponse) XXX_DiscardUnknown()

func (*QueryRateLimitResponse) XXX_Marshal

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

func (*QueryRateLimitResponse) XXX_Merge

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

func (*QueryRateLimitResponse) XXX_Size

func (m *QueryRateLimitResponse) XXX_Size() int

func (*QueryRateLimitResponse) XXX_Unmarshal

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

type QueryRateLimitsByChainIdRequest

type QueryRateLimitsByChainIdRequest struct {
	ChainId string `protobuf:"bytes,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
}

func (*QueryRateLimitsByChainIdRequest) Descriptor

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

func (*QueryRateLimitsByChainIdRequest) GetChainId

func (m *QueryRateLimitsByChainIdRequest) GetChainId() string

func (*QueryRateLimitsByChainIdRequest) Marshal

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

func (*QueryRateLimitsByChainIdRequest) MarshalTo

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

func (*QueryRateLimitsByChainIdRequest) MarshalToSizedBuffer

func (m *QueryRateLimitsByChainIdRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryRateLimitsByChainIdRequest) ProtoMessage

func (*QueryRateLimitsByChainIdRequest) ProtoMessage()

func (*QueryRateLimitsByChainIdRequest) Reset

func (*QueryRateLimitsByChainIdRequest) Size

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

func (*QueryRateLimitsByChainIdRequest) String

func (*QueryRateLimitsByChainIdRequest) Unmarshal

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

func (*QueryRateLimitsByChainIdRequest) XXX_DiscardUnknown

func (m *QueryRateLimitsByChainIdRequest) XXX_DiscardUnknown()

func (*QueryRateLimitsByChainIdRequest) XXX_Marshal

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

func (*QueryRateLimitsByChainIdRequest) XXX_Merge

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

func (*QueryRateLimitsByChainIdRequest) XXX_Size

func (m *QueryRateLimitsByChainIdRequest) XXX_Size() int

func (*QueryRateLimitsByChainIdRequest) XXX_Unmarshal

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

type QueryRateLimitsByChainIdResponse

type QueryRateLimitsByChainIdResponse struct {
	RateLimits []RateLimit `protobuf:"bytes,1,rep,name=rate_limits,json=rateLimits,proto3" json:"rate_limits"`
}

func (*QueryRateLimitsByChainIdResponse) Descriptor

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

func (*QueryRateLimitsByChainIdResponse) GetRateLimits

func (m *QueryRateLimitsByChainIdResponse) GetRateLimits() []RateLimit

func (*QueryRateLimitsByChainIdResponse) Marshal

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

func (*QueryRateLimitsByChainIdResponse) MarshalTo

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

func (*QueryRateLimitsByChainIdResponse) MarshalToSizedBuffer

func (m *QueryRateLimitsByChainIdResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryRateLimitsByChainIdResponse) ProtoMessage

func (*QueryRateLimitsByChainIdResponse) ProtoMessage()

func (*QueryRateLimitsByChainIdResponse) Reset

func (*QueryRateLimitsByChainIdResponse) Size

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

func (*QueryRateLimitsByChainIdResponse) String

func (*QueryRateLimitsByChainIdResponse) Unmarshal

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

func (*QueryRateLimitsByChainIdResponse) XXX_DiscardUnknown

func (m *QueryRateLimitsByChainIdResponse) XXX_DiscardUnknown()

func (*QueryRateLimitsByChainIdResponse) XXX_Marshal

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

func (*QueryRateLimitsByChainIdResponse) XXX_Merge

func (*QueryRateLimitsByChainIdResponse) XXX_Size

func (m *QueryRateLimitsByChainIdResponse) XXX_Size() int

func (*QueryRateLimitsByChainIdResponse) XXX_Unmarshal

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

type QueryRateLimitsByChannelIdRequest

type QueryRateLimitsByChannelIdRequest struct {
	ChannelId string `protobuf:"bytes,1,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
}

func (*QueryRateLimitsByChannelIdRequest) Descriptor

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

func (*QueryRateLimitsByChannelIdRequest) GetChannelId

func (m *QueryRateLimitsByChannelIdRequest) GetChannelId() string

func (*QueryRateLimitsByChannelIdRequest) Marshal

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

func (*QueryRateLimitsByChannelIdRequest) MarshalTo

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

func (*QueryRateLimitsByChannelIdRequest) MarshalToSizedBuffer

func (m *QueryRateLimitsByChannelIdRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryRateLimitsByChannelIdRequest) ProtoMessage

func (*QueryRateLimitsByChannelIdRequest) ProtoMessage()

func (*QueryRateLimitsByChannelIdRequest) Reset

func (*QueryRateLimitsByChannelIdRequest) Size

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

func (*QueryRateLimitsByChannelIdRequest) String

func (*QueryRateLimitsByChannelIdRequest) Unmarshal

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

func (*QueryRateLimitsByChannelIdRequest) XXX_DiscardUnknown

func (m *QueryRateLimitsByChannelIdRequest) XXX_DiscardUnknown()

func (*QueryRateLimitsByChannelIdRequest) XXX_Marshal

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

func (*QueryRateLimitsByChannelIdRequest) XXX_Merge

func (*QueryRateLimitsByChannelIdRequest) XXX_Size

func (m *QueryRateLimitsByChannelIdRequest) XXX_Size() int

func (*QueryRateLimitsByChannelIdRequest) XXX_Unmarshal

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

type QueryRateLimitsByChannelIdResponse

type QueryRateLimitsByChannelIdResponse struct {
	RateLimits []RateLimit `protobuf:"bytes,1,rep,name=rate_limits,json=rateLimits,proto3" json:"rate_limits"`
}

func (*QueryRateLimitsByChannelIdResponse) Descriptor

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

func (*QueryRateLimitsByChannelIdResponse) GetRateLimits

func (m *QueryRateLimitsByChannelIdResponse) GetRateLimits() []RateLimit

func (*QueryRateLimitsByChannelIdResponse) Marshal

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

func (*QueryRateLimitsByChannelIdResponse) MarshalTo

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

func (*QueryRateLimitsByChannelIdResponse) MarshalToSizedBuffer

func (m *QueryRateLimitsByChannelIdResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryRateLimitsByChannelIdResponse) ProtoMessage

func (*QueryRateLimitsByChannelIdResponse) ProtoMessage()

func (*QueryRateLimitsByChannelIdResponse) Reset

func (*QueryRateLimitsByChannelIdResponse) Size

func (*QueryRateLimitsByChannelIdResponse) String

func (*QueryRateLimitsByChannelIdResponse) Unmarshal

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

func (*QueryRateLimitsByChannelIdResponse) XXX_DiscardUnknown

func (m *QueryRateLimitsByChannelIdResponse) XXX_DiscardUnknown()

func (*QueryRateLimitsByChannelIdResponse) XXX_Marshal

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

func (*QueryRateLimitsByChannelIdResponse) XXX_Merge

func (*QueryRateLimitsByChannelIdResponse) XXX_Size

func (*QueryRateLimitsByChannelIdResponse) XXX_Unmarshal

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

type Quota

type Quota struct {
	MaxPercentSend github_com_cosmos_cosmos_sdk_types.Int `` /* 145-byte string literal not displayed */
	MaxPercentRecv github_com_cosmos_cosmos_sdk_types.Int `` /* 145-byte string literal not displayed */
	DurationHours  uint64                                 `protobuf:"varint,3,opt,name=duration_hours,json=durationHours,proto3" json:"duration_hours,omitempty"`
}

func (*Quota) CheckExceedsQuota

func (q *Quota) CheckExceedsQuota(direction PacketDirection, amount sdkmath.Int, totalValue sdkmath.Int) bool

CheckExceedsQuota checks if new in/out flow is going to reach the max in/out or not

func (*Quota) Descriptor

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

func (*Quota) GetDurationHours

func (m *Quota) GetDurationHours() uint64

func (*Quota) Marshal

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

func (*Quota) MarshalTo

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

func (*Quota) MarshalToSizedBuffer

func (m *Quota) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Quota) ProtoMessage

func (*Quota) ProtoMessage()

func (*Quota) Reset

func (m *Quota) Reset()

func (*Quota) Size

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

func (*Quota) String

func (m *Quota) String() string

func (*Quota) Unmarshal

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

func (*Quota) XXX_DiscardUnknown

func (m *Quota) XXX_DiscardUnknown()

func (*Quota) XXX_Marshal

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

func (*Quota) XXX_Merge

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

func (*Quota) XXX_Size

func (m *Quota) XXX_Size() int

func (*Quota) XXX_Unmarshal

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

type RateLimit

type RateLimit struct {
	Path  *Path  `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	Quota *Quota `protobuf:"bytes,2,opt,name=quota,proto3" json:"quota,omitempty"`
	Flow  *Flow  `protobuf:"bytes,3,opt,name=flow,proto3" json:"flow,omitempty"`
}

func (*RateLimit) Descriptor

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

func (*RateLimit) GetFlow

func (m *RateLimit) GetFlow() *Flow

func (*RateLimit) GetPath

func (m *RateLimit) GetPath() *Path

func (*RateLimit) GetQuota

func (m *RateLimit) GetQuota() *Quota

func (*RateLimit) Marshal

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

func (*RateLimit) MarshalTo

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

func (*RateLimit) MarshalToSizedBuffer

func (m *RateLimit) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RateLimit) ProtoMessage

func (*RateLimit) ProtoMessage()

func (*RateLimit) Reset

func (m *RateLimit) Reset()

func (*RateLimit) Size

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

func (*RateLimit) String

func (m *RateLimit) String() string

func (*RateLimit) Unmarshal

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

func (*RateLimit) XXX_DiscardUnknown

func (m *RateLimit) XXX_DiscardUnknown()

func (*RateLimit) XXX_Marshal

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

func (*RateLimit) XXX_Merge

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

func (*RateLimit) XXX_Size

func (m *RateLimit) XXX_Size() int

func (*RateLimit) XXX_Unmarshal

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

type RemoveRateLimitProposal

type RemoveRateLimitProposal struct {
	Title       string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Denom       string `protobuf:"bytes,3,opt,name=denom,proto3" json:"denom,omitempty"`
	ChannelId   string `protobuf:"bytes,4,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	Deposit     string `protobuf:"bytes,5,opt,name=deposit,proto3" json:"deposit,omitempty" yaml:"deposit"`
}

func (*RemoveRateLimitProposal) Descriptor

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

func (*RemoveRateLimitProposal) Equal

func (this *RemoveRateLimitProposal) Equal(that interface{}) bool

func (*RemoveRateLimitProposal) GetDescription

func (p *RemoveRateLimitProposal) GetDescription() string

func (*RemoveRateLimitProposal) GetTitle

func (p *RemoveRateLimitProposal) GetTitle() string

func (*RemoveRateLimitProposal) Marshal

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

func (*RemoveRateLimitProposal) MarshalTo

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

func (*RemoveRateLimitProposal) MarshalToSizedBuffer

func (m *RemoveRateLimitProposal) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RemoveRateLimitProposal) ProposalRoute

func (p *RemoveRateLimitProposal) ProposalRoute() string

func (*RemoveRateLimitProposal) ProposalType

func (p *RemoveRateLimitProposal) ProposalType() string

func (*RemoveRateLimitProposal) ProtoMessage

func (*RemoveRateLimitProposal) ProtoMessage()

func (*RemoveRateLimitProposal) Reset

func (m *RemoveRateLimitProposal) Reset()

func (*RemoveRateLimitProposal) Size

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

func (RemoveRateLimitProposal) String

func (p RemoveRateLimitProposal) String() string

func (*RemoveRateLimitProposal) Unmarshal

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

func (*RemoveRateLimitProposal) ValidateBasic

func (p *RemoveRateLimitProposal) ValidateBasic() error

func (*RemoveRateLimitProposal) XXX_DiscardUnknown

func (m *RemoveRateLimitProposal) XXX_DiscardUnknown()

func (*RemoveRateLimitProposal) XXX_Marshal

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

func (*RemoveRateLimitProposal) XXX_Merge

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

func (*RemoveRateLimitProposal) XXX_Size

func (m *RemoveRateLimitProposal) XXX_Size() int

func (*RemoveRateLimitProposal) XXX_Unmarshal

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

type ResetRateLimitProposal

type ResetRateLimitProposal struct {
	Title       string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Denom       string `protobuf:"bytes,3,opt,name=denom,proto3" json:"denom,omitempty"`
	ChannelId   string `protobuf:"bytes,4,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	Deposit     string `protobuf:"bytes,5,opt,name=deposit,proto3" json:"deposit,omitempty" yaml:"deposit"`
}

func (*ResetRateLimitProposal) Descriptor

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

func (*ResetRateLimitProposal) Equal

func (this *ResetRateLimitProposal) Equal(that interface{}) bool

func (*ResetRateLimitProposal) GetDescription

func (p *ResetRateLimitProposal) GetDescription() string

func (*ResetRateLimitProposal) GetTitle

func (p *ResetRateLimitProposal) GetTitle() string

func (*ResetRateLimitProposal) Marshal

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

func (*ResetRateLimitProposal) MarshalTo

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

func (*ResetRateLimitProposal) MarshalToSizedBuffer

func (m *ResetRateLimitProposal) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ResetRateLimitProposal) ProposalRoute

func (p *ResetRateLimitProposal) ProposalRoute() string

func (*ResetRateLimitProposal) ProposalType

func (p *ResetRateLimitProposal) ProposalType() string

func (*ResetRateLimitProposal) ProtoMessage

func (*ResetRateLimitProposal) ProtoMessage()

func (*ResetRateLimitProposal) Reset

func (m *ResetRateLimitProposal) Reset()

func (*ResetRateLimitProposal) Size

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

func (ResetRateLimitProposal) String

func (p ResetRateLimitProposal) String() string

func (*ResetRateLimitProposal) Unmarshal

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

func (*ResetRateLimitProposal) ValidateBasic

func (p *ResetRateLimitProposal) ValidateBasic() error

func (*ResetRateLimitProposal) XXX_DiscardUnknown

func (m *ResetRateLimitProposal) XXX_DiscardUnknown()

func (*ResetRateLimitProposal) XXX_Marshal

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

func (*ResetRateLimitProposal) XXX_Merge

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

func (*ResetRateLimitProposal) XXX_Size

func (m *ResetRateLimitProposal) XXX_Size() int

func (*ResetRateLimitProposal) XXX_Unmarshal

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

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) AllRateLimits

func (*UnimplementedQueryServer) RateLimit

func (*UnimplementedQueryServer) RateLimitsByChainId

type UpdateRateLimitProposal

type UpdateRateLimitProposal struct {
	Title          string                                 `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description    string                                 `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Denom          string                                 `protobuf:"bytes,3,opt,name=denom,proto3" json:"denom,omitempty"`
	ChannelId      string                                 `protobuf:"bytes,4,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	MaxPercentSend github_com_cosmos_cosmos_sdk_types.Int `` /* 145-byte string literal not displayed */
	MaxPercentRecv github_com_cosmos_cosmos_sdk_types.Int `` /* 145-byte string literal not displayed */
	DurationHours  uint64                                 `protobuf:"varint,7,opt,name=duration_hours,json=durationHours,proto3" json:"duration_hours,omitempty"`
	Deposit        string                                 `protobuf:"bytes,8,opt,name=deposit,proto3" json:"deposit,omitempty" yaml:"deposit"`
}

func (*UpdateRateLimitProposal) Descriptor

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

func (*UpdateRateLimitProposal) Equal

func (this *UpdateRateLimitProposal) Equal(that interface{}) bool

func (*UpdateRateLimitProposal) GetDescription

func (p *UpdateRateLimitProposal) GetDescription() string

func (*UpdateRateLimitProposal) GetTitle

func (p *UpdateRateLimitProposal) GetTitle() string

func (*UpdateRateLimitProposal) Marshal

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

func (*UpdateRateLimitProposal) MarshalTo

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

func (*UpdateRateLimitProposal) MarshalToSizedBuffer

func (m *UpdateRateLimitProposal) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UpdateRateLimitProposal) ProposalRoute

func (p *UpdateRateLimitProposal) ProposalRoute() string

func (*UpdateRateLimitProposal) ProposalType

func (p *UpdateRateLimitProposal) ProposalType() string

func (*UpdateRateLimitProposal) ProtoMessage

func (*UpdateRateLimitProposal) ProtoMessage()

func (*UpdateRateLimitProposal) Reset

func (m *UpdateRateLimitProposal) Reset()

func (*UpdateRateLimitProposal) Size

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

func (UpdateRateLimitProposal) String

func (p UpdateRateLimitProposal) String() string

func (*UpdateRateLimitProposal) Unmarshal

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

func (*UpdateRateLimitProposal) ValidateBasic

func (p *UpdateRateLimitProposal) ValidateBasic() error

func (*UpdateRateLimitProposal) XXX_DiscardUnknown

func (m *UpdateRateLimitProposal) XXX_DiscardUnknown()

func (*UpdateRateLimitProposal) XXX_Marshal

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

func (*UpdateRateLimitProposal) XXX_Merge

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

func (*UpdateRateLimitProposal) XXX_Size

func (m *UpdateRateLimitProposal) XXX_Size() int

func (*UpdateRateLimitProposal) XXX_Unmarshal

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

Jump to

Keyboard shortcuts

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