injective_explorer_rpcpb

package
v0.0.0-...-3792732 Latest Latest
Warning

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

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

Documentation

Overview

Package injective_explorer_rpcpb is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

This section is empty.

Variables

View Source
var File_injective_explorer_rpc_proto protoreflect.FileDescriptor
View Source
var InjectiveExplorerRPC_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "injective_explorer_rpc.InjectiveExplorerRPC",
	HandlerType: (*InjectiveExplorerRPCServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetAccountTxs",
			Handler:    _InjectiveExplorerRPC_GetAccountTxs_Handler,
		},
		{
			MethodName: "GetContractTxs",
			Handler:    _InjectiveExplorerRPC_GetContractTxs_Handler,
		},
		{
			MethodName: "GetBlocks",
			Handler:    _InjectiveExplorerRPC_GetBlocks_Handler,
		},
		{
			MethodName: "GetBlock",
			Handler:    _InjectiveExplorerRPC_GetBlock_Handler,
		},
		{
			MethodName: "GetValidators",
			Handler:    _InjectiveExplorerRPC_GetValidators_Handler,
		},
		{
			MethodName: "GetValidator",
			Handler:    _InjectiveExplorerRPC_GetValidator_Handler,
		},
		{
			MethodName: "GetValidatorUptime",
			Handler:    _InjectiveExplorerRPC_GetValidatorUptime_Handler,
		},
		{
			MethodName: "GetTxs",
			Handler:    _InjectiveExplorerRPC_GetTxs_Handler,
		},
		{
			MethodName: "GetTxByTxHash",
			Handler:    _InjectiveExplorerRPC_GetTxByTxHash_Handler,
		},
		{
			MethodName: "GetPeggyDepositTxs",
			Handler:    _InjectiveExplorerRPC_GetPeggyDepositTxs_Handler,
		},
		{
			MethodName: "GetPeggyWithdrawalTxs",
			Handler:    _InjectiveExplorerRPC_GetPeggyWithdrawalTxs_Handler,
		},
		{
			MethodName: "GetIBCTransferTxs",
			Handler:    _InjectiveExplorerRPC_GetIBCTransferTxs_Handler,
		},
		{
			MethodName: "GetWasmCodes",
			Handler:    _InjectiveExplorerRPC_GetWasmCodes_Handler,
		},
		{
			MethodName: "GetWasmCodeByID",
			Handler:    _InjectiveExplorerRPC_GetWasmCodeByID_Handler,
		},
		{
			MethodName: "GetWasmContracts",
			Handler:    _InjectiveExplorerRPC_GetWasmContracts_Handler,
		},
		{
			MethodName: "GetWasmContractByAddress",
			Handler:    _InjectiveExplorerRPC_GetWasmContractByAddress_Handler,
		},
		{
			MethodName: "GetCw20Balance",
			Handler:    _InjectiveExplorerRPC_GetCw20Balance_Handler,
		},
		{
			MethodName: "Relayers",
			Handler:    _InjectiveExplorerRPC_Relayers_Handler,
		},
	},
	Streams: []grpc.StreamDesc{
		{
			StreamName:    "StreamTxs",
			Handler:       _InjectiveExplorerRPC_StreamTxs_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "StreamBlocks",
			Handler:       _InjectiveExplorerRPC_StreamBlocks_Handler,
			ServerStreams: true,
		},
	},
	Metadata: "injective_explorer_rpc.proto",
}

InjectiveExplorerRPC_ServiceDesc is the grpc.ServiceDesc for InjectiveExplorerRPC service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

Functions

func RegisterInjectiveExplorerRPCHandler

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

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

func RegisterInjectiveExplorerRPCHandlerClient

func RegisterInjectiveExplorerRPCHandlerClient(ctx context.Context, mux *runtime.ServeMux, client InjectiveExplorerRPCClient) error

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

func RegisterInjectiveExplorerRPCHandlerFromEndpoint

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

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

func RegisterInjectiveExplorerRPCHandlerServer

func RegisterInjectiveExplorerRPCHandlerServer(ctx context.Context, mux *runtime.ServeMux, server InjectiveExplorerRPCServer) error

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

func RegisterInjectiveExplorerRPCServer

func RegisterInjectiveExplorerRPCServer(s grpc.ServiceRegistrar, srv InjectiveExplorerRPCServer)

Types

type BlockDetailInfo

type BlockDetailInfo struct {
	Height        uint64    `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	Proposer      string    `protobuf:"bytes,2,opt,name=proposer,proto3" json:"proposer,omitempty"`
	Moniker       string    `protobuf:"bytes,3,opt,name=moniker,proto3" json:"moniker,omitempty"`
	BlockHash     string    `protobuf:"bytes,4,opt,name=block_hash,json=blockHash,proto3" json:"block_hash,omitempty"`
	ParentHash    string    `protobuf:"bytes,5,opt,name=parent_hash,json=parentHash,proto3" json:"parent_hash,omitempty"`
	NumPreCommits int64     `protobuf:"zigzag64,6,opt,name=num_pre_commits,json=numPreCommits,proto3" json:"num_pre_commits,omitempty"`
	NumTxs        int64     `protobuf:"zigzag64,7,opt,name=num_txs,json=numTxs,proto3" json:"num_txs,omitempty"`
	TotalTxs      int64     `protobuf:"zigzag64,8,opt,name=total_txs,json=totalTxs,proto3" json:"total_txs,omitempty"`
	Txs           []*TxData `protobuf:"bytes,9,rep,name=txs,proto3" json:"txs,omitempty"`
	Timestamp     string    `protobuf:"bytes,10,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	// contains filtered or unexported fields
}

func (*BlockDetailInfo) Descriptor deprecated

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

Deprecated: Use BlockDetailInfo.ProtoReflect.Descriptor instead.

func (*BlockDetailInfo) GetBlockHash

func (x *BlockDetailInfo) GetBlockHash() string

func (*BlockDetailInfo) GetHeight

func (x *BlockDetailInfo) GetHeight() uint64

func (*BlockDetailInfo) GetMoniker

func (x *BlockDetailInfo) GetMoniker() string

func (*BlockDetailInfo) GetNumPreCommits

func (x *BlockDetailInfo) GetNumPreCommits() int64

func (*BlockDetailInfo) GetNumTxs

func (x *BlockDetailInfo) GetNumTxs() int64

func (*BlockDetailInfo) GetParentHash

func (x *BlockDetailInfo) GetParentHash() string

func (*BlockDetailInfo) GetProposer

func (x *BlockDetailInfo) GetProposer() string

func (*BlockDetailInfo) GetTimestamp

func (x *BlockDetailInfo) GetTimestamp() string

func (*BlockDetailInfo) GetTotalTxs

func (x *BlockDetailInfo) GetTotalTxs() int64

func (*BlockDetailInfo) GetTxs

func (x *BlockDetailInfo) GetTxs() []*TxData

func (*BlockDetailInfo) ProtoMessage

func (*BlockDetailInfo) ProtoMessage()

func (*BlockDetailInfo) ProtoReflect

func (x *BlockDetailInfo) ProtoReflect() protoreflect.Message

func (*BlockDetailInfo) Reset

func (x *BlockDetailInfo) Reset()

func (*BlockDetailInfo) String

func (x *BlockDetailInfo) String() string

type BlockInfo

type BlockInfo struct {
	Height        uint64       `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	Proposer      string       `protobuf:"bytes,2,opt,name=proposer,proto3" json:"proposer,omitempty"`
	Moniker       string       `protobuf:"bytes,3,opt,name=moniker,proto3" json:"moniker,omitempty"`
	BlockHash     string       `protobuf:"bytes,4,opt,name=block_hash,json=blockHash,proto3" json:"block_hash,omitempty"`
	ParentHash    string       `protobuf:"bytes,5,opt,name=parent_hash,json=parentHash,proto3" json:"parent_hash,omitempty"`
	NumPreCommits int64        `protobuf:"zigzag64,6,opt,name=num_pre_commits,json=numPreCommits,proto3" json:"num_pre_commits,omitempty"`
	NumTxs        int64        `protobuf:"zigzag64,7,opt,name=num_txs,json=numTxs,proto3" json:"num_txs,omitempty"`
	Txs           []*TxDataRPC `protobuf:"bytes,8,rep,name=txs,proto3" json:"txs,omitempty"`
	Timestamp     string       `protobuf:"bytes,9,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	// contains filtered or unexported fields
}

func (*BlockInfo) Descriptor deprecated

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

Deprecated: Use BlockInfo.ProtoReflect.Descriptor instead.

func (*BlockInfo) GetBlockHash

func (x *BlockInfo) GetBlockHash() string

func (*BlockInfo) GetHeight

func (x *BlockInfo) GetHeight() uint64

func (*BlockInfo) GetMoniker

func (x *BlockInfo) GetMoniker() string

func (*BlockInfo) GetNumPreCommits

func (x *BlockInfo) GetNumPreCommits() int64

func (*BlockInfo) GetNumTxs

func (x *BlockInfo) GetNumTxs() int64

func (*BlockInfo) GetParentHash

func (x *BlockInfo) GetParentHash() string

func (*BlockInfo) GetProposer

func (x *BlockInfo) GetProposer() string

func (*BlockInfo) GetTimestamp

func (x *BlockInfo) GetTimestamp() string

func (*BlockInfo) GetTxs

func (x *BlockInfo) GetTxs() []*TxDataRPC

func (*BlockInfo) ProtoMessage

func (*BlockInfo) ProtoMessage()

func (*BlockInfo) ProtoReflect

func (x *BlockInfo) ProtoReflect() protoreflect.Message

func (*BlockInfo) Reset

func (x *BlockInfo) Reset()

func (*BlockInfo) String

func (x *BlockInfo) String() string

type Checksum

type Checksum struct {

	// Algorithm of hash function
	Algorithm string `protobuf:"bytes,1,opt,name=algorithm,proto3" json:"algorithm,omitempty"`
	// Hash if apply algorithm to the cosmwasm bytecode
	Hash string `protobuf:"bytes,2,opt,name=hash,proto3" json:"hash,omitempty"`
	// contains filtered or unexported fields
}

func (*Checksum) Descriptor deprecated

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

Deprecated: Use Checksum.ProtoReflect.Descriptor instead.

func (*Checksum) GetAlgorithm

func (x *Checksum) GetAlgorithm() string

func (*Checksum) GetHash

func (x *Checksum) GetHash() string

func (*Checksum) ProtoMessage

func (*Checksum) ProtoMessage()

func (*Checksum) ProtoReflect

func (x *Checksum) ProtoReflect() protoreflect.Message

func (*Checksum) Reset

func (x *Checksum) Reset()

func (*Checksum) String

func (x *Checksum) String() string

type ContractFund

type ContractFund struct {

	// Denominator
	Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	// Amount of denom
	Amount string `protobuf:"bytes,2,opt,name=amount,proto3" json:"amount,omitempty"`
	// contains filtered or unexported fields
}

func (*ContractFund) Descriptor deprecated

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

Deprecated: Use ContractFund.ProtoReflect.Descriptor instead.

func (*ContractFund) GetAmount

func (x *ContractFund) GetAmount() string

func (*ContractFund) GetDenom

func (x *ContractFund) GetDenom() string

func (*ContractFund) ProtoMessage

func (*ContractFund) ProtoMessage()

func (*ContractFund) ProtoReflect

func (x *ContractFund) ProtoReflect() protoreflect.Message

func (*ContractFund) Reset

func (x *ContractFund) Reset()

func (*ContractFund) String

func (x *ContractFund) String() string

type ContractPermission

type ContractPermission struct {

	// Access type of instantiation
	AccessType int32 `protobuf:"zigzag32,1,opt,name=access_type,json=accessType,proto3" json:"access_type,omitempty"`
	// Account address
	Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	// contains filtered or unexported fields
}

func (*ContractPermission) Descriptor deprecated

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

Deprecated: Use ContractPermission.ProtoReflect.Descriptor instead.

func (*ContractPermission) GetAccessType

func (x *ContractPermission) GetAccessType() int32

func (*ContractPermission) GetAddress

func (x *ContractPermission) GetAddress() string

func (*ContractPermission) ProtoMessage

func (*ContractPermission) ProtoMessage()

func (*ContractPermission) ProtoReflect

func (x *ContractPermission) ProtoReflect() protoreflect.Message

func (*ContractPermission) Reset

func (x *ContractPermission) Reset()

func (*ContractPermission) String

func (x *ContractPermission) String() string

type CosmosCoin

type CosmosCoin struct {

	// Coin denominator
	Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	// Coin amount (big int)
	Amount string `protobuf:"bytes,2,opt,name=amount,proto3" json:"amount,omitempty"`
	// contains filtered or unexported fields
}

func (*CosmosCoin) Descriptor deprecated

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

Deprecated: Use CosmosCoin.ProtoReflect.Descriptor instead.

func (*CosmosCoin) GetAmount

func (x *CosmosCoin) GetAmount() string

func (*CosmosCoin) GetDenom

func (x *CosmosCoin) GetDenom() string

func (*CosmosCoin) ProtoMessage

func (*CosmosCoin) ProtoMessage()

func (*CosmosCoin) ProtoReflect

func (x *CosmosCoin) ProtoReflect() protoreflect.Message

func (*CosmosCoin) Reset

func (x *CosmosCoin) Reset()

func (*CosmosCoin) String

func (x *CosmosCoin) String() string

type Cw20MarketingInfo

type Cw20MarketingInfo struct {

	// Project information
	Project string `protobuf:"bytes,1,opt,name=project,proto3" json:"project,omitempty"`
	// Token's description
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Logo string `protobuf:"bytes,3,opt,name=logo,proto3" json:"logo,omitempty"`
	// A random field for additional marketing info
	Marketing []byte `protobuf:"bytes,4,opt,name=marketing,proto3" json:"marketing,omitempty"`
	// contains filtered or unexported fields
}

Marketing info

func (*Cw20MarketingInfo) Descriptor deprecated

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

Deprecated: Use Cw20MarketingInfo.ProtoReflect.Descriptor instead.

func (*Cw20MarketingInfo) GetDescription

func (x *Cw20MarketingInfo) GetDescription() string
func (x *Cw20MarketingInfo) GetLogo() string

func (*Cw20MarketingInfo) GetMarketing

func (x *Cw20MarketingInfo) GetMarketing() []byte

func (*Cw20MarketingInfo) GetProject

func (x *Cw20MarketingInfo) GetProject() string

func (*Cw20MarketingInfo) ProtoMessage

func (*Cw20MarketingInfo) ProtoMessage()

func (*Cw20MarketingInfo) ProtoReflect

func (x *Cw20MarketingInfo) ProtoReflect() protoreflect.Message

func (*Cw20MarketingInfo) Reset

func (x *Cw20MarketingInfo) Reset()

func (*Cw20MarketingInfo) String

func (x *Cw20MarketingInfo) String() string

type Cw20Metadata

type Cw20Metadata struct {
	TokenInfo     *Cw20TokenInfo     `protobuf:"bytes,1,opt,name=token_info,json=tokenInfo,proto3" json:"token_info,omitempty"`
	MarketingInfo *Cw20MarketingInfo `protobuf:"bytes,2,opt,name=marketing_info,json=marketingInfo,proto3" json:"marketing_info,omitempty"`
	// contains filtered or unexported fields
}

General cw20 metadata

func (*Cw20Metadata) Descriptor deprecated

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

Deprecated: Use Cw20Metadata.ProtoReflect.Descriptor instead.

func (*Cw20Metadata) GetMarketingInfo

func (x *Cw20Metadata) GetMarketingInfo() *Cw20MarketingInfo

func (*Cw20Metadata) GetTokenInfo

func (x *Cw20Metadata) GetTokenInfo() *Cw20TokenInfo

func (*Cw20Metadata) ProtoMessage

func (*Cw20Metadata) ProtoMessage()

func (*Cw20Metadata) ProtoReflect

func (x *Cw20Metadata) ProtoReflect() protoreflect.Message

func (*Cw20Metadata) Reset

func (x *Cw20Metadata) Reset()

func (*Cw20Metadata) String

func (x *Cw20Metadata) String() string

type Cw20TokenInfo

type Cw20TokenInfo struct {

	// General name of the token
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Symbol of then token
	Symbol string `protobuf:"bytes,2,opt,name=symbol,proto3" json:"symbol,omitempty"`
	// Decimal places of token
	Decimals int64 `protobuf:"zigzag64,3,opt,name=decimals,proto3" json:"decimals,omitempty"`
	// Token's total supply
	TotalSupply string `protobuf:"bytes,4,opt,name=total_supply,json=totalSupply,proto3" json:"total_supply,omitempty"`
	// contains filtered or unexported fields
}

Token name, symbol, decimal and so on

func (*Cw20TokenInfo) Descriptor deprecated

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

Deprecated: Use Cw20TokenInfo.ProtoReflect.Descriptor instead.

func (*Cw20TokenInfo) GetDecimals

func (x *Cw20TokenInfo) GetDecimals() int64

func (*Cw20TokenInfo) GetName

func (x *Cw20TokenInfo) GetName() string

func (*Cw20TokenInfo) GetSymbol

func (x *Cw20TokenInfo) GetSymbol() string

func (*Cw20TokenInfo) GetTotalSupply

func (x *Cw20TokenInfo) GetTotalSupply() string

func (*Cw20TokenInfo) ProtoMessage

func (*Cw20TokenInfo) ProtoMessage()

func (*Cw20TokenInfo) ProtoReflect

func (x *Cw20TokenInfo) ProtoReflect() protoreflect.Message

func (*Cw20TokenInfo) Reset

func (x *Cw20TokenInfo) Reset()

func (*Cw20TokenInfo) String

func (x *Cw20TokenInfo) String() string

type Event

type Event struct {
	Type       string            `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	Attributes map[string]string `` /* 161-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Event) Descriptor deprecated

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

Deprecated: Use Event.ProtoReflect.Descriptor instead.

func (*Event) GetAttributes

func (x *Event) GetAttributes() map[string]string

func (*Event) GetType

func (x *Event) GetType() string

func (*Event) ProtoMessage

func (*Event) ProtoMessage()

func (*Event) ProtoReflect

func (x *Event) ProtoReflect() protoreflect.Message

func (*Event) Reset

func (x *Event) Reset()

func (*Event) String

func (x *Event) String() string

type GasFee

type GasFee struct {
	Amount   []*CosmosCoin `protobuf:"bytes,1,rep,name=amount,proto3" json:"amount,omitempty"`
	GasLimit uint64        `protobuf:"varint,2,opt,name=gas_limit,json=gasLimit,proto3" json:"gas_limit,omitempty"`
	Payer    string        `protobuf:"bytes,3,opt,name=payer,proto3" json:"payer,omitempty"`
	Granter  string        `protobuf:"bytes,4,opt,name=granter,proto3" json:"granter,omitempty"`
	// contains filtered or unexported fields
}

func (*GasFee) Descriptor deprecated

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

Deprecated: Use GasFee.ProtoReflect.Descriptor instead.

func (*GasFee) GetAmount

func (x *GasFee) GetAmount() []*CosmosCoin

func (*GasFee) GetGasLimit

func (x *GasFee) GetGasLimit() uint64

func (*GasFee) GetGranter

func (x *GasFee) GetGranter() string

func (*GasFee) GetPayer

func (x *GasFee) GetPayer() string

func (*GasFee) ProtoMessage

func (*GasFee) ProtoMessage()

func (*GasFee) ProtoReflect

func (x *GasFee) ProtoReflect() protoreflect.Message

func (*GasFee) Reset

func (x *GasFee) Reset()

func (*GasFee) String

func (x *GasFee) String() string

type GetAccountTxsRequest

type GetAccountTxsRequest struct {

	// Address of account
	Address    string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Before     uint64 `protobuf:"varint,2,opt,name=before,proto3" json:"before,omitempty"`
	After      uint64 `protobuf:"varint,3,opt,name=after,proto3" json:"after,omitempty"`
	Limit      int32  `protobuf:"zigzag32,4,opt,name=limit,proto3" json:"limit,omitempty"`
	Skip       uint64 `protobuf:"varint,5,opt,name=skip,proto3" json:"skip,omitempty"`
	Type       string `protobuf:"bytes,6,opt,name=type,proto3" json:"type,omitempty"`
	Module     string `protobuf:"bytes,7,opt,name=module,proto3" json:"module,omitempty"`
	FromNumber int64  `protobuf:"zigzag64,8,opt,name=from_number,json=fromNumber,proto3" json:"from_number,omitempty"`
	ToNumber   int64  `protobuf:"zigzag64,9,opt,name=to_number,json=toNumber,proto3" json:"to_number,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAccountTxsRequest) Descriptor deprecated

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

Deprecated: Use GetAccountTxsRequest.ProtoReflect.Descriptor instead.

func (*GetAccountTxsRequest) GetAddress

func (x *GetAccountTxsRequest) GetAddress() string

func (*GetAccountTxsRequest) GetAfter

func (x *GetAccountTxsRequest) GetAfter() uint64

func (*GetAccountTxsRequest) GetBefore

func (x *GetAccountTxsRequest) GetBefore() uint64

func (*GetAccountTxsRequest) GetFromNumber

func (x *GetAccountTxsRequest) GetFromNumber() int64

func (*GetAccountTxsRequest) GetLimit

func (x *GetAccountTxsRequest) GetLimit() int32

func (*GetAccountTxsRequest) GetModule

func (x *GetAccountTxsRequest) GetModule() string

func (*GetAccountTxsRequest) GetSkip

func (x *GetAccountTxsRequest) GetSkip() uint64

func (*GetAccountTxsRequest) GetToNumber

func (x *GetAccountTxsRequest) GetToNumber() int64

func (*GetAccountTxsRequest) GetType

func (x *GetAccountTxsRequest) GetType() string

func (*GetAccountTxsRequest) ProtoMessage

func (*GetAccountTxsRequest) ProtoMessage()

func (*GetAccountTxsRequest) ProtoReflect

func (x *GetAccountTxsRequest) ProtoReflect() protoreflect.Message

func (*GetAccountTxsRequest) Reset

func (x *GetAccountTxsRequest) Reset()

func (*GetAccountTxsRequest) String

func (x *GetAccountTxsRequest) String() string

type GetAccountTxsResponse

type GetAccountTxsResponse struct {
	Paging *Paging         `protobuf:"bytes,1,opt,name=paging,proto3" json:"paging,omitempty"`
	Data   []*TxDetailData `protobuf:"bytes,2,rep,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAccountTxsResponse) Descriptor deprecated

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

Deprecated: Use GetAccountTxsResponse.ProtoReflect.Descriptor instead.

func (*GetAccountTxsResponse) GetData

func (x *GetAccountTxsResponse) GetData() []*TxDetailData

func (*GetAccountTxsResponse) GetPaging

func (x *GetAccountTxsResponse) GetPaging() *Paging

func (*GetAccountTxsResponse) ProtoMessage

func (*GetAccountTxsResponse) ProtoMessage()

func (*GetAccountTxsResponse) ProtoReflect

func (x *GetAccountTxsResponse) ProtoReflect() protoreflect.Message

func (*GetAccountTxsResponse) Reset

func (x *GetAccountTxsResponse) Reset()

func (*GetAccountTxsResponse) String

func (x *GetAccountTxsResponse) String() string

type GetBlockRequest

type GetBlockRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetBlockRequest) Descriptor deprecated

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

Deprecated: Use GetBlockRequest.ProtoReflect.Descriptor instead.

func (*GetBlockRequest) GetId

func (x *GetBlockRequest) GetId() string

func (*GetBlockRequest) ProtoMessage

func (*GetBlockRequest) ProtoMessage()

func (*GetBlockRequest) ProtoReflect

func (x *GetBlockRequest) ProtoReflect() protoreflect.Message

func (*GetBlockRequest) Reset

func (x *GetBlockRequest) Reset()

func (*GetBlockRequest) String

func (x *GetBlockRequest) String() string

type GetBlockResponse

type GetBlockResponse struct {

	// Status of the response.
	S string `protobuf:"bytes,1,opt,name=s,proto3" json:"s,omitempty"`
	// Error message.
	Errmsg string           `protobuf:"bytes,2,opt,name=errmsg,proto3" json:"errmsg,omitempty"`
	Data   *BlockDetailInfo `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*GetBlockResponse) Descriptor deprecated

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

Deprecated: Use GetBlockResponse.ProtoReflect.Descriptor instead.

func (*GetBlockResponse) GetData

func (x *GetBlockResponse) GetData() *BlockDetailInfo

func (*GetBlockResponse) GetErrmsg

func (x *GetBlockResponse) GetErrmsg() string

func (*GetBlockResponse) GetS

func (x *GetBlockResponse) GetS() string

func (*GetBlockResponse) ProtoMessage

func (*GetBlockResponse) ProtoMessage()

func (*GetBlockResponse) ProtoReflect

func (x *GetBlockResponse) ProtoReflect() protoreflect.Message

func (*GetBlockResponse) Reset

func (x *GetBlockResponse) Reset()

func (*GetBlockResponse) String

func (x *GetBlockResponse) String() string

type GetBlocksRequest

type GetBlocksRequest struct {
	Before uint64 `protobuf:"varint,1,opt,name=before,proto3" json:"before,omitempty"`
	After  uint64 `protobuf:"varint,2,opt,name=after,proto3" json:"after,omitempty"`
	Limit  int32  `protobuf:"zigzag32,3,opt,name=limit,proto3" json:"limit,omitempty"`
	// contains filtered or unexported fields
}

func (*GetBlocksRequest) Descriptor deprecated

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

Deprecated: Use GetBlocksRequest.ProtoReflect.Descriptor instead.

func (*GetBlocksRequest) GetAfter

func (x *GetBlocksRequest) GetAfter() uint64

func (*GetBlocksRequest) GetBefore

func (x *GetBlocksRequest) GetBefore() uint64

func (*GetBlocksRequest) GetLimit

func (x *GetBlocksRequest) GetLimit() int32

func (*GetBlocksRequest) ProtoMessage

func (*GetBlocksRequest) ProtoMessage()

func (*GetBlocksRequest) ProtoReflect

func (x *GetBlocksRequest) ProtoReflect() protoreflect.Message

func (*GetBlocksRequest) Reset

func (x *GetBlocksRequest) Reset()

func (*GetBlocksRequest) String

func (x *GetBlocksRequest) String() string

type GetBlocksResponse

type GetBlocksResponse struct {
	Paging *Paging      `protobuf:"bytes,1,opt,name=paging,proto3" json:"paging,omitempty"`
	Data   []*BlockInfo `protobuf:"bytes,2,rep,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*GetBlocksResponse) Descriptor deprecated

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

Deprecated: Use GetBlocksResponse.ProtoReflect.Descriptor instead.

func (*GetBlocksResponse) GetData

func (x *GetBlocksResponse) GetData() []*BlockInfo

func (*GetBlocksResponse) GetPaging

func (x *GetBlocksResponse) GetPaging() *Paging

func (*GetBlocksResponse) ProtoMessage

func (*GetBlocksResponse) ProtoMessage()

func (*GetBlocksResponse) ProtoReflect

func (x *GetBlocksResponse) ProtoReflect() protoreflect.Message

func (*GetBlocksResponse) Reset

func (x *GetBlocksResponse) Reset()

func (*GetBlocksResponse) String

func (x *GetBlocksResponse) String() string

type GetContractTxsRequest

type GetContractTxsRequest struct {

	// Address of contract
	Address    string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Limit      int32  `protobuf:"zigzag32,2,opt,name=limit,proto3" json:"limit,omitempty"`
	Skip       uint64 `protobuf:"varint,3,opt,name=skip,proto3" json:"skip,omitempty"`
	FromNumber int64  `protobuf:"zigzag64,4,opt,name=from_number,json=fromNumber,proto3" json:"from_number,omitempty"`
	ToNumber   int64  `protobuf:"zigzag64,5,opt,name=to_number,json=toNumber,proto3" json:"to_number,omitempty"`
	// contains filtered or unexported fields
}

func (*GetContractTxsRequest) Descriptor deprecated

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

Deprecated: Use GetContractTxsRequest.ProtoReflect.Descriptor instead.

func (*GetContractTxsRequest) GetAddress

func (x *GetContractTxsRequest) GetAddress() string

func (*GetContractTxsRequest) GetFromNumber

func (x *GetContractTxsRequest) GetFromNumber() int64

func (*GetContractTxsRequest) GetLimit

func (x *GetContractTxsRequest) GetLimit() int32

func (*GetContractTxsRequest) GetSkip

func (x *GetContractTxsRequest) GetSkip() uint64

func (*GetContractTxsRequest) GetToNumber

func (x *GetContractTxsRequest) GetToNumber() int64

func (*GetContractTxsRequest) ProtoMessage

func (*GetContractTxsRequest) ProtoMessage()

func (*GetContractTxsRequest) ProtoReflect

func (x *GetContractTxsRequest) ProtoReflect() protoreflect.Message

func (*GetContractTxsRequest) Reset

func (x *GetContractTxsRequest) Reset()

func (*GetContractTxsRequest) String

func (x *GetContractTxsRequest) String() string

type GetContractTxsResponse

type GetContractTxsResponse struct {
	Paging *Paging         `protobuf:"bytes,1,opt,name=paging,proto3" json:"paging,omitempty"`
	Data   []*TxDetailData `protobuf:"bytes,2,rep,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*GetContractTxsResponse) Descriptor deprecated

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

Deprecated: Use GetContractTxsResponse.ProtoReflect.Descriptor instead.

func (*GetContractTxsResponse) GetData

func (x *GetContractTxsResponse) GetData() []*TxDetailData

func (*GetContractTxsResponse) GetPaging

func (x *GetContractTxsResponse) GetPaging() *Paging

func (*GetContractTxsResponse) ProtoMessage

func (*GetContractTxsResponse) ProtoMessage()

func (*GetContractTxsResponse) ProtoReflect

func (x *GetContractTxsResponse) ProtoReflect() protoreflect.Message

func (*GetContractTxsResponse) Reset

func (x *GetContractTxsResponse) Reset()

func (*GetContractTxsResponse) String

func (x *GetContractTxsResponse) String() string

type GetCw20BalanceRequest

type GetCw20BalanceRequest struct {

	// address to list balance of
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Limit   int32  `protobuf:"zigzag32,2,opt,name=limit,proto3" json:"limit,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCw20BalanceRequest) Descriptor deprecated

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

Deprecated: Use GetCw20BalanceRequest.ProtoReflect.Descriptor instead.

func (*GetCw20BalanceRequest) GetAddress

func (x *GetCw20BalanceRequest) GetAddress() string

func (*GetCw20BalanceRequest) GetLimit

func (x *GetCw20BalanceRequest) GetLimit() int32

func (*GetCw20BalanceRequest) ProtoMessage

func (*GetCw20BalanceRequest) ProtoMessage()

func (*GetCw20BalanceRequest) ProtoReflect

func (x *GetCw20BalanceRequest) ProtoReflect() protoreflect.Message

func (*GetCw20BalanceRequest) Reset

func (x *GetCw20BalanceRequest) Reset()

func (*GetCw20BalanceRequest) String

func (x *GetCw20BalanceRequest) String() string

type GetCw20BalanceResponse

type GetCw20BalanceResponse struct {
	Field []*WasmCw20Balance `protobuf:"bytes,1,rep,name=field,proto3" json:"field,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCw20BalanceResponse) Descriptor deprecated

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

Deprecated: Use GetCw20BalanceResponse.ProtoReflect.Descriptor instead.

func (*GetCw20BalanceResponse) GetField

func (x *GetCw20BalanceResponse) GetField() []*WasmCw20Balance

func (*GetCw20BalanceResponse) ProtoMessage

func (*GetCw20BalanceResponse) ProtoMessage()

func (*GetCw20BalanceResponse) ProtoReflect

func (x *GetCw20BalanceResponse) ProtoReflect() protoreflect.Message

func (*GetCw20BalanceResponse) Reset

func (x *GetCw20BalanceResponse) Reset()

func (*GetCw20BalanceResponse) String

func (x *GetCw20BalanceResponse) String() string

type GetIBCTransferTxsRequest

type GetIBCTransferTxsRequest struct {
	Sender      string `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	Receiver    string `protobuf:"bytes,2,opt,name=receiver,proto3" json:"receiver,omitempty"`
	SrcChannel  string `protobuf:"bytes,3,opt,name=src_channel,json=srcChannel,proto3" json:"src_channel,omitempty"`
	SrcPort     string `protobuf:"bytes,4,opt,name=src_port,json=srcPort,proto3" json:"src_port,omitempty"`
	DestChannel string `protobuf:"bytes,5,opt,name=dest_channel,json=destChannel,proto3" json:"dest_channel,omitempty"`
	DestPort    string `protobuf:"bytes,6,opt,name=dest_port,json=destPort,proto3" json:"dest_port,omitempty"`
	Limit       int32  `protobuf:"zigzag32,7,opt,name=limit,proto3" json:"limit,omitempty"`
	Skip        uint64 `protobuf:"varint,8,opt,name=skip,proto3" json:"skip,omitempty"`
	// contains filtered or unexported fields
}

func (*GetIBCTransferTxsRequest) Descriptor deprecated

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

Deprecated: Use GetIBCTransferTxsRequest.ProtoReflect.Descriptor instead.

func (*GetIBCTransferTxsRequest) GetDestChannel

func (x *GetIBCTransferTxsRequest) GetDestChannel() string

func (*GetIBCTransferTxsRequest) GetDestPort

func (x *GetIBCTransferTxsRequest) GetDestPort() string

func (*GetIBCTransferTxsRequest) GetLimit

func (x *GetIBCTransferTxsRequest) GetLimit() int32

func (*GetIBCTransferTxsRequest) GetReceiver

func (x *GetIBCTransferTxsRequest) GetReceiver() string

func (*GetIBCTransferTxsRequest) GetSender

func (x *GetIBCTransferTxsRequest) GetSender() string

func (*GetIBCTransferTxsRequest) GetSkip

func (x *GetIBCTransferTxsRequest) GetSkip() uint64

func (*GetIBCTransferTxsRequest) GetSrcChannel

func (x *GetIBCTransferTxsRequest) GetSrcChannel() string

func (*GetIBCTransferTxsRequest) GetSrcPort

func (x *GetIBCTransferTxsRequest) GetSrcPort() string

func (*GetIBCTransferTxsRequest) ProtoMessage

func (*GetIBCTransferTxsRequest) ProtoMessage()

func (*GetIBCTransferTxsRequest) ProtoReflect

func (x *GetIBCTransferTxsRequest) ProtoReflect() protoreflect.Message

func (*GetIBCTransferTxsRequest) Reset

func (x *GetIBCTransferTxsRequest) Reset()

func (*GetIBCTransferTxsRequest) String

func (x *GetIBCTransferTxsRequest) String() string

type GetIBCTransferTxsResponse

type GetIBCTransferTxsResponse struct {
	Field []*IBCTransferTx `protobuf:"bytes,1,rep,name=field,proto3" json:"field,omitempty"`
	// contains filtered or unexported fields
}

func (*GetIBCTransferTxsResponse) Descriptor deprecated

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

Deprecated: Use GetIBCTransferTxsResponse.ProtoReflect.Descriptor instead.

func (*GetIBCTransferTxsResponse) GetField

func (x *GetIBCTransferTxsResponse) GetField() []*IBCTransferTx

func (*GetIBCTransferTxsResponse) ProtoMessage

func (*GetIBCTransferTxsResponse) ProtoMessage()

func (*GetIBCTransferTxsResponse) ProtoReflect

func (*GetIBCTransferTxsResponse) Reset

func (x *GetIBCTransferTxsResponse) Reset()

func (*GetIBCTransferTxsResponse) String

func (x *GetIBCTransferTxsResponse) String() string

type GetPeggyDepositTxsRequest

type GetPeggyDepositTxsRequest struct {

	// Sender address of deposit request
	Sender string `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	// Address of receiveer upon deposit
	Receiver string `protobuf:"bytes,2,opt,name=receiver,proto3" json:"receiver,omitempty"`
	Limit    int32  `protobuf:"zigzag32,3,opt,name=limit,proto3" json:"limit,omitempty"`
	Skip     uint64 `protobuf:"varint,4,opt,name=skip,proto3" json:"skip,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPeggyDepositTxsRequest) Descriptor deprecated

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

Deprecated: Use GetPeggyDepositTxsRequest.ProtoReflect.Descriptor instead.

func (*GetPeggyDepositTxsRequest) GetLimit

func (x *GetPeggyDepositTxsRequest) GetLimit() int32

func (*GetPeggyDepositTxsRequest) GetReceiver

func (x *GetPeggyDepositTxsRequest) GetReceiver() string

func (*GetPeggyDepositTxsRequest) GetSender

func (x *GetPeggyDepositTxsRequest) GetSender() string

func (*GetPeggyDepositTxsRequest) GetSkip

func (x *GetPeggyDepositTxsRequest) GetSkip() uint64

func (*GetPeggyDepositTxsRequest) ProtoMessage

func (*GetPeggyDepositTxsRequest) ProtoMessage()

func (*GetPeggyDepositTxsRequest) ProtoReflect

func (*GetPeggyDepositTxsRequest) Reset

func (x *GetPeggyDepositTxsRequest) Reset()

func (*GetPeggyDepositTxsRequest) String

func (x *GetPeggyDepositTxsRequest) String() string

type GetPeggyDepositTxsResponse

type GetPeggyDepositTxsResponse struct {
	Field []*PeggyDepositTx `protobuf:"bytes,1,rep,name=field,proto3" json:"field,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPeggyDepositTxsResponse) Descriptor deprecated

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

Deprecated: Use GetPeggyDepositTxsResponse.ProtoReflect.Descriptor instead.

func (*GetPeggyDepositTxsResponse) GetField

func (x *GetPeggyDepositTxsResponse) GetField() []*PeggyDepositTx

func (*GetPeggyDepositTxsResponse) ProtoMessage

func (*GetPeggyDepositTxsResponse) ProtoMessage()

func (*GetPeggyDepositTxsResponse) ProtoReflect

func (*GetPeggyDepositTxsResponse) Reset

func (x *GetPeggyDepositTxsResponse) Reset()

func (*GetPeggyDepositTxsResponse) String

func (x *GetPeggyDepositTxsResponse) String() string

type GetPeggyWithdrawalTxsRequest

type GetPeggyWithdrawalTxsRequest struct {

	// Sender address of withdrawal request
	Sender string `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	// Address of receiveer upon withdrawal
	Receiver string `protobuf:"bytes,2,opt,name=receiver,proto3" json:"receiver,omitempty"`
	Limit    int32  `protobuf:"zigzag32,3,opt,name=limit,proto3" json:"limit,omitempty"`
	Skip     uint64 `protobuf:"varint,4,opt,name=skip,proto3" json:"skip,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPeggyWithdrawalTxsRequest) Descriptor deprecated

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

Deprecated: Use GetPeggyWithdrawalTxsRequest.ProtoReflect.Descriptor instead.

func (*GetPeggyWithdrawalTxsRequest) GetLimit

func (x *GetPeggyWithdrawalTxsRequest) GetLimit() int32

func (*GetPeggyWithdrawalTxsRequest) GetReceiver

func (x *GetPeggyWithdrawalTxsRequest) GetReceiver() string

func (*GetPeggyWithdrawalTxsRequest) GetSender

func (x *GetPeggyWithdrawalTxsRequest) GetSender() string

func (*GetPeggyWithdrawalTxsRequest) GetSkip

func (x *GetPeggyWithdrawalTxsRequest) GetSkip() uint64

func (*GetPeggyWithdrawalTxsRequest) ProtoMessage

func (*GetPeggyWithdrawalTxsRequest) ProtoMessage()

func (*GetPeggyWithdrawalTxsRequest) ProtoReflect

func (*GetPeggyWithdrawalTxsRequest) Reset

func (x *GetPeggyWithdrawalTxsRequest) Reset()

func (*GetPeggyWithdrawalTxsRequest) String

type GetPeggyWithdrawalTxsResponse

type GetPeggyWithdrawalTxsResponse struct {
	Field []*PeggyWithdrawalTx `protobuf:"bytes,1,rep,name=field,proto3" json:"field,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPeggyWithdrawalTxsResponse) Descriptor deprecated

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

Deprecated: Use GetPeggyWithdrawalTxsResponse.ProtoReflect.Descriptor instead.

func (*GetPeggyWithdrawalTxsResponse) GetField

func (*GetPeggyWithdrawalTxsResponse) ProtoMessage

func (*GetPeggyWithdrawalTxsResponse) ProtoMessage()

func (*GetPeggyWithdrawalTxsResponse) ProtoReflect

func (*GetPeggyWithdrawalTxsResponse) Reset

func (x *GetPeggyWithdrawalTxsResponse) Reset()

func (*GetPeggyWithdrawalTxsResponse) String

type GetTxByTxHashRequest

type GetTxByTxHashRequest struct {
	Hash string `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTxByTxHashRequest) Descriptor deprecated

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

Deprecated: Use GetTxByTxHashRequest.ProtoReflect.Descriptor instead.

func (*GetTxByTxHashRequest) GetHash

func (x *GetTxByTxHashRequest) GetHash() string

func (*GetTxByTxHashRequest) ProtoMessage

func (*GetTxByTxHashRequest) ProtoMessage()

func (*GetTxByTxHashRequest) ProtoReflect

func (x *GetTxByTxHashRequest) ProtoReflect() protoreflect.Message

func (*GetTxByTxHashRequest) Reset

func (x *GetTxByTxHashRequest) Reset()

func (*GetTxByTxHashRequest) String

func (x *GetTxByTxHashRequest) String() string

type GetTxByTxHashResponse

type GetTxByTxHashResponse struct {

	// Status of the response.
	S string `protobuf:"bytes,1,opt,name=s,proto3" json:"s,omitempty"`
	// Error message.
	Errmsg string        `protobuf:"bytes,2,opt,name=errmsg,proto3" json:"errmsg,omitempty"`
	Data   *TxDetailData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTxByTxHashResponse) Descriptor deprecated

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

Deprecated: Use GetTxByTxHashResponse.ProtoReflect.Descriptor instead.

func (*GetTxByTxHashResponse) GetData

func (x *GetTxByTxHashResponse) GetData() *TxDetailData

func (*GetTxByTxHashResponse) GetErrmsg

func (x *GetTxByTxHashResponse) GetErrmsg() string

func (*GetTxByTxHashResponse) GetS

func (x *GetTxByTxHashResponse) GetS() string

func (*GetTxByTxHashResponse) ProtoMessage

func (*GetTxByTxHashResponse) ProtoMessage()

func (*GetTxByTxHashResponse) ProtoReflect

func (x *GetTxByTxHashResponse) ProtoReflect() protoreflect.Message

func (*GetTxByTxHashResponse) Reset

func (x *GetTxByTxHashResponse) Reset()

func (*GetTxByTxHashResponse) String

func (x *GetTxByTxHashResponse) String() string

type GetTxsRequest

type GetTxsRequest struct {
	Before     uint64 `protobuf:"varint,1,opt,name=before,proto3" json:"before,omitempty"`
	After      uint64 `protobuf:"varint,2,opt,name=after,proto3" json:"after,omitempty"`
	Limit      int32  `protobuf:"zigzag32,3,opt,name=limit,proto3" json:"limit,omitempty"`
	Skip       uint64 `protobuf:"varint,4,opt,name=skip,proto3" json:"skip,omitempty"`
	Type       string `protobuf:"bytes,5,opt,name=type,proto3" json:"type,omitempty"`
	Module     string `protobuf:"bytes,6,opt,name=module,proto3" json:"module,omitempty"`
	FromNumber int64  `protobuf:"zigzag64,7,opt,name=from_number,json=fromNumber,proto3" json:"from_number,omitempty"`
	ToNumber   int64  `protobuf:"zigzag64,8,opt,name=to_number,json=toNumber,proto3" json:"to_number,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTxsRequest) Descriptor deprecated

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

Deprecated: Use GetTxsRequest.ProtoReflect.Descriptor instead.

func (*GetTxsRequest) GetAfter

func (x *GetTxsRequest) GetAfter() uint64

func (*GetTxsRequest) GetBefore

func (x *GetTxsRequest) GetBefore() uint64

func (*GetTxsRequest) GetFromNumber

func (x *GetTxsRequest) GetFromNumber() int64

func (*GetTxsRequest) GetLimit

func (x *GetTxsRequest) GetLimit() int32

func (*GetTxsRequest) GetModule

func (x *GetTxsRequest) GetModule() string

func (*GetTxsRequest) GetSkip

func (x *GetTxsRequest) GetSkip() uint64

func (*GetTxsRequest) GetToNumber

func (x *GetTxsRequest) GetToNumber() int64

func (*GetTxsRequest) GetType

func (x *GetTxsRequest) GetType() string

func (*GetTxsRequest) ProtoMessage

func (*GetTxsRequest) ProtoMessage()

func (*GetTxsRequest) ProtoReflect

func (x *GetTxsRequest) ProtoReflect() protoreflect.Message

func (*GetTxsRequest) Reset

func (x *GetTxsRequest) Reset()

func (*GetTxsRequest) String

func (x *GetTxsRequest) String() string

type GetTxsResponse

type GetTxsResponse struct {
	Paging *Paging   `protobuf:"bytes,1,opt,name=paging,proto3" json:"paging,omitempty"`
	Data   []*TxData `protobuf:"bytes,2,rep,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTxsResponse) Descriptor deprecated

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

Deprecated: Use GetTxsResponse.ProtoReflect.Descriptor instead.

func (*GetTxsResponse) GetData

func (x *GetTxsResponse) GetData() []*TxData

func (*GetTxsResponse) GetPaging

func (x *GetTxsResponse) GetPaging() *Paging

func (*GetTxsResponse) ProtoMessage

func (*GetTxsResponse) ProtoMessage()

func (*GetTxsResponse) ProtoReflect

func (x *GetTxsResponse) ProtoReflect() protoreflect.Message

func (*GetTxsResponse) Reset

func (x *GetTxsResponse) Reset()

func (*GetTxsResponse) String

func (x *GetTxsResponse) String() string

type GetValidatorRequest

type GetValidatorRequest struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	// contains filtered or unexported fields
}

func (*GetValidatorRequest) Descriptor deprecated

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

Deprecated: Use GetValidatorRequest.ProtoReflect.Descriptor instead.

func (*GetValidatorRequest) GetAddress

func (x *GetValidatorRequest) GetAddress() string

func (*GetValidatorRequest) ProtoMessage

func (*GetValidatorRequest) ProtoMessage()

func (*GetValidatorRequest) ProtoReflect

func (x *GetValidatorRequest) ProtoReflect() protoreflect.Message

func (*GetValidatorRequest) Reset

func (x *GetValidatorRequest) Reset()

func (*GetValidatorRequest) String

func (x *GetValidatorRequest) String() string

type GetValidatorResponse

type GetValidatorResponse struct {

	// Status of the response.
	S string `protobuf:"bytes,1,opt,name=s,proto3" json:"s,omitempty"`
	// Error message.
	Errmsg string     `protobuf:"bytes,2,opt,name=errmsg,proto3" json:"errmsg,omitempty"`
	Data   *Validator `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*GetValidatorResponse) Descriptor deprecated

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

Deprecated: Use GetValidatorResponse.ProtoReflect.Descriptor instead.

func (*GetValidatorResponse) GetData

func (x *GetValidatorResponse) GetData() *Validator

func (*GetValidatorResponse) GetErrmsg

func (x *GetValidatorResponse) GetErrmsg() string

func (*GetValidatorResponse) GetS

func (x *GetValidatorResponse) GetS() string

func (*GetValidatorResponse) ProtoMessage

func (*GetValidatorResponse) ProtoMessage()

func (*GetValidatorResponse) ProtoReflect

func (x *GetValidatorResponse) ProtoReflect() protoreflect.Message

func (*GetValidatorResponse) Reset

func (x *GetValidatorResponse) Reset()

func (*GetValidatorResponse) String

func (x *GetValidatorResponse) String() string

type GetValidatorUptimeRequest

type GetValidatorUptimeRequest struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	// contains filtered or unexported fields
}

func (*GetValidatorUptimeRequest) Descriptor deprecated

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

Deprecated: Use GetValidatorUptimeRequest.ProtoReflect.Descriptor instead.

func (*GetValidatorUptimeRequest) GetAddress

func (x *GetValidatorUptimeRequest) GetAddress() string

func (*GetValidatorUptimeRequest) ProtoMessage

func (*GetValidatorUptimeRequest) ProtoMessage()

func (*GetValidatorUptimeRequest) ProtoReflect

func (*GetValidatorUptimeRequest) Reset

func (x *GetValidatorUptimeRequest) Reset()

func (*GetValidatorUptimeRequest) String

func (x *GetValidatorUptimeRequest) String() string

type GetValidatorUptimeResponse

type GetValidatorUptimeResponse struct {

	// Status of the response.
	S string `protobuf:"bytes,1,opt,name=s,proto3" json:"s,omitempty"`
	// Error message.
	Errmsg string             `protobuf:"bytes,2,opt,name=errmsg,proto3" json:"errmsg,omitempty"`
	Data   []*ValidatorUptime `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*GetValidatorUptimeResponse) Descriptor deprecated

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

Deprecated: Use GetValidatorUptimeResponse.ProtoReflect.Descriptor instead.

func (*GetValidatorUptimeResponse) GetData

func (*GetValidatorUptimeResponse) GetErrmsg

func (x *GetValidatorUptimeResponse) GetErrmsg() string

func (*GetValidatorUptimeResponse) GetS

func (*GetValidatorUptimeResponse) ProtoMessage

func (*GetValidatorUptimeResponse) ProtoMessage()

func (*GetValidatorUptimeResponse) ProtoReflect

func (*GetValidatorUptimeResponse) Reset

func (x *GetValidatorUptimeResponse) Reset()

func (*GetValidatorUptimeResponse) String

func (x *GetValidatorUptimeResponse) String() string

type GetValidatorsRequest

type GetValidatorsRequest struct {
	// contains filtered or unexported fields
}

func (*GetValidatorsRequest) Descriptor deprecated

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

Deprecated: Use GetValidatorsRequest.ProtoReflect.Descriptor instead.

func (*GetValidatorsRequest) ProtoMessage

func (*GetValidatorsRequest) ProtoMessage()

func (*GetValidatorsRequest) ProtoReflect

func (x *GetValidatorsRequest) ProtoReflect() protoreflect.Message

func (*GetValidatorsRequest) Reset

func (x *GetValidatorsRequest) Reset()

func (*GetValidatorsRequest) String

func (x *GetValidatorsRequest) String() string

type GetValidatorsResponse

type GetValidatorsResponse struct {

	// Status of the response.
	S string `protobuf:"bytes,1,opt,name=s,proto3" json:"s,omitempty"`
	// Error message.
	Errmsg string       `protobuf:"bytes,2,opt,name=errmsg,proto3" json:"errmsg,omitempty"`
	Data   []*Validator `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*GetValidatorsResponse) Descriptor deprecated

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

Deprecated: Use GetValidatorsResponse.ProtoReflect.Descriptor instead.

func (*GetValidatorsResponse) GetData

func (x *GetValidatorsResponse) GetData() []*Validator

func (*GetValidatorsResponse) GetErrmsg

func (x *GetValidatorsResponse) GetErrmsg() string

func (*GetValidatorsResponse) GetS

func (x *GetValidatorsResponse) GetS() string

func (*GetValidatorsResponse) ProtoMessage

func (*GetValidatorsResponse) ProtoMessage()

func (*GetValidatorsResponse) ProtoReflect

func (x *GetValidatorsResponse) ProtoReflect() protoreflect.Message

func (*GetValidatorsResponse) Reset

func (x *GetValidatorsResponse) Reset()

func (*GetValidatorsResponse) String

func (x *GetValidatorsResponse) String() string

type GetWasmCodeByIDRequest

type GetWasmCodeByIDRequest struct {

	// Code ID of the code
	CodeId int64 `protobuf:"zigzag64,1,opt,name=code_id,json=codeId,proto3" json:"code_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetWasmCodeByIDRequest) Descriptor deprecated

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

Deprecated: Use GetWasmCodeByIDRequest.ProtoReflect.Descriptor instead.

func (*GetWasmCodeByIDRequest) GetCodeId

func (x *GetWasmCodeByIDRequest) GetCodeId() int64

func (*GetWasmCodeByIDRequest) ProtoMessage

func (*GetWasmCodeByIDRequest) ProtoMessage()

func (*GetWasmCodeByIDRequest) ProtoReflect

func (x *GetWasmCodeByIDRequest) ProtoReflect() protoreflect.Message

func (*GetWasmCodeByIDRequest) Reset

func (x *GetWasmCodeByIDRequest) Reset()

func (*GetWasmCodeByIDRequest) String

func (x *GetWasmCodeByIDRequest) String() string

type GetWasmCodeByIDResponse

type GetWasmCodeByIDResponse struct {

	// ID of stored wasmcode, sorted in descending order
	CodeId uint64 `protobuf:"varint,1,opt,name=code_id,json=codeId,proto3" json:"code_id,omitempty"`
	// Tx hash of store code transaction
	TxHash string `protobuf:"bytes,2,opt,name=tx_hash,json=txHash,proto3" json:"tx_hash,omitempty"`
	// Checksum of the cosmwasm code
	Checksum *Checksum `protobuf:"bytes,3,opt,name=checksum,proto3" json:"checksum,omitempty"`
	// Block time when the code is stored, in millisecond
	CreatedAt uint64 `protobuf:"varint,4,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	// Contract type of the wasm code
	ContractType string `protobuf:"bytes,5,opt,name=contract_type,json=contractType,proto3" json:"contract_type,omitempty"`
	// version string of the wasm code
	Version string `protobuf:"bytes,6,opt,name=version,proto3" json:"version,omitempty"`
	// describe instantiate permission
	Permission *ContractPermission `protobuf:"bytes,7,opt,name=permission,proto3" json:"permission,omitempty"`
	// code schema preview
	CodeSchema string `protobuf:"bytes,8,opt,name=code_schema,json=codeSchema,proto3" json:"code_schema,omitempty"`
	// code repo preview, may contain schema folder
	CodeView string `protobuf:"bytes,9,opt,name=code_view,json=codeView,proto3" json:"code_view,omitempty"`
	// count number of contract instantiation from this code
	Instantiates uint64 `protobuf:"varint,10,opt,name=instantiates,proto3" json:"instantiates,omitempty"`
	// creator of this code
	Creator string `protobuf:"bytes,11,opt,name=creator,proto3" json:"creator,omitempty"`
	// monotonic order of the code stored
	CodeNumber int64 `protobuf:"zigzag64,12,opt,name=code_number,json=codeNumber,proto3" json:"code_number,omitempty"`
	// id of the proposal that store this code
	ProposalId int64 `protobuf:"zigzag64,13,opt,name=proposal_id,json=proposalId,proto3" json:"proposal_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetWasmCodeByIDResponse) Descriptor deprecated

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

Deprecated: Use GetWasmCodeByIDResponse.ProtoReflect.Descriptor instead.

func (*GetWasmCodeByIDResponse) GetChecksum

func (x *GetWasmCodeByIDResponse) GetChecksum() *Checksum

func (*GetWasmCodeByIDResponse) GetCodeId

func (x *GetWasmCodeByIDResponse) GetCodeId() uint64

func (*GetWasmCodeByIDResponse) GetCodeNumber

func (x *GetWasmCodeByIDResponse) GetCodeNumber() int64

func (*GetWasmCodeByIDResponse) GetCodeSchema

func (x *GetWasmCodeByIDResponse) GetCodeSchema() string

func (*GetWasmCodeByIDResponse) GetCodeView

func (x *GetWasmCodeByIDResponse) GetCodeView() string

func (*GetWasmCodeByIDResponse) GetContractType

func (x *GetWasmCodeByIDResponse) GetContractType() string

func (*GetWasmCodeByIDResponse) GetCreatedAt

func (x *GetWasmCodeByIDResponse) GetCreatedAt() uint64

func (*GetWasmCodeByIDResponse) GetCreator

func (x *GetWasmCodeByIDResponse) GetCreator() string

func (*GetWasmCodeByIDResponse) GetInstantiates

func (x *GetWasmCodeByIDResponse) GetInstantiates() uint64

func (*GetWasmCodeByIDResponse) GetPermission

func (x *GetWasmCodeByIDResponse) GetPermission() *ContractPermission

func (*GetWasmCodeByIDResponse) GetProposalId

func (x *GetWasmCodeByIDResponse) GetProposalId() int64

func (*GetWasmCodeByIDResponse) GetTxHash

func (x *GetWasmCodeByIDResponse) GetTxHash() string

func (*GetWasmCodeByIDResponse) GetVersion

func (x *GetWasmCodeByIDResponse) GetVersion() string

func (*GetWasmCodeByIDResponse) ProtoMessage

func (*GetWasmCodeByIDResponse) ProtoMessage()

func (*GetWasmCodeByIDResponse) ProtoReflect

func (x *GetWasmCodeByIDResponse) ProtoReflect() protoreflect.Message

func (*GetWasmCodeByIDResponse) Reset

func (x *GetWasmCodeByIDResponse) Reset()

func (*GetWasmCodeByIDResponse) String

func (x *GetWasmCodeByIDResponse) String() string

type GetWasmCodesRequest

type GetWasmCodesRequest struct {
	Limit      int32 `protobuf:"zigzag32,1,opt,name=limit,proto3" json:"limit,omitempty"`
	FromNumber int64 `protobuf:"zigzag64,2,opt,name=from_number,json=fromNumber,proto3" json:"from_number,omitempty"`
	ToNumber   int64 `protobuf:"zigzag64,3,opt,name=to_number,json=toNumber,proto3" json:"to_number,omitempty"`
	// contains filtered or unexported fields
}

func (*GetWasmCodesRequest) Descriptor deprecated

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

Deprecated: Use GetWasmCodesRequest.ProtoReflect.Descriptor instead.

func (*GetWasmCodesRequest) GetFromNumber

func (x *GetWasmCodesRequest) GetFromNumber() int64

func (*GetWasmCodesRequest) GetLimit

func (x *GetWasmCodesRequest) GetLimit() int32

func (*GetWasmCodesRequest) GetToNumber

func (x *GetWasmCodesRequest) GetToNumber() int64

func (*GetWasmCodesRequest) ProtoMessage

func (*GetWasmCodesRequest) ProtoMessage()

func (*GetWasmCodesRequest) ProtoReflect

func (x *GetWasmCodesRequest) ProtoReflect() protoreflect.Message

func (*GetWasmCodesRequest) Reset

func (x *GetWasmCodesRequest) Reset()

func (*GetWasmCodesRequest) String

func (x *GetWasmCodesRequest) String() string

type GetWasmCodesResponse

type GetWasmCodesResponse struct {
	Paging *Paging     `protobuf:"bytes,1,opt,name=paging,proto3" json:"paging,omitempty"`
	Data   []*WasmCode `protobuf:"bytes,2,rep,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*GetWasmCodesResponse) Descriptor deprecated

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

Deprecated: Use GetWasmCodesResponse.ProtoReflect.Descriptor instead.

func (*GetWasmCodesResponse) GetData

func (x *GetWasmCodesResponse) GetData() []*WasmCode

func (*GetWasmCodesResponse) GetPaging

func (x *GetWasmCodesResponse) GetPaging() *Paging

func (*GetWasmCodesResponse) ProtoMessage

func (*GetWasmCodesResponse) ProtoMessage()

func (*GetWasmCodesResponse) ProtoReflect

func (x *GetWasmCodesResponse) ProtoReflect() protoreflect.Message

func (*GetWasmCodesResponse) Reset

func (x *GetWasmCodesResponse) Reset()

func (*GetWasmCodesResponse) String

func (x *GetWasmCodesResponse) String() string

type GetWasmContractByAddressRequest

type GetWasmContractByAddressRequest struct {

	// Contract address
	ContractAddress string `protobuf:"bytes,1,opt,name=contract_address,json=contractAddress,proto3" json:"contract_address,omitempty"`
	// contains filtered or unexported fields
}

func (*GetWasmContractByAddressRequest) Descriptor deprecated

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

Deprecated: Use GetWasmContractByAddressRequest.ProtoReflect.Descriptor instead.

func (*GetWasmContractByAddressRequest) GetContractAddress

func (x *GetWasmContractByAddressRequest) GetContractAddress() string

func (*GetWasmContractByAddressRequest) ProtoMessage

func (*GetWasmContractByAddressRequest) ProtoMessage()

func (*GetWasmContractByAddressRequest) ProtoReflect

func (*GetWasmContractByAddressRequest) Reset

func (*GetWasmContractByAddressRequest) String

type GetWasmContractByAddressResponse

type GetWasmContractByAddressResponse struct {

	// General name of the contract
	Label string `protobuf:"bytes,1,opt,name=label,proto3" json:"label,omitempty"`
	// Address of the contract
	Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	// hash of the instantiate transaction
	TxHash string `protobuf:"bytes,3,opt,name=tx_hash,json=txHash,proto3" json:"tx_hash,omitempty"`
	// Address of the contract creator
	Creator string `protobuf:"bytes,4,opt,name=creator,proto3" json:"creator,omitempty"`
	// Number of times call to execute contract
	Executes uint64 `protobuf:"varint,5,opt,name=executes,proto3" json:"executes,omitempty"`
	// Block timestamp that contract was instantiated, in millisecond
	InstantiatedAt uint64 `protobuf:"varint,6,opt,name=instantiated_at,json=instantiatedAt,proto3" json:"instantiated_at,omitempty"`
	// init message when this contract was instantiated
	InitMessage string `protobuf:"bytes,7,opt,name=init_message,json=initMessage,proto3" json:"init_message,omitempty"`
	// Block timestamp that contract was called, in millisecond
	LastExecutedAt uint64 `protobuf:"varint,8,opt,name=last_executed_at,json=lastExecutedAt,proto3" json:"last_executed_at,omitempty"`
	// Contract funds
	Funds []*ContractFund `protobuf:"bytes,9,rep,name=funds,proto3" json:"funds,omitempty"`
	// Code id of the contract
	CodeId uint64 `protobuf:"varint,10,opt,name=code_id,json=codeId,proto3" json:"code_id,omitempty"`
	// Admin of the contract
	Admin string `protobuf:"bytes,11,opt,name=admin,proto3" json:"admin,omitempty"`
	// Latest migrate message of the contract
	CurrentMigrateMessage string `` /* 127-byte string literal not displayed */
	// Monotonic contract number in database
	ContractNumber int64 `protobuf:"zigzag64,13,opt,name=contract_number,json=contractNumber,proto3" json:"contract_number,omitempty"`
	// Contract version string
	Version string `protobuf:"bytes,14,opt,name=version,proto3" json:"version,omitempty"`
	// Contract type
	Type         string        `protobuf:"bytes,15,opt,name=type,proto3" json:"type,omitempty"`
	Cw20Metadata *Cw20Metadata `protobuf:"bytes,16,opt,name=cw20_metadata,json=cw20Metadata,proto3" json:"cw20_metadata,omitempty"`
	// id of the proposal that instantiate this contract
	ProposalId int64 `protobuf:"zigzag64,17,opt,name=proposal_id,json=proposalId,proto3" json:"proposal_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetWasmContractByAddressResponse) Descriptor deprecated

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

Deprecated: Use GetWasmContractByAddressResponse.ProtoReflect.Descriptor instead.

func (*GetWasmContractByAddressResponse) GetAddress

func (x *GetWasmContractByAddressResponse) GetAddress() string

func (*GetWasmContractByAddressResponse) GetAdmin

func (*GetWasmContractByAddressResponse) GetCodeId

func (*GetWasmContractByAddressResponse) GetContractNumber

func (x *GetWasmContractByAddressResponse) GetContractNumber() int64

func (*GetWasmContractByAddressResponse) GetCreator

func (x *GetWasmContractByAddressResponse) GetCreator() string

func (*GetWasmContractByAddressResponse) GetCurrentMigrateMessage

func (x *GetWasmContractByAddressResponse) GetCurrentMigrateMessage() string

func (*GetWasmContractByAddressResponse) GetCw20Metadata

func (x *GetWasmContractByAddressResponse) GetCw20Metadata() *Cw20Metadata

func (*GetWasmContractByAddressResponse) GetExecutes

func (x *GetWasmContractByAddressResponse) GetExecutes() uint64

func (*GetWasmContractByAddressResponse) GetFunds

func (*GetWasmContractByAddressResponse) GetInitMessage

func (x *GetWasmContractByAddressResponse) GetInitMessage() string

func (*GetWasmContractByAddressResponse) GetInstantiatedAt

func (x *GetWasmContractByAddressResponse) GetInstantiatedAt() uint64

func (*GetWasmContractByAddressResponse) GetLabel

func (*GetWasmContractByAddressResponse) GetLastExecutedAt

func (x *GetWasmContractByAddressResponse) GetLastExecutedAt() uint64

func (*GetWasmContractByAddressResponse) GetProposalId

func (x *GetWasmContractByAddressResponse) GetProposalId() int64

func (*GetWasmContractByAddressResponse) GetTxHash

func (*GetWasmContractByAddressResponse) GetType

func (*GetWasmContractByAddressResponse) GetVersion

func (x *GetWasmContractByAddressResponse) GetVersion() string

func (*GetWasmContractByAddressResponse) ProtoMessage

func (*GetWasmContractByAddressResponse) ProtoMessage()

func (*GetWasmContractByAddressResponse) ProtoReflect

func (*GetWasmContractByAddressResponse) Reset

func (*GetWasmContractByAddressResponse) String

type GetWasmContractsRequest

type GetWasmContractsRequest struct {
	Limit      int32 `protobuf:"zigzag32,1,opt,name=limit,proto3" json:"limit,omitempty"`
	CodeId     int64 `protobuf:"zigzag64,2,opt,name=code_id,json=codeId,proto3" json:"code_id,omitempty"`
	FromNumber int64 `protobuf:"zigzag64,3,opt,name=from_number,json=fromNumber,proto3" json:"from_number,omitempty"`
	ToNumber   int64 `protobuf:"zigzag64,4,opt,name=to_number,json=toNumber,proto3" json:"to_number,omitempty"`
	AssetsOnly bool  `protobuf:"varint,5,opt,name=assets_only,json=assetsOnly,proto3" json:"assets_only,omitempty"`
	Skip       int64 `protobuf:"zigzag64,6,opt,name=skip,proto3" json:"skip,omitempty"`
	// contains filtered or unexported fields
}

func (*GetWasmContractsRequest) Descriptor deprecated

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

Deprecated: Use GetWasmContractsRequest.ProtoReflect.Descriptor instead.

func (*GetWasmContractsRequest) GetAssetsOnly

func (x *GetWasmContractsRequest) GetAssetsOnly() bool

func (*GetWasmContractsRequest) GetCodeId

func (x *GetWasmContractsRequest) GetCodeId() int64

func (*GetWasmContractsRequest) GetFromNumber

func (x *GetWasmContractsRequest) GetFromNumber() int64

func (*GetWasmContractsRequest) GetLimit

func (x *GetWasmContractsRequest) GetLimit() int32

func (*GetWasmContractsRequest) GetSkip

func (x *GetWasmContractsRequest) GetSkip() int64

func (*GetWasmContractsRequest) GetToNumber

func (x *GetWasmContractsRequest) GetToNumber() int64

func (*GetWasmContractsRequest) ProtoMessage

func (*GetWasmContractsRequest) ProtoMessage()

func (*GetWasmContractsRequest) ProtoReflect

func (x *GetWasmContractsRequest) ProtoReflect() protoreflect.Message

func (*GetWasmContractsRequest) Reset

func (x *GetWasmContractsRequest) Reset()

func (*GetWasmContractsRequest) String

func (x *GetWasmContractsRequest) String() string

type GetWasmContractsResponse

type GetWasmContractsResponse struct {
	Paging *Paging         `protobuf:"bytes,1,opt,name=paging,proto3" json:"paging,omitempty"`
	Data   []*WasmContract `protobuf:"bytes,2,rep,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*GetWasmContractsResponse) Descriptor deprecated

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

Deprecated: Use GetWasmContractsResponse.ProtoReflect.Descriptor instead.

func (*GetWasmContractsResponse) GetData

func (x *GetWasmContractsResponse) GetData() []*WasmContract

func (*GetWasmContractsResponse) GetPaging

func (x *GetWasmContractsResponse) GetPaging() *Paging

func (*GetWasmContractsResponse) ProtoMessage

func (*GetWasmContractsResponse) ProtoMessage()

func (*GetWasmContractsResponse) ProtoReflect

func (x *GetWasmContractsResponse) ProtoReflect() protoreflect.Message

func (*GetWasmContractsResponse) Reset

func (x *GetWasmContractsResponse) Reset()

func (*GetWasmContractsResponse) String

func (x *GetWasmContractsResponse) String() string

type IBCTransferTx

type IBCTransferTx struct {

	// the sender address
	Sender string `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	// the recipient address on the destination chain
	Receiver string `protobuf:"bytes,2,opt,name=receiver,proto3" json:"receiver,omitempty"`
	// the port on which the packet will be sent
	SourcePort string `protobuf:"bytes,3,opt,name=source_port,json=sourcePort,proto3" json:"source_port,omitempty"`
	// the channel by which the packet will be sent
	SourceChannel string `protobuf:"bytes,4,opt,name=source_channel,json=sourceChannel,proto3" json:"source_channel,omitempty"`
	// identifies the port on the receiving chain
	DestinationPort string `protobuf:"bytes,5,opt,name=destination_port,json=destinationPort,proto3" json:"destination_port,omitempty"`
	// identifies the channel end on the receiving chain
	DestinationChannel string `protobuf:"bytes,6,opt,name=destination_channel,json=destinationChannel,proto3" json:"destination_channel,omitempty"`
	// transfer amount
	Amount string `protobuf:"bytes,7,opt,name=amount,proto3" json:"amount,omitempty"`
	// transafer denom
	Denom string `protobuf:"bytes,8,opt,name=denom,proto3" json:"denom,omitempty"`
	// Timeout height relative to the current block height. The timeout is disabled
	// when set to 0
	TimeoutHeight string `protobuf:"bytes,9,opt,name=timeout_height,json=timeoutHeight,proto3" json:"timeout_height,omitempty"`
	// Timeout timestamp (in nanoseconds) relative to the current block timestamp
	TimeoutTimestamp uint64 `protobuf:"varint,10,opt,name=timeout_timestamp,json=timeoutTimestamp,proto3" json:"timeout_timestamp,omitempty"`
	// number corresponds to the order of sends and receives, where a Packet with
	// an earlier sequence number must be sent and received before a Packet with a
	// later sequence number
	PacketSequence uint64 `protobuf:"varint,11,opt,name=packet_sequence,json=packetSequence,proto3" json:"packet_sequence,omitempty"`
	DataHex        []byte `protobuf:"bytes,12,opt,name=data_hex,json=dataHex,proto3" json:"data_hex,omitempty"`
	State          string `protobuf:"bytes,13,opt,name=state,proto3" json:"state,omitempty"`
	// it's injective chain tx hash array
	TxHashes  []string `protobuf:"bytes,14,rep,name=tx_hashes,json=txHashes,proto3" json:"tx_hashes,omitempty"`
	CreatedAt string   `protobuf:"bytes,15,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt string   `protobuf:"bytes,16,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	// contains filtered or unexported fields
}

IBCTransferTx wraps tx data includes ibc transfer tx details information

func (*IBCTransferTx) Descriptor deprecated

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

Deprecated: Use IBCTransferTx.ProtoReflect.Descriptor instead.

func (*IBCTransferTx) GetAmount

func (x *IBCTransferTx) GetAmount() string

func (*IBCTransferTx) GetCreatedAt

func (x *IBCTransferTx) GetCreatedAt() string

func (*IBCTransferTx) GetDataHex

func (x *IBCTransferTx) GetDataHex() []byte

func (*IBCTransferTx) GetDenom

func (x *IBCTransferTx) GetDenom() string

func (*IBCTransferTx) GetDestinationChannel

func (x *IBCTransferTx) GetDestinationChannel() string

func (*IBCTransferTx) GetDestinationPort

func (x *IBCTransferTx) GetDestinationPort() string

func (*IBCTransferTx) GetPacketSequence

func (x *IBCTransferTx) GetPacketSequence() uint64

func (*IBCTransferTx) GetReceiver

func (x *IBCTransferTx) GetReceiver() string

func (*IBCTransferTx) GetSender

func (x *IBCTransferTx) GetSender() string

func (*IBCTransferTx) GetSourceChannel

func (x *IBCTransferTx) GetSourceChannel() string

func (*IBCTransferTx) GetSourcePort

func (x *IBCTransferTx) GetSourcePort() string

func (*IBCTransferTx) GetState

func (x *IBCTransferTx) GetState() string

func (*IBCTransferTx) GetTimeoutHeight

func (x *IBCTransferTx) GetTimeoutHeight() string

func (*IBCTransferTx) GetTimeoutTimestamp

func (x *IBCTransferTx) GetTimeoutTimestamp() uint64

func (*IBCTransferTx) GetTxHashes

func (x *IBCTransferTx) GetTxHashes() []string

func (*IBCTransferTx) GetUpdatedAt

func (x *IBCTransferTx) GetUpdatedAt() string

func (*IBCTransferTx) ProtoMessage

func (*IBCTransferTx) ProtoMessage()

func (*IBCTransferTx) ProtoReflect

func (x *IBCTransferTx) ProtoReflect() protoreflect.Message

func (*IBCTransferTx) Reset

func (x *IBCTransferTx) Reset()

func (*IBCTransferTx) String

func (x *IBCTransferTx) String() string

type InjectiveExplorerRPCClient

type InjectiveExplorerRPCClient interface {
	// GetAccountTxs returns tranctions involving in an account based upon params.
	GetAccountTxs(ctx context.Context, in *GetAccountTxsRequest, opts ...grpc.CallOption) (*GetAccountTxsResponse, error)
	// GetContractTxs returns contract-related transactions
	GetContractTxs(ctx context.Context, in *GetContractTxsRequest, opts ...grpc.CallOption) (*GetContractTxsResponse, error)
	// GetBlocks returns blocks based upon the request params
	GetBlocks(ctx context.Context, in *GetBlocksRequest, opts ...grpc.CallOption) (*GetBlocksResponse, error)
	// GetBlock returns block based upon the height or hash
	GetBlock(ctx context.Context, in *GetBlockRequest, opts ...grpc.CallOption) (*GetBlockResponse, error)
	// GetValidators returns validators on the active chain
	GetValidators(ctx context.Context, in *GetValidatorsRequest, opts ...grpc.CallOption) (*GetValidatorsResponse, error)
	// GetValidator returns validator information on the active chain
	GetValidator(ctx context.Context, in *GetValidatorRequest, opts ...grpc.CallOption) (*GetValidatorResponse, error)
	// GetValidatorUptime returns validator uptime information on the active chain
	GetValidatorUptime(ctx context.Context, in *GetValidatorUptimeRequest, opts ...grpc.CallOption) (*GetValidatorUptimeResponse, error)
	// GetTxs returns transactions based upon the request params
	GetTxs(ctx context.Context, in *GetTxsRequest, opts ...grpc.CallOption) (*GetTxsResponse, error)
	// GetTxByTxHash returns certain transaction information by its tx hash.
	GetTxByTxHash(ctx context.Context, in *GetTxByTxHashRequest, opts ...grpc.CallOption) (*GetTxByTxHashResponse, error)
	// GetPeggyDepositTxs returns the peggy deposit transactions based upon the
	// request params
	GetPeggyDepositTxs(ctx context.Context, in *GetPeggyDepositTxsRequest, opts ...grpc.CallOption) (*GetPeggyDepositTxsResponse, error)
	// GetPeggyWithdrawalTxs returns the peggy withdrawal transactions based upon
	// the request params
	GetPeggyWithdrawalTxs(ctx context.Context, in *GetPeggyWithdrawalTxsRequest, opts ...grpc.CallOption) (*GetPeggyWithdrawalTxsResponse, error)
	// GetIBCTransferTxs returns the ibc transfer transactions based upon the
	// request params
	GetIBCTransferTxs(ctx context.Context, in *GetIBCTransferTxsRequest, opts ...grpc.CallOption) (*GetIBCTransferTxsResponse, error)
	// GetWasmCodes lists all stored code
	GetWasmCodes(ctx context.Context, in *GetWasmCodesRequest, opts ...grpc.CallOption) (*GetWasmCodesResponse, error)
	// GetWasmCodeById list cosmwasm code infor by ID
	GetWasmCodeByID(ctx context.Context, in *GetWasmCodeByIDRequest, opts ...grpc.CallOption) (*GetWasmCodeByIDResponse, error)
	// GetWasmContracts lists all contracts
	GetWasmContracts(ctx context.Context, in *GetWasmContractsRequest, opts ...grpc.CallOption) (*GetWasmContractsResponse, error)
	// GetWasmContractByAddress list cosmwasm contract info by its address
	GetWasmContractByAddress(ctx context.Context, in *GetWasmContractByAddressRequest, opts ...grpc.CallOption) (*GetWasmContractByAddressResponse, error)
	// GetCw20Balance lists all cw20 balances of an injective account
	GetCw20Balance(ctx context.Context, in *GetCw20BalanceRequest, opts ...grpc.CallOption) (*GetCw20BalanceResponse, error)
	// Request relayers infos by marketIDs. If no ids are provided, all market with
	// associated relayers are returned
	Relayers(ctx context.Context, in *RelayersRequest, opts ...grpc.CallOption) (*RelayersResponse, error)
	// StreamTxs returns transactions based upon the request params
	StreamTxs(ctx context.Context, in *StreamTxsRequest, opts ...grpc.CallOption) (InjectiveExplorerRPC_StreamTxsClient, error)
	// StreamBlocks returns the latest blocks
	StreamBlocks(ctx context.Context, in *StreamBlocksRequest, opts ...grpc.CallOption) (InjectiveExplorerRPC_StreamBlocksClient, error)
}

InjectiveExplorerRPCClient is the client API for InjectiveExplorerRPC service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type InjectiveExplorerRPCServer

type InjectiveExplorerRPCServer interface {
	// GetAccountTxs returns tranctions involving in an account based upon params.
	GetAccountTxs(context.Context, *GetAccountTxsRequest) (*GetAccountTxsResponse, error)
	// GetContractTxs returns contract-related transactions
	GetContractTxs(context.Context, *GetContractTxsRequest) (*GetContractTxsResponse, error)
	// GetBlocks returns blocks based upon the request params
	GetBlocks(context.Context, *GetBlocksRequest) (*GetBlocksResponse, error)
	// GetBlock returns block based upon the height or hash
	GetBlock(context.Context, *GetBlockRequest) (*GetBlockResponse, error)
	// GetValidators returns validators on the active chain
	GetValidators(context.Context, *GetValidatorsRequest) (*GetValidatorsResponse, error)
	// GetValidator returns validator information on the active chain
	GetValidator(context.Context, *GetValidatorRequest) (*GetValidatorResponse, error)
	// GetValidatorUptime returns validator uptime information on the active chain
	GetValidatorUptime(context.Context, *GetValidatorUptimeRequest) (*GetValidatorUptimeResponse, error)
	// GetTxs returns transactions based upon the request params
	GetTxs(context.Context, *GetTxsRequest) (*GetTxsResponse, error)
	// GetTxByTxHash returns certain transaction information by its tx hash.
	GetTxByTxHash(context.Context, *GetTxByTxHashRequest) (*GetTxByTxHashResponse, error)
	// GetPeggyDepositTxs returns the peggy deposit transactions based upon the
	// request params
	GetPeggyDepositTxs(context.Context, *GetPeggyDepositTxsRequest) (*GetPeggyDepositTxsResponse, error)
	// GetPeggyWithdrawalTxs returns the peggy withdrawal transactions based upon
	// the request params
	GetPeggyWithdrawalTxs(context.Context, *GetPeggyWithdrawalTxsRequest) (*GetPeggyWithdrawalTxsResponse, error)
	// GetIBCTransferTxs returns the ibc transfer transactions based upon the
	// request params
	GetIBCTransferTxs(context.Context, *GetIBCTransferTxsRequest) (*GetIBCTransferTxsResponse, error)
	// GetWasmCodes lists all stored code
	GetWasmCodes(context.Context, *GetWasmCodesRequest) (*GetWasmCodesResponse, error)
	// GetWasmCodeById list cosmwasm code infor by ID
	GetWasmCodeByID(context.Context, *GetWasmCodeByIDRequest) (*GetWasmCodeByIDResponse, error)
	// GetWasmContracts lists all contracts
	GetWasmContracts(context.Context, *GetWasmContractsRequest) (*GetWasmContractsResponse, error)
	// GetWasmContractByAddress list cosmwasm contract info by its address
	GetWasmContractByAddress(context.Context, *GetWasmContractByAddressRequest) (*GetWasmContractByAddressResponse, error)
	// GetCw20Balance lists all cw20 balances of an injective account
	GetCw20Balance(context.Context, *GetCw20BalanceRequest) (*GetCw20BalanceResponse, error)
	// Request relayers infos by marketIDs. If no ids are provided, all market with
	// associated relayers are returned
	Relayers(context.Context, *RelayersRequest) (*RelayersResponse, error)
	// StreamTxs returns transactions based upon the request params
	StreamTxs(*StreamTxsRequest, InjectiveExplorerRPC_StreamTxsServer) error
	// StreamBlocks returns the latest blocks
	StreamBlocks(*StreamBlocksRequest, InjectiveExplorerRPC_StreamBlocksServer) error
	// contains filtered or unexported methods
}

InjectiveExplorerRPCServer is the server API for InjectiveExplorerRPC service. All implementations must embed UnimplementedInjectiveExplorerRPCServer for forward compatibility

type InjectiveExplorerRPC_StreamBlocksClient

type InjectiveExplorerRPC_StreamBlocksClient interface {
	Recv() (*StreamBlocksResponse, error)
	grpc.ClientStream
}

type InjectiveExplorerRPC_StreamBlocksServer

type InjectiveExplorerRPC_StreamBlocksServer interface {
	Send(*StreamBlocksResponse) error
	grpc.ServerStream
}

type InjectiveExplorerRPC_StreamTxsClient

type InjectiveExplorerRPC_StreamTxsClient interface {
	Recv() (*StreamTxsResponse, error)
	grpc.ClientStream
}

type InjectiveExplorerRPC_StreamTxsServer

type InjectiveExplorerRPC_StreamTxsServer interface {
	Send(*StreamTxsResponse) error
	grpc.ServerStream
}

type Paging

type Paging struct {

	// total number of txs saved in database
	Total int64 `protobuf:"zigzag64,1,opt,name=total,proto3" json:"total,omitempty"`
	// can be either block height or index num
	From int32 `protobuf:"zigzag32,2,opt,name=from,proto3" json:"from,omitempty"`
	// can be either block height or index num
	To int32 `protobuf:"zigzag32,3,opt,name=to,proto3" json:"to,omitempty"`
	// count entries by subaccount, serving some places on helix
	CountBySubaccount int64 `protobuf:"zigzag64,4,opt,name=count_by_subaccount,json=countBySubaccount,proto3" json:"count_by_subaccount,omitempty"`
	// contains filtered or unexported fields
}

Paging defines the structure for required params for handling pagination

func (*Paging) Descriptor deprecated

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

Deprecated: Use Paging.ProtoReflect.Descriptor instead.

func (*Paging) GetCountBySubaccount

func (x *Paging) GetCountBySubaccount() int64

func (*Paging) GetFrom

func (x *Paging) GetFrom() int32

func (*Paging) GetTo

func (x *Paging) GetTo() int32

func (*Paging) GetTotal

func (x *Paging) GetTotal() int64

func (*Paging) ProtoMessage

func (*Paging) ProtoMessage()

func (*Paging) ProtoReflect

func (x *Paging) ProtoReflect() protoreflect.Message

func (*Paging) Reset

func (x *Paging) Reset()

func (*Paging) String

func (x *Paging) String() string

type PeggyDepositTx

type PeggyDepositTx struct {

	// Sender address of deposit request
	Sender string `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	// Address of receiveer upon deposit
	Receiver string `protobuf:"bytes,2,opt,name=receiver,proto3" json:"receiver,omitempty"`
	// The event nonce of WithdrawalClaim event emitted by Ethereum chain upon
	// deposit
	EventNonce uint64 `protobuf:"varint,3,opt,name=event_nonce,json=eventNonce,proto3" json:"event_nonce,omitempty"`
	// The block height of WithdrawalClaim event emitted by Ethereum chain upon
	// deposit
	EventHeight uint64 `protobuf:"varint,4,opt,name=event_height,json=eventHeight,proto3" json:"event_height,omitempty"`
	// Amount of tokens being deposited
	Amount string `protobuf:"bytes,5,opt,name=amount,proto3" json:"amount,omitempty"`
	// Denom of tokens being deposited
	Denom string `protobuf:"bytes,6,opt,name=denom,proto3" json:"denom,omitempty"`
	// orchestratorAddress who created batch request
	OrchestratorAddress string `protobuf:"bytes,7,opt,name=orchestrator_address,json=orchestratorAddress,proto3" json:"orchestrator_address,omitempty"`
	State               string `protobuf:"bytes,8,opt,name=state,proto3" json:"state,omitempty"`
	// The claimType will be DepoistClaim for Deposits
	ClaimType int32    `protobuf:"zigzag32,9,opt,name=claim_type,json=claimType,proto3" json:"claim_type,omitempty"`
	TxHashes  []string `protobuf:"bytes,10,rep,name=tx_hashes,json=txHashes,proto3" json:"tx_hashes,omitempty"`
	CreatedAt string   `protobuf:"bytes,11,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt string   `protobuf:"bytes,12,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	// contains filtered or unexported fields
}

PeggyDepositTx wraps tx data includes peggy deposit tx details information

func (*PeggyDepositTx) Descriptor deprecated

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

Deprecated: Use PeggyDepositTx.ProtoReflect.Descriptor instead.

func (*PeggyDepositTx) GetAmount

func (x *PeggyDepositTx) GetAmount() string

func (*PeggyDepositTx) GetClaimType

func (x *PeggyDepositTx) GetClaimType() int32

func (*PeggyDepositTx) GetCreatedAt

func (x *PeggyDepositTx) GetCreatedAt() string

func (*PeggyDepositTx) GetDenom

func (x *PeggyDepositTx) GetDenom() string

func (*PeggyDepositTx) GetEventHeight

func (x *PeggyDepositTx) GetEventHeight() uint64

func (*PeggyDepositTx) GetEventNonce

func (x *PeggyDepositTx) GetEventNonce() uint64

func (*PeggyDepositTx) GetOrchestratorAddress

func (x *PeggyDepositTx) GetOrchestratorAddress() string

func (*PeggyDepositTx) GetReceiver

func (x *PeggyDepositTx) GetReceiver() string

func (*PeggyDepositTx) GetSender

func (x *PeggyDepositTx) GetSender() string

func (*PeggyDepositTx) GetState

func (x *PeggyDepositTx) GetState() string

func (*PeggyDepositTx) GetTxHashes

func (x *PeggyDepositTx) GetTxHashes() []string

func (*PeggyDepositTx) GetUpdatedAt

func (x *PeggyDepositTx) GetUpdatedAt() string

func (*PeggyDepositTx) ProtoMessage

func (*PeggyDepositTx) ProtoMessage()

func (*PeggyDepositTx) ProtoReflect

func (x *PeggyDepositTx) ProtoReflect() protoreflect.Message

func (*PeggyDepositTx) Reset

func (x *PeggyDepositTx) Reset()

func (*PeggyDepositTx) String

func (x *PeggyDepositTx) String() string

type PeggyWithdrawalTx

type PeggyWithdrawalTx struct {

	// Sender address of withdrawal request
	Sender string `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	// Address of receiveer upon withdrawal
	Receiver string `protobuf:"bytes,2,opt,name=receiver,proto3" json:"receiver,omitempty"`
	// Amount of tokens being withdrawan
	Amount string `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount,omitempty"`
	// Denom of tokens being withdrawan
	Denom string `protobuf:"bytes,4,opt,name=denom,proto3" json:"denom,omitempty"`
	// The bridge fee paid by sender for withdrawal
	BridgeFee string `protobuf:"bytes,5,opt,name=bridge_fee,json=bridgeFee,proto3" json:"bridge_fee,omitempty"`
	// A auto incremented unique ID representing the withdrawal request
	OutgoingTxId uint64 `protobuf:"varint,6,opt,name=outgoing_tx_id,json=outgoingTxId,proto3" json:"outgoing_tx_id,omitempty"`
	// The timestamp after which Batch request will be discarded if not processed
	// already
	BatchTimeout uint64 `protobuf:"varint,7,opt,name=batch_timeout,json=batchTimeout,proto3" json:"batch_timeout,omitempty"`
	// A auto incremented unique ID representing the Withdrawal Batches
	BatchNonce uint64 `protobuf:"varint,8,opt,name=batch_nonce,json=batchNonce,proto3" json:"batch_nonce,omitempty"`
	// orchestratorAddress who created batch request
	OrchestratorAddress string `protobuf:"bytes,9,opt,name=orchestrator_address,json=orchestratorAddress,proto3" json:"orchestrator_address,omitempty"`
	// The event nonce of WithdrawalClaim event emitted by Ethereum chain upon
	// batch withdrawal
	EventNonce uint64 `protobuf:"varint,10,opt,name=event_nonce,json=eventNonce,proto3" json:"event_nonce,omitempty"`
	// The block height of WithdrawalClaim event emitted by Ethereum chain upon
	// batch withdrawal
	EventHeight uint64 `protobuf:"varint,11,opt,name=event_height,json=eventHeight,proto3" json:"event_height,omitempty"`
	State       string `protobuf:"bytes,12,opt,name=state,proto3" json:"state,omitempty"`
	// The claimType will be WithdrawalClaim for Batch Withdrawals
	ClaimType int32    `protobuf:"zigzag32,13,opt,name=claim_type,json=claimType,proto3" json:"claim_type,omitempty"`
	TxHashes  []string `protobuf:"bytes,14,rep,name=tx_hashes,json=txHashes,proto3" json:"tx_hashes,omitempty"`
	CreatedAt string   `protobuf:"bytes,15,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt string   `protobuf:"bytes,16,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	// contains filtered or unexported fields
}

PeggyWithdrawalTx wraps tx data includes peggy withdrawal tx details information

func (*PeggyWithdrawalTx) Descriptor deprecated

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

Deprecated: Use PeggyWithdrawalTx.ProtoReflect.Descriptor instead.

func (*PeggyWithdrawalTx) GetAmount

func (x *PeggyWithdrawalTx) GetAmount() string

func (*PeggyWithdrawalTx) GetBatchNonce

func (x *PeggyWithdrawalTx) GetBatchNonce() uint64

func (*PeggyWithdrawalTx) GetBatchTimeout

func (x *PeggyWithdrawalTx) GetBatchTimeout() uint64

func (*PeggyWithdrawalTx) GetBridgeFee

func (x *PeggyWithdrawalTx) GetBridgeFee() string

func (*PeggyWithdrawalTx) GetClaimType

func (x *PeggyWithdrawalTx) GetClaimType() int32

func (*PeggyWithdrawalTx) GetCreatedAt

func (x *PeggyWithdrawalTx) GetCreatedAt() string

func (*PeggyWithdrawalTx) GetDenom

func (x *PeggyWithdrawalTx) GetDenom() string

func (*PeggyWithdrawalTx) GetEventHeight

func (x *PeggyWithdrawalTx) GetEventHeight() uint64

func (*PeggyWithdrawalTx) GetEventNonce

func (x *PeggyWithdrawalTx) GetEventNonce() uint64

func (*PeggyWithdrawalTx) GetOrchestratorAddress

func (x *PeggyWithdrawalTx) GetOrchestratorAddress() string

func (*PeggyWithdrawalTx) GetOutgoingTxId

func (x *PeggyWithdrawalTx) GetOutgoingTxId() uint64

func (*PeggyWithdrawalTx) GetReceiver

func (x *PeggyWithdrawalTx) GetReceiver() string

func (*PeggyWithdrawalTx) GetSender

func (x *PeggyWithdrawalTx) GetSender() string

func (*PeggyWithdrawalTx) GetState

func (x *PeggyWithdrawalTx) GetState() string

func (*PeggyWithdrawalTx) GetTxHashes

func (x *PeggyWithdrawalTx) GetTxHashes() []string

func (*PeggyWithdrawalTx) GetUpdatedAt

func (x *PeggyWithdrawalTx) GetUpdatedAt() string

func (*PeggyWithdrawalTx) ProtoMessage

func (*PeggyWithdrawalTx) ProtoMessage()

func (*PeggyWithdrawalTx) ProtoReflect

func (x *PeggyWithdrawalTx) ProtoReflect() protoreflect.Message

func (*PeggyWithdrawalTx) Reset

func (x *PeggyWithdrawalTx) Reset()

func (*PeggyWithdrawalTx) String

func (x *PeggyWithdrawalTx) String() string

type Relayer

type Relayer struct {

	// Relayer identifier
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Call to action. A link to the relayer
	Cta string `protobuf:"bytes,2,opt,name=cta,proto3" json:"cta,omitempty"`
	// contains filtered or unexported fields
}

func (*Relayer) Descriptor deprecated

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

Deprecated: Use Relayer.ProtoReflect.Descriptor instead.

func (*Relayer) GetCta

func (x *Relayer) GetCta() string

func (*Relayer) GetName

func (x *Relayer) GetName() string

func (*Relayer) ProtoMessage

func (*Relayer) ProtoMessage()

func (*Relayer) ProtoReflect

func (x *Relayer) ProtoReflect() protoreflect.Message

func (*Relayer) Reset

func (x *Relayer) Reset()

func (*Relayer) String

func (x *Relayer) String() string

type RelayerMarkets

type RelayerMarkets struct {

	// Market ID of the market
	MarketId string `protobuf:"bytes,1,opt,name=market_id,json=marketId,proto3" json:"market_id,omitempty"`
	// Relayers list for specified market
	Relayers []*Relayer `protobuf:"bytes,2,rep,name=relayers,proto3" json:"relayers,omitempty"`
	// contains filtered or unexported fields
}

func (*RelayerMarkets) Descriptor deprecated

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

Deprecated: Use RelayerMarkets.ProtoReflect.Descriptor instead.

func (*RelayerMarkets) GetMarketId

func (x *RelayerMarkets) GetMarketId() string

func (*RelayerMarkets) GetRelayers

func (x *RelayerMarkets) GetRelayers() []*Relayer

func (*RelayerMarkets) ProtoMessage

func (*RelayerMarkets) ProtoMessage()

func (*RelayerMarkets) ProtoReflect

func (x *RelayerMarkets) ProtoReflect() protoreflect.Message

func (*RelayerMarkets) Reset

func (x *RelayerMarkets) Reset()

func (*RelayerMarkets) String

func (x *RelayerMarkets) String() string

type RelayersRequest

type RelayersRequest struct {

	// Specify multiple marketIDs to search.
	MarketIDs []string `protobuf:"bytes,1,rep,name=market_i_ds,json=marketIDs,proto3" json:"market_i_ds,omitempty"`
	// contains filtered or unexported fields
}

func (*RelayersRequest) Descriptor deprecated

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

Deprecated: Use RelayersRequest.ProtoReflect.Descriptor instead.

func (*RelayersRequest) GetMarketIDs

func (x *RelayersRequest) GetMarketIDs() []string

func (*RelayersRequest) ProtoMessage

func (*RelayersRequest) ProtoMessage()

func (*RelayersRequest) ProtoReflect

func (x *RelayersRequest) ProtoReflect() protoreflect.Message

func (*RelayersRequest) Reset

func (x *RelayersRequest) Reset()

func (*RelayersRequest) String

func (x *RelayersRequest) String() string

type RelayersResponse

type RelayersResponse struct {
	Field []*RelayerMarkets `protobuf:"bytes,1,rep,name=field,proto3" json:"field,omitempty"`
	// contains filtered or unexported fields
}

func (*RelayersResponse) Descriptor deprecated

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

Deprecated: Use RelayersResponse.ProtoReflect.Descriptor instead.

func (*RelayersResponse) GetField

func (x *RelayersResponse) GetField() []*RelayerMarkets

func (*RelayersResponse) ProtoMessage

func (*RelayersResponse) ProtoMessage()

func (*RelayersResponse) ProtoReflect

func (x *RelayersResponse) ProtoReflect() protoreflect.Message

func (*RelayersResponse) Reset

func (x *RelayersResponse) Reset()

func (*RelayersResponse) String

func (x *RelayersResponse) String() string

type Signature

type Signature struct {
	Pubkey    string `protobuf:"bytes,1,opt,name=pubkey,proto3" json:"pubkey,omitempty"`
	Address   string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	Sequence  uint64 `protobuf:"varint,3,opt,name=sequence,proto3" json:"sequence,omitempty"`
	Signature string `protobuf:"bytes,4,opt,name=signature,proto3" json:"signature,omitempty"`
	// contains filtered or unexported fields
}

Signature wraps tx signature

func (*Signature) Descriptor deprecated

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

Deprecated: Use Signature.ProtoReflect.Descriptor instead.

func (*Signature) GetAddress

func (x *Signature) GetAddress() string

func (*Signature) GetPubkey

func (x *Signature) GetPubkey() string

func (*Signature) GetSequence

func (x *Signature) GetSequence() uint64

func (*Signature) GetSignature

func (x *Signature) GetSignature() string

func (*Signature) ProtoMessage

func (*Signature) ProtoMessage()

func (*Signature) ProtoReflect

func (x *Signature) ProtoReflect() protoreflect.Message

func (*Signature) Reset

func (x *Signature) Reset()

func (*Signature) String

func (x *Signature) String() string

type SlashingEvent

type SlashingEvent struct {
	BlockNumber    uint64 `protobuf:"varint,1,opt,name=block_number,json=blockNumber,proto3" json:"block_number,omitempty"`
	BlockTimestamp string `protobuf:"bytes,2,opt,name=block_timestamp,json=blockTimestamp,proto3" json:"block_timestamp,omitempty"`
	Address        string `protobuf:"bytes,3,opt,name=address,proto3" json:"address,omitempty"`
	Power          uint64 `protobuf:"varint,4,opt,name=power,proto3" json:"power,omitempty"`
	Reason         string `protobuf:"bytes,5,opt,name=reason,proto3" json:"reason,omitempty"`
	Jailed         string `protobuf:"bytes,6,opt,name=jailed,proto3" json:"jailed,omitempty"`
	MissedBlocks   uint64 `protobuf:"varint,7,opt,name=missed_blocks,json=missedBlocks,proto3" json:"missed_blocks,omitempty"`
	// contains filtered or unexported fields
}

func (*SlashingEvent) Descriptor deprecated

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

Deprecated: Use SlashingEvent.ProtoReflect.Descriptor instead.

func (*SlashingEvent) GetAddress

func (x *SlashingEvent) GetAddress() string

func (*SlashingEvent) GetBlockNumber

func (x *SlashingEvent) GetBlockNumber() uint64

func (*SlashingEvent) GetBlockTimestamp

func (x *SlashingEvent) GetBlockTimestamp() string

func (*SlashingEvent) GetJailed

func (x *SlashingEvent) GetJailed() string

func (*SlashingEvent) GetMissedBlocks

func (x *SlashingEvent) GetMissedBlocks() uint64

func (*SlashingEvent) GetPower

func (x *SlashingEvent) GetPower() uint64

func (*SlashingEvent) GetReason

func (x *SlashingEvent) GetReason() string

func (*SlashingEvent) ProtoMessage

func (*SlashingEvent) ProtoMessage()

func (*SlashingEvent) ProtoReflect

func (x *SlashingEvent) ProtoReflect() protoreflect.Message

func (*SlashingEvent) Reset

func (x *SlashingEvent) Reset()

func (*SlashingEvent) String

func (x *SlashingEvent) String() string

type StreamBlocksRequest

type StreamBlocksRequest struct {
	// contains filtered or unexported fields
}

func (*StreamBlocksRequest) Descriptor deprecated

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

Deprecated: Use StreamBlocksRequest.ProtoReflect.Descriptor instead.

func (*StreamBlocksRequest) ProtoMessage

func (*StreamBlocksRequest) ProtoMessage()

func (*StreamBlocksRequest) ProtoReflect

func (x *StreamBlocksRequest) ProtoReflect() protoreflect.Message

func (*StreamBlocksRequest) Reset

func (x *StreamBlocksRequest) Reset()

func (*StreamBlocksRequest) String

func (x *StreamBlocksRequest) String() string

type StreamBlocksResponse

type StreamBlocksResponse struct {
	Height        uint64       `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	Proposer      string       `protobuf:"bytes,2,opt,name=proposer,proto3" json:"proposer,omitempty"`
	Moniker       string       `protobuf:"bytes,3,opt,name=moniker,proto3" json:"moniker,omitempty"`
	BlockHash     string       `protobuf:"bytes,4,opt,name=block_hash,json=blockHash,proto3" json:"block_hash,omitempty"`
	ParentHash    string       `protobuf:"bytes,5,opt,name=parent_hash,json=parentHash,proto3" json:"parent_hash,omitempty"`
	NumPreCommits int64        `protobuf:"zigzag64,6,opt,name=num_pre_commits,json=numPreCommits,proto3" json:"num_pre_commits,omitempty"`
	NumTxs        int64        `protobuf:"zigzag64,7,opt,name=num_txs,json=numTxs,proto3" json:"num_txs,omitempty"`
	Txs           []*TxDataRPC `protobuf:"bytes,8,rep,name=txs,proto3" json:"txs,omitempty"`
	Timestamp     string       `protobuf:"bytes,9,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	// contains filtered or unexported fields
}

func (*StreamBlocksResponse) Descriptor deprecated

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

Deprecated: Use StreamBlocksResponse.ProtoReflect.Descriptor instead.

func (*StreamBlocksResponse) GetBlockHash

func (x *StreamBlocksResponse) GetBlockHash() string

func (*StreamBlocksResponse) GetHeight

func (x *StreamBlocksResponse) GetHeight() uint64

func (*StreamBlocksResponse) GetMoniker

func (x *StreamBlocksResponse) GetMoniker() string

func (*StreamBlocksResponse) GetNumPreCommits

func (x *StreamBlocksResponse) GetNumPreCommits() int64

func (*StreamBlocksResponse) GetNumTxs

func (x *StreamBlocksResponse) GetNumTxs() int64

func (*StreamBlocksResponse) GetParentHash

func (x *StreamBlocksResponse) GetParentHash() string

func (*StreamBlocksResponse) GetProposer

func (x *StreamBlocksResponse) GetProposer() string

func (*StreamBlocksResponse) GetTimestamp

func (x *StreamBlocksResponse) GetTimestamp() string

func (*StreamBlocksResponse) GetTxs

func (x *StreamBlocksResponse) GetTxs() []*TxDataRPC

func (*StreamBlocksResponse) ProtoMessage

func (*StreamBlocksResponse) ProtoMessage()

func (*StreamBlocksResponse) ProtoReflect

func (x *StreamBlocksResponse) ProtoReflect() protoreflect.Message

func (*StreamBlocksResponse) Reset

func (x *StreamBlocksResponse) Reset()

func (*StreamBlocksResponse) String

func (x *StreamBlocksResponse) String() string

type StreamTxsRequest

type StreamTxsRequest struct {
	// contains filtered or unexported fields
}

func (*StreamTxsRequest) Descriptor deprecated

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

Deprecated: Use StreamTxsRequest.ProtoReflect.Descriptor instead.

func (*StreamTxsRequest) ProtoMessage

func (*StreamTxsRequest) ProtoMessage()

func (*StreamTxsRequest) ProtoReflect

func (x *StreamTxsRequest) ProtoReflect() protoreflect.Message

func (*StreamTxsRequest) Reset

func (x *StreamTxsRequest) Reset()

func (*StreamTxsRequest) String

func (x *StreamTxsRequest) String() string

type StreamTxsResponse

type StreamTxsResponse struct {
	Id             string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	BlockNumber    uint64 `protobuf:"varint,2,opt,name=block_number,json=blockNumber,proto3" json:"block_number,omitempty"`
	BlockTimestamp string `protobuf:"bytes,3,opt,name=block_timestamp,json=blockTimestamp,proto3" json:"block_timestamp,omitempty"`
	Hash           string `protobuf:"bytes,4,opt,name=hash,proto3" json:"hash,omitempty"`
	Codespace      string `protobuf:"bytes,5,opt,name=codespace,proto3" json:"codespace,omitempty"`
	Messages       string `protobuf:"bytes,6,opt,name=messages,proto3" json:"messages,omitempty"`
	TxNumber       uint64 `protobuf:"varint,7,opt,name=tx_number,json=txNumber,proto3" json:"tx_number,omitempty"`
	// Transaction log indicating errors
	ErrorLog string `protobuf:"bytes,8,opt,name=error_log,json=errorLog,proto3" json:"error_log,omitempty"`
	Code     uint32 `protobuf:"varint,9,opt,name=code,proto3" json:"code,omitempty"`
	// contains filtered or unexported fields
}

func (*StreamTxsResponse) Descriptor deprecated

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

Deprecated: Use StreamTxsResponse.ProtoReflect.Descriptor instead.

func (*StreamTxsResponse) GetBlockNumber

func (x *StreamTxsResponse) GetBlockNumber() uint64

func (*StreamTxsResponse) GetBlockTimestamp

func (x *StreamTxsResponse) GetBlockTimestamp() string

func (*StreamTxsResponse) GetCode

func (x *StreamTxsResponse) GetCode() uint32

func (*StreamTxsResponse) GetCodespace

func (x *StreamTxsResponse) GetCodespace() string

func (*StreamTxsResponse) GetErrorLog

func (x *StreamTxsResponse) GetErrorLog() string

func (*StreamTxsResponse) GetHash

func (x *StreamTxsResponse) GetHash() string

func (*StreamTxsResponse) GetId

func (x *StreamTxsResponse) GetId() string

func (*StreamTxsResponse) GetMessages

func (x *StreamTxsResponse) GetMessages() string

func (*StreamTxsResponse) GetTxNumber

func (x *StreamTxsResponse) GetTxNumber() uint64

func (*StreamTxsResponse) ProtoMessage

func (*StreamTxsResponse) ProtoMessage()

func (*StreamTxsResponse) ProtoReflect

func (x *StreamTxsResponse) ProtoReflect() protoreflect.Message

func (*StreamTxsResponse) Reset

func (x *StreamTxsResponse) Reset()

func (*StreamTxsResponse) String

func (x *StreamTxsResponse) String() string

type TxData

type TxData struct {
	Id             string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	BlockNumber    uint64 `protobuf:"varint,2,opt,name=block_number,json=blockNumber,proto3" json:"block_number,omitempty"`
	BlockTimestamp string `protobuf:"bytes,3,opt,name=block_timestamp,json=blockTimestamp,proto3" json:"block_timestamp,omitempty"`
	Hash           string `protobuf:"bytes,4,opt,name=hash,proto3" json:"hash,omitempty"`
	Codespace      string `protobuf:"bytes,5,opt,name=codespace,proto3" json:"codespace,omitempty"`
	Messages       []byte `protobuf:"bytes,6,opt,name=messages,proto3" json:"messages,omitempty"`
	TxNumber       uint64 `protobuf:"varint,7,opt,name=tx_number,json=txNumber,proto3" json:"tx_number,omitempty"`
	// Transaction log indicating errors
	ErrorLog   string `protobuf:"bytes,8,opt,name=error_log,json=errorLog,proto3" json:"error_log,omitempty"`
	Code       uint32 `protobuf:"varint,9,opt,name=code,proto3" json:"code,omitempty"`
	TxMsgTypes []byte `protobuf:"bytes,10,opt,name=tx_msg_types,json=txMsgTypes,proto3" json:"tx_msg_types,omitempty"`
	// transaction event logs
	Logs []byte `protobuf:"bytes,11,opt,name=logs,proto3" json:"logs,omitempty"`
	// contains filtered or unexported fields
}

TxData wraps tx data

func (*TxData) Descriptor deprecated

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

Deprecated: Use TxData.ProtoReflect.Descriptor instead.

func (*TxData) GetBlockNumber

func (x *TxData) GetBlockNumber() uint64

func (*TxData) GetBlockTimestamp

func (x *TxData) GetBlockTimestamp() string

func (*TxData) GetCode

func (x *TxData) GetCode() uint32

func (*TxData) GetCodespace

func (x *TxData) GetCodespace() string

func (*TxData) GetErrorLog

func (x *TxData) GetErrorLog() string

func (*TxData) GetHash

func (x *TxData) GetHash() string

func (*TxData) GetId

func (x *TxData) GetId() string

func (*TxData) GetLogs

func (x *TxData) GetLogs() []byte

func (*TxData) GetMessages

func (x *TxData) GetMessages() []byte

func (*TxData) GetTxMsgTypes

func (x *TxData) GetTxMsgTypes() []byte

func (*TxData) GetTxNumber

func (x *TxData) GetTxNumber() uint64

func (*TxData) ProtoMessage

func (*TxData) ProtoMessage()

func (*TxData) ProtoReflect

func (x *TxData) ProtoReflect() protoreflect.Message

func (*TxData) Reset

func (x *TxData) Reset()

func (*TxData) String

func (x *TxData) String() string

type TxDataRPC

type TxDataRPC struct {
	Id             string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	BlockNumber    uint64 `protobuf:"varint,2,opt,name=block_number,json=blockNumber,proto3" json:"block_number,omitempty"`
	BlockTimestamp string `protobuf:"bytes,3,opt,name=block_timestamp,json=blockTimestamp,proto3" json:"block_timestamp,omitempty"`
	Hash           string `protobuf:"bytes,4,opt,name=hash,proto3" json:"hash,omitempty"`
	Codespace      string `protobuf:"bytes,5,opt,name=codespace,proto3" json:"codespace,omitempty"`
	Messages       string `protobuf:"bytes,6,opt,name=messages,proto3" json:"messages,omitempty"`
	TxNumber       uint64 `protobuf:"varint,7,opt,name=tx_number,json=txNumber,proto3" json:"tx_number,omitempty"`
	// Transaction log indicating errors
	ErrorLog string `protobuf:"bytes,8,opt,name=error_log,json=errorLog,proto3" json:"error_log,omitempty"`
	Code     uint32 `protobuf:"varint,9,opt,name=code,proto3" json:"code,omitempty"`
	// contains filtered or unexported fields
}

TxData wraps tx data

func (*TxDataRPC) Descriptor deprecated

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

Deprecated: Use TxDataRPC.ProtoReflect.Descriptor instead.

func (*TxDataRPC) GetBlockNumber

func (x *TxDataRPC) GetBlockNumber() uint64

func (*TxDataRPC) GetBlockTimestamp

func (x *TxDataRPC) GetBlockTimestamp() string

func (*TxDataRPC) GetCode

func (x *TxDataRPC) GetCode() uint32

func (*TxDataRPC) GetCodespace

func (x *TxDataRPC) GetCodespace() string

func (*TxDataRPC) GetErrorLog

func (x *TxDataRPC) GetErrorLog() string

func (*TxDataRPC) GetHash

func (x *TxDataRPC) GetHash() string

func (*TxDataRPC) GetId

func (x *TxDataRPC) GetId() string

func (*TxDataRPC) GetMessages

func (x *TxDataRPC) GetMessages() string

func (*TxDataRPC) GetTxNumber

func (x *TxDataRPC) GetTxNumber() uint64

func (*TxDataRPC) ProtoMessage

func (*TxDataRPC) ProtoMessage()

func (*TxDataRPC) ProtoReflect

func (x *TxDataRPC) ProtoReflect() protoreflect.Message

func (*TxDataRPC) Reset

func (x *TxDataRPC) Reset()

func (*TxDataRPC) String

func (x *TxDataRPC) String() string

type TxDetailData

type TxDetailData struct {
	Id             string       `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	BlockNumber    uint64       `protobuf:"varint,2,opt,name=block_number,json=blockNumber,proto3" json:"block_number,omitempty"`
	BlockTimestamp string       `protobuf:"bytes,3,opt,name=block_timestamp,json=blockTimestamp,proto3" json:"block_timestamp,omitempty"`
	Hash           string       `protobuf:"bytes,4,opt,name=hash,proto3" json:"hash,omitempty"`
	Code           uint32       `protobuf:"varint,5,opt,name=code,proto3" json:"code,omitempty"`
	Data           []byte       `protobuf:"bytes,6,opt,name=data,proto3" json:"data,omitempty"`
	Info           string       `protobuf:"bytes,8,opt,name=info,proto3" json:"info,omitempty"`
	GasWanted      int64        `protobuf:"zigzag64,9,opt,name=gas_wanted,json=gasWanted,proto3" json:"gas_wanted,omitempty"`
	GasUsed        int64        `protobuf:"zigzag64,10,opt,name=gas_used,json=gasUsed,proto3" json:"gas_used,omitempty"`
	GasFee         *GasFee      `protobuf:"bytes,11,opt,name=gas_fee,json=gasFee,proto3" json:"gas_fee,omitempty"`
	Codespace      string       `protobuf:"bytes,12,opt,name=codespace,proto3" json:"codespace,omitempty"`
	Events         []*Event     `protobuf:"bytes,13,rep,name=events,proto3" json:"events,omitempty"`
	TxType         string       `protobuf:"bytes,14,opt,name=tx_type,json=txType,proto3" json:"tx_type,omitempty"`
	Messages       []byte       `protobuf:"bytes,15,opt,name=messages,proto3" json:"messages,omitempty"`
	Signatures     []*Signature `protobuf:"bytes,16,rep,name=signatures,proto3" json:"signatures,omitempty"`
	Memo           string       `protobuf:"bytes,17,opt,name=memo,proto3" json:"memo,omitempty"`
	TxNumber       uint64       `protobuf:"varint,18,opt,name=tx_number,json=txNumber,proto3" json:"tx_number,omitempty"`
	// Block timestamp in unix milli
	BlockUnixTimestamp uint64 `protobuf:"varint,19,opt,name=block_unix_timestamp,json=blockUnixTimestamp,proto3" json:"block_unix_timestamp,omitempty"`
	// Transaction log indicating errors
	ErrorLog string `protobuf:"bytes,20,opt,name=error_log,json=errorLog,proto3" json:"error_log,omitempty"`
	// transaction event logs
	Logs []byte `protobuf:"bytes,21,opt,name=logs,proto3" json:"logs,omitempty"`
	// contains filtered or unexported fields
}

TxDetailData wraps tx data includes details information

func (*TxDetailData) Descriptor deprecated

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

Deprecated: Use TxDetailData.ProtoReflect.Descriptor instead.

func (*TxDetailData) GetBlockNumber

func (x *TxDetailData) GetBlockNumber() uint64

func (*TxDetailData) GetBlockTimestamp

func (x *TxDetailData) GetBlockTimestamp() string

func (*TxDetailData) GetBlockUnixTimestamp

func (x *TxDetailData) GetBlockUnixTimestamp() uint64

func (*TxDetailData) GetCode

func (x *TxDetailData) GetCode() uint32

func (*TxDetailData) GetCodespace

func (x *TxDetailData) GetCodespace() string

func (*TxDetailData) GetData

func (x *TxDetailData) GetData() []byte

func (*TxDetailData) GetErrorLog

func (x *TxDetailData) GetErrorLog() string

func (*TxDetailData) GetEvents

func (x *TxDetailData) GetEvents() []*Event

func (*TxDetailData) GetGasFee

func (x *TxDetailData) GetGasFee() *GasFee

func (*TxDetailData) GetGasUsed

func (x *TxDetailData) GetGasUsed() int64

func (*TxDetailData) GetGasWanted

func (x *TxDetailData) GetGasWanted() int64

func (*TxDetailData) GetHash

func (x *TxDetailData) GetHash() string

func (*TxDetailData) GetId

func (x *TxDetailData) GetId() string

func (*TxDetailData) GetInfo

func (x *TxDetailData) GetInfo() string

func (*TxDetailData) GetLogs

func (x *TxDetailData) GetLogs() []byte

func (*TxDetailData) GetMemo

func (x *TxDetailData) GetMemo() string

func (*TxDetailData) GetMessages

func (x *TxDetailData) GetMessages() []byte

func (*TxDetailData) GetSignatures

func (x *TxDetailData) GetSignatures() []*Signature

func (*TxDetailData) GetTxNumber

func (x *TxDetailData) GetTxNumber() uint64

func (*TxDetailData) GetTxType

func (x *TxDetailData) GetTxType() string

func (*TxDetailData) ProtoMessage

func (*TxDetailData) ProtoMessage()

func (*TxDetailData) ProtoReflect

func (x *TxDetailData) ProtoReflect() protoreflect.Message

func (*TxDetailData) Reset

func (x *TxDetailData) Reset()

func (*TxDetailData) String

func (x *TxDetailData) String() string

type UnimplementedInjectiveExplorerRPCServer

type UnimplementedInjectiveExplorerRPCServer struct {
}

UnimplementedInjectiveExplorerRPCServer must be embedded to have forward compatible implementations.

func (UnimplementedInjectiveExplorerRPCServer) GetAccountTxs

func (UnimplementedInjectiveExplorerRPCServer) GetBlock

func (UnimplementedInjectiveExplorerRPCServer) GetBlocks

func (UnimplementedInjectiveExplorerRPCServer) GetContractTxs

func (UnimplementedInjectiveExplorerRPCServer) GetCw20Balance

func (UnimplementedInjectiveExplorerRPCServer) GetIBCTransferTxs

func (UnimplementedInjectiveExplorerRPCServer) GetPeggyDepositTxs

func (UnimplementedInjectiveExplorerRPCServer) GetPeggyWithdrawalTxs

func (UnimplementedInjectiveExplorerRPCServer) GetTxByTxHash

func (UnimplementedInjectiveExplorerRPCServer) GetTxs

func (UnimplementedInjectiveExplorerRPCServer) GetValidator

func (UnimplementedInjectiveExplorerRPCServer) GetValidatorUptime

func (UnimplementedInjectiveExplorerRPCServer) GetValidators

func (UnimplementedInjectiveExplorerRPCServer) GetWasmCodeByID

func (UnimplementedInjectiveExplorerRPCServer) GetWasmCodes

func (UnimplementedInjectiveExplorerRPCServer) GetWasmContracts

func (UnimplementedInjectiveExplorerRPCServer) Relayers

func (UnimplementedInjectiveExplorerRPCServer) StreamTxs

type UnsafeInjectiveExplorerRPCServer

type UnsafeInjectiveExplorerRPCServer interface {
	// contains filtered or unexported methods
}

UnsafeInjectiveExplorerRPCServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to InjectiveExplorerRPCServer will result in compilation errors.

type Validator

type Validator struct {
	Id                      string                `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Moniker                 string                `protobuf:"bytes,2,opt,name=moniker,proto3" json:"moniker,omitempty"`
	OperatorAddress         string                `protobuf:"bytes,3,opt,name=operator_address,json=operatorAddress,proto3" json:"operator_address,omitempty"`
	ConsensusAddress        string                `protobuf:"bytes,4,opt,name=consensus_address,json=consensusAddress,proto3" json:"consensus_address,omitempty"`
	Jailed                  bool                  `protobuf:"varint,5,opt,name=jailed,proto3" json:"jailed,omitempty"`
	Status                  int32                 `protobuf:"zigzag32,6,opt,name=status,proto3" json:"status,omitempty"`
	Tokens                  string                `protobuf:"bytes,7,opt,name=tokens,proto3" json:"tokens,omitempty"`
	DelegatorShares         string                `protobuf:"bytes,8,opt,name=delegator_shares,json=delegatorShares,proto3" json:"delegator_shares,omitempty"`
	Description             *ValidatorDescription `protobuf:"bytes,9,opt,name=description,proto3" json:"description,omitempty"`
	UnbondingHeight         int64                 `protobuf:"zigzag64,10,opt,name=unbonding_height,json=unbondingHeight,proto3" json:"unbonding_height,omitempty"`
	UnbondingTime           string                `protobuf:"bytes,11,opt,name=unbonding_time,json=unbondingTime,proto3" json:"unbonding_time,omitempty"`
	CommissionRate          string                `protobuf:"bytes,12,opt,name=commission_rate,json=commissionRate,proto3" json:"commission_rate,omitempty"`
	CommissionMaxRate       string                `protobuf:"bytes,13,opt,name=commission_max_rate,json=commissionMaxRate,proto3" json:"commission_max_rate,omitempty"`
	CommissionMaxChangeRate string                `` /* 135-byte string literal not displayed */
	CommissionUpdateTime    string                `protobuf:"bytes,15,opt,name=commission_update_time,json=commissionUpdateTime,proto3" json:"commission_update_time,omitempty"`
	Proposed                uint64                `protobuf:"varint,16,opt,name=proposed,proto3" json:"proposed,omitempty"`
	Signed                  uint64                `protobuf:"varint,17,opt,name=signed,proto3" json:"signed,omitempty"`
	Missed                  uint64                `protobuf:"varint,18,opt,name=missed,proto3" json:"missed,omitempty"`
	Timestamp               string                `protobuf:"bytes,19,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	Uptimes                 []*ValidatorUptime    `protobuf:"bytes,20,rep,name=uptimes,proto3" json:"uptimes,omitempty"`
	SlashingEvents          []*SlashingEvent      `protobuf:"bytes,21,rep,name=slashing_events,json=slashingEvents,proto3" json:"slashing_events,omitempty"`
	// uptime percentage base on latest 10k block
	UptimePercentage float64 `protobuf:"fixed64,22,opt,name=uptime_percentage,json=uptimePercentage,proto3" json:"uptime_percentage,omitempty"`
	// contains filtered or unexported fields
}

Validator defines the structure for validator information.

func (*Validator) Descriptor deprecated

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

Deprecated: Use Validator.ProtoReflect.Descriptor instead.

func (*Validator) GetCommissionMaxChangeRate

func (x *Validator) GetCommissionMaxChangeRate() string

func (*Validator) GetCommissionMaxRate

func (x *Validator) GetCommissionMaxRate() string

func (*Validator) GetCommissionRate

func (x *Validator) GetCommissionRate() string

func (*Validator) GetCommissionUpdateTime

func (x *Validator) GetCommissionUpdateTime() string

func (*Validator) GetConsensusAddress

func (x *Validator) GetConsensusAddress() string

func (*Validator) GetDelegatorShares

func (x *Validator) GetDelegatorShares() string

func (*Validator) GetDescription

func (x *Validator) GetDescription() *ValidatorDescription

func (*Validator) GetId

func (x *Validator) GetId() string

func (*Validator) GetJailed

func (x *Validator) GetJailed() bool

func (*Validator) GetMissed

func (x *Validator) GetMissed() uint64

func (*Validator) GetMoniker

func (x *Validator) GetMoniker() string

func (*Validator) GetOperatorAddress

func (x *Validator) GetOperatorAddress() string

func (*Validator) GetProposed

func (x *Validator) GetProposed() uint64

func (*Validator) GetSigned

func (x *Validator) GetSigned() uint64

func (*Validator) GetSlashingEvents

func (x *Validator) GetSlashingEvents() []*SlashingEvent

func (*Validator) GetStatus

func (x *Validator) GetStatus() int32

func (*Validator) GetTimestamp

func (x *Validator) GetTimestamp() string

func (*Validator) GetTokens

func (x *Validator) GetTokens() string

func (*Validator) GetUnbondingHeight

func (x *Validator) GetUnbondingHeight() int64

func (*Validator) GetUnbondingTime

func (x *Validator) GetUnbondingTime() string

func (*Validator) GetUptimePercentage

func (x *Validator) GetUptimePercentage() float64

func (*Validator) GetUptimes

func (x *Validator) GetUptimes() []*ValidatorUptime

func (*Validator) ProtoMessage

func (*Validator) ProtoMessage()

func (*Validator) ProtoReflect

func (x *Validator) ProtoReflect() protoreflect.Message

func (*Validator) Reset

func (x *Validator) Reset()

func (*Validator) String

func (x *Validator) String() string

type ValidatorDescription

type ValidatorDescription struct {
	Moniker         string `protobuf:"bytes,1,opt,name=moniker,proto3" json:"moniker,omitempty"`
	Identity        string `protobuf:"bytes,2,opt,name=identity,proto3" json:"identity,omitempty"`
	Website         string `protobuf:"bytes,3,opt,name=website,proto3" json:"website,omitempty"`
	SecurityContact string `protobuf:"bytes,4,opt,name=security_contact,json=securityContact,proto3" json:"security_contact,omitempty"`
	Details         string `protobuf:"bytes,5,opt,name=details,proto3" json:"details,omitempty"`
	// contains filtered or unexported fields
}

func (*ValidatorDescription) Descriptor deprecated

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

Deprecated: Use ValidatorDescription.ProtoReflect.Descriptor instead.

func (*ValidatorDescription) GetDetails

func (x *ValidatorDescription) GetDetails() string

func (*ValidatorDescription) GetIdentity

func (x *ValidatorDescription) GetIdentity() string

func (*ValidatorDescription) GetMoniker

func (x *ValidatorDescription) GetMoniker() string

func (*ValidatorDescription) GetSecurityContact

func (x *ValidatorDescription) GetSecurityContact() string

func (*ValidatorDescription) GetWebsite

func (x *ValidatorDescription) GetWebsite() string

func (*ValidatorDescription) ProtoMessage

func (*ValidatorDescription) ProtoMessage()

func (*ValidatorDescription) ProtoReflect

func (x *ValidatorDescription) ProtoReflect() protoreflect.Message

func (*ValidatorDescription) Reset

func (x *ValidatorDescription) Reset()

func (*ValidatorDescription) String

func (x *ValidatorDescription) String() string

type ValidatorUptime

type ValidatorUptime struct {
	BlockNumber uint64 `protobuf:"varint,1,opt,name=block_number,json=blockNumber,proto3" json:"block_number,omitempty"`
	Status      string `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*ValidatorUptime) Descriptor deprecated

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

Deprecated: Use ValidatorUptime.ProtoReflect.Descriptor instead.

func (*ValidatorUptime) GetBlockNumber

func (x *ValidatorUptime) GetBlockNumber() uint64

func (*ValidatorUptime) GetStatus

func (x *ValidatorUptime) GetStatus() string

func (*ValidatorUptime) ProtoMessage

func (*ValidatorUptime) ProtoMessage()

func (*ValidatorUptime) ProtoReflect

func (x *ValidatorUptime) ProtoReflect() protoreflect.Message

func (*ValidatorUptime) Reset

func (x *ValidatorUptime) Reset()

func (*ValidatorUptime) String

func (x *ValidatorUptime) String() string

type WasmCode

type WasmCode struct {

	// ID of stored wasmcode, sorted in descending order
	CodeId uint64 `protobuf:"varint,1,opt,name=code_id,json=codeId,proto3" json:"code_id,omitempty"`
	// Tx hash of store code transaction
	TxHash string `protobuf:"bytes,2,opt,name=tx_hash,json=txHash,proto3" json:"tx_hash,omitempty"`
	// Checksum of the cosmwasm code
	Checksum *Checksum `protobuf:"bytes,3,opt,name=checksum,proto3" json:"checksum,omitempty"`
	// Block time when the code is stored, in millisecond
	CreatedAt uint64 `protobuf:"varint,4,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	// Contract type of the wasm code
	ContractType string `protobuf:"bytes,5,opt,name=contract_type,json=contractType,proto3" json:"contract_type,omitempty"`
	// version string of the wasm code
	Version string `protobuf:"bytes,6,opt,name=version,proto3" json:"version,omitempty"`
	// describe instantiate permission
	Permission *ContractPermission `protobuf:"bytes,7,opt,name=permission,proto3" json:"permission,omitempty"`
	// code schema preview
	CodeSchema string `protobuf:"bytes,8,opt,name=code_schema,json=codeSchema,proto3" json:"code_schema,omitempty"`
	// code repo preview, may contain schema folder
	CodeView string `protobuf:"bytes,9,opt,name=code_view,json=codeView,proto3" json:"code_view,omitempty"`
	// count number of contract instantiation from this code
	Instantiates uint64 `protobuf:"varint,10,opt,name=instantiates,proto3" json:"instantiates,omitempty"`
	// creator of this code
	Creator string `protobuf:"bytes,11,opt,name=creator,proto3" json:"creator,omitempty"`
	// monotonic order of the code stored
	CodeNumber int64 `protobuf:"zigzag64,12,opt,name=code_number,json=codeNumber,proto3" json:"code_number,omitempty"`
	// id of the proposal that store this code
	ProposalId int64 `protobuf:"zigzag64,13,opt,name=proposal_id,json=proposalId,proto3" json:"proposal_id,omitempty"`
	// contains filtered or unexported fields
}

Detail of cosmwasm stored code

func (*WasmCode) Descriptor deprecated

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

Deprecated: Use WasmCode.ProtoReflect.Descriptor instead.

func (*WasmCode) GetChecksum

func (x *WasmCode) GetChecksum() *Checksum

func (*WasmCode) GetCodeId

func (x *WasmCode) GetCodeId() uint64

func (*WasmCode) GetCodeNumber

func (x *WasmCode) GetCodeNumber() int64

func (*WasmCode) GetCodeSchema

func (x *WasmCode) GetCodeSchema() string

func (*WasmCode) GetCodeView

func (x *WasmCode) GetCodeView() string

func (*WasmCode) GetContractType

func (x *WasmCode) GetContractType() string

func (*WasmCode) GetCreatedAt

func (x *WasmCode) GetCreatedAt() uint64

func (*WasmCode) GetCreator

func (x *WasmCode) GetCreator() string

func (*WasmCode) GetInstantiates

func (x *WasmCode) GetInstantiates() uint64

func (*WasmCode) GetPermission

func (x *WasmCode) GetPermission() *ContractPermission

func (*WasmCode) GetProposalId

func (x *WasmCode) GetProposalId() int64

func (*WasmCode) GetTxHash

func (x *WasmCode) GetTxHash() string

func (*WasmCode) GetVersion

func (x *WasmCode) GetVersion() string

func (*WasmCode) ProtoMessage

func (*WasmCode) ProtoMessage()

func (*WasmCode) ProtoReflect

func (x *WasmCode) ProtoReflect() protoreflect.Message

func (*WasmCode) Reset

func (x *WasmCode) Reset()

func (*WasmCode) String

func (x *WasmCode) String() string

type WasmContract

type WasmContract struct {

	// General name of the contract
	Label string `protobuf:"bytes,1,opt,name=label,proto3" json:"label,omitempty"`
	// Address of the contract
	Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	// hash of the instantiate transaction
	TxHash string `protobuf:"bytes,3,opt,name=tx_hash,json=txHash,proto3" json:"tx_hash,omitempty"`
	// Address of the contract creator
	Creator string `protobuf:"bytes,4,opt,name=creator,proto3" json:"creator,omitempty"`
	// Number of times call to execute contract
	Executes uint64 `protobuf:"varint,5,opt,name=executes,proto3" json:"executes,omitempty"`
	// Block timestamp that contract was instantiated, in millisecond
	InstantiatedAt uint64 `protobuf:"varint,6,opt,name=instantiated_at,json=instantiatedAt,proto3" json:"instantiated_at,omitempty"`
	// init message when this contract was instantiated
	InitMessage string `protobuf:"bytes,7,opt,name=init_message,json=initMessage,proto3" json:"init_message,omitempty"`
	// Block timestamp that contract was called, in millisecond
	LastExecutedAt uint64 `protobuf:"varint,8,opt,name=last_executed_at,json=lastExecutedAt,proto3" json:"last_executed_at,omitempty"`
	// Contract funds
	Funds []*ContractFund `protobuf:"bytes,9,rep,name=funds,proto3" json:"funds,omitempty"`
	// Code id of the contract
	CodeId uint64 `protobuf:"varint,10,opt,name=code_id,json=codeId,proto3" json:"code_id,omitempty"`
	// Admin of the contract
	Admin string `protobuf:"bytes,11,opt,name=admin,proto3" json:"admin,omitempty"`
	// Latest migrate message of the contract
	CurrentMigrateMessage string `` /* 127-byte string literal not displayed */
	// Monotonic contract number in database
	ContractNumber int64 `protobuf:"zigzag64,13,opt,name=contract_number,json=contractNumber,proto3" json:"contract_number,omitempty"`
	// Contract version string
	Version string `protobuf:"bytes,14,opt,name=version,proto3" json:"version,omitempty"`
	// Contract type
	Type         string        `protobuf:"bytes,15,opt,name=type,proto3" json:"type,omitempty"`
	Cw20Metadata *Cw20Metadata `protobuf:"bytes,16,opt,name=cw20_metadata,json=cw20Metadata,proto3" json:"cw20_metadata,omitempty"`
	// id of the proposal that instantiate this contract
	ProposalId int64 `protobuf:"zigzag64,17,opt,name=proposal_id,json=proposalId,proto3" json:"proposal_id,omitempty"`
	// contains filtered or unexported fields
}

Detail of cosmwasm instantiated contract

func (*WasmContract) Descriptor deprecated

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

Deprecated: Use WasmContract.ProtoReflect.Descriptor instead.

func (*WasmContract) GetAddress

func (x *WasmContract) GetAddress() string

func (*WasmContract) GetAdmin

func (x *WasmContract) GetAdmin() string

func (*WasmContract) GetCodeId

func (x *WasmContract) GetCodeId() uint64

func (*WasmContract) GetContractNumber

func (x *WasmContract) GetContractNumber() int64

func (*WasmContract) GetCreator

func (x *WasmContract) GetCreator() string

func (*WasmContract) GetCurrentMigrateMessage

func (x *WasmContract) GetCurrentMigrateMessage() string

func (*WasmContract) GetCw20Metadata

func (x *WasmContract) GetCw20Metadata() *Cw20Metadata

func (*WasmContract) GetExecutes

func (x *WasmContract) GetExecutes() uint64

func (*WasmContract) GetFunds

func (x *WasmContract) GetFunds() []*ContractFund

func (*WasmContract) GetInitMessage

func (x *WasmContract) GetInitMessage() string

func (*WasmContract) GetInstantiatedAt

func (x *WasmContract) GetInstantiatedAt() uint64

func (*WasmContract) GetLabel

func (x *WasmContract) GetLabel() string

func (*WasmContract) GetLastExecutedAt

func (x *WasmContract) GetLastExecutedAt() uint64

func (*WasmContract) GetProposalId

func (x *WasmContract) GetProposalId() int64

func (*WasmContract) GetTxHash

func (x *WasmContract) GetTxHash() string

func (*WasmContract) GetType

func (x *WasmContract) GetType() string

func (*WasmContract) GetVersion

func (x *WasmContract) GetVersion() string

func (*WasmContract) ProtoMessage

func (*WasmContract) ProtoMessage()

func (*WasmContract) ProtoReflect

func (x *WasmContract) ProtoReflect() protoreflect.Message

func (*WasmContract) Reset

func (x *WasmContract) Reset()

func (*WasmContract) String

func (x *WasmContract) String() string

type WasmCw20Balance

type WasmCw20Balance struct {

	// Address of CW20 contract
	ContractAddress string `protobuf:"bytes,1,opt,name=contract_address,json=contractAddress,proto3" json:"contract_address,omitempty"`
	// Account address
	Account string `protobuf:"bytes,2,opt,name=account,proto3" json:"account,omitempty"`
	// Account balance
	Balance string `protobuf:"bytes,3,opt,name=balance,proto3" json:"balance,omitempty"`
	// update timestamp in milisecond
	UpdatedAt    int64         `protobuf:"zigzag64,4,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	Cw20Metadata *Cw20Metadata `protobuf:"bytes,5,opt,name=cw20_metadata,json=cw20Metadata,proto3" json:"cw20_metadata,omitempty"`
	// contains filtered or unexported fields
}

func (*WasmCw20Balance) Descriptor deprecated

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

Deprecated: Use WasmCw20Balance.ProtoReflect.Descriptor instead.

func (*WasmCw20Balance) GetAccount

func (x *WasmCw20Balance) GetAccount() string

func (*WasmCw20Balance) GetBalance

func (x *WasmCw20Balance) GetBalance() string

func (*WasmCw20Balance) GetContractAddress

func (x *WasmCw20Balance) GetContractAddress() string

func (*WasmCw20Balance) GetCw20Metadata

func (x *WasmCw20Balance) GetCw20Metadata() *Cw20Metadata

func (*WasmCw20Balance) GetUpdatedAt

func (x *WasmCw20Balance) GetUpdatedAt() int64

func (*WasmCw20Balance) ProtoMessage

func (*WasmCw20Balance) ProtoMessage()

func (*WasmCw20Balance) ProtoReflect

func (x *WasmCw20Balance) ProtoReflect() protoreflect.Message

func (*WasmCw20Balance) Reset

func (x *WasmCw20Balance) Reset()

func (*WasmCw20Balance) String

func (x *WasmCw20Balance) String() string

Jump to

Keyboard shortcuts

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