types

package
v0.0.2 Latest Latest
Warning

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

Go to latest
Published: Sep 4, 2024 License: MIT Imports: 24 Imported by: 0

Documentation

Index

Constants

View Source
const (
	ProposalTypeCreateChainConfig = "CreateChainConfig"
	ProposalTypeDeleteChainConfig = "DeleteChainConfig"
	ProposalTypeUpdateChainConfig = "UpdateChainConfig"

	ProposalTypeCreateContractConfig = "CreateContractConfig"
	ProposalTypeDeleteContractConfig = "DeleteContractConfig"
	ProposalTypeUpdateContractConfig = "UpdateContractConfig"

	ProposalTypeCreateIbcRelayerConfig = "CreateIbcRelayerConfig"
	ProposalTypeDeleteIbcRelayerConfig = "DeleteIbcRelayerConfig"
	ProposalTypeUpdateIbcRelayerConfig = "UpdateIbcRelayerConfig"
)
View Source
const (
	// ContractConfigKeyPrefix is the prefix to retrieve all ContractConfig
	ContractConfigKeyPrefix = "ContractConfig/value/"

	// LastObservedEventNonceKey indexes the latest event nonce
	// [0xa34e56ab6fab9ee91e82ba216bfeb759]
	LastObservedEventNonceKey = "LastObservedEventNonceKey"
)
View Source
const (
	// ModuleName defines the module name
	ModuleName = "multichain"

	// 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

	// MemStoreKey defines the in-memory store key
	MemStoreKey = "mem_multichain"

	RouterchainGatewayContract = "0x0000000000000000000000000000000000000001"
)
View Source
const (
	// ChainConfigKeyPrefix is the prefix to retrieve all ChainConfig
	ChainConfigKeyPrefix = "ChainConfig/value/"
)
View Source
const DefaultIndex uint64 = 1

DefaultIndex is the default capability global ChainId

View Source
const DefaultRouterAdmin = "router1xw62qplveq9un9tccxx6qld8qnz5qv3kj8cnja"
View Source
const (
	// NonceObservedStatusKeyPrefix is the prefix to retrieve all NonceObservedStatus
	NonceObservedStatusKeyPrefix = "NonceObservedStatus/value/"
)
View Source
const (
	// RelayerConfigKeyPrefix is the prefix to retrieve all RelayerConfig
	RelayerConfigKeyPrefix = "RelayerConfig/value/"
)

Variables

View Source
var (
	ErrInvalidLengthChainConfig        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowChainConfig          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupChainConfig = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthEvent        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowEvent          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupEvent = fmt.Errorf("proto: unexpected end of group")
)
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 (
	ErrInvalidLengthIbcRelayerConfig        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowIbcRelayerConfig          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupIbcRelayerConfig = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthNonceObservedStatus        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowNonceObservedStatus          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupNonceObservedStatus = fmt.Errorf("proto: unexpected end of group")
)
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 ChainType_name = map[int32]string{
	0:  "CHAIN_TYPE_NONE",
	1:  "CHAIN_TYPE_ROUTER",
	2:  "CHAIN_TYPE_EVM",
	3:  "CHAIN_TYPE_COSMOS",
	4:  "CHAIN_TYPE_POLKADOT",
	5:  "CHAIN_TYPE_SOLANA",
	6:  "CHAIN_TYPE_NEAR",
	7:  "CHAIN_TYPE_TRON",
	8:  "CHAIN_TYPE_STARKNET",
	9:  "CHAIN_TYPE_BITCOIN",
	10: "CHAIN_TYPE_SUI",
	11: "CHAIN_TYPE_ALEPH_ZERO",
}
View Source
var ChainType_value = map[string]int32{
	"CHAIN_TYPE_NONE":       0,
	"CHAIN_TYPE_ROUTER":     1,
	"CHAIN_TYPE_EVM":        2,
	"CHAIN_TYPE_COSMOS":     3,
	"CHAIN_TYPE_POLKADOT":   4,
	"CHAIN_TYPE_SOLANA":     5,
	"CHAIN_TYPE_NEAR":       6,
	"CHAIN_TYPE_TRON":       7,
	"CHAIN_TYPE_STARKNET":   8,
	"CHAIN_TYPE_BITCOIN":    9,
	"CHAIN_TYPE_SUI":        10,
	"CHAIN_TYPE_ALEPH_ZERO": 11,
}
View Source
var ContractType_name = map[int32]string{
	0: "GATEWAY",
	1: "VOYAGER",
}
View Source
var ContractType_value = map[string]int32{
	"GATEWAY": 0,
	"VOYAGER": 1,
}
View Source
var (
	ErrSample = errorsmod.Register(ModuleName, 1100, "sample error")
)

x/multichain module sentinel errors

View Source
var IbcRelayerConnectionType_name = map[int32]string{
	0: "GATEWAY_ENDPOINT",
	1: "VOYAGER_ENDPOINT",
}
View Source
var IbcRelayerConnectionType_value = map[string]int32{
	"GATEWAY_ENDPOINT": 0,
	"VOYAGER_ENDPOINT": 1,
}
View Source
var KeyRouterAdmin = []byte("RouterAdmin")

Functions

func ChainConfigKey

func ChainConfigKey(
	chainId string,
) []byte

ChainConfigKey returns the store key to retrieve a ChainConfig from the index fields

func ContractConfigKey

func ContractConfigKey(
	chainId string,
	contract string,
) []byte

ContractConfigKey returns the store key to retrieve a ContractConfig from the index fields

func GetLastObservedEventNonceKey

func GetLastObservedEventNonceKey(
	chainId string,
	contract string,
) []byte

GetLastObservedEventNonceKey returns the store key to retrieve a LastObservedEventNonce from the index fields

func KeyPrefix

func KeyPrefix(p string) []byte

func NonceObservedStatusKey

func NonceObservedStatusKey(
	chainId string,
	contract string,
	eventNonce uint64,
) []byte

NonceObservedStatusKey returns the store key to retrieve a NonceObservedStatus from the index fields

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 RegisterLegacyAminoCodec

func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino)

func RegisterMsgServer

func RegisterMsgServer(s grpc1.Server, srv MsgServer)

func RegisterQueryServer

func RegisterQueryServer(s grpc1.Server, srv QueryServer)

func RelayerConfigKey

func RelayerConfigKey(
	chainId string,
	relayerType IbcRelayerConnectionType,
) []byte

RelayerConfigKey returns the store key to retrieve a RelayerConfig from the index fields

Types

type AccountKeeper

type AccountKeeper interface {
	GetAccount(ctx sdk.Context, addr sdk.AccAddress) types.AccountI
}

AccountKeeper defines the expected account keeper used for simulations (noalias)

type BankKeeper

type BankKeeper interface {
	SpendableCoins(ctx sdk.Context, addr sdk.AccAddress) sdk.Coins
}

BankKeeper defines the expected interface needed to retrieve account balances.

type ChainConfig

type ChainConfig struct {
	ChainId                 string    `protobuf:"bytes,1,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ChainName               string    `protobuf:"bytes,2,opt,name=chainName,proto3" json:"chainName,omitempty"`
	Symbol                  string    `protobuf:"bytes,3,opt,name=symbol,proto3" json:"symbol,omitempty"`
	NativeDecimals          int64     `protobuf:"varint,4,opt,name=native_decimals,json=nativeDecimals,proto3" json:"native_decimals,omitempty"`
	ChainType               ChainType `protobuf:"varint,5,opt,name=chainType,proto3,enum=routerprotocol.routerchain.multichain.ChainType" json:"chainType,omitempty"`
	ConfirmationsRequired   uint64    `protobuf:"varint,6,opt,name=confirmationsRequired,proto3" json:"confirmationsRequired,omitempty"`
	LastObservedValsetNonce uint64    `protobuf:"varint,7,opt,name=lastObservedValsetNonce,proto3" json:"lastObservedValsetNonce,omitempty"`
	ChainEnabled            bool      `protobuf:"varint,8,opt,name=chain_enabled,json=chainEnabled,proto3" json:"chain_enabled,omitempty"`
	IsUnorderedNonces       bool      `protobuf:"varint,9,opt,name=is_unordered_nonces,json=isUnorderedNonces,proto3" json:"is_unordered_nonces,omitempty"`
}

func (*ChainConfig) Descriptor

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

func (*ChainConfig) GetChainEnabled

func (m *ChainConfig) GetChainEnabled() bool

func (*ChainConfig) GetChainId

func (m *ChainConfig) GetChainId() string

func (*ChainConfig) GetChainName

func (m *ChainConfig) GetChainName() string

func (*ChainConfig) GetChainType

func (m *ChainConfig) GetChainType() ChainType

func (*ChainConfig) GetConfirmationsRequired

func (m *ChainConfig) GetConfirmationsRequired() uint64

func (*ChainConfig) GetIsUnorderedNonces

func (m *ChainConfig) GetIsUnorderedNonces() bool

func (*ChainConfig) GetLastObservedValsetNonce

func (m *ChainConfig) GetLastObservedValsetNonce() uint64

func (*ChainConfig) GetNativeDecimals

func (m *ChainConfig) GetNativeDecimals() int64

func (*ChainConfig) GetSymbol

func (m *ChainConfig) GetSymbol() string

func (*ChainConfig) Marshal

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

func (*ChainConfig) MarshalTo

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

func (*ChainConfig) MarshalToSizedBuffer

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

func (*ChainConfig) ProtoMessage

func (*ChainConfig) ProtoMessage()

func (*ChainConfig) Reset

func (m *ChainConfig) Reset()

func (*ChainConfig) Size

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

func (*ChainConfig) String

func (m *ChainConfig) String() string

func (*ChainConfig) Unmarshal

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

func (*ChainConfig) XXX_DiscardUnknown

func (m *ChainConfig) XXX_DiscardUnknown()

func (*ChainConfig) XXX_Marshal

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

func (*ChainConfig) XXX_Merge

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

func (*ChainConfig) XXX_Size

func (m *ChainConfig) XXX_Size() int

func (*ChainConfig) XXX_Unmarshal

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

type ChainType

type ChainType int32
const (
	CHAIN_TYPE_NONE       ChainType = 0
	CHAIN_TYPE_ROUTER     ChainType = 1
	CHAIN_TYPE_EVM        ChainType = 2
	CHAIN_TYPE_COSMOS     ChainType = 3
	CHAIN_TYPE_POLKADOT   ChainType = 4
	CHAIN_TYPE_SOLANA     ChainType = 5
	CHAIN_TYPE_NEAR       ChainType = 6
	CHAIN_TYPE_TRON       ChainType = 7
	CHAIN_TYPE_STARKNET   ChainType = 8
	CHAIN_TYPE_BITCOIN    ChainType = 9
	CHAIN_TYPE_SUI        ChainType = 10
	CHAIN_TYPE_ALEPH_ZERO ChainType = 11
)

func (ChainType) EnumDescriptor

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

func (ChainType) String

func (x ChainType) String() string

type ContractConfig

type ContractConfig struct {
	ChainId                       string                                 `protobuf:"bytes,1,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ContractAddress               string                                 `protobuf:"bytes,2,opt,name=contractAddress,proto3" json:"contractAddress,omitempty"`
	ContractHeight                uint64                                 `protobuf:"varint,3,opt,name=contractHeight,proto3" json:"contractHeight,omitempty"`
	LastObservedEventNonce        uint64                                 `protobuf:"varint,4,opt,name=lastObservedEventNonce,proto3" json:"lastObservedEventNonce,omitempty"`
	LastObservedEventBlockHeight  uint64                                 `protobuf:"varint,5,opt,name=lastObservedEventBlockHeight,proto3" json:"lastObservedEventBlockHeight,omitempty"`
	ContractType                  ContractType                           `` /* 134-byte string literal not displayed */
	ClaimSlashingEnabled          bool                                   `protobuf:"varint,7,opt,name=claimSlashingEnabled,proto3" json:"claimSlashingEnabled,omitempty"`
	ClaimSlashingWindow           uint64                                 `protobuf:"varint,8,opt,name=claimSlashingWindow,proto3" json:"claimSlashingWindow,omitempty"`
	SlashFractionMissingClaim     github_com_cosmos_cosmos_sdk_types.Dec `` /* 180-byte string literal not displayed */
	SlashFractionConflictingClaim github_com_cosmos_cosmos_sdk_types.Dec `` /* 193-byte string literal not displayed */
	ContractEnabled               bool                                   `protobuf:"varint,11,opt,name=contract_enabled,json=contractEnabled,proto3" json:"contract_enabled,omitempty"`
}

func (*ContractConfig) Descriptor

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

func (*ContractConfig) GetChainId

func (m *ContractConfig) GetChainId() string

func (*ContractConfig) GetClaimSlashingEnabled

func (m *ContractConfig) GetClaimSlashingEnabled() bool

func (*ContractConfig) GetClaimSlashingWindow

func (m *ContractConfig) GetClaimSlashingWindow() uint64

func (*ContractConfig) GetContractAddress

func (m *ContractConfig) GetContractAddress() string

func (*ContractConfig) GetContractEnabled

func (m *ContractConfig) GetContractEnabled() bool

func (*ContractConfig) GetContractHeight

func (m *ContractConfig) GetContractHeight() uint64

func (*ContractConfig) GetContractType

func (m *ContractConfig) GetContractType() ContractType

func (*ContractConfig) GetLastObservedEventBlockHeight

func (m *ContractConfig) GetLastObservedEventBlockHeight() uint64

func (*ContractConfig) GetLastObservedEventNonce

func (m *ContractConfig) GetLastObservedEventNonce() uint64

func (*ContractConfig) Marshal

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

func (*ContractConfig) MarshalTo

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

func (*ContractConfig) MarshalToSizedBuffer

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

func (*ContractConfig) ProtoMessage

func (*ContractConfig) ProtoMessage()

func (*ContractConfig) Reset

func (m *ContractConfig) Reset()

func (*ContractConfig) Size

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

func (*ContractConfig) String

func (m *ContractConfig) String() string

func (*ContractConfig) Unmarshal

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

func (*ContractConfig) XXX_DiscardUnknown

func (m *ContractConfig) XXX_DiscardUnknown()

func (*ContractConfig) XXX_Marshal

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

func (*ContractConfig) XXX_Merge

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

func (*ContractConfig) XXX_Size

func (m *ContractConfig) XXX_Size() int

func (*ContractConfig) XXX_Unmarshal

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

type ContractType

type ContractType int32
const (
	GATEWAY ContractType = 0
	VOYAGER ContractType = 1
)

func (ContractType) EnumDescriptor

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

func (ContractType) String

func (x ContractType) String() string

type EventCreateChainConfig

type EventCreateChainConfig struct {
	ChainId                 string    `protobuf:"bytes,1,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ChainName               string    `protobuf:"bytes,2,opt,name=chainName,proto3" json:"chainName,omitempty"`
	Symbol                  string    `protobuf:"bytes,3,opt,name=symbol,proto3" json:"symbol,omitempty"`
	NativeDecimals          int64     `protobuf:"varint,4,opt,name=native_decimals,json=nativeDecimals,proto3" json:"native_decimals,omitempty"`
	ChainType               ChainType `protobuf:"varint,5,opt,name=chainType,proto3,enum=routerprotocol.routerchain.multichain.ChainType" json:"chainType,omitempty"`
	ConfirmationsRequired   uint64    `protobuf:"varint,6,opt,name=confirmationsRequired,proto3" json:"confirmationsRequired,omitempty"`
	LastObservedValsetNonce uint64    `protobuf:"varint,7,opt,name=lastObservedValsetNonce,proto3" json:"lastObservedValsetNonce,omitempty"`
	ChainEnabled            bool      `protobuf:"varint,8,opt,name=chain_enabled,json=chainEnabled,proto3" json:"chain_enabled,omitempty"`
	IsUnorderedNonces       bool      `protobuf:"varint,9,opt,name=is_unordered_nonces,json=isUnorderedNonces,proto3" json:"is_unordered_nonces,omitempty"`
}

func (*EventCreateChainConfig) Descriptor

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

func (*EventCreateChainConfig) GetChainEnabled

func (m *EventCreateChainConfig) GetChainEnabled() bool

func (*EventCreateChainConfig) GetChainId

func (m *EventCreateChainConfig) GetChainId() string

func (*EventCreateChainConfig) GetChainName

func (m *EventCreateChainConfig) GetChainName() string

func (*EventCreateChainConfig) GetChainType

func (m *EventCreateChainConfig) GetChainType() ChainType

func (*EventCreateChainConfig) GetConfirmationsRequired

func (m *EventCreateChainConfig) GetConfirmationsRequired() uint64

func (*EventCreateChainConfig) GetIsUnorderedNonces

func (m *EventCreateChainConfig) GetIsUnorderedNonces() bool

func (*EventCreateChainConfig) GetLastObservedValsetNonce

func (m *EventCreateChainConfig) GetLastObservedValsetNonce() uint64

func (*EventCreateChainConfig) GetNativeDecimals

func (m *EventCreateChainConfig) GetNativeDecimals() int64

func (*EventCreateChainConfig) GetSymbol

func (m *EventCreateChainConfig) GetSymbol() string

func (*EventCreateChainConfig) Marshal

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

func (*EventCreateChainConfig) MarshalTo

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

func (*EventCreateChainConfig) MarshalToSizedBuffer

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

func (*EventCreateChainConfig) ProtoMessage

func (*EventCreateChainConfig) ProtoMessage()

func (*EventCreateChainConfig) Reset

func (m *EventCreateChainConfig) Reset()

func (*EventCreateChainConfig) Size

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

func (*EventCreateChainConfig) String

func (m *EventCreateChainConfig) String() string

func (*EventCreateChainConfig) Unmarshal

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

func (*EventCreateChainConfig) XXX_DiscardUnknown

func (m *EventCreateChainConfig) XXX_DiscardUnknown()

func (*EventCreateChainConfig) XXX_Marshal

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

func (*EventCreateChainConfig) XXX_Merge

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

func (*EventCreateChainConfig) XXX_Size

func (m *EventCreateChainConfig) XXX_Size() int

func (*EventCreateChainConfig) XXX_Unmarshal

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

type EventCreateContractConfig

type EventCreateContractConfig struct {
	ChainId                       string                                 `protobuf:"bytes,1,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ContractAddress               string                                 `protobuf:"bytes,2,opt,name=contractAddress,proto3" json:"contractAddress,omitempty"`
	ContractHeight                uint64                                 `protobuf:"varint,3,opt,name=contractHeight,proto3" json:"contractHeight,omitempty"`
	LastObservedEventNonce        uint64                                 `protobuf:"varint,4,opt,name=lastObservedEventNonce,proto3" json:"lastObservedEventNonce,omitempty"`
	LastObservedEventBlockHeight  uint64                                 `protobuf:"varint,5,opt,name=lastObservedEventBlockHeight,proto3" json:"lastObservedEventBlockHeight,omitempty"`
	ContractType                  ContractType                           `` /* 134-byte string literal not displayed */
	ClaimSlashingEnabled          bool                                   `protobuf:"varint,7,opt,name=claimSlashingEnabled,proto3" json:"claimSlashingEnabled,omitempty"`
	ClaimSlashingWindow           uint64                                 `protobuf:"varint,8,opt,name=claimSlashingWindow,proto3" json:"claimSlashingWindow,omitempty"`
	SlashFractionMissingClaim     github_com_cosmos_cosmos_sdk_types.Dec `` /* 180-byte string literal not displayed */
	SlashFractionConflictingClaim github_com_cosmos_cosmos_sdk_types.Dec `` /* 193-byte string literal not displayed */
	ContractEnabled               bool                                   `protobuf:"varint,11,opt,name=contract_enabled,json=contractEnabled,proto3" json:"contract_enabled,omitempty"`
}

func (*EventCreateContractConfig) Descriptor

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

func (*EventCreateContractConfig) GetChainId

func (m *EventCreateContractConfig) GetChainId() string

func (*EventCreateContractConfig) GetClaimSlashingEnabled

func (m *EventCreateContractConfig) GetClaimSlashingEnabled() bool

func (*EventCreateContractConfig) GetClaimSlashingWindow

func (m *EventCreateContractConfig) GetClaimSlashingWindow() uint64

func (*EventCreateContractConfig) GetContractAddress

func (m *EventCreateContractConfig) GetContractAddress() string

func (*EventCreateContractConfig) GetContractEnabled

func (m *EventCreateContractConfig) GetContractEnabled() bool

func (*EventCreateContractConfig) GetContractHeight

func (m *EventCreateContractConfig) GetContractHeight() uint64

func (*EventCreateContractConfig) GetContractType

func (m *EventCreateContractConfig) GetContractType() ContractType

func (*EventCreateContractConfig) GetLastObservedEventBlockHeight

func (m *EventCreateContractConfig) GetLastObservedEventBlockHeight() uint64

func (*EventCreateContractConfig) GetLastObservedEventNonce

func (m *EventCreateContractConfig) GetLastObservedEventNonce() uint64

func (*EventCreateContractConfig) Marshal

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

func (*EventCreateContractConfig) MarshalTo

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

func (*EventCreateContractConfig) MarshalToSizedBuffer

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

func (*EventCreateContractConfig) ProtoMessage

func (*EventCreateContractConfig) ProtoMessage()

func (*EventCreateContractConfig) Reset

func (m *EventCreateContractConfig) Reset()

func (*EventCreateContractConfig) Size

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

func (*EventCreateContractConfig) String

func (m *EventCreateContractConfig) String() string

func (*EventCreateContractConfig) Unmarshal

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

func (*EventCreateContractConfig) XXX_DiscardUnknown

func (m *EventCreateContractConfig) XXX_DiscardUnknown()

func (*EventCreateContractConfig) XXX_Marshal

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

func (*EventCreateContractConfig) XXX_Merge

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

func (*EventCreateContractConfig) XXX_Size

func (m *EventCreateContractConfig) XXX_Size() int

func (*EventCreateContractConfig) XXX_Unmarshal

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

type EventCreateIbcRelayerConfig

type EventCreateIbcRelayerConfig struct {
	ChainId        string                   `protobuf:"bytes,1,opt,name=chainId,proto3" json:"chainId,omitempty"`
	RelayerName    string                   `protobuf:"bytes,2,opt,name=relayerName,proto3" json:"relayerName,omitempty"`
	Channel        string                   `protobuf:"bytes,3,opt,name=channel,proto3" json:"channel,omitempty"`
	RelayerEnabled bool                     `protobuf:"varint,4,opt,name=relayerEnabled,proto3" json:"relayerEnabled,omitempty"`
	Creator        string                   `protobuf:"bytes,5,opt,name=creator,proto3" json:"creator,omitempty"`
	ConnectionType IbcRelayerConnectionType `` /* 150-byte string literal not displayed */
}

func (*EventCreateIbcRelayerConfig) Descriptor

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

func (*EventCreateIbcRelayerConfig) GetChainId

func (m *EventCreateIbcRelayerConfig) GetChainId() string

func (*EventCreateIbcRelayerConfig) GetChannel

func (m *EventCreateIbcRelayerConfig) GetChannel() string

func (*EventCreateIbcRelayerConfig) GetConnectionType

func (*EventCreateIbcRelayerConfig) GetCreator

func (m *EventCreateIbcRelayerConfig) GetCreator() string

func (*EventCreateIbcRelayerConfig) GetRelayerEnabled

func (m *EventCreateIbcRelayerConfig) GetRelayerEnabled() bool

func (*EventCreateIbcRelayerConfig) GetRelayerName

func (m *EventCreateIbcRelayerConfig) GetRelayerName() string

func (*EventCreateIbcRelayerConfig) Marshal

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

func (*EventCreateIbcRelayerConfig) MarshalTo

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

func (*EventCreateIbcRelayerConfig) MarshalToSizedBuffer

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

func (*EventCreateIbcRelayerConfig) ProtoMessage

func (*EventCreateIbcRelayerConfig) ProtoMessage()

func (*EventCreateIbcRelayerConfig) Reset

func (m *EventCreateIbcRelayerConfig) Reset()

func (*EventCreateIbcRelayerConfig) Size

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

func (*EventCreateIbcRelayerConfig) String

func (m *EventCreateIbcRelayerConfig) String() string

func (*EventCreateIbcRelayerConfig) Unmarshal

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

func (*EventCreateIbcRelayerConfig) XXX_DiscardUnknown

func (m *EventCreateIbcRelayerConfig) XXX_DiscardUnknown()

func (*EventCreateIbcRelayerConfig) XXX_Marshal

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

func (*EventCreateIbcRelayerConfig) XXX_Merge

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

func (*EventCreateIbcRelayerConfig) XXX_Size

func (m *EventCreateIbcRelayerConfig) XXX_Size() int

func (*EventCreateIbcRelayerConfig) XXX_Unmarshal

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

type EventDeleteIbcRelayerConfig

type EventDeleteIbcRelayerConfig struct {
	ChainId        string                   `protobuf:"bytes,1,opt,name=chainId,proto3" json:"chainId,omitempty"`
	RelayerName    string                   `protobuf:"bytes,2,opt,name=relayerName,proto3" json:"relayerName,omitempty"`
	Channel        string                   `protobuf:"bytes,3,opt,name=channel,proto3" json:"channel,omitempty"`
	RelayerEnabled bool                     `protobuf:"varint,4,opt,name=relayerEnabled,proto3" json:"relayerEnabled,omitempty"`
	Creator        string                   `protobuf:"bytes,5,opt,name=creator,proto3" json:"creator,omitempty"`
	ConnectionType IbcRelayerConnectionType `` /* 150-byte string literal not displayed */
}

func (*EventDeleteIbcRelayerConfig) Descriptor

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

func (*EventDeleteIbcRelayerConfig) GetChainId

func (m *EventDeleteIbcRelayerConfig) GetChainId() string

func (*EventDeleteIbcRelayerConfig) GetChannel

func (m *EventDeleteIbcRelayerConfig) GetChannel() string

func (*EventDeleteIbcRelayerConfig) GetConnectionType

func (*EventDeleteIbcRelayerConfig) GetCreator

func (m *EventDeleteIbcRelayerConfig) GetCreator() string

func (*EventDeleteIbcRelayerConfig) GetRelayerEnabled

func (m *EventDeleteIbcRelayerConfig) GetRelayerEnabled() bool

func (*EventDeleteIbcRelayerConfig) GetRelayerName

func (m *EventDeleteIbcRelayerConfig) GetRelayerName() string

func (*EventDeleteIbcRelayerConfig) Marshal

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

func (*EventDeleteIbcRelayerConfig) MarshalTo

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

func (*EventDeleteIbcRelayerConfig) MarshalToSizedBuffer

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

func (*EventDeleteIbcRelayerConfig) ProtoMessage

func (*EventDeleteIbcRelayerConfig) ProtoMessage()

func (*EventDeleteIbcRelayerConfig) Reset

func (m *EventDeleteIbcRelayerConfig) Reset()

func (*EventDeleteIbcRelayerConfig) Size

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

func (*EventDeleteIbcRelayerConfig) String

func (m *EventDeleteIbcRelayerConfig) String() string

func (*EventDeleteIbcRelayerConfig) Unmarshal

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

func (*EventDeleteIbcRelayerConfig) XXX_DiscardUnknown

func (m *EventDeleteIbcRelayerConfig) XXX_DiscardUnknown()

func (*EventDeleteIbcRelayerConfig) XXX_Marshal

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

func (*EventDeleteIbcRelayerConfig) XXX_Merge

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

func (*EventDeleteIbcRelayerConfig) XXX_Size

func (m *EventDeleteIbcRelayerConfig) XXX_Size() int

func (*EventDeleteIbcRelayerConfig) XXX_Unmarshal

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

type EventDeletedChainConfig

type EventDeletedChainConfig struct {
	ChainId   string    `protobuf:"bytes,1,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ChainType ChainType `protobuf:"varint,2,opt,name=chainType,proto3,enum=routerprotocol.routerchain.multichain.ChainType" json:"chainType,omitempty"`
}

func (*EventDeletedChainConfig) Descriptor

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

func (*EventDeletedChainConfig) GetChainId

func (m *EventDeletedChainConfig) GetChainId() string

func (*EventDeletedChainConfig) GetChainType

func (m *EventDeletedChainConfig) GetChainType() ChainType

func (*EventDeletedChainConfig) Marshal

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

func (*EventDeletedChainConfig) MarshalTo

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

func (*EventDeletedChainConfig) MarshalToSizedBuffer

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

func (*EventDeletedChainConfig) ProtoMessage

func (*EventDeletedChainConfig) ProtoMessage()

func (*EventDeletedChainConfig) Reset

func (m *EventDeletedChainConfig) Reset()

func (*EventDeletedChainConfig) Size

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

func (*EventDeletedChainConfig) String

func (m *EventDeletedChainConfig) String() string

func (*EventDeletedChainConfig) Unmarshal

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

func (*EventDeletedChainConfig) XXX_DiscardUnknown

func (m *EventDeletedChainConfig) XXX_DiscardUnknown()

func (*EventDeletedChainConfig) XXX_Marshal

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

func (*EventDeletedChainConfig) XXX_Merge

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

func (*EventDeletedChainConfig) XXX_Size

func (m *EventDeletedChainConfig) XXX_Size() int

func (*EventDeletedChainConfig) XXX_Unmarshal

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

type EventDeletedContractConfig

type EventDeletedContractConfig struct {
	ChainId         string `protobuf:"bytes,1,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ContractAddress string `protobuf:"bytes,2,opt,name=contractAddress,proto3" json:"contractAddress,omitempty"`
}

func (*EventDeletedContractConfig) Descriptor

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

func (*EventDeletedContractConfig) GetChainId

func (m *EventDeletedContractConfig) GetChainId() string

func (*EventDeletedContractConfig) GetContractAddress

func (m *EventDeletedContractConfig) GetContractAddress() string

func (*EventDeletedContractConfig) Marshal

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

func (*EventDeletedContractConfig) MarshalTo

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

func (*EventDeletedContractConfig) MarshalToSizedBuffer

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

func (*EventDeletedContractConfig) ProtoMessage

func (*EventDeletedContractConfig) ProtoMessage()

func (*EventDeletedContractConfig) Reset

func (m *EventDeletedContractConfig) Reset()

func (*EventDeletedContractConfig) Size

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

func (*EventDeletedContractConfig) String

func (m *EventDeletedContractConfig) String() string

func (*EventDeletedContractConfig) Unmarshal

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

func (*EventDeletedContractConfig) XXX_DiscardUnknown

func (m *EventDeletedContractConfig) XXX_DiscardUnknown()

func (*EventDeletedContractConfig) XXX_Marshal

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

func (*EventDeletedContractConfig) XXX_Merge

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

func (*EventDeletedContractConfig) XXX_Size

func (m *EventDeletedContractConfig) XXX_Size() int

func (*EventDeletedContractConfig) XXX_Unmarshal

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

type EventUpdateIbcRelayerConfig

type EventUpdateIbcRelayerConfig struct {
	ChainId        string                   `protobuf:"bytes,1,opt,name=chainId,proto3" json:"chainId,omitempty"`
	RelayerName    string                   `protobuf:"bytes,2,opt,name=relayerName,proto3" json:"relayerName,omitempty"`
	Channel        string                   `protobuf:"bytes,3,opt,name=channel,proto3" json:"channel,omitempty"`
	RelayerEnabled bool                     `protobuf:"varint,4,opt,name=relayerEnabled,proto3" json:"relayerEnabled,omitempty"`
	Creator        string                   `protobuf:"bytes,5,opt,name=creator,proto3" json:"creator,omitempty"`
	ConnectionType IbcRelayerConnectionType `` /* 150-byte string literal not displayed */
}

func (*EventUpdateIbcRelayerConfig) Descriptor

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

func (*EventUpdateIbcRelayerConfig) GetChainId

func (m *EventUpdateIbcRelayerConfig) GetChainId() string

func (*EventUpdateIbcRelayerConfig) GetChannel

func (m *EventUpdateIbcRelayerConfig) GetChannel() string

func (*EventUpdateIbcRelayerConfig) GetConnectionType

func (*EventUpdateIbcRelayerConfig) GetCreator

func (m *EventUpdateIbcRelayerConfig) GetCreator() string

func (*EventUpdateIbcRelayerConfig) GetRelayerEnabled

func (m *EventUpdateIbcRelayerConfig) GetRelayerEnabled() bool

func (*EventUpdateIbcRelayerConfig) GetRelayerName

func (m *EventUpdateIbcRelayerConfig) GetRelayerName() string

func (*EventUpdateIbcRelayerConfig) Marshal

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

func (*EventUpdateIbcRelayerConfig) MarshalTo

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

func (*EventUpdateIbcRelayerConfig) MarshalToSizedBuffer

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

func (*EventUpdateIbcRelayerConfig) ProtoMessage

func (*EventUpdateIbcRelayerConfig) ProtoMessage()

func (*EventUpdateIbcRelayerConfig) Reset

func (m *EventUpdateIbcRelayerConfig) Reset()

func (*EventUpdateIbcRelayerConfig) Size

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

func (*EventUpdateIbcRelayerConfig) String

func (m *EventUpdateIbcRelayerConfig) String() string

func (*EventUpdateIbcRelayerConfig) Unmarshal

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

func (*EventUpdateIbcRelayerConfig) XXX_DiscardUnknown

func (m *EventUpdateIbcRelayerConfig) XXX_DiscardUnknown()

func (*EventUpdateIbcRelayerConfig) XXX_Marshal

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

func (*EventUpdateIbcRelayerConfig) XXX_Merge

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

func (*EventUpdateIbcRelayerConfig) XXX_Size

func (m *EventUpdateIbcRelayerConfig) XXX_Size() int

func (*EventUpdateIbcRelayerConfig) XXX_Unmarshal

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

type EventUpdatedChainConfig

type EventUpdatedChainConfig struct {
	ChainId                 string    `protobuf:"bytes,1,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ChainName               string    `protobuf:"bytes,2,opt,name=chainName,proto3" json:"chainName,omitempty"`
	Symbol                  string    `protobuf:"bytes,3,opt,name=symbol,proto3" json:"symbol,omitempty"`
	NativeDecimals          int64     `protobuf:"varint,4,opt,name=native_decimals,json=nativeDecimals,proto3" json:"native_decimals,omitempty"`
	ChainType               ChainType `protobuf:"varint,5,opt,name=chainType,proto3,enum=routerprotocol.routerchain.multichain.ChainType" json:"chainType,omitempty"`
	ConfirmationsRequired   uint64    `protobuf:"varint,6,opt,name=confirmationsRequired,proto3" json:"confirmationsRequired,omitempty"`
	LastObservedValsetNonce uint64    `protobuf:"varint,7,opt,name=lastObservedValsetNonce,proto3" json:"lastObservedValsetNonce,omitempty"`
	ChainEnabled            bool      `protobuf:"varint,8,opt,name=chain_enabled,json=chainEnabled,proto3" json:"chain_enabled,omitempty"`
	IsUnorderedNonces       bool      `protobuf:"varint,9,opt,name=is_unordered_nonces,json=isUnorderedNonces,proto3" json:"is_unordered_nonces,omitempty"`
}

func (*EventUpdatedChainConfig) Descriptor

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

func (*EventUpdatedChainConfig) GetChainEnabled

func (m *EventUpdatedChainConfig) GetChainEnabled() bool

func (*EventUpdatedChainConfig) GetChainId

func (m *EventUpdatedChainConfig) GetChainId() string

func (*EventUpdatedChainConfig) GetChainName

func (m *EventUpdatedChainConfig) GetChainName() string

func (*EventUpdatedChainConfig) GetChainType

func (m *EventUpdatedChainConfig) GetChainType() ChainType

func (*EventUpdatedChainConfig) GetConfirmationsRequired

func (m *EventUpdatedChainConfig) GetConfirmationsRequired() uint64

func (*EventUpdatedChainConfig) GetIsUnorderedNonces

func (m *EventUpdatedChainConfig) GetIsUnorderedNonces() bool

func (*EventUpdatedChainConfig) GetLastObservedValsetNonce

func (m *EventUpdatedChainConfig) GetLastObservedValsetNonce() uint64

func (*EventUpdatedChainConfig) GetNativeDecimals

func (m *EventUpdatedChainConfig) GetNativeDecimals() int64

func (*EventUpdatedChainConfig) GetSymbol

func (m *EventUpdatedChainConfig) GetSymbol() string

func (*EventUpdatedChainConfig) Marshal

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

func (*EventUpdatedChainConfig) MarshalTo

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

func (*EventUpdatedChainConfig) MarshalToSizedBuffer

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

func (*EventUpdatedChainConfig) ProtoMessage

func (*EventUpdatedChainConfig) ProtoMessage()

func (*EventUpdatedChainConfig) Reset

func (m *EventUpdatedChainConfig) Reset()

func (*EventUpdatedChainConfig) Size

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

func (*EventUpdatedChainConfig) String

func (m *EventUpdatedChainConfig) String() string

func (*EventUpdatedChainConfig) Unmarshal

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

func (*EventUpdatedChainConfig) XXX_DiscardUnknown

func (m *EventUpdatedChainConfig) XXX_DiscardUnknown()

func (*EventUpdatedChainConfig) XXX_Marshal

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

func (*EventUpdatedChainConfig) XXX_Merge

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

func (*EventUpdatedChainConfig) XXX_Size

func (m *EventUpdatedChainConfig) XXX_Size() int

func (*EventUpdatedChainConfig) XXX_Unmarshal

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

type EventUpdatedContractConfig

type EventUpdatedContractConfig struct {
	ChainId                       string                                 `protobuf:"bytes,1,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ContractAddress               string                                 `protobuf:"bytes,2,opt,name=contractAddress,proto3" json:"contractAddress,omitempty"`
	ContractHeight                uint64                                 `protobuf:"varint,3,opt,name=contractHeight,proto3" json:"contractHeight,omitempty"`
	LastObservedEventNonce        uint64                                 `protobuf:"varint,4,opt,name=lastObservedEventNonce,proto3" json:"lastObservedEventNonce,omitempty"`
	LastObservedEventBlockHeight  uint64                                 `protobuf:"varint,5,opt,name=lastObservedEventBlockHeight,proto3" json:"lastObservedEventBlockHeight,omitempty"`
	ContractType                  ContractType                           `` /* 134-byte string literal not displayed */
	ClaimSlashingEnabled          bool                                   `protobuf:"varint,7,opt,name=claimSlashingEnabled,proto3" json:"claimSlashingEnabled,omitempty"`
	ClaimSlashingWindow           uint64                                 `protobuf:"varint,8,opt,name=claimSlashingWindow,proto3" json:"claimSlashingWindow,omitempty"`
	SlashFractionMissingClaim     github_com_cosmos_cosmos_sdk_types.Dec `` /* 180-byte string literal not displayed */
	SlashFractionConflictingClaim github_com_cosmos_cosmos_sdk_types.Dec `` /* 193-byte string literal not displayed */
	ContractEnabled               bool                                   `protobuf:"varint,11,opt,name=contract_enabled,json=contractEnabled,proto3" json:"contract_enabled,omitempty"`
}

func (*EventUpdatedContractConfig) Descriptor

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

func (*EventUpdatedContractConfig) GetChainId

func (m *EventUpdatedContractConfig) GetChainId() string

func (*EventUpdatedContractConfig) GetClaimSlashingEnabled

func (m *EventUpdatedContractConfig) GetClaimSlashingEnabled() bool

func (*EventUpdatedContractConfig) GetClaimSlashingWindow

func (m *EventUpdatedContractConfig) GetClaimSlashingWindow() uint64

func (*EventUpdatedContractConfig) GetContractAddress

func (m *EventUpdatedContractConfig) GetContractAddress() string

func (*EventUpdatedContractConfig) GetContractEnabled

func (m *EventUpdatedContractConfig) GetContractEnabled() bool

func (*EventUpdatedContractConfig) GetContractHeight

func (m *EventUpdatedContractConfig) GetContractHeight() uint64

func (*EventUpdatedContractConfig) GetContractType

func (m *EventUpdatedContractConfig) GetContractType() ContractType

func (*EventUpdatedContractConfig) GetLastObservedEventBlockHeight

func (m *EventUpdatedContractConfig) GetLastObservedEventBlockHeight() uint64

func (*EventUpdatedContractConfig) GetLastObservedEventNonce

func (m *EventUpdatedContractConfig) GetLastObservedEventNonce() uint64

func (*EventUpdatedContractConfig) Marshal

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

func (*EventUpdatedContractConfig) MarshalTo

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

func (*EventUpdatedContractConfig) MarshalToSizedBuffer

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

func (*EventUpdatedContractConfig) ProtoMessage

func (*EventUpdatedContractConfig) ProtoMessage()

func (*EventUpdatedContractConfig) Reset

func (m *EventUpdatedContractConfig) Reset()

func (*EventUpdatedContractConfig) Size

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

func (*EventUpdatedContractConfig) String

func (m *EventUpdatedContractConfig) String() string

func (*EventUpdatedContractConfig) Unmarshal

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

func (*EventUpdatedContractConfig) XXX_DiscardUnknown

func (m *EventUpdatedContractConfig) XXX_DiscardUnknown()

func (*EventUpdatedContractConfig) XXX_Marshal

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

func (*EventUpdatedContractConfig) XXX_Merge

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

func (*EventUpdatedContractConfig) XXX_Size

func (m *EventUpdatedContractConfig) XXX_Size() int

func (*EventUpdatedContractConfig) XXX_Unmarshal

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

type GenesisState

type GenesisState struct {
	Params               Params             `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
	ChainConfigList      []ChainConfig      `protobuf:"bytes,2,rep,name=chainConfigList,proto3" json:"chainConfigList"`
	ContractConfigList   []ContractConfig   `protobuf:"bytes,3,rep,name=contractConfigList,proto3" json:"contractConfigList"`
	IbcRelayerConfigList []IbcRelayerConfig `protobuf:"bytes,4,rep,name=ibcRelayerConfigList,proto3" json:"ibcRelayerConfigList"`
	// this line is used by starport scaffolding # genesis/proto/state
	NonceObservedStatusList []NonceObservedStatus `protobuf:"bytes,5,rep,name=nonceObservedStatusList,proto3" json:"nonceObservedStatusList"`
}

GenesisState defines the multichain 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) GetChainConfigList

func (m *GenesisState) GetChainConfigList() []ChainConfig

func (*GenesisState) GetContractConfigList

func (m *GenesisState) GetContractConfigList() []ContractConfig

func (*GenesisState) GetIbcRelayerConfigList

func (m *GenesisState) GetIbcRelayerConfigList() []IbcRelayerConfig

func (*GenesisState) GetNonceObservedStatusList

func (m *GenesisState) GetNonceObservedStatusList() []NonceObservedStatus

func (*GenesisState) GetParams

func (m *GenesisState) GetParams() Params

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 IbcRelayerConfig

type IbcRelayerConfig struct {
	ChainId        string                   `protobuf:"bytes,1,opt,name=chainId,proto3" json:"chainId,omitempty"`
	RelayerName    string                   `protobuf:"bytes,2,opt,name=relayerName,proto3" json:"relayerName,omitempty"`
	Channel        string                   `protobuf:"bytes,3,opt,name=channel,proto3" json:"channel,omitempty"`
	RelayerEnabled bool                     `protobuf:"varint,4,opt,name=relayerEnabled,proto3" json:"relayerEnabled,omitempty"`
	ConnectionType IbcRelayerConnectionType `` /* 150-byte string literal not displayed */
}

func (*IbcRelayerConfig) Descriptor

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

func (*IbcRelayerConfig) GetChainId

func (m *IbcRelayerConfig) GetChainId() string

func (*IbcRelayerConfig) GetChannel

func (m *IbcRelayerConfig) GetChannel() string

func (*IbcRelayerConfig) GetConnectionType

func (m *IbcRelayerConfig) GetConnectionType() IbcRelayerConnectionType

func (*IbcRelayerConfig) GetRelayerEnabled

func (m *IbcRelayerConfig) GetRelayerEnabled() bool

func (*IbcRelayerConfig) GetRelayerName

func (m *IbcRelayerConfig) GetRelayerName() string

func (*IbcRelayerConfig) Marshal

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

func (*IbcRelayerConfig) MarshalTo

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

func (*IbcRelayerConfig) MarshalToSizedBuffer

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

func (*IbcRelayerConfig) ProtoMessage

func (*IbcRelayerConfig) ProtoMessage()

func (*IbcRelayerConfig) Reset

func (m *IbcRelayerConfig) Reset()

func (*IbcRelayerConfig) Size

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

func (*IbcRelayerConfig) String

func (m *IbcRelayerConfig) String() string

func (*IbcRelayerConfig) Unmarshal

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

func (*IbcRelayerConfig) XXX_DiscardUnknown

func (m *IbcRelayerConfig) XXX_DiscardUnknown()

func (*IbcRelayerConfig) XXX_Marshal

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

func (*IbcRelayerConfig) XXX_Merge

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

func (*IbcRelayerConfig) XXX_Size

func (m *IbcRelayerConfig) XXX_Size() int

func (*IbcRelayerConfig) XXX_Unmarshal

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

type IbcRelayerConnectionType

type IbcRelayerConnectionType int32
const (
	GATEWAY_ENDPOINT IbcRelayerConnectionType = 0
	VOYAGER_ENDPOINT IbcRelayerConnectionType = 1
)

func (IbcRelayerConnectionType) EnumDescriptor

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

func (IbcRelayerConnectionType) String

func (x IbcRelayerConnectionType) String() string

type MsgClient

type MsgClient interface {
}

MsgClient is the client API for Msg service.

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

func NewMsgClient

func NewMsgClient(cc grpc1.ClientConn) MsgClient

type MsgServer

type MsgServer interface {
}

MsgServer is the server API for Msg service.

type MultichainCreateChainConfigProposal

type MultichainCreateChainConfigProposal 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"`
	ChainConfig *ChainConfig `protobuf:"bytes,3,opt,name=chainConfig,proto3" json:"chainConfig,omitempty"`
}

func (*MultichainCreateChainConfigProposal) Descriptor

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

func (*MultichainCreateChainConfigProposal) GetChainConfig

func (m *MultichainCreateChainConfigProposal) GetChainConfig() *ChainConfig

func (*MultichainCreateChainConfigProposal) GetDescription

func (m *MultichainCreateChainConfigProposal) GetDescription() string

func (*MultichainCreateChainConfigProposal) GetTitle

func (*MultichainCreateChainConfigProposal) Marshal

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

func (*MultichainCreateChainConfigProposal) MarshalTo

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

func (*MultichainCreateChainConfigProposal) MarshalToSizedBuffer

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

func (*MultichainCreateChainConfigProposal) ProposalRoute

func (p *MultichainCreateChainConfigProposal) ProposalRoute() string

func (*MultichainCreateChainConfigProposal) ProposalType

func (p *MultichainCreateChainConfigProposal) ProposalType() string

func (*MultichainCreateChainConfigProposal) ProtoMessage

func (*MultichainCreateChainConfigProposal) ProtoMessage()

func (*MultichainCreateChainConfigProposal) Reset

func (*MultichainCreateChainConfigProposal) Size

func (*MultichainCreateChainConfigProposal) String

func (*MultichainCreateChainConfigProposal) Unmarshal

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

func (*MultichainCreateChainConfigProposal) ValidateBasic

func (p *MultichainCreateChainConfigProposal) ValidateBasic() error

func (*MultichainCreateChainConfigProposal) XXX_DiscardUnknown

func (m *MultichainCreateChainConfigProposal) XXX_DiscardUnknown()

func (*MultichainCreateChainConfigProposal) XXX_Marshal

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

func (*MultichainCreateChainConfigProposal) XXX_Merge

func (*MultichainCreateChainConfigProposal) XXX_Size

func (*MultichainCreateChainConfigProposal) XXX_Unmarshal

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

type MultichainCreateContractConfigProposal

type MultichainCreateContractConfigProposal 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"`
	ContractConfig *ContractConfig `protobuf:"bytes,3,opt,name=contractConfig,proto3" json:"contractConfig,omitempty"`
}

func (*MultichainCreateContractConfigProposal) Descriptor

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

func (*MultichainCreateContractConfigProposal) GetContractConfig

func (*MultichainCreateContractConfigProposal) GetDescription

func (m *MultichainCreateContractConfigProposal) GetDescription() string

func (*MultichainCreateContractConfigProposal) GetTitle

func (*MultichainCreateContractConfigProposal) Marshal

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

func (*MultichainCreateContractConfigProposal) MarshalTo

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

func (*MultichainCreateContractConfigProposal) MarshalToSizedBuffer

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

func (*MultichainCreateContractConfigProposal) ProposalRoute

func (*MultichainCreateContractConfigProposal) ProposalType

func (*MultichainCreateContractConfigProposal) ProtoMessage

func (*MultichainCreateContractConfigProposal) Reset

func (*MultichainCreateContractConfigProposal) Size

func (*MultichainCreateContractConfigProposal) String

func (*MultichainCreateContractConfigProposal) Unmarshal

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

func (*MultichainCreateContractConfigProposal) ValidateBasic

func (p *MultichainCreateContractConfigProposal) ValidateBasic() error

func (*MultichainCreateContractConfigProposal) XXX_DiscardUnknown

func (m *MultichainCreateContractConfigProposal) XXX_DiscardUnknown()

func (*MultichainCreateContractConfigProposal) XXX_Marshal

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

func (*MultichainCreateContractConfigProposal) XXX_Merge

func (*MultichainCreateContractConfigProposal) XXX_Size

func (*MultichainCreateContractConfigProposal) XXX_Unmarshal

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

type MultichainCreateIbcRelayerConfigProposal

type MultichainCreateIbcRelayerConfigProposal 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"`
	IbcRelayerConfig *IbcRelayerConfig `protobuf:"bytes,3,opt,name=ibcRelayerConfig,proto3" json:"ibcRelayerConfig,omitempty"`
}

func (*MultichainCreateIbcRelayerConfigProposal) Descriptor

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

func (*MultichainCreateIbcRelayerConfigProposal) GetDescription

func (*MultichainCreateIbcRelayerConfigProposal) GetIbcRelayerConfig

func (*MultichainCreateIbcRelayerConfigProposal) GetTitle

func (*MultichainCreateIbcRelayerConfigProposal) Marshal

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

func (*MultichainCreateIbcRelayerConfigProposal) MarshalTo

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

func (*MultichainCreateIbcRelayerConfigProposal) MarshalToSizedBuffer

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

func (*MultichainCreateIbcRelayerConfigProposal) ProposalRoute

func (*MultichainCreateIbcRelayerConfigProposal) ProposalType

func (*MultichainCreateIbcRelayerConfigProposal) ProtoMessage

func (*MultichainCreateIbcRelayerConfigProposal) Reset

func (*MultichainCreateIbcRelayerConfigProposal) Size

func (*MultichainCreateIbcRelayerConfigProposal) String

func (*MultichainCreateIbcRelayerConfigProposal) Unmarshal

func (*MultichainCreateIbcRelayerConfigProposal) ValidateBasic

func (*MultichainCreateIbcRelayerConfigProposal) XXX_DiscardUnknown

func (m *MultichainCreateIbcRelayerConfigProposal) XXX_DiscardUnknown()

func (*MultichainCreateIbcRelayerConfigProposal) XXX_Marshal

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

func (*MultichainCreateIbcRelayerConfigProposal) XXX_Merge

func (*MultichainCreateIbcRelayerConfigProposal) XXX_Size

func (*MultichainCreateIbcRelayerConfigProposal) XXX_Unmarshal

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

type MultichainDeleteChainConfigProposal

type MultichainDeleteChainConfigProposal 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"`
	ChainId     string    `protobuf:"bytes,3,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ChainType   ChainType `protobuf:"varint,4,opt,name=chainType,proto3,enum=routerprotocol.routerchain.multichain.ChainType" json:"chainType,omitempty"`
}

func (*MultichainDeleteChainConfigProposal) Descriptor

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

func (*MultichainDeleteChainConfigProposal) GetChainId

func (*MultichainDeleteChainConfigProposal) GetChainType

func (*MultichainDeleteChainConfigProposal) GetDescription

func (m *MultichainDeleteChainConfigProposal) GetDescription() string

func (*MultichainDeleteChainConfigProposal) GetTitle

func (*MultichainDeleteChainConfigProposal) Marshal

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

func (*MultichainDeleteChainConfigProposal) MarshalTo

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

func (*MultichainDeleteChainConfigProposal) MarshalToSizedBuffer

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

func (*MultichainDeleteChainConfigProposal) ProposalRoute

func (p *MultichainDeleteChainConfigProposal) ProposalRoute() string

func (*MultichainDeleteChainConfigProposal) ProposalType

func (p *MultichainDeleteChainConfigProposal) ProposalType() string

func (*MultichainDeleteChainConfigProposal) ProtoMessage

func (*MultichainDeleteChainConfigProposal) ProtoMessage()

func (*MultichainDeleteChainConfigProposal) Reset

func (*MultichainDeleteChainConfigProposal) Size

func (*MultichainDeleteChainConfigProposal) String

func (*MultichainDeleteChainConfigProposal) Unmarshal

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

func (*MultichainDeleteChainConfigProposal) ValidateBasic

func (p *MultichainDeleteChainConfigProposal) ValidateBasic() error

func (*MultichainDeleteChainConfigProposal) XXX_DiscardUnknown

func (m *MultichainDeleteChainConfigProposal) XXX_DiscardUnknown()

func (*MultichainDeleteChainConfigProposal) XXX_Marshal

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

func (*MultichainDeleteChainConfigProposal) XXX_Merge

func (*MultichainDeleteChainConfigProposal) XXX_Size

func (*MultichainDeleteChainConfigProposal) XXX_Unmarshal

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

type MultichainDeleteContractConfigProposal

type MultichainDeleteContractConfigProposal 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"`
	ChainId         string `protobuf:"bytes,3,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ContractAddress string `protobuf:"bytes,4,opt,name=contractAddress,proto3" json:"contractAddress,omitempty"`
}

func (*MultichainDeleteContractConfigProposal) Descriptor

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

func (*MultichainDeleteContractConfigProposal) GetChainId

func (*MultichainDeleteContractConfigProposal) GetContractAddress

func (m *MultichainDeleteContractConfigProposal) GetContractAddress() string

func (*MultichainDeleteContractConfigProposal) GetDescription

func (m *MultichainDeleteContractConfigProposal) GetDescription() string

func (*MultichainDeleteContractConfigProposal) GetTitle

func (*MultichainDeleteContractConfigProposal) Marshal

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

func (*MultichainDeleteContractConfigProposal) MarshalTo

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

func (*MultichainDeleteContractConfigProposal) MarshalToSizedBuffer

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

func (*MultichainDeleteContractConfigProposal) ProposalRoute

func (*MultichainDeleteContractConfigProposal) ProposalType

func (*MultichainDeleteContractConfigProposal) ProtoMessage

func (*MultichainDeleteContractConfigProposal) Reset

func (*MultichainDeleteContractConfigProposal) Size

func (*MultichainDeleteContractConfigProposal) String

func (*MultichainDeleteContractConfigProposal) Unmarshal

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

func (*MultichainDeleteContractConfigProposal) ValidateBasic

func (p *MultichainDeleteContractConfigProposal) ValidateBasic() error

func (*MultichainDeleteContractConfigProposal) XXX_DiscardUnknown

func (m *MultichainDeleteContractConfigProposal) XXX_DiscardUnknown()

func (*MultichainDeleteContractConfigProposal) XXX_Marshal

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

func (*MultichainDeleteContractConfigProposal) XXX_Merge

func (*MultichainDeleteContractConfigProposal) XXX_Size

func (*MultichainDeleteContractConfigProposal) XXX_Unmarshal

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

type MultichainDeleteIbcRelayerConfigProposal

type MultichainDeleteIbcRelayerConfigProposal 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"`
	ChainId        string                   `protobuf:"bytes,3,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ConnectionType IbcRelayerConnectionType `` /* 150-byte string literal not displayed */
}

func (*MultichainDeleteIbcRelayerConfigProposal) Descriptor

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

func (*MultichainDeleteIbcRelayerConfigProposal) GetChainId

func (*MultichainDeleteIbcRelayerConfigProposal) GetConnectionType

func (*MultichainDeleteIbcRelayerConfigProposal) GetDescription

func (*MultichainDeleteIbcRelayerConfigProposal) GetTitle

func (*MultichainDeleteIbcRelayerConfigProposal) Marshal

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

func (*MultichainDeleteIbcRelayerConfigProposal) MarshalTo

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

func (*MultichainDeleteIbcRelayerConfigProposal) MarshalToSizedBuffer

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

func (*MultichainDeleteIbcRelayerConfigProposal) ProposalRoute

func (*MultichainDeleteIbcRelayerConfigProposal) ProposalType

func (*MultichainDeleteIbcRelayerConfigProposal) ProtoMessage

func (*MultichainDeleteIbcRelayerConfigProposal) Reset

func (*MultichainDeleteIbcRelayerConfigProposal) Size

func (*MultichainDeleteIbcRelayerConfigProposal) String

func (*MultichainDeleteIbcRelayerConfigProposal) Unmarshal

func (*MultichainDeleteIbcRelayerConfigProposal) ValidateBasic

func (*MultichainDeleteIbcRelayerConfigProposal) XXX_DiscardUnknown

func (m *MultichainDeleteIbcRelayerConfigProposal) XXX_DiscardUnknown()

func (*MultichainDeleteIbcRelayerConfigProposal) XXX_Marshal

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

func (*MultichainDeleteIbcRelayerConfigProposal) XXX_Merge

func (*MultichainDeleteIbcRelayerConfigProposal) XXX_Size

func (*MultichainDeleteIbcRelayerConfigProposal) XXX_Unmarshal

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

type MultichainUpdateChainConfigProposal

type MultichainUpdateChainConfigProposal 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"`
	ChainConfig *ChainConfig `protobuf:"bytes,3,opt,name=chainConfig,proto3" json:"chainConfig,omitempty"`
}

func (*MultichainUpdateChainConfigProposal) Descriptor

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

func (*MultichainUpdateChainConfigProposal) GetChainConfig

func (m *MultichainUpdateChainConfigProposal) GetChainConfig() *ChainConfig

func (*MultichainUpdateChainConfigProposal) GetDescription

func (m *MultichainUpdateChainConfigProposal) GetDescription() string

func (*MultichainUpdateChainConfigProposal) GetTitle

func (*MultichainUpdateChainConfigProposal) Marshal

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

func (*MultichainUpdateChainConfigProposal) MarshalTo

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

func (*MultichainUpdateChainConfigProposal) MarshalToSizedBuffer

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

func (*MultichainUpdateChainConfigProposal) ProposalRoute

func (p *MultichainUpdateChainConfigProposal) ProposalRoute() string

func (*MultichainUpdateChainConfigProposal) ProposalType

func (p *MultichainUpdateChainConfigProposal) ProposalType() string

func (*MultichainUpdateChainConfigProposal) ProtoMessage

func (*MultichainUpdateChainConfigProposal) ProtoMessage()

func (*MultichainUpdateChainConfigProposal) Reset

func (*MultichainUpdateChainConfigProposal) Size

func (*MultichainUpdateChainConfigProposal) String

func (*MultichainUpdateChainConfigProposal) Unmarshal

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

func (*MultichainUpdateChainConfigProposal) ValidateBasic

func (p *MultichainUpdateChainConfigProposal) ValidateBasic() error

func (*MultichainUpdateChainConfigProposal) XXX_DiscardUnknown

func (m *MultichainUpdateChainConfigProposal) XXX_DiscardUnknown()

func (*MultichainUpdateChainConfigProposal) XXX_Marshal

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

func (*MultichainUpdateChainConfigProposal) XXX_Merge

func (*MultichainUpdateChainConfigProposal) XXX_Size

func (*MultichainUpdateChainConfigProposal) XXX_Unmarshal

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

type MultichainUpdateContractConfigProposal

type MultichainUpdateContractConfigProposal 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"`
	ContractConfig *ContractConfig `protobuf:"bytes,3,opt,name=contractConfig,proto3" json:"contractConfig,omitempty"`
}

func (*MultichainUpdateContractConfigProposal) Descriptor

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

func (*MultichainUpdateContractConfigProposal) GetContractConfig

func (*MultichainUpdateContractConfigProposal) GetDescription

func (m *MultichainUpdateContractConfigProposal) GetDescription() string

func (*MultichainUpdateContractConfigProposal) GetTitle

func (*MultichainUpdateContractConfigProposal) Marshal

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

func (*MultichainUpdateContractConfigProposal) MarshalTo

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

func (*MultichainUpdateContractConfigProposal) MarshalToSizedBuffer

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

func (*MultichainUpdateContractConfigProposal) ProposalRoute

func (*MultichainUpdateContractConfigProposal) ProposalType

func (*MultichainUpdateContractConfigProposal) ProtoMessage

func (*MultichainUpdateContractConfigProposal) Reset

func (*MultichainUpdateContractConfigProposal) Size

func (*MultichainUpdateContractConfigProposal) String

func (*MultichainUpdateContractConfigProposal) Unmarshal

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

func (*MultichainUpdateContractConfigProposal) ValidateBasic

func (p *MultichainUpdateContractConfigProposal) ValidateBasic() error

func (*MultichainUpdateContractConfigProposal) XXX_DiscardUnknown

func (m *MultichainUpdateContractConfigProposal) XXX_DiscardUnknown()

func (*MultichainUpdateContractConfigProposal) XXX_Marshal

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

func (*MultichainUpdateContractConfigProposal) XXX_Merge

func (*MultichainUpdateContractConfigProposal) XXX_Size

func (*MultichainUpdateContractConfigProposal) XXX_Unmarshal

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

type MultichainUpdateIbcRelayerConfigProposal

type MultichainUpdateIbcRelayerConfigProposal 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"`
	IbcRelayerConfig *IbcRelayerConfig `protobuf:"bytes,3,opt,name=ibcRelayerConfig,proto3" json:"ibcRelayerConfig,omitempty"`
}

func (*MultichainUpdateIbcRelayerConfigProposal) Descriptor

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

func (*MultichainUpdateIbcRelayerConfigProposal) GetDescription

func (*MultichainUpdateIbcRelayerConfigProposal) GetIbcRelayerConfig

func (*MultichainUpdateIbcRelayerConfigProposal) GetTitle

func (*MultichainUpdateIbcRelayerConfigProposal) Marshal

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

func (*MultichainUpdateIbcRelayerConfigProposal) MarshalTo

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

func (*MultichainUpdateIbcRelayerConfigProposal) MarshalToSizedBuffer

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

func (*MultichainUpdateIbcRelayerConfigProposal) ProposalRoute

func (*MultichainUpdateIbcRelayerConfigProposal) ProposalType

func (*MultichainUpdateIbcRelayerConfigProposal) ProtoMessage

func (*MultichainUpdateIbcRelayerConfigProposal) Reset

func (*MultichainUpdateIbcRelayerConfigProposal) Size

func (*MultichainUpdateIbcRelayerConfigProposal) String

func (*MultichainUpdateIbcRelayerConfigProposal) Unmarshal

func (*MultichainUpdateIbcRelayerConfigProposal) ValidateBasic

func (*MultichainUpdateIbcRelayerConfigProposal) XXX_DiscardUnknown

func (m *MultichainUpdateIbcRelayerConfigProposal) XXX_DiscardUnknown()

func (*MultichainUpdateIbcRelayerConfigProposal) XXX_Marshal

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

func (*MultichainUpdateIbcRelayerConfigProposal) XXX_Merge

func (*MultichainUpdateIbcRelayerConfigProposal) XXX_Size

func (*MultichainUpdateIbcRelayerConfigProposal) XXX_Unmarshal

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

type NonceObservedStatus

type NonceObservedStatus struct {
	ChainId         string `protobuf:"bytes,1,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ContractAddress string `protobuf:"bytes,2,opt,name=contract_address,json=contractAddress,proto3" json:"contract_address,omitempty"`
	Nonce           uint64 `protobuf:"varint,3,opt,name=nonce,proto3" json:"nonce,omitempty"`
	IsObserved      bool   `protobuf:"varint,4,opt,name=is_observed,json=isObserved,proto3" json:"is_observed,omitempty"`
}

func (*NonceObservedStatus) Descriptor

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

func (*NonceObservedStatus) GetChainId

func (m *NonceObservedStatus) GetChainId() string

func (*NonceObservedStatus) GetContractAddress

func (m *NonceObservedStatus) GetContractAddress() string

func (*NonceObservedStatus) GetIsObserved

func (m *NonceObservedStatus) GetIsObserved() bool

func (*NonceObservedStatus) GetNonce

func (m *NonceObservedStatus) GetNonce() uint64

func (*NonceObservedStatus) Marshal

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

func (*NonceObservedStatus) MarshalTo

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

func (*NonceObservedStatus) MarshalToSizedBuffer

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

func (*NonceObservedStatus) ProtoMessage

func (*NonceObservedStatus) ProtoMessage()

func (*NonceObservedStatus) Reset

func (m *NonceObservedStatus) Reset()

func (*NonceObservedStatus) Size

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

func (*NonceObservedStatus) String

func (m *NonceObservedStatus) String() string

func (*NonceObservedStatus) Unmarshal

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

func (*NonceObservedStatus) XXX_DiscardUnknown

func (m *NonceObservedStatus) XXX_DiscardUnknown()

func (*NonceObservedStatus) XXX_Marshal

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

func (*NonceObservedStatus) XXX_Merge

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

func (*NonceObservedStatus) XXX_Size

func (m *NonceObservedStatus) XXX_Size() int

func (*NonceObservedStatus) XXX_Unmarshal

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

type OracleKeeper

type OracleKeeper interface {
}

type Params

type Params struct {
	RouterAdmin string `protobuf:"bytes,1,opt,name=router_admin,json=routerAdmin,proto3" json:"router_admin,omitempty"`
}

Params defines the parameters for the module.

func DefaultParams

func DefaultParams() Params

DefaultParams returns a default set of parameters

func NewParams

func NewParams(
	routerAdmin string,
) Params

NewParams creates a new Params instance

func (*Params) Descriptor

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

func (*Params) GetRouterAdmin

func (m *Params) GetRouterAdmin() string

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 (p Params) String() string

String implements the Stringer interface.

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 QueryAllChainConfigRequest

type QueryAllChainConfigRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllChainConfigRequest) Descriptor

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

func (*QueryAllChainConfigRequest) GetPagination

func (m *QueryAllChainConfigRequest) GetPagination() *query.PageRequest

func (*QueryAllChainConfigRequest) Marshal

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

func (*QueryAllChainConfigRequest) MarshalTo

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

func (*QueryAllChainConfigRequest) MarshalToSizedBuffer

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

func (*QueryAllChainConfigRequest) ProtoMessage

func (*QueryAllChainConfigRequest) ProtoMessage()

func (*QueryAllChainConfigRequest) Reset

func (m *QueryAllChainConfigRequest) Reset()

func (*QueryAllChainConfigRequest) Size

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

func (*QueryAllChainConfigRequest) String

func (m *QueryAllChainConfigRequest) String() string

func (*QueryAllChainConfigRequest) Unmarshal

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

func (*QueryAllChainConfigRequest) XXX_DiscardUnknown

func (m *QueryAllChainConfigRequest) XXX_DiscardUnknown()

func (*QueryAllChainConfigRequest) XXX_Marshal

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

func (*QueryAllChainConfigRequest) XXX_Merge

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

func (*QueryAllChainConfigRequest) XXX_Size

func (m *QueryAllChainConfigRequest) XXX_Size() int

func (*QueryAllChainConfigRequest) XXX_Unmarshal

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

type QueryAllChainConfigResponse

type QueryAllChainConfigResponse struct {
	ChainConfig []ChainConfig       `protobuf:"bytes,1,rep,name=chainConfig,proto3" json:"chainConfig"`
	Pagination  *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllChainConfigResponse) Descriptor

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

func (*QueryAllChainConfigResponse) GetChainConfig

func (m *QueryAllChainConfigResponse) GetChainConfig() []ChainConfig

func (*QueryAllChainConfigResponse) GetPagination

func (m *QueryAllChainConfigResponse) GetPagination() *query.PageResponse

func (*QueryAllChainConfigResponse) Marshal

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

func (*QueryAllChainConfigResponse) MarshalTo

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

func (*QueryAllChainConfigResponse) MarshalToSizedBuffer

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

func (*QueryAllChainConfigResponse) ProtoMessage

func (*QueryAllChainConfigResponse) ProtoMessage()

func (*QueryAllChainConfigResponse) Reset

func (m *QueryAllChainConfigResponse) Reset()

func (*QueryAllChainConfigResponse) Size

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

func (*QueryAllChainConfigResponse) String

func (m *QueryAllChainConfigResponse) String() string

func (*QueryAllChainConfigResponse) Unmarshal

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

func (*QueryAllChainConfigResponse) XXX_DiscardUnknown

func (m *QueryAllChainConfigResponse) XXX_DiscardUnknown()

func (*QueryAllChainConfigResponse) XXX_Marshal

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

func (*QueryAllChainConfigResponse) XXX_Merge

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

func (*QueryAllChainConfigResponse) XXX_Size

func (m *QueryAllChainConfigResponse) XXX_Size() int

func (*QueryAllChainConfigResponse) XXX_Unmarshal

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

type QueryAllContractConfigByChainIdRequest

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

func (*QueryAllContractConfigByChainIdRequest) Descriptor

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

func (*QueryAllContractConfigByChainIdRequest) GetChainId

func (*QueryAllContractConfigByChainIdRequest) Marshal

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

func (*QueryAllContractConfigByChainIdRequest) MarshalTo

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

func (*QueryAllContractConfigByChainIdRequest) MarshalToSizedBuffer

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

func (*QueryAllContractConfigByChainIdRequest) ProtoMessage

func (*QueryAllContractConfigByChainIdRequest) Reset

func (*QueryAllContractConfigByChainIdRequest) Size

func (*QueryAllContractConfigByChainIdRequest) String

func (*QueryAllContractConfigByChainIdRequest) Unmarshal

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

func (*QueryAllContractConfigByChainIdRequest) XXX_DiscardUnknown

func (m *QueryAllContractConfigByChainIdRequest) XXX_DiscardUnknown()

func (*QueryAllContractConfigByChainIdRequest) XXX_Marshal

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

func (*QueryAllContractConfigByChainIdRequest) XXX_Merge

func (*QueryAllContractConfigByChainIdRequest) XXX_Size

func (*QueryAllContractConfigByChainIdRequest) XXX_Unmarshal

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

type QueryAllContractConfigByChainIdResponse

type QueryAllContractConfigByChainIdResponse struct {
	ContractConfig []ContractConfig `protobuf:"bytes,1,rep,name=contractConfig,proto3" json:"contractConfig"`
}

func (*QueryAllContractConfigByChainIdResponse) Descriptor

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

func (*QueryAllContractConfigByChainIdResponse) GetContractConfig

func (*QueryAllContractConfigByChainIdResponse) Marshal

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

func (*QueryAllContractConfigByChainIdResponse) MarshalTo

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

func (*QueryAllContractConfigByChainIdResponse) MarshalToSizedBuffer

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

func (*QueryAllContractConfigByChainIdResponse) ProtoMessage

func (*QueryAllContractConfigByChainIdResponse) Reset

func (*QueryAllContractConfigByChainIdResponse) Size

func (*QueryAllContractConfigByChainIdResponse) String

func (*QueryAllContractConfigByChainIdResponse) Unmarshal

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

func (*QueryAllContractConfigByChainIdResponse) XXX_DiscardUnknown

func (m *QueryAllContractConfigByChainIdResponse) XXX_DiscardUnknown()

func (*QueryAllContractConfigByChainIdResponse) XXX_Marshal

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

func (*QueryAllContractConfigByChainIdResponse) XXX_Merge

func (*QueryAllContractConfigByChainIdResponse) XXX_Size

func (*QueryAllContractConfigByChainIdResponse) XXX_Unmarshal

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

type QueryAllContractConfigRequest

type QueryAllContractConfigRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllContractConfigRequest) Descriptor

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

func (*QueryAllContractConfigRequest) GetPagination

func (m *QueryAllContractConfigRequest) GetPagination() *query.PageRequest

func (*QueryAllContractConfigRequest) Marshal

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

func (*QueryAllContractConfigRequest) MarshalTo

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

func (*QueryAllContractConfigRequest) MarshalToSizedBuffer

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

func (*QueryAllContractConfigRequest) ProtoMessage

func (*QueryAllContractConfigRequest) ProtoMessage()

func (*QueryAllContractConfigRequest) Reset

func (m *QueryAllContractConfigRequest) Reset()

func (*QueryAllContractConfigRequest) Size

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

func (*QueryAllContractConfigRequest) String

func (*QueryAllContractConfigRequest) Unmarshal

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

func (*QueryAllContractConfigRequest) XXX_DiscardUnknown

func (m *QueryAllContractConfigRequest) XXX_DiscardUnknown()

func (*QueryAllContractConfigRequest) XXX_Marshal

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

func (*QueryAllContractConfigRequest) XXX_Merge

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

func (*QueryAllContractConfigRequest) XXX_Size

func (m *QueryAllContractConfigRequest) XXX_Size() int

func (*QueryAllContractConfigRequest) XXX_Unmarshal

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

type QueryAllContractConfigResponse

type QueryAllContractConfigResponse struct {
	ContractConfig []ContractConfig    `protobuf:"bytes,1,rep,name=contractConfig,proto3" json:"contractConfig"`
	Pagination     *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllContractConfigResponse) Descriptor

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

func (*QueryAllContractConfigResponse) GetContractConfig

func (m *QueryAllContractConfigResponse) GetContractConfig() []ContractConfig

func (*QueryAllContractConfigResponse) GetPagination

func (*QueryAllContractConfigResponse) Marshal

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

func (*QueryAllContractConfigResponse) MarshalTo

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

func (*QueryAllContractConfigResponse) MarshalToSizedBuffer

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

func (*QueryAllContractConfigResponse) ProtoMessage

func (*QueryAllContractConfigResponse) ProtoMessage()

func (*QueryAllContractConfigResponse) Reset

func (m *QueryAllContractConfigResponse) Reset()

func (*QueryAllContractConfigResponse) Size

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

func (*QueryAllContractConfigResponse) String

func (*QueryAllContractConfigResponse) Unmarshal

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

func (*QueryAllContractConfigResponse) XXX_DiscardUnknown

func (m *QueryAllContractConfigResponse) XXX_DiscardUnknown()

func (*QueryAllContractConfigResponse) XXX_Marshal

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

func (*QueryAllContractConfigResponse) XXX_Merge

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

func (*QueryAllContractConfigResponse) XXX_Size

func (m *QueryAllContractConfigResponse) XXX_Size() int

func (*QueryAllContractConfigResponse) XXX_Unmarshal

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

type QueryAllIbcRelayerConfigRequest

type QueryAllIbcRelayerConfigRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllIbcRelayerConfigRequest) Descriptor

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

func (*QueryAllIbcRelayerConfigRequest) GetPagination

func (*QueryAllIbcRelayerConfigRequest) Marshal

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

func (*QueryAllIbcRelayerConfigRequest) MarshalTo

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

func (*QueryAllIbcRelayerConfigRequest) MarshalToSizedBuffer

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

func (*QueryAllIbcRelayerConfigRequest) ProtoMessage

func (*QueryAllIbcRelayerConfigRequest) ProtoMessage()

func (*QueryAllIbcRelayerConfigRequest) Reset

func (*QueryAllIbcRelayerConfigRequest) Size

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

func (*QueryAllIbcRelayerConfigRequest) String

func (*QueryAllIbcRelayerConfigRequest) Unmarshal

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

func (*QueryAllIbcRelayerConfigRequest) XXX_DiscardUnknown

func (m *QueryAllIbcRelayerConfigRequest) XXX_DiscardUnknown()

func (*QueryAllIbcRelayerConfigRequest) XXX_Marshal

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

func (*QueryAllIbcRelayerConfigRequest) XXX_Merge

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

func (*QueryAllIbcRelayerConfigRequest) XXX_Size

func (m *QueryAllIbcRelayerConfigRequest) XXX_Size() int

func (*QueryAllIbcRelayerConfigRequest) XXX_Unmarshal

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

type QueryAllIbcRelayerConfigResponse

type QueryAllIbcRelayerConfigResponse struct {
	RelayerConfig []IbcRelayerConfig  `protobuf:"bytes,1,rep,name=relayerConfig,proto3" json:"relayerConfig"`
	Pagination    *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllIbcRelayerConfigResponse) Descriptor

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

func (*QueryAllIbcRelayerConfigResponse) GetPagination

func (*QueryAllIbcRelayerConfigResponse) GetRelayerConfig

func (m *QueryAllIbcRelayerConfigResponse) GetRelayerConfig() []IbcRelayerConfig

func (*QueryAllIbcRelayerConfigResponse) Marshal

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

func (*QueryAllIbcRelayerConfigResponse) MarshalTo

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

func (*QueryAllIbcRelayerConfigResponse) MarshalToSizedBuffer

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

func (*QueryAllIbcRelayerConfigResponse) ProtoMessage

func (*QueryAllIbcRelayerConfigResponse) ProtoMessage()

func (*QueryAllIbcRelayerConfigResponse) Reset

func (*QueryAllIbcRelayerConfigResponse) Size

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

func (*QueryAllIbcRelayerConfigResponse) String

func (*QueryAllIbcRelayerConfigResponse) Unmarshal

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

func (*QueryAllIbcRelayerConfigResponse) XXX_DiscardUnknown

func (m *QueryAllIbcRelayerConfigResponse) XXX_DiscardUnknown()

func (*QueryAllIbcRelayerConfigResponse) XXX_Marshal

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

func (*QueryAllIbcRelayerConfigResponse) XXX_Merge

func (*QueryAllIbcRelayerConfigResponse) XXX_Size

func (m *QueryAllIbcRelayerConfigResponse) XXX_Size() int

func (*QueryAllIbcRelayerConfigResponse) XXX_Unmarshal

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

type QueryAllNonceObservedStatusRequest

type QueryAllNonceObservedStatusRequest struct {
	ChainId         string             `protobuf:"bytes,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	ContractAddress string             `protobuf:"bytes,2,opt,name=contract_address,json=contractAddress,proto3" json:"contract_address,omitempty"`
	Pagination      *query.PageRequest `protobuf:"bytes,3,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllNonceObservedStatusRequest) Descriptor

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

func (*QueryAllNonceObservedStatusRequest) GetChainId

func (*QueryAllNonceObservedStatusRequest) GetContractAddress

func (m *QueryAllNonceObservedStatusRequest) GetContractAddress() string

func (*QueryAllNonceObservedStatusRequest) GetPagination

func (*QueryAllNonceObservedStatusRequest) Marshal

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

func (*QueryAllNonceObservedStatusRequest) MarshalTo

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

func (*QueryAllNonceObservedStatusRequest) MarshalToSizedBuffer

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

func (*QueryAllNonceObservedStatusRequest) ProtoMessage

func (*QueryAllNonceObservedStatusRequest) ProtoMessage()

func (*QueryAllNonceObservedStatusRequest) Reset

func (*QueryAllNonceObservedStatusRequest) Size

func (*QueryAllNonceObservedStatusRequest) String

func (*QueryAllNonceObservedStatusRequest) Unmarshal

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

func (*QueryAllNonceObservedStatusRequest) XXX_DiscardUnknown

func (m *QueryAllNonceObservedStatusRequest) XXX_DiscardUnknown()

func (*QueryAllNonceObservedStatusRequest) XXX_Marshal

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

func (*QueryAllNonceObservedStatusRequest) XXX_Merge

func (*QueryAllNonceObservedStatusRequest) XXX_Size

func (*QueryAllNonceObservedStatusRequest) XXX_Unmarshal

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

type QueryAllNonceObservedStatusResponse

type QueryAllNonceObservedStatusResponse struct {
	NonceObservedStatus []NonceObservedStatus `protobuf:"bytes,1,rep,name=nonceObservedStatus,proto3" json:"nonceObservedStatus"`
	Pagination          *query.PageResponse   `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllNonceObservedStatusResponse) Descriptor

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

func (*QueryAllNonceObservedStatusResponse) GetNonceObservedStatus

func (m *QueryAllNonceObservedStatusResponse) GetNonceObservedStatus() []NonceObservedStatus

func (*QueryAllNonceObservedStatusResponse) GetPagination

func (*QueryAllNonceObservedStatusResponse) Marshal

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

func (*QueryAllNonceObservedStatusResponse) MarshalTo

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

func (*QueryAllNonceObservedStatusResponse) MarshalToSizedBuffer

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

func (*QueryAllNonceObservedStatusResponse) ProtoMessage

func (*QueryAllNonceObservedStatusResponse) ProtoMessage()

func (*QueryAllNonceObservedStatusResponse) Reset

func (*QueryAllNonceObservedStatusResponse) Size

func (*QueryAllNonceObservedStatusResponse) String

func (*QueryAllNonceObservedStatusResponse) Unmarshal

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

func (*QueryAllNonceObservedStatusResponse) XXX_DiscardUnknown

func (m *QueryAllNonceObservedStatusResponse) XXX_DiscardUnknown()

func (*QueryAllNonceObservedStatusResponse) XXX_Marshal

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

func (*QueryAllNonceObservedStatusResponse) XXX_Merge

func (*QueryAllNonceObservedStatusResponse) XXX_Size

func (*QueryAllNonceObservedStatusResponse) XXX_Unmarshal

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

type QueryClient

type QueryClient interface {
	// Parameters queries the parameters of the module.
	Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error)
	// Queries a ChainConfig by chain_id.
	ChainConfig(ctx context.Context, in *QueryGetChainConfigRequest, opts ...grpc.CallOption) (*QueryGetChainConfigResponse, error)
	// Queries a list of ChainConfig items.
	ChainConfigAll(ctx context.Context, in *QueryAllChainConfigRequest, opts ...grpc.CallOption) (*QueryAllChainConfigResponse, error)
	// Queries a ContractConfig by chain_id and address.
	ContractConfig(ctx context.Context, in *QueryGetContractConfigRequest, opts ...grpc.CallOption) (*QueryGetContractConfigResponse, error)
	// Queries a list of IbcRelayerConfig items.
	IbcRelayerConfig(ctx context.Context, in *QueryGetIbcRelayerConfigRequest, opts ...grpc.CallOption) (*QueryGetIbcRelayerConfigResponse, error)
	IbcRelayerConfigAll(ctx context.Context, in *QueryAllIbcRelayerConfigRequest, opts ...grpc.CallOption) (*QueryAllIbcRelayerConfigResponse, error)
	// Queries a ContractConfig by chain_id.
	ContractConfigByChainId(ctx context.Context, in *QueryAllContractConfigByChainIdRequest, opts ...grpc.CallOption) (*QueryAllContractConfigByChainIdResponse, error)
	// Queries a list of ContractConfig items.
	ContractConfigAll(ctx context.Context, in *QueryAllContractConfigRequest, opts ...grpc.CallOption) (*QueryAllContractConfigResponse, error)
	// Queries a list of NonceObservedStatus items.
	NonceObservedStatus(ctx context.Context, in *QueryGetNonceObservedStatusRequest, opts ...grpc.CallOption) (*QueryGetNonceObservedStatusResponse, error)
	NonceObservedStatusAll(ctx context.Context, in *QueryAllNonceObservedStatusRequest, opts ...grpc.CallOption) (*QueryAllNonceObservedStatusResponse, error)
}

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 QueryGetChainConfigRequest

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

func (*QueryGetChainConfigRequest) Descriptor

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

func (*QueryGetChainConfigRequest) GetChainId

func (m *QueryGetChainConfigRequest) GetChainId() string

func (*QueryGetChainConfigRequest) Marshal

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

func (*QueryGetChainConfigRequest) MarshalTo

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

func (*QueryGetChainConfigRequest) MarshalToSizedBuffer

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

func (*QueryGetChainConfigRequest) ProtoMessage

func (*QueryGetChainConfigRequest) ProtoMessage()

func (*QueryGetChainConfigRequest) Reset

func (m *QueryGetChainConfigRequest) Reset()

func (*QueryGetChainConfigRequest) Size

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

func (*QueryGetChainConfigRequest) String

func (m *QueryGetChainConfigRequest) String() string

func (*QueryGetChainConfigRequest) Unmarshal

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

func (*QueryGetChainConfigRequest) XXX_DiscardUnknown

func (m *QueryGetChainConfigRequest) XXX_DiscardUnknown()

func (*QueryGetChainConfigRequest) XXX_Marshal

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

func (*QueryGetChainConfigRequest) XXX_Merge

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

func (*QueryGetChainConfigRequest) XXX_Size

func (m *QueryGetChainConfigRequest) XXX_Size() int

func (*QueryGetChainConfigRequest) XXX_Unmarshal

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

type QueryGetChainConfigResponse

type QueryGetChainConfigResponse struct {
	ChainConfig ChainConfig `protobuf:"bytes,1,opt,name=chainConfig,proto3" json:"chainConfig"`
}

func (*QueryGetChainConfigResponse) Descriptor

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

func (*QueryGetChainConfigResponse) GetChainConfig

func (m *QueryGetChainConfigResponse) GetChainConfig() ChainConfig

func (*QueryGetChainConfigResponse) Marshal

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

func (*QueryGetChainConfigResponse) MarshalTo

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

func (*QueryGetChainConfigResponse) MarshalToSizedBuffer

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

func (*QueryGetChainConfigResponse) ProtoMessage

func (*QueryGetChainConfigResponse) ProtoMessage()

func (*QueryGetChainConfigResponse) Reset

func (m *QueryGetChainConfigResponse) Reset()

func (*QueryGetChainConfigResponse) Size

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

func (*QueryGetChainConfigResponse) String

func (m *QueryGetChainConfigResponse) String() string

func (*QueryGetChainConfigResponse) Unmarshal

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

func (*QueryGetChainConfigResponse) XXX_DiscardUnknown

func (m *QueryGetChainConfigResponse) XXX_DiscardUnknown()

func (*QueryGetChainConfigResponse) XXX_Marshal

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

func (*QueryGetChainConfigResponse) XXX_Merge

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

func (*QueryGetChainConfigResponse) XXX_Size

func (m *QueryGetChainConfigResponse) XXX_Size() int

func (*QueryGetChainConfigResponse) XXX_Unmarshal

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

type QueryGetContractConfigRequest

type QueryGetContractConfigRequest struct {
	ChainId         string `protobuf:"bytes,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	ContractAddress string `protobuf:"bytes,2,opt,name=contract_address,json=contractAddress,proto3" json:"contract_address,omitempty"`
}

func (*QueryGetContractConfigRequest) Descriptor

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

func (*QueryGetContractConfigRequest) GetChainId

func (m *QueryGetContractConfigRequest) GetChainId() string

func (*QueryGetContractConfigRequest) GetContractAddress

func (m *QueryGetContractConfigRequest) GetContractAddress() string

func (*QueryGetContractConfigRequest) Marshal

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

func (*QueryGetContractConfigRequest) MarshalTo

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

func (*QueryGetContractConfigRequest) MarshalToSizedBuffer

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

func (*QueryGetContractConfigRequest) ProtoMessage

func (*QueryGetContractConfigRequest) ProtoMessage()

func (*QueryGetContractConfigRequest) Reset

func (m *QueryGetContractConfigRequest) Reset()

func (*QueryGetContractConfigRequest) Size

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

func (*QueryGetContractConfigRequest) String

func (*QueryGetContractConfigRequest) Unmarshal

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

func (*QueryGetContractConfigRequest) XXX_DiscardUnknown

func (m *QueryGetContractConfigRequest) XXX_DiscardUnknown()

func (*QueryGetContractConfigRequest) XXX_Marshal

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

func (*QueryGetContractConfigRequest) XXX_Merge

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

func (*QueryGetContractConfigRequest) XXX_Size

func (m *QueryGetContractConfigRequest) XXX_Size() int

func (*QueryGetContractConfigRequest) XXX_Unmarshal

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

type QueryGetContractConfigResponse

type QueryGetContractConfigResponse struct {
	ContractConfig ContractConfig `protobuf:"bytes,1,opt,name=contractConfig,proto3" json:"contractConfig"`
}

func (*QueryGetContractConfigResponse) Descriptor

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

func (*QueryGetContractConfigResponse) GetContractConfig

func (m *QueryGetContractConfigResponse) GetContractConfig() ContractConfig

func (*QueryGetContractConfigResponse) Marshal

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

func (*QueryGetContractConfigResponse) MarshalTo

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

func (*QueryGetContractConfigResponse) MarshalToSizedBuffer

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

func (*QueryGetContractConfigResponse) ProtoMessage

func (*QueryGetContractConfigResponse) ProtoMessage()

func (*QueryGetContractConfigResponse) Reset

func (m *QueryGetContractConfigResponse) Reset()

func (*QueryGetContractConfigResponse) Size

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

func (*QueryGetContractConfigResponse) String

func (*QueryGetContractConfigResponse) Unmarshal

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

func (*QueryGetContractConfigResponse) XXX_DiscardUnknown

func (m *QueryGetContractConfigResponse) XXX_DiscardUnknown()

func (*QueryGetContractConfigResponse) XXX_Marshal

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

func (*QueryGetContractConfigResponse) XXX_Merge

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

func (*QueryGetContractConfigResponse) XXX_Size

func (m *QueryGetContractConfigResponse) XXX_Size() int

func (*QueryGetContractConfigResponse) XXX_Unmarshal

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

type QueryGetIbcRelayerConfigRequest

type QueryGetIbcRelayerConfigRequest struct {
	ChainId        string                   `protobuf:"bytes,1,opt,name=chainId,proto3" json:"chainId,omitempty"`
	ConnectionType IbcRelayerConnectionType `` /* 150-byte string literal not displayed */
}

func (*QueryGetIbcRelayerConfigRequest) Descriptor

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

func (*QueryGetIbcRelayerConfigRequest) GetChainId

func (m *QueryGetIbcRelayerConfigRequest) GetChainId() string

func (*QueryGetIbcRelayerConfigRequest) GetConnectionType

func (*QueryGetIbcRelayerConfigRequest) Marshal

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

func (*QueryGetIbcRelayerConfigRequest) MarshalTo

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

func (*QueryGetIbcRelayerConfigRequest) MarshalToSizedBuffer

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

func (*QueryGetIbcRelayerConfigRequest) ProtoMessage

func (*QueryGetIbcRelayerConfigRequest) ProtoMessage()

func (*QueryGetIbcRelayerConfigRequest) Reset

func (*QueryGetIbcRelayerConfigRequest) Size

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

func (*QueryGetIbcRelayerConfigRequest) String

func (*QueryGetIbcRelayerConfigRequest) Unmarshal

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

func (*QueryGetIbcRelayerConfigRequest) XXX_DiscardUnknown

func (m *QueryGetIbcRelayerConfigRequest) XXX_DiscardUnknown()

func (*QueryGetIbcRelayerConfigRequest) XXX_Marshal

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

func (*QueryGetIbcRelayerConfigRequest) XXX_Merge

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

func (*QueryGetIbcRelayerConfigRequest) XXX_Size

func (m *QueryGetIbcRelayerConfigRequest) XXX_Size() int

func (*QueryGetIbcRelayerConfigRequest) XXX_Unmarshal

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

type QueryGetIbcRelayerConfigResponse

type QueryGetIbcRelayerConfigResponse struct {
	RelayerConfig IbcRelayerConfig `protobuf:"bytes,1,opt,name=relayerConfig,proto3" json:"relayerConfig"`
}

func (*QueryGetIbcRelayerConfigResponse) Descriptor

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

func (*QueryGetIbcRelayerConfigResponse) GetRelayerConfig

func (m *QueryGetIbcRelayerConfigResponse) GetRelayerConfig() IbcRelayerConfig

func (*QueryGetIbcRelayerConfigResponse) Marshal

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

func (*QueryGetIbcRelayerConfigResponse) MarshalTo

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

func (*QueryGetIbcRelayerConfigResponse) MarshalToSizedBuffer

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

func (*QueryGetIbcRelayerConfigResponse) ProtoMessage

func (*QueryGetIbcRelayerConfigResponse) ProtoMessage()

func (*QueryGetIbcRelayerConfigResponse) Reset

func (*QueryGetIbcRelayerConfigResponse) Size

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

func (*QueryGetIbcRelayerConfigResponse) String

func (*QueryGetIbcRelayerConfigResponse) Unmarshal

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

func (*QueryGetIbcRelayerConfigResponse) XXX_DiscardUnknown

func (m *QueryGetIbcRelayerConfigResponse) XXX_DiscardUnknown()

func (*QueryGetIbcRelayerConfigResponse) XXX_Marshal

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

func (*QueryGetIbcRelayerConfigResponse) XXX_Merge

func (*QueryGetIbcRelayerConfigResponse) XXX_Size

func (m *QueryGetIbcRelayerConfigResponse) XXX_Size() int

func (*QueryGetIbcRelayerConfigResponse) XXX_Unmarshal

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

type QueryGetNonceObservedStatusRequest

type QueryGetNonceObservedStatusRequest struct {
	ChainId         string `protobuf:"bytes,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	ContractAddress string `protobuf:"bytes,2,opt,name=contract_address,json=contractAddress,proto3" json:"contract_address,omitempty"`
	EventNonce      uint64 `protobuf:"varint,3,opt,name=event_nonce,json=eventNonce,proto3" json:"event_nonce,omitempty"`
}

this line is used by starport scaffolding # 3

func (*QueryGetNonceObservedStatusRequest) Descriptor

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

func (*QueryGetNonceObservedStatusRequest) GetChainId

func (*QueryGetNonceObservedStatusRequest) GetContractAddress

func (m *QueryGetNonceObservedStatusRequest) GetContractAddress() string

func (*QueryGetNonceObservedStatusRequest) GetEventNonce

func (m *QueryGetNonceObservedStatusRequest) GetEventNonce() uint64

func (*QueryGetNonceObservedStatusRequest) Marshal

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

func (*QueryGetNonceObservedStatusRequest) MarshalTo

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

func (*QueryGetNonceObservedStatusRequest) MarshalToSizedBuffer

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

func (*QueryGetNonceObservedStatusRequest) ProtoMessage

func (*QueryGetNonceObservedStatusRequest) ProtoMessage()

func (*QueryGetNonceObservedStatusRequest) Reset

func (*QueryGetNonceObservedStatusRequest) Size

func (*QueryGetNonceObservedStatusRequest) String

func (*QueryGetNonceObservedStatusRequest) Unmarshal

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

func (*QueryGetNonceObservedStatusRequest) XXX_DiscardUnknown

func (m *QueryGetNonceObservedStatusRequest) XXX_DiscardUnknown()

func (*QueryGetNonceObservedStatusRequest) XXX_Marshal

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

func (*QueryGetNonceObservedStatusRequest) XXX_Merge

func (*QueryGetNonceObservedStatusRequest) XXX_Size

func (*QueryGetNonceObservedStatusRequest) XXX_Unmarshal

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

type QueryGetNonceObservedStatusResponse

type QueryGetNonceObservedStatusResponse struct {
	NonceObservedStatus NonceObservedStatus `protobuf:"bytes,1,opt,name=nonceObservedStatus,proto3" json:"nonceObservedStatus"`
}

func (*QueryGetNonceObservedStatusResponse) Descriptor

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

func (*QueryGetNonceObservedStatusResponse) GetNonceObservedStatus

func (m *QueryGetNonceObservedStatusResponse) GetNonceObservedStatus() NonceObservedStatus

func (*QueryGetNonceObservedStatusResponse) Marshal

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

func (*QueryGetNonceObservedStatusResponse) MarshalTo

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

func (*QueryGetNonceObservedStatusResponse) MarshalToSizedBuffer

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

func (*QueryGetNonceObservedStatusResponse) ProtoMessage

func (*QueryGetNonceObservedStatusResponse) ProtoMessage()

func (*QueryGetNonceObservedStatusResponse) Reset

func (*QueryGetNonceObservedStatusResponse) Size

func (*QueryGetNonceObservedStatusResponse) String

func (*QueryGetNonceObservedStatusResponse) Unmarshal

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

func (*QueryGetNonceObservedStatusResponse) XXX_DiscardUnknown

func (m *QueryGetNonceObservedStatusResponse) XXX_DiscardUnknown()

func (*QueryGetNonceObservedStatusResponse) XXX_Marshal

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

func (*QueryGetNonceObservedStatusResponse) XXX_Merge

func (*QueryGetNonceObservedStatusResponse) XXX_Size

func (*QueryGetNonceObservedStatusResponse) XXX_Unmarshal

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

type QueryParamsRequest

type QueryParamsRequest struct {
}

QueryParamsRequest is request type for the Query/Params RPC method.

func (*QueryParamsRequest) Descriptor

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

func (*QueryParamsRequest) Marshal

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

func (*QueryParamsRequest) MarshalTo

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

func (*QueryParamsRequest) MarshalToSizedBuffer

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

func (*QueryParamsRequest) ProtoMessage

func (*QueryParamsRequest) ProtoMessage()

func (*QueryParamsRequest) Reset

func (m *QueryParamsRequest) Reset()

func (*QueryParamsRequest) Size

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

func (*QueryParamsRequest) String

func (m *QueryParamsRequest) String() string

func (*QueryParamsRequest) Unmarshal

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

func (*QueryParamsRequest) XXX_DiscardUnknown

func (m *QueryParamsRequest) XXX_DiscardUnknown()

func (*QueryParamsRequest) XXX_Marshal

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

func (*QueryParamsRequest) XXX_Merge

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

func (*QueryParamsRequest) XXX_Size

func (m *QueryParamsRequest) XXX_Size() int

func (*QueryParamsRequest) XXX_Unmarshal

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

type QueryParamsResponse

type QueryParamsResponse struct {
	// params holds all the parameters of this module.
	Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
}

QueryParamsResponse is response type for the Query/Params RPC method.

func (*QueryParamsResponse) Descriptor

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

func (*QueryParamsResponse) GetParams

func (m *QueryParamsResponse) GetParams() Params

func (*QueryParamsResponse) Marshal

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

func (*QueryParamsResponse) MarshalTo

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

func (*QueryParamsResponse) MarshalToSizedBuffer

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

func (*QueryParamsResponse) ProtoMessage

func (*QueryParamsResponse) ProtoMessage()

func (*QueryParamsResponse) Reset

func (m *QueryParamsResponse) Reset()

func (*QueryParamsResponse) Size

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

func (*QueryParamsResponse) String

func (m *QueryParamsResponse) String() string

func (*QueryParamsResponse) Unmarshal

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

func (*QueryParamsResponse) XXX_DiscardUnknown

func (m *QueryParamsResponse) XXX_DiscardUnknown()

func (*QueryParamsResponse) XXX_Marshal

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

func (*QueryParamsResponse) XXX_Merge

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

func (*QueryParamsResponse) XXX_Size

func (m *QueryParamsResponse) XXX_Size() int

func (*QueryParamsResponse) XXX_Unmarshal

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

type QueryServer

type QueryServer interface {
	// Parameters queries the parameters of the module.
	Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error)
	// Queries a ChainConfig by chain_id.
	ChainConfig(context.Context, *QueryGetChainConfigRequest) (*QueryGetChainConfigResponse, error)
	// Queries a list of ChainConfig items.
	ChainConfigAll(context.Context, *QueryAllChainConfigRequest) (*QueryAllChainConfigResponse, error)
	// Queries a ContractConfig by chain_id and address.
	ContractConfig(context.Context, *QueryGetContractConfigRequest) (*QueryGetContractConfigResponse, error)
	// Queries a list of IbcRelayerConfig items.
	IbcRelayerConfig(context.Context, *QueryGetIbcRelayerConfigRequest) (*QueryGetIbcRelayerConfigResponse, error)
	IbcRelayerConfigAll(context.Context, *QueryAllIbcRelayerConfigRequest) (*QueryAllIbcRelayerConfigResponse, error)
	// Queries a ContractConfig by chain_id.
	ContractConfigByChainId(context.Context, *QueryAllContractConfigByChainIdRequest) (*QueryAllContractConfigByChainIdResponse, error)
	// Queries a list of ContractConfig items.
	ContractConfigAll(context.Context, *QueryAllContractConfigRequest) (*QueryAllContractConfigResponse, error)
	// Queries a list of NonceObservedStatus items.
	NonceObservedStatus(context.Context, *QueryGetNonceObservedStatusRequest) (*QueryGetNonceObservedStatusResponse, error)
	NonceObservedStatusAll(context.Context, *QueryAllNonceObservedStatusRequest) (*QueryAllNonceObservedStatusResponse, error)
}

QueryServer is the server API for Query service.

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) ChainConfig

func (*UnimplementedQueryServer) ChainConfigAll

func (*UnimplementedQueryServer) ContractConfig

func (*UnimplementedQueryServer) ContractConfigAll

func (*UnimplementedQueryServer) IbcRelayerConfigAll

func (*UnimplementedQueryServer) Params

Jump to

Keyboard shortcuts

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