This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
go-monero/cmd/monero/commands/wallet/get_address.go
2022-10-05 09:40:23 +02:00

81 lines
1.6 KiB
Go

package wallet
import (
"fmt"
"github.com/spf13/cobra"
"git.gammaspectra.live/P2Pool/go-monero/cmd/monero/display"
"git.gammaspectra.live/P2Pool/go-monero/cmd/monero/options"
"git.gammaspectra.live/P2Pool/go-monero/pkg/rpc/wallet"
)
type getAddressCommand struct {
AccountIndex uint
AddressIndices []uint
JSON bool
}
func (c *getAddressCommand) Cmd() *cobra.Command {
cmd := &cobra.Command{
Use: "get-address",
Short: "addresses for an account",
RunE: c.RunE,
}
cmd.Flags().BoolVar(&c.JSON, "json",
false, "whether or not to output the result as json")
cmd.Flags().UintVar(&c.AccountIndex, "account-index",
0, "todo")
cmd.Flags().UintSliceVar(&c.AddressIndices, "address-index",
[]uint{}, "todo")
return cmd
}
func (c *getAddressCommand) RunE(_ *cobra.Command, _ []string) error {
ctx, cancel := options.RootOpts.Context()
defer cancel()
client, err := options.RootOpts.WalletClient()
if err != nil {
return fmt.Errorf("client: %w", err)
}
params := wallet.GetAddressRequestParameters{
AccountIndex: c.AccountIndex,
AddressIndices: c.AddressIndices,
}
resp, err := client.GetAddress(ctx, params)
if err != nil {
return fmt.Errorf("get address: %w", err)
}
if c.JSON {
return display.JSON(resp)
}
c.pretty(resp)
return nil
}
// nolint:forbidigo
func (c *getAddressCommand) pretty(v *wallet.GetAddressResult) {
table := display.NewTable()
table.AddRow("", "ADDRESS", "LABEL", "USED")
for _, addr := range v.Addresses {
table.AddRow(
addr.AddressIndex, addr.Address, addr.Label, addr.Used,
)
}
fmt.Println(table)
}
func init() {
RootCommand.AddCommand((&getAddressCommand{}).Cmd())
}