Files
node/service/keystore/client.go
T
zeekayandHanzo Dev 51a304804c chore: migrate luxd HTTP routes /ext -> /v1
Drop the Avalanche-heritage /ext prefix; /v1 is the single canonical route
surface (one way, no backward compat). The node's baseURL is the source of
truth; clients, SDKs, CLI, indexer, maker, genesis, netrunner, and the
k8s/compose/gateway/explorer configs are updated to match.

Co-authored-by: Hanzo Dev <dev@hanzo.ai>
2026-07-01 11:40:13 -07:00

82 lines
2.7 KiB
Go

// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package keystore
import (
"context"
"github.com/luxfi/formatting"
apitypes "github.com/luxfi/api/types"
"github.com/luxfi/rpc"
)
var _ Client = (*client)(nil)
// Client interface for Lux Keystore API Endpoint
//
// Deprecated: The Keystore API is deprecated. Dedicated wallets should be used
// instead.
type Client interface {
CreateUser(context.Context, apitypes.UserPass, ...rpc.Option) error
// Returns the usernames of all keystore users
ListUsers(context.Context, ...rpc.Option) ([]string, error)
// Returns the byte representation of the given user
ExportUser(context.Context, apitypes.UserPass, ...rpc.Option) ([]byte, error)
// Import [exportedUser] to [importTo]
ImportUser(ctx context.Context, importTo apitypes.UserPass, exportedUser []byte, options ...rpc.Option) error
// Delete the given user
DeleteUser(context.Context, apitypes.UserPass, ...rpc.Option) error
}
// Client implementation for Lux Keystore API Endpoint
type client struct {
requester rpc.EndpointRequester
}
// Deprecated: The Keystore API is deprecated. Dedicated wallets should be used
// instead.
func NewClient(uri string) Client {
return &client{requester: rpc.NewEndpointRequester(
uri + "/v1/keystore",
)}
}
func (c *client) CreateUser(ctx context.Context, user apitypes.UserPass, options ...rpc.Option) error {
return c.requester.SendRequest(ctx, "keystore.createUser", &user, &apitypes.EmptyReply{}, options...)
}
func (c *client) ListUsers(ctx context.Context, options ...rpc.Option) ([]string, error) {
res := &ListUsersReply{}
err := c.requester.SendRequest(ctx, "keystore.listUsers", struct{}{}, res, options...)
return res.Users, err
}
func (c *client) ExportUser(ctx context.Context, user apitypes.UserPass, options ...rpc.Option) ([]byte, error) {
res := &ExportUserReply{
Encoding: formatting.Hex,
}
err := c.requester.SendRequest(ctx, "keystore.exportUser", &user, res, options...)
if err != nil {
return nil, err
}
return formatting.Decode(res.Encoding, res.User)
}
func (c *client) ImportUser(ctx context.Context, user apitypes.UserPass, account []byte, options ...rpc.Option) error {
accountStr, err := formatting.Encode(formatting.Hex, account)
if err != nil {
return err
}
return c.requester.SendRequest(ctx, "keystore.importUser", &ImportUserArgs{
UserPass: user,
User: accountStr,
Encoding: formatting.Hex,
}, &apitypes.EmptyReply{}, options...)
}
func (c *client) DeleteUser(ctx context.Context, user apitypes.UserPass, options ...rpc.Option) error {
return c.requester.SendRequest(ctx, "keystore.deleteUser", &user, &apitypes.EmptyReply{}, options...)
}