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/daemon/get_fee_estimate.go
2022-10-05 09:40:23 +02:00

69 lines
1.4 KiB
Go

package daemon
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/daemon"
)
type getFeeEstimateCommand struct {
GraceBlocks uint64
JSON bool
}
func (c *getFeeEstimateCommand) Cmd() *cobra.Command {
cmd := &cobra.Command{
Use: "get-fee-estimate",
Short: "estimate fees in atomic units per kB",
RunE: c.RunE,
}
cmd.Flags().Uint64Var(&c.GraceBlocks, "grace-blocks",
10, "number of blocks we want the fee to be valid for")
cmd.Flags().BoolVar(&c.JSON, "json",
false, "whether or not to output the result as json")
return cmd
}
func (c *getFeeEstimateCommand) RunE(_ *cobra.Command, _ []string) error {
ctx, cancel := options.RootOpts.Context()
defer cancel()
client, err := options.RootOpts.Client()
if err != nil {
return fmt.Errorf("client: %w", err)
}
resp, err := client.GetFeeEstimate(ctx, c.GraceBlocks)
if err != nil {
return fmt.Errorf("get block count: %w", err)
}
if c.JSON {
return display.JSON(resp)
}
c.pretty(resp)
return nil
}
// nolint:forbidigo
func (c *getFeeEstimateCommand) pretty(v *daemon.GetFeeEstimateResult) {
table := display.NewTable()
table.AddRow("Fee:", v.Fee)
table.AddRow("Quantization Mask:", v.QuantizationMask)
fmt.Println(table)
}
func init() {
RootCommand.AddCommand((&getFeeEstimateCommand{}).Cmd())
}