forked from yuexcom/go-xrp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommand.go
66 lines (57 loc) · 1.92 KB
/
command.go
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package xrp
import "encoding/json"
type TxOptions struct {
TransactionType string `json:"TransactionType"`
Account string `json:"Account"`
Destination string `json:"Destination"`
DestinationTag uint32 `json:"DestinationTag"`
Amount string `json:"Amount"`
Secret string `json:"-"`
Offline bool `json:"-"`
FeeMultMax int32 `json:"-"`
}
type CommandTX struct {
Seed string `json:"seed,omitempty"`
SeedHex string `json:"seed_hex,omitempty"`
Passphrase string `json:"passphrase,omitempty"`
TxJSON *TxOptions `json:"tx_json"`
Secret string `json:"secret,omitempty"`
Offline bool `json:"offline,omitempty"`
FeeMultMax int32 `json:"fee_mult_max,omitempty"`
}
type CommandLedgerStream struct {
Streams []string `json:"streams,omitempty"`
LedgerIndex string `json:"ledger_index,omitempty"`
Full bool `json:"full,omitempty"`
Accounts bool `json:"accounts,omitempty"`
Transactions bool `json:"transactions,omitempty"`
Expand bool `json:"expand,omitempty"`
OwnerFunds bool `json:"owner_funds,omitempty"`
}
type CommandGetTX struct {
Hash string `json:"transaction,omitempty"`
Binary bool `json:"binary,omitempty"`
}
type CommandLedger struct {
LedgerHash string `json:"ledger_hash,omitempty"`
LedgerIndex string `json:"ledger_index,omitempty"`
Full bool `json:"full,omitempty"`
Accounts bool `json:"accounts,omitempty"`
Expand bool `json:"expand,omitempty"`
OwnerFunds bool `json:"owner_funds,omitempty"`
Queue bool `json:"queue,omitempty"`
Binary bool `json:"binary,omitempty"`
}
//Command ..
type Command struct {
Command string `json:"command,omitempty"`
ID int `json:"id,omitempty"`
*CommandTX
*CommandGetTX
*CommandLedger
*CommandLedgerStream
}
func (cmd *Command) toJSON() (value []byte) {
value, _ = json.Marshal(cmd)
return
}