summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/keybase/go-keybase-chat-bot/kbchat/wallet.go
blob: 7dfdab688e3764bd09916979f18a5c8a83f64101 (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
40
41
42
43
44
45
46
47
48
package kbchat

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

type WalletOutput struct {
	Result WalletResult `json:"result"`
}

type WalletResult struct {
	TxID         string      `json:"txID"`
	Status       string      `json:"status"`
	Amount       string      `json:"amount"`
	Asset        WalletAsset `json:"asset"`
	FromUsername string      `json:"fromUsername"`
	ToUsername   string      `json:"toUsername"`
}

type WalletAsset struct {
	Type   string `json:"type"`
	Code   string `json:"code"`
	Issuer string `json:"issuer"`
}

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

	apiInput := fmt.Sprintf(`{"method": "details", "params": {"options": {"txid": "%s"}}}`, txID)
	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
}