types

package
v0.0.0-...-800ad12 Latest Latest
Warning

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

Go to latest
Published: Sep 19, 2025 License: Apache-2.0 Imports: 21 Imported by: 0

Documentation

Overview

Package types defines the core data structures and interfaces for the post dispatch module. This module implements post-dispatch hooks that are executed after a message is dispatched from the mailbox. These hooks can perform various operations such as gas payment processing, merkle tree updates, and other post-processing tasks.

Package types defines the core data structures and interfaces for the post dispatch module. This module implements post-dispatch hooks that are executed after a message is dispatched from the mailbox. These hooks can perform various operations such as gas payment processing, merkle tree updates, and other post-processing tasks.

Index

Constants

View Source
const (
	// SubModuleName is the name of the post dispatch module
	SubModuleName = "post_dispatch"
	// SubModuleId is the unique identifier for this module in the system
	SubModuleId uint8 = 2
)

Module identification constants

View Source
const (
	// POST_DISPATCH_HOOK_TYPE_UNUSED represents an unused or placeholder hook type
	POST_DISPATCH_HOOK_TYPE_UNUSED uint8 = iota
	// POST_DISPATCH_HOOK_TYPE_ROUTING routes post dispatch processing to different hooks based on domain
	POST_DISPATCH_HOOK_TYPE_ROUTING
	// POST_DISPATCH_HOOK_TYPE_AGGREGATION combines multiple post dispatch hooks for processing
	POST_DISPATCH_HOOK_TYPE_AGGREGATION
	// POST_DISPATCH_HOOK_TYPE_MERKLE_TREE updates merkle trees with dispatched message information
	POST_DISPATCH_HOOK_TYPE_MERKLE_TREE
	// POST_DISPATCH_HOOK_TYPE_INTERCHAIN_GAS_PAYMASTER handles interchain gas payment processing
	POST_DISPATCH_HOOK_TYPE_INTERCHAIN_GAS_PAYMASTER
	// POST_DISPATCH_HOOK_TYPE_FALLBACK_ROUTING provides fallback routing for post dispatch hooks
	POST_DISPATCH_HOOK_TYPE_FALLBACK_ROUTING
	// POST_DISPATCH_HOOK_TYPE_ID_AUTH_ISM performs identity authentication using ISMs
	POST_DISPATCH_HOOK_TYPE_ID_AUTH_ISM
	// POST_DISPATCH_HOOK_TYPE_PAUSABLE provides pausable functionality for post dispatch hooks
	POST_DISPATCH_HOOK_TYPE_PAUSABLE
	// POST_DISPATCH_HOOK_TYPE_PROTOCOL_FEE handles protocol fee collection and processing
	POST_DISPATCH_HOOK_TYPE_PROTOCOL_FEE
	// POST_DISPATCH_HOOK_TYPE_LAYER_ZERO_V1 provides LayerZero v1 compatibility
	POST_DISPATCH_HOOK_TYPE_LAYER_ZERO_V1
	// POST_DISPATCH_HOOK_TYPE_RATE_LIMITED implements rate limiting for post dispatch operations
	POST_DISPATCH_HOOK_TYPE_RATE_LIMITED
	// POST_DISPATCH_HOOK_TYPE_ARB_L2_TO_L1 handles Arbitrum L2 to L1 post dispatch processing
	POST_DISPATCH_HOOK_TYPE_ARB_L2_TO_L1
	// POST_DISPATCH_HOOK_TYPE_OP_L2_TO_L1 handles Optimism L2 to L1 post dispatch processing
	POST_DISPATCH_HOOK_TYPE_OP_L2_TO_L1
)

Post Dispatch Hook type constants as defined by the Hyperlane specification. These constants identify different types of post dispatch hooks that can be executed after a message is dispatched from the mailbox.

Variables

View Source
var (
	ErrMailboxDoesNotExist               = errors.Register(SubModuleName, 1, "mailbox does not exist")
	ErrSenderIsNotDesignatedMailbox      = errors.Register(SubModuleName, 2, "sender is not designated mailbox")
	ErrHookDoesNotExistOrIsNotRegistered = errors.Register(SubModuleName, 3, "hook does not exist or isn't registered")
	ErrUnauthorized                      = errors.Register(SubModuleName, 4, "unauthorized")
	ErrInvalidOwner                      = errors.Register(SubModuleName, 5, "invalid owner")
)
View Source
var (
	ErrInvalidLengthEvents        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowEvents          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupEvents = 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 (
	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 (
	ErrInvalidLengthTx        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTx          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	// InterchainGasPaymasterKey is the storage key prefix for Interchain Gas Paymaster (IGP) instances
	InterchainGasPaymasterKey = []byte{SubModuleId, 1}
	// InterchainGasPaymasterConfigsKey is the storage key prefix for IGP gas configurations
	InterchainGasPaymasterConfigsKey = []byte{SubModuleId, 3}
	// MerkleTreeHooksKey is the storage key prefix for Merkle Tree Hook instances
	MerkleTreeHooksKey = []byte{SubModuleId, 4}
	// NoopHooksKey is the storage key prefix for Noop Hook instances
	NoopHooksKey = []byte{SubModuleId, 5}
)

Storage keys for the post dispatch module. These keys are used to store different types of post dispatch hooks and configurations in the state.

View Source
var (
	ErrInvalidLengthTypes        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTypes          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTypes = fmt.Errorf("proto: unexpected end of group")
)
View Source
var Msg_serviceDesc = _Msg_serviceDesc
View Source
var Query_serviceDesc = _Query_serviceDesc
View Source
var TokenExchangeRateScale = math.NewInt(1e10)

TokenExchangeRateScale is the scaling factor used for token exchange rate calculations. This ensures that exchange rates are represented with sufficient precision (10 decimal places).

Functions

func RegisterInterfaces

func RegisterInterfaces(registry types.InterfaceRegistry)

RegisterInterfaces registers the interfaces types with the interface registry.

func RegisterMsgServer

func RegisterMsgServer(s grpc1.Server, srv MsgServer)

func RegisterQueryServer

func RegisterQueryServer(s grpc1.Server, srv QueryServer)

func TreeFromProto

func TreeFromProto(tree *Tree) (*util.MerkleTree, error)

TreeFromProto converts a protobuf Tree structure to a util.MerkleTree. This function validates the tree structure and ensures all branch elements are properly formatted. The protobuf Tree is used for serialization/deserialization, while util.MerkleTree is used for actual merkle tree operations.

Parameters:

  • tree: The protobuf Tree structure to convert

Returns:

  • *util.MerkleTree: The converted merkle tree for operations
  • error: Any validation error that occurred during conversion

Types

type BankKeeper

type BankKeeper interface {
	SendCoinsFromAccountToModule(ctx context.Context, senderAddr sdk.AccAddress, recipientModule string, amt sdk.Coins) error
	SendCoinsFromModuleToAccount(ctx context.Context, senderModule string, recipientAddr sdk.AccAddress, amt sdk.Coins) error
}

type CoreKeeper

type CoreKeeper interface {
	LocalDomain(ctx context.Context, mailboxId util.HexAddress) (uint32, error)
	MailboxIdExists(ctx context.Context, mailboxId util.HexAddress) (bool, error)
	PostDispatchRouter() *util.Router[util.PostDispatchModule]
}

type DestinationGasConfig

type DestinationGasConfig struct {
	// remote_domain ...
	RemoteDomain uint32 `protobuf:"varint,1,opt,name=remote_domain,json=remoteDomain,proto3" json:"remote_domain,omitempty"`
	// gas_oracle ...
	GasOracle *GasOracle `protobuf:"bytes,2,opt,name=gas_oracle,json=gasOracle,proto3" json:"gas_oracle,omitempty"`
	// gas_overhead ...
	GasOverhead cosmossdk_io_math.Int `protobuf:"bytes,3,opt,name=gas_overhead,json=gasOverhead,proto3,customtype=cosmossdk.io/math.Int" json:"gas_overhead"`
}

DestinationGasConfig ...

func (*DestinationGasConfig) Descriptor

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

func (*DestinationGasConfig) Marshal

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

func (*DestinationGasConfig) MarshalTo

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

func (*DestinationGasConfig) MarshalToSizedBuffer

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

func (*DestinationGasConfig) ProtoMessage

func (*DestinationGasConfig) ProtoMessage()

func (*DestinationGasConfig) Reset

func (m *DestinationGasConfig) Reset()

func (*DestinationGasConfig) Size

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

func (*DestinationGasConfig) String

func (m *DestinationGasConfig) String() string

func (*DestinationGasConfig) Unmarshal

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

func (*DestinationGasConfig) XXX_DiscardUnknown

func (m *DestinationGasConfig) XXX_DiscardUnknown()

func (*DestinationGasConfig) XXX_Marshal

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

func (*DestinationGasConfig) XXX_Merge

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

func (*DestinationGasConfig) XXX_Size

func (m *DestinationGasConfig) XXX_Size() int

func (*DestinationGasConfig) XXX_Unmarshal

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

type EventClaimIgp

type EventClaimIgp struct {
	IgpId  github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `` /* 137-byte string literal not displayed */
	Owner  string                                                      `protobuf:"bytes,2,opt,name=owner,proto3" json:"owner,omitempty"`
	Amount string                                                      `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount,omitempty"`
}

EventClaimIgp ...

func (*EventClaimIgp) Descriptor

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

func (*EventClaimIgp) GetAmount

func (m *EventClaimIgp) GetAmount() string

func (*EventClaimIgp) GetOwner

func (m *EventClaimIgp) GetOwner() string

func (*EventClaimIgp) Marshal

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

func (*EventClaimIgp) MarshalTo

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

func (*EventClaimIgp) MarshalToSizedBuffer

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

func (*EventClaimIgp) ProtoMessage

func (*EventClaimIgp) ProtoMessage()

func (*EventClaimIgp) Reset

func (m *EventClaimIgp) Reset()

func (*EventClaimIgp) Size

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

func (*EventClaimIgp) String

func (m *EventClaimIgp) String() string

func (*EventClaimIgp) Unmarshal

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

func (*EventClaimIgp) XXX_DiscardUnknown

func (m *EventClaimIgp) XXX_DiscardUnknown()

func (*EventClaimIgp) XXX_Marshal

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

func (*EventClaimIgp) XXX_Merge

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

func (*EventClaimIgp) XXX_Size

func (m *EventClaimIgp) XXX_Size() int

func (*EventClaimIgp) XXX_Unmarshal

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

type EventCreateIgp

type EventCreateIgp struct {
	IgpId github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `` /* 137-byte string literal not displayed */
	Owner string                                                      `protobuf:"bytes,2,opt,name=owner,proto3" json:"owner,omitempty"`
	Denom string                                                      `protobuf:"bytes,3,opt,name=denom,proto3" json:"denom,omitempty"`
}

EventCreateIgp ...

func (*EventCreateIgp) Descriptor

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

func (*EventCreateIgp) GetDenom

func (m *EventCreateIgp) GetDenom() string

func (*EventCreateIgp) GetOwner

func (m *EventCreateIgp) GetOwner() string

func (*EventCreateIgp) Marshal

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

func (*EventCreateIgp) MarshalTo

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

func (*EventCreateIgp) MarshalToSizedBuffer

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

func (*EventCreateIgp) ProtoMessage

func (*EventCreateIgp) ProtoMessage()

func (*EventCreateIgp) Reset

func (m *EventCreateIgp) Reset()

func (*EventCreateIgp) Size

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

func (*EventCreateIgp) String

func (m *EventCreateIgp) String() string

func (*EventCreateIgp) Unmarshal

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

func (*EventCreateIgp) XXX_DiscardUnknown

func (m *EventCreateIgp) XXX_DiscardUnknown()

func (*EventCreateIgp) XXX_Marshal

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

func (*EventCreateIgp) XXX_Merge

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

func (*EventCreateIgp) XXX_Size

func (m *EventCreateIgp) XXX_Size() int

func (*EventCreateIgp) XXX_Unmarshal

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

type EventCreateMerkleTreeHook

type EventCreateMerkleTreeHook struct {
	// id ...
	MerkleTreeHookId github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `` /* 174-byte string literal not displayed */
	// mailbox_id ...
	MailboxId github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `` /* 149-byte string literal not displayed */
	Owner     string                                                      `protobuf:"bytes,3,opt,name=owner,proto3" json:"owner,omitempty"`
}

EventCreateMerkleTreeHook ...

func (*EventCreateMerkleTreeHook) Descriptor

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

func (*EventCreateMerkleTreeHook) GetOwner

func (m *EventCreateMerkleTreeHook) GetOwner() string

func (*EventCreateMerkleTreeHook) Marshal

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

func (*EventCreateMerkleTreeHook) MarshalTo

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

func (*EventCreateMerkleTreeHook) MarshalToSizedBuffer

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

func (*EventCreateMerkleTreeHook) ProtoMessage

func (*EventCreateMerkleTreeHook) ProtoMessage()

func (*EventCreateMerkleTreeHook) Reset

func (m *EventCreateMerkleTreeHook) Reset()

func (*EventCreateMerkleTreeHook) Size

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

func (*EventCreateMerkleTreeHook) String

func (m *EventCreateMerkleTreeHook) String() string

func (*EventCreateMerkleTreeHook) Unmarshal

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

func (*EventCreateMerkleTreeHook) XXX_DiscardUnknown

func (m *EventCreateMerkleTreeHook) XXX_DiscardUnknown()

func (*EventCreateMerkleTreeHook) XXX_Marshal

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

func (*EventCreateMerkleTreeHook) XXX_Merge

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

func (*EventCreateMerkleTreeHook) XXX_Size

func (m *EventCreateMerkleTreeHook) XXX_Size() int

func (*EventCreateMerkleTreeHook) XXX_Unmarshal

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

type EventCreateNoopHook

type EventCreateNoopHook struct {
	// id ...
	NoopHookId github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `` /* 154-byte string literal not displayed */
	// owner ...
	Owner string `protobuf:"bytes,2,opt,name=owner,proto3" json:"owner,omitempty"`
}

EventCreateNoopHook ...

func (*EventCreateNoopHook) Descriptor

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

func (*EventCreateNoopHook) GetOwner

func (m *EventCreateNoopHook) GetOwner() string

func (*EventCreateNoopHook) Marshal

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

func (*EventCreateNoopHook) MarshalTo

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

func (*EventCreateNoopHook) MarshalToSizedBuffer

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

func (*EventCreateNoopHook) ProtoMessage

func (*EventCreateNoopHook) ProtoMessage()

func (*EventCreateNoopHook) Reset

func (m *EventCreateNoopHook) Reset()

func (*EventCreateNoopHook) Size

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

func (*EventCreateNoopHook) String

func (m *EventCreateNoopHook) String() string

func (*EventCreateNoopHook) Unmarshal

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

func (*EventCreateNoopHook) XXX_DiscardUnknown

func (m *EventCreateNoopHook) XXX_DiscardUnknown()

func (*EventCreateNoopHook) XXX_Marshal

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

func (*EventCreateNoopHook) XXX_Merge

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

func (*EventCreateNoopHook) XXX_Size

func (m *EventCreateNoopHook) XXX_Size() int

func (*EventCreateNoopHook) XXX_Unmarshal

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

type EventGasPayment

type EventGasPayment struct {
	// message_id ...
	MessageId github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `` /* 149-byte string literal not displayed */
	// destination ...
	Destination uint32 `protobuf:"varint,2,opt,name=destination,proto3" json:"destination,omitempty"`
	// gas_amount ...
	GasAmount string `protobuf:"bytes,3,opt,name=gas_amount,json=gasAmount,proto3" json:"gas_amount,omitempty"`
	// payment ...
	Payment string `protobuf:"bytes,4,opt,name=payment,proto3" json:"payment,omitempty"`
	// igp_id ...
	IgpId github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `` /* 137-byte string literal not displayed */
}

EventGasPayment ...

func (*EventGasPayment) Descriptor

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

func (*EventGasPayment) GetDestination

func (m *EventGasPayment) GetDestination() uint32

func (*EventGasPayment) GetGasAmount

func (m *EventGasPayment) GetGasAmount() string

func (*EventGasPayment) GetPayment

func (m *EventGasPayment) GetPayment() string

func (*EventGasPayment) Marshal

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

func (*EventGasPayment) MarshalTo

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

func (*EventGasPayment) MarshalToSizedBuffer

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

func (*EventGasPayment) ProtoMessage

func (*EventGasPayment) ProtoMessage()

func (*EventGasPayment) Reset

func (m *EventGasPayment) Reset()

func (*EventGasPayment) Size

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

func (*EventGasPayment) String

func (m *EventGasPayment) String() string

func (*EventGasPayment) Unmarshal

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

func (*EventGasPayment) XXX_DiscardUnknown

func (m *EventGasPayment) XXX_DiscardUnknown()

func (*EventGasPayment) XXX_Marshal

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

func (*EventGasPayment) XXX_Merge

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

func (*EventGasPayment) XXX_Size

func (m *EventGasPayment) XXX_Size() int

func (*EventGasPayment) XXX_Unmarshal

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

type EventInsertedIntoTree

type EventInsertedIntoTree struct {
	// message_id ...
	MessageId github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `` /* 149-byte string literal not displayed */
	// index ...
	Index uint32 `protobuf:"varint,2,opt,name=index,proto3" json:"index,omitempty"`
	// merkle_tree_hook_id ...
	MerkleTreeHookId github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `` /* 174-byte string literal not displayed */
}

EventInsertedIntoTree ...

func (*EventInsertedIntoTree) Descriptor

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

func (*EventInsertedIntoTree) GetIndex

func (m *EventInsertedIntoTree) GetIndex() uint32

func (*EventInsertedIntoTree) Marshal

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

func (*EventInsertedIntoTree) MarshalTo

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

func (*EventInsertedIntoTree) MarshalToSizedBuffer

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

func (*EventInsertedIntoTree) ProtoMessage

func (*EventInsertedIntoTree) ProtoMessage()

func (*EventInsertedIntoTree) Reset

func (m *EventInsertedIntoTree) Reset()

func (*EventInsertedIntoTree) Size

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

func (*EventInsertedIntoTree) String

func (m *EventInsertedIntoTree) String() string

func (*EventInsertedIntoTree) Unmarshal

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

func (*EventInsertedIntoTree) XXX_DiscardUnknown

func (m *EventInsertedIntoTree) XXX_DiscardUnknown()

func (*EventInsertedIntoTree) XXX_Marshal

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

func (*EventInsertedIntoTree) XXX_Merge

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

func (*EventInsertedIntoTree) XXX_Size

func (m *EventInsertedIntoTree) XXX_Size() int

func (*EventInsertedIntoTree) XXX_Unmarshal

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

type EventSetDestinationGasConfig

type EventSetDestinationGasConfig struct {
	IgpId             github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `` /* 137-byte string literal not displayed */
	Owner             string                                                      `protobuf:"bytes,2,opt,name=owner,proto3" json:"owner,omitempty"`
	RemoteDomain      uint32                                                      `protobuf:"varint,4,opt,name=remote_domain,json=remoteDomain,proto3" json:"remote_domain,omitempty"`
	GasOverhead       cosmossdk_io_math.Int                                       `protobuf:"bytes,5,opt,name=gas_overhead,json=gasOverhead,proto3,customtype=cosmossdk.io/math.Int" json:"gas_overhead"`
	GasPrice          cosmossdk_io_math.Int                                       `protobuf:"bytes,6,opt,name=gas_price,json=gasPrice,proto3,customtype=cosmossdk.io/math.Int" json:"gas_price"`
	TokenExchangeRate cosmossdk_io_math.Int                                       `` /* 137-byte string literal not displayed */
}

EventSetDestinationGasConfig ...

func (*EventSetDestinationGasConfig) Descriptor

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

func (*EventSetDestinationGasConfig) GetOwner

func (m *EventSetDestinationGasConfig) GetOwner() string

func (*EventSetDestinationGasConfig) GetRemoteDomain

func (m *EventSetDestinationGasConfig) GetRemoteDomain() uint32

func (*EventSetDestinationGasConfig) Marshal

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

func (*EventSetDestinationGasConfig) MarshalTo

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

func (*EventSetDestinationGasConfig) MarshalToSizedBuffer

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

func (*EventSetDestinationGasConfig) ProtoMessage

func (*EventSetDestinationGasConfig) ProtoMessage()

func (*EventSetDestinationGasConfig) Reset

func (m *EventSetDestinationGasConfig) Reset()

func (*EventSetDestinationGasConfig) Size

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

func (*EventSetDestinationGasConfig) String

func (*EventSetDestinationGasConfig) Unmarshal

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

func (*EventSetDestinationGasConfig) XXX_DiscardUnknown

func (m *EventSetDestinationGasConfig) XXX_DiscardUnknown()

func (*EventSetDestinationGasConfig) XXX_Marshal

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

func (*EventSetDestinationGasConfig) XXX_Merge

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

func (*EventSetDestinationGasConfig) XXX_Size

func (m *EventSetDestinationGasConfig) XXX_Size() int

func (*EventSetDestinationGasConfig) XXX_Unmarshal

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

type EventSetIgp

type EventSetIgp struct {
	IgpId             github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `` /* 137-byte string literal not displayed */
	Owner             string                                                      `protobuf:"bytes,2,opt,name=owner,proto3" json:"owner,omitempty"`
	NewOwner          string                                                      `protobuf:"bytes,3,opt,name=new_owner,json=newOwner,proto3" json:"new_owner,omitempty"`
	RenounceOwnership bool                                                        `protobuf:"varint,4,opt,name=renounce_ownership,json=renounceOwnership,proto3" json:"renounce_ownership,omitempty"`
}

EventSetIgp ...

func (*EventSetIgp) Descriptor

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

func (*EventSetIgp) GetNewOwner

func (m *EventSetIgp) GetNewOwner() string

func (*EventSetIgp) GetOwner

func (m *EventSetIgp) GetOwner() string

func (*EventSetIgp) GetRenounceOwnership

func (m *EventSetIgp) GetRenounceOwnership() bool

func (*EventSetIgp) Marshal

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

func (*EventSetIgp) MarshalTo

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

func (*EventSetIgp) MarshalToSizedBuffer

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

func (*EventSetIgp) ProtoMessage

func (*EventSetIgp) ProtoMessage()

func (*EventSetIgp) Reset

func (m *EventSetIgp) Reset()

func (*EventSetIgp) Size

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

func (*EventSetIgp) String

func (m *EventSetIgp) String() string

func (*EventSetIgp) Unmarshal

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

func (*EventSetIgp) XXX_DiscardUnknown

func (m *EventSetIgp) XXX_DiscardUnknown()

func (*EventSetIgp) XXX_Marshal

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

func (*EventSetIgp) XXX_Merge

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

func (*EventSetIgp) XXX_Size

func (m *EventSetIgp) XXX_Size() int

func (*EventSetIgp) XXX_Unmarshal

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

type GasOracle

type GasOracle struct {
	// token_exchange_rate ...
	TokenExchangeRate cosmossdk_io_math.Int `` /* 137-byte string literal not displayed */
	// gas_price ...
	GasPrice cosmossdk_io_math.Int `protobuf:"bytes,2,opt,name=gas_price,json=gasPrice,proto3,customtype=cosmossdk.io/math.Int" json:"gas_price"`
}

GasOracle ...

func (*GasOracle) Descriptor

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

func (*GasOracle) Marshal

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

func (*GasOracle) MarshalTo

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

func (*GasOracle) MarshalToSizedBuffer

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

func (*GasOracle) ProtoMessage

func (*GasOracle) ProtoMessage()

func (*GasOracle) Reset

func (m *GasOracle) Reset()

func (*GasOracle) Size

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

func (*GasOracle) String

func (m *GasOracle) String() string

func (*GasOracle) Unmarshal

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

func (*GasOracle) XXX_DiscardUnknown

func (m *GasOracle) XXX_DiscardUnknown()

func (*GasOracle) XXX_Marshal

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

func (*GasOracle) XXX_Merge

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

func (*GasOracle) XXX_Size

func (m *GasOracle) XXX_Size() int

func (*GasOracle) XXX_Unmarshal

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

type GenesisDestinationGasConfigWrapper

type GenesisDestinationGasConfigWrapper struct {
	// remote_domain ...
	RemoteDomain uint32 `protobuf:"varint,1,opt,name=remote_domain,json=remoteDomain,proto3" json:"remote_domain,omitempty"`
	// gas_oracle ...
	GasOracle *GasOracle `protobuf:"bytes,2,opt,name=gas_oracle,json=gasOracle,proto3" json:"gas_oracle,omitempty"`
	// gas_overhead ...
	GasOverhead cosmossdk_io_math.Int `protobuf:"bytes,3,opt,name=gas_overhead,json=gasOverhead,proto3,customtype=cosmossdk.io/math.Int" json:"gas_overhead"`
	// igp_id is required for the Genesis handling.
	IgpId uint64 `protobuf:"varint,4,opt,name=igp_id,json=igpId,proto3" json:"igp_id,omitempty"`
}

GenesisDestinationGasConfigWrapper ...

func (*GenesisDestinationGasConfigWrapper) Descriptor

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

func (*GenesisDestinationGasConfigWrapper) Marshal

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

func (*GenesisDestinationGasConfigWrapper) MarshalTo

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

func (*GenesisDestinationGasConfigWrapper) MarshalToSizedBuffer

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

func (*GenesisDestinationGasConfigWrapper) ProtoMessage

func (*GenesisDestinationGasConfigWrapper) ProtoMessage()

func (*GenesisDestinationGasConfigWrapper) Reset

func (*GenesisDestinationGasConfigWrapper) Size

func (*GenesisDestinationGasConfigWrapper) String

func (*GenesisDestinationGasConfigWrapper) Unmarshal

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

func (*GenesisDestinationGasConfigWrapper) XXX_DiscardUnknown

func (m *GenesisDestinationGasConfigWrapper) XXX_DiscardUnknown()

func (*GenesisDestinationGasConfigWrapper) XXX_Marshal

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

func (*GenesisDestinationGasConfigWrapper) XXX_Merge

func (*GenesisDestinationGasConfigWrapper) XXX_Size

func (*GenesisDestinationGasConfigWrapper) XXX_Unmarshal

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

type GenesisState

type GenesisState struct {
	Igps            []InterchainGasPaymaster             `protobuf:"bytes,1,rep,name=igps,proto3" json:"igps"`
	IgpGasConfigs   []GenesisDestinationGasConfigWrapper `protobuf:"bytes,2,rep,name=igp_gas_configs,json=igpGasConfigs,proto3" json:"igp_gas_configs"`
	MerkleTreeHooks []MerkleTreeHook                     `protobuf:"bytes,3,rep,name=merkle_tree_hooks,json=merkleTreeHooks,proto3" json:"merkle_tree_hooks"`
	NoopHooks       []NoopHook                           `protobuf:"bytes,4,rep,name=noop_hooks,json=noopHooks,proto3" json:"noop_hooks"`
}

GenesisState defines the post dispatch submodule's genesis state.

func NewGenesisState

func NewGenesisState() *GenesisState

func (*GenesisState) Descriptor

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

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

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 InterchainGasPaymaster

type InterchainGasPaymaster struct {
	// id ...
	Id github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `protobuf:"bytes,1,opt,name=id,proto3,customtype=github.com/morpheum-labs/hyperlane-morpheum/util.HexAddress" json:"id"`
	// owner ...
	Owner string `protobuf:"bytes,2,opt,name=owner,proto3" json:"owner,omitempty"`
	// denom ...
	Denom string `protobuf:"bytes,3,opt,name=denom,proto3" json:"denom,omitempty"`
	// claimable_fees ...
	ClaimableFees github_com_cosmos_cosmos_sdk_types.Coins `` /* 144-byte string literal not displayed */
}

InterchainGasPaymaster ...

func (*InterchainGasPaymaster) Descriptor

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

func (*InterchainGasPaymaster) Marshal

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

func (*InterchainGasPaymaster) MarshalTo

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

func (*InterchainGasPaymaster) MarshalToSizedBuffer

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

func (*InterchainGasPaymaster) ProtoMessage

func (*InterchainGasPaymaster) ProtoMessage()

func (*InterchainGasPaymaster) Reset

func (m *InterchainGasPaymaster) Reset()

func (*InterchainGasPaymaster) Size

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

func (*InterchainGasPaymaster) String

func (m *InterchainGasPaymaster) String() string

func (*InterchainGasPaymaster) Unmarshal

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

func (*InterchainGasPaymaster) XXX_DiscardUnknown

func (m *InterchainGasPaymaster) XXX_DiscardUnknown()

func (*InterchainGasPaymaster) XXX_Marshal

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

func (*InterchainGasPaymaster) XXX_Merge

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

func (*InterchainGasPaymaster) XXX_Size

func (m *InterchainGasPaymaster) XXX_Size() int

func (*InterchainGasPaymaster) XXX_Unmarshal

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

type MerkleTreeHook

type MerkleTreeHook struct {
	Id        github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `protobuf:"bytes,1,opt,name=id,proto3,customtype=github.com/morpheum-labs/hyperlane-morpheum/util.HexAddress" json:"id"`
	MailboxId github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `` /* 149-byte string literal not displayed */
	// owner ...
	Owner string `protobuf:"bytes,3,opt,name=owner,proto3" json:"owner,omitempty"`
	// tree ...
	Tree *Tree `protobuf:"bytes,4,opt,name=tree,proto3" json:"tree,omitempty"`
}

MerkleTreeHook ...

func (*MerkleTreeHook) Descriptor

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

func (*MerkleTreeHook) Marshal

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

func (*MerkleTreeHook) MarshalTo

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

func (*MerkleTreeHook) MarshalToSizedBuffer

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

func (*MerkleTreeHook) ProtoMessage

func (*MerkleTreeHook) ProtoMessage()

func (*MerkleTreeHook) Reset

func (m *MerkleTreeHook) Reset()

func (*MerkleTreeHook) Size

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

func (*MerkleTreeHook) String

func (m *MerkleTreeHook) String() string

func (*MerkleTreeHook) Unmarshal

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

func (*MerkleTreeHook) XXX_DiscardUnknown

func (m *MerkleTreeHook) XXX_DiscardUnknown()

func (*MerkleTreeHook) XXX_Marshal

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

func (*MerkleTreeHook) XXX_Merge

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

func (*MerkleTreeHook) XXX_Size

func (m *MerkleTreeHook) XXX_Size() int

func (*MerkleTreeHook) XXX_Unmarshal

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

type MsgClaim

type MsgClaim struct {
	// sender ...
	Sender string `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	// igp_id ...
	IgpId github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `` /* 137-byte string literal not displayed */
}

MsgClaim ...

func (*MsgClaim) Descriptor

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

func (*MsgClaim) GetSender

func (m *MsgClaim) GetSender() string

func (*MsgClaim) Marshal

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

func (*MsgClaim) MarshalTo

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

func (*MsgClaim) MarshalToSizedBuffer

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

func (*MsgClaim) ProtoMessage

func (*MsgClaim) ProtoMessage()

func (*MsgClaim) Reset

func (m *MsgClaim) Reset()

func (*MsgClaim) Size

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

func (*MsgClaim) String

func (m *MsgClaim) String() string

func (*MsgClaim) Unmarshal

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

func (*MsgClaim) XXX_DiscardUnknown

func (m *MsgClaim) XXX_DiscardUnknown()

func (*MsgClaim) XXX_Marshal

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

func (*MsgClaim) XXX_Merge

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

func (*MsgClaim) XXX_Size

func (m *MsgClaim) XXX_Size() int

func (*MsgClaim) XXX_Unmarshal

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

type MsgClaimResponse

type MsgClaimResponse struct {
}

MsgClaimResponse ...

func (*MsgClaimResponse) Descriptor

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

func (*MsgClaimResponse) Marshal

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

func (*MsgClaimResponse) MarshalTo

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

func (*MsgClaimResponse) MarshalToSizedBuffer

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

func (*MsgClaimResponse) ProtoMessage

func (*MsgClaimResponse) ProtoMessage()

func (*MsgClaimResponse) Reset

func (m *MsgClaimResponse) Reset()

func (*MsgClaimResponse) Size

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

func (*MsgClaimResponse) String

func (m *MsgClaimResponse) String() string

func (*MsgClaimResponse) Unmarshal

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

func (*MsgClaimResponse) XXX_DiscardUnknown

func (m *MsgClaimResponse) XXX_DiscardUnknown()

func (*MsgClaimResponse) XXX_Marshal

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

func (*MsgClaimResponse) XXX_Merge

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

func (*MsgClaimResponse) XXX_Size

func (m *MsgClaimResponse) XXX_Size() int

func (*MsgClaimResponse) XXX_Unmarshal

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

type MsgClient

type MsgClient interface {
	// CreateIgp ...
	CreateIgp(ctx context.Context, in *MsgCreateIgp, opts ...grpc.CallOption) (*MsgCreateIgpResponse, error)
	// SetIgpOwner ...
	SetIgpOwner(ctx context.Context, in *MsgSetIgpOwner, opts ...grpc.CallOption) (*MsgSetIgpOwnerResponse, error)
	// SetDestinationGasConfig ...
	SetDestinationGasConfig(ctx context.Context, in *MsgSetDestinationGasConfig, opts ...grpc.CallOption) (*MsgSetDestinationGasConfigResponse, error)
	// PayForGas ...
	PayForGas(ctx context.Context, in *MsgPayForGas, opts ...grpc.CallOption) (*MsgPayForGasResponse, error)
	// Claim ...
	Claim(ctx context.Context, in *MsgClaim, opts ...grpc.CallOption) (*MsgClaimResponse, error)
	// CreateMerkleTreeHook ...
	CreateMerkleTreeHook(ctx context.Context, in *MsgCreateMerkleTreeHook, opts ...grpc.CallOption) (*MsgCreateMerkleTreeHookResponse, error)
	// CreateNoopHook ...
	CreateNoopHook(ctx context.Context, in *MsgCreateNoopHook, opts ...grpc.CallOption) (*MsgCreateNoopHookResponse, error)
}

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 MsgCreateIgp

type MsgCreateIgp struct {
	// owner is the message sender.
	Owner string `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	// denom
	Denom string `protobuf:"bytes,2,opt,name=denom,proto3" json:"denom,omitempty"`
}

MsgCreateIgp ...

func (*MsgCreateIgp) Descriptor

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

func (*MsgCreateIgp) GetDenom

func (m *MsgCreateIgp) GetDenom() string

func (*MsgCreateIgp) GetOwner

func (m *MsgCreateIgp) GetOwner() string

func (*MsgCreateIgp) Marshal

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

func (*MsgCreateIgp) MarshalTo

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

func (*MsgCreateIgp) MarshalToSizedBuffer

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

func (*MsgCreateIgp) ProtoMessage

func (*MsgCreateIgp) ProtoMessage()

func (*MsgCreateIgp) Reset

func (m *MsgCreateIgp) Reset()

func (*MsgCreateIgp) Size

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

func (*MsgCreateIgp) String

func (m *MsgCreateIgp) String() string

func (*MsgCreateIgp) Unmarshal

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

func (*MsgCreateIgp) XXX_DiscardUnknown

func (m *MsgCreateIgp) XXX_DiscardUnknown()

func (*MsgCreateIgp) XXX_Marshal

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

func (*MsgCreateIgp) XXX_Merge

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

func (*MsgCreateIgp) XXX_Size

func (m *MsgCreateIgp) XXX_Size() int

func (*MsgCreateIgp) XXX_Unmarshal

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

type MsgCreateIgpResponse

type MsgCreateIgpResponse struct {
	Id github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `protobuf:"bytes,1,opt,name=id,proto3,customtype=github.com/morpheum-labs/hyperlane-morpheum/util.HexAddress" json:"id"`
}

MsgCreateIgpResponse ...

func (*MsgCreateIgpResponse) Descriptor

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

func (*MsgCreateIgpResponse) Marshal

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

func (*MsgCreateIgpResponse) MarshalTo

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

func (*MsgCreateIgpResponse) MarshalToSizedBuffer

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

func (*MsgCreateIgpResponse) ProtoMessage

func (*MsgCreateIgpResponse) ProtoMessage()

func (*MsgCreateIgpResponse) Reset

func (m *MsgCreateIgpResponse) Reset()

func (*MsgCreateIgpResponse) Size

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

func (*MsgCreateIgpResponse) String

func (m *MsgCreateIgpResponse) String() string

func (*MsgCreateIgpResponse) Unmarshal

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

func (*MsgCreateIgpResponse) XXX_DiscardUnknown

func (m *MsgCreateIgpResponse) XXX_DiscardUnknown()

func (*MsgCreateIgpResponse) XXX_Marshal

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

func (*MsgCreateIgpResponse) XXX_Merge

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

func (*MsgCreateIgpResponse) XXX_Size

func (m *MsgCreateIgpResponse) XXX_Size() int

func (*MsgCreateIgpResponse) XXX_Unmarshal

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

type MsgCreateMerkleTreeHook

type MsgCreateMerkleTreeHook struct {
	// sender ...
	Owner     string                                                      `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	MailboxId github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `` /* 149-byte string literal not displayed */
}

MsgMerkleTreeHook ...

func (*MsgCreateMerkleTreeHook) Descriptor

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

func (*MsgCreateMerkleTreeHook) GetOwner

func (m *MsgCreateMerkleTreeHook) GetOwner() string

func (*MsgCreateMerkleTreeHook) Marshal

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

func (*MsgCreateMerkleTreeHook) MarshalTo

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

func (*MsgCreateMerkleTreeHook) MarshalToSizedBuffer

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

func (*MsgCreateMerkleTreeHook) ProtoMessage

func (*MsgCreateMerkleTreeHook) ProtoMessage()

func (*MsgCreateMerkleTreeHook) Reset

func (m *MsgCreateMerkleTreeHook) Reset()

func (*MsgCreateMerkleTreeHook) Size

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

func (*MsgCreateMerkleTreeHook) String

func (m *MsgCreateMerkleTreeHook) String() string

func (*MsgCreateMerkleTreeHook) Unmarshal

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

func (*MsgCreateMerkleTreeHook) XXX_DiscardUnknown

func (m *MsgCreateMerkleTreeHook) XXX_DiscardUnknown()

func (*MsgCreateMerkleTreeHook) XXX_Marshal

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

func (*MsgCreateMerkleTreeHook) XXX_Merge

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

func (*MsgCreateMerkleTreeHook) XXX_Size

func (m *MsgCreateMerkleTreeHook) XXX_Size() int

func (*MsgCreateMerkleTreeHook) XXX_Unmarshal

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

type MsgCreateMerkleTreeHookResponse

type MsgCreateMerkleTreeHookResponse struct {
	Id github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `protobuf:"bytes,1,opt,name=id,proto3,customtype=github.com/morpheum-labs/hyperlane-morpheum/util.HexAddress" json:"id"`
}

MsgCreateMerkleTreeHookResponse ...

func (*MsgCreateMerkleTreeHookResponse) Descriptor

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

func (*MsgCreateMerkleTreeHookResponse) Marshal

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

func (*MsgCreateMerkleTreeHookResponse) MarshalTo

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

func (*MsgCreateMerkleTreeHookResponse) MarshalToSizedBuffer

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

func (*MsgCreateMerkleTreeHookResponse) ProtoMessage

func (*MsgCreateMerkleTreeHookResponse) ProtoMessage()

func (*MsgCreateMerkleTreeHookResponse) Reset

func (*MsgCreateMerkleTreeHookResponse) Size

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

func (*MsgCreateMerkleTreeHookResponse) String

func (*MsgCreateMerkleTreeHookResponse) Unmarshal

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

func (*MsgCreateMerkleTreeHookResponse) XXX_DiscardUnknown

func (m *MsgCreateMerkleTreeHookResponse) XXX_DiscardUnknown()

func (*MsgCreateMerkleTreeHookResponse) XXX_Marshal

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

func (*MsgCreateMerkleTreeHookResponse) XXX_Merge

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

func (*MsgCreateMerkleTreeHookResponse) XXX_Size

func (m *MsgCreateMerkleTreeHookResponse) XXX_Size() int

func (*MsgCreateMerkleTreeHookResponse) XXX_Unmarshal

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

type MsgCreateNoopHook

type MsgCreateNoopHook struct {
	// owner is the message sender
	Owner string `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
}

MsgCreateNoopHook ...

func (*MsgCreateNoopHook) Descriptor

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

func (*MsgCreateNoopHook) GetOwner

func (m *MsgCreateNoopHook) GetOwner() string

func (*MsgCreateNoopHook) Marshal

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

func (*MsgCreateNoopHook) MarshalTo

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

func (*MsgCreateNoopHook) MarshalToSizedBuffer

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

func (*MsgCreateNoopHook) ProtoMessage

func (*MsgCreateNoopHook) ProtoMessage()

func (*MsgCreateNoopHook) Reset

func (m *MsgCreateNoopHook) Reset()

func (*MsgCreateNoopHook) Size

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

func (*MsgCreateNoopHook) String

func (m *MsgCreateNoopHook) String() string

func (*MsgCreateNoopHook) Unmarshal

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

func (*MsgCreateNoopHook) XXX_DiscardUnknown

func (m *MsgCreateNoopHook) XXX_DiscardUnknown()

func (*MsgCreateNoopHook) XXX_Marshal

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

func (*MsgCreateNoopHook) XXX_Merge

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

func (*MsgCreateNoopHook) XXX_Size

func (m *MsgCreateNoopHook) XXX_Size() int

func (*MsgCreateNoopHook) XXX_Unmarshal

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

type MsgCreateNoopHookResponse

type MsgCreateNoopHookResponse struct {
	Id github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `protobuf:"bytes,1,opt,name=id,proto3,customtype=github.com/morpheum-labs/hyperlane-morpheum/util.HexAddress" json:"id"`
}

MsgCreateNoopHookResponse ...

func (*MsgCreateNoopHookResponse) Descriptor

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

func (*MsgCreateNoopHookResponse) Marshal

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

func (*MsgCreateNoopHookResponse) MarshalTo

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

func (*MsgCreateNoopHookResponse) MarshalToSizedBuffer

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

func (*MsgCreateNoopHookResponse) ProtoMessage

func (*MsgCreateNoopHookResponse) ProtoMessage()

func (*MsgCreateNoopHookResponse) Reset

func (m *MsgCreateNoopHookResponse) Reset()

func (*MsgCreateNoopHookResponse) Size

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

func (*MsgCreateNoopHookResponse) String

func (m *MsgCreateNoopHookResponse) String() string

func (*MsgCreateNoopHookResponse) Unmarshal

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

func (*MsgCreateNoopHookResponse) XXX_DiscardUnknown

func (m *MsgCreateNoopHookResponse) XXX_DiscardUnknown()

func (*MsgCreateNoopHookResponse) XXX_Marshal

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

func (*MsgCreateNoopHookResponse) XXX_Merge

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

func (*MsgCreateNoopHookResponse) XXX_Size

func (m *MsgCreateNoopHookResponse) XXX_Size() int

func (*MsgCreateNoopHookResponse) XXX_Unmarshal

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

type MsgPayForGas

type MsgPayForGas struct {
	// sender ...
	Sender string `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	// igp_id ...
	IgpId github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `` /* 137-byte string literal not displayed */
	// message_id ...
	MessageId github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `` /* 149-byte string literal not displayed */
	// destination_domain ...
	DestinationDomain uint32 `protobuf:"varint,4,opt,name=destination_domain,json=destinationDomain,proto3" json:"destination_domain,omitempty"`
	// gas_limit ...
	GasLimit cosmossdk_io_math.Int `protobuf:"bytes,5,opt,name=gas_limit,json=gasLimit,proto3,customtype=cosmossdk.io/math.Int" json:"gas_limit"`
	// amount ...
	Amount types.Coin `protobuf:"bytes,6,opt,name=amount,proto3" json:"amount"`
}

MsgPayForGas ...

func (*MsgPayForGas) Descriptor

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

func (*MsgPayForGas) GetAmount

func (m *MsgPayForGas) GetAmount() types.Coin

func (*MsgPayForGas) GetDestinationDomain

func (m *MsgPayForGas) GetDestinationDomain() uint32

func (*MsgPayForGas) GetSender

func (m *MsgPayForGas) GetSender() string

func (*MsgPayForGas) Marshal

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

func (*MsgPayForGas) MarshalTo

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

func (*MsgPayForGas) MarshalToSizedBuffer

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

func (*MsgPayForGas) ProtoMessage

func (*MsgPayForGas) ProtoMessage()

func (*MsgPayForGas) Reset

func (m *MsgPayForGas) Reset()

func (*MsgPayForGas) Size

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

func (*MsgPayForGas) String

func (m *MsgPayForGas) String() string

func (*MsgPayForGas) Unmarshal

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

func (*MsgPayForGas) XXX_DiscardUnknown

func (m *MsgPayForGas) XXX_DiscardUnknown()

func (*MsgPayForGas) XXX_Marshal

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

func (*MsgPayForGas) XXX_Merge

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

func (*MsgPayForGas) XXX_Size

func (m *MsgPayForGas) XXX_Size() int

func (*MsgPayForGas) XXX_Unmarshal

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

type MsgPayForGasResponse

type MsgPayForGasResponse struct {
}

MsgPayForGasResponse ...

func (*MsgPayForGasResponse) Descriptor

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

func (*MsgPayForGasResponse) Marshal

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

func (*MsgPayForGasResponse) MarshalTo

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

func (*MsgPayForGasResponse) MarshalToSizedBuffer

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

func (*MsgPayForGasResponse) ProtoMessage

func (*MsgPayForGasResponse) ProtoMessage()

func (*MsgPayForGasResponse) Reset

func (m *MsgPayForGasResponse) Reset()

func (*MsgPayForGasResponse) Size

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

func (*MsgPayForGasResponse) String

func (m *MsgPayForGasResponse) String() string

func (*MsgPayForGasResponse) Unmarshal

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

func (*MsgPayForGasResponse) XXX_DiscardUnknown

func (m *MsgPayForGasResponse) XXX_DiscardUnknown()

func (*MsgPayForGasResponse) XXX_Marshal

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

func (*MsgPayForGasResponse) XXX_Merge

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

func (*MsgPayForGasResponse) XXX_Size

func (m *MsgPayForGasResponse) XXX_Size() int

func (*MsgPayForGasResponse) XXX_Unmarshal

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

type MsgServer

type MsgServer interface {
	// CreateIgp ...
	CreateIgp(context.Context, *MsgCreateIgp) (*MsgCreateIgpResponse, error)
	// SetIgpOwner ...
	SetIgpOwner(context.Context, *MsgSetIgpOwner) (*MsgSetIgpOwnerResponse, error)
	// SetDestinationGasConfig ...
	SetDestinationGasConfig(context.Context, *MsgSetDestinationGasConfig) (*MsgSetDestinationGasConfigResponse, error)
	// PayForGas ...
	PayForGas(context.Context, *MsgPayForGas) (*MsgPayForGasResponse, error)
	// Claim ...
	Claim(context.Context, *MsgClaim) (*MsgClaimResponse, error)
	// CreateMerkleTreeHook ...
	CreateMerkleTreeHook(context.Context, *MsgCreateMerkleTreeHook) (*MsgCreateMerkleTreeHookResponse, error)
	// CreateNoopHook ...
	CreateNoopHook(context.Context, *MsgCreateNoopHook) (*MsgCreateNoopHookResponse, error)
}

MsgServer is the server API for Msg service.

type MsgSetDestinationGasConfig

type MsgSetDestinationGasConfig struct {
	// owner ...
	Owner string `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	// igp_id ...
	IgpId github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `` /* 137-byte string literal not displayed */
	// destination_gas_config ...
	DestinationGasConfig *DestinationGasConfig `protobuf:"bytes,3,opt,name=destination_gas_config,json=destinationGasConfig,proto3" json:"destination_gas_config,omitempty"`
}

MsgSetDestinationGasConfig ...

func (*MsgSetDestinationGasConfig) Descriptor

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

func (*MsgSetDestinationGasConfig) GetDestinationGasConfig

func (m *MsgSetDestinationGasConfig) GetDestinationGasConfig() *DestinationGasConfig

func (*MsgSetDestinationGasConfig) GetOwner

func (m *MsgSetDestinationGasConfig) GetOwner() string

func (*MsgSetDestinationGasConfig) Marshal

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

func (*MsgSetDestinationGasConfig) MarshalTo

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

func (*MsgSetDestinationGasConfig) MarshalToSizedBuffer

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

func (*MsgSetDestinationGasConfig) ProtoMessage

func (*MsgSetDestinationGasConfig) ProtoMessage()

func (*MsgSetDestinationGasConfig) Reset

func (m *MsgSetDestinationGasConfig) Reset()

func (*MsgSetDestinationGasConfig) Size

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

func (*MsgSetDestinationGasConfig) String

func (m *MsgSetDestinationGasConfig) String() string

func (*MsgSetDestinationGasConfig) Unmarshal

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

func (*MsgSetDestinationGasConfig) XXX_DiscardUnknown

func (m *MsgSetDestinationGasConfig) XXX_DiscardUnknown()

func (*MsgSetDestinationGasConfig) XXX_Marshal

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

func (*MsgSetDestinationGasConfig) XXX_Merge

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

func (*MsgSetDestinationGasConfig) XXX_Size

func (m *MsgSetDestinationGasConfig) XXX_Size() int

func (*MsgSetDestinationGasConfig) XXX_Unmarshal

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

type MsgSetDestinationGasConfigResponse

type MsgSetDestinationGasConfigResponse struct {
}

MsgSetDestinationGasConfigResponse ...

func (*MsgSetDestinationGasConfigResponse) Descriptor

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

func (*MsgSetDestinationGasConfigResponse) Marshal

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

func (*MsgSetDestinationGasConfigResponse) MarshalTo

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

func (*MsgSetDestinationGasConfigResponse) MarshalToSizedBuffer

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

func (*MsgSetDestinationGasConfigResponse) ProtoMessage

func (*MsgSetDestinationGasConfigResponse) ProtoMessage()

func (*MsgSetDestinationGasConfigResponse) Reset

func (*MsgSetDestinationGasConfigResponse) Size

func (*MsgSetDestinationGasConfigResponse) String

func (*MsgSetDestinationGasConfigResponse) Unmarshal

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

func (*MsgSetDestinationGasConfigResponse) XXX_DiscardUnknown

func (m *MsgSetDestinationGasConfigResponse) XXX_DiscardUnknown()

func (*MsgSetDestinationGasConfigResponse) XXX_Marshal

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

func (*MsgSetDestinationGasConfigResponse) XXX_Merge

func (*MsgSetDestinationGasConfigResponse) XXX_Size

func (*MsgSetDestinationGasConfigResponse) XXX_Unmarshal

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

type MsgSetIgpOwner

type MsgSetIgpOwner struct {
	// owner is the message sender.
	Owner string `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	// igp_id
	IgpId github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `` /* 137-byte string literal not displayed */
	// new_owner
	NewOwner string `protobuf:"bytes,3,opt,name=new_owner,json=newOwner,proto3" json:"new_owner,omitempty"`
	// renounce_ownership
	RenounceOwnership bool `protobuf:"varint,4,opt,name=renounce_ownership,json=renounceOwnership,proto3" json:"renounce_ownership,omitempty"`
}

MsgSetIgpOwner ...

func (*MsgSetIgpOwner) Descriptor

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

func (*MsgSetIgpOwner) GetNewOwner

func (m *MsgSetIgpOwner) GetNewOwner() string

func (*MsgSetIgpOwner) GetOwner

func (m *MsgSetIgpOwner) GetOwner() string

func (*MsgSetIgpOwner) GetRenounceOwnership

func (m *MsgSetIgpOwner) GetRenounceOwnership() bool

func (*MsgSetIgpOwner) Marshal

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

func (*MsgSetIgpOwner) MarshalTo

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

func (*MsgSetIgpOwner) MarshalToSizedBuffer

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

func (*MsgSetIgpOwner) ProtoMessage

func (*MsgSetIgpOwner) ProtoMessage()

func (*MsgSetIgpOwner) Reset

func (m *MsgSetIgpOwner) Reset()

func (*MsgSetIgpOwner) Size

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

func (*MsgSetIgpOwner) String

func (m *MsgSetIgpOwner) String() string

func (*MsgSetIgpOwner) Unmarshal

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

func (*MsgSetIgpOwner) XXX_DiscardUnknown

func (m *MsgSetIgpOwner) XXX_DiscardUnknown()

func (*MsgSetIgpOwner) XXX_Marshal

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

func (*MsgSetIgpOwner) XXX_Merge

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

func (*MsgSetIgpOwner) XXX_Size

func (m *MsgSetIgpOwner) XXX_Size() int

func (*MsgSetIgpOwner) XXX_Unmarshal

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

type MsgSetIgpOwnerResponse

type MsgSetIgpOwnerResponse struct {
}

MsgCreateIgpResponse ...

func (*MsgSetIgpOwnerResponse) Descriptor

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

func (*MsgSetIgpOwnerResponse) Marshal

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

func (*MsgSetIgpOwnerResponse) MarshalTo

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

func (*MsgSetIgpOwnerResponse) MarshalToSizedBuffer

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

func (*MsgSetIgpOwnerResponse) ProtoMessage

func (*MsgSetIgpOwnerResponse) ProtoMessage()

func (*MsgSetIgpOwnerResponse) Reset

func (m *MsgSetIgpOwnerResponse) Reset()

func (*MsgSetIgpOwnerResponse) Size

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

func (*MsgSetIgpOwnerResponse) String

func (m *MsgSetIgpOwnerResponse) String() string

func (*MsgSetIgpOwnerResponse) Unmarshal

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

func (*MsgSetIgpOwnerResponse) XXX_DiscardUnknown

func (m *MsgSetIgpOwnerResponse) XXX_DiscardUnknown()

func (*MsgSetIgpOwnerResponse) XXX_Marshal

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

func (*MsgSetIgpOwnerResponse) XXX_Merge

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

func (*MsgSetIgpOwnerResponse) XXX_Size

func (m *MsgSetIgpOwnerResponse) XXX_Size() int

func (*MsgSetIgpOwnerResponse) XXX_Unmarshal

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

type NoopHook

type NoopHook struct {
	// id ...
	Id github_com_morpheumLab_hyperlane_wrapengine_util.HexAddress `protobuf:"bytes,1,opt,name=id,proto3,customtype=github.com/morpheum-labs/hyperlane-morpheum/util.HexAddress" json:"id"`
	// owner ...
	Owner string `protobuf:"bytes,2,opt,name=owner,proto3" json:"owner,omitempty"`
}

NoopHook ...

func (*NoopHook) Descriptor

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

func (*NoopHook) Marshal

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

func (*NoopHook) MarshalTo

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

func (*NoopHook) MarshalToSizedBuffer

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

func (*NoopHook) ProtoMessage

func (*NoopHook) ProtoMessage()

func (*NoopHook) Reset

func (m *NoopHook) Reset()

func (*NoopHook) Size

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

func (*NoopHook) String

func (m *NoopHook) String() string

func (*NoopHook) Unmarshal

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

func (*NoopHook) XXX_DiscardUnknown

func (m *NoopHook) XXX_DiscardUnknown()

func (*NoopHook) XXX_Marshal

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

func (*NoopHook) XXX_Merge

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

func (*NoopHook) XXX_Size

func (m *NoopHook) XXX_Size() int

func (*NoopHook) XXX_Unmarshal

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

type QueryClient

type QueryClient interface {
	// Igps ...
	Igps(ctx context.Context, in *QueryIgpsRequest, opts ...grpc.CallOption) (*QueryIgpsResponse, error)
	// Igp ...
	Igp(ctx context.Context, in *QueryIgpRequest, opts ...grpc.CallOption) (*QueryIgpResponse, error)
	// DestinationGasConfigs ...
	DestinationGasConfigs(ctx context.Context, in *QueryDestinationGasConfigsRequest, opts ...grpc.CallOption) (*QueryDestinationGasConfigsResponse, error)
	// QuoteGasPayment ...
	QuoteGasPayment(ctx context.Context, in *QueryQuoteGasPaymentRequest, opts ...grpc.CallOption) (*QueryQuoteGasPaymentResponse, error)
	// MerkleTreeHooks ...
	MerkleTreeHooks(ctx context.Context, in *QueryMerkleTreeHooksRequest, opts ...grpc.CallOption) (*QueryMerkleTreeHooksResponse, error)
	// MerkleTreeHook ...
	MerkleTreeHook(ctx context.Context, in *QueryMerkleTreeHookRequest, opts ...grpc.CallOption) (*QueryMerkleTreeHookResponse, error)
	// NoopHooks ...
	NoopHooks(ctx context.Context, in *QueryNoopHooksRequest, opts ...grpc.CallOption) (*QueryNoopHooksResponse, error)
	// NoopHook ...
	NoopHook(ctx context.Context, in *QueryNoopHookRequest, opts ...grpc.CallOption) (*QueryNoopHookResponse, 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 QueryDestinationGasConfigsRequest

type QueryDestinationGasConfigsRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// pagination defines an optional pagination for the request.
	Pagination *query.PageRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryDestinationGasConfigsRequest ...

func (*QueryDestinationGasConfigsRequest) Descriptor

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

func (*QueryDestinationGasConfigsRequest) GetId

func (*QueryDestinationGasConfigsRequest) GetPagination

func (*QueryDestinationGasConfigsRequest) Marshal

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

func (*QueryDestinationGasConfigsRequest) MarshalTo

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

func (*QueryDestinationGasConfigsRequest) MarshalToSizedBuffer

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

func (*QueryDestinationGasConfigsRequest) ProtoMessage

func (*QueryDestinationGasConfigsRequest) ProtoMessage()

func (*QueryDestinationGasConfigsRequest) Reset

func (*QueryDestinationGasConfigsRequest) Size

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

func (*QueryDestinationGasConfigsRequest) String

func (*QueryDestinationGasConfigsRequest) Unmarshal

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

func (*QueryDestinationGasConfigsRequest) XXX_DiscardUnknown

func (m *QueryDestinationGasConfigsRequest) XXX_DiscardUnknown()

func (*QueryDestinationGasConfigsRequest) XXX_Marshal

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

func (*QueryDestinationGasConfigsRequest) XXX_Merge

func (*QueryDestinationGasConfigsRequest) XXX_Size

func (m *QueryDestinationGasConfigsRequest) XXX_Size() int

func (*QueryDestinationGasConfigsRequest) XXX_Unmarshal

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

type QueryDestinationGasConfigsResponse

type QueryDestinationGasConfigsResponse struct {
	DestinationGasConfigs []*DestinationGasConfig `` /* 126-byte string literal not displayed */
	// pagination defines the pagination in the response.
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryDestinationGasConfigsResponse ...

func (*QueryDestinationGasConfigsResponse) Descriptor

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

func (*QueryDestinationGasConfigsResponse) GetDestinationGasConfigs

func (m *QueryDestinationGasConfigsResponse) GetDestinationGasConfigs() []*DestinationGasConfig

func (*QueryDestinationGasConfigsResponse) GetPagination

func (*QueryDestinationGasConfigsResponse) Marshal

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

func (*QueryDestinationGasConfigsResponse) MarshalTo

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

func (*QueryDestinationGasConfigsResponse) MarshalToSizedBuffer

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

func (*QueryDestinationGasConfigsResponse) ProtoMessage

func (*QueryDestinationGasConfigsResponse) ProtoMessage()

func (*QueryDestinationGasConfigsResponse) Reset

func (*QueryDestinationGasConfigsResponse) Size

func (*QueryDestinationGasConfigsResponse) String

func (*QueryDestinationGasConfigsResponse) Unmarshal

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

func (*QueryDestinationGasConfigsResponse) XXX_DiscardUnknown

func (m *QueryDestinationGasConfigsResponse) XXX_DiscardUnknown()

func (*QueryDestinationGasConfigsResponse) XXX_Marshal

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

func (*QueryDestinationGasConfigsResponse) XXX_Merge

func (*QueryDestinationGasConfigsResponse) XXX_Size

func (*QueryDestinationGasConfigsResponse) XXX_Unmarshal

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

type QueryIgpRequest

type QueryIgpRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
}

QueryIgpRequest ...

func (*QueryIgpRequest) Descriptor

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

func (*QueryIgpRequest) GetId

func (m *QueryIgpRequest) GetId() string

func (*QueryIgpRequest) Marshal

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

func (*QueryIgpRequest) MarshalTo

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

func (*QueryIgpRequest) MarshalToSizedBuffer

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

func (*QueryIgpRequest) ProtoMessage

func (*QueryIgpRequest) ProtoMessage()

func (*QueryIgpRequest) Reset

func (m *QueryIgpRequest) Reset()

func (*QueryIgpRequest) Size

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

func (*QueryIgpRequest) String

func (m *QueryIgpRequest) String() string

func (*QueryIgpRequest) Unmarshal

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

func (*QueryIgpRequest) XXX_DiscardUnknown

func (m *QueryIgpRequest) XXX_DiscardUnknown()

func (*QueryIgpRequest) XXX_Marshal

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

func (*QueryIgpRequest) XXX_Merge

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

func (*QueryIgpRequest) XXX_Size

func (m *QueryIgpRequest) XXX_Size() int

func (*QueryIgpRequest) XXX_Unmarshal

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

type QueryIgpResponse

type QueryIgpResponse struct {
	Igp InterchainGasPaymaster `protobuf:"bytes,1,opt,name=igp,proto3" json:"igp"`
}

QueryIgpResponse ...

func (*QueryIgpResponse) Descriptor

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

func (*QueryIgpResponse) GetIgp

func (*QueryIgpResponse) Marshal

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

func (*QueryIgpResponse) MarshalTo

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

func (*QueryIgpResponse) MarshalToSizedBuffer

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

func (*QueryIgpResponse) ProtoMessage

func (*QueryIgpResponse) ProtoMessage()

func (*QueryIgpResponse) Reset

func (m *QueryIgpResponse) Reset()

func (*QueryIgpResponse) Size

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

func (*QueryIgpResponse) String

func (m *QueryIgpResponse) String() string

func (*QueryIgpResponse) Unmarshal

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

func (*QueryIgpResponse) XXX_DiscardUnknown

func (m *QueryIgpResponse) XXX_DiscardUnknown()

func (*QueryIgpResponse) XXX_Marshal

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

func (*QueryIgpResponse) XXX_Merge

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

func (*QueryIgpResponse) XXX_Size

func (m *QueryIgpResponse) XXX_Size() int

func (*QueryIgpResponse) XXX_Unmarshal

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

type QueryIgpsRequest

type QueryIgpsRequest struct {
	// pagination defines an optional pagination for the request.
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryIgpsRequest ...

func (*QueryIgpsRequest) Descriptor

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

func (*QueryIgpsRequest) GetPagination

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

func (*QueryIgpsRequest) Marshal

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

func (*QueryIgpsRequest) MarshalTo

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

func (*QueryIgpsRequest) MarshalToSizedBuffer

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

func (*QueryIgpsRequest) ProtoMessage

func (*QueryIgpsRequest) ProtoMessage()

func (*QueryIgpsRequest) Reset

func (m *QueryIgpsRequest) Reset()

func (*QueryIgpsRequest) Size

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

func (*QueryIgpsRequest) String

func (m *QueryIgpsRequest) String() string

func (*QueryIgpsRequest) Unmarshal

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

func (*QueryIgpsRequest) XXX_DiscardUnknown

func (m *QueryIgpsRequest) XXX_DiscardUnknown()

func (*QueryIgpsRequest) XXX_Marshal

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

func (*QueryIgpsRequest) XXX_Merge

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

func (*QueryIgpsRequest) XXX_Size

func (m *QueryIgpsRequest) XXX_Size() int

func (*QueryIgpsRequest) XXX_Unmarshal

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

type QueryIgpsResponse

type QueryIgpsResponse struct {
	Igps []InterchainGasPaymaster `protobuf:"bytes,1,rep,name=igps,proto3" json:"igps"`
	// pagination defines the pagination in the response.
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryIgpsResponse ...

func (*QueryIgpsResponse) Descriptor

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

func (*QueryIgpsResponse) GetIgps

func (*QueryIgpsResponse) GetPagination

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

func (*QueryIgpsResponse) Marshal

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

func (*QueryIgpsResponse) MarshalTo

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

func (*QueryIgpsResponse) MarshalToSizedBuffer

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

func (*QueryIgpsResponse) ProtoMessage

func (*QueryIgpsResponse) ProtoMessage()

func (*QueryIgpsResponse) Reset

func (m *QueryIgpsResponse) Reset()

func (*QueryIgpsResponse) Size

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

func (*QueryIgpsResponse) String

func (m *QueryIgpsResponse) String() string

func (*QueryIgpsResponse) Unmarshal

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

func (*QueryIgpsResponse) XXX_DiscardUnknown

func (m *QueryIgpsResponse) XXX_DiscardUnknown()

func (*QueryIgpsResponse) XXX_Marshal

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

func (*QueryIgpsResponse) XXX_Merge

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

func (*QueryIgpsResponse) XXX_Size

func (m *QueryIgpsResponse) XXX_Size() int

func (*QueryIgpsResponse) XXX_Unmarshal

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

type QueryMerkleTreeHookRequest

type QueryMerkleTreeHookRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
}

QueryMerkleTreeHookRequest ...

func (*QueryMerkleTreeHookRequest) Descriptor

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

func (*QueryMerkleTreeHookRequest) GetId

func (*QueryMerkleTreeHookRequest) Marshal

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

func (*QueryMerkleTreeHookRequest) MarshalTo

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

func (*QueryMerkleTreeHookRequest) MarshalToSizedBuffer

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

func (*QueryMerkleTreeHookRequest) ProtoMessage

func (*QueryMerkleTreeHookRequest) ProtoMessage()

func (*QueryMerkleTreeHookRequest) Reset

func (m *QueryMerkleTreeHookRequest) Reset()

func (*QueryMerkleTreeHookRequest) Size

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

func (*QueryMerkleTreeHookRequest) String

func (m *QueryMerkleTreeHookRequest) String() string

func (*QueryMerkleTreeHookRequest) Unmarshal

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

func (*QueryMerkleTreeHookRequest) XXX_DiscardUnknown

func (m *QueryMerkleTreeHookRequest) XXX_DiscardUnknown()

func (*QueryMerkleTreeHookRequest) XXX_Marshal

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

func (*QueryMerkleTreeHookRequest) XXX_Merge

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

func (*QueryMerkleTreeHookRequest) XXX_Size

func (m *QueryMerkleTreeHookRequest) XXX_Size() int

func (*QueryMerkleTreeHookRequest) XXX_Unmarshal

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

type QueryMerkleTreeHookResponse

type QueryMerkleTreeHookResponse struct {
	MerkleTreeHook WrappedMerkleTreeHookResponse `protobuf:"bytes,1,opt,name=merkle_tree_hook,json=merkleTreeHook,proto3" json:"merkle_tree_hook"`
}

QueryMerkleTreeHookResponse

func (*QueryMerkleTreeHookResponse) Descriptor

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

func (*QueryMerkleTreeHookResponse) GetMerkleTreeHook

func (*QueryMerkleTreeHookResponse) Marshal

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

func (*QueryMerkleTreeHookResponse) MarshalTo

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

func (*QueryMerkleTreeHookResponse) MarshalToSizedBuffer

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

func (*QueryMerkleTreeHookResponse) ProtoMessage

func (*QueryMerkleTreeHookResponse) ProtoMessage()

func (*QueryMerkleTreeHookResponse) Reset

func (m *QueryMerkleTreeHookResponse) Reset()

func (*QueryMerkleTreeHookResponse) Size

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

func (*QueryMerkleTreeHookResponse) String

func (m *QueryMerkleTreeHookResponse) String() string

func (*QueryMerkleTreeHookResponse) Unmarshal

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

func (*QueryMerkleTreeHookResponse) XXX_DiscardUnknown

func (m *QueryMerkleTreeHookResponse) XXX_DiscardUnknown()

func (*QueryMerkleTreeHookResponse) XXX_Marshal

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

func (*QueryMerkleTreeHookResponse) XXX_Merge

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

func (*QueryMerkleTreeHookResponse) XXX_Size

func (m *QueryMerkleTreeHookResponse) XXX_Size() int

func (*QueryMerkleTreeHookResponse) XXX_Unmarshal

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

type QueryMerkleTreeHooksRequest

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

QueryMerkleTreeHooksRequest ...

func (*QueryMerkleTreeHooksRequest) Descriptor

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

func (*QueryMerkleTreeHooksRequest) GetPagination

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

func (*QueryMerkleTreeHooksRequest) Marshal

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

func (*QueryMerkleTreeHooksRequest) MarshalTo

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

func (*QueryMerkleTreeHooksRequest) MarshalToSizedBuffer

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

func (*QueryMerkleTreeHooksRequest) ProtoMessage

func (*QueryMerkleTreeHooksRequest) ProtoMessage()

func (*QueryMerkleTreeHooksRequest) Reset

func (m *QueryMerkleTreeHooksRequest) Reset()

func (*QueryMerkleTreeHooksRequest) Size

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

func (*QueryMerkleTreeHooksRequest) String

func (m *QueryMerkleTreeHooksRequest) String() string

func (*QueryMerkleTreeHooksRequest) Unmarshal

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

func (*QueryMerkleTreeHooksRequest) XXX_DiscardUnknown

func (m *QueryMerkleTreeHooksRequest) XXX_DiscardUnknown()

func (*QueryMerkleTreeHooksRequest) XXX_Marshal

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

func (*QueryMerkleTreeHooksRequest) XXX_Merge

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

func (*QueryMerkleTreeHooksRequest) XXX_Size

func (m *QueryMerkleTreeHooksRequest) XXX_Size() int

func (*QueryMerkleTreeHooksRequest) XXX_Unmarshal

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

type QueryMerkleTreeHooksResponse

type QueryMerkleTreeHooksResponse struct {
	MerkleTreeHooks []WrappedMerkleTreeHookResponse `protobuf:"bytes,1,rep,name=merkle_tree_hooks,json=merkleTreeHooks,proto3" json:"merkle_tree_hooks"`
	Pagination      *query.PageResponse             `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryMerkleTreeHooksResponse ...

func (*QueryMerkleTreeHooksResponse) Descriptor

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

func (*QueryMerkleTreeHooksResponse) GetMerkleTreeHooks

func (*QueryMerkleTreeHooksResponse) GetPagination

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

func (*QueryMerkleTreeHooksResponse) Marshal

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

func (*QueryMerkleTreeHooksResponse) MarshalTo

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

func (*QueryMerkleTreeHooksResponse) MarshalToSizedBuffer

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

func (*QueryMerkleTreeHooksResponse) ProtoMessage

func (*QueryMerkleTreeHooksResponse) ProtoMessage()

func (*QueryMerkleTreeHooksResponse) Reset

func (m *QueryMerkleTreeHooksResponse) Reset()

func (*QueryMerkleTreeHooksResponse) Size

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

func (*QueryMerkleTreeHooksResponse) String

func (*QueryMerkleTreeHooksResponse) Unmarshal

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

func (*QueryMerkleTreeHooksResponse) XXX_DiscardUnknown

func (m *QueryMerkleTreeHooksResponse) XXX_DiscardUnknown()

func (*QueryMerkleTreeHooksResponse) XXX_Marshal

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

func (*QueryMerkleTreeHooksResponse) XXX_Merge

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

func (*QueryMerkleTreeHooksResponse) XXX_Size

func (m *QueryMerkleTreeHooksResponse) XXX_Size() int

func (*QueryMerkleTreeHooksResponse) XXX_Unmarshal

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

type QueryNoopHookRequest

type QueryNoopHookRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
}

QueryNoopHookRequest ...

func (*QueryNoopHookRequest) Descriptor

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

func (*QueryNoopHookRequest) GetId

func (m *QueryNoopHookRequest) GetId() string

func (*QueryNoopHookRequest) Marshal

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

func (*QueryNoopHookRequest) MarshalTo

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

func (*QueryNoopHookRequest) MarshalToSizedBuffer

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

func (*QueryNoopHookRequest) ProtoMessage

func (*QueryNoopHookRequest) ProtoMessage()

func (*QueryNoopHookRequest) Reset

func (m *QueryNoopHookRequest) Reset()

func (*QueryNoopHookRequest) Size

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

func (*QueryNoopHookRequest) String

func (m *QueryNoopHookRequest) String() string

func (*QueryNoopHookRequest) Unmarshal

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

func (*QueryNoopHookRequest) XXX_DiscardUnknown

func (m *QueryNoopHookRequest) XXX_DiscardUnknown()

func (*QueryNoopHookRequest) XXX_Marshal

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

func (*QueryNoopHookRequest) XXX_Merge

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

func (*QueryNoopHookRequest) XXX_Size

func (m *QueryNoopHookRequest) XXX_Size() int

func (*QueryNoopHookRequest) XXX_Unmarshal

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

type QueryNoopHookResponse

type QueryNoopHookResponse struct {
	NoopHook *NoopHook `protobuf:"bytes,1,opt,name=noop_hook,json=noopHook,proto3" json:"noop_hook,omitempty"`
}

QueryNoopHookResponse ...

func (*QueryNoopHookResponse) Descriptor

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

func (*QueryNoopHookResponse) GetNoopHook

func (m *QueryNoopHookResponse) GetNoopHook() *NoopHook

func (*QueryNoopHookResponse) Marshal

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

func (*QueryNoopHookResponse) MarshalTo

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

func (*QueryNoopHookResponse) MarshalToSizedBuffer

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

func (*QueryNoopHookResponse) ProtoMessage

func (*QueryNoopHookResponse) ProtoMessage()

func (*QueryNoopHookResponse) Reset

func (m *QueryNoopHookResponse) Reset()

func (*QueryNoopHookResponse) Size

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

func (*QueryNoopHookResponse) String

func (m *QueryNoopHookResponse) String() string

func (*QueryNoopHookResponse) Unmarshal

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

func (*QueryNoopHookResponse) XXX_DiscardUnknown

func (m *QueryNoopHookResponse) XXX_DiscardUnknown()

func (*QueryNoopHookResponse) XXX_Marshal

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

func (*QueryNoopHookResponse) XXX_Merge

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

func (*QueryNoopHookResponse) XXX_Size

func (m *QueryNoopHookResponse) XXX_Size() int

func (*QueryNoopHookResponse) XXX_Unmarshal

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

type QueryNoopHooksRequest

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

QueryNoopHooksRequest ...

func (*QueryNoopHooksRequest) Descriptor

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

func (*QueryNoopHooksRequest) GetPagination

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

func (*QueryNoopHooksRequest) Marshal

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

func (*QueryNoopHooksRequest) MarshalTo

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

func (*QueryNoopHooksRequest) MarshalToSizedBuffer

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

func (*QueryNoopHooksRequest) ProtoMessage

func (*QueryNoopHooksRequest) ProtoMessage()

func (*QueryNoopHooksRequest) Reset

func (m *QueryNoopHooksRequest) Reset()

func (*QueryNoopHooksRequest) Size

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

func (*QueryNoopHooksRequest) String

func (m *QueryNoopHooksRequest) String() string

func (*QueryNoopHooksRequest) Unmarshal

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

func (*QueryNoopHooksRequest) XXX_DiscardUnknown

func (m *QueryNoopHooksRequest) XXX_DiscardUnknown()

func (*QueryNoopHooksRequest) XXX_Marshal

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

func (*QueryNoopHooksRequest) XXX_Merge

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

func (*QueryNoopHooksRequest) XXX_Size

func (m *QueryNoopHooksRequest) XXX_Size() int

func (*QueryNoopHooksRequest) XXX_Unmarshal

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

type QueryNoopHooksResponse

type QueryNoopHooksResponse struct {
	NoopHooks  []NoopHook          `protobuf:"bytes,1,rep,name=noop_hooks,json=noopHooks,proto3" json:"noop_hooks"`
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryNoopHooksResponse ...

func (*QueryNoopHooksResponse) Descriptor

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

func (*QueryNoopHooksResponse) GetNoopHooks

func (m *QueryNoopHooksResponse) GetNoopHooks() []NoopHook

func (*QueryNoopHooksResponse) GetPagination

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

func (*QueryNoopHooksResponse) Marshal

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

func (*QueryNoopHooksResponse) MarshalTo

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

func (*QueryNoopHooksResponse) MarshalToSizedBuffer

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

func (*QueryNoopHooksResponse) ProtoMessage

func (*QueryNoopHooksResponse) ProtoMessage()

func (*QueryNoopHooksResponse) Reset

func (m *QueryNoopHooksResponse) Reset()

func (*QueryNoopHooksResponse) Size

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

func (*QueryNoopHooksResponse) String

func (m *QueryNoopHooksResponse) String() string

func (*QueryNoopHooksResponse) Unmarshal

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

func (*QueryNoopHooksResponse) XXX_DiscardUnknown

func (m *QueryNoopHooksResponse) XXX_DiscardUnknown()

func (*QueryNoopHooksResponse) XXX_Marshal

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

func (*QueryNoopHooksResponse) XXX_Merge

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

func (*QueryNoopHooksResponse) XXX_Size

func (m *QueryNoopHooksResponse) XXX_Size() int

func (*QueryNoopHooksResponse) XXX_Unmarshal

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

type QueryQuoteGasPaymentRequest

type QueryQuoteGasPaymentRequest struct {
	IgpId             string `protobuf:"bytes,1,opt,name=igp_id,json=igpId,proto3" json:"igp_id,omitempty"`
	DestinationDomain string `protobuf:"bytes,2,opt,name=destination_domain,json=destinationDomain,proto3" json:"destination_domain,omitempty"`
	GasLimit          string `protobuf:"bytes,3,opt,name=gas_limit,json=gasLimit,proto3" json:"gas_limit,omitempty"`
}

QueryQuoteGasPaymentRequest ...

func (*QueryQuoteGasPaymentRequest) Descriptor

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

func (*QueryQuoteGasPaymentRequest) GetDestinationDomain

func (m *QueryQuoteGasPaymentRequest) GetDestinationDomain() string

func (*QueryQuoteGasPaymentRequest) GetGasLimit

func (m *QueryQuoteGasPaymentRequest) GetGasLimit() string

func (*QueryQuoteGasPaymentRequest) GetIgpId

func (m *QueryQuoteGasPaymentRequest) GetIgpId() string

func (*QueryQuoteGasPaymentRequest) Marshal

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

func (*QueryQuoteGasPaymentRequest) MarshalTo

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

func (*QueryQuoteGasPaymentRequest) MarshalToSizedBuffer

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

func (*QueryQuoteGasPaymentRequest) ProtoMessage

func (*QueryQuoteGasPaymentRequest) ProtoMessage()

func (*QueryQuoteGasPaymentRequest) Reset

func (m *QueryQuoteGasPaymentRequest) Reset()

func (*QueryQuoteGasPaymentRequest) Size

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

func (*QueryQuoteGasPaymentRequest) String

func (m *QueryQuoteGasPaymentRequest) String() string

func (*QueryQuoteGasPaymentRequest) Unmarshal

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

func (*QueryQuoteGasPaymentRequest) XXX_DiscardUnknown

func (m *QueryQuoteGasPaymentRequest) XXX_DiscardUnknown()

func (*QueryQuoteGasPaymentRequest) XXX_Marshal

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

func (*QueryQuoteGasPaymentRequest) XXX_Merge

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

func (*QueryQuoteGasPaymentRequest) XXX_Size

func (m *QueryQuoteGasPaymentRequest) XXX_Size() int

func (*QueryQuoteGasPaymentRequest) XXX_Unmarshal

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

type QueryQuoteGasPaymentResponse

type QueryQuoteGasPaymentResponse struct {
	GasPayment github_com_cosmos_cosmos_sdk_types.Coins `` /* 135-byte string literal not displayed */
}

QueryQuoteGasPaymentResponse ...

func (*QueryQuoteGasPaymentResponse) Descriptor

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

func (*QueryQuoteGasPaymentResponse) GetGasPayment

func (*QueryQuoteGasPaymentResponse) Marshal

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

func (*QueryQuoteGasPaymentResponse) MarshalTo

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

func (*QueryQuoteGasPaymentResponse) MarshalToSizedBuffer

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

func (*QueryQuoteGasPaymentResponse) ProtoMessage

func (*QueryQuoteGasPaymentResponse) ProtoMessage()

func (*QueryQuoteGasPaymentResponse) Reset

func (m *QueryQuoteGasPaymentResponse) Reset()

func (*QueryQuoteGasPaymentResponse) Size

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

func (*QueryQuoteGasPaymentResponse) String

func (*QueryQuoteGasPaymentResponse) Unmarshal

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

func (*QueryQuoteGasPaymentResponse) XXX_DiscardUnknown

func (m *QueryQuoteGasPaymentResponse) XXX_DiscardUnknown()

func (*QueryQuoteGasPaymentResponse) XXX_Marshal

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

func (*QueryQuoteGasPaymentResponse) XXX_Merge

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

func (*QueryQuoteGasPaymentResponse) XXX_Size

func (m *QueryQuoteGasPaymentResponse) XXX_Size() int

func (*QueryQuoteGasPaymentResponse) XXX_Unmarshal

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

type QueryServer

type QueryServer interface {
	// Igps ...
	Igps(context.Context, *QueryIgpsRequest) (*QueryIgpsResponse, error)
	// Igp ...
	Igp(context.Context, *QueryIgpRequest) (*QueryIgpResponse, error)
	// DestinationGasConfigs ...
	DestinationGasConfigs(context.Context, *QueryDestinationGasConfigsRequest) (*QueryDestinationGasConfigsResponse, error)
	// QuoteGasPayment ...
	QuoteGasPayment(context.Context, *QueryQuoteGasPaymentRequest) (*QueryQuoteGasPaymentResponse, error)
	// MerkleTreeHooks ...
	MerkleTreeHooks(context.Context, *QueryMerkleTreeHooksRequest) (*QueryMerkleTreeHooksResponse, error)
	// MerkleTreeHook ...
	MerkleTreeHook(context.Context, *QueryMerkleTreeHookRequest) (*QueryMerkleTreeHookResponse, error)
	// NoopHooks ...
	NoopHooks(context.Context, *QueryNoopHooksRequest) (*QueryNoopHooksResponse, error)
	// NoopHook ...
	NoopHook(context.Context, *QueryNoopHookRequest) (*QueryNoopHookResponse, error)
}

QueryServer is the server API for Query service.

type Tree

type Tree struct {
	// branch ...
	Branch [][]byte `protobuf:"bytes,1,rep,name=branch,proto3" json:"branch,omitempty"`
	// count ...
	Count uint32 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
}

Tree represents an incremental merkle tree. Contains current branch and the number of inserted leaves in the tree.

func ProtoFromTree

func ProtoFromTree(tree *util.MerkleTree) *Tree

ProtoFromTree converts a util.MerkleTree to a protobuf Tree structure. This function is used for serialization purposes, converting the internal merkle tree representation to a format that can be stored or transmitted.

Parameters:

  • tree: The util.MerkleTree to convert

Returns:

  • *Tree: The protobuf Tree structure for serialization

func (*Tree) Descriptor

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

func (*Tree) Marshal

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

func (*Tree) MarshalTo

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

func (*Tree) MarshalToSizedBuffer

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

func (*Tree) ProtoMessage

func (*Tree) ProtoMessage()

func (*Tree) Reset

func (m *Tree) Reset()

func (*Tree) Size

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

func (*Tree) String

func (m *Tree) String() string

func (*Tree) Unmarshal

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

func (*Tree) XXX_DiscardUnknown

func (m *Tree) XXX_DiscardUnknown()

func (*Tree) XXX_Marshal

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

func (*Tree) XXX_Merge

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

func (*Tree) XXX_Size

func (m *Tree) XXX_Size() int

func (*Tree) XXX_Unmarshal

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

type TreeResponse

type TreeResponse struct {
	// leafs ...
	Leafs [][]byte `protobuf:"bytes,1,rep,name=leafs,proto3" json:"leafs,omitempty"`
	// count ...
	Count uint32 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
	// root ...
	Root []byte `protobuf:"bytes,3,opt,name=root,proto3" json:"root,omitempty"`
}

TreeResponse

func (*TreeResponse) Descriptor

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

func (*TreeResponse) GetCount

func (m *TreeResponse) GetCount() uint32

func (*TreeResponse) GetLeafs

func (m *TreeResponse) GetLeafs() [][]byte

func (*TreeResponse) GetRoot

func (m *TreeResponse) GetRoot() []byte

func (*TreeResponse) Marshal

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

func (*TreeResponse) MarshalTo

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

func (*TreeResponse) MarshalToSizedBuffer

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

func (*TreeResponse) ProtoMessage

func (*TreeResponse) ProtoMessage()

func (*TreeResponse) Reset

func (m *TreeResponse) Reset()

func (*TreeResponse) Size

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

func (*TreeResponse) String

func (m *TreeResponse) String() string

func (*TreeResponse) Unmarshal

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

func (*TreeResponse) XXX_DiscardUnknown

func (m *TreeResponse) XXX_DiscardUnknown()

func (*TreeResponse) XXX_Marshal

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

func (*TreeResponse) XXX_Merge

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

func (*TreeResponse) XXX_Size

func (m *TreeResponse) XXX_Size() int

func (*TreeResponse) XXX_Unmarshal

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

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServer) Claim

func (*UnimplementedMsgServer) CreateIgp

func (*UnimplementedMsgServer) CreateMerkleTreeHook

func (*UnimplementedMsgServer) CreateNoopHook

func (*UnimplementedMsgServer) PayForGas

func (*UnimplementedMsgServer) SetDestinationGasConfig

func (*UnimplementedMsgServer) SetIgpOwner

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) Igp

func (*UnimplementedQueryServer) Igps

func (*UnimplementedQueryServer) MerkleTreeHook

func (*UnimplementedQueryServer) MerkleTreeHooks

func (*UnimplementedQueryServer) NoopHook

func (*UnimplementedQueryServer) NoopHooks

func (*UnimplementedQueryServer) QuoteGasPayment

type WrappedMerkleTreeHookResponse

type WrappedMerkleTreeHookResponse struct {
	Id         string        `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Owner      string        `protobuf:"bytes,2,opt,name=owner,proto3" json:"owner,omitempty"`
	MailboxId  string        `protobuf:"bytes,3,opt,name=mailbox_id,json=mailboxId,proto3" json:"mailbox_id,omitempty"`
	MerkleTree *TreeResponse `protobuf:"bytes,4,opt,name=merkle_tree,json=merkleTree,proto3" json:"merkle_tree,omitempty"`
}

WrappedMerkleTreeHookResponse

func (*WrappedMerkleTreeHookResponse) Descriptor

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

func (*WrappedMerkleTreeHookResponse) GetId

func (*WrappedMerkleTreeHookResponse) GetMailboxId

func (m *WrappedMerkleTreeHookResponse) GetMailboxId() string

func (*WrappedMerkleTreeHookResponse) GetMerkleTree

func (m *WrappedMerkleTreeHookResponse) GetMerkleTree() *TreeResponse

func (*WrappedMerkleTreeHookResponse) GetOwner

func (m *WrappedMerkleTreeHookResponse) GetOwner() string

func (*WrappedMerkleTreeHookResponse) Marshal

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

func (*WrappedMerkleTreeHookResponse) MarshalTo

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

func (*WrappedMerkleTreeHookResponse) MarshalToSizedBuffer

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

func (*WrappedMerkleTreeHookResponse) ProtoMessage

func (*WrappedMerkleTreeHookResponse) ProtoMessage()

func (*WrappedMerkleTreeHookResponse) Reset

func (m *WrappedMerkleTreeHookResponse) Reset()

func (*WrappedMerkleTreeHookResponse) Size

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

func (*WrappedMerkleTreeHookResponse) String

func (*WrappedMerkleTreeHookResponse) Unmarshal

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

func (*WrappedMerkleTreeHookResponse) XXX_DiscardUnknown

func (m *WrappedMerkleTreeHookResponse) XXX_DiscardUnknown()

func (*WrappedMerkleTreeHookResponse) XXX_Marshal

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

func (*WrappedMerkleTreeHookResponse) XXX_Merge

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

func (*WrappedMerkleTreeHookResponse) XXX_Size

func (m *WrappedMerkleTreeHookResponse) XXX_Size() int

func (*WrappedMerkleTreeHookResponse) XXX_Unmarshal

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

Jump to

Keyboard shortcuts

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