sdk_utilitiespb

package
v0.0.0-...-de9afa2 Latest Latest
Warning

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

Go to latest
Published: Jul 19, 2022 License: AGPL-3.0 Imports: 8 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_goadesign_goagen_sdk_utilities_proto protoreflect.FileDescriptor
View Source
var SdkUtilities_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "sdk_utilities.SdkUtilities",
	HandlerType: (*SdkUtilitiesServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "AccountNumbers",
			Handler:    _SdkUtilities_AccountNumbers_Handler,
		},
		{
			MethodName: "Supply",
			Handler:    _SdkUtilities_Supply_Handler,
		},
		{
			MethodName: "SupplyDenom",
			Handler:    _SdkUtilities_SupplyDenom_Handler,
		},
		{
			MethodName: "QueryTx",
			Handler:    _SdkUtilities_QueryTx_Handler,
		},
		{
			MethodName: "BroadcastTx",
			Handler:    _SdkUtilities_BroadcastTx_Handler,
		},
		{
			MethodName: "TxMetadata",
			Handler:    _SdkUtilities_TxMetadata_Handler,
		},
		{
			MethodName: "Block",
			Handler:    _SdkUtilities_Block_Handler,
		},
		{
			MethodName: "LiquidityParams",
			Handler:    _SdkUtilities_LiquidityParams_Handler,
		},
		{
			MethodName: "LiquidityPools",
			Handler:    _SdkUtilities_LiquidityPools_Handler,
		},
		{
			MethodName: "MintInflation",
			Handler:    _SdkUtilities_MintInflation_Handler,
		},
		{
			MethodName: "MintParams",
			Handler:    _SdkUtilities_MintParams_Handler,
		},
		{
			MethodName: "MintAnnualProvision",
			Handler:    _SdkUtilities_MintAnnualProvision_Handler,
		},
		{
			MethodName: "MintEpochProvisions",
			Handler:    _SdkUtilities_MintEpochProvisions_Handler,
		},
		{
			MethodName: "DelegatorRewards",
			Handler:    _SdkUtilities_DelegatorRewards_Handler,
		},
		{
			MethodName: "EstimateFees",
			Handler:    _SdkUtilities_EstimateFees_Handler,
		},
		{
			MethodName: "StakingParams",
			Handler:    _SdkUtilities_StakingParams_Handler,
		},
		{
			MethodName: "StakingPool",
			Handler:    _SdkUtilities_StakingPool_Handler,
		},
		{
			MethodName: "EmoneyInflation",
			Handler:    _SdkUtilities_EmoneyInflation_Handler,
		},
		{
			MethodName: "BudgetParams",
			Handler:    _SdkUtilities_BudgetParams_Handler,
		},
		{
			MethodName: "DistributionParams",
			Handler:    _SdkUtilities_DistributionParams_Handler,
		},
		{
			MethodName: "OsmoPools",
			Handler:    _SdkUtilities_OsmoPools_Handler,
		},
		{
			MethodName: "CrescentPools",
			Handler:    _SdkUtilities_CrescentPools_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "goadesign_goagen_sdk_utilities.proto",
}

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

Functions

func RegisterSdkUtilitiesServer

func RegisterSdkUtilitiesServer(s grpc.ServiceRegistrar, srv SdkUtilitiesServer)

Types

type AccountNumbersRequest

type AccountNumbersRequest struct {

	// Chain to get data from
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	// gRPC port for selected chain, defaults to 9090
	Port int32 `protobuf:"zigzag32,2,opt,name=port,proto3" json:"port,omitempty"`
	// bech32-encoded prefix of the account
	Bech32Prefix string `protobuf:"bytes,3,opt,name=bech32_prefix,json=bech32Prefix,proto3" json:"bech32_prefix,omitempty"`
	// Hex-encoded address, without bech32 hrp
	AddresHex string `protobuf:"bytes,4,opt,name=addres_hex,json=addresHex,proto3" json:"addres_hex,omitempty"`
	// contains filtered or unexported fields
}

func (*AccountNumbersRequest) Descriptor deprecated

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

Deprecated: Use AccountNumbersRequest.ProtoReflect.Descriptor instead.

func (*AccountNumbersRequest) GetAddresHex

func (x *AccountNumbersRequest) GetAddresHex() string

func (*AccountNumbersRequest) GetBech32Prefix

func (x *AccountNumbersRequest) GetBech32Prefix() string

func (*AccountNumbersRequest) GetChainName

func (x *AccountNumbersRequest) GetChainName() string

func (*AccountNumbersRequest) GetPort

func (x *AccountNumbersRequest) GetPort() int32

func (*AccountNumbersRequest) ProtoMessage

func (*AccountNumbersRequest) ProtoMessage()

func (*AccountNumbersRequest) ProtoReflect

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

func (*AccountNumbersRequest) Reset

func (x *AccountNumbersRequest) Reset()

func (*AccountNumbersRequest) String

func (x *AccountNumbersRequest) String() string

type AccountNumbersResponse

type AccountNumbersResponse struct {
	AccountNumber  int64  `protobuf:"zigzag64,1,opt,name=account_number,json=accountNumber,proto3" json:"account_number,omitempty"`
	SequenceNumber int64  `protobuf:"zigzag64,2,opt,name=sequence_number,json=sequenceNumber,proto3" json:"sequence_number,omitempty"`
	Bech32Address  string `protobuf:"bytes,3,opt,name=bech32_address,json=bech32Address,proto3" json:"bech32_address,omitempty"`
	// contains filtered or unexported fields
}

func (*AccountNumbersResponse) Descriptor deprecated

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

Deprecated: Use AccountNumbersResponse.ProtoReflect.Descriptor instead.

func (*AccountNumbersResponse) GetAccountNumber

func (x *AccountNumbersResponse) GetAccountNumber() int64

func (*AccountNumbersResponse) GetBech32Address

func (x *AccountNumbersResponse) GetBech32Address() string

func (*AccountNumbersResponse) GetSequenceNumber

func (x *AccountNumbersResponse) GetSequenceNumber() int64

func (*AccountNumbersResponse) ProtoMessage

func (*AccountNumbersResponse) ProtoMessage()

func (*AccountNumbersResponse) ProtoReflect

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

func (*AccountNumbersResponse) Reset

func (x *AccountNumbersResponse) Reset()

func (*AccountNumbersResponse) String

func (x *AccountNumbersResponse) String() string

type BlockRequest

type BlockRequest struct {

	// Chain to get data from
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	// gRPC port for selected chain, defaults to 9090
	Port int32 `protobuf:"zigzag32,2,opt,name=port,proto3" json:"port,omitempty"`
	// Height of the block to query
	Height int64 `protobuf:"zigzag64,3,opt,name=height,proto3" json:"height,omitempty"`
	// contains filtered or unexported fields
}

func (*BlockRequest) Descriptor deprecated

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

Deprecated: Use BlockRequest.ProtoReflect.Descriptor instead.

func (*BlockRequest) GetChainName

func (x *BlockRequest) GetChainName() string

func (*BlockRequest) GetHeight

func (x *BlockRequest) GetHeight() int64

func (*BlockRequest) GetPort

func (x *BlockRequest) GetPort() int32

func (*BlockRequest) ProtoMessage

func (*BlockRequest) ProtoMessage()

func (*BlockRequest) ProtoReflect

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

func (*BlockRequest) Reset

func (x *BlockRequest) Reset()

func (*BlockRequest) String

func (x *BlockRequest) String() string

type BlockResponse

type BlockResponse struct {
	Height int64  `protobuf:"zigzag64,1,opt,name=height,proto3" json:"height,omitempty"`
	Block  []byte `protobuf:"bytes,2,opt,name=block,proto3" json:"block,omitempty"`
	// contains filtered or unexported fields
}

func (*BlockResponse) Descriptor deprecated

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

Deprecated: Use BlockResponse.ProtoReflect.Descriptor instead.

func (*BlockResponse) GetBlock

func (x *BlockResponse) GetBlock() []byte

func (*BlockResponse) GetHeight

func (x *BlockResponse) GetHeight() int64

func (*BlockResponse) ProtoMessage

func (*BlockResponse) ProtoMessage()

func (*BlockResponse) ProtoReflect

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

func (*BlockResponse) Reset

func (x *BlockResponse) Reset()

func (*BlockResponse) String

func (x *BlockResponse) String() string

type BroadcastTxRequest

type BroadcastTxRequest struct {

	// Chain to get data from
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	// gRPC port for selected chain, defaults to 9090
	Port int32 `protobuf:"zigzag32,2,opt,name=port,proto3" json:"port,omitempty"`
	// Transaction bytes
	TxBytes []byte `protobuf:"bytes,3,opt,name=tx_bytes,json=txBytes,proto3" json:"tx_bytes,omitempty"`
	// contains filtered or unexported fields
}

func (*BroadcastTxRequest) Descriptor deprecated

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

Deprecated: Use BroadcastTxRequest.ProtoReflect.Descriptor instead.

func (*BroadcastTxRequest) GetChainName

func (x *BroadcastTxRequest) GetChainName() string

func (*BroadcastTxRequest) GetPort

func (x *BroadcastTxRequest) GetPort() int32

func (*BroadcastTxRequest) GetTxBytes

func (x *BroadcastTxRequest) GetTxBytes() []byte

func (*BroadcastTxRequest) ProtoMessage

func (*BroadcastTxRequest) ProtoMessage()

func (*BroadcastTxRequest) ProtoReflect

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

func (*BroadcastTxRequest) Reset

func (x *BroadcastTxRequest) Reset()

func (*BroadcastTxRequest) String

func (x *BroadcastTxRequest) String() string

type BroadcastTxResponse

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

func (*BroadcastTxResponse) Descriptor deprecated

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

Deprecated: Use BroadcastTxResponse.ProtoReflect.Descriptor instead.

func (*BroadcastTxResponse) GetHash

func (x *BroadcastTxResponse) GetHash() string

func (*BroadcastTxResponse) ProtoMessage

func (*BroadcastTxResponse) ProtoMessage()

func (*BroadcastTxResponse) ProtoReflect

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

func (*BroadcastTxResponse) Reset

func (x *BroadcastTxResponse) Reset()

func (*BroadcastTxResponse) String

func (x *BroadcastTxResponse) String() string

type BudgetParamsRequest

type BudgetParamsRequest struct {

	// Chain to get data from
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	// gRPC port for selected chain, defaults to 9090
	Port int32 `protobuf:"zigzag32,2,opt,name=port,proto3" json:"port,omitempty"`
	// contains filtered or unexported fields
}

func (*BudgetParamsRequest) Descriptor deprecated

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

Deprecated: Use BudgetParamsRequest.ProtoReflect.Descriptor instead.

func (*BudgetParamsRequest) GetChainName

func (x *BudgetParamsRequest) GetChainName() string

func (*BudgetParamsRequest) GetPort

func (x *BudgetParamsRequest) GetPort() int32

func (*BudgetParamsRequest) ProtoMessage

func (*BudgetParamsRequest) ProtoMessage()

func (*BudgetParamsRequest) ProtoReflect

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

func (*BudgetParamsRequest) Reset

func (x *BudgetParamsRequest) Reset()

func (*BudgetParamsRequest) String

func (x *BudgetParamsRequest) String() string

type BudgetParamsResponse

type BudgetParamsResponse struct {
	BudgetParams []byte `protobuf:"bytes,1,opt,name=budget_params,json=budgetParams,proto3" json:"budget_params,omitempty"`
	// contains filtered or unexported fields
}

func (*BudgetParamsResponse) Descriptor deprecated

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

Deprecated: Use BudgetParamsResponse.ProtoReflect.Descriptor instead.

func (*BudgetParamsResponse) GetBudgetParams

func (x *BudgetParamsResponse) GetBudgetParams() []byte

func (*BudgetParamsResponse) ProtoMessage

func (*BudgetParamsResponse) ProtoMessage()

func (*BudgetParamsResponse) ProtoReflect

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

func (*BudgetParamsResponse) Reset

func (x *BudgetParamsResponse) Reset()

func (*BudgetParamsResponse) String

func (x *BudgetParamsResponse) String() string

type Coin

type Coin struct {
	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
}

SDK service representation of a Cosmos SDK types.Coin

func (*Coin) Descriptor deprecated

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

Deprecated: Use Coin.ProtoReflect.Descriptor instead.

func (*Coin) GetAmount

func (x *Coin) GetAmount() string

func (*Coin) GetDenom

func (x *Coin) GetDenom() string

func (*Coin) ProtoMessage

func (*Coin) ProtoMessage()

func (*Coin) ProtoReflect

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

func (*Coin) Reset

func (x *Coin) Reset()

func (*Coin) String

func (x *Coin) String() string

type CrescentPoolsRequest

type CrescentPoolsRequest struct {

	// Chain to get data from
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	// gRPC port for selected chain, defaults to 9090
	Port int32 `protobuf:"zigzag32,2,opt,name=port,proto3" json:"port,omitempty"`
	// contains filtered or unexported fields
}

func (*CrescentPoolsRequest) Descriptor deprecated

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

Deprecated: Use CrescentPoolsRequest.ProtoReflect.Descriptor instead.

func (*CrescentPoolsRequest) GetChainName

func (x *CrescentPoolsRequest) GetChainName() string

func (*CrescentPoolsRequest) GetPort

func (x *CrescentPoolsRequest) GetPort() int32

func (*CrescentPoolsRequest) ProtoMessage

func (*CrescentPoolsRequest) ProtoMessage()

func (*CrescentPoolsRequest) ProtoReflect

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

func (*CrescentPoolsRequest) Reset

func (x *CrescentPoolsRequest) Reset()

func (*CrescentPoolsRequest) String

func (x *CrescentPoolsRequest) String() string

type CrescentPoolsResponse

type CrescentPoolsResponse struct {
	CrescentPools []byte `protobuf:"bytes,1,opt,name=crescent_pools,json=crescentPools,proto3" json:"crescent_pools,omitempty"`
	// contains filtered or unexported fields
}

func (*CrescentPoolsResponse) Descriptor deprecated

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

Deprecated: Use CrescentPoolsResponse.ProtoReflect.Descriptor instead.

func (*CrescentPoolsResponse) GetCrescentPools

func (x *CrescentPoolsResponse) GetCrescentPools() []byte

func (*CrescentPoolsResponse) ProtoMessage

func (*CrescentPoolsResponse) ProtoMessage()

func (*CrescentPoolsResponse) ProtoReflect

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

func (*CrescentPoolsResponse) Reset

func (x *CrescentPoolsResponse) Reset()

func (*CrescentPoolsResponse) String

func (x *CrescentPoolsResponse) String() string

type DelegationDelegatorReward

type DelegationDelegatorReward struct {
	ValidatorAddress string  `protobuf:"bytes,1,opt,name=validator_address,json=validatorAddress,proto3" json:"validator_address,omitempty"`
	Rewards          []*Coin `protobuf:"bytes,2,rep,name=rewards,proto3" json:"rewards,omitempty"`
	// contains filtered or unexported fields
}

Delegation reward as defined in the Cosmos SDK

func (*DelegationDelegatorReward) Descriptor deprecated

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

Deprecated: Use DelegationDelegatorReward.ProtoReflect.Descriptor instead.

func (*DelegationDelegatorReward) GetRewards

func (x *DelegationDelegatorReward) GetRewards() []*Coin

func (*DelegationDelegatorReward) GetValidatorAddress

func (x *DelegationDelegatorReward) GetValidatorAddress() string

func (*DelegationDelegatorReward) ProtoMessage

func (*DelegationDelegatorReward) ProtoMessage()

func (*DelegationDelegatorReward) ProtoReflect

func (*DelegationDelegatorReward) Reset

func (x *DelegationDelegatorReward) Reset()

func (*DelegationDelegatorReward) String

func (x *DelegationDelegatorReward) String() string

type DelegatorRewardsRequest

type DelegatorRewardsRequest struct {

	// Chain to get data from
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	// gRPC port for selected chain, defaults to 9090
	Port int32 `protobuf:"zigzag32,2,opt,name=port,proto3" json:"port,omitempty"`
	// bech32-encoded prefix of the account
	Bech32Prefix string `protobuf:"bytes,3,opt,name=bech32_prefix,json=bech32Prefix,proto3" json:"bech32_prefix,omitempty"`
	// Hex-encoded address, without bech32 hrp
	AddresHex string `protobuf:"bytes,4,opt,name=addres_hex,json=addresHex,proto3" json:"addres_hex,omitempty"`
	// contains filtered or unexported fields
}

func (*DelegatorRewardsRequest) Descriptor deprecated

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

Deprecated: Use DelegatorRewardsRequest.ProtoReflect.Descriptor instead.

func (*DelegatorRewardsRequest) GetAddresHex

func (x *DelegatorRewardsRequest) GetAddresHex() string

func (*DelegatorRewardsRequest) GetBech32Prefix

func (x *DelegatorRewardsRequest) GetBech32Prefix() string

func (*DelegatorRewardsRequest) GetChainName

func (x *DelegatorRewardsRequest) GetChainName() string

func (*DelegatorRewardsRequest) GetPort

func (x *DelegatorRewardsRequest) GetPort() int32

func (*DelegatorRewardsRequest) ProtoMessage

func (*DelegatorRewardsRequest) ProtoMessage()

func (*DelegatorRewardsRequest) ProtoReflect

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

func (*DelegatorRewardsRequest) Reset

func (x *DelegatorRewardsRequest) Reset()

func (*DelegatorRewardsRequest) String

func (x *DelegatorRewardsRequest) String() string

type DelegatorRewardsResponse

type DelegatorRewardsResponse struct {
	Rewards []*DelegationDelegatorReward `protobuf:"bytes,1,rep,name=rewards,proto3" json:"rewards,omitempty"`
	Total   []*Coin                      `protobuf:"bytes,2,rep,name=total,proto3" json:"total,omitempty"`
	// contains filtered or unexported fields
}

func (*DelegatorRewardsResponse) Descriptor deprecated

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

Deprecated: Use DelegatorRewardsResponse.ProtoReflect.Descriptor instead.

func (*DelegatorRewardsResponse) GetRewards

func (*DelegatorRewardsResponse) GetTotal

func (x *DelegatorRewardsResponse) GetTotal() []*Coin

func (*DelegatorRewardsResponse) ProtoMessage

func (*DelegatorRewardsResponse) ProtoMessage()

func (*DelegatorRewardsResponse) ProtoReflect

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

func (*DelegatorRewardsResponse) Reset

func (x *DelegatorRewardsResponse) Reset()

func (*DelegatorRewardsResponse) String

func (x *DelegatorRewardsResponse) String() string

type DistributionParamsRequest

type DistributionParamsRequest struct {

	// Chain to get data from
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	// gRPC port for selected chain, defaults to 9090
	Port int32 `protobuf:"zigzag32,2,opt,name=port,proto3" json:"port,omitempty"`
	// contains filtered or unexported fields
}

func (*DistributionParamsRequest) Descriptor deprecated

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

Deprecated: Use DistributionParamsRequest.ProtoReflect.Descriptor instead.

func (*DistributionParamsRequest) GetChainName

func (x *DistributionParamsRequest) GetChainName() string

func (*DistributionParamsRequest) GetPort

func (x *DistributionParamsRequest) GetPort() int32

func (*DistributionParamsRequest) ProtoMessage

func (*DistributionParamsRequest) ProtoMessage()

func (*DistributionParamsRequest) ProtoReflect

func (*DistributionParamsRequest) Reset

func (x *DistributionParamsRequest) Reset()

func (*DistributionParamsRequest) String

func (x *DistributionParamsRequest) String() string

type DistributionParamsResponse

type DistributionParamsResponse struct {
	DistributionParams []byte `protobuf:"bytes,1,opt,name=distribution_params,json=distributionParams,proto3" json:"distribution_params,omitempty"`
	// contains filtered or unexported fields
}

func (*DistributionParamsResponse) Descriptor deprecated

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

Deprecated: Use DistributionParamsResponse.ProtoReflect.Descriptor instead.

func (*DistributionParamsResponse) GetDistributionParams

func (x *DistributionParamsResponse) GetDistributionParams() []byte

func (*DistributionParamsResponse) ProtoMessage

func (*DistributionParamsResponse) ProtoMessage()

func (*DistributionParamsResponse) ProtoReflect

func (*DistributionParamsResponse) Reset

func (x *DistributionParamsResponse) Reset()

func (*DistributionParamsResponse) String

func (x *DistributionParamsResponse) String() string

type EmoneyAsset

type EmoneyAsset struct {
	Denom     string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	Inflation string `protobuf:"bytes,2,opt,name=inflation,proto3" json:"inflation,omitempty"`
	Accum     string `protobuf:"bytes,3,opt,name=accum,proto3" json:"accum,omitempty"`
	// contains filtered or unexported fields
}

e-money specific inflation parameters (asset)

func (*EmoneyAsset) Descriptor deprecated

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

Deprecated: Use EmoneyAsset.ProtoReflect.Descriptor instead.

func (*EmoneyAsset) GetAccum

func (x *EmoneyAsset) GetAccum() string

func (*EmoneyAsset) GetDenom

func (x *EmoneyAsset) GetDenom() string

func (*EmoneyAsset) GetInflation

func (x *EmoneyAsset) GetInflation() string

func (*EmoneyAsset) ProtoMessage

func (*EmoneyAsset) ProtoMessage()

func (*EmoneyAsset) ProtoReflect

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

func (*EmoneyAsset) Reset

func (x *EmoneyAsset) Reset()

func (*EmoneyAsset) String

func (x *EmoneyAsset) String() string

type EmoneyInflationRequest

type EmoneyInflationRequest struct {

	// Chain to get data from
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	// gRPC port for selected chain, defaults to 9090
	Port int32 `protobuf:"zigzag32,2,opt,name=port,proto3" json:"port,omitempty"`
	// contains filtered or unexported fields
}

func (*EmoneyInflationRequest) Descriptor deprecated

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

Deprecated: Use EmoneyInflationRequest.ProtoReflect.Descriptor instead.

func (*EmoneyInflationRequest) GetChainName

func (x *EmoneyInflationRequest) GetChainName() string

func (*EmoneyInflationRequest) GetPort

func (x *EmoneyInflationRequest) GetPort() int32

func (*EmoneyInflationRequest) ProtoMessage

func (*EmoneyInflationRequest) ProtoMessage()

func (*EmoneyInflationRequest) ProtoReflect

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

func (*EmoneyInflationRequest) Reset

func (x *EmoneyInflationRequest) Reset()

func (*EmoneyInflationRequest) String

func (x *EmoneyInflationRequest) String() string

type EmoneyInflationResponse

type EmoneyInflationResponse struct {
	State *EmoneyState `protobuf:"bytes,1,opt,name=state,proto3" json:"state,omitempty"`
	// contains filtered or unexported fields
}

func (*EmoneyInflationResponse) Descriptor deprecated

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

Deprecated: Use EmoneyInflationResponse.ProtoReflect.Descriptor instead.

func (*EmoneyInflationResponse) GetState

func (x *EmoneyInflationResponse) GetState() *EmoneyState

func (*EmoneyInflationResponse) ProtoMessage

func (*EmoneyInflationResponse) ProtoMessage()

func (*EmoneyInflationResponse) ProtoReflect

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

func (*EmoneyInflationResponse) Reset

func (x *EmoneyInflationResponse) Reset()

func (*EmoneyInflationResponse) String

func (x *EmoneyInflationResponse) String() string

type EmoneyState

type EmoneyState struct {
	LastApplied       string         `protobuf:"bytes,1,opt,name=last_applied,json=lastApplied,proto3" json:"last_applied,omitempty"`
	LastAppliedHeight string         `protobuf:"bytes,2,opt,name=last_applied_height,json=lastAppliedHeight,proto3" json:"last_applied_height,omitempty"`
	Assets            []*EmoneyAsset `protobuf:"bytes,3,rep,name=assets,proto3" json:"assets,omitempty"`
	// contains filtered or unexported fields
}

e-money specific inflation parameters (state)

func (*EmoneyState) Descriptor deprecated

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

Deprecated: Use EmoneyState.ProtoReflect.Descriptor instead.

func (*EmoneyState) GetAssets

func (x *EmoneyState) GetAssets() []*EmoneyAsset

func (*EmoneyState) GetLastApplied

func (x *EmoneyState) GetLastApplied() string

func (*EmoneyState) GetLastAppliedHeight

func (x *EmoneyState) GetLastAppliedHeight() string

func (*EmoneyState) ProtoMessage

func (*EmoneyState) ProtoMessage()

func (*EmoneyState) ProtoReflect

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

func (*EmoneyState) Reset

func (x *EmoneyState) Reset()

func (*EmoneyState) String

func (x *EmoneyState) String() string

type EstimateFeesRequest

type EstimateFeesRequest struct {

	// Chain to get data from
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	// gRPC port for selected chain, defaults to 9090
	Port int32 `protobuf:"zigzag32,2,opt,name=port,proto3" json:"port,omitempty"`
	// Transaction bytes
	TxBytes []byte `protobuf:"bytes,3,opt,name=tx_bytes,json=txBytes,proto3" json:"tx_bytes,omitempty"`
	// contains filtered or unexported fields
}

func (*EstimateFeesRequest) Descriptor deprecated

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

Deprecated: Use EstimateFeesRequest.ProtoReflect.Descriptor instead.

func (*EstimateFeesRequest) GetChainName

func (x *EstimateFeesRequest) GetChainName() string

func (*EstimateFeesRequest) GetPort

func (x *EstimateFeesRequest) GetPort() int32

func (*EstimateFeesRequest) GetTxBytes

func (x *EstimateFeesRequest) GetTxBytes() []byte

func (*EstimateFeesRequest) ProtoMessage

func (*EstimateFeesRequest) ProtoMessage()

func (*EstimateFeesRequest) ProtoReflect

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

func (*EstimateFeesRequest) Reset

func (x *EstimateFeesRequest) Reset()

func (*EstimateFeesRequest) String

func (x *EstimateFeesRequest) String() string

type EstimateFeesResponse

type EstimateFeesResponse struct {
	GasWanted uint64  `protobuf:"varint,1,opt,name=gas_wanted,json=gasWanted,proto3" json:"gas_wanted,omitempty"`
	GasUsed   uint64  `protobuf:"varint,2,opt,name=gas_used,json=gasUsed,proto3" json:"gas_used,omitempty"`
	Fees      []*Coin `protobuf:"bytes,3,rep,name=fees,proto3" json:"fees,omitempty"`
	// contains filtered or unexported fields
}

func (*EstimateFeesResponse) Descriptor deprecated

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

Deprecated: Use EstimateFeesResponse.ProtoReflect.Descriptor instead.

func (*EstimateFeesResponse) GetFees

func (x *EstimateFeesResponse) GetFees() []*Coin

func (*EstimateFeesResponse) GetGasUsed

func (x *EstimateFeesResponse) GetGasUsed() uint64

func (*EstimateFeesResponse) GetGasWanted

func (x *EstimateFeesResponse) GetGasWanted() uint64

func (*EstimateFeesResponse) ProtoMessage

func (*EstimateFeesResponse) ProtoMessage()

func (*EstimateFeesResponse) ProtoReflect

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

func (*EstimateFeesResponse) Reset

func (x *EstimateFeesResponse) Reset()

func (*EstimateFeesResponse) String

func (x *EstimateFeesResponse) String() string

type IBCHeight

type IBCHeight struct {
	RevisionNumber uint64 `protobuf:"varint,1,opt,name=revision_number,json=revisionNumber,proto3" json:"revision_number,omitempty"`
	RevisionHeight uint64 `protobuf:"varint,2,opt,name=revision_height,json=revisionHeight,proto3" json:"revision_height,omitempty"`
	// contains filtered or unexported fields
}

The plain type associated with ibc-go types.Height struct

func (*IBCHeight) Descriptor deprecated

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

Deprecated: Use IBCHeight.ProtoReflect.Descriptor instead.

func (*IBCHeight) GetRevisionHeight

func (x *IBCHeight) GetRevisionHeight() uint64

func (*IBCHeight) GetRevisionNumber

func (x *IBCHeight) GetRevisionNumber() uint64

func (*IBCHeight) ProtoMessage

func (*IBCHeight) ProtoMessage()

func (*IBCHeight) ProtoReflect

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

func (*IBCHeight) Reset

func (x *IBCHeight) Reset()

func (*IBCHeight) String

func (x *IBCHeight) String() string

type IBCTransferMetadata

type IBCTransferMetadata struct {
	SourcePort       string     `protobuf:"bytes,1,opt,name=source_port,json=sourcePort,proto3" json:"source_port,omitempty"`
	SourceChannel    string     `protobuf:"bytes,2,opt,name=source_channel,json=sourceChannel,proto3" json:"source_channel,omitempty"`
	Token            *Coin      `protobuf:"bytes,3,opt,name=token,proto3" json:"token,omitempty"`
	Sender           string     `protobuf:"bytes,4,opt,name=sender,proto3" json:"sender,omitempty"`
	Receiver         string     `protobuf:"bytes,5,opt,name=receiver,proto3" json:"receiver,omitempty"`
	TimeoutHeight    *IBCHeight `protobuf:"bytes,6,opt,name=timeout_height,json=timeoutHeight,proto3" json:"timeout_height,omitempty"`
	TiemoutTimestamp uint64     `protobuf:"varint,7,opt,name=tiemout_timestamp,json=tiemoutTimestamp,proto3" json:"tiemout_timestamp,omitempty"`
	// contains filtered or unexported fields
}

Metadata related to an IBC Transfer

func (*IBCTransferMetadata) Descriptor deprecated

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

Deprecated: Use IBCTransferMetadata.ProtoReflect.Descriptor instead.

func (*IBCTransferMetadata) GetReceiver

func (x *IBCTransferMetadata) GetReceiver() string

func (*IBCTransferMetadata) GetSender

func (x *IBCTransferMetadata) GetSender() string

func (*IBCTransferMetadata) GetSourceChannel

func (x *IBCTransferMetadata) GetSourceChannel() string

func (*IBCTransferMetadata) GetSourcePort

func (x *IBCTransferMetadata) GetSourcePort() string

func (*IBCTransferMetadata) GetTiemoutTimestamp

func (x *IBCTransferMetadata) GetTiemoutTimestamp() uint64

func (*IBCTransferMetadata) GetTimeoutHeight

func (x *IBCTransferMetadata) GetTimeoutHeight() *IBCHeight

func (*IBCTransferMetadata) GetToken

func (x *IBCTransferMetadata) GetToken() *Coin

func (*IBCTransferMetadata) ProtoMessage

func (*IBCTransferMetadata) ProtoMessage()

func (*IBCTransferMetadata) ProtoReflect

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

func (*IBCTransferMetadata) Reset

func (x *IBCTransferMetadata) Reset()

func (*IBCTransferMetadata) String

func (x *IBCTransferMetadata) String() string

type LiquidityParamsRequest

type LiquidityParamsRequest struct {

	// Chain to get data from
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	// gRPC port for selected chain, defaults to 9090
	Port int32 `protobuf:"zigzag32,2,opt,name=port,proto3" json:"port,omitempty"`
	// contains filtered or unexported fields
}

func (*LiquidityParamsRequest) Descriptor deprecated

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

Deprecated: Use LiquidityParamsRequest.ProtoReflect.Descriptor instead.

func (*LiquidityParamsRequest) GetChainName

func (x *LiquidityParamsRequest) GetChainName() string

func (*LiquidityParamsRequest) GetPort

func (x *LiquidityParamsRequest) GetPort() int32

func (*LiquidityParamsRequest) ProtoMessage

func (*LiquidityParamsRequest) ProtoMessage()

func (*LiquidityParamsRequest) ProtoReflect

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

func (*LiquidityParamsRequest) Reset

func (x *LiquidityParamsRequest) Reset()

func (*LiquidityParamsRequest) String

func (x *LiquidityParamsRequest) String() string

type LiquidityParamsResponse

type LiquidityParamsResponse struct {
	LiquidityParams []byte `protobuf:"bytes,1,opt,name=liquidity_params,json=liquidityParams,proto3" json:"liquidity_params,omitempty"`
	// contains filtered or unexported fields
}

func (*LiquidityParamsResponse) Descriptor deprecated

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

Deprecated: Use LiquidityParamsResponse.ProtoReflect.Descriptor instead.

func (*LiquidityParamsResponse) GetLiquidityParams

func (x *LiquidityParamsResponse) GetLiquidityParams() []byte

func (*LiquidityParamsResponse) ProtoMessage

func (*LiquidityParamsResponse) ProtoMessage()

func (*LiquidityParamsResponse) ProtoReflect

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

func (*LiquidityParamsResponse) Reset

func (x *LiquidityParamsResponse) Reset()

func (*LiquidityParamsResponse) String

func (x *LiquidityParamsResponse) String() string

type LiquidityPoolsRequest

type LiquidityPoolsRequest struct {

	// Chain to get data from
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	// gRPC port for selected chain, defaults to 9090
	Port int32 `protobuf:"zigzag32,2,opt,name=port,proto3" json:"port,omitempty"`
	// contains filtered or unexported fields
}

func (*LiquidityPoolsRequest) Descriptor deprecated

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

Deprecated: Use LiquidityPoolsRequest.ProtoReflect.Descriptor instead.

func (*LiquidityPoolsRequest) GetChainName

func (x *LiquidityPoolsRequest) GetChainName() string

func (*LiquidityPoolsRequest) GetPort

func (x *LiquidityPoolsRequest) GetPort() int32

func (*LiquidityPoolsRequest) ProtoMessage

func (*LiquidityPoolsRequest) ProtoMessage()

func (*LiquidityPoolsRequest) ProtoReflect

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

func (*LiquidityPoolsRequest) Reset

func (x *LiquidityPoolsRequest) Reset()

func (*LiquidityPoolsRequest) String

func (x *LiquidityPoolsRequest) String() string

type LiquidityPoolsResponse

type LiquidityPoolsResponse struct {
	LiquidityPools []byte `protobuf:"bytes,1,opt,name=liquidity_pools,json=liquidityPools,proto3" json:"liquidity_pools,omitempty"`
	// contains filtered or unexported fields
}

func (*LiquidityPoolsResponse) Descriptor deprecated

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

Deprecated: Use LiquidityPoolsResponse.ProtoReflect.Descriptor instead.

func (*LiquidityPoolsResponse) GetLiquidityPools

func (x *LiquidityPoolsResponse) GetLiquidityPools() []byte

func (*LiquidityPoolsResponse) ProtoMessage

func (*LiquidityPoolsResponse) ProtoMessage()

func (*LiquidityPoolsResponse) ProtoReflect

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

func (*LiquidityPoolsResponse) Reset

func (x *LiquidityPoolsResponse) Reset()

func (*LiquidityPoolsResponse) String

func (x *LiquidityPoolsResponse) String() string

type MintAnnualProvisionRequest

type MintAnnualProvisionRequest struct {

	// Chain to get data from
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	// gRPC port for selected chain, defaults to 9090
	Port int32 `protobuf:"zigzag32,2,opt,name=port,proto3" json:"port,omitempty"`
	// contains filtered or unexported fields
}

func (*MintAnnualProvisionRequest) Descriptor deprecated

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

Deprecated: Use MintAnnualProvisionRequest.ProtoReflect.Descriptor instead.

func (*MintAnnualProvisionRequest) GetChainName

func (x *MintAnnualProvisionRequest) GetChainName() string

func (*MintAnnualProvisionRequest) GetPort

func (x *MintAnnualProvisionRequest) GetPort() int32

func (*MintAnnualProvisionRequest) ProtoMessage

func (*MintAnnualProvisionRequest) ProtoMessage()

func (*MintAnnualProvisionRequest) ProtoReflect

func (*MintAnnualProvisionRequest) Reset

func (x *MintAnnualProvisionRequest) Reset()

func (*MintAnnualProvisionRequest) String

func (x *MintAnnualProvisionRequest) String() string

type MintAnnualProvisionResponse

type MintAnnualProvisionResponse struct {
	MintAnnualProvision []byte `protobuf:"bytes,1,opt,name=mint_annual_provision,json=mintAnnualProvision,proto3" json:"mint_annual_provision,omitempty"`
	// contains filtered or unexported fields
}

func (*MintAnnualProvisionResponse) Descriptor deprecated

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

Deprecated: Use MintAnnualProvisionResponse.ProtoReflect.Descriptor instead.

func (*MintAnnualProvisionResponse) GetMintAnnualProvision

func (x *MintAnnualProvisionResponse) GetMintAnnualProvision() []byte

func (*MintAnnualProvisionResponse) ProtoMessage

func (*MintAnnualProvisionResponse) ProtoMessage()

func (*MintAnnualProvisionResponse) ProtoReflect

func (*MintAnnualProvisionResponse) Reset

func (x *MintAnnualProvisionResponse) Reset()

func (*MintAnnualProvisionResponse) String

func (x *MintAnnualProvisionResponse) String() string

type MintEpochProvisionsRequest

type MintEpochProvisionsRequest struct {

	// Chain to get data from
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	// gRPC port for selected chain, defaults to 9090
	Port int32 `protobuf:"zigzag32,2,opt,name=port,proto3" json:"port,omitempty"`
	// contains filtered or unexported fields
}

func (*MintEpochProvisionsRequest) Descriptor deprecated

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

Deprecated: Use MintEpochProvisionsRequest.ProtoReflect.Descriptor instead.

func (*MintEpochProvisionsRequest) GetChainName

func (x *MintEpochProvisionsRequest) GetChainName() string

func (*MintEpochProvisionsRequest) GetPort

func (x *MintEpochProvisionsRequest) GetPort() int32

func (*MintEpochProvisionsRequest) ProtoMessage

func (*MintEpochProvisionsRequest) ProtoMessage()

func (*MintEpochProvisionsRequest) ProtoReflect

func (*MintEpochProvisionsRequest) Reset

func (x *MintEpochProvisionsRequest) Reset()

func (*MintEpochProvisionsRequest) String

func (x *MintEpochProvisionsRequest) String() string

type MintEpochProvisionsResponse

type MintEpochProvisionsResponse struct {
	MintEpochProvisions []byte `protobuf:"bytes,1,opt,name=mint_epoch_provisions,json=mintEpochProvisions,proto3" json:"mint_epoch_provisions,omitempty"`
	// contains filtered or unexported fields
}

func (*MintEpochProvisionsResponse) Descriptor deprecated

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

Deprecated: Use MintEpochProvisionsResponse.ProtoReflect.Descriptor instead.

func (*MintEpochProvisionsResponse) GetMintEpochProvisions

func (x *MintEpochProvisionsResponse) GetMintEpochProvisions() []byte

func (*MintEpochProvisionsResponse) ProtoMessage

func (*MintEpochProvisionsResponse) ProtoMessage()

func (*MintEpochProvisionsResponse) ProtoReflect

func (*MintEpochProvisionsResponse) Reset

func (x *MintEpochProvisionsResponse) Reset()

func (*MintEpochProvisionsResponse) String

func (x *MintEpochProvisionsResponse) String() string

type MintInflationRequest

type MintInflationRequest struct {

	// Chain to get data from
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	// gRPC port for selected chain, defaults to 9090
	Port int32 `protobuf:"zigzag32,2,opt,name=port,proto3" json:"port,omitempty"`
	// contains filtered or unexported fields
}

func (*MintInflationRequest) Descriptor deprecated

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

Deprecated: Use MintInflationRequest.ProtoReflect.Descriptor instead.

func (*MintInflationRequest) GetChainName

func (x *MintInflationRequest) GetChainName() string

func (*MintInflationRequest) GetPort

func (x *MintInflationRequest) GetPort() int32

func (*MintInflationRequest) ProtoMessage

func (*MintInflationRequest) ProtoMessage()

func (*MintInflationRequest) ProtoReflect

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

func (*MintInflationRequest) Reset

func (x *MintInflationRequest) Reset()

func (*MintInflationRequest) String

func (x *MintInflationRequest) String() string

type MintInflationResponse

type MintInflationResponse struct {
	MintInflation []byte `protobuf:"bytes,1,opt,name=mint_inflation,json=mintInflation,proto3" json:"mint_inflation,omitempty"`
	// contains filtered or unexported fields
}

func (*MintInflationResponse) Descriptor deprecated

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

Deprecated: Use MintInflationResponse.ProtoReflect.Descriptor instead.

func (*MintInflationResponse) GetMintInflation

func (x *MintInflationResponse) GetMintInflation() []byte

func (*MintInflationResponse) ProtoMessage

func (*MintInflationResponse) ProtoMessage()

func (*MintInflationResponse) ProtoReflect

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

func (*MintInflationResponse) Reset

func (x *MintInflationResponse) Reset()

func (*MintInflationResponse) String

func (x *MintInflationResponse) String() string

type MintParamsRequest

type MintParamsRequest struct {

	// Chain to get data from
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	// gRPC port for selected chain, defaults to 9090
	Port int32 `protobuf:"zigzag32,2,opt,name=port,proto3" json:"port,omitempty"`
	// contains filtered or unexported fields
}

func (*MintParamsRequest) Descriptor deprecated

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

Deprecated: Use MintParamsRequest.ProtoReflect.Descriptor instead.

func (*MintParamsRequest) GetChainName

func (x *MintParamsRequest) GetChainName() string

func (*MintParamsRequest) GetPort

func (x *MintParamsRequest) GetPort() int32

func (*MintParamsRequest) ProtoMessage

func (*MintParamsRequest) ProtoMessage()

func (*MintParamsRequest) ProtoReflect

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

func (*MintParamsRequest) Reset

func (x *MintParamsRequest) Reset()

func (*MintParamsRequest) String

func (x *MintParamsRequest) String() string

type MintParamsResponse

type MintParamsResponse struct {
	MintParams []byte `protobuf:"bytes,1,opt,name=mint_params,json=mintParams,proto3" json:"mint_params,omitempty"`
	// contains filtered or unexported fields
}

func (*MintParamsResponse) Descriptor deprecated

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

Deprecated: Use MintParamsResponse.ProtoReflect.Descriptor instead.

func (*MintParamsResponse) GetMintParams

func (x *MintParamsResponse) GetMintParams() []byte

func (*MintParamsResponse) ProtoMessage

func (*MintParamsResponse) ProtoMessage()

func (*MintParamsResponse) ProtoReflect

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

func (*MintParamsResponse) Reset

func (x *MintParamsResponse) Reset()

func (*MintParamsResponse) String

func (x *MintParamsResponse) String() string

type MsgMetadata

type MsgMetadata struct {
	MsgType             string               `protobuf:"bytes,1,opt,name=msg_type,json=msgType,proto3" json:"msg_type,omitempty"`
	IbcTransferMetadata *IBCTransferMetadata `protobuf:"bytes,2,opt,name=ibc_transfer_metadata,json=ibcTransferMetadata,proto3" json:"ibc_transfer_metadata,omitempty"`
	// contains filtered or unexported fields
}

Metadata related to some message contained in a transaction

func (*MsgMetadata) Descriptor deprecated

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

Deprecated: Use MsgMetadata.ProtoReflect.Descriptor instead.

func (*MsgMetadata) GetIbcTransferMetadata

func (x *MsgMetadata) GetIbcTransferMetadata() *IBCTransferMetadata

func (*MsgMetadata) GetMsgType

func (x *MsgMetadata) GetMsgType() string

func (*MsgMetadata) ProtoMessage

func (*MsgMetadata) ProtoMessage()

func (*MsgMetadata) ProtoReflect

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

func (*MsgMetadata) Reset

func (x *MsgMetadata) Reset()

func (*MsgMetadata) String

func (x *MsgMetadata) String() string

type OsmoPoolsRequest

type OsmoPoolsRequest struct {

	// Chain to get data from
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	// gRPC port for selected chain, defaults to 9090
	Port int32 `protobuf:"zigzag32,2,opt,name=port,proto3" json:"port,omitempty"`
	// contains filtered or unexported fields
}

func (*OsmoPoolsRequest) Descriptor deprecated

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

Deprecated: Use OsmoPoolsRequest.ProtoReflect.Descriptor instead.

func (*OsmoPoolsRequest) GetChainName

func (x *OsmoPoolsRequest) GetChainName() string

func (*OsmoPoolsRequest) GetPort

func (x *OsmoPoolsRequest) GetPort() int32

func (*OsmoPoolsRequest) ProtoMessage

func (*OsmoPoolsRequest) ProtoMessage()

func (*OsmoPoolsRequest) ProtoReflect

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

func (*OsmoPoolsRequest) Reset

func (x *OsmoPoolsRequest) Reset()

func (*OsmoPoolsRequest) String

func (x *OsmoPoolsRequest) String() string

type OsmoPoolsResponse

type OsmoPoolsResponse struct {
	OsmoPools []byte `protobuf:"bytes,1,opt,name=osmo_pools,json=osmoPools,proto3" json:"osmo_pools,omitempty"`
	// contains filtered or unexported fields
}

func (*OsmoPoolsResponse) Descriptor deprecated

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

Deprecated: Use OsmoPoolsResponse.ProtoReflect.Descriptor instead.

func (*OsmoPoolsResponse) GetOsmoPools

func (x *OsmoPoolsResponse) GetOsmoPools() []byte

func (*OsmoPoolsResponse) ProtoMessage

func (*OsmoPoolsResponse) ProtoMessage()

func (*OsmoPoolsResponse) ProtoReflect

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

func (*OsmoPoolsResponse) Reset

func (x *OsmoPoolsResponse) Reset()

func (*OsmoPoolsResponse) String

func (x *OsmoPoolsResponse) String() string

type Pagination

type Pagination struct {
	NextKey string `protobuf:"bytes,1,opt,name=next_key,json=nextKey,proto3" json:"next_key,omitempty"`
	Total   string `protobuf:"bytes,2,opt,name=total,proto3" json:"total,omitempty"`
	// contains filtered or unexported fields
}

Pagination used in the Cosmos SDK

func (*Pagination) Descriptor deprecated

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

Deprecated: Use Pagination.ProtoReflect.Descriptor instead.

func (*Pagination) GetNextKey

func (x *Pagination) GetNextKey() string

func (*Pagination) GetTotal

func (x *Pagination) GetTotal() string

func (*Pagination) ProtoMessage

func (*Pagination) ProtoMessage()

func (*Pagination) ProtoReflect

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

func (*Pagination) Reset

func (x *Pagination) Reset()

func (*Pagination) String

func (x *Pagination) String() string

type QueryTxRequest

type QueryTxRequest struct {

	// Chain to get data from
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	// gRPC port for selected chain, defaults to 9090
	Port int32 `protobuf:"zigzag32,2,opt,name=port,proto3" json:"port,omitempty"`
	// Transaction hash to query
	Hash string `protobuf:"bytes,3,opt,name=hash,proto3" json:"hash,omitempty"`
	// contains filtered or unexported fields
}

func (*QueryTxRequest) Descriptor deprecated

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

Deprecated: Use QueryTxRequest.ProtoReflect.Descriptor instead.

func (*QueryTxRequest) GetChainName

func (x *QueryTxRequest) GetChainName() string

func (*QueryTxRequest) GetHash

func (x *QueryTxRequest) GetHash() string

func (*QueryTxRequest) GetPort

func (x *QueryTxRequest) GetPort() int32

func (*QueryTxRequest) ProtoMessage

func (*QueryTxRequest) ProtoMessage()

func (*QueryTxRequest) ProtoReflect

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

func (*QueryTxRequest) Reset

func (x *QueryTxRequest) Reset()

func (*QueryTxRequest) String

func (x *QueryTxRequest) String() string

type QueryTxResponse

type QueryTxResponse struct {
	Field []byte `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"`
	// contains filtered or unexported fields
}

func (*QueryTxResponse) Descriptor deprecated

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

Deprecated: Use QueryTxResponse.ProtoReflect.Descriptor instead.

func (*QueryTxResponse) GetField

func (x *QueryTxResponse) GetField() []byte

func (*QueryTxResponse) ProtoMessage

func (*QueryTxResponse) ProtoMessage()

func (*QueryTxResponse) ProtoReflect

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

func (*QueryTxResponse) Reset

func (x *QueryTxResponse) Reset()

func (*QueryTxResponse) String

func (x *QueryTxResponse) String() string

type SdkUtilitiesClient

type SdkUtilitiesClient interface {
	// AccountNumbers implements accountNumbers.
	AccountNumbers(ctx context.Context, in *AccountNumbersRequest, opts ...grpc.CallOption) (*AccountNumbersResponse, error)
	// Supply implements supply.
	Supply(ctx context.Context, in *SupplyRequest, opts ...grpc.CallOption) (*SupplyResponse, error)
	// SupplyDenom implements supplyDenom.
	SupplyDenom(ctx context.Context, in *SupplyDenomRequest, opts ...grpc.CallOption) (*SupplyDenomResponse, error)
	// QueryTx implements queryTx.
	QueryTx(ctx context.Context, in *QueryTxRequest, opts ...grpc.CallOption) (*QueryTxResponse, error)
	// BroadcastTx implements broadcastTx.
	BroadcastTx(ctx context.Context, in *BroadcastTxRequest, opts ...grpc.CallOption) (*BroadcastTxResponse, error)
	// TxMetadata implements txMetadata.
	TxMetadata(ctx context.Context, in *TxMetadataRequest, opts ...grpc.CallOption) (*TxMetadataResponse, error)
	// Block implements block.
	Block(ctx context.Context, in *BlockRequest, opts ...grpc.CallOption) (*BlockResponse, error)
	// LiquidityParams implements liquidityParams.
	LiquidityParams(ctx context.Context, in *LiquidityParamsRequest, opts ...grpc.CallOption) (*LiquidityParamsResponse, error)
	// LiquidityPools implements liquidityPools.
	LiquidityPools(ctx context.Context, in *LiquidityPoolsRequest, opts ...grpc.CallOption) (*LiquidityPoolsResponse, error)
	// MintInflation implements mintInflation.
	MintInflation(ctx context.Context, in *MintInflationRequest, opts ...grpc.CallOption) (*MintInflationResponse, error)
	// MintParams implements mintParams.
	MintParams(ctx context.Context, in *MintParamsRequest, opts ...grpc.CallOption) (*MintParamsResponse, error)
	// MintAnnualProvision implements mintAnnualProvision.
	MintAnnualProvision(ctx context.Context, in *MintAnnualProvisionRequest, opts ...grpc.CallOption) (*MintAnnualProvisionResponse, error)
	// MintEpochProvisions implements mintEpochProvisions.
	MintEpochProvisions(ctx context.Context, in *MintEpochProvisionsRequest, opts ...grpc.CallOption) (*MintEpochProvisionsResponse, error)
	// DelegatorRewards implements delegatorRewards.
	DelegatorRewards(ctx context.Context, in *DelegatorRewardsRequest, opts ...grpc.CallOption) (*DelegatorRewardsResponse, error)
	// EstimateFees implements estimateFees.
	EstimateFees(ctx context.Context, in *EstimateFeesRequest, opts ...grpc.CallOption) (*EstimateFeesResponse, error)
	// StakingParams implements stakingParams.
	StakingParams(ctx context.Context, in *StakingParamsRequest, opts ...grpc.CallOption) (*StakingParamsResponse, error)
	// StakingPool implements stakingPool.
	StakingPool(ctx context.Context, in *StakingPoolRequest, opts ...grpc.CallOption) (*StakingPoolResponse, error)
	// EmoneyInflation implements emoneyInflation.
	EmoneyInflation(ctx context.Context, in *EmoneyInflationRequest, opts ...grpc.CallOption) (*EmoneyInflationResponse, error)
	// BudgetParams implements budgetParams.
	BudgetParams(ctx context.Context, in *BudgetParamsRequest, opts ...grpc.CallOption) (*BudgetParamsResponse, error)
	// DistributionParams implements distributionParams.
	DistributionParams(ctx context.Context, in *DistributionParamsRequest, opts ...grpc.CallOption) (*DistributionParamsResponse, error)
	// OsmoPools implements osmoPools.
	OsmoPools(ctx context.Context, in *OsmoPoolsRequest, opts ...grpc.CallOption) (*OsmoPoolsResponse, error)
	// CrescentPools implements crescentPools.
	CrescentPools(ctx context.Context, in *CrescentPoolsRequest, opts ...grpc.CallOption) (*CrescentPoolsResponse, error)
}

SdkUtilitiesClient is the client API for SdkUtilities 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 SdkUtilitiesServer

type SdkUtilitiesServer interface {
	// AccountNumbers implements accountNumbers.
	AccountNumbers(context.Context, *AccountNumbersRequest) (*AccountNumbersResponse, error)
	// Supply implements supply.
	Supply(context.Context, *SupplyRequest) (*SupplyResponse, error)
	// SupplyDenom implements supplyDenom.
	SupplyDenom(context.Context, *SupplyDenomRequest) (*SupplyDenomResponse, error)
	// QueryTx implements queryTx.
	QueryTx(context.Context, *QueryTxRequest) (*QueryTxResponse, error)
	// BroadcastTx implements broadcastTx.
	BroadcastTx(context.Context, *BroadcastTxRequest) (*BroadcastTxResponse, error)
	// TxMetadata implements txMetadata.
	TxMetadata(context.Context, *TxMetadataRequest) (*TxMetadataResponse, error)
	// Block implements block.
	Block(context.Context, *BlockRequest) (*BlockResponse, error)
	// LiquidityParams implements liquidityParams.
	LiquidityParams(context.Context, *LiquidityParamsRequest) (*LiquidityParamsResponse, error)
	// LiquidityPools implements liquidityPools.
	LiquidityPools(context.Context, *LiquidityPoolsRequest) (*LiquidityPoolsResponse, error)
	// MintInflation implements mintInflation.
	MintInflation(context.Context, *MintInflationRequest) (*MintInflationResponse, error)
	// MintParams implements mintParams.
	MintParams(context.Context, *MintParamsRequest) (*MintParamsResponse, error)
	// MintAnnualProvision implements mintAnnualProvision.
	MintAnnualProvision(context.Context, *MintAnnualProvisionRequest) (*MintAnnualProvisionResponse, error)
	// MintEpochProvisions implements mintEpochProvisions.
	MintEpochProvisions(context.Context, *MintEpochProvisionsRequest) (*MintEpochProvisionsResponse, error)
	// DelegatorRewards implements delegatorRewards.
	DelegatorRewards(context.Context, *DelegatorRewardsRequest) (*DelegatorRewardsResponse, error)
	// EstimateFees implements estimateFees.
	EstimateFees(context.Context, *EstimateFeesRequest) (*EstimateFeesResponse, error)
	// StakingParams implements stakingParams.
	StakingParams(context.Context, *StakingParamsRequest) (*StakingParamsResponse, error)
	// StakingPool implements stakingPool.
	StakingPool(context.Context, *StakingPoolRequest) (*StakingPoolResponse, error)
	// EmoneyInflation implements emoneyInflation.
	EmoneyInflation(context.Context, *EmoneyInflationRequest) (*EmoneyInflationResponse, error)
	// BudgetParams implements budgetParams.
	BudgetParams(context.Context, *BudgetParamsRequest) (*BudgetParamsResponse, error)
	// DistributionParams implements distributionParams.
	DistributionParams(context.Context, *DistributionParamsRequest) (*DistributionParamsResponse, error)
	// OsmoPools implements osmoPools.
	OsmoPools(context.Context, *OsmoPoolsRequest) (*OsmoPoolsResponse, error)
	// CrescentPools implements crescentPools.
	CrescentPools(context.Context, *CrescentPoolsRequest) (*CrescentPoolsResponse, error)
	// contains filtered or unexported methods
}

SdkUtilitiesServer is the server API for SdkUtilities service. All implementations must embed UnimplementedSdkUtilitiesServer for forward compatibility

type StakingParamsRequest

type StakingParamsRequest struct {

	// Chain to get data from
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	// gRPC port for selected chain, defaults to 9090
	Port int32 `protobuf:"zigzag32,2,opt,name=port,proto3" json:"port,omitempty"`
	// contains filtered or unexported fields
}

func (*StakingParamsRequest) Descriptor deprecated

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

Deprecated: Use StakingParamsRequest.ProtoReflect.Descriptor instead.

func (*StakingParamsRequest) GetChainName

func (x *StakingParamsRequest) GetChainName() string

func (*StakingParamsRequest) GetPort

func (x *StakingParamsRequest) GetPort() int32

func (*StakingParamsRequest) ProtoMessage

func (*StakingParamsRequest) ProtoMessage()

func (*StakingParamsRequest) ProtoReflect

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

func (*StakingParamsRequest) Reset

func (x *StakingParamsRequest) Reset()

func (*StakingParamsRequest) String

func (x *StakingParamsRequest) String() string

type StakingParamsResponse

type StakingParamsResponse struct {
	StakingParams []byte `protobuf:"bytes,1,opt,name=staking_params,json=stakingParams,proto3" json:"staking_params,omitempty"`
	// contains filtered or unexported fields
}

func (*StakingParamsResponse) Descriptor deprecated

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

Deprecated: Use StakingParamsResponse.ProtoReflect.Descriptor instead.

func (*StakingParamsResponse) GetStakingParams

func (x *StakingParamsResponse) GetStakingParams() []byte

func (*StakingParamsResponse) ProtoMessage

func (*StakingParamsResponse) ProtoMessage()

func (*StakingParamsResponse) ProtoReflect

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

func (*StakingParamsResponse) Reset

func (x *StakingParamsResponse) Reset()

func (*StakingParamsResponse) String

func (x *StakingParamsResponse) String() string

type StakingPoolRequest

type StakingPoolRequest struct {

	// Chain to get data from
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	// gRPC port for selected chain, defaults to 9090
	Port int32 `protobuf:"zigzag32,2,opt,name=port,proto3" json:"port,omitempty"`
	// contains filtered or unexported fields
}

func (*StakingPoolRequest) Descriptor deprecated

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

Deprecated: Use StakingPoolRequest.ProtoReflect.Descriptor instead.

func (*StakingPoolRequest) GetChainName

func (x *StakingPoolRequest) GetChainName() string

func (*StakingPoolRequest) GetPort

func (x *StakingPoolRequest) GetPort() int32

func (*StakingPoolRequest) ProtoMessage

func (*StakingPoolRequest) ProtoMessage()

func (*StakingPoolRequest) ProtoReflect

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

func (*StakingPoolRequest) Reset

func (x *StakingPoolRequest) Reset()

func (*StakingPoolRequest) String

func (x *StakingPoolRequest) String() string

type StakingPoolResponse

type StakingPoolResponse struct {
	StakingPool []byte `protobuf:"bytes,1,opt,name=staking_pool,json=stakingPool,proto3" json:"staking_pool,omitempty"`
	// contains filtered or unexported fields
}

func (*StakingPoolResponse) Descriptor deprecated

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

Deprecated: Use StakingPoolResponse.ProtoReflect.Descriptor instead.

func (*StakingPoolResponse) GetStakingPool

func (x *StakingPoolResponse) GetStakingPool() []byte

func (*StakingPoolResponse) ProtoMessage

func (*StakingPoolResponse) ProtoMessage()

func (*StakingPoolResponse) ProtoReflect

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

func (*StakingPoolResponse) Reset

func (x *StakingPoolResponse) Reset()

func (*StakingPoolResponse) String

func (x *StakingPoolResponse) String() string

type SupplyDenomRequest

type SupplyDenomRequest struct {

	// Chain to get data from
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	// gRPC port for selected chain, defaults to 9090
	Port int32 `protobuf:"zigzag32,2,opt,name=port,proto3" json:"port,omitempty"`
	// Denom name
	Denom string `protobuf:"bytes,3,opt,name=denom,proto3" json:"denom,omitempty"`
	// contains filtered or unexported fields
}

func (*SupplyDenomRequest) Descriptor deprecated

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

Deprecated: Use SupplyDenomRequest.ProtoReflect.Descriptor instead.

func (*SupplyDenomRequest) GetChainName

func (x *SupplyDenomRequest) GetChainName() string

func (*SupplyDenomRequest) GetDenom

func (x *SupplyDenomRequest) GetDenom() string

func (*SupplyDenomRequest) GetPort

func (x *SupplyDenomRequest) GetPort() int32

func (*SupplyDenomRequest) ProtoMessage

func (*SupplyDenomRequest) ProtoMessage()

func (*SupplyDenomRequest) ProtoReflect

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

func (*SupplyDenomRequest) Reset

func (x *SupplyDenomRequest) Reset()

func (*SupplyDenomRequest) String

func (x *SupplyDenomRequest) String() string

type SupplyDenomResponse

type SupplyDenomResponse struct {
	Coins      []*Coin     `protobuf:"bytes,1,rep,name=coins,proto3" json:"coins,omitempty"`
	Pagination *Pagination `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// contains filtered or unexported fields
}

func (*SupplyDenomResponse) Descriptor deprecated

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

Deprecated: Use SupplyDenomResponse.ProtoReflect.Descriptor instead.

func (*SupplyDenomResponse) GetCoins

func (x *SupplyDenomResponse) GetCoins() []*Coin

func (*SupplyDenomResponse) GetPagination

func (x *SupplyDenomResponse) GetPagination() *Pagination

func (*SupplyDenomResponse) ProtoMessage

func (*SupplyDenomResponse) ProtoMessage()

func (*SupplyDenomResponse) ProtoReflect

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

func (*SupplyDenomResponse) Reset

func (x *SupplyDenomResponse) Reset()

func (*SupplyDenomResponse) String

func (x *SupplyDenomResponse) String() string

type SupplyRequest

type SupplyRequest struct {

	// Chain to get data from
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	// gRPC port for selected chain, defaults to 9090
	Port int32 `protobuf:"zigzag32,2,opt,name=port,proto3" json:"port,omitempty"`
	// pagination key
	PaginationKey string `protobuf:"bytes,3,opt,name=pagination_key,json=paginationKey,proto3" json:"pagination_key,omitempty"`
	// contains filtered or unexported fields
}

func (*SupplyRequest) Descriptor deprecated

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

Deprecated: Use SupplyRequest.ProtoReflect.Descriptor instead.

func (*SupplyRequest) GetChainName

func (x *SupplyRequest) GetChainName() string

func (*SupplyRequest) GetPaginationKey

func (x *SupplyRequest) GetPaginationKey() string

func (*SupplyRequest) GetPort

func (x *SupplyRequest) GetPort() int32

func (*SupplyRequest) ProtoMessage

func (*SupplyRequest) ProtoMessage()

func (*SupplyRequest) ProtoReflect

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

func (*SupplyRequest) Reset

func (x *SupplyRequest) Reset()

func (*SupplyRequest) String

func (x *SupplyRequest) String() string

type SupplyResponse

type SupplyResponse struct {
	Coins      []*Coin     `protobuf:"bytes,1,rep,name=coins,proto3" json:"coins,omitempty"`
	Pagination *Pagination `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// contains filtered or unexported fields
}

func (*SupplyResponse) Descriptor deprecated

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

Deprecated: Use SupplyResponse.ProtoReflect.Descriptor instead.

func (*SupplyResponse) GetCoins

func (x *SupplyResponse) GetCoins() []*Coin

func (*SupplyResponse) GetPagination

func (x *SupplyResponse) GetPagination() *Pagination

func (*SupplyResponse) ProtoMessage

func (*SupplyResponse) ProtoMessage()

func (*SupplyResponse) ProtoReflect

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

func (*SupplyResponse) Reset

func (x *SupplyResponse) Reset()

func (*SupplyResponse) String

func (x *SupplyResponse) String() string

type TxMetadataRequest

type TxMetadataRequest struct {

	// Transaction bytes
	TxBytes []byte `protobuf:"bytes,1,opt,name=tx_bytes,json=txBytes,proto3" json:"tx_bytes,omitempty"`
	// contains filtered or unexported fields
}

func (*TxMetadataRequest) Descriptor deprecated

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

Deprecated: Use TxMetadataRequest.ProtoReflect.Descriptor instead.

func (*TxMetadataRequest) GetTxBytes

func (x *TxMetadataRequest) GetTxBytes() []byte

func (*TxMetadataRequest) ProtoMessage

func (*TxMetadataRequest) ProtoMessage()

func (*TxMetadataRequest) ProtoReflect

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

func (*TxMetadataRequest) Reset

func (x *TxMetadataRequest) Reset()

func (*TxMetadataRequest) String

func (x *TxMetadataRequest) String() string

type TxMetadataResponse

type TxMetadataResponse struct {
	MessagesMetadata []*MsgMetadata `protobuf:"bytes,1,rep,name=messages_metadata,json=messagesMetadata,proto3" json:"messages_metadata,omitempty"`
	// contains filtered or unexported fields
}

func (*TxMetadataResponse) Descriptor deprecated

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

Deprecated: Use TxMetadataResponse.ProtoReflect.Descriptor instead.

func (*TxMetadataResponse) GetMessagesMetadata

func (x *TxMetadataResponse) GetMessagesMetadata() []*MsgMetadata

func (*TxMetadataResponse) ProtoMessage

func (*TxMetadataResponse) ProtoMessage()

func (*TxMetadataResponse) ProtoReflect

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

func (*TxMetadataResponse) Reset

func (x *TxMetadataResponse) Reset()

func (*TxMetadataResponse) String

func (x *TxMetadataResponse) String() string

type UnimplementedSdkUtilitiesServer

type UnimplementedSdkUtilitiesServer struct {
}

UnimplementedSdkUtilitiesServer must be embedded to have forward compatible implementations.

func (UnimplementedSdkUtilitiesServer) AccountNumbers

func (UnimplementedSdkUtilitiesServer) Block

func (UnimplementedSdkUtilitiesServer) BroadcastTx

func (UnimplementedSdkUtilitiesServer) BudgetParams

func (UnimplementedSdkUtilitiesServer) CrescentPools

func (UnimplementedSdkUtilitiesServer) DelegatorRewards

func (UnimplementedSdkUtilitiesServer) DistributionParams

func (UnimplementedSdkUtilitiesServer) EmoneyInflation

func (UnimplementedSdkUtilitiesServer) EstimateFees

func (UnimplementedSdkUtilitiesServer) LiquidityParams

func (UnimplementedSdkUtilitiesServer) LiquidityPools

func (UnimplementedSdkUtilitiesServer) MintInflation

func (UnimplementedSdkUtilitiesServer) MintParams

func (UnimplementedSdkUtilitiesServer) OsmoPools

func (UnimplementedSdkUtilitiesServer) QueryTx

func (UnimplementedSdkUtilitiesServer) StakingParams

func (UnimplementedSdkUtilitiesServer) StakingPool

func (UnimplementedSdkUtilitiesServer) Supply

func (UnimplementedSdkUtilitiesServer) SupplyDenom

func (UnimplementedSdkUtilitiesServer) TxMetadata

type UnsafeSdkUtilitiesServer

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

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

Jump to

Keyboard shortcuts

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