types

package
v1.3.21 Latest Latest
Warning

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

Go to latest
Published: Feb 20, 2024 License: MIT Imports: 27 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// ModuleName defines the module name
	ModuleName = "metastore"

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

	// RouterKey defines the module's message routing key
	RouterKey = ModuleName

	// MemStoreKey defines the in-memory store key
	MemStoreKey = "mem_metastore"
)
View Source
const DefaultIndex uint64 = 1

DefaultIndex is the default global index

View Source
const (
	// MetaInfoKeyPrefix is the prefix to retrieve all MetaInfo
	MetaInfoKeyPrefix = "MetaInfo/value/"
)
View Source
const (
	// MetadataRequestKeyPrefix is the prefix to retrieve all MetadataRequest
	MetadataRequestKeyPrefix = "MetadataRequest/value/"
)
View Source
const TypeMsgApproveFeepayerRequest = "approve_feepayer_request"
View Source
const TypeMsgCreateMetadataRequest = "set_metadata_request"
View Source
const TypeMsgRevokeFeepayerRequest = "revoke_feepayer_request"

Variables

View Source
var (
	ErrMetaInfoNotFound        = sdkerrors.Register(ModuleName, 1100, "meta info not found")
	ErrFeePayerAlreadyApproved = sdkerrors.Register(ModuleName, 1101, "fee payer already approved")
	ErrFeePayerMismatch        = sdkerrors.Register(ModuleName, 1102, "fee payer mismatch")
	ErrFeePayerAlreadyRevoked  = sdkerrors.Register(ModuleName, 1103, "fee payer already revoked")
)

x/metastore module sentinel errors

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 (
	ErrInvalidLengthMetaInfo        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowMetaInfo          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupMetaInfo = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthMetadataRequest        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowMetadataRequest          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupMetadataRequest = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthParams        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowParams          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupParams = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthQuery        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowQuery          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupQuery = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	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 MetaInfoQueryStatus_name = map[int32]string{
	0: "ALL",
	1: "PENDING",
	2: "APPROVED",
}
View Source
var MetaInfoQueryStatus_value = map[string]int32{
	"ALL":      0,
	"PENDING":  1,
	"APPROVED": 2,
}
View Source
var MetaTxStatus_name = map[int32]string{
	0: "META_TX_CREATED",
	1: "META_TX_VALIDATED",
	2: "META_TX_COMPLETED",
}
View Source
var MetaTxStatus_value = map[string]int32{
	"META_TX_CREATED":   0,
	"META_TX_VALIDATED": 1,
	"META_TX_COMPLETED": 2,
}
View Source
var (

	// AminoCdc is a amino codec created to support amino JSON compatible msgs.
	ModuleCdc = codec.NewAminoCodec(amino)
)

Functions

func KeyPrefix

func KeyPrefix(p string) []byte

func MetaInfoKey

func MetaInfoKey(
	chainId string,
	dappAddress string,
) []byte

MetaInfoKey returns the store key to retrieve a MetaInfo from the index fields

func MetadataRequestKey

func MetadataRequestKey(
	chainId string,
	eventNonce uint64,
	claimHash []byte,
) []byte

MetadataRequestKey returns the store key to retrieve a MetadataRequest from the index fields

func ParamKeyTable

func ParamKeyTable() paramtypes.KeyTable

ParamKeyTable the param key table for launch module

func RegisterCodec

func RegisterCodec(cdc *codec.LegacyAmino)

func RegisterInterfaces

func RegisterInterfaces(registry cdctypes.InterfaceRegistry)

func RegisterLegacyAminoCodec

func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino)

func RegisterMsgServer

func RegisterMsgServer(s grpc1.Server, srv MsgServer)

func RegisterQueryServer

func RegisterQueryServer(s grpc1.Server, srv QueryServer)

Types

type AccountKeeper

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

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

type AttestationKeeper

type AttestationKeeper interface {
	// Methods imported from attestation should be defined here
	CheckOrchestratorValidatorInSet(ctx sdk.Context, orchestrator string) error
	ClaimHandlerCommon(ctx sdk.Context, msgAny *codectypes.Any, msg attestationTypes.Claim) error
}

type BankKeeper

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

BankKeeper defines the expected interface needed to retrieve account balances.

type EventFeePayerApproved

type EventFeePayerApproved struct {
	ChainId     string `protobuf:"bytes,1,opt,name=chainId,proto3" json:"chainId,omitempty"`
	DaapAddress string `protobuf:"bytes,2,opt,name=daapAddress,proto3" json:"daapAddress,omitempty"`
	FeePayer    string `protobuf:"bytes,3,opt,name=feePayer,proto3" json:"feePayer,omitempty"`
}

func (*EventFeePayerApproved) Descriptor

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

func (*EventFeePayerApproved) GetChainId

func (m *EventFeePayerApproved) GetChainId() string

func (*EventFeePayerApproved) GetDaapAddress

func (m *EventFeePayerApproved) GetDaapAddress() string

func (*EventFeePayerApproved) GetFeePayer

func (m *EventFeePayerApproved) GetFeePayer() string

func (*EventFeePayerApproved) Marshal

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

func (*EventFeePayerApproved) MarshalTo

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

func (*EventFeePayerApproved) MarshalToSizedBuffer

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

func (*EventFeePayerApproved) ProtoMessage

func (*EventFeePayerApproved) ProtoMessage()

func (*EventFeePayerApproved) Reset

func (m *EventFeePayerApproved) Reset()

func (*EventFeePayerApproved) Size

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

func (*EventFeePayerApproved) String

func (m *EventFeePayerApproved) String() string

func (*EventFeePayerApproved) Unmarshal

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

func (*EventFeePayerApproved) XXX_DiscardUnknown

func (m *EventFeePayerApproved) XXX_DiscardUnknown()

func (*EventFeePayerApproved) XXX_Marshal

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

func (*EventFeePayerApproved) XXX_Merge

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

func (*EventFeePayerApproved) XXX_Size

func (m *EventFeePayerApproved) XXX_Size() int

func (*EventFeePayerApproved) XXX_Unmarshal

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

type EventFeePayerRevoked added in v1.3.3

type EventFeePayerRevoked struct {
	ChainId     string `protobuf:"bytes,1,opt,name=chainId,proto3" json:"chainId,omitempty"`
	DaapAddress string `protobuf:"bytes,2,opt,name=daapAddress,proto3" json:"daapAddress,omitempty"`
	FeePayer    string `protobuf:"bytes,3,opt,name=feePayer,proto3" json:"feePayer,omitempty"`
}

func (*EventFeePayerRevoked) Descriptor added in v1.3.3

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

func (*EventFeePayerRevoked) GetChainId added in v1.3.3

func (m *EventFeePayerRevoked) GetChainId() string

func (*EventFeePayerRevoked) GetDaapAddress added in v1.3.3

func (m *EventFeePayerRevoked) GetDaapAddress() string

func (*EventFeePayerRevoked) GetFeePayer added in v1.3.3

func (m *EventFeePayerRevoked) GetFeePayer() string

func (*EventFeePayerRevoked) Marshal added in v1.3.3

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

func (*EventFeePayerRevoked) MarshalTo added in v1.3.3

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

func (*EventFeePayerRevoked) MarshalToSizedBuffer added in v1.3.3

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

func (*EventFeePayerRevoked) ProtoMessage added in v1.3.3

func (*EventFeePayerRevoked) ProtoMessage()

func (*EventFeePayerRevoked) Reset added in v1.3.3

func (m *EventFeePayerRevoked) Reset()

func (*EventFeePayerRevoked) Size added in v1.3.3

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

func (*EventFeePayerRevoked) String added in v1.3.3

func (m *EventFeePayerRevoked) String() string

func (*EventFeePayerRevoked) Unmarshal added in v1.3.3

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

func (*EventFeePayerRevoked) XXX_DiscardUnknown added in v1.3.3

func (m *EventFeePayerRevoked) XXX_DiscardUnknown()

func (*EventFeePayerRevoked) XXX_Marshal added in v1.3.3

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

func (*EventFeePayerRevoked) XXX_Merge added in v1.3.3

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

func (*EventFeePayerRevoked) XXX_Size added in v1.3.3

func (m *EventFeePayerRevoked) XXX_Size() int

func (*EventFeePayerRevoked) XXX_Unmarshal added in v1.3.3

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

type EventMetaInfoCreated

type EventMetaInfoCreated struct {
	ChainId     string `protobuf:"bytes,1,opt,name=chainId,proto3" json:"chainId,omitempty"`
	DaapAddress string `protobuf:"bytes,2,opt,name=daapAddress,proto3" json:"daapAddress,omitempty"`
	FeePayer    string `protobuf:"bytes,3,opt,name=feePayer,proto3" json:"feePayer,omitempty"`
}

func (*EventMetaInfoCreated) Descriptor

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

func (*EventMetaInfoCreated) GetChainId

func (m *EventMetaInfoCreated) GetChainId() string

func (*EventMetaInfoCreated) GetDaapAddress

func (m *EventMetaInfoCreated) GetDaapAddress() string

func (*EventMetaInfoCreated) GetFeePayer

func (m *EventMetaInfoCreated) GetFeePayer() string

func (*EventMetaInfoCreated) Marshal

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

func (*EventMetaInfoCreated) MarshalTo

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

func (*EventMetaInfoCreated) MarshalToSizedBuffer

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

func (*EventMetaInfoCreated) ProtoMessage

func (*EventMetaInfoCreated) ProtoMessage()

func (*EventMetaInfoCreated) Reset

func (m *EventMetaInfoCreated) Reset()

func (*EventMetaInfoCreated) Size

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

func (*EventMetaInfoCreated) String

func (m *EventMetaInfoCreated) String() string

func (*EventMetaInfoCreated) Unmarshal

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

func (*EventMetaInfoCreated) XXX_DiscardUnknown

func (m *EventMetaInfoCreated) XXX_DiscardUnknown()

func (*EventMetaInfoCreated) XXX_Marshal

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

func (*EventMetaInfoCreated) XXX_Merge

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

func (*EventMetaInfoCreated) XXX_Size

func (m *EventMetaInfoCreated) XXX_Size() int

func (*EventMetaInfoCreated) XXX_Unmarshal

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

type EventMetadataRequestCreated

type EventMetadataRequestCreated struct {
	AttestationId []byte `protobuf:"bytes,1,opt,name=attestation_id,json=attestationId,proto3" json:"attestation_id,omitempty"`
	ChainId       string `protobuf:"bytes,2,opt,name=chainId,proto3" json:"chainId,omitempty"`
	EventNonce    uint64 `protobuf:"varint,3,opt,name=eventNonce,proto3" json:"eventNonce,omitempty"`
	BlockHeight   uint64 `protobuf:"varint,4,opt,name=blockHeight,proto3" json:"blockHeight,omitempty"`
	DaapAddress   string `protobuf:"bytes,5,opt,name=daapAddress,proto3" json:"daapAddress,omitempty"`
	FeePayer      string `protobuf:"bytes,6,opt,name=feePayer,proto3" json:"feePayer,omitempty"`
}

func (*EventMetadataRequestCreated) Descriptor

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

func (*EventMetadataRequestCreated) GetAttestationId

func (m *EventMetadataRequestCreated) GetAttestationId() []byte

func (*EventMetadataRequestCreated) GetBlockHeight

func (m *EventMetadataRequestCreated) GetBlockHeight() uint64

func (*EventMetadataRequestCreated) GetChainId

func (m *EventMetadataRequestCreated) GetChainId() string

func (*EventMetadataRequestCreated) GetDaapAddress

func (m *EventMetadataRequestCreated) GetDaapAddress() string

func (*EventMetadataRequestCreated) GetEventNonce

func (m *EventMetadataRequestCreated) GetEventNonce() uint64

func (*EventMetadataRequestCreated) GetFeePayer

func (m *EventMetadataRequestCreated) GetFeePayer() string

func (*EventMetadataRequestCreated) Marshal

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

func (*EventMetadataRequestCreated) MarshalTo

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

func (*EventMetadataRequestCreated) MarshalToSizedBuffer

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

func (*EventMetadataRequestCreated) ProtoMessage

func (*EventMetadataRequestCreated) ProtoMessage()

func (*EventMetadataRequestCreated) Reset

func (m *EventMetadataRequestCreated) Reset()

func (*EventMetadataRequestCreated) Size

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

func (*EventMetadataRequestCreated) String

func (m *EventMetadataRequestCreated) String() string

func (*EventMetadataRequestCreated) Unmarshal

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

func (*EventMetadataRequestCreated) XXX_DiscardUnknown

func (m *EventMetadataRequestCreated) XXX_DiscardUnknown()

func (*EventMetadataRequestCreated) XXX_Marshal

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

func (*EventMetadataRequestCreated) XXX_Merge

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

func (*EventMetadataRequestCreated) XXX_Size

func (m *EventMetadataRequestCreated) XXX_Size() int

func (*EventMetadataRequestCreated) XXX_Unmarshal

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

type GenesisState

type GenesisState struct {
	Params              Params            `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
	MetaInfoList        []MetaInfo        `protobuf:"bytes,2,rep,name=metaInfoList,proto3" json:"metaInfoList"`
	MetadataRequestList []MetadataRequest `protobuf:"bytes,3,rep,name=metadataRequestList,proto3" json:"metadataRequestList"`
}

GenesisState defines the metastore module's genesis state.

func DefaultGenesis

func DefaultGenesis() *GenesisState

DefaultGenesis returns the default genesis state

func (*GenesisState) Descriptor

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

func (*GenesisState) GetMetaInfoList

func (m *GenesisState) GetMetaInfoList() []MetaInfo

func (*GenesisState) GetMetadataRequestList

func (m *GenesisState) GetMetadataRequestList() []MetadataRequest

func (*GenesisState) GetParams

func (m *GenesisState) GetParams() Params

func (*GenesisState) Marshal

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

func (*GenesisState) MarshalTo

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

func (*GenesisState) MarshalToSizedBuffer

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

func (*GenesisState) ProtoMessage

func (*GenesisState) ProtoMessage()

func (*GenesisState) Reset

func (m *GenesisState) Reset()

func (*GenesisState) Size

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

func (*GenesisState) String

func (m *GenesisState) String() string

func (*GenesisState) Unmarshal

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

func (GenesisState) Validate

func (gs GenesisState) Validate() error

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

func (*GenesisState) XXX_DiscardUnknown

func (m *GenesisState) XXX_DiscardUnknown()

func (*GenesisState) XXX_Marshal

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

func (*GenesisState) XXX_Merge

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

func (*GenesisState) XXX_Size

func (m *GenesisState) XXX_Size() int

func (*GenesisState) XXX_Unmarshal

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

type MetaInfo

type MetaInfo struct {
	ChainId          string `protobuf:"bytes,1,opt,name=chainId,proto3" json:"chainId,omitempty"`
	DappAddress      string `protobuf:"bytes,2,opt,name=dappAddress,proto3" json:"dappAddress,omitempty"`
	FeePayer         string `protobuf:"bytes,3,opt,name=feePayer,proto3" json:"feePayer,omitempty"`
	FeePayerApproved bool   `protobuf:"varint,4,opt,name=feePayerApproved,proto3" json:"feePayerApproved,omitempty"`
}

func NewMetadataInfo

func NewMetadataInfo(chainId string, daapAddress string, feePayer string) *MetaInfo

func (*MetaInfo) Descriptor

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

func (*MetaInfo) GetChainId

func (m *MetaInfo) GetChainId() string

func (*MetaInfo) GetDappAddress

func (m *MetaInfo) GetDappAddress() string

func (*MetaInfo) GetFeePayer

func (m *MetaInfo) GetFeePayer() string

func (*MetaInfo) GetFeePayerApproved

func (m *MetaInfo) GetFeePayerApproved() bool

func (*MetaInfo) Marshal

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

func (*MetaInfo) MarshalTo

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

func (*MetaInfo) MarshalToSizedBuffer

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

func (*MetaInfo) ProtoMessage

func (*MetaInfo) ProtoMessage()

func (*MetaInfo) Reset

func (m *MetaInfo) Reset()

func (*MetaInfo) Size

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

func (*MetaInfo) String

func (m *MetaInfo) String() string

func (*MetaInfo) Unmarshal

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

func (*MetaInfo) XXX_DiscardUnknown

func (m *MetaInfo) XXX_DiscardUnknown()

func (*MetaInfo) XXX_Marshal

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

func (*MetaInfo) XXX_Merge

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

func (*MetaInfo) XXX_Size

func (m *MetaInfo) XXX_Size() int

func (*MetaInfo) XXX_Unmarshal

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

type MetaInfoQueryStatus added in v1.2.55

type MetaInfoQueryStatus int32
const (
	ALL      MetaInfoQueryStatus = 0
	PENDING  MetaInfoQueryStatus = 1
	APPROVED MetaInfoQueryStatus = 2
)

func (MetaInfoQueryStatus) EnumDescriptor added in v1.2.55

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

func (MetaInfoQueryStatus) String added in v1.2.55

func (x MetaInfoQueryStatus) String() string

type MetaTxStatus

type MetaTxStatus int32
const (
	META_TX_CREATED   MetaTxStatus = 0
	META_TX_VALIDATED MetaTxStatus = 1
	META_TX_COMPLETED MetaTxStatus = 2
)

func (MetaTxStatus) EnumDescriptor

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

func (MetaTxStatus) String

func (x MetaTxStatus) String() string

type MetadataRequest

type MetadataRequest struct {
	ChainId     string       `protobuf:"bytes,1,opt,name=chainId,proto3" json:"chainId,omitempty"`
	Contract    string       `protobuf:"bytes,2,opt,name=contract,proto3" json:"contract,omitempty"`
	EventNonce  uint64       `protobuf:"varint,3,opt,name=eventNonce,proto3" json:"eventNonce,omitempty"`
	BlockHeight uint64       `protobuf:"varint,4,opt,name=blockHeight,proto3" json:"blockHeight,omitempty"`
	DaapAddress string       `protobuf:"bytes,5,opt,name=daapAddress,proto3" json:"daapAddress,omitempty"`
	FeePayer    string       `protobuf:"bytes,6,opt,name=feePayer,proto3" json:"feePayer,omitempty"`
	Status      MetaTxStatus `protobuf:"varint,7,opt,name=status,proto3,enum=routerprotocol.routerchain.metastore.MetaTxStatus" json:"status,omitempty"`
}

func NewMetadataRequest

func NewMetadataRequest(chainId string, contract string, eventNonce uint64, blockHeight uint64, daapAddress string, feePayer string) *MetadataRequest

func (*MetadataRequest) ClaimHash

func (msg *MetadataRequest) ClaimHash() ([]byte, error)

func (*MetadataRequest) Descriptor

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

func (*MetadataRequest) GetBlockHeight

func (m *MetadataRequest) GetBlockHeight() uint64

func (*MetadataRequest) GetChainId

func (m *MetadataRequest) GetChainId() string

func (*MetadataRequest) GetContract added in v1.2.59

func (m *MetadataRequest) GetContract() string

func (*MetadataRequest) GetDaapAddress

func (m *MetadataRequest) GetDaapAddress() string

func (*MetadataRequest) GetEventNonce

func (m *MetadataRequest) GetEventNonce() uint64

func (*MetadataRequest) GetFeePayer

func (m *MetadataRequest) GetFeePayer() string

func (*MetadataRequest) GetStatus

func (m *MetadataRequest) GetStatus() MetaTxStatus

func (*MetadataRequest) Marshal

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

func (*MetadataRequest) MarshalTo

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

func (*MetadataRequest) MarshalToSizedBuffer

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

func (*MetadataRequest) ProtoMessage

func (*MetadataRequest) ProtoMessage()

func (*MetadataRequest) Reset

func (m *MetadataRequest) Reset()

func (*MetadataRequest) Size

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

func (*MetadataRequest) String

func (m *MetadataRequest) String() string

func (*MetadataRequest) Unmarshal

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

func (*MetadataRequest) XXX_DiscardUnknown

func (m *MetadataRequest) XXX_DiscardUnknown()

func (*MetadataRequest) XXX_Marshal

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

func (*MetadataRequest) XXX_Merge

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

func (*MetadataRequest) XXX_Size

func (m *MetadataRequest) XXX_Size() int

func (*MetadataRequest) XXX_Unmarshal

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

type MetadataRequestClaimHash

type MetadataRequestClaimHash struct {
	ChainId     string `protobuf:"bytes,1,opt,name=chainId,proto3" json:"chainId,omitempty"`
	Contract    string `protobuf:"bytes,2,opt,name=contract,proto3" json:"contract,omitempty"`
	EventNonce  uint64 `protobuf:"varint,3,opt,name=eventNonce,proto3" json:"eventNonce,omitempty"`
	BlockHeight uint64 `protobuf:"varint,4,opt,name=blockHeight,proto3" json:"blockHeight,omitempty"`
	DaapAddress string `protobuf:"bytes,5,opt,name=daapAddress,proto3" json:"daapAddress,omitempty"`
	FeePayer    string `protobuf:"bytes,6,opt,name=feePayer,proto3" json:"feePayer,omitempty"`
}

func NewMetadataRequestClaimHash

func NewMetadataRequestClaimHash(chainId string, contract string, eventNonce uint64, blockHeight uint64, daapAddress string, feePayer string) *MetadataRequestClaimHash

func (*MetadataRequestClaimHash) Descriptor

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

func (*MetadataRequestClaimHash) GetBlockHeight

func (m *MetadataRequestClaimHash) GetBlockHeight() uint64

func (*MetadataRequestClaimHash) GetChainId

func (m *MetadataRequestClaimHash) GetChainId() string

func (*MetadataRequestClaimHash) GetContract added in v1.2.59

func (m *MetadataRequestClaimHash) GetContract() string

func (*MetadataRequestClaimHash) GetDaapAddress

func (m *MetadataRequestClaimHash) GetDaapAddress() string

func (*MetadataRequestClaimHash) GetEventNonce

func (m *MetadataRequestClaimHash) GetEventNonce() uint64

func (*MetadataRequestClaimHash) GetFeePayer

func (m *MetadataRequestClaimHash) GetFeePayer() string

func (*MetadataRequestClaimHash) Marshal

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

func (*MetadataRequestClaimHash) MarshalTo

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

func (*MetadataRequestClaimHash) MarshalToSizedBuffer

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

func (*MetadataRequestClaimHash) ProtoMessage

func (*MetadataRequestClaimHash) ProtoMessage()

func (*MetadataRequestClaimHash) Reset

func (m *MetadataRequestClaimHash) Reset()

func (*MetadataRequestClaimHash) Size

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

func (*MetadataRequestClaimHash) String

func (m *MetadataRequestClaimHash) String() string

func (*MetadataRequestClaimHash) Unmarshal

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

func (*MetadataRequestClaimHash) XXX_DiscardUnknown

func (m *MetadataRequestClaimHash) XXX_DiscardUnknown()

func (*MetadataRequestClaimHash) XXX_Marshal

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

func (*MetadataRequestClaimHash) XXX_Merge

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

func (*MetadataRequestClaimHash) XXX_Size

func (m *MetadataRequestClaimHash) XXX_Size() int

func (*MetadataRequestClaimHash) XXX_Unmarshal

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

type MsgApproveFeepayerRequest

type MsgApproveFeepayerRequest struct {
	FeePayer    string `protobuf:"bytes,1,opt,name=fee_payer,json=feePayer,proto3" json:"fee_payer,omitempty"`
	ChainId     string `protobuf:"bytes,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	DappAddress string `protobuf:"bytes,3,opt,name=dapp_address,json=dappAddress,proto3" json:"dapp_address,omitempty"`
}

func NewMsgApproveFeepayerRequest

func NewMsgApproveFeepayerRequest(feepayer string, chainId string, daapAddress string) *MsgApproveFeepayerRequest

func (*MsgApproveFeepayerRequest) Descriptor

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

func (*MsgApproveFeepayerRequest) GetChainId

func (m *MsgApproveFeepayerRequest) GetChainId() string

func (*MsgApproveFeepayerRequest) GetDappAddress

func (m *MsgApproveFeepayerRequest) GetDappAddress() string

func (*MsgApproveFeepayerRequest) GetFeePayer

func (m *MsgApproveFeepayerRequest) GetFeePayer() string

func (*MsgApproveFeepayerRequest) GetSignBytes

func (msg *MsgApproveFeepayerRequest) GetSignBytes() []byte

func (*MsgApproveFeepayerRequest) GetSigners

func (msg *MsgApproveFeepayerRequest) GetSigners() []sdk.AccAddress

func (*MsgApproveFeepayerRequest) Marshal

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

func (*MsgApproveFeepayerRequest) MarshalTo

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

func (*MsgApproveFeepayerRequest) MarshalToSizedBuffer

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

func (*MsgApproveFeepayerRequest) ProtoMessage

func (*MsgApproveFeepayerRequest) ProtoMessage()

func (*MsgApproveFeepayerRequest) Reset

func (m *MsgApproveFeepayerRequest) Reset()

func (*MsgApproveFeepayerRequest) Route

func (msg *MsgApproveFeepayerRequest) Route() string

func (*MsgApproveFeepayerRequest) Size

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

func (*MsgApproveFeepayerRequest) String

func (m *MsgApproveFeepayerRequest) String() string

func (*MsgApproveFeepayerRequest) Type

func (msg *MsgApproveFeepayerRequest) Type() string

func (*MsgApproveFeepayerRequest) Unmarshal

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

func (*MsgApproveFeepayerRequest) ValidateBasic

func (msg *MsgApproveFeepayerRequest) ValidateBasic() error

func (*MsgApproveFeepayerRequest) XXX_DiscardUnknown

func (m *MsgApproveFeepayerRequest) XXX_DiscardUnknown()

func (*MsgApproveFeepayerRequest) XXX_Marshal

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

func (*MsgApproveFeepayerRequest) XXX_Merge

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

func (*MsgApproveFeepayerRequest) XXX_Size

func (m *MsgApproveFeepayerRequest) XXX_Size() int

func (*MsgApproveFeepayerRequest) XXX_Unmarshal

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

type MsgApproveFeepayerRequestResponse

type MsgApproveFeepayerRequestResponse struct {
}

func (*MsgApproveFeepayerRequestResponse) Descriptor

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

func (*MsgApproveFeepayerRequestResponse) Marshal

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

func (*MsgApproveFeepayerRequestResponse) MarshalTo

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

func (*MsgApproveFeepayerRequestResponse) MarshalToSizedBuffer

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

func (*MsgApproveFeepayerRequestResponse) ProtoMessage

func (*MsgApproveFeepayerRequestResponse) ProtoMessage()

func (*MsgApproveFeepayerRequestResponse) Reset

func (*MsgApproveFeepayerRequestResponse) Size

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

func (*MsgApproveFeepayerRequestResponse) String

func (*MsgApproveFeepayerRequestResponse) Unmarshal

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

func (*MsgApproveFeepayerRequestResponse) XXX_DiscardUnknown

func (m *MsgApproveFeepayerRequestResponse) XXX_DiscardUnknown()

func (*MsgApproveFeepayerRequestResponse) XXX_Marshal

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

func (*MsgApproveFeepayerRequestResponse) XXX_Merge

func (*MsgApproveFeepayerRequestResponse) XXX_Size

func (m *MsgApproveFeepayerRequestResponse) XXX_Size() int

func (*MsgApproveFeepayerRequestResponse) XXX_Unmarshal

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

type MsgClient

type MsgClient interface {
	CreateMetadataRequest(ctx context.Context, in *MsgCreateMetadataRequest, opts ...grpc.CallOption) (*MsgCreateMetadataRequestResponse, error)
	ApproveFeepayerRequest(ctx context.Context, in *MsgApproveFeepayerRequest, opts ...grpc.CallOption) (*MsgApproveFeepayerRequestResponse, error)
	RevokeFeepayerRequest(ctx context.Context, in *MsgRevokeFeepayerRequest, opts ...grpc.CallOption) (*MsgRevokeFeepayerRequestResponse, 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 MsgCreateMetadataRequest

type MsgCreateMetadataRequest struct {
	Orchestrator string `protobuf:"bytes,1,opt,name=orchestrator,proto3" json:"orchestrator,omitempty"`
	ChainId      string `protobuf:"bytes,2,opt,name=chainId,proto3" json:"chainId,omitempty"`
	Contract     string `protobuf:"bytes,3,opt,name=contract,proto3" json:"contract,omitempty"`
	EventNonce   uint64 `protobuf:"varint,4,opt,name=eventNonce,proto3" json:"eventNonce,omitempty"`
	BlockHeight  uint64 `protobuf:"varint,5,opt,name=blockHeight,proto3" json:"blockHeight,omitempty"`
	DaapAddress  string `protobuf:"bytes,6,opt,name=daapAddress,proto3" json:"daapAddress,omitempty"`
	FeePayer     string `protobuf:"bytes,7,opt,name=feePayer,proto3" json:"feePayer,omitempty"`
}

func NewMsgCreateMetadataRequest

func NewMsgCreateMetadataRequest(orchestrator string, chainId string, contract string, eventNonce uint64, blockHeight uint64, daapAddress string, feePayer string) *MsgCreateMetadataRequest

func (*MsgCreateMetadataRequest) ClaimHash

func (msg *MsgCreateMetadataRequest) ClaimHash() ([]byte, error)

Hash implements MsgCreateMetadataRequest.Hash modify this with care as it is security sensitive. If an element of the claim is not in this hash a single hostile validator could engineer a hash collision and execute a version of the claim with any unhashed data changed to benefit them. note that the Orchestrator is the only field excluded from this hash, this is because that value is used higher up in the store structure for who has made what claim and is verified by the msg ante-handler for signatures

func (*MsgCreateMetadataRequest) Descriptor

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

func (*MsgCreateMetadataRequest) GetBlockHeight

func (m *MsgCreateMetadataRequest) GetBlockHeight() uint64

func (*MsgCreateMetadataRequest) GetChainId

func (m *MsgCreateMetadataRequest) GetChainId() string

func (MsgCreateMetadataRequest) GetClaimer

func (msg MsgCreateMetadataRequest) GetClaimer() sdk.AccAddress

func (*MsgCreateMetadataRequest) GetContract added in v1.2.59

func (m *MsgCreateMetadataRequest) GetContract() string

func (*MsgCreateMetadataRequest) GetDaapAddress

func (m *MsgCreateMetadataRequest) GetDaapAddress() string

func (*MsgCreateMetadataRequest) GetEventNonce

func (m *MsgCreateMetadataRequest) GetEventNonce() uint64

func (*MsgCreateMetadataRequest) GetFeePayer

func (m *MsgCreateMetadataRequest) GetFeePayer() string

func (*MsgCreateMetadataRequest) GetOrchestrator

func (m *MsgCreateMetadataRequest) GetOrchestrator() string

func (*MsgCreateMetadataRequest) GetSignBytes

func (msg *MsgCreateMetadataRequest) GetSignBytes() []byte

func (*MsgCreateMetadataRequest) GetSigners

func (msg *MsgCreateMetadataRequest) GetSigners() []sdk.AccAddress

func (*MsgCreateMetadataRequest) GetType

GetType returns the type of the claim

func (*MsgCreateMetadataRequest) Marshal

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

func (*MsgCreateMetadataRequest) MarshalTo

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

func (*MsgCreateMetadataRequest) MarshalToSizedBuffer

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

func (*MsgCreateMetadataRequest) ProtoMessage

func (*MsgCreateMetadataRequest) ProtoMessage()

func (*MsgCreateMetadataRequest) Reset

func (m *MsgCreateMetadataRequest) Reset()

func (*MsgCreateMetadataRequest) Route

func (msg *MsgCreateMetadataRequest) Route() string

func (*MsgCreateMetadataRequest) Size

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

func (*MsgCreateMetadataRequest) String

func (m *MsgCreateMetadataRequest) String() string

func (*MsgCreateMetadataRequest) Type

func (msg *MsgCreateMetadataRequest) Type() string

func (*MsgCreateMetadataRequest) Unmarshal

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

func (*MsgCreateMetadataRequest) ValidateBasic

func (msg *MsgCreateMetadataRequest) ValidateBasic() error

func (*MsgCreateMetadataRequest) XXX_DiscardUnknown

func (m *MsgCreateMetadataRequest) XXX_DiscardUnknown()

func (*MsgCreateMetadataRequest) XXX_Marshal

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

func (*MsgCreateMetadataRequest) XXX_Merge

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

func (*MsgCreateMetadataRequest) XXX_Size

func (m *MsgCreateMetadataRequest) XXX_Size() int

func (*MsgCreateMetadataRequest) XXX_Unmarshal

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

type MsgCreateMetadataRequestResponse

type MsgCreateMetadataRequestResponse struct {
}

func (*MsgCreateMetadataRequestResponse) Descriptor

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

func (*MsgCreateMetadataRequestResponse) Marshal

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

func (*MsgCreateMetadataRequestResponse) MarshalTo

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

func (*MsgCreateMetadataRequestResponse) MarshalToSizedBuffer

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

func (*MsgCreateMetadataRequestResponse) ProtoMessage

func (*MsgCreateMetadataRequestResponse) ProtoMessage()

func (*MsgCreateMetadataRequestResponse) Reset

func (*MsgCreateMetadataRequestResponse) Size

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

func (*MsgCreateMetadataRequestResponse) String

func (*MsgCreateMetadataRequestResponse) Unmarshal

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

func (*MsgCreateMetadataRequestResponse) XXX_DiscardUnknown

func (m *MsgCreateMetadataRequestResponse) XXX_DiscardUnknown()

func (*MsgCreateMetadataRequestResponse) XXX_Marshal

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

func (*MsgCreateMetadataRequestResponse) XXX_Merge

func (*MsgCreateMetadataRequestResponse) XXX_Size

func (m *MsgCreateMetadataRequestResponse) XXX_Size() int

func (*MsgCreateMetadataRequestResponse) XXX_Unmarshal

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

type MsgRevokeFeepayerRequest added in v1.3.3

type MsgRevokeFeepayerRequest struct {
	Feepayer    string `protobuf:"bytes,1,opt,name=feepayer,proto3" json:"feepayer,omitempty"`
	ChainId     string `protobuf:"bytes,2,opt,name=chainId,proto3" json:"chainId,omitempty"`
	DappAddress string `protobuf:"bytes,3,opt,name=dappAddress,proto3" json:"dappAddress,omitempty"`
}

func NewMsgRevokeFeepayerRequest added in v1.3.3

func NewMsgRevokeFeepayerRequest(feepayer string, chainId string, dappAddress string) *MsgRevokeFeepayerRequest

func (*MsgRevokeFeepayerRequest) Descriptor added in v1.3.3

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

func (*MsgRevokeFeepayerRequest) GetChainId added in v1.3.3

func (m *MsgRevokeFeepayerRequest) GetChainId() string

func (*MsgRevokeFeepayerRequest) GetDappAddress added in v1.3.3

func (m *MsgRevokeFeepayerRequest) GetDappAddress() string

func (*MsgRevokeFeepayerRequest) GetFeepayer added in v1.3.3

func (m *MsgRevokeFeepayerRequest) GetFeepayer() string

func (*MsgRevokeFeepayerRequest) GetSignBytes added in v1.3.3

func (msg *MsgRevokeFeepayerRequest) GetSignBytes() []byte

func (*MsgRevokeFeepayerRequest) GetSigners added in v1.3.3

func (msg *MsgRevokeFeepayerRequest) GetSigners() []sdk.AccAddress

func (*MsgRevokeFeepayerRequest) Marshal added in v1.3.3

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

func (*MsgRevokeFeepayerRequest) MarshalTo added in v1.3.3

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

func (*MsgRevokeFeepayerRequest) MarshalToSizedBuffer added in v1.3.3

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

func (*MsgRevokeFeepayerRequest) ProtoMessage added in v1.3.3

func (*MsgRevokeFeepayerRequest) ProtoMessage()

func (*MsgRevokeFeepayerRequest) Reset added in v1.3.3

func (m *MsgRevokeFeepayerRequest) Reset()

func (*MsgRevokeFeepayerRequest) Route added in v1.3.3

func (msg *MsgRevokeFeepayerRequest) Route() string

func (*MsgRevokeFeepayerRequest) Size added in v1.3.3

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

func (*MsgRevokeFeepayerRequest) String added in v1.3.3

func (m *MsgRevokeFeepayerRequest) String() string

func (*MsgRevokeFeepayerRequest) Type added in v1.3.3

func (msg *MsgRevokeFeepayerRequest) Type() string

func (*MsgRevokeFeepayerRequest) Unmarshal added in v1.3.3

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

func (*MsgRevokeFeepayerRequest) ValidateBasic added in v1.3.3

func (msg *MsgRevokeFeepayerRequest) ValidateBasic() error

func (*MsgRevokeFeepayerRequest) XXX_DiscardUnknown added in v1.3.3

func (m *MsgRevokeFeepayerRequest) XXX_DiscardUnknown()

func (*MsgRevokeFeepayerRequest) XXX_Marshal added in v1.3.3

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

func (*MsgRevokeFeepayerRequest) XXX_Merge added in v1.3.3

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

func (*MsgRevokeFeepayerRequest) XXX_Size added in v1.3.3

func (m *MsgRevokeFeepayerRequest) XXX_Size() int

func (*MsgRevokeFeepayerRequest) XXX_Unmarshal added in v1.3.3

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

type MsgRevokeFeepayerRequestResponse added in v1.3.3

type MsgRevokeFeepayerRequestResponse struct {
}

func (*MsgRevokeFeepayerRequestResponse) Descriptor added in v1.3.3

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

func (*MsgRevokeFeepayerRequestResponse) Marshal added in v1.3.3

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

func (*MsgRevokeFeepayerRequestResponse) MarshalTo added in v1.3.3

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

func (*MsgRevokeFeepayerRequestResponse) MarshalToSizedBuffer added in v1.3.3

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

func (*MsgRevokeFeepayerRequestResponse) ProtoMessage added in v1.3.3

func (*MsgRevokeFeepayerRequestResponse) ProtoMessage()

func (*MsgRevokeFeepayerRequestResponse) Reset added in v1.3.3

func (*MsgRevokeFeepayerRequestResponse) Size added in v1.3.3

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

func (*MsgRevokeFeepayerRequestResponse) String added in v1.3.3

func (*MsgRevokeFeepayerRequestResponse) Unmarshal added in v1.3.3

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

func (*MsgRevokeFeepayerRequestResponse) XXX_DiscardUnknown added in v1.3.3

func (m *MsgRevokeFeepayerRequestResponse) XXX_DiscardUnknown()

func (*MsgRevokeFeepayerRequestResponse) XXX_Marshal added in v1.3.3

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

func (*MsgRevokeFeepayerRequestResponse) XXX_Merge added in v1.3.3

func (*MsgRevokeFeepayerRequestResponse) XXX_Size added in v1.3.3

func (m *MsgRevokeFeepayerRequestResponse) XXX_Size() int

func (*MsgRevokeFeepayerRequestResponse) XXX_Unmarshal added in v1.3.3

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

type MsgServer

MsgServer is the server API for Msg service.

type MultichainKeeper

type MultichainKeeper interface {
	GetLastObservedEventNonce(ctx sdk.Context, chainId string, contract string) uint64
}

type Params

type Params struct {
}

Params defines the parameters for the module.

func DefaultParams

func DefaultParams() Params

DefaultParams returns a default set of parameters

func NewParams

func NewParams() Params

NewParams creates a new Params instance

func (*Params) Descriptor

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

func (*Params) Marshal

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

func (*Params) MarshalTo

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

func (*Params) MarshalToSizedBuffer

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

func (*Params) ParamSetPairs

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

ParamSetPairs get the params.ParamSet

func (*Params) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) Reset

func (m *Params) Reset()

func (*Params) Size

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

func (Params) String

func (p Params) String() string

String implements the Stringer interface.

func (*Params) Unmarshal

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

func (Params) Validate

func (p Params) Validate() error

Validate validates the set of params

func (*Params) XXX_DiscardUnknown

func (m *Params) XXX_DiscardUnknown()

func (*Params) XXX_Marshal

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

func (*Params) XXX_Merge

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

func (*Params) XXX_Size

func (m *Params) XXX_Size() int

func (*Params) XXX_Unmarshal

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

type QueryAllMetaInfoRequest

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

func (*QueryAllMetaInfoRequest) Descriptor

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

func (*QueryAllMetaInfoRequest) GetPagination

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

func (*QueryAllMetaInfoRequest) Marshal

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

func (*QueryAllMetaInfoRequest) MarshalTo

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

func (*QueryAllMetaInfoRequest) MarshalToSizedBuffer

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

func (*QueryAllMetaInfoRequest) ProtoMessage

func (*QueryAllMetaInfoRequest) ProtoMessage()

func (*QueryAllMetaInfoRequest) Reset

func (m *QueryAllMetaInfoRequest) Reset()

func (*QueryAllMetaInfoRequest) Size

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

func (*QueryAllMetaInfoRequest) String

func (m *QueryAllMetaInfoRequest) String() string

func (*QueryAllMetaInfoRequest) Unmarshal

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

func (*QueryAllMetaInfoRequest) XXX_DiscardUnknown

func (m *QueryAllMetaInfoRequest) XXX_DiscardUnknown()

func (*QueryAllMetaInfoRequest) XXX_Marshal

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

func (*QueryAllMetaInfoRequest) XXX_Merge

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

func (*QueryAllMetaInfoRequest) XXX_Size

func (m *QueryAllMetaInfoRequest) XXX_Size() int

func (*QueryAllMetaInfoRequest) XXX_Unmarshal

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

type QueryAllMetaInfoRequestByAddress added in v1.2.55

type QueryAllMetaInfoRequestByAddress struct {
	Address    string             `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Pagination *query.PageRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllMetaInfoRequestByAddress) Descriptor added in v1.2.55

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

func (*QueryAllMetaInfoRequestByAddress) GetAddress added in v1.2.55

func (m *QueryAllMetaInfoRequestByAddress) GetAddress() string

func (*QueryAllMetaInfoRequestByAddress) GetPagination added in v1.2.55

func (*QueryAllMetaInfoRequestByAddress) Marshal added in v1.2.55

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

func (*QueryAllMetaInfoRequestByAddress) MarshalTo added in v1.2.55

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

func (*QueryAllMetaInfoRequestByAddress) MarshalToSizedBuffer added in v1.2.55

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

func (*QueryAllMetaInfoRequestByAddress) ProtoMessage added in v1.2.55

func (*QueryAllMetaInfoRequestByAddress) ProtoMessage()

func (*QueryAllMetaInfoRequestByAddress) Reset added in v1.2.55

func (*QueryAllMetaInfoRequestByAddress) Size added in v1.2.55

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

func (*QueryAllMetaInfoRequestByAddress) String added in v1.2.55

func (*QueryAllMetaInfoRequestByAddress) Unmarshal added in v1.2.55

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

func (*QueryAllMetaInfoRequestByAddress) XXX_DiscardUnknown added in v1.2.55

func (m *QueryAllMetaInfoRequestByAddress) XXX_DiscardUnknown()

func (*QueryAllMetaInfoRequestByAddress) XXX_Marshal added in v1.2.55

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

func (*QueryAllMetaInfoRequestByAddress) XXX_Merge added in v1.2.55

func (*QueryAllMetaInfoRequestByAddress) XXX_Size added in v1.2.55

func (m *QueryAllMetaInfoRequestByAddress) XXX_Size() int

func (*QueryAllMetaInfoRequestByAddress) XXX_Unmarshal added in v1.2.55

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

type QueryAllMetaInfoRequestByChainAndAddress added in v1.2.55

type QueryAllMetaInfoRequestByChainAndAddress struct {
	ChainIds   string              `protobuf:"bytes,1,opt,name=chain_ids,json=chainIds,proto3" json:"chain_ids,omitempty"`
	Address    string              `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	Status     MetaInfoQueryStatus `` /* 128-byte string literal not displayed */
	Pagination *query.PageRequest  `protobuf:"bytes,4,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllMetaInfoRequestByChainAndAddress) Descriptor added in v1.2.55

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

func (*QueryAllMetaInfoRequestByChainAndAddress) GetAddress added in v1.2.55

func (*QueryAllMetaInfoRequestByChainAndAddress) GetChainIds added in v1.2.55

func (*QueryAllMetaInfoRequestByChainAndAddress) GetPagination added in v1.2.55

func (*QueryAllMetaInfoRequestByChainAndAddress) GetStatus added in v1.2.55

func (*QueryAllMetaInfoRequestByChainAndAddress) Marshal added in v1.2.55

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

func (*QueryAllMetaInfoRequestByChainAndAddress) MarshalTo added in v1.2.55

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

func (*QueryAllMetaInfoRequestByChainAndAddress) MarshalToSizedBuffer added in v1.2.55

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

func (*QueryAllMetaInfoRequestByChainAndAddress) ProtoMessage added in v1.2.55

func (*QueryAllMetaInfoRequestByChainAndAddress) Reset added in v1.2.55

func (*QueryAllMetaInfoRequestByChainAndAddress) Size added in v1.2.55

func (*QueryAllMetaInfoRequestByChainAndAddress) String added in v1.2.55

func (*QueryAllMetaInfoRequestByChainAndAddress) Unmarshal added in v1.2.55

func (*QueryAllMetaInfoRequestByChainAndAddress) XXX_DiscardUnknown added in v1.2.55

func (m *QueryAllMetaInfoRequestByChainAndAddress) XXX_DiscardUnknown()

func (*QueryAllMetaInfoRequestByChainAndAddress) XXX_Marshal added in v1.2.55

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

func (*QueryAllMetaInfoRequestByChainAndAddress) XXX_Merge added in v1.2.55

func (*QueryAllMetaInfoRequestByChainAndAddress) XXX_Size added in v1.2.55

func (*QueryAllMetaInfoRequestByChainAndAddress) XXX_Unmarshal added in v1.2.55

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

type QueryAllMetaInfoRequestByChainID added in v1.2.52

type QueryAllMetaInfoRequestByChainID struct {
	ChainIds   string             `protobuf:"bytes,1,opt,name=chain_ids,json=chainIds,proto3" json:"chain_ids,omitempty"`
	Pagination *query.PageRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllMetaInfoRequestByChainID) Descriptor added in v1.2.52

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

func (*QueryAllMetaInfoRequestByChainID) GetChainIds added in v1.2.55

func (m *QueryAllMetaInfoRequestByChainID) GetChainIds() string

func (*QueryAllMetaInfoRequestByChainID) GetPagination added in v1.2.52

func (*QueryAllMetaInfoRequestByChainID) Marshal added in v1.2.52

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

func (*QueryAllMetaInfoRequestByChainID) MarshalTo added in v1.2.52

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

func (*QueryAllMetaInfoRequestByChainID) MarshalToSizedBuffer added in v1.2.52

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

func (*QueryAllMetaInfoRequestByChainID) ProtoMessage added in v1.2.52

func (*QueryAllMetaInfoRequestByChainID) ProtoMessage()

func (*QueryAllMetaInfoRequestByChainID) Reset added in v1.2.52

func (*QueryAllMetaInfoRequestByChainID) Size added in v1.2.52

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

func (*QueryAllMetaInfoRequestByChainID) String added in v1.2.52

func (*QueryAllMetaInfoRequestByChainID) Unmarshal added in v1.2.52

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

func (*QueryAllMetaInfoRequestByChainID) XXX_DiscardUnknown added in v1.2.52

func (m *QueryAllMetaInfoRequestByChainID) XXX_DiscardUnknown()

func (*QueryAllMetaInfoRequestByChainID) XXX_Marshal added in v1.2.52

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

func (*QueryAllMetaInfoRequestByChainID) XXX_Merge added in v1.2.52

func (*QueryAllMetaInfoRequestByChainID) XXX_Size added in v1.2.52

func (m *QueryAllMetaInfoRequestByChainID) XXX_Size() int

func (*QueryAllMetaInfoRequestByChainID) XXX_Unmarshal added in v1.2.52

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

type QueryAllMetaInfoResponse

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

func (*QueryAllMetaInfoResponse) Descriptor

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

func (*QueryAllMetaInfoResponse) GetMetaInfo

func (m *QueryAllMetaInfoResponse) GetMetaInfo() []MetaInfo

func (*QueryAllMetaInfoResponse) GetPagination

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

func (*QueryAllMetaInfoResponse) Marshal

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

func (*QueryAllMetaInfoResponse) MarshalTo

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

func (*QueryAllMetaInfoResponse) MarshalToSizedBuffer

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

func (*QueryAllMetaInfoResponse) ProtoMessage

func (*QueryAllMetaInfoResponse) ProtoMessage()

func (*QueryAllMetaInfoResponse) Reset

func (m *QueryAllMetaInfoResponse) Reset()

func (*QueryAllMetaInfoResponse) Size

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

func (*QueryAllMetaInfoResponse) String

func (m *QueryAllMetaInfoResponse) String() string

func (*QueryAllMetaInfoResponse) Unmarshal

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

func (*QueryAllMetaInfoResponse) XXX_DiscardUnknown

func (m *QueryAllMetaInfoResponse) XXX_DiscardUnknown()

func (*QueryAllMetaInfoResponse) XXX_Marshal

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

func (*QueryAllMetaInfoResponse) XXX_Merge

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

func (*QueryAllMetaInfoResponse) XXX_Size

func (m *QueryAllMetaInfoResponse) XXX_Size() int

func (*QueryAllMetaInfoResponse) XXX_Unmarshal

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

type QueryAllMetaInfoResponseByAddress added in v1.2.55

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

func (*QueryAllMetaInfoResponseByAddress) Descriptor added in v1.2.55

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

func (*QueryAllMetaInfoResponseByAddress) GetMetaInfo added in v1.2.55

func (m *QueryAllMetaInfoResponseByAddress) GetMetaInfo() []MetaInfo

func (*QueryAllMetaInfoResponseByAddress) GetPagination added in v1.2.55

func (*QueryAllMetaInfoResponseByAddress) Marshal added in v1.2.55

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

func (*QueryAllMetaInfoResponseByAddress) MarshalTo added in v1.2.55

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

func (*QueryAllMetaInfoResponseByAddress) MarshalToSizedBuffer added in v1.2.55

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

func (*QueryAllMetaInfoResponseByAddress) ProtoMessage added in v1.2.55

func (*QueryAllMetaInfoResponseByAddress) ProtoMessage()

func (*QueryAllMetaInfoResponseByAddress) Reset added in v1.2.55

func (*QueryAllMetaInfoResponseByAddress) Size added in v1.2.55

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

func (*QueryAllMetaInfoResponseByAddress) String added in v1.2.55

func (*QueryAllMetaInfoResponseByAddress) Unmarshal added in v1.2.55

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

func (*QueryAllMetaInfoResponseByAddress) XXX_DiscardUnknown added in v1.2.55

func (m *QueryAllMetaInfoResponseByAddress) XXX_DiscardUnknown()

func (*QueryAllMetaInfoResponseByAddress) XXX_Marshal added in v1.2.55

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

func (*QueryAllMetaInfoResponseByAddress) XXX_Merge added in v1.2.55

func (*QueryAllMetaInfoResponseByAddress) XXX_Size added in v1.2.55

func (m *QueryAllMetaInfoResponseByAddress) XXX_Size() int

func (*QueryAllMetaInfoResponseByAddress) XXX_Unmarshal added in v1.2.55

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

type QueryAllMetaInfoResponseByChainAndAddress added in v1.2.55

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

func (*QueryAllMetaInfoResponseByChainAndAddress) Descriptor added in v1.2.55

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

func (*QueryAllMetaInfoResponseByChainAndAddress) GetMetaInfo added in v1.2.55

func (*QueryAllMetaInfoResponseByChainAndAddress) GetPagination added in v1.2.55

func (*QueryAllMetaInfoResponseByChainAndAddress) Marshal added in v1.2.55

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

func (*QueryAllMetaInfoResponseByChainAndAddress) MarshalTo added in v1.2.55

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

func (*QueryAllMetaInfoResponseByChainAndAddress) MarshalToSizedBuffer added in v1.2.55

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

func (*QueryAllMetaInfoResponseByChainAndAddress) ProtoMessage added in v1.2.55

func (*QueryAllMetaInfoResponseByChainAndAddress) Reset added in v1.2.55

func (*QueryAllMetaInfoResponseByChainAndAddress) Size added in v1.2.55

func (*QueryAllMetaInfoResponseByChainAndAddress) String added in v1.2.55

func (*QueryAllMetaInfoResponseByChainAndAddress) Unmarshal added in v1.2.55

func (*QueryAllMetaInfoResponseByChainAndAddress) XXX_DiscardUnknown added in v1.2.55

func (m *QueryAllMetaInfoResponseByChainAndAddress) XXX_DiscardUnknown()

func (*QueryAllMetaInfoResponseByChainAndAddress) XXX_Marshal added in v1.2.55

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

func (*QueryAllMetaInfoResponseByChainAndAddress) XXX_Merge added in v1.2.55

func (*QueryAllMetaInfoResponseByChainAndAddress) XXX_Size added in v1.2.55

func (*QueryAllMetaInfoResponseByChainAndAddress) XXX_Unmarshal added in v1.2.55

type QueryAllMetaInfoResponseByChainID added in v1.2.52

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

func (*QueryAllMetaInfoResponseByChainID) Descriptor added in v1.2.52

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

func (*QueryAllMetaInfoResponseByChainID) GetMetaInfo added in v1.2.52

func (m *QueryAllMetaInfoResponseByChainID) GetMetaInfo() []MetaInfo

func (*QueryAllMetaInfoResponseByChainID) GetPagination added in v1.2.52

func (*QueryAllMetaInfoResponseByChainID) Marshal added in v1.2.52

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

func (*QueryAllMetaInfoResponseByChainID) MarshalTo added in v1.2.52

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

func (*QueryAllMetaInfoResponseByChainID) MarshalToSizedBuffer added in v1.2.52

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

func (*QueryAllMetaInfoResponseByChainID) ProtoMessage added in v1.2.52

func (*QueryAllMetaInfoResponseByChainID) ProtoMessage()

func (*QueryAllMetaInfoResponseByChainID) Reset added in v1.2.52

func (*QueryAllMetaInfoResponseByChainID) Size added in v1.2.52

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

func (*QueryAllMetaInfoResponseByChainID) String added in v1.2.52

func (*QueryAllMetaInfoResponseByChainID) Unmarshal added in v1.2.52

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

func (*QueryAllMetaInfoResponseByChainID) XXX_DiscardUnknown added in v1.2.52

func (m *QueryAllMetaInfoResponseByChainID) XXX_DiscardUnknown()

func (*QueryAllMetaInfoResponseByChainID) XXX_Marshal added in v1.2.52

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

func (*QueryAllMetaInfoResponseByChainID) XXX_Merge added in v1.2.52

func (*QueryAllMetaInfoResponseByChainID) XXX_Size added in v1.2.52

func (m *QueryAllMetaInfoResponseByChainID) XXX_Size() int

func (*QueryAllMetaInfoResponseByChainID) XXX_Unmarshal added in v1.2.52

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

type QueryAllMetadataRequestRequest

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

func (*QueryAllMetadataRequestRequest) Descriptor

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

func (*QueryAllMetadataRequestRequest) GetPagination

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

func (*QueryAllMetadataRequestRequest) Marshal

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

func (*QueryAllMetadataRequestRequest) MarshalTo

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

func (*QueryAllMetadataRequestRequest) MarshalToSizedBuffer

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

func (*QueryAllMetadataRequestRequest) ProtoMessage

func (*QueryAllMetadataRequestRequest) ProtoMessage()

func (*QueryAllMetadataRequestRequest) Reset

func (m *QueryAllMetadataRequestRequest) Reset()

func (*QueryAllMetadataRequestRequest) Size

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

func (*QueryAllMetadataRequestRequest) String

func (*QueryAllMetadataRequestRequest) Unmarshal

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

func (*QueryAllMetadataRequestRequest) XXX_DiscardUnknown

func (m *QueryAllMetadataRequestRequest) XXX_DiscardUnknown()

func (*QueryAllMetadataRequestRequest) XXX_Marshal

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

func (*QueryAllMetadataRequestRequest) XXX_Merge

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

func (*QueryAllMetadataRequestRequest) XXX_Size

func (m *QueryAllMetadataRequestRequest) XXX_Size() int

func (*QueryAllMetadataRequestRequest) XXX_Unmarshal

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

type QueryAllMetadataRequestResponse

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

func (*QueryAllMetadataRequestResponse) Descriptor

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

func (*QueryAllMetadataRequestResponse) GetMetadataRequest

func (m *QueryAllMetadataRequestResponse) GetMetadataRequest() []MetadataRequest

func (*QueryAllMetadataRequestResponse) GetPagination

func (*QueryAllMetadataRequestResponse) Marshal

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

func (*QueryAllMetadataRequestResponse) MarshalTo

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

func (*QueryAllMetadataRequestResponse) MarshalToSizedBuffer

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

func (*QueryAllMetadataRequestResponse) ProtoMessage

func (*QueryAllMetadataRequestResponse) ProtoMessage()

func (*QueryAllMetadataRequestResponse) Reset

func (*QueryAllMetadataRequestResponse) Size

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

func (*QueryAllMetadataRequestResponse) String

func (*QueryAllMetadataRequestResponse) Unmarshal

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

func (*QueryAllMetadataRequestResponse) XXX_DiscardUnknown

func (m *QueryAllMetadataRequestResponse) XXX_DiscardUnknown()

func (*QueryAllMetadataRequestResponse) XXX_Marshal

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

func (*QueryAllMetadataRequestResponse) XXX_Merge

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

func (*QueryAllMetadataRequestResponse) XXX_Size

func (m *QueryAllMetadataRequestResponse) XXX_Size() int

func (*QueryAllMetadataRequestResponse) XXX_Unmarshal

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

type QueryClient

type QueryClient interface {
	// Parameters queries the parameters of the module.
	Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error)
	// Queries all MetaInfo items
	MetaInfoAll(ctx context.Context, in *QueryAllMetaInfoRequest, opts ...grpc.CallOption) (*QueryAllMetaInfoResponse, error)
	// Queries a list of MetaInfo items by dapp address
	MetaInfoAllByAddress(ctx context.Context, in *QueryAllMetaInfoRequestByAddress, opts ...grpc.CallOption) (*QueryAllMetaInfoResponseByAddress, error)
	// Queries MetaInfo item by dapp address and chain id.
	MetaInfoAllByChainAndAddress(ctx context.Context, in *QueryAllMetaInfoRequestByChainAndAddress, opts ...grpc.CallOption) (*QueryAllMetaInfoResponseByChainAndAddress, error)
	// Queries a list of MetaInfo items by chain id
	MetaInfoAllByChainID(ctx context.Context, in *QueryAllMetaInfoRequestByChainID, opts ...grpc.CallOption) (*QueryAllMetaInfoResponseByChainID, error)
	// Queries a list of MetadataRequest items.
	MetadataRequest(ctx context.Context, in *QueryGetMetadataRequestRequest, opts ...grpc.CallOption) (*QueryGetMetadataRequestResponse, error)
	// Queries a list of all MetadataRequest items.
	MetadataRequestAll(ctx context.Context, in *QueryAllMetadataRequestRequest, opts ...grpc.CallOption) (*QueryAllMetadataRequestResponse, 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 QueryGetMetaInfoRequest

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

func (*QueryGetMetaInfoRequest) Descriptor

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

func (*QueryGetMetaInfoRequest) GetAddress added in v1.2.55

func (m *QueryGetMetaInfoRequest) GetAddress() string

func (*QueryGetMetaInfoRequest) GetChainId

func (m *QueryGetMetaInfoRequest) GetChainId() string

func (*QueryGetMetaInfoRequest) Marshal

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

func (*QueryGetMetaInfoRequest) MarshalTo

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

func (*QueryGetMetaInfoRequest) MarshalToSizedBuffer

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

func (*QueryGetMetaInfoRequest) ProtoMessage

func (*QueryGetMetaInfoRequest) ProtoMessage()

func (*QueryGetMetaInfoRequest) Reset

func (m *QueryGetMetaInfoRequest) Reset()

func (*QueryGetMetaInfoRequest) Size

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

func (*QueryGetMetaInfoRequest) String

func (m *QueryGetMetaInfoRequest) String() string

func (*QueryGetMetaInfoRequest) Unmarshal

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

func (*QueryGetMetaInfoRequest) XXX_DiscardUnknown

func (m *QueryGetMetaInfoRequest) XXX_DiscardUnknown()

func (*QueryGetMetaInfoRequest) XXX_Marshal

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

func (*QueryGetMetaInfoRequest) XXX_Merge

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

func (*QueryGetMetaInfoRequest) XXX_Size

func (m *QueryGetMetaInfoRequest) XXX_Size() int

func (*QueryGetMetaInfoRequest) XXX_Unmarshal

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

type QueryGetMetaInfoResponse

type QueryGetMetaInfoResponse struct {
	MetaInfo MetaInfo `protobuf:"bytes,1,opt,name=metaInfo,proto3" json:"metaInfo"`
}

func (*QueryGetMetaInfoResponse) Descriptor

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

func (*QueryGetMetaInfoResponse) GetMetaInfo

func (m *QueryGetMetaInfoResponse) GetMetaInfo() MetaInfo

func (*QueryGetMetaInfoResponse) Marshal

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

func (*QueryGetMetaInfoResponse) MarshalTo

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

func (*QueryGetMetaInfoResponse) MarshalToSizedBuffer

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

func (*QueryGetMetaInfoResponse) ProtoMessage

func (*QueryGetMetaInfoResponse) ProtoMessage()

func (*QueryGetMetaInfoResponse) Reset

func (m *QueryGetMetaInfoResponse) Reset()

func (*QueryGetMetaInfoResponse) Size

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

func (*QueryGetMetaInfoResponse) String

func (m *QueryGetMetaInfoResponse) String() string

func (*QueryGetMetaInfoResponse) Unmarshal

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

func (*QueryGetMetaInfoResponse) XXX_DiscardUnknown

func (m *QueryGetMetaInfoResponse) XXX_DiscardUnknown()

func (*QueryGetMetaInfoResponse) XXX_Marshal

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

func (*QueryGetMetaInfoResponse) XXX_Merge

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

func (*QueryGetMetaInfoResponse) XXX_Size

func (m *QueryGetMetaInfoResponse) XXX_Size() int

func (*QueryGetMetaInfoResponse) XXX_Unmarshal

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

type QueryGetMetadataRequestRequest

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

func (*QueryGetMetadataRequestRequest) Descriptor

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

func (*QueryGetMetadataRequestRequest) GetChainId

func (m *QueryGetMetadataRequestRequest) GetChainId() string

func (*QueryGetMetadataRequestRequest) GetEventNonce

func (m *QueryGetMetadataRequestRequest) GetEventNonce() uint64

func (*QueryGetMetadataRequestRequest) Marshal

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

func (*QueryGetMetadataRequestRequest) MarshalTo

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

func (*QueryGetMetadataRequestRequest) MarshalToSizedBuffer

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

func (*QueryGetMetadataRequestRequest) ProtoMessage

func (*QueryGetMetadataRequestRequest) ProtoMessage()

func (*QueryGetMetadataRequestRequest) Reset

func (m *QueryGetMetadataRequestRequest) Reset()

func (*QueryGetMetadataRequestRequest) Size

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

func (*QueryGetMetadataRequestRequest) String

func (*QueryGetMetadataRequestRequest) Unmarshal

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

func (*QueryGetMetadataRequestRequest) XXX_DiscardUnknown

func (m *QueryGetMetadataRequestRequest) XXX_DiscardUnknown()

func (*QueryGetMetadataRequestRequest) XXX_Marshal

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

func (*QueryGetMetadataRequestRequest) XXX_Merge

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

func (*QueryGetMetadataRequestRequest) XXX_Size

func (m *QueryGetMetadataRequestRequest) XXX_Size() int

func (*QueryGetMetadataRequestRequest) XXX_Unmarshal

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

type QueryGetMetadataRequestResponse

type QueryGetMetadataRequestResponse struct {
	MetadataRequest MetadataRequest `protobuf:"bytes,1,opt,name=metadataRequest,proto3" json:"metadataRequest"`
}

func (*QueryGetMetadataRequestResponse) Descriptor

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

func (*QueryGetMetadataRequestResponse) GetMetadataRequest

func (m *QueryGetMetadataRequestResponse) GetMetadataRequest() MetadataRequest

func (*QueryGetMetadataRequestResponse) Marshal

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

func (*QueryGetMetadataRequestResponse) MarshalTo

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

func (*QueryGetMetadataRequestResponse) MarshalToSizedBuffer

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

func (*QueryGetMetadataRequestResponse) ProtoMessage

func (*QueryGetMetadataRequestResponse) ProtoMessage()

func (*QueryGetMetadataRequestResponse) Reset

func (*QueryGetMetadataRequestResponse) Size

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

func (*QueryGetMetadataRequestResponse) String

func (*QueryGetMetadataRequestResponse) Unmarshal

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

func (*QueryGetMetadataRequestResponse) XXX_DiscardUnknown

func (m *QueryGetMetadataRequestResponse) XXX_DiscardUnknown()

func (*QueryGetMetadataRequestResponse) XXX_Marshal

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

func (*QueryGetMetadataRequestResponse) XXX_Merge

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

func (*QueryGetMetadataRequestResponse) XXX_Size

func (m *QueryGetMetadataRequestResponse) XXX_Size() int

func (*QueryGetMetadataRequestResponse) XXX_Unmarshal

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

type QueryParamsRequest

type QueryParamsRequest struct {
}

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

func (*QueryParamsRequest) Descriptor

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

func (*QueryParamsRequest) Marshal

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

func (*QueryParamsRequest) MarshalTo

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

func (*QueryParamsRequest) MarshalToSizedBuffer

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

func (*QueryParamsRequest) ProtoMessage

func (*QueryParamsRequest) ProtoMessage()

func (*QueryParamsRequest) Reset

func (m *QueryParamsRequest) Reset()

func (*QueryParamsRequest) Size

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

func (*QueryParamsRequest) String

func (m *QueryParamsRequest) String() string

func (*QueryParamsRequest) Unmarshal

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

func (*QueryParamsRequest) XXX_DiscardUnknown

func (m *QueryParamsRequest) XXX_DiscardUnknown()

func (*QueryParamsRequest) XXX_Marshal

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

func (*QueryParamsRequest) XXX_Merge

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

func (*QueryParamsRequest) XXX_Size

func (m *QueryParamsRequest) XXX_Size() int

func (*QueryParamsRequest) XXX_Unmarshal

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

type QueryParamsResponse

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

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

func (*QueryParamsResponse) Descriptor

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

func (*QueryParamsResponse) GetParams

func (m *QueryParamsResponse) GetParams() Params

func (*QueryParamsResponse) Marshal

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

func (*QueryParamsResponse) MarshalTo

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

func (*QueryParamsResponse) MarshalToSizedBuffer

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

func (*QueryParamsResponse) ProtoMessage

func (*QueryParamsResponse) ProtoMessage()

func (*QueryParamsResponse) Reset

func (m *QueryParamsResponse) Reset()

func (*QueryParamsResponse) Size

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

func (*QueryParamsResponse) String

func (m *QueryParamsResponse) String() string

func (*QueryParamsResponse) Unmarshal

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

func (*QueryParamsResponse) XXX_DiscardUnknown

func (m *QueryParamsResponse) XXX_DiscardUnknown()

func (*QueryParamsResponse) XXX_Marshal

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

func (*QueryParamsResponse) XXX_Merge

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

func (*QueryParamsResponse) XXX_Size

func (m *QueryParamsResponse) XXX_Size() int

func (*QueryParamsResponse) XXX_Unmarshal

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

type QueryServer

type QueryServer interface {
	// Parameters queries the parameters of the module.
	Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error)
	// Queries all MetaInfo items
	MetaInfoAll(context.Context, *QueryAllMetaInfoRequest) (*QueryAllMetaInfoResponse, error)
	// Queries a list of MetaInfo items by dapp address
	MetaInfoAllByAddress(context.Context, *QueryAllMetaInfoRequestByAddress) (*QueryAllMetaInfoResponseByAddress, error)
	// Queries MetaInfo item by dapp address and chain id.
	MetaInfoAllByChainAndAddress(context.Context, *QueryAllMetaInfoRequestByChainAndAddress) (*QueryAllMetaInfoResponseByChainAndAddress, error)
	// Queries a list of MetaInfo items by chain id
	MetaInfoAllByChainID(context.Context, *QueryAllMetaInfoRequestByChainID) (*QueryAllMetaInfoResponseByChainID, error)
	// Queries a list of MetadataRequest items.
	MetadataRequest(context.Context, *QueryGetMetadataRequestRequest) (*QueryGetMetadataRequestResponse, error)
	// Queries a list of all MetadataRequest items.
	MetadataRequestAll(context.Context, *QueryAllMetadataRequestRequest) (*QueryAllMetadataRequestResponse, error)
}

QueryServer is the server API for Query service.

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServer) ApproveFeepayerRequest

func (*UnimplementedMsgServer) CreateMetadataRequest

func (*UnimplementedMsgServer) RevokeFeepayerRequest added in v1.3.3

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) MetaInfoAll

func (*UnimplementedQueryServer) MetaInfoAllByAddress added in v1.2.55

func (*UnimplementedQueryServer) MetaInfoAllByChainAndAddress added in v1.2.55

func (*UnimplementedQueryServer) MetaInfoAllByChainID added in v1.2.52

func (*UnimplementedQueryServer) MetadataRequest

func (*UnimplementedQueryServer) MetadataRequestAll

func (*UnimplementedQueryServer) Params

Jump to

Keyboard shortcuts

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