Documentation
¶
Index ¶
Constants ¶
const ( // AddressServiceGetProcedure is the fully-qualified name of the AddressService's Get RPC. AddressServiceGetProcedure = "/eproxy.addresses.v1.AddressService/Get" // AddressServiceGetBalanceProcedure is the fully-qualified name of the AddressService's GetBalance // RPC. AddressServiceGetBalanceProcedure = "/eproxy.addresses.v1.AddressService/GetBalance" )
These constants are the fully-qualified names of the RPCs defined in this package. They're exposed at runtime as Spec.Procedure and as the final two segments of the HTTP route.
Note that these are different from the fully-qualified method names used by google.golang.org/protobuf/reflect/protoreflect. To convert from these constants to reflection-formatted method names, remove the leading slash and convert the remaining slash to a period.
const (
// AddressServiceName is the fully-qualified name of the AddressService service.
AddressServiceName = "eproxy.addresses.v1.AddressService"
)
Variables ¶
This section is empty.
Functions ¶
func NewAddressServiceHandler ¶
func NewAddressServiceHandler(svc AddressServiceHandler, opts ...connect.HandlerOption) (string, http.Handler)
NewAddressServiceHandler builds an HTTP handler from the service implementation. It returns the path on which to mount the handler and the handler itself.
By default, handlers support the Connect, gRPC, and gRPC-Web protocols with the binary Protobuf and JSON codecs. They also support gzip compression.
Types ¶
type AddressServiceClient ¶
type AddressServiceClient interface {
// Get returns address information by address and blockchain
Get(context.Context, *connect.Request[v1.GetRequest]) (*connect.Response[v1.GetResponse], error)
// GetBalance returns balance by address, asset_identifier and blockchain
GetBalance(context.Context, *connect.Request[v1.GetBalanceRequest]) (*connect.Response[v1.GetBalanceResponse], error)
}
AddressServiceClient is a client for the eproxy.addresses.v1.AddressService service.
func NewAddressServiceClient ¶
func NewAddressServiceClient(httpClient connect.HTTPClient, baseURL string, opts ...connect.ClientOption) AddressServiceClient
NewAddressServiceClient constructs a client for the eproxy.addresses.v1.AddressService service. By default, it uses the Connect protocol with the binary Protobuf Codec, asks for gzipped responses, and sends uncompressed requests. To use the gRPC or gRPC-Web protocols, supply the connect.WithGRPC() or connect.WithGRPCWeb() options.
The URL supplied here should be the base URL for the Connect or gRPC server (for example, http://api.acme.com or https://acme.com/grpc).
type AddressServiceHandler ¶
type AddressServiceHandler interface {
// Get returns address information by address and blockchain
Get(context.Context, *connect.Request[v1.GetRequest]) (*connect.Response[v1.GetResponse], error)
// GetBalance returns balance by address, asset_identifier and blockchain
GetBalance(context.Context, *connect.Request[v1.GetBalanceRequest]) (*connect.Response[v1.GetBalanceResponse], error)
}
AddressServiceHandler is an implementation of the eproxy.addresses.v1.AddressService service.
type UnimplementedAddressServiceHandler ¶
type UnimplementedAddressServiceHandler struct{}
UnimplementedAddressServiceHandler returns CodeUnimplemented from all methods.
func (UnimplementedAddressServiceHandler) Get ¶
func (UnimplementedAddressServiceHandler) Get(context.Context, *connect.Request[v1.GetRequest]) (*connect.Response[v1.GetResponse], error)
func (UnimplementedAddressServiceHandler) GetBalance ¶
func (UnimplementedAddressServiceHandler) GetBalance(context.Context, *connect.Request[v1.GetBalanceRequest]) (*connect.Response[v1.GetBalanceResponse], error)