You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: contracts/reflect/schema/raw/query.json
+34Lines changed: 34 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -324,6 +324,28 @@
324
324
}
325
325
]
326
326
},
327
+
"GrpcQuery": {
328
+
"description": "Queries the chain using a grpc query. This allows to query information that is not exposed in our API. The chain needs to whitelist the supported queries. The drawback of this query is that you have to handle the protobuf encoding and decoding yourself.\n\nThe returned data is protobuf encoded. The protobuf type depends on the query.",
329
+
"type": "object",
330
+
"required": [
331
+
"data",
332
+
"path"
333
+
],
334
+
"properties": {
335
+
"data": {
336
+
"description": "The expected protobuf message type (not any), binary encoded",
337
+
"allOf": [
338
+
{
339
+
"$ref": "#/definitions/Binary"
340
+
}
341
+
]
342
+
},
343
+
"path": {
344
+
"description": "The fully qualified service path used for routing, eg. \"custom/cosmos_sdk.x.bank.v1.Query/QueryBalance\"",
345
+
"type": "string"
346
+
}
347
+
}
348
+
},
327
349
"IbcQuery": {
328
350
"description": "These are queries to the various IBC modules to see the state of the contract's IBC connection. These will return errors if the contract is not \"ibc enabled\"",
Copy file name to clipboardExpand all lines: contracts/reflect/schema/reflect.json
+34Lines changed: 34 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1327,6 +1327,28 @@
1327
1327
}
1328
1328
]
1329
1329
},
1330
+
"GrpcQuery": {
1331
+
"description": "Queries the chain using a grpc query. This allows to query information that is not exposed in our API. The chain needs to whitelist the supported queries. The drawback of this query is that you have to handle the protobuf encoding and decoding yourself.\n\nThe returned data is protobuf encoded. The protobuf type depends on the query.",
1332
+
"type": "object",
1333
+
"required": [
1334
+
"data",
1335
+
"path"
1336
+
],
1337
+
"properties": {
1338
+
"data": {
1339
+
"description": "The expected protobuf message type (not any), binary encoded",
1340
+
"allOf": [
1341
+
{
1342
+
"$ref": "#/definitions/Binary"
1343
+
}
1344
+
]
1345
+
},
1346
+
"path": {
1347
+
"description": "The fully qualified service path used for routing, eg. \"custom/cosmos_sdk.x.bank.v1.Query/QueryBalance\"",
1348
+
"type": "string"
1349
+
}
1350
+
}
1351
+
},
1330
1352
"IbcQuery": {
1331
1353
"description": "These are queries to the various IBC modules to see the state of the contract's IBC connection. These will return errors if the contract is not \"ibc enabled\"",
0 commit comments