injective_explorer_rpcpb

package
v1.50.1 Latest Latest
Warning

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

Go to latest
Published: Jan 25, 2024 License: Apache-2.0 Imports: 15 Imported by: 12

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,
		},
		{
			MethodName: "GetBankTransfers",
			Handler:    _InjectiveExplorerRPC_GetBankTransfers_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 added in v1.32.1

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 added in v1.32.1

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 added in v1.32.1

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 added in v1.32.1

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 BankTransfer added in v1.47.16

type BankTransfer struct {
	Sender    string `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	Recipient string `protobuf:"bytes,2,opt,name=recipient,proto3" json:"recipient,omitempty"`
	// Amounts transferred
	Amounts        []*Coin `protobuf:"bytes,3,rep,name=amounts,proto3" json:"amounts,omitempty"`
	BlockNumber    uint64  `protobuf:"varint,4,opt,name=block_number,json=blockNumber,proto3" json:"block_number,omitempty"`
	BlockTimestamp string  `protobuf:"bytes,5,opt,name=block_timestamp,json=blockTimestamp,proto3" json:"block_timestamp,omitempty"`
	// contains filtered or unexported fields
}

Bank transfer represents a transfer

func (*BankTransfer) Descriptor deprecated added in v1.47.16

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

Deprecated: Use BankTransfer.ProtoReflect.Descriptor instead.

func (*BankTransfer) GetAmounts added in v1.47.16

func (x *BankTransfer) GetAmounts() []*Coin

func (*BankTransfer) GetBlockNumber added in v1.47.16

func (x *BankTransfer) GetBlockNumber() uint64

func (*BankTransfer) GetBlockTimestamp added in v1.47.16

func (x *BankTransfer) GetBlockTimestamp() string

func (*BankTransfer) GetRecipient added in v1.47.16

func (x *BankTransfer) GetRecipient() string

func (*BankTransfer) GetSender added in v1.47.16

func (x *BankTransfer) GetSender() string

func (*BankTransfer) ProtoMessage added in v1.47.16

func (*BankTransfer) ProtoMessage()

func (*BankTransfer) ProtoReflect added in v1.47.16

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

func (*BankTransfer) Reset added in v1.47.16

func (x *BankTransfer) Reset()

func (*BankTransfer) String added in v1.47.16

func (x *BankTransfer) String() string

type BlockDetailInfo added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use BlockDetailInfo.ProtoReflect.Descriptor instead.

func (*BlockDetailInfo) GetBlockHash added in v1.43.4

func (x *BlockDetailInfo) GetBlockHash() string

func (*BlockDetailInfo) GetHeight added in v1.43.4

func (x *BlockDetailInfo) GetHeight() uint64

func (*BlockDetailInfo) GetMoniker added in v1.43.4

func (x *BlockDetailInfo) GetMoniker() string

func (*BlockDetailInfo) GetNumPreCommits added in v1.43.4

func (x *BlockDetailInfo) GetNumPreCommits() int64

func (*BlockDetailInfo) GetNumTxs added in v1.43.4

func (x *BlockDetailInfo) GetNumTxs() int64

func (*BlockDetailInfo) GetParentHash added in v1.43.4

func (x *BlockDetailInfo) GetParentHash() string

func (*BlockDetailInfo) GetProposer added in v1.43.4

func (x *BlockDetailInfo) GetProposer() string

func (*BlockDetailInfo) GetTimestamp added in v1.43.4

func (x *BlockDetailInfo) GetTimestamp() string

func (*BlockDetailInfo) GetTotalTxs added in v1.43.4

func (x *BlockDetailInfo) GetTotalTxs() int64

func (*BlockDetailInfo) GetTxs added in v1.43.4

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

func (*BlockDetailInfo) ProtoMessage added in v1.43.4

func (*BlockDetailInfo) ProtoMessage()

func (*BlockDetailInfo) ProtoReflect added in v1.43.4

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

func (*BlockDetailInfo) Reset added in v1.43.4

func (x *BlockDetailInfo) Reset()

func (*BlockDetailInfo) String added in v1.43.4

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 added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use Checksum.ProtoReflect.Descriptor instead.

func (*Checksum) GetAlgorithm added in v1.43.4

func (x *Checksum) GetAlgorithm() string

func (*Checksum) GetHash added in v1.43.4

func (x *Checksum) GetHash() string

func (*Checksum) ProtoMessage added in v1.43.4

func (*Checksum) ProtoMessage()

func (*Checksum) ProtoReflect added in v1.43.4

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

func (*Checksum) Reset added in v1.43.4

func (x *Checksum) Reset()

func (*Checksum) String added in v1.43.4

func (x *Checksum) String() string

type Coin added in v1.47.16

type Coin struct {

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

func (*Coin) Descriptor deprecated added in v1.47.16

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

Deprecated: Use Coin.ProtoReflect.Descriptor instead.

func (*Coin) GetAmount added in v1.47.16

func (x *Coin) GetAmount() string

func (*Coin) GetDenom added in v1.47.16

func (x *Coin) GetDenom() string

func (*Coin) ProtoMessage added in v1.47.16

func (*Coin) ProtoMessage()

func (*Coin) ProtoReflect added in v1.47.16

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

func (*Coin) Reset added in v1.47.16

func (x *Coin) Reset()

func (*Coin) String added in v1.47.16

func (x *Coin) String() string

type ContractFund added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use ContractFund.ProtoReflect.Descriptor instead.

func (*ContractFund) GetAmount added in v1.43.4

func (x *ContractFund) GetAmount() string

func (*ContractFund) GetDenom added in v1.43.4

func (x *ContractFund) GetDenom() string

func (*ContractFund) ProtoMessage added in v1.43.4

func (*ContractFund) ProtoMessage()

func (*ContractFund) ProtoReflect added in v1.43.4

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

func (*ContractFund) Reset added in v1.43.4

func (x *ContractFund) Reset()

func (*ContractFund) String added in v1.43.4

func (x *ContractFund) String() string

type ContractPermission added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use ContractPermission.ProtoReflect.Descriptor instead.

func (*ContractPermission) GetAccessType added in v1.43.4

func (x *ContractPermission) GetAccessType() int32

func (*ContractPermission) GetAddress added in v1.43.4

func (x *ContractPermission) GetAddress() string

func (*ContractPermission) ProtoMessage added in v1.43.4

func (*ContractPermission) ProtoMessage()

func (*ContractPermission) ProtoReflect added in v1.43.4

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

func (*ContractPermission) Reset added in v1.43.4

func (x *ContractPermission) Reset()

func (*ContractPermission) String added in v1.43.4

func (x *ContractPermission) String() string

type CosmosCoin added in v1.32.0

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 added in v1.32.0

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

Deprecated: Use CosmosCoin.ProtoReflect.Descriptor instead.

func (*CosmosCoin) GetAmount added in v1.32.0

func (x *CosmosCoin) GetAmount() string

func (*CosmosCoin) GetDenom added in v1.32.0

func (x *CosmosCoin) GetDenom() string

func (*CosmosCoin) ProtoMessage added in v1.32.0

func (*CosmosCoin) ProtoMessage()

func (*CosmosCoin) ProtoReflect added in v1.32.0

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

func (*CosmosCoin) Reset added in v1.32.0

func (x *CosmosCoin) Reset()

func (*CosmosCoin) String added in v1.32.0

func (x *CosmosCoin) String() string

type Cw20MarketingInfo added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use Cw20MarketingInfo.ProtoReflect.Descriptor instead.

func (*Cw20MarketingInfo) GetDescription added in v1.43.4

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

func (*Cw20MarketingInfo) GetMarketing added in v1.43.4

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

func (*Cw20MarketingInfo) GetProject added in v1.43.4

func (x *Cw20MarketingInfo) GetProject() string

func (*Cw20MarketingInfo) ProtoMessage added in v1.43.4

func (*Cw20MarketingInfo) ProtoMessage()

func (*Cw20MarketingInfo) ProtoReflect added in v1.43.4

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

func (*Cw20MarketingInfo) Reset added in v1.43.4

func (x *Cw20MarketingInfo) Reset()

func (*Cw20MarketingInfo) String added in v1.43.4

func (x *Cw20MarketingInfo) String() string

type Cw20Metadata added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use Cw20Metadata.ProtoReflect.Descriptor instead.

func (*Cw20Metadata) GetMarketingInfo added in v1.43.4

func (x *Cw20Metadata) GetMarketingInfo() *Cw20MarketingInfo

func (*Cw20Metadata) GetTokenInfo added in v1.43.4

func (x *Cw20Metadata) GetTokenInfo() *Cw20TokenInfo

func (*Cw20Metadata) ProtoMessage added in v1.43.4

func (*Cw20Metadata) ProtoMessage()

func (*Cw20Metadata) ProtoReflect added in v1.43.4

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

func (*Cw20Metadata) Reset added in v1.43.4

func (x *Cw20Metadata) Reset()

func (*Cw20Metadata) String added in v1.43.4

func (x *Cw20Metadata) String() string

type Cw20TokenInfo added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use Cw20TokenInfo.ProtoReflect.Descriptor instead.

func (*Cw20TokenInfo) GetDecimals added in v1.43.4

func (x *Cw20TokenInfo) GetDecimals() int64

func (*Cw20TokenInfo) GetName added in v1.43.4

func (x *Cw20TokenInfo) GetName() string

func (*Cw20TokenInfo) GetSymbol added in v1.43.4

func (x *Cw20TokenInfo) GetSymbol() string

func (*Cw20TokenInfo) GetTotalSupply added in v1.43.4

func (x *Cw20TokenInfo) GetTotalSupply() string

func (*Cw20TokenInfo) ProtoMessage added in v1.43.4

func (*Cw20TokenInfo) ProtoMessage()

func (*Cw20TokenInfo) ProtoReflect added in v1.43.4

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

func (*Cw20TokenInfo) Reset added in v1.43.4

func (x *Cw20TokenInfo) Reset()

func (*Cw20TokenInfo) String added in v1.43.4

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 added in v1.32.0

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 added in v1.32.0

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

Deprecated: Use GasFee.ProtoReflect.Descriptor instead.

func (*GasFee) GetAmount added in v1.32.0

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

func (*GasFee) GetGasLimit added in v1.32.0

func (x *GasFee) GetGasLimit() uint64

func (*GasFee) GetGranter added in v1.32.0

func (x *GasFee) GetGranter() string

func (*GasFee) GetPayer added in v1.32.0

func (x *GasFee) GetPayer() string

func (*GasFee) ProtoMessage added in v1.32.0

func (*GasFee) ProtoMessage()

func (*GasFee) ProtoReflect added in v1.32.0

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

func (*GasFee) Reset added in v1.32.0

func (x *GasFee) Reset()

func (*GasFee) String added in v1.32.0

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"`
	// Return transactions before this block number
	Before uint64 `protobuf:"varint,2,opt,name=before,proto3" json:"before,omitempty"`
	// Return transactions after this block number
	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"`
	// The starting timestamp in UNIX milliseconds that the txs must be equal or
	// older than
	StartTime int64 `protobuf:"zigzag64,10,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
	// The ending timestamp in UNIX milliseconds that the txs must be equal or
	// younger than
	EndTime int64 `protobuf:"zigzag64,11,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
	// The status of the txs to be returned
	Status string `protobuf:"bytes,12,opt,name=status,proto3" json:"status,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) GetEndTime added in v1.46.4

func (x *GetAccountTxsRequest) GetEndTime() int64

func (*GetAccountTxsRequest) GetFromNumber added in v1.43.4

func (x *GetAccountTxsRequest) GetFromNumber() int64

func (*GetAccountTxsRequest) GetLimit

func (x *GetAccountTxsRequest) GetLimit() int32

func (*GetAccountTxsRequest) GetModule added in v1.32.0

func (x *GetAccountTxsRequest) GetModule() string

func (*GetAccountTxsRequest) GetSkip

func (x *GetAccountTxsRequest) GetSkip() uint64

func (*GetAccountTxsRequest) GetStartTime added in v1.46.4

func (x *GetAccountTxsRequest) GetStartTime() int64

func (*GetAccountTxsRequest) GetStatus added in v1.46.4

func (x *GetAccountTxsRequest) GetStatus() string

func (*GetAccountTxsRequest) GetToNumber added in v1.43.4

func (x *GetAccountTxsRequest) GetToNumber() int64

func (*GetAccountTxsRequest) GetType added in v1.32.0

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 GetBankTransfersRequest added in v1.47.16

type GetBankTransfersRequest struct {

	// Transfer sender address
	Senders []string `protobuf:"bytes,1,rep,name=senders,proto3" json:"senders,omitempty"`
	// Transfer recipient address
	Recipients []string `protobuf:"bytes,2,rep,name=recipients,proto3" json:"recipients,omitempty"`
	// Returns transfers with the community pool address as either sender or
	// recipient
	IsCommunityPoolRelated bool   `` /* 132-byte string literal not displayed */
	Limit                  int32  `protobuf:"zigzag32,4,opt,name=limit,proto3" json:"limit,omitempty"`
	Skip                   uint64 `protobuf:"varint,5,opt,name=skip,proto3" json:"skip,omitempty"`
	// The starting timestamp in UNIX milliseconds that the transfers must be equal
	// or older than
	StartTime int64 `protobuf:"zigzag64,6,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
	// The ending timestamp in UNIX milliseconds that the transfers must be equal
	// or younger than
	EndTime int64 `protobuf:"zigzag64,7,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
	// Transfers where either the sender or the recipient is one of the addresses
	Address []string `protobuf:"bytes,8,rep,name=address,proto3" json:"address,omitempty"`
	PerPage int32    `protobuf:"zigzag32,9,opt,name=per_page,json=perPage,proto3" json:"per_page,omitempty"`
	Token   string   `protobuf:"bytes,10,opt,name=token,proto3" json:"token,omitempty"`
	// contains filtered or unexported fields
}

func (*GetBankTransfersRequest) Descriptor deprecated added in v1.47.16

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

Deprecated: Use GetBankTransfersRequest.ProtoReflect.Descriptor instead.

func (*GetBankTransfersRequest) GetAddress added in v1.47.16

func (x *GetBankTransfersRequest) GetAddress() []string

func (*GetBankTransfersRequest) GetEndTime added in v1.47.16

func (x *GetBankTransfersRequest) GetEndTime() int64

func (*GetBankTransfersRequest) GetIsCommunityPoolRelated added in v1.47.16

func (x *GetBankTransfersRequest) GetIsCommunityPoolRelated() bool

func (*GetBankTransfersRequest) GetLimit added in v1.47.16

func (x *GetBankTransfersRequest) GetLimit() int32

func (*GetBankTransfersRequest) GetPerPage added in v1.47.16

func (x *GetBankTransfersRequest) GetPerPage() int32

func (*GetBankTransfersRequest) GetRecipients added in v1.47.16

func (x *GetBankTransfersRequest) GetRecipients() []string

func (*GetBankTransfersRequest) GetSenders added in v1.47.16

func (x *GetBankTransfersRequest) GetSenders() []string

func (*GetBankTransfersRequest) GetSkip added in v1.47.16

func (x *GetBankTransfersRequest) GetSkip() uint64

func (*GetBankTransfersRequest) GetStartTime added in v1.47.16

func (x *GetBankTransfersRequest) GetStartTime() int64

func (*GetBankTransfersRequest) GetToken added in v1.47.16

func (x *GetBankTransfersRequest) GetToken() string

func (*GetBankTransfersRequest) ProtoMessage added in v1.47.16

func (*GetBankTransfersRequest) ProtoMessage()

func (*GetBankTransfersRequest) ProtoReflect added in v1.47.16

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

func (*GetBankTransfersRequest) Reset added in v1.47.16

func (x *GetBankTransfersRequest) Reset()

func (*GetBankTransfersRequest) String added in v1.47.16

func (x *GetBankTransfersRequest) String() string

type GetBankTransfersResponse added in v1.47.16

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

func (*GetBankTransfersResponse) Descriptor deprecated added in v1.47.16

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

Deprecated: Use GetBankTransfersResponse.ProtoReflect.Descriptor instead.

func (*GetBankTransfersResponse) GetData added in v1.47.16

func (x *GetBankTransfersResponse) GetData() []*BankTransfer

func (*GetBankTransfersResponse) GetPaging added in v1.47.16

func (x *GetBankTransfersResponse) GetPaging() *Paging

func (*GetBankTransfersResponse) ProtoMessage added in v1.47.16

func (*GetBankTransfersResponse) ProtoMessage()

func (*GetBankTransfersResponse) ProtoReflect added in v1.47.16

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

func (*GetBankTransfersResponse) Reset added in v1.47.16

func (x *GetBankTransfersResponse) Reset()

func (*GetBankTransfersResponse) String added in v1.47.16

func (x *GetBankTransfersResponse) 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 added in v1.43.4

func (x *GetBlockResponse) GetData() *BlockDetailInfo

func (*GetBlockResponse) GetErrmsg added in v1.43.4

func (x *GetBlockResponse) GetErrmsg() string

func (*GetBlockResponse) GetS added in v1.43.4

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 added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use GetContractTxsRequest.ProtoReflect.Descriptor instead.

func (*GetContractTxsRequest) GetAddress added in v1.43.4

func (x *GetContractTxsRequest) GetAddress() string

func (*GetContractTxsRequest) GetFromNumber added in v1.43.4

func (x *GetContractTxsRequest) GetFromNumber() int64

func (*GetContractTxsRequest) GetLimit added in v1.43.4

func (x *GetContractTxsRequest) GetLimit() int32

func (*GetContractTxsRequest) GetSkip added in v1.43.4

func (x *GetContractTxsRequest) GetSkip() uint64

func (*GetContractTxsRequest) GetToNumber added in v1.43.4

func (x *GetContractTxsRequest) GetToNumber() int64

func (*GetContractTxsRequest) ProtoMessage added in v1.43.4

func (*GetContractTxsRequest) ProtoMessage()

func (*GetContractTxsRequest) ProtoReflect added in v1.43.4

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

func (*GetContractTxsRequest) Reset added in v1.43.4

func (x *GetContractTxsRequest) Reset()

func (*GetContractTxsRequest) String added in v1.43.4

func (x *GetContractTxsRequest) String() string

type GetContractTxsResponse added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use GetContractTxsResponse.ProtoReflect.Descriptor instead.

func (*GetContractTxsResponse) GetData added in v1.43.4

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

func (*GetContractTxsResponse) GetPaging added in v1.43.4

func (x *GetContractTxsResponse) GetPaging() *Paging

func (*GetContractTxsResponse) ProtoMessage added in v1.43.4

func (*GetContractTxsResponse) ProtoMessage()

func (*GetContractTxsResponse) ProtoReflect added in v1.43.4

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

func (*GetContractTxsResponse) Reset added in v1.43.4

func (x *GetContractTxsResponse) Reset()

func (*GetContractTxsResponse) String added in v1.43.4

func (x *GetContractTxsResponse) String() string

type GetCw20BalanceRequest added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use GetCw20BalanceRequest.ProtoReflect.Descriptor instead.

func (*GetCw20BalanceRequest) GetAddress added in v1.43.4

func (x *GetCw20BalanceRequest) GetAddress() string

func (*GetCw20BalanceRequest) GetLimit added in v1.43.4

func (x *GetCw20BalanceRequest) GetLimit() int32

func (*GetCw20BalanceRequest) ProtoMessage added in v1.43.4

func (*GetCw20BalanceRequest) ProtoMessage()

func (*GetCw20BalanceRequest) ProtoReflect added in v1.43.4

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

func (*GetCw20BalanceRequest) Reset added in v1.43.4

func (x *GetCw20BalanceRequest) Reset()

func (*GetCw20BalanceRequest) String added in v1.43.4

func (x *GetCw20BalanceRequest) String() string

type GetCw20BalanceResponse added in v1.43.4

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

func (*GetCw20BalanceResponse) Descriptor deprecated added in v1.43.4

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

Deprecated: Use GetCw20BalanceResponse.ProtoReflect.Descriptor instead.

func (*GetCw20BalanceResponse) GetField added in v1.43.4

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

func (*GetCw20BalanceResponse) ProtoMessage added in v1.43.4

func (*GetCw20BalanceResponse) ProtoMessage()

func (*GetCw20BalanceResponse) ProtoReflect added in v1.43.4

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

func (*GetCw20BalanceResponse) Reset added in v1.43.4

func (x *GetCw20BalanceResponse) Reset()

func (*GetCw20BalanceResponse) String added in v1.43.4

func (x *GetCw20BalanceResponse) String() string

type GetIBCTransferTxsRequest added in v1.32.0

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 added in v1.32.0

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

Deprecated: Use GetIBCTransferTxsRequest.ProtoReflect.Descriptor instead.

func (*GetIBCTransferTxsRequest) GetDestChannel added in v1.32.0

func (x *GetIBCTransferTxsRequest) GetDestChannel() string

func (*GetIBCTransferTxsRequest) GetDestPort added in v1.32.0

func (x *GetIBCTransferTxsRequest) GetDestPort() string

func (*GetIBCTransferTxsRequest) GetLimit added in v1.32.0

func (x *GetIBCTransferTxsRequest) GetLimit() int32

func (*GetIBCTransferTxsRequest) GetReceiver added in v1.32.0

func (x *GetIBCTransferTxsRequest) GetReceiver() string

func (*GetIBCTransferTxsRequest) GetSender added in v1.32.0

func (x *GetIBCTransferTxsRequest) GetSender() string

func (*GetIBCTransferTxsRequest) GetSkip added in v1.32.0

func (x *GetIBCTransferTxsRequest) GetSkip() uint64

func (*GetIBCTransferTxsRequest) GetSrcChannel added in v1.32.0

func (x *GetIBCTransferTxsRequest) GetSrcChannel() string

func (*GetIBCTransferTxsRequest) GetSrcPort added in v1.32.0

func (x *GetIBCTransferTxsRequest) GetSrcPort() string

func (*GetIBCTransferTxsRequest) ProtoMessage added in v1.32.0

func (*GetIBCTransferTxsRequest) ProtoMessage()

func (*GetIBCTransferTxsRequest) ProtoReflect added in v1.32.0

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

func (*GetIBCTransferTxsRequest) Reset added in v1.32.0

func (x *GetIBCTransferTxsRequest) Reset()

func (*GetIBCTransferTxsRequest) String added in v1.32.0

func (x *GetIBCTransferTxsRequest) String() string

type GetIBCTransferTxsResponse added in v1.32.0

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

func (*GetIBCTransferTxsResponse) Descriptor deprecated added in v1.32.0

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

Deprecated: Use GetIBCTransferTxsResponse.ProtoReflect.Descriptor instead.

func (*GetIBCTransferTxsResponse) GetField added in v1.32.0

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

func (*GetIBCTransferTxsResponse) ProtoMessage added in v1.32.0

func (*GetIBCTransferTxsResponse) ProtoMessage()

func (*GetIBCTransferTxsResponse) ProtoReflect added in v1.32.0

func (*GetIBCTransferTxsResponse) Reset added in v1.32.0

func (x *GetIBCTransferTxsResponse) Reset()

func (*GetIBCTransferTxsResponse) String added in v1.32.0

func (x *GetIBCTransferTxsResponse) String() string

type GetPeggyDepositTxsRequest added in v1.32.0

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 added in v1.32.0

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

Deprecated: Use GetPeggyDepositTxsRequest.ProtoReflect.Descriptor instead.

func (*GetPeggyDepositTxsRequest) GetLimit added in v1.32.0

func (x *GetPeggyDepositTxsRequest) GetLimit() int32

func (*GetPeggyDepositTxsRequest) GetReceiver added in v1.32.0

func (x *GetPeggyDepositTxsRequest) GetReceiver() string

func (*GetPeggyDepositTxsRequest) GetSender added in v1.32.0

func (x *GetPeggyDepositTxsRequest) GetSender() string

func (*GetPeggyDepositTxsRequest) GetSkip added in v1.32.0

func (x *GetPeggyDepositTxsRequest) GetSkip() uint64

func (*GetPeggyDepositTxsRequest) ProtoMessage added in v1.32.0

func (*GetPeggyDepositTxsRequest) ProtoMessage()

func (*GetPeggyDepositTxsRequest) ProtoReflect added in v1.32.0

func (*GetPeggyDepositTxsRequest) Reset added in v1.32.0

func (x *GetPeggyDepositTxsRequest) Reset()

func (*GetPeggyDepositTxsRequest) String added in v1.32.0

func (x *GetPeggyDepositTxsRequest) String() string

type GetPeggyDepositTxsResponse added in v1.32.0

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

func (*GetPeggyDepositTxsResponse) Descriptor deprecated added in v1.32.0

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

Deprecated: Use GetPeggyDepositTxsResponse.ProtoReflect.Descriptor instead.

func (*GetPeggyDepositTxsResponse) GetField added in v1.32.0

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

func (*GetPeggyDepositTxsResponse) ProtoMessage added in v1.32.0

func (*GetPeggyDepositTxsResponse) ProtoMessage()

func (*GetPeggyDepositTxsResponse) ProtoReflect added in v1.32.0

func (*GetPeggyDepositTxsResponse) Reset added in v1.32.0

func (x *GetPeggyDepositTxsResponse) Reset()

func (*GetPeggyDepositTxsResponse) String added in v1.32.0

func (x *GetPeggyDepositTxsResponse) String() string

type GetPeggyWithdrawalTxsRequest added in v1.32.0

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 added in v1.32.0

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

Deprecated: Use GetPeggyWithdrawalTxsRequest.ProtoReflect.Descriptor instead.

func (*GetPeggyWithdrawalTxsRequest) GetLimit added in v1.32.0

func (x *GetPeggyWithdrawalTxsRequest) GetLimit() int32

func (*GetPeggyWithdrawalTxsRequest) GetReceiver added in v1.32.0

func (x *GetPeggyWithdrawalTxsRequest) GetReceiver() string

func (*GetPeggyWithdrawalTxsRequest) GetSender added in v1.32.0

func (x *GetPeggyWithdrawalTxsRequest) GetSender() string

func (*GetPeggyWithdrawalTxsRequest) GetSkip added in v1.32.0

func (x *GetPeggyWithdrawalTxsRequest) GetSkip() uint64

func (*GetPeggyWithdrawalTxsRequest) ProtoMessage added in v1.32.0

func (*GetPeggyWithdrawalTxsRequest) ProtoMessage()

func (*GetPeggyWithdrawalTxsRequest) ProtoReflect added in v1.32.0

func (*GetPeggyWithdrawalTxsRequest) Reset added in v1.32.0

func (x *GetPeggyWithdrawalTxsRequest) Reset()

func (*GetPeggyWithdrawalTxsRequest) String added in v1.32.0

type GetPeggyWithdrawalTxsResponse added in v1.32.0

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

func (*GetPeggyWithdrawalTxsResponse) Descriptor deprecated added in v1.32.0

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

Deprecated: Use GetPeggyWithdrawalTxsResponse.ProtoReflect.Descriptor instead.

func (*GetPeggyWithdrawalTxsResponse) GetField added in v1.32.0

func (*GetPeggyWithdrawalTxsResponse) ProtoMessage added in v1.32.0

func (*GetPeggyWithdrawalTxsResponse) ProtoMessage()

func (*GetPeggyWithdrawalTxsResponse) ProtoReflect added in v1.32.0

func (*GetPeggyWithdrawalTxsResponse) Reset added in v1.32.0

func (x *GetPeggyWithdrawalTxsResponse) Reset()

func (*GetPeggyWithdrawalTxsResponse) String added in v1.32.0

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 added in v1.43.4

func (x *GetTxByTxHashResponse) GetErrmsg() string

func (*GetTxByTxHashResponse) GetS added in v1.43.4

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"`
	// The starting timestamp in UNIX milliseconds that the txs must be equal or
	// older than
	StartTime int64 `protobuf:"zigzag64,9,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
	// The ending timestamp in UNIX milliseconds that the txs must be equal or
	// younger than
	EndTime int64 `protobuf:"zigzag64,10,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
	// The status of the txs to be returned
	Status string `protobuf:"bytes,11,opt,name=status,proto3" json:"status,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) GetEndTime added in v1.46.4

func (x *GetTxsRequest) GetEndTime() int64

func (*GetTxsRequest) GetFromNumber added in v1.43.4

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) GetStartTime added in v1.46.4

func (x *GetTxsRequest) GetStartTime() int64

func (*GetTxsRequest) GetStatus added in v1.46.4

func (x *GetTxsRequest) GetStatus() string

func (*GetTxsRequest) GetToNumber added in v1.43.4

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 added in v1.32.0

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

func (*GetValidatorRequest) Descriptor deprecated added in v1.32.0

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

Deprecated: Use GetValidatorRequest.ProtoReflect.Descriptor instead.

func (*GetValidatorRequest) GetAddress added in v1.32.0

func (x *GetValidatorRequest) GetAddress() string

func (*GetValidatorRequest) ProtoMessage added in v1.32.0

func (*GetValidatorRequest) ProtoMessage()

func (*GetValidatorRequest) ProtoReflect added in v1.32.0

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

func (*GetValidatorRequest) Reset added in v1.32.0

func (x *GetValidatorRequest) Reset()

func (*GetValidatorRequest) String added in v1.32.0

func (x *GetValidatorRequest) String() string

type GetValidatorResponse added in v1.32.0

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 added in v1.32.0

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

Deprecated: Use GetValidatorResponse.ProtoReflect.Descriptor instead.

func (*GetValidatorResponse) GetData added in v1.43.4

func (x *GetValidatorResponse) GetData() *Validator

func (*GetValidatorResponse) GetErrmsg added in v1.43.4

func (x *GetValidatorResponse) GetErrmsg() string

func (*GetValidatorResponse) GetS added in v1.43.4

func (x *GetValidatorResponse) GetS() string

func (*GetValidatorResponse) ProtoMessage added in v1.32.0

func (*GetValidatorResponse) ProtoMessage()

func (*GetValidatorResponse) ProtoReflect added in v1.32.0

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

func (*GetValidatorResponse) Reset added in v1.32.0

func (x *GetValidatorResponse) Reset()

func (*GetValidatorResponse) String added in v1.32.0

func (x *GetValidatorResponse) String() string

type GetValidatorUptimeRequest added in v1.32.0

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

func (*GetValidatorUptimeRequest) Descriptor deprecated added in v1.32.0

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

Deprecated: Use GetValidatorUptimeRequest.ProtoReflect.Descriptor instead.

func (*GetValidatorUptimeRequest) GetAddress added in v1.32.0

func (x *GetValidatorUptimeRequest) GetAddress() string

func (*GetValidatorUptimeRequest) ProtoMessage added in v1.32.0

func (*GetValidatorUptimeRequest) ProtoMessage()

func (*GetValidatorUptimeRequest) ProtoReflect added in v1.32.0

func (*GetValidatorUptimeRequest) Reset added in v1.32.0

func (x *GetValidatorUptimeRequest) Reset()

func (*GetValidatorUptimeRequest) String added in v1.32.0

func (x *GetValidatorUptimeRequest) String() string

type GetValidatorUptimeResponse added in v1.32.0

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 added in v1.32.0

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

Deprecated: Use GetValidatorUptimeResponse.ProtoReflect.Descriptor instead.

func (*GetValidatorUptimeResponse) GetData added in v1.43.4

func (*GetValidatorUptimeResponse) GetErrmsg added in v1.43.4

func (x *GetValidatorUptimeResponse) GetErrmsg() string

func (*GetValidatorUptimeResponse) GetS added in v1.43.4

func (*GetValidatorUptimeResponse) ProtoMessage added in v1.32.0

func (*GetValidatorUptimeResponse) ProtoMessage()

func (*GetValidatorUptimeResponse) ProtoReflect added in v1.32.0

func (*GetValidatorUptimeResponse) Reset added in v1.32.0

func (x *GetValidatorUptimeResponse) Reset()

func (*GetValidatorUptimeResponse) String added in v1.32.0

func (x *GetValidatorUptimeResponse) String() string

type GetValidatorsRequest added in v1.43.4

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

func (*GetValidatorsRequest) Descriptor deprecated added in v1.43.4

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

Deprecated: Use GetValidatorsRequest.ProtoReflect.Descriptor instead.

func (*GetValidatorsRequest) ProtoMessage added in v1.43.4

func (*GetValidatorsRequest) ProtoMessage()

func (*GetValidatorsRequest) ProtoReflect added in v1.43.4

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

func (*GetValidatorsRequest) Reset added in v1.43.4

func (x *GetValidatorsRequest) Reset()

func (*GetValidatorsRequest) String added in v1.43.4

func (x *GetValidatorsRequest) String() string

type GetValidatorsResponse added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use GetValidatorsResponse.ProtoReflect.Descriptor instead.

func (*GetValidatorsResponse) GetData added in v1.43.4

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

func (*GetValidatorsResponse) GetErrmsg added in v1.43.4

func (x *GetValidatorsResponse) GetErrmsg() string

func (*GetValidatorsResponse) GetS added in v1.43.4

func (x *GetValidatorsResponse) GetS() string

func (*GetValidatorsResponse) ProtoMessage added in v1.43.4

func (*GetValidatorsResponse) ProtoMessage()

func (*GetValidatorsResponse) ProtoReflect added in v1.43.4

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

func (*GetValidatorsResponse) Reset added in v1.43.4

func (x *GetValidatorsResponse) Reset()

func (*GetValidatorsResponse) String added in v1.43.4

func (x *GetValidatorsResponse) String() string

type GetWasmCodeByIDRequest added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use GetWasmCodeByIDRequest.ProtoReflect.Descriptor instead.

func (*GetWasmCodeByIDRequest) GetCodeId added in v1.43.4

func (x *GetWasmCodeByIDRequest) GetCodeId() int64

func (*GetWasmCodeByIDRequest) ProtoMessage added in v1.43.4

func (*GetWasmCodeByIDRequest) ProtoMessage()

func (*GetWasmCodeByIDRequest) ProtoReflect added in v1.43.4

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

func (*GetWasmCodeByIDRequest) Reset added in v1.43.4

func (x *GetWasmCodeByIDRequest) Reset()

func (*GetWasmCodeByIDRequest) String added in v1.43.4

func (x *GetWasmCodeByIDRequest) String() string

type GetWasmCodeByIDResponse added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use GetWasmCodeByIDResponse.ProtoReflect.Descriptor instead.

func (*GetWasmCodeByIDResponse) GetChecksum added in v1.43.4

func (x *GetWasmCodeByIDResponse) GetChecksum() *Checksum

func (*GetWasmCodeByIDResponse) GetCodeId added in v1.43.4

func (x *GetWasmCodeByIDResponse) GetCodeId() uint64

func (*GetWasmCodeByIDResponse) GetCodeNumber added in v1.43.4

func (x *GetWasmCodeByIDResponse) GetCodeNumber() int64

func (*GetWasmCodeByIDResponse) GetCodeSchema added in v1.43.4

func (x *GetWasmCodeByIDResponse) GetCodeSchema() string

func (*GetWasmCodeByIDResponse) GetCodeView added in v1.43.4

func (x *GetWasmCodeByIDResponse) GetCodeView() string

func (*GetWasmCodeByIDResponse) GetContractType added in v1.43.4

func (x *GetWasmCodeByIDResponse) GetContractType() string

func (*GetWasmCodeByIDResponse) GetCreatedAt added in v1.43.4

func (x *GetWasmCodeByIDResponse) GetCreatedAt() uint64

func (*GetWasmCodeByIDResponse) GetCreator added in v1.43.4

func (x *GetWasmCodeByIDResponse) GetCreator() string

func (*GetWasmCodeByIDResponse) GetInstantiates added in v1.43.4

func (x *GetWasmCodeByIDResponse) GetInstantiates() uint64

func (*GetWasmCodeByIDResponse) GetPermission added in v1.43.4

func (x *GetWasmCodeByIDResponse) GetPermission() *ContractPermission

func (*GetWasmCodeByIDResponse) GetProposalId added in v1.43.4

func (x *GetWasmCodeByIDResponse) GetProposalId() int64

func (*GetWasmCodeByIDResponse) GetTxHash added in v1.43.4

func (x *GetWasmCodeByIDResponse) GetTxHash() string

func (*GetWasmCodeByIDResponse) GetVersion added in v1.43.4

func (x *GetWasmCodeByIDResponse) GetVersion() string

func (*GetWasmCodeByIDResponse) ProtoMessage added in v1.43.4

func (*GetWasmCodeByIDResponse) ProtoMessage()

func (*GetWasmCodeByIDResponse) ProtoReflect added in v1.43.4

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

func (*GetWasmCodeByIDResponse) Reset added in v1.43.4

func (x *GetWasmCodeByIDResponse) Reset()

func (*GetWasmCodeByIDResponse) String added in v1.43.4

func (x *GetWasmCodeByIDResponse) String() string

type GetWasmCodesRequest added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use GetWasmCodesRequest.ProtoReflect.Descriptor instead.

func (*GetWasmCodesRequest) GetFromNumber added in v1.43.4

func (x *GetWasmCodesRequest) GetFromNumber() int64

func (*GetWasmCodesRequest) GetLimit added in v1.43.4

func (x *GetWasmCodesRequest) GetLimit() int32

func (*GetWasmCodesRequest) GetToNumber added in v1.43.4

func (x *GetWasmCodesRequest) GetToNumber() int64

func (*GetWasmCodesRequest) ProtoMessage added in v1.43.4

func (*GetWasmCodesRequest) ProtoMessage()

func (*GetWasmCodesRequest) ProtoReflect added in v1.43.4

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

func (*GetWasmCodesRequest) Reset added in v1.43.4

func (x *GetWasmCodesRequest) Reset()

func (*GetWasmCodesRequest) String added in v1.43.4

func (x *GetWasmCodesRequest) String() string

type GetWasmCodesResponse added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use GetWasmCodesResponse.ProtoReflect.Descriptor instead.

func (*GetWasmCodesResponse) GetData added in v1.43.4

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

func (*GetWasmCodesResponse) GetPaging added in v1.43.4

func (x *GetWasmCodesResponse) GetPaging() *Paging

func (*GetWasmCodesResponse) ProtoMessage added in v1.43.4

func (*GetWasmCodesResponse) ProtoMessage()

func (*GetWasmCodesResponse) ProtoReflect added in v1.43.4

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

func (*GetWasmCodesResponse) Reset added in v1.43.4

func (x *GetWasmCodesResponse) Reset()

func (*GetWasmCodesResponse) String added in v1.43.4

func (x *GetWasmCodesResponse) String() string

type GetWasmContractByAddressRequest added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use GetWasmContractByAddressRequest.ProtoReflect.Descriptor instead.

func (*GetWasmContractByAddressRequest) GetContractAddress added in v1.43.4

func (x *GetWasmContractByAddressRequest) GetContractAddress() string

func (*GetWasmContractByAddressRequest) ProtoMessage added in v1.43.4

func (*GetWasmContractByAddressRequest) ProtoMessage()

func (*GetWasmContractByAddressRequest) ProtoReflect added in v1.43.4

func (*GetWasmContractByAddressRequest) Reset added in v1.43.4

func (*GetWasmContractByAddressRequest) String added in v1.43.4

type GetWasmContractByAddressResponse added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use GetWasmContractByAddressResponse.ProtoReflect.Descriptor instead.

func (*GetWasmContractByAddressResponse) GetAddress added in v1.43.4

func (x *GetWasmContractByAddressResponse) GetAddress() string

func (*GetWasmContractByAddressResponse) GetAdmin added in v1.43.4

func (*GetWasmContractByAddressResponse) GetCodeId added in v1.43.4

func (*GetWasmContractByAddressResponse) GetContractNumber added in v1.43.4

func (x *GetWasmContractByAddressResponse) GetContractNumber() int64

func (*GetWasmContractByAddressResponse) GetCreator added in v1.43.4

func (x *GetWasmContractByAddressResponse) GetCreator() string

func (*GetWasmContractByAddressResponse) GetCurrentMigrateMessage added in v1.43.4

func (x *GetWasmContractByAddressResponse) GetCurrentMigrateMessage() string

func (*GetWasmContractByAddressResponse) GetCw20Metadata added in v1.43.4

func (x *GetWasmContractByAddressResponse) GetCw20Metadata() *Cw20Metadata

func (*GetWasmContractByAddressResponse) GetExecutes added in v1.43.4

func (x *GetWasmContractByAddressResponse) GetExecutes() uint64

func (*GetWasmContractByAddressResponse) GetFunds added in v1.43.4

func (*GetWasmContractByAddressResponse) GetInitMessage added in v1.43.4

func (x *GetWasmContractByAddressResponse) GetInitMessage() string

func (*GetWasmContractByAddressResponse) GetInstantiatedAt added in v1.43.4

func (x *GetWasmContractByAddressResponse) GetInstantiatedAt() uint64

func (*GetWasmContractByAddressResponse) GetLabel added in v1.43.4

func (*GetWasmContractByAddressResponse) GetLastExecutedAt added in v1.43.4

func (x *GetWasmContractByAddressResponse) GetLastExecutedAt() uint64

func (*GetWasmContractByAddressResponse) GetProposalId added in v1.43.4

func (x *GetWasmContractByAddressResponse) GetProposalId() int64

func (*GetWasmContractByAddressResponse) GetTxHash added in v1.43.4

func (*GetWasmContractByAddressResponse) GetType added in v1.43.4

func (*GetWasmContractByAddressResponse) GetVersion added in v1.43.4

func (x *GetWasmContractByAddressResponse) GetVersion() string

func (*GetWasmContractByAddressResponse) ProtoMessage added in v1.43.4

func (*GetWasmContractByAddressResponse) ProtoMessage()

func (*GetWasmContractByAddressResponse) ProtoReflect added in v1.43.4

func (*GetWasmContractByAddressResponse) Reset added in v1.43.4

func (*GetWasmContractByAddressResponse) String added in v1.43.4

type GetWasmContractsRequest added in v1.43.4

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"`
	// Label of the contract
	Label string `protobuf:"bytes,7,opt,name=label,proto3" json:"label,omitempty"`
	// contains filtered or unexported fields
}

func (*GetWasmContractsRequest) Descriptor deprecated added in v1.43.4

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

Deprecated: Use GetWasmContractsRequest.ProtoReflect.Descriptor instead.

func (*GetWasmContractsRequest) GetAssetsOnly added in v1.44.0

func (x *GetWasmContractsRequest) GetAssetsOnly() bool

func (*GetWasmContractsRequest) GetCodeId added in v1.43.4

func (x *GetWasmContractsRequest) GetCodeId() int64

func (*GetWasmContractsRequest) GetFromNumber added in v1.43.4

func (x *GetWasmContractsRequest) GetFromNumber() int64

func (*GetWasmContractsRequest) GetLabel added in v1.47.16

func (x *GetWasmContractsRequest) GetLabel() string

func (*GetWasmContractsRequest) GetLimit added in v1.43.4

func (x *GetWasmContractsRequest) GetLimit() int32

func (*GetWasmContractsRequest) GetSkip added in v1.44.0

func (x *GetWasmContractsRequest) GetSkip() int64

func (*GetWasmContractsRequest) GetToNumber added in v1.43.4

func (x *GetWasmContractsRequest) GetToNumber() int64

func (*GetWasmContractsRequest) ProtoMessage added in v1.43.4

func (*GetWasmContractsRequest) ProtoMessage()

func (*GetWasmContractsRequest) ProtoReflect added in v1.43.4

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

func (*GetWasmContractsRequest) Reset added in v1.43.4

func (x *GetWasmContractsRequest) Reset()

func (*GetWasmContractsRequest) String added in v1.43.4

func (x *GetWasmContractsRequest) String() string

type GetWasmContractsResponse added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use GetWasmContractsResponse.ProtoReflect.Descriptor instead.

func (*GetWasmContractsResponse) GetData added in v1.43.4

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

func (*GetWasmContractsResponse) GetPaging added in v1.43.4

func (x *GetWasmContractsResponse) GetPaging() *Paging

func (*GetWasmContractsResponse) ProtoMessage added in v1.43.4

func (*GetWasmContractsResponse) ProtoMessage()

func (*GetWasmContractsResponse) ProtoReflect added in v1.43.4

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

func (*GetWasmContractsResponse) Reset added in v1.43.4

func (x *GetWasmContractsResponse) Reset()

func (*GetWasmContractsResponse) String added in v1.43.4

func (x *GetWasmContractsResponse) String() string

type IBCTransferTx added in v1.32.0

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 added in v1.32.0

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

Deprecated: Use IBCTransferTx.ProtoReflect.Descriptor instead.

func (*IBCTransferTx) GetAmount added in v1.32.0

func (x *IBCTransferTx) GetAmount() string

func (*IBCTransferTx) GetCreatedAt added in v1.32.0

func (x *IBCTransferTx) GetCreatedAt() string

func (*IBCTransferTx) GetDataHex added in v1.32.0

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

func (*IBCTransferTx) GetDenom added in v1.32.0

func (x *IBCTransferTx) GetDenom() string

func (*IBCTransferTx) GetDestinationChannel added in v1.32.0

func (x *IBCTransferTx) GetDestinationChannel() string

func (*IBCTransferTx) GetDestinationPort added in v1.32.0

func (x *IBCTransferTx) GetDestinationPort() string

func (*IBCTransferTx) GetPacketSequence added in v1.32.0

func (x *IBCTransferTx) GetPacketSequence() uint64

func (*IBCTransferTx) GetReceiver added in v1.32.0

func (x *IBCTransferTx) GetReceiver() string

func (*IBCTransferTx) GetSender added in v1.32.0

func (x *IBCTransferTx) GetSender() string

func (*IBCTransferTx) GetSourceChannel added in v1.32.0

func (x *IBCTransferTx) GetSourceChannel() string

func (*IBCTransferTx) GetSourcePort added in v1.32.0

func (x *IBCTransferTx) GetSourcePort() string

func (*IBCTransferTx) GetState added in v1.32.0

func (x *IBCTransferTx) GetState() string

func (*IBCTransferTx) GetTimeoutHeight added in v1.32.0

func (x *IBCTransferTx) GetTimeoutHeight() string

func (*IBCTransferTx) GetTimeoutTimestamp added in v1.32.0

func (x *IBCTransferTx) GetTimeoutTimestamp() uint64

func (*IBCTransferTx) GetTxHashes added in v1.32.0

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

func (*IBCTransferTx) GetUpdatedAt added in v1.32.0

func (x *IBCTransferTx) GetUpdatedAt() string

func (*IBCTransferTx) ProtoMessage added in v1.32.0

func (*IBCTransferTx) ProtoMessage()

func (*IBCTransferTx) ProtoReflect added in v1.32.0

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

func (*IBCTransferTx) Reset added in v1.32.0

func (x *IBCTransferTx) Reset()

func (*IBCTransferTx) String added in v1.32.0

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)
	// GetBankTransfers returns bank transfers.
	GetBankTransfers(ctx context.Context, in *GetBankTransfersRequest, opts ...grpc.CallOption) (*GetBankTransfersResponse, 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)
	// GetBankTransfers returns bank transfers.
	GetBankTransfers(context.Context, *GetBankTransfersRequest) (*GetBankTransfersResponse, 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"`
	// array of tokens to navigate to the next pages
	Next []string `protobuf:"bytes,5,rep,name=next,proto3" json:"next,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 added in v1.43.4

func (x *Paging) GetCountBySubaccount() int64

func (*Paging) GetFrom

func (x *Paging) GetFrom() int32

func (*Paging) GetNext added in v1.47.16

func (x *Paging) GetNext() []string

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 added in v1.32.0

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 added in v1.32.0

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

Deprecated: Use PeggyDepositTx.ProtoReflect.Descriptor instead.

func (*PeggyDepositTx) GetAmount added in v1.32.0

func (x *PeggyDepositTx) GetAmount() string

func (*PeggyDepositTx) GetClaimType added in v1.32.0

func (x *PeggyDepositTx) GetClaimType() int32

func (*PeggyDepositTx) GetCreatedAt added in v1.32.0

func (x *PeggyDepositTx) GetCreatedAt() string

func (*PeggyDepositTx) GetDenom added in v1.32.0

func (x *PeggyDepositTx) GetDenom() string

func (*PeggyDepositTx) GetEventHeight added in v1.32.0

func (x *PeggyDepositTx) GetEventHeight() uint64

func (*PeggyDepositTx) GetEventNonce added in v1.32.0

func (x *PeggyDepositTx) GetEventNonce() uint64

func (*PeggyDepositTx) GetOrchestratorAddress added in v1.32.0

func (x *PeggyDepositTx) GetOrchestratorAddress() string

func (*PeggyDepositTx) GetReceiver added in v1.32.0

func (x *PeggyDepositTx) GetReceiver() string

func (*PeggyDepositTx) GetSender added in v1.32.0

func (x *PeggyDepositTx) GetSender() string

func (*PeggyDepositTx) GetState added in v1.32.0

func (x *PeggyDepositTx) GetState() string

func (*PeggyDepositTx) GetTxHashes added in v1.32.0

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

func (*PeggyDepositTx) GetUpdatedAt added in v1.32.0

func (x *PeggyDepositTx) GetUpdatedAt() string

func (*PeggyDepositTx) ProtoMessage added in v1.32.0

func (*PeggyDepositTx) ProtoMessage()

func (*PeggyDepositTx) ProtoReflect added in v1.32.0

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

func (*PeggyDepositTx) Reset added in v1.32.0

func (x *PeggyDepositTx) Reset()

func (*PeggyDepositTx) String added in v1.32.0

func (x *PeggyDepositTx) String() string

type PeggyWithdrawalTx added in v1.32.0

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 added in v1.32.0

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

Deprecated: Use PeggyWithdrawalTx.ProtoReflect.Descriptor instead.

func (*PeggyWithdrawalTx) GetAmount added in v1.32.0

func (x *PeggyWithdrawalTx) GetAmount() string

func (*PeggyWithdrawalTx) GetBatchNonce added in v1.32.0

func (x *PeggyWithdrawalTx) GetBatchNonce() uint64

func (*PeggyWithdrawalTx) GetBatchTimeout added in v1.32.0

func (x *PeggyWithdrawalTx) GetBatchTimeout() uint64

func (*PeggyWithdrawalTx) GetBridgeFee added in v1.32.0

func (x *PeggyWithdrawalTx) GetBridgeFee() string

func (*PeggyWithdrawalTx) GetClaimType added in v1.32.0

func (x *PeggyWithdrawalTx) GetClaimType() int32

func (*PeggyWithdrawalTx) GetCreatedAt added in v1.32.0

func (x *PeggyWithdrawalTx) GetCreatedAt() string

func (*PeggyWithdrawalTx) GetDenom added in v1.32.0

func (x *PeggyWithdrawalTx) GetDenom() string

func (*PeggyWithdrawalTx) GetEventHeight added in v1.32.0

func (x *PeggyWithdrawalTx) GetEventHeight() uint64

func (*PeggyWithdrawalTx) GetEventNonce added in v1.32.0

func (x *PeggyWithdrawalTx) GetEventNonce() uint64

func (*PeggyWithdrawalTx) GetOrchestratorAddress added in v1.32.0

func (x *PeggyWithdrawalTx) GetOrchestratorAddress() string

func (*PeggyWithdrawalTx) GetOutgoingTxId added in v1.32.0

func (x *PeggyWithdrawalTx) GetOutgoingTxId() uint64

func (*PeggyWithdrawalTx) GetReceiver added in v1.32.0

func (x *PeggyWithdrawalTx) GetReceiver() string

func (*PeggyWithdrawalTx) GetSender added in v1.32.0

func (x *PeggyWithdrawalTx) GetSender() string

func (*PeggyWithdrawalTx) GetState added in v1.32.0

func (x *PeggyWithdrawalTx) GetState() string

func (*PeggyWithdrawalTx) GetTxHashes added in v1.32.0

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

func (*PeggyWithdrawalTx) GetUpdatedAt added in v1.32.0

func (x *PeggyWithdrawalTx) GetUpdatedAt() string

func (*PeggyWithdrawalTx) ProtoMessage added in v1.32.0

func (*PeggyWithdrawalTx) ProtoMessage()

func (*PeggyWithdrawalTx) ProtoReflect added in v1.32.0

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

func (*PeggyWithdrawalTx) Reset added in v1.32.0

func (x *PeggyWithdrawalTx) Reset()

func (*PeggyWithdrawalTx) String added in v1.32.0

func (x *PeggyWithdrawalTx) String() string

type Relayer added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use Relayer.ProtoReflect.Descriptor instead.

func (*Relayer) GetCta added in v1.43.4

func (x *Relayer) GetCta() string

func (*Relayer) GetName added in v1.43.4

func (x *Relayer) GetName() string

func (*Relayer) ProtoMessage added in v1.43.4

func (*Relayer) ProtoMessage()

func (*Relayer) ProtoReflect added in v1.43.4

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

func (*Relayer) Reset added in v1.43.4

func (x *Relayer) Reset()

func (*Relayer) String added in v1.43.4

func (x *Relayer) String() string

type RelayerMarkets added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use RelayerMarkets.ProtoReflect.Descriptor instead.

func (*RelayerMarkets) GetMarketId added in v1.43.4

func (x *RelayerMarkets) GetMarketId() string

func (*RelayerMarkets) GetRelayers added in v1.43.4

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

func (*RelayerMarkets) ProtoMessage added in v1.43.4

func (*RelayerMarkets) ProtoMessage()

func (*RelayerMarkets) ProtoReflect added in v1.43.4

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

func (*RelayerMarkets) Reset added in v1.43.4

func (x *RelayerMarkets) Reset()

func (*RelayerMarkets) String added in v1.43.4

func (x *RelayerMarkets) String() string

type RelayersRequest added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use RelayersRequest.ProtoReflect.Descriptor instead.

func (*RelayersRequest) GetMarketIDs added in v1.43.4

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

func (*RelayersRequest) ProtoMessage added in v1.43.4

func (*RelayersRequest) ProtoMessage()

func (*RelayersRequest) ProtoReflect added in v1.43.4

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

func (*RelayersRequest) Reset added in v1.43.4

func (x *RelayersRequest) Reset()

func (*RelayersRequest) String added in v1.43.4

func (x *RelayersRequest) String() string

type RelayersResponse added in v1.43.4

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

func (*RelayersResponse) Descriptor deprecated added in v1.43.4

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

Deprecated: Use RelayersResponse.ProtoReflect.Descriptor instead.

func (*RelayersResponse) GetField added in v1.43.4

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

func (*RelayersResponse) ProtoMessage added in v1.43.4

func (*RelayersResponse) ProtoMessage()

func (*RelayersResponse) ProtoReflect added in v1.43.4

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

func (*RelayersResponse) Reset added in v1.43.4

func (x *RelayersResponse) Reset()

func (*RelayersResponse) String added in v1.43.4

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 added in v1.32.0

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 added in v1.32.0

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

Deprecated: Use SlashingEvent.ProtoReflect.Descriptor instead.

func (*SlashingEvent) GetAddress added in v1.32.0

func (x *SlashingEvent) GetAddress() string

func (*SlashingEvent) GetBlockNumber added in v1.32.0

func (x *SlashingEvent) GetBlockNumber() uint64

func (*SlashingEvent) GetBlockTimestamp added in v1.32.0

func (x *SlashingEvent) GetBlockTimestamp() string

func (*SlashingEvent) GetJailed added in v1.32.0

func (x *SlashingEvent) GetJailed() string

func (*SlashingEvent) GetMissedBlocks added in v1.32.0

func (x *SlashingEvent) GetMissedBlocks() uint64

func (*SlashingEvent) GetPower added in v1.32.0

func (x *SlashingEvent) GetPower() uint64

func (*SlashingEvent) GetReason added in v1.32.0

func (x *SlashingEvent) GetReason() string

func (*SlashingEvent) ProtoMessage added in v1.32.0

func (*SlashingEvent) ProtoMessage()

func (*SlashingEvent) ProtoReflect added in v1.32.0

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

func (*SlashingEvent) Reset added in v1.32.0

func (x *SlashingEvent) Reset()

func (*SlashingEvent) String added in v1.32.0

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 added in v1.32.0

func (x *StreamBlocksResponse) GetBlockHash() string

func (*StreamBlocksResponse) GetHeight added in v1.32.0

func (x *StreamBlocksResponse) GetHeight() uint64

func (*StreamBlocksResponse) GetMoniker added in v1.32.0

func (x *StreamBlocksResponse) GetMoniker() string

func (*StreamBlocksResponse) GetNumPreCommits added in v1.32.0

func (x *StreamBlocksResponse) GetNumPreCommits() int64

func (*StreamBlocksResponse) GetNumTxs added in v1.32.0

func (x *StreamBlocksResponse) GetNumTxs() int64

func (*StreamBlocksResponse) GetParentHash added in v1.32.0

func (x *StreamBlocksResponse) GetParentHash() string

func (*StreamBlocksResponse) GetProposer added in v1.32.0

func (x *StreamBlocksResponse) GetProposer() string

func (*StreamBlocksResponse) GetTimestamp added in v1.32.0

func (x *StreamBlocksResponse) GetTimestamp() string

func (*StreamBlocksResponse) GetTxs added in v1.32.0

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"`
	// peggy bridge claim id, non-zero if tx contains MsgDepositClaim
	ClaimIds []int64 `protobuf:"zigzag64,10,rep,packed,name=claim_ids,json=claimIds,proto3" json:"claim_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*StreamTxsResponse) Descriptor deprecated

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

Deprecated: Use StreamTxsResponse.ProtoReflect.Descriptor instead.

func (*StreamTxsResponse) GetBlockNumber added in v1.32.0

func (x *StreamTxsResponse) GetBlockNumber() uint64

func (*StreamTxsResponse) GetBlockTimestamp added in v1.32.0

func (x *StreamTxsResponse) GetBlockTimestamp() string

func (*StreamTxsResponse) GetClaimIds added in v1.47.16

func (x *StreamTxsResponse) GetClaimIds() []int64

func (*StreamTxsResponse) GetCode added in v1.32.0

func (x *StreamTxsResponse) GetCode() uint32

func (*StreamTxsResponse) GetCodespace added in v1.32.0

func (x *StreamTxsResponse) GetCodespace() string

func (*StreamTxsResponse) GetErrorLog added in v1.43.4

func (x *StreamTxsResponse) GetErrorLog() string

func (*StreamTxsResponse) GetHash added in v1.32.0

func (x *StreamTxsResponse) GetHash() string

func (*StreamTxsResponse) GetId added in v1.32.0

func (x *StreamTxsResponse) GetId() string

func (*StreamTxsResponse) GetMessages added in v1.32.0

func (x *StreamTxsResponse) GetMessages() string

func (*StreamTxsResponse) GetTxNumber added in v1.43.4

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"`
	// peggy bridge claim id, non-zero if tx contains MsgDepositClaim
	ClaimIds []int64 `protobuf:"zigzag64,12,rep,packed,name=claim_ids,json=claimIds,proto3" json:"claim_ids,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) GetClaimIds added in v1.47.16

func (x *TxData) GetClaimIds() []int64

func (*TxData) GetCode

func (x *TxData) GetCode() uint32

func (*TxData) GetCodespace

func (x *TxData) GetCodespace() string

func (*TxData) GetErrorLog added in v1.43.4

func (x *TxData) GetErrorLog() string

func (*TxData) GetHash

func (x *TxData) GetHash() string

func (*TxData) GetId

func (x *TxData) GetId() string

func (*TxData) GetLogs added in v1.46.2

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

func (*TxData) GetMessages

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

func (*TxData) GetTxMsgTypes added in v1.45.2

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

func (*TxData) GetTxNumber added in v1.43.4

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 added in v1.43.4

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"`
	// peggy bridge claim id, non-zero if tx contains MsgDepositClaim
	ClaimIds []int64 `protobuf:"zigzag64,10,rep,packed,name=claim_ids,json=claimIds,proto3" json:"claim_ids,omitempty"`
	// contains filtered or unexported fields
}

TxData wraps tx data

func (*TxDataRPC) Descriptor deprecated added in v1.43.4

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

Deprecated: Use TxDataRPC.ProtoReflect.Descriptor instead.

func (*TxDataRPC) GetBlockNumber added in v1.43.4

func (x *TxDataRPC) GetBlockNumber() uint64

func (*TxDataRPC) GetBlockTimestamp added in v1.43.4

func (x *TxDataRPC) GetBlockTimestamp() string

func (*TxDataRPC) GetClaimIds added in v1.47.16

func (x *TxDataRPC) GetClaimIds() []int64

func (*TxDataRPC) GetCode added in v1.43.4

func (x *TxDataRPC) GetCode() uint32

func (*TxDataRPC) GetCodespace added in v1.43.4

func (x *TxDataRPC) GetCodespace() string

func (*TxDataRPC) GetErrorLog added in v1.43.4

func (x *TxDataRPC) GetErrorLog() string

func (*TxDataRPC) GetHash added in v1.43.4

func (x *TxDataRPC) GetHash() string

func (*TxDataRPC) GetId added in v1.43.4

func (x *TxDataRPC) GetId() string

func (*TxDataRPC) GetMessages added in v1.43.4

func (x *TxDataRPC) GetMessages() string

func (*TxDataRPC) GetTxNumber added in v1.43.4

func (x *TxDataRPC) GetTxNumber() uint64

func (*TxDataRPC) ProtoMessage added in v1.43.4

func (*TxDataRPC) ProtoMessage()

func (*TxDataRPC) ProtoReflect added in v1.43.4

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

func (*TxDataRPC) Reset added in v1.43.4

func (x *TxDataRPC) Reset()

func (*TxDataRPC) String added in v1.43.4

func (x *TxDataRPC) String() string

type TxDetailData added in v1.43.4

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"`
	// peggy bridge claim id, non-zero if tx contains MsgDepositClaim
	ClaimIds []int64 `protobuf:"zigzag64,22,rep,packed,name=claim_ids,json=claimIds,proto3" json:"claim_ids,omitempty"`
	// contains filtered or unexported fields
}

TxDetailData wraps tx data includes details information

func (*TxDetailData) Descriptor deprecated added in v1.43.4

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

Deprecated: Use TxDetailData.ProtoReflect.Descriptor instead.

func (*TxDetailData) GetBlockNumber added in v1.43.4

func (x *TxDetailData) GetBlockNumber() uint64

func (*TxDetailData) GetBlockTimestamp added in v1.43.4

func (x *TxDetailData) GetBlockTimestamp() string

func (*TxDetailData) GetBlockUnixTimestamp added in v1.43.4

func (x *TxDetailData) GetBlockUnixTimestamp() uint64

func (*TxDetailData) GetClaimIds added in v1.47.16

func (x *TxDetailData) GetClaimIds() []int64

func (*TxDetailData) GetCode added in v1.43.4

func (x *TxDetailData) GetCode() uint32

func (*TxDetailData) GetCodespace added in v1.43.4

func (x *TxDetailData) GetCodespace() string

func (*TxDetailData) GetData added in v1.43.4

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

func (*TxDetailData) GetErrorLog added in v1.43.4

func (x *TxDetailData) GetErrorLog() string

func (*TxDetailData) GetEvents added in v1.43.4

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

func (*TxDetailData) GetGasFee added in v1.43.4

func (x *TxDetailData) GetGasFee() *GasFee

func (*TxDetailData) GetGasUsed added in v1.43.4

func (x *TxDetailData) GetGasUsed() int64

func (*TxDetailData) GetGasWanted added in v1.43.4

func (x *TxDetailData) GetGasWanted() int64

func (*TxDetailData) GetHash added in v1.43.4

func (x *TxDetailData) GetHash() string

func (*TxDetailData) GetId added in v1.43.4

func (x *TxDetailData) GetId() string

func (*TxDetailData) GetInfo added in v1.43.4

func (x *TxDetailData) GetInfo() string

func (*TxDetailData) GetLogs added in v1.46.2

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

func (*TxDetailData) GetMemo added in v1.43.4

func (x *TxDetailData) GetMemo() string

func (*TxDetailData) GetMessages added in v1.43.4

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

func (*TxDetailData) GetSignatures added in v1.43.4

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

func (*TxDetailData) GetTxNumber added in v1.43.4

func (x *TxDetailData) GetTxNumber() uint64

func (*TxDetailData) GetTxType added in v1.43.4

func (x *TxDetailData) GetTxType() string

func (*TxDetailData) ProtoMessage added in v1.43.4

func (*TxDetailData) ProtoMessage()

func (*TxDetailData) ProtoReflect added in v1.43.4

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

func (*TxDetailData) Reset added in v1.43.4

func (x *TxDetailData) Reset()

func (*TxDetailData) String added in v1.43.4

func (x *TxDetailData) String() string

type UnimplementedInjectiveExplorerRPCServer

type UnimplementedInjectiveExplorerRPCServer struct {
}

UnimplementedInjectiveExplorerRPCServer must be embedded to have forward compatible implementations.

func (UnimplementedInjectiveExplorerRPCServer) GetAccountTxs

func (UnimplementedInjectiveExplorerRPCServer) GetBankTransfers added in v1.47.16

func (UnimplementedInjectiveExplorerRPCServer) GetBlock

func (UnimplementedInjectiveExplorerRPCServer) GetBlocks

func (UnimplementedInjectiveExplorerRPCServer) GetContractTxs added in v1.43.4

func (UnimplementedInjectiveExplorerRPCServer) GetCw20Balance added in v1.43.4

func (UnimplementedInjectiveExplorerRPCServer) GetIBCTransferTxs added in v1.32.0

func (UnimplementedInjectiveExplorerRPCServer) GetPeggyDepositTxs added in v1.32.0

func (UnimplementedInjectiveExplorerRPCServer) GetPeggyWithdrawalTxs added in v1.32.0

func (UnimplementedInjectiveExplorerRPCServer) GetTxByTxHash

func (UnimplementedInjectiveExplorerRPCServer) GetTxs

func (UnimplementedInjectiveExplorerRPCServer) GetValidator added in v1.32.0

func (UnimplementedInjectiveExplorerRPCServer) GetValidatorUptime added in v1.32.0

func (UnimplementedInjectiveExplorerRPCServer) GetValidators added in v1.43.4

func (UnimplementedInjectiveExplorerRPCServer) GetWasmCodeByID added in v1.43.4

func (UnimplementedInjectiveExplorerRPCServer) GetWasmCodes added in v1.43.4

func (UnimplementedInjectiveExplorerRPCServer) GetWasmContractByAddress added in v1.43.4

func (UnimplementedInjectiveExplorerRPCServer) GetWasmContracts added in v1.43.4

func (UnimplementedInjectiveExplorerRPCServer) Relayers added in v1.43.4

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 added in v1.43.4

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"`
	// URL of the validator logo
	ImageUrl string `protobuf:"bytes,23,opt,name=image_url,json=imageUrl,proto3" json:"image_url,omitempty"`
	// contains filtered or unexported fields
}

Validator defines the structure for validator information.

func (*Validator) Descriptor deprecated added in v1.43.4

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

Deprecated: Use Validator.ProtoReflect.Descriptor instead.

func (*Validator) GetCommissionMaxChangeRate added in v1.43.4

func (x *Validator) GetCommissionMaxChangeRate() string

func (*Validator) GetCommissionMaxRate added in v1.43.4

func (x *Validator) GetCommissionMaxRate() string

func (*Validator) GetCommissionRate added in v1.43.4

func (x *Validator) GetCommissionRate() string

func (*Validator) GetCommissionUpdateTime added in v1.43.4

func (x *Validator) GetCommissionUpdateTime() string

func (*Validator) GetConsensusAddress added in v1.43.4

func (x *Validator) GetConsensusAddress() string

func (*Validator) GetDelegatorShares added in v1.43.4

func (x *Validator) GetDelegatorShares() string

func (*Validator) GetDescription added in v1.43.4

func (x *Validator) GetDescription() *ValidatorDescription

func (*Validator) GetId added in v1.43.4

func (x *Validator) GetId() string

func (*Validator) GetImageUrl added in v1.47.16

func (x *Validator) GetImageUrl() string

func (*Validator) GetJailed added in v1.43.4

func (x *Validator) GetJailed() bool

func (*Validator) GetMissed added in v1.43.4

func (x *Validator) GetMissed() uint64

func (*Validator) GetMoniker added in v1.43.4

func (x *Validator) GetMoniker() string

func (*Validator) GetOperatorAddress added in v1.43.4

func (x *Validator) GetOperatorAddress() string

func (*Validator) GetProposed added in v1.43.4

func (x *Validator) GetProposed() uint64

func (*Validator) GetSigned added in v1.43.4

func (x *Validator) GetSigned() uint64

func (*Validator) GetSlashingEvents added in v1.43.4

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

func (*Validator) GetStatus added in v1.43.4

func (x *Validator) GetStatus() int32

func (*Validator) GetTimestamp added in v1.43.4

func (x *Validator) GetTimestamp() string

func (*Validator) GetTokens added in v1.43.4

func (x *Validator) GetTokens() string

func (*Validator) GetUnbondingHeight added in v1.43.4

func (x *Validator) GetUnbondingHeight() int64

func (*Validator) GetUnbondingTime added in v1.43.4

func (x *Validator) GetUnbondingTime() string

func (*Validator) GetUptimePercentage added in v1.43.4

func (x *Validator) GetUptimePercentage() float64

func (*Validator) GetUptimes added in v1.43.4

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

func (*Validator) ProtoMessage added in v1.43.4

func (*Validator) ProtoMessage()

func (*Validator) ProtoReflect added in v1.43.4

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

func (*Validator) Reset added in v1.43.4

func (x *Validator) Reset()

func (*Validator) String added in v1.43.4

func (x *Validator) String() string

type ValidatorDescription added in v1.32.0

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"`
	ImageUrl        string `protobuf:"bytes,6,opt,name=image_url,json=imageUrl,proto3" json:"image_url,omitempty"`
	// contains filtered or unexported fields
}

func (*ValidatorDescription) Descriptor deprecated added in v1.32.0

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

Deprecated: Use ValidatorDescription.ProtoReflect.Descriptor instead.

func (*ValidatorDescription) GetDetails added in v1.32.0

func (x *ValidatorDescription) GetDetails() string

func (*ValidatorDescription) GetIdentity added in v1.32.0

func (x *ValidatorDescription) GetIdentity() string

func (*ValidatorDescription) GetImageUrl added in v1.47.16

func (x *ValidatorDescription) GetImageUrl() string

func (*ValidatorDescription) GetMoniker added in v1.32.0

func (x *ValidatorDescription) GetMoniker() string

func (*ValidatorDescription) GetSecurityContact added in v1.32.0

func (x *ValidatorDescription) GetSecurityContact() string

func (*ValidatorDescription) GetWebsite added in v1.32.0

func (x *ValidatorDescription) GetWebsite() string

func (*ValidatorDescription) ProtoMessage added in v1.32.0

func (*ValidatorDescription) ProtoMessage()

func (*ValidatorDescription) ProtoReflect added in v1.32.0

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

func (*ValidatorDescription) Reset added in v1.32.0

func (x *ValidatorDescription) Reset()

func (*ValidatorDescription) String added in v1.32.0

func (x *ValidatorDescription) String() string

type ValidatorUptime added in v1.32.0

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 added in v1.32.0

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

Deprecated: Use ValidatorUptime.ProtoReflect.Descriptor instead.

func (*ValidatorUptime) GetBlockNumber added in v1.32.0

func (x *ValidatorUptime) GetBlockNumber() uint64

func (*ValidatorUptime) GetStatus added in v1.32.0

func (x *ValidatorUptime) GetStatus() string

func (*ValidatorUptime) ProtoMessage added in v1.32.0

func (*ValidatorUptime) ProtoMessage()

func (*ValidatorUptime) ProtoReflect added in v1.32.0

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

func (*ValidatorUptime) Reset added in v1.32.0

func (x *ValidatorUptime) Reset()

func (*ValidatorUptime) String added in v1.32.0

func (x *ValidatorUptime) String() string

type WasmCode added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use WasmCode.ProtoReflect.Descriptor instead.

func (*WasmCode) GetChecksum added in v1.43.4

func (x *WasmCode) GetChecksum() *Checksum

func (*WasmCode) GetCodeId added in v1.43.4

func (x *WasmCode) GetCodeId() uint64

func (*WasmCode) GetCodeNumber added in v1.43.4

func (x *WasmCode) GetCodeNumber() int64

func (*WasmCode) GetCodeSchema added in v1.43.4

func (x *WasmCode) GetCodeSchema() string

func (*WasmCode) GetCodeView added in v1.43.4

func (x *WasmCode) GetCodeView() string

func (*WasmCode) GetContractType added in v1.43.4

func (x *WasmCode) GetContractType() string

func (*WasmCode) GetCreatedAt added in v1.43.4

func (x *WasmCode) GetCreatedAt() uint64

func (*WasmCode) GetCreator added in v1.43.4

func (x *WasmCode) GetCreator() string

func (*WasmCode) GetInstantiates added in v1.43.4

func (x *WasmCode) GetInstantiates() uint64

func (*WasmCode) GetPermission added in v1.43.4

func (x *WasmCode) GetPermission() *ContractPermission

func (*WasmCode) GetProposalId added in v1.43.4

func (x *WasmCode) GetProposalId() int64

func (*WasmCode) GetTxHash added in v1.43.4

func (x *WasmCode) GetTxHash() string

func (*WasmCode) GetVersion added in v1.43.4

func (x *WasmCode) GetVersion() string

func (*WasmCode) ProtoMessage added in v1.43.4

func (*WasmCode) ProtoMessage()

func (*WasmCode) ProtoReflect added in v1.43.4

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

func (*WasmCode) Reset added in v1.43.4

func (x *WasmCode) Reset()

func (*WasmCode) String added in v1.43.4

func (x *WasmCode) String() string

type WasmContract added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use WasmContract.ProtoReflect.Descriptor instead.

func (*WasmContract) GetAddress added in v1.43.4

func (x *WasmContract) GetAddress() string

func (*WasmContract) GetAdmin added in v1.43.4

func (x *WasmContract) GetAdmin() string

func (*WasmContract) GetCodeId added in v1.43.4

func (x *WasmContract) GetCodeId() uint64

func (*WasmContract) GetContractNumber added in v1.43.4

func (x *WasmContract) GetContractNumber() int64

func (*WasmContract) GetCreator added in v1.43.4

func (x *WasmContract) GetCreator() string

func (*WasmContract) GetCurrentMigrateMessage added in v1.43.4

func (x *WasmContract) GetCurrentMigrateMessage() string

func (*WasmContract) GetCw20Metadata added in v1.43.4

func (x *WasmContract) GetCw20Metadata() *Cw20Metadata

func (*WasmContract) GetExecutes added in v1.43.4

func (x *WasmContract) GetExecutes() uint64

func (*WasmContract) GetFunds added in v1.43.4

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

func (*WasmContract) GetInitMessage added in v1.43.4

func (x *WasmContract) GetInitMessage() string

func (*WasmContract) GetInstantiatedAt added in v1.43.4

func (x *WasmContract) GetInstantiatedAt() uint64

func (*WasmContract) GetLabel added in v1.43.4

func (x *WasmContract) GetLabel() string

func (*WasmContract) GetLastExecutedAt added in v1.43.4

func (x *WasmContract) GetLastExecutedAt() uint64

func (*WasmContract) GetProposalId added in v1.43.4

func (x *WasmContract) GetProposalId() int64

func (*WasmContract) GetTxHash added in v1.43.4

func (x *WasmContract) GetTxHash() string

func (*WasmContract) GetType added in v1.43.4

func (x *WasmContract) GetType() string

func (*WasmContract) GetVersion added in v1.43.4

func (x *WasmContract) GetVersion() string

func (*WasmContract) ProtoMessage added in v1.43.4

func (*WasmContract) ProtoMessage()

func (*WasmContract) ProtoReflect added in v1.43.4

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

func (*WasmContract) Reset added in v1.43.4

func (x *WasmContract) Reset()

func (*WasmContract) String added in v1.43.4

func (x *WasmContract) String() string

type WasmCw20Balance added in v1.43.4

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 added in v1.43.4

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

Deprecated: Use WasmCw20Balance.ProtoReflect.Descriptor instead.

func (*WasmCw20Balance) GetAccount added in v1.43.4

func (x *WasmCw20Balance) GetAccount() string

func (*WasmCw20Balance) GetBalance added in v1.43.4

func (x *WasmCw20Balance) GetBalance() string

func (*WasmCw20Balance) GetContractAddress added in v1.43.4

func (x *WasmCw20Balance) GetContractAddress() string

func (*WasmCw20Balance) GetCw20Metadata added in v1.43.4

func (x *WasmCw20Balance) GetCw20Metadata() *Cw20Metadata

func (*WasmCw20Balance) GetUpdatedAt added in v1.43.4

func (x *WasmCw20Balance) GetUpdatedAt() int64

func (*WasmCw20Balance) ProtoMessage added in v1.43.4

func (*WasmCw20Balance) ProtoMessage()

func (*WasmCw20Balance) ProtoReflect added in v1.43.4

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

func (*WasmCw20Balance) Reset added in v1.43.4

func (x *WasmCw20Balance) Reset()

func (*WasmCw20Balance) String added in v1.43.4

func (x *WasmCw20Balance) String() string

Jump to

Keyboard shortcuts

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