This repository has been archived by the owner on May 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 346
/
result.go
175 lines (140 loc) · 3.54 KB
/
result.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
// Copyright Monax Industries Limited
// SPDX-License-Identifier: Apache-2.0
package rpc
import (
"github.com/hyperledger/burrow/acm"
"github.com/hyperledger/burrow/acm/validator"
"github.com/hyperledger/burrow/binary"
"github.com/hyperledger/burrow/consensus/tendermint"
"github.com/hyperledger/burrow/crypto"
"github.com/hyperledger/burrow/execution/names"
"github.com/hyperledger/burrow/execution/registry"
"github.com/hyperledger/burrow/genesis"
"github.com/hyperledger/burrow/txs"
ctypes "github.com/tendermint/tendermint/consensus/types"
tmjson "github.com/tendermint/tendermint/libs/json"
core_types "github.com/tendermint/tendermint/rpc/core/types"
tmTypes "github.com/tendermint/tendermint/types"
)
type ResultStorage struct {
Key binary.HexBytes
Value binary.HexBytes
}
type ResultAccounts struct {
BlockHeight uint64
Accounts []*acm.Account
}
type ResultDumpStorage struct {
StorageItems []StorageItem
}
type StorageItem struct {
Key binary.HexBytes
Value binary.HexBytes
}
type ResultBlocks struct {
LastHeight uint64
BlockMetas []*tmTypes.BlockMeta
}
type ResultBlock struct {
BlockMeta *BlockMeta
Block *Block
}
type BlockMeta struct {
*tmTypes.BlockMeta
}
func (bm BlockMeta) MarshalJSON() ([]byte, error) {
return tmjson.Marshal(bm.BlockMeta)
}
func (bm *BlockMeta) UnmarshalJSON(data []byte) (err error) {
return tmjson.Unmarshal(data, &bm.BlockMeta)
}
// TODO: this wrapper was needed for go-amino handling of interface types, it _might_ not be needed any longer
type Block struct {
*tmTypes.Block
}
func (b Block) MarshalJSON() ([]byte, error) {
return tmjson.Marshal(b.Block)
}
func (b *Block) UnmarshalJSON(data []byte) (err error) {
return tmjson.Unmarshal(data, &b.Block)
}
type ResultChainId struct {
ChainName string
ChainId string
GenesisHash binary.HexBytes
}
type ResultSubscribe struct {
EventID string
SubscriptionID string
}
type ResultUnsubscribe struct {
SubscriptionID string
}
type ResultNetwork struct {
ThisNode *tendermint.NodeInfo
*core_types.ResultNetInfo
}
type ResultNetworkRegistry struct {
Address crypto.Address
registry.NodeIdentity
}
type ResultValidators struct {
BlockHeight uint64
BondedValidators []*validator.Validator
UnbondingValidators []*validator.Validator
}
type ResultConsensusState struct {
*core_types.ResultDumpConsensusState
}
// TODO use round state in ResultConsensusState - currently there are some part of RoundState have no Unmarshal
type RoundState struct {
*ctypes.RoundState
}
func (rs RoundState) MarshalJSON() ([]byte, error) {
return tmjson.Marshal(rs.RoundState)
}
func (rs *RoundState) UnmarshalJSON(data []byte) (err error) {
return tmjson.Unmarshal(data, &rs.RoundState)
}
type ResultPeers struct {
Peers []core_types.Peer
}
type ResultNames struct {
BlockHeight uint64
Names []*names.Entry
}
type ResultGeneratePrivateAccount struct {
PrivateAccount *acm.ConcretePrivateAccount
}
type ResultAccount struct {
Account *acm.Account
}
type AccountHumanReadable struct {
Address crypto.Address
PublicKey *crypto.PublicKey
Sequence uint64
Balance uint64
Code []string
Permissions []string
Roles []string
}
type ResultAccountHumanReadable struct {
Account *AccountHumanReadable
}
type ResultAccountStats struct {
AccountsWithCode uint64
AccountsWithoutCode uint64
}
type ResultUnconfirmedTxs struct {
NumTxs int
Txs []*txs.Envelope
}
type ResultName struct {
Entry *names.Entry
}
type ResultGenesis struct {
Genesis genesis.GenesisDoc
}
type ResultSignTx struct {
Tx *txs.Envelope
}