Documentation ¶
Index ¶
- func Connect(protoAddr string) (net.Conn, error)
- func DialerFunc(ctx context.Context, addr string) (net.Conn, error)
- func HexToBytes(str string) ([]byte, error)
- func LoadTlsCert(path string, serverName string) credentials.TransportCredentials
- func MsgResponse(data []byte) []*chaintypes.TxResponseGenericMessage
- func ProtocolAndAddress(listenAddr string) (string, string)
- type ClientOption
- type ClientOptions
- type Denom
- type Network
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Connect ¶
Connect dials the given address and returns a net.Conn. The protoAddr argument should be prefixed with the protocol, eg. "tcp://127.0.0.1:8080" or "unix:///tmp/test.sock"
func HexToBytes ¶
func LoadTlsCert ¶
func LoadTlsCert(path string, serverName string) credentials.TransportCredentials
func MsgResponse ¶ added in v1.38.0
func MsgResponse(data []byte) []*chaintypes.TxResponseGenericMessage
func ProtocolAndAddress ¶
ProtocolAndAddress splits an address into the protocol and address components. For instance, "tcp://127.0.0.1:8080" will be split into "tcp" and "127.0.0.1:8080". If the address has no protocol prefix, the default is "tcp".
Types ¶
type ClientOption ¶
type ClientOption func(opts *ClientOptions) error
func OptionGasPrices ¶
func OptionGasPrices(gasPrices string) ClientOption
func OptionTLSCert ¶
func OptionTLSCert(tlsCert credentials.TransportCredentials) ClientOption
type ClientOptions ¶
type ClientOptions struct { GasPrices string TLSCert credentials.TransportCredentials }
func DefaultClientOptions ¶
func DefaultClientOptions() *ClientOptions
type Denom ¶ added in v1.36.1
type Denom struct { Description string Base int Quote int MinPriceTickSize float64 MinQuantityTickSize float64 }
func LoadMetadata ¶ added in v1.36.1
type Network ¶ added in v1.36.1
type Network struct { LcdEndpoint string TmEndpoint string ChainGrpcEndpoint string ChainTlsCert credentials.TransportCredentials ExchangeGrpcEndpoint string ExplorerGrpcEndpoint string ExchangeTlsCert credentials.TransportCredentials ExplorerTlsCert credentials.TransportCredentials ChainId string Fee_denom string Name string }
func LoadNetwork ¶
Click to show internal directories.
Click to hide internal directories.