summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/keybase/go-keybase-chat-bot/kbchat/wallet.go
blob: 1ced65e408e23722563bfac85a84cc340da072cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package kbchat

import (
	"bytes"
	"encoding/json"
	"fmt"
	"strings"

	"github.com/keybase/go-keybase-chat-bot/kbchat/types/stellar1"
)

type WalletOutput struct {
	Result stellar1.PaymentCLILocal `json:"result"`
}

func (a *API) GetWalletTxDetails(txID string) (wOut WalletOutput, err error) {
	a.Lock()
	defer a.Unlock()

	txIDEscaped, err := json.Marshal(txID)
	if err != nil {
		return wOut, err
	}
	apiInput := fmt.Sprintf(`{"method": "details", "params": {"options": {"txid": %s}}}`, txIDEscaped)
	cmd := a.runOpts.Command("wallet", "api")
	cmd.Stdin = strings.NewReader(apiInput)
	var out bytes.Buffer
	cmd.Stdout = &out
	err = cmd.Run()
	if err != nil {
		return wOut, err
	}

	if err := json.Unmarshal(out.Bytes(), &wOut); err != nil {
		return wOut, fmt.Errorf("unable to decode wallet output: %s", err.Error())
	}

	return wOut, nil
}