@agoric/cosmos 0.35.0-upgrade-14-dev-8be87aa.0 → 0.35.0-upgrade-14-dev-c8f9e7b.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. package/Makefile +25 -12
  2. package/ante/ante.go +7 -5
  3. package/app/app.go +62 -47
  4. package/app/export.go +13 -6
  5. package/cmd/agd/main.go +5 -3
  6. package/cmd/libdaemon/main.go +5 -2
  7. package/daemon/cmd/genaccounts.go +13 -9
  8. package/daemon/cmd/root.go +27 -11
  9. package/daemon/cmd/root_test.go +1 -1
  10. package/daemon/cmd/testnet.go +17 -6
  11. package/daemon/main.go +3 -2
  12. package/git-revision.txt +1 -1
  13. package/go.mod +95 -64
  14. package/go.sum +592 -243
  15. package/package.json +2 -2
  16. package/proto/agoric/vstorage/query.proto +53 -1
  17. package/scripts/protocgen.sh +12 -1
  18. package/third_party/proto/buf.yaml +1 -0
  19. package/third_party/proto/cosmos/base/query/v1beta1/pagination.proto +4 -1
  20. package/third_party/proto/cosmos/base/v1beta1/coin.proto +7 -4
  21. package/third_party/proto/cosmos/upgrade/v1beta1/upgrade.proto +16 -6
  22. package/third_party/proto/cosmos_proto/cosmos.proto +97 -0
  23. package/third_party/proto/google/api/annotations.proto +1 -1
  24. package/third_party/proto/google/api/http.proto +181 -120
  25. package/third_party/proto/google/api/httpbody.proto +9 -6
  26. package/third_party/proto/google/protobuf/any.proto +1 -7
  27. package/third_party/proto/ibc/core/channel/v1/channel.proto +15 -1
  28. package/third_party/proto/ibc/core/client/v1/client.proto +9 -6
  29. package/upgradegaia.sh +13 -4
  30. package/vm/action.go +24 -21
  31. package/vm/action_test.go +5 -5
  32. package/vm/controller.go +9 -10
  33. package/x/lien/keeper/account.go +3 -3
  34. package/x/lien/keeper/keeper.go +5 -4
  35. package/x/lien/keeper/keeper_test.go +8 -8
  36. package/x/lien/lien.go +6 -4
  37. package/x/lien/lien_test.go +20 -16
  38. package/x/swingset/client/cli/query.go +2 -2
  39. package/x/swingset/client/cli/tx.go +48 -33
  40. package/x/swingset/client/proposal_handler.go +2 -17
  41. package/x/swingset/keeper/keeper.go +8 -11
  42. package/x/swingset/keeper/keeper_test.go +1 -1
  43. package/x/swingset/keeper/msg_server.go +2 -4
  44. package/x/swingset/keeper/proposal.go +10 -0
  45. package/x/swingset/keeper/querier.go +14 -6
  46. package/x/swingset/proposal_handler.go +3 -3
  47. package/x/swingset/swingset.go +4 -2
  48. package/x/swingset/types/codec.go +2 -2
  49. package/x/swingset/types/msgs.pb.go +16 -16
  50. package/x/swingset/types/proposal.go +5 -5
  51. package/x/swingset/types/types.go +30 -28
  52. package/x/vbank/keeper/keeper.go +3 -2
  53. package/x/vbank/keeper/querier.go +6 -2
  54. package/x/vbank/keeper/rewards.go +1 -1
  55. package/x/vbank/vbank.go +11 -10
  56. package/x/vbank/vbank_test.go +8 -8
  57. package/x/vibc/ibc.go +27 -26
  58. package/x/vibc/keeper/keeper.go +19 -18
  59. package/x/vibc/types/expected_keepers.go +13 -5
  60. package/x/vibc/types/msgs.go +1 -1
  61. package/x/vibc/types/msgs.pb.go +1 -1
  62. package/x/vstorage/README.md +138 -0
  63. package/x/vstorage/capdata/capdata.go +298 -0
  64. package/x/vstorage/capdata/capdata_test.go +352 -0
  65. package/x/vstorage/client/cli/query.go +51 -4
  66. package/x/vstorage/keeper/grpc_query.go +221 -0
  67. package/x/vstorage/keeper/keeper.go +3 -2
  68. package/x/vstorage/keeper/keeper_grpc_test.go +300 -0
  69. package/x/vstorage/keeper/keeper_test.go +1 -1
  70. package/x/vstorage/keeper/querier.go +6 -2
  71. package/x/vstorage/types/query.pb.go +646 -36
  72. package/x/vstorage/types/query.pb.gw.go +119 -0
  73. package/x/vstorage/vstorage.go +16 -15
  74. package/x/vstorage/vstorage_test.go +5 -5
@@ -120,6 +120,141 @@ func (m *QueryDataResponse) GetValue() string {
120
120
  return ""
121
121
  }
122
122
 
123
+ // QueryCapDataRequest contains a path and formatting configuration.
124
+ type QueryCapDataRequest struct {
125
+ Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path" yaml:"path"`
126
+ // mediaType must be an actual media type in the registry at
127
+ // https://www.iana.org/assignments/media-types/media-types.xhtml
128
+ // or a special value that does not conflict with the media type syntax.
129
+ // The only valid value is "JSON Lines", which is also the default.
130
+ MediaType string `protobuf:"bytes,2,opt,name=media_type,json=mediaType,proto3" json:"mediaType" yaml:"mediaType"`
131
+ // itemFormat, if present, must be the special value "flat" to indicate that
132
+ // the deep structure of each item should be flattened into a single level
133
+ // with kebab-case keys (e.g., `{ "metrics": { "min": 0, "max": 88 } }` as
134
+ // `{ "metrics-min": 0, "metrics-max": 88 }`).
135
+ ItemFormat string `protobuf:"bytes,3,opt,name=item_format,json=itemFormat,proto3" json:"itemFormat" yaml:"itemFormat"`
136
+ // remotableValueFormat indicates how to transform references to opaque but
137
+ // distinguishable Remotables into readable embedded representations.
138
+ // * "object" represents each Remotable as an `{ id, allegedName }` object, e.g. `{ "id": "board007", "allegedName": "IST brand" }`.
139
+ // * "string" represents each Remotable as a string with bracket-wrapped contents including its alleged name and id, e.g. "[Alleged: IST brand <board007>]".
140
+ RemotableValueFormat string `protobuf:"bytes,10,opt,name=remotable_value_format,json=remotableValueFormat,proto3" json:"remotableValueFormat" yaml:"remotableValueFormat"`
141
+ }
142
+
143
+ func (m *QueryCapDataRequest) Reset() { *m = QueryCapDataRequest{} }
144
+ func (m *QueryCapDataRequest) String() string { return proto.CompactTextString(m) }
145
+ func (*QueryCapDataRequest) ProtoMessage() {}
146
+ func (*QueryCapDataRequest) Descriptor() ([]byte, []int) {
147
+ return fileDescriptor_a26d6d1a170e94ae, []int{2}
148
+ }
149
+ func (m *QueryCapDataRequest) XXX_Unmarshal(b []byte) error {
150
+ return m.Unmarshal(b)
151
+ }
152
+ func (m *QueryCapDataRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
153
+ if deterministic {
154
+ return xxx_messageInfo_QueryCapDataRequest.Marshal(b, m, deterministic)
155
+ } else {
156
+ b = b[:cap(b)]
157
+ n, err := m.MarshalToSizedBuffer(b)
158
+ if err != nil {
159
+ return nil, err
160
+ }
161
+ return b[:n], nil
162
+ }
163
+ }
164
+ func (m *QueryCapDataRequest) XXX_Merge(src proto.Message) {
165
+ xxx_messageInfo_QueryCapDataRequest.Merge(m, src)
166
+ }
167
+ func (m *QueryCapDataRequest) XXX_Size() int {
168
+ return m.Size()
169
+ }
170
+ func (m *QueryCapDataRequest) XXX_DiscardUnknown() {
171
+ xxx_messageInfo_QueryCapDataRequest.DiscardUnknown(m)
172
+ }
173
+
174
+ var xxx_messageInfo_QueryCapDataRequest proto.InternalMessageInfo
175
+
176
+ func (m *QueryCapDataRequest) GetPath() string {
177
+ if m != nil {
178
+ return m.Path
179
+ }
180
+ return ""
181
+ }
182
+
183
+ func (m *QueryCapDataRequest) GetMediaType() string {
184
+ if m != nil {
185
+ return m.MediaType
186
+ }
187
+ return ""
188
+ }
189
+
190
+ func (m *QueryCapDataRequest) GetItemFormat() string {
191
+ if m != nil {
192
+ return m.ItemFormat
193
+ }
194
+ return ""
195
+ }
196
+
197
+ func (m *QueryCapDataRequest) GetRemotableValueFormat() string {
198
+ if m != nil {
199
+ return m.RemotableValueFormat
200
+ }
201
+ return ""
202
+ }
203
+
204
+ // QueryCapDataResponse represents the result with the requested formatting,
205
+ // reserving space for future metadata such as media type.
206
+ type QueryCapDataResponse struct {
207
+ BlockHeight string `protobuf:"bytes,1,opt,name=block_height,json=blockHeight,proto3" json:"blockHeight" yaml:"blockHeight"`
208
+ Value string `protobuf:"bytes,10,opt,name=value,proto3" json:"value" yaml:"value"`
209
+ }
210
+
211
+ func (m *QueryCapDataResponse) Reset() { *m = QueryCapDataResponse{} }
212
+ func (m *QueryCapDataResponse) String() string { return proto.CompactTextString(m) }
213
+ func (*QueryCapDataResponse) ProtoMessage() {}
214
+ func (*QueryCapDataResponse) Descriptor() ([]byte, []int) {
215
+ return fileDescriptor_a26d6d1a170e94ae, []int{3}
216
+ }
217
+ func (m *QueryCapDataResponse) XXX_Unmarshal(b []byte) error {
218
+ return m.Unmarshal(b)
219
+ }
220
+ func (m *QueryCapDataResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
221
+ if deterministic {
222
+ return xxx_messageInfo_QueryCapDataResponse.Marshal(b, m, deterministic)
223
+ } else {
224
+ b = b[:cap(b)]
225
+ n, err := m.MarshalToSizedBuffer(b)
226
+ if err != nil {
227
+ return nil, err
228
+ }
229
+ return b[:n], nil
230
+ }
231
+ }
232
+ func (m *QueryCapDataResponse) XXX_Merge(src proto.Message) {
233
+ xxx_messageInfo_QueryCapDataResponse.Merge(m, src)
234
+ }
235
+ func (m *QueryCapDataResponse) XXX_Size() int {
236
+ return m.Size()
237
+ }
238
+ func (m *QueryCapDataResponse) XXX_DiscardUnknown() {
239
+ xxx_messageInfo_QueryCapDataResponse.DiscardUnknown(m)
240
+ }
241
+
242
+ var xxx_messageInfo_QueryCapDataResponse proto.InternalMessageInfo
243
+
244
+ func (m *QueryCapDataResponse) GetBlockHeight() string {
245
+ if m != nil {
246
+ return m.BlockHeight
247
+ }
248
+ return ""
249
+ }
250
+
251
+ func (m *QueryCapDataResponse) GetValue() string {
252
+ if m != nil {
253
+ return m.Value
254
+ }
255
+ return ""
256
+ }
257
+
123
258
  // QueryChildrenRequest is the vstorage path children query.
124
259
  type QueryChildrenRequest struct {
125
260
  Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path" yaml:"path"`
@@ -130,7 +265,7 @@ func (m *QueryChildrenRequest) Reset() { *m = QueryChildrenRequest{} }
130
265
  func (m *QueryChildrenRequest) String() string { return proto.CompactTextString(m) }
131
266
  func (*QueryChildrenRequest) ProtoMessage() {}
132
267
  func (*QueryChildrenRequest) Descriptor() ([]byte, []int) {
133
- return fileDescriptor_a26d6d1a170e94ae, []int{2}
268
+ return fileDescriptor_a26d6d1a170e94ae, []int{4}
134
269
  }
135
270
  func (m *QueryChildrenRequest) XXX_Unmarshal(b []byte) error {
136
271
  return m.Unmarshal(b)
@@ -183,7 +318,7 @@ func (m *QueryChildrenResponse) Reset() { *m = QueryChildrenResponse{} }
183
318
  func (m *QueryChildrenResponse) String() string { return proto.CompactTextString(m) }
184
319
  func (*QueryChildrenResponse) ProtoMessage() {}
185
320
  func (*QueryChildrenResponse) Descriptor() ([]byte, []int) {
186
- return fileDescriptor_a26d6d1a170e94ae, []int{3}
321
+ return fileDescriptor_a26d6d1a170e94ae, []int{5}
187
322
  }
188
323
  func (m *QueryChildrenResponse) XXX_Unmarshal(b []byte) error {
189
324
  return m.Unmarshal(b)
@@ -229,6 +364,8 @@ func (m *QueryChildrenResponse) GetPagination() *query.PageResponse {
229
364
  func init() {
230
365
  proto.RegisterType((*QueryDataRequest)(nil), "agoric.vstorage.QueryDataRequest")
231
366
  proto.RegisterType((*QueryDataResponse)(nil), "agoric.vstorage.QueryDataResponse")
367
+ proto.RegisterType((*QueryCapDataRequest)(nil), "agoric.vstorage.QueryCapDataRequest")
368
+ proto.RegisterType((*QueryCapDataResponse)(nil), "agoric.vstorage.QueryCapDataResponse")
232
369
  proto.RegisterType((*QueryChildrenRequest)(nil), "agoric.vstorage.QueryChildrenRequest")
233
370
  proto.RegisterType((*QueryChildrenResponse)(nil), "agoric.vstorage.QueryChildrenResponse")
234
371
  }
@@ -236,38 +373,49 @@ func init() {
236
373
  func init() { proto.RegisterFile("agoric/vstorage/query.proto", fileDescriptor_a26d6d1a170e94ae) }
237
374
 
238
375
  var fileDescriptor_a26d6d1a170e94ae = []byte{
239
- // 481 bytes of a gzipped FileDescriptorProto
240
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x53, 0xb1, 0x6f, 0x13, 0x3f,
241
- 0x14, 0x8e, 0xf3, 0x6b, 0x7f, 0x6a, 0x5d, 0xa4, 0x82, 0x55, 0x44, 0x08, 0xd5, 0x5d, 0xb0, 0xa0,
242
- 0x44, 0x20, 0x6c, 0xb5, 0x6c, 0x74, 0x40, 0x84, 0x0a, 0x56, 0x38, 0x89, 0x85, 0xed, 0x25, 0xb1,
243
- 0x9c, 0x13, 0x97, 0xf3, 0xf5, 0xec, 0x44, 0x44, 0x88, 0xa5, 0x8c, 0x2c, 0x48, 0xcc, 0xfc, 0x3f,
244
- 0x8c, 0x95, 0x58, 0x98, 0x4e, 0x28, 0x61, 0xca, 0x98, 0xbf, 0x00, 0x9d, 0xed, 0xb4, 0xd1, 0x51,
245
- 0x51, 0x89, 0xed, 0xde, 0xf7, 0xbd, 0xf7, 0xbd, 0xef, 0x3e, 0xdb, 0xf8, 0x16, 0x48, 0x95, 0xc7,
246
- 0x3d, 0x3e, 0xd6, 0x46, 0xe5, 0x20, 0x05, 0x3f, 0x1e, 0x89, 0x7c, 0xc2, 0xb2, 0x5c, 0x19, 0x45,
247
- 0xb6, 0x1d, 0xc9, 0x96, 0x64, 0x73, 0x47, 0x2a, 0xa9, 0x2c, 0xc7, 0xcb, 0x2f, 0xd7, 0xd6, 0xbc,
248
- 0xdf, 0x53, 0x7a, 0xa8, 0x34, 0xef, 0x82, 0xf6, 0xf3, 0x7c, 0xbc, 0xdf, 0x15, 0x06, 0xf6, 0x79,
249
- 0x06, 0x32, 0x4e, 0xc1, 0xc4, 0x2a, 0xf5, 0xbd, 0xbb, 0x52, 0x29, 0x99, 0x08, 0x0e, 0x59, 0xcc,
250
- 0x21, 0x4d, 0x95, 0xb1, 0xa4, 0x76, 0x2c, 0x7d, 0x82, 0xaf, 0xbe, 0x2a, 0xe7, 0x8f, 0xc0, 0x40,
251
- 0x24, 0x8e, 0x47, 0x42, 0x1b, 0xf2, 0x00, 0xaf, 0x65, 0x60, 0x06, 0x0d, 0xd4, 0x42, 0xed, 0xcd,
252
- 0xce, 0x8d, 0x79, 0x11, 0xda, 0x7a, 0x51, 0x84, 0x5b, 0x13, 0x18, 0x26, 0x8f, 0x69, 0x59, 0xd1,
253
- 0xc8, 0x82, 0xf4, 0x08, 0x5f, 0x5b, 0x11, 0xd0, 0x99, 0x4a, 0xb5, 0x20, 0x1c, 0xaf, 0x8f, 0x21,
254
- 0x19, 0x09, 0x2f, 0x71, 0x73, 0x5e, 0x84, 0x0e, 0x58, 0x14, 0xe1, 0x15, 0xa7, 0x61, 0x4b, 0x1a,
255
- 0x39, 0x98, 0x7e, 0x42, 0x78, 0xc7, 0xca, 0x3c, 0x1b, 0xc4, 0x49, 0x3f, 0x17, 0xe9, 0xbf, 0x78,
256
- 0x21, 0xcf, 0x31, 0x3e, 0xff, 0xfd, 0x46, 0xbd, 0x85, 0xda, 0x5b, 0x07, 0x7b, 0xcc, 0x65, 0xc5,
257
- 0xca, 0xac, 0x98, 0xcb, 0xda, 0x67, 0xc5, 0x5e, 0x82, 0x14, 0x7e, 0x51, 0xb4, 0x32, 0x49, 0xbf,
258
- 0x22, 0x7c, 0xbd, 0xe2, 0xc6, 0xff, 0xd8, 0x21, 0xde, 0xe8, 0x79, 0xac, 0x81, 0x5a, 0xff, 0xb5,
259
- 0x37, 0x3b, 0xe1, 0xbc, 0x08, 0xcf, 0xb0, 0x45, 0x11, 0x6e, 0x3b, 0x5b, 0x4b, 0x84, 0x46, 0x67,
260
- 0x24, 0x79, 0x71, 0x81, 0xbd, 0x7b, 0x97, 0xda, 0x73, 0x9b, 0x57, 0xfd, 0x1d, 0x9c, 0xd4, 0xf1,
261
- 0xba, 0xf5, 0x47, 0x34, 0x5e, 0x2b, 0x83, 0x27, 0xb7, 0x59, 0xe5, 0xe2, 0xb0, 0xea, 0xa9, 0x36,
262
- 0xe9, 0xdf, 0x5a, 0xdc, 0x12, 0x7a, 0xe7, 0xe4, 0xfb, 0xaf, 0x2f, 0xf5, 0x80, 0xec, 0xf2, 0xea,
263
- 0x25, 0xed, 0x83, 0x01, 0xfe, 0xbe, 0x4c, 0xf9, 0x03, 0xf9, 0x88, 0xf0, 0xc6, 0x32, 0x19, 0x72,
264
- 0xf7, 0x62, 0xd9, 0xca, 0x39, 0x36, 0xf7, 0x2e, 0x6b, 0xf3, 0x0e, 0xda, 0xd6, 0x01, 0x25, 0xad,
265
- 0x3f, 0x1c, 0x2c, 0x63, 0xf4, 0x2e, 0x3a, 0xaf, 0xbf, 0x4d, 0x03, 0x74, 0x3a, 0x0d, 0xd0, 0xcf,
266
- 0x69, 0x80, 0x3e, 0xcf, 0x82, 0xda, 0xe9, 0x2c, 0xa8, 0xfd, 0x98, 0x05, 0xb5, 0x37, 0x87, 0x32,
267
- 0x36, 0x83, 0x51, 0x97, 0xf5, 0xd4, 0x90, 0x3f, 0x75, 0x2a, 0x4e, 0xec, 0xa1, 0xee, 0xbf, 0xe5,
268
- 0x52, 0x25, 0x90, 0x4a, 0xee, 0x5f, 0xd0, 0xbb, 0xf3, 0x05, 0x66, 0x92, 0x09, 0xdd, 0xfd, 0xdf,
269
- 0xbe, 0x8b, 0x47, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x0a, 0x1d, 0x3e, 0x9b, 0xa7, 0x03, 0x00,
270
- 0x00,
376
+ // 669 bytes of a gzipped FileDescriptorProto
377
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0xcf, 0x4f, 0xd4, 0x40,
378
+ 0x14, 0xa6, 0xfc, 0x50, 0x98, 0x25, 0x01, 0x46, 0xd4, 0x75, 0x21, 0x1d, 0x18, 0xf9, 0x15, 0x8d,
379
+ 0x9d, 0x80, 0x07, 0x13, 0x39, 0xa8, 0x48, 0x90, 0xa3, 0x36, 0xea, 0xc1, 0xcb, 0x66, 0x76, 0x77,
380
+ 0xec, 0x36, 0xb4, 0x9d, 0xd2, 0xce, 0x12, 0x37, 0xc6, 0x98, 0xc8, 0xd1, 0x8b, 0xc6, 0xb3, 0x7f,
381
+ 0x88, 0xff, 0x81, 0x47, 0x12, 0x2f, 0x9e, 0x1a, 0x03, 0x9e, 0x7a, 0xdc, 0xbf, 0xc0, 0x74, 0x66,
382
+ 0xb6, 0x5b, 0x96, 0x55, 0x0c, 0xb7, 0xce, 0xf7, 0xbe, 0xf7, 0xbd, 0xaf, 0xf3, 0xde, 0x3c, 0x30,
383
+ 0x47, 0x1d, 0x1e, 0xb9, 0x75, 0x72, 0x10, 0x0b, 0x1e, 0x51, 0x87, 0x91, 0xfd, 0x16, 0x8b, 0xda,
384
+ 0x56, 0x18, 0x71, 0xc1, 0xe1, 0x94, 0x0a, 0x5a, 0xdd, 0x60, 0x65, 0xd6, 0xe1, 0x0e, 0x97, 0x31,
385
+ 0x92, 0x7d, 0x29, 0x5a, 0xe5, 0x56, 0x9d, 0xc7, 0x3e, 0x8f, 0x49, 0x8d, 0xc6, 0x3a, 0x9f, 0x1c,
386
+ 0xac, 0xd7, 0x98, 0xa0, 0xeb, 0x24, 0xa4, 0x8e, 0x1b, 0x50, 0xe1, 0xf2, 0x40, 0x73, 0xe7, 0x1d,
387
+ 0xce, 0x1d, 0x8f, 0x11, 0x1a, 0xba, 0x84, 0x06, 0x01, 0x17, 0x32, 0x18, 0xab, 0x28, 0x7e, 0x00,
388
+ 0xa6, 0x9f, 0x65, 0xf9, 0xdb, 0x54, 0x50, 0x9b, 0xed, 0xb7, 0x58, 0x2c, 0xe0, 0x6d, 0x30, 0x1a,
389
+ 0x52, 0xd1, 0x2c, 0x1b, 0x0b, 0xc6, 0xda, 0xc4, 0xd6, 0xf5, 0x34, 0x41, 0xf2, 0xdc, 0x49, 0x50,
390
+ 0xa9, 0x4d, 0x7d, 0xef, 0x3e, 0xce, 0x4e, 0xd8, 0x96, 0x20, 0xde, 0x06, 0x33, 0x05, 0x81, 0x38,
391
+ 0xe4, 0x41, 0xcc, 0x20, 0x01, 0x63, 0x07, 0xd4, 0x6b, 0x31, 0x2d, 0x71, 0x23, 0x4d, 0x90, 0x02,
392
+ 0x3a, 0x09, 0x9a, 0x54, 0x1a, 0xf2, 0x88, 0x6d, 0x05, 0xe3, 0x6f, 0xc3, 0xe0, 0x8a, 0x94, 0x79,
393
+ 0x4c, 0xc3, 0x8b, 0x5a, 0x81, 0x0f, 0x01, 0xf0, 0x59, 0xc3, 0xa5, 0x55, 0xd1, 0x0e, 0x59, 0x79,
394
+ 0x58, 0xa6, 0x2c, 0xa6, 0x09, 0x9a, 0x90, 0xe8, 0xf3, 0x76, 0x98, 0x95, 0x9f, 0x56, 0x79, 0x39,
395
+ 0x84, 0xed, 0x5e, 0x18, 0x6e, 0x83, 0x92, 0x2b, 0x98, 0x5f, 0x7d, 0xcd, 0x23, 0x9f, 0x8a, 0xf2,
396
+ 0x88, 0x94, 0xb8, 0x99, 0x26, 0x08, 0x64, 0xf0, 0x8e, 0x44, 0x3b, 0x09, 0x9a, 0x51, 0x1a, 0x3d,
397
+ 0x0c, 0xdb, 0x05, 0x02, 0xf4, 0xc1, 0xb5, 0x88, 0xf9, 0x5c, 0xd0, 0x9a, 0xc7, 0xaa, 0xf2, 0xff,
398
+ 0xba, 0x82, 0x40, 0x0a, 0xde, 0x4b, 0x13, 0x34, 0x9b, 0x33, 0x5e, 0x66, 0x84, 0x5c, 0x7a, 0x4e,
399
+ 0x49, 0x0f, 0x8a, 0x62, 0x7b, 0x60, 0x12, 0xfe, 0x6c, 0x80, 0xd9, 0xd3, 0x77, 0xa7, 0xbb, 0xb0,
400
+ 0x0b, 0x26, 0x6b, 0x1e, 0xaf, 0xef, 0x55, 0x9b, 0xcc, 0x75, 0x9a, 0x42, 0x5f, 0xe2, 0x72, 0x9a,
401
+ 0xa0, 0x92, 0xc4, 0x77, 0x25, 0xdc, 0x49, 0x10, 0x54, 0x45, 0x0b, 0x20, 0xb6, 0x8b, 0x94, 0x5e,
402
+ 0x3f, 0xc1, 0x7f, 0xf6, 0xf3, 0x63, 0xee, 0xa9, 0xe9, 0x7a, 0x8d, 0x88, 0x05, 0x17, 0x6a, 0xe8,
403
+ 0x0e, 0x00, 0xbd, 0x71, 0x96, 0x0d, 0x2d, 0x6d, 0xac, 0x58, 0x6a, 0xf6, 0xad, 0x6c, 0xf6, 0x2d,
404
+ 0xf5, 0x76, 0xf4, 0xec, 0x5b, 0x4f, 0xa9, 0xc3, 0x74, 0x21, 0xbb, 0x90, 0x89, 0xbf, 0x1a, 0xe0,
405
+ 0x6a, 0x9f, 0x1b, 0x7d, 0x45, 0x9b, 0x60, 0xbc, 0xae, 0xb1, 0xb2, 0xb1, 0x30, 0xb2, 0x36, 0xb1,
406
+ 0x85, 0xd2, 0x04, 0xe5, 0x58, 0x27, 0x41, 0x53, 0xca, 0x56, 0x17, 0xc1, 0x76, 0x1e, 0x84, 0x4f,
407
+ 0x06, 0xd8, 0x5b, 0x3d, 0xd7, 0x9e, 0xaa, 0x5c, 0xf4, 0xb7, 0x71, 0x38, 0x02, 0xc6, 0xa4, 0x3f,
408
+ 0x18, 0x83, 0xd1, 0xac, 0x85, 0x70, 0xd1, 0xea, 0x5b, 0x04, 0x56, 0xff, 0x2b, 0xad, 0xe0, 0x7f,
409
+ 0x51, 0x54, 0x11, 0xbc, 0xf4, 0xe1, 0xc7, 0xef, 0x2f, 0xc3, 0x26, 0x9c, 0x27, 0xfd, 0x4b, 0xa7,
410
+ 0x41, 0x05, 0x25, 0x6f, 0xb3, 0x5b, 0x7e, 0x07, 0xdf, 0x83, 0xcb, 0x7a, 0x74, 0xe0, 0xd2, 0x60,
411
+ 0xd1, 0xd3, 0xaf, 0xb2, 0xb2, 0x7c, 0x0e, 0x4b, 0x57, 0x5f, 0x95, 0xd5, 0x17, 0x21, 0x3a, 0x53,
412
+ 0xbd, 0x4e, 0xc3, 0xa2, 0x81, 0x43, 0x03, 0x8c, 0x77, 0x5b, 0x03, 0xff, 0x26, 0x7e, 0x7a, 0x90,
413
+ 0x2a, 0x2b, 0xe7, 0xd1, 0xb4, 0x89, 0x35, 0x69, 0x02, 0xc3, 0x85, 0xb3, 0x26, 0x34, 0x55, 0xbb,
414
+ 0xd8, 0x7a, 0xf1, 0xfd, 0xd8, 0x34, 0x8e, 0x8e, 0x4d, 0xe3, 0xd7, 0xb1, 0x69, 0x7c, 0x3a, 0x31,
415
+ 0x87, 0x8e, 0x4e, 0xcc, 0xa1, 0x9f, 0x27, 0xe6, 0xd0, 0xab, 0x4d, 0xc7, 0x15, 0xcd, 0x56, 0xcd,
416
+ 0xaa, 0x73, 0x9f, 0x3c, 0x52, 0x2a, 0x4a, 0xec, 0x4e, 0xdc, 0xd8, 0x23, 0x0e, 0xf7, 0x68, 0xe0,
417
+ 0x10, 0xbd, 0x92, 0xdf, 0xf4, 0x0a, 0x64, 0x6b, 0x28, 0xae, 0x5d, 0x92, 0x8b, 0xf6, 0xee, 0x9f,
418
+ 0x00, 0x00, 0x00, 0xff, 0xff, 0xf3, 0x08, 0x4f, 0xc5, 0xf8, 0x05, 0x00, 0x00,
271
419
  }
272
420
 
273
421
  // Reference imports to suppress errors if they are not otherwise used.
@@ -282,8 +430,11 @@ const _ = grpc.SupportPackageIsVersion4
282
430
  //
283
431
  // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
284
432
  type QueryClient interface {
285
- // Return an arbitrary vstorage datum.
433
+ // Return the raw string value of an arbitrary vstorage datum.
286
434
  Data(ctx context.Context, in *QueryDataRequest, opts ...grpc.CallOption) (*QueryDataResponse, error)
435
+ // Return a formatted representation of a vstorage datum that must be
436
+ // a valid StreamCell with CapData values, or standalone CapData.
437
+ CapData(ctx context.Context, in *QueryCapDataRequest, opts ...grpc.CallOption) (*QueryCapDataResponse, error)
287
438
  // Return the children of a given vstorage path.
288
439
  Children(ctx context.Context, in *QueryChildrenRequest, opts ...grpc.CallOption) (*QueryChildrenResponse, error)
289
440
  }
@@ -305,6 +456,15 @@ func (c *queryClient) Data(ctx context.Context, in *QueryDataRequest, opts ...gr
305
456
  return out, nil
306
457
  }
307
458
 
459
+ func (c *queryClient) CapData(ctx context.Context, in *QueryCapDataRequest, opts ...grpc.CallOption) (*QueryCapDataResponse, error) {
460
+ out := new(QueryCapDataResponse)
461
+ err := c.cc.Invoke(ctx, "/agoric.vstorage.Query/CapData", in, out, opts...)
462
+ if err != nil {
463
+ return nil, err
464
+ }
465
+ return out, nil
466
+ }
467
+
308
468
  func (c *queryClient) Children(ctx context.Context, in *QueryChildrenRequest, opts ...grpc.CallOption) (*QueryChildrenResponse, error) {
309
469
  out := new(QueryChildrenResponse)
310
470
  err := c.cc.Invoke(ctx, "/agoric.vstorage.Query/Children", in, out, opts...)
@@ -316,8 +476,11 @@ func (c *queryClient) Children(ctx context.Context, in *QueryChildrenRequest, op
316
476
 
317
477
  // QueryServer is the server API for Query service.
318
478
  type QueryServer interface {
319
- // Return an arbitrary vstorage datum.
479
+ // Return the raw string value of an arbitrary vstorage datum.
320
480
  Data(context.Context, *QueryDataRequest) (*QueryDataResponse, error)
481
+ // Return a formatted representation of a vstorage datum that must be
482
+ // a valid StreamCell with CapData values, or standalone CapData.
483
+ CapData(context.Context, *QueryCapDataRequest) (*QueryCapDataResponse, error)
321
484
  // Return the children of a given vstorage path.
322
485
  Children(context.Context, *QueryChildrenRequest) (*QueryChildrenResponse, error)
323
486
  }
@@ -329,6 +492,9 @@ type UnimplementedQueryServer struct {
329
492
  func (*UnimplementedQueryServer) Data(ctx context.Context, req *QueryDataRequest) (*QueryDataResponse, error) {
330
493
  return nil, status.Errorf(codes.Unimplemented, "method Data not implemented")
331
494
  }
495
+ func (*UnimplementedQueryServer) CapData(ctx context.Context, req *QueryCapDataRequest) (*QueryCapDataResponse, error) {
496
+ return nil, status.Errorf(codes.Unimplemented, "method CapData not implemented")
497
+ }
332
498
  func (*UnimplementedQueryServer) Children(ctx context.Context, req *QueryChildrenRequest) (*QueryChildrenResponse, error) {
333
499
  return nil, status.Errorf(codes.Unimplemented, "method Children not implemented")
334
500
  }
@@ -355,6 +521,24 @@ func _Query_Data_Handler(srv interface{}, ctx context.Context, dec func(interfac
355
521
  return interceptor(ctx, in, info, handler)
356
522
  }
357
523
 
524
+ func _Query_CapData_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
525
+ in := new(QueryCapDataRequest)
526
+ if err := dec(in); err != nil {
527
+ return nil, err
528
+ }
529
+ if interceptor == nil {
530
+ return srv.(QueryServer).CapData(ctx, in)
531
+ }
532
+ info := &grpc.UnaryServerInfo{
533
+ Server: srv,
534
+ FullMethod: "/agoric.vstorage.Query/CapData",
535
+ }
536
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
537
+ return srv.(QueryServer).CapData(ctx, req.(*QueryCapDataRequest))
538
+ }
539
+ return interceptor(ctx, in, info, handler)
540
+ }
541
+
358
542
  func _Query_Children_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
359
543
  in := new(QueryChildrenRequest)
360
544
  if err := dec(in); err != nil {
@@ -381,6 +565,10 @@ var _Query_serviceDesc = grpc.ServiceDesc{
381
565
  MethodName: "Data",
382
566
  Handler: _Query_Data_Handler,
383
567
  },
568
+ {
569
+ MethodName: "CapData",
570
+ Handler: _Query_CapData_Handler,
571
+ },
384
572
  {
385
573
  MethodName: "Children",
386
574
  Handler: _Query_Children_Handler,
@@ -450,6 +638,94 @@ func (m *QueryDataResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
450
638
  return len(dAtA) - i, nil
451
639
  }
452
640
 
641
+ func (m *QueryCapDataRequest) Marshal() (dAtA []byte, err error) {
642
+ size := m.Size()
643
+ dAtA = make([]byte, size)
644
+ n, err := m.MarshalToSizedBuffer(dAtA[:size])
645
+ if err != nil {
646
+ return nil, err
647
+ }
648
+ return dAtA[:n], nil
649
+ }
650
+
651
+ func (m *QueryCapDataRequest) MarshalTo(dAtA []byte) (int, error) {
652
+ size := m.Size()
653
+ return m.MarshalToSizedBuffer(dAtA[:size])
654
+ }
655
+
656
+ func (m *QueryCapDataRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
657
+ i := len(dAtA)
658
+ _ = i
659
+ var l int
660
+ _ = l
661
+ if len(m.RemotableValueFormat) > 0 {
662
+ i -= len(m.RemotableValueFormat)
663
+ copy(dAtA[i:], m.RemotableValueFormat)
664
+ i = encodeVarintQuery(dAtA, i, uint64(len(m.RemotableValueFormat)))
665
+ i--
666
+ dAtA[i] = 0x52
667
+ }
668
+ if len(m.ItemFormat) > 0 {
669
+ i -= len(m.ItemFormat)
670
+ copy(dAtA[i:], m.ItemFormat)
671
+ i = encodeVarintQuery(dAtA, i, uint64(len(m.ItemFormat)))
672
+ i--
673
+ dAtA[i] = 0x1a
674
+ }
675
+ if len(m.MediaType) > 0 {
676
+ i -= len(m.MediaType)
677
+ copy(dAtA[i:], m.MediaType)
678
+ i = encodeVarintQuery(dAtA, i, uint64(len(m.MediaType)))
679
+ i--
680
+ dAtA[i] = 0x12
681
+ }
682
+ if len(m.Path) > 0 {
683
+ i -= len(m.Path)
684
+ copy(dAtA[i:], m.Path)
685
+ i = encodeVarintQuery(dAtA, i, uint64(len(m.Path)))
686
+ i--
687
+ dAtA[i] = 0xa
688
+ }
689
+ return len(dAtA) - i, nil
690
+ }
691
+
692
+ func (m *QueryCapDataResponse) Marshal() (dAtA []byte, err error) {
693
+ size := m.Size()
694
+ dAtA = make([]byte, size)
695
+ n, err := m.MarshalToSizedBuffer(dAtA[:size])
696
+ if err != nil {
697
+ return nil, err
698
+ }
699
+ return dAtA[:n], nil
700
+ }
701
+
702
+ func (m *QueryCapDataResponse) MarshalTo(dAtA []byte) (int, error) {
703
+ size := m.Size()
704
+ return m.MarshalToSizedBuffer(dAtA[:size])
705
+ }
706
+
707
+ func (m *QueryCapDataResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
708
+ i := len(dAtA)
709
+ _ = i
710
+ var l int
711
+ _ = l
712
+ if len(m.Value) > 0 {
713
+ i -= len(m.Value)
714
+ copy(dAtA[i:], m.Value)
715
+ i = encodeVarintQuery(dAtA, i, uint64(len(m.Value)))
716
+ i--
717
+ dAtA[i] = 0x52
718
+ }
719
+ if len(m.BlockHeight) > 0 {
720
+ i -= len(m.BlockHeight)
721
+ copy(dAtA[i:], m.BlockHeight)
722
+ i = encodeVarintQuery(dAtA, i, uint64(len(m.BlockHeight)))
723
+ i--
724
+ dAtA[i] = 0xa
725
+ }
726
+ return len(dAtA) - i, nil
727
+ }
728
+
453
729
  func (m *QueryChildrenRequest) Marshal() (dAtA []byte, err error) {
454
730
  size := m.Size()
455
731
  dAtA = make([]byte, size)
@@ -573,6 +849,48 @@ func (m *QueryDataResponse) Size() (n int) {
573
849
  return n
574
850
  }
575
851
 
852
+ func (m *QueryCapDataRequest) Size() (n int) {
853
+ if m == nil {
854
+ return 0
855
+ }
856
+ var l int
857
+ _ = l
858
+ l = len(m.Path)
859
+ if l > 0 {
860
+ n += 1 + l + sovQuery(uint64(l))
861
+ }
862
+ l = len(m.MediaType)
863
+ if l > 0 {
864
+ n += 1 + l + sovQuery(uint64(l))
865
+ }
866
+ l = len(m.ItemFormat)
867
+ if l > 0 {
868
+ n += 1 + l + sovQuery(uint64(l))
869
+ }
870
+ l = len(m.RemotableValueFormat)
871
+ if l > 0 {
872
+ n += 1 + l + sovQuery(uint64(l))
873
+ }
874
+ return n
875
+ }
876
+
877
+ func (m *QueryCapDataResponse) Size() (n int) {
878
+ if m == nil {
879
+ return 0
880
+ }
881
+ var l int
882
+ _ = l
883
+ l = len(m.BlockHeight)
884
+ if l > 0 {
885
+ n += 1 + l + sovQuery(uint64(l))
886
+ }
887
+ l = len(m.Value)
888
+ if l > 0 {
889
+ n += 1 + l + sovQuery(uint64(l))
890
+ }
891
+ return n
892
+ }
893
+
576
894
  func (m *QueryChildrenRequest) Size() (n int) {
577
895
  if m == nil {
578
896
  return 0
@@ -779,6 +1097,298 @@ func (m *QueryDataResponse) Unmarshal(dAtA []byte) error {
779
1097
  }
780
1098
  return nil
781
1099
  }
1100
+ func (m *QueryCapDataRequest) Unmarshal(dAtA []byte) error {
1101
+ l := len(dAtA)
1102
+ iNdEx := 0
1103
+ for iNdEx < l {
1104
+ preIndex := iNdEx
1105
+ var wire uint64
1106
+ for shift := uint(0); ; shift += 7 {
1107
+ if shift >= 64 {
1108
+ return ErrIntOverflowQuery
1109
+ }
1110
+ if iNdEx >= l {
1111
+ return io.ErrUnexpectedEOF
1112
+ }
1113
+ b := dAtA[iNdEx]
1114
+ iNdEx++
1115
+ wire |= uint64(b&0x7F) << shift
1116
+ if b < 0x80 {
1117
+ break
1118
+ }
1119
+ }
1120
+ fieldNum := int32(wire >> 3)
1121
+ wireType := int(wire & 0x7)
1122
+ if wireType == 4 {
1123
+ return fmt.Errorf("proto: QueryCapDataRequest: wiretype end group for non-group")
1124
+ }
1125
+ if fieldNum <= 0 {
1126
+ return fmt.Errorf("proto: QueryCapDataRequest: illegal tag %d (wire type %d)", fieldNum, wire)
1127
+ }
1128
+ switch fieldNum {
1129
+ case 1:
1130
+ if wireType != 2 {
1131
+ return fmt.Errorf("proto: wrong wireType = %d for field Path", wireType)
1132
+ }
1133
+ var stringLen uint64
1134
+ for shift := uint(0); ; shift += 7 {
1135
+ if shift >= 64 {
1136
+ return ErrIntOverflowQuery
1137
+ }
1138
+ if iNdEx >= l {
1139
+ return io.ErrUnexpectedEOF
1140
+ }
1141
+ b := dAtA[iNdEx]
1142
+ iNdEx++
1143
+ stringLen |= uint64(b&0x7F) << shift
1144
+ if b < 0x80 {
1145
+ break
1146
+ }
1147
+ }
1148
+ intStringLen := int(stringLen)
1149
+ if intStringLen < 0 {
1150
+ return ErrInvalidLengthQuery
1151
+ }
1152
+ postIndex := iNdEx + intStringLen
1153
+ if postIndex < 0 {
1154
+ return ErrInvalidLengthQuery
1155
+ }
1156
+ if postIndex > l {
1157
+ return io.ErrUnexpectedEOF
1158
+ }
1159
+ m.Path = string(dAtA[iNdEx:postIndex])
1160
+ iNdEx = postIndex
1161
+ case 2:
1162
+ if wireType != 2 {
1163
+ return fmt.Errorf("proto: wrong wireType = %d for field MediaType", wireType)
1164
+ }
1165
+ var stringLen uint64
1166
+ for shift := uint(0); ; shift += 7 {
1167
+ if shift >= 64 {
1168
+ return ErrIntOverflowQuery
1169
+ }
1170
+ if iNdEx >= l {
1171
+ return io.ErrUnexpectedEOF
1172
+ }
1173
+ b := dAtA[iNdEx]
1174
+ iNdEx++
1175
+ stringLen |= uint64(b&0x7F) << shift
1176
+ if b < 0x80 {
1177
+ break
1178
+ }
1179
+ }
1180
+ intStringLen := int(stringLen)
1181
+ if intStringLen < 0 {
1182
+ return ErrInvalidLengthQuery
1183
+ }
1184
+ postIndex := iNdEx + intStringLen
1185
+ if postIndex < 0 {
1186
+ return ErrInvalidLengthQuery
1187
+ }
1188
+ if postIndex > l {
1189
+ return io.ErrUnexpectedEOF
1190
+ }
1191
+ m.MediaType = string(dAtA[iNdEx:postIndex])
1192
+ iNdEx = postIndex
1193
+ case 3:
1194
+ if wireType != 2 {
1195
+ return fmt.Errorf("proto: wrong wireType = %d for field ItemFormat", wireType)
1196
+ }
1197
+ var stringLen uint64
1198
+ for shift := uint(0); ; shift += 7 {
1199
+ if shift >= 64 {
1200
+ return ErrIntOverflowQuery
1201
+ }
1202
+ if iNdEx >= l {
1203
+ return io.ErrUnexpectedEOF
1204
+ }
1205
+ b := dAtA[iNdEx]
1206
+ iNdEx++
1207
+ stringLen |= uint64(b&0x7F) << shift
1208
+ if b < 0x80 {
1209
+ break
1210
+ }
1211
+ }
1212
+ intStringLen := int(stringLen)
1213
+ if intStringLen < 0 {
1214
+ return ErrInvalidLengthQuery
1215
+ }
1216
+ postIndex := iNdEx + intStringLen
1217
+ if postIndex < 0 {
1218
+ return ErrInvalidLengthQuery
1219
+ }
1220
+ if postIndex > l {
1221
+ return io.ErrUnexpectedEOF
1222
+ }
1223
+ m.ItemFormat = string(dAtA[iNdEx:postIndex])
1224
+ iNdEx = postIndex
1225
+ case 10:
1226
+ if wireType != 2 {
1227
+ return fmt.Errorf("proto: wrong wireType = %d for field RemotableValueFormat", wireType)
1228
+ }
1229
+ var stringLen uint64
1230
+ for shift := uint(0); ; shift += 7 {
1231
+ if shift >= 64 {
1232
+ return ErrIntOverflowQuery
1233
+ }
1234
+ if iNdEx >= l {
1235
+ return io.ErrUnexpectedEOF
1236
+ }
1237
+ b := dAtA[iNdEx]
1238
+ iNdEx++
1239
+ stringLen |= uint64(b&0x7F) << shift
1240
+ if b < 0x80 {
1241
+ break
1242
+ }
1243
+ }
1244
+ intStringLen := int(stringLen)
1245
+ if intStringLen < 0 {
1246
+ return ErrInvalidLengthQuery
1247
+ }
1248
+ postIndex := iNdEx + intStringLen
1249
+ if postIndex < 0 {
1250
+ return ErrInvalidLengthQuery
1251
+ }
1252
+ if postIndex > l {
1253
+ return io.ErrUnexpectedEOF
1254
+ }
1255
+ m.RemotableValueFormat = string(dAtA[iNdEx:postIndex])
1256
+ iNdEx = postIndex
1257
+ default:
1258
+ iNdEx = preIndex
1259
+ skippy, err := skipQuery(dAtA[iNdEx:])
1260
+ if err != nil {
1261
+ return err
1262
+ }
1263
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
1264
+ return ErrInvalidLengthQuery
1265
+ }
1266
+ if (iNdEx + skippy) > l {
1267
+ return io.ErrUnexpectedEOF
1268
+ }
1269
+ iNdEx += skippy
1270
+ }
1271
+ }
1272
+
1273
+ if iNdEx > l {
1274
+ return io.ErrUnexpectedEOF
1275
+ }
1276
+ return nil
1277
+ }
1278
+ func (m *QueryCapDataResponse) Unmarshal(dAtA []byte) error {
1279
+ l := len(dAtA)
1280
+ iNdEx := 0
1281
+ for iNdEx < l {
1282
+ preIndex := iNdEx
1283
+ var wire uint64
1284
+ for shift := uint(0); ; shift += 7 {
1285
+ if shift >= 64 {
1286
+ return ErrIntOverflowQuery
1287
+ }
1288
+ if iNdEx >= l {
1289
+ return io.ErrUnexpectedEOF
1290
+ }
1291
+ b := dAtA[iNdEx]
1292
+ iNdEx++
1293
+ wire |= uint64(b&0x7F) << shift
1294
+ if b < 0x80 {
1295
+ break
1296
+ }
1297
+ }
1298
+ fieldNum := int32(wire >> 3)
1299
+ wireType := int(wire & 0x7)
1300
+ if wireType == 4 {
1301
+ return fmt.Errorf("proto: QueryCapDataResponse: wiretype end group for non-group")
1302
+ }
1303
+ if fieldNum <= 0 {
1304
+ return fmt.Errorf("proto: QueryCapDataResponse: illegal tag %d (wire type %d)", fieldNum, wire)
1305
+ }
1306
+ switch fieldNum {
1307
+ case 1:
1308
+ if wireType != 2 {
1309
+ return fmt.Errorf("proto: wrong wireType = %d for field BlockHeight", wireType)
1310
+ }
1311
+ var stringLen uint64
1312
+ for shift := uint(0); ; shift += 7 {
1313
+ if shift >= 64 {
1314
+ return ErrIntOverflowQuery
1315
+ }
1316
+ if iNdEx >= l {
1317
+ return io.ErrUnexpectedEOF
1318
+ }
1319
+ b := dAtA[iNdEx]
1320
+ iNdEx++
1321
+ stringLen |= uint64(b&0x7F) << shift
1322
+ if b < 0x80 {
1323
+ break
1324
+ }
1325
+ }
1326
+ intStringLen := int(stringLen)
1327
+ if intStringLen < 0 {
1328
+ return ErrInvalidLengthQuery
1329
+ }
1330
+ postIndex := iNdEx + intStringLen
1331
+ if postIndex < 0 {
1332
+ return ErrInvalidLengthQuery
1333
+ }
1334
+ if postIndex > l {
1335
+ return io.ErrUnexpectedEOF
1336
+ }
1337
+ m.BlockHeight = string(dAtA[iNdEx:postIndex])
1338
+ iNdEx = postIndex
1339
+ case 10:
1340
+ if wireType != 2 {
1341
+ return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType)
1342
+ }
1343
+ var stringLen uint64
1344
+ for shift := uint(0); ; shift += 7 {
1345
+ if shift >= 64 {
1346
+ return ErrIntOverflowQuery
1347
+ }
1348
+ if iNdEx >= l {
1349
+ return io.ErrUnexpectedEOF
1350
+ }
1351
+ b := dAtA[iNdEx]
1352
+ iNdEx++
1353
+ stringLen |= uint64(b&0x7F) << shift
1354
+ if b < 0x80 {
1355
+ break
1356
+ }
1357
+ }
1358
+ intStringLen := int(stringLen)
1359
+ if intStringLen < 0 {
1360
+ return ErrInvalidLengthQuery
1361
+ }
1362
+ postIndex := iNdEx + intStringLen
1363
+ if postIndex < 0 {
1364
+ return ErrInvalidLengthQuery
1365
+ }
1366
+ if postIndex > l {
1367
+ return io.ErrUnexpectedEOF
1368
+ }
1369
+ m.Value = string(dAtA[iNdEx:postIndex])
1370
+ iNdEx = postIndex
1371
+ default:
1372
+ iNdEx = preIndex
1373
+ skippy, err := skipQuery(dAtA[iNdEx:])
1374
+ if err != nil {
1375
+ return err
1376
+ }
1377
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
1378
+ return ErrInvalidLengthQuery
1379
+ }
1380
+ if (iNdEx + skippy) > l {
1381
+ return io.ErrUnexpectedEOF
1382
+ }
1383
+ iNdEx += skippy
1384
+ }
1385
+ }
1386
+
1387
+ if iNdEx > l {
1388
+ return io.ErrUnexpectedEOF
1389
+ }
1390
+ return nil
1391
+ }
782
1392
  func (m *QueryChildrenRequest) Unmarshal(dAtA []byte) error {
783
1393
  l := len(dAtA)
784
1394
  iNdEx := 0