add new types
Wasn't sure about type `UTXOReleaseResponse *string` This is the response: ``` { "jsonrpc": "2.0", "result": null } ```
This commit is contained in:
parent
1f1848a408
commit
af728f12d9
1 changed files with 44 additions and 0 deletions
|
@ -471,6 +471,50 @@ type UTXOListResponse []struct {
|
||||||
Type string `json:"type"`
|
Type string `json:"type"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type UTXOReleaseResponse *string
|
||||||
|
|
||||||
|
type TransactionListResponse []struct {
|
||||||
|
AbandonInfo struct {
|
||||||
|
Address string `json:"address"`
|
||||||
|
Amount string `json:"amount"`
|
||||||
|
BalanceDelta string `json:"balance_delta"`
|
||||||
|
ClaimId string `json:"claim_id"`
|
||||||
|
ClaimName string `json:"claim_name"`
|
||||||
|
Nout int `json:"nout"`
|
||||||
|
} `json:"abandon_info"`
|
||||||
|
ClaimInfo struct {
|
||||||
|
Address string `json:"address"`
|
||||||
|
Amount string `json:"amount"`
|
||||||
|
BalanceDelta string `json:"balance_delta"`
|
||||||
|
ClaimId string `json:"claim_id"`
|
||||||
|
ClaimName string `json:"claim_name"`
|
||||||
|
Nout int `json:"nout"`
|
||||||
|
} `json:"claim_info"`
|
||||||
|
Confirmations int64 `json:"confirmations"`
|
||||||
|
Date string `json:"date"`
|
||||||
|
Fee string `json:"fee"`
|
||||||
|
SupportInfo struct {
|
||||||
|
Address string `json:"address"`
|
||||||
|
Amount string `json:"amount"`
|
||||||
|
BalanceDelta string `json:"balance_delta"`
|
||||||
|
ClaimId string `json:"claim_id"`
|
||||||
|
ClaimName string `json:"claim_name"`
|
||||||
|
IsTip bool `json:"is_tip"`
|
||||||
|
Nout int `json:"nout"`
|
||||||
|
} `json:"support_info"`
|
||||||
|
Timestamp int64 `json:"timestamp"`
|
||||||
|
Txid string `json:"txid"`
|
||||||
|
UpdateInfo struct {
|
||||||
|
Address string `json:"address"`
|
||||||
|
Amount string `json:"amount"`
|
||||||
|
BalanceDelta string `json:"balance_delta"`
|
||||||
|
ClaimId string `json:"claim_id"`
|
||||||
|
ClaimName string `json:"claim_name"`
|
||||||
|
Nout int `json:"nout"`
|
||||||
|
} `json:"update_info"`
|
||||||
|
Value string `json:"value"`
|
||||||
|
}
|
||||||
|
|
||||||
type VersionResponse struct {
|
type VersionResponse struct {
|
||||||
Build string `json:"build"`
|
Build string `json:"build"`
|
||||||
Desktop string `json:"desktop"`
|
Desktop string `json:"desktop"`
|
||||||
|
|
Loading…
Add table
Reference in a new issue