Skip to content

Commit 9662f73

Browse files
committed
Update schemas
1 parent 4f0a8ed commit 9662f73

File tree

2 files changed

+0
-68
lines changed

2 files changed

+0
-68
lines changed

contracts/reflect/schema/raw/query.json

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -324,28 +324,6 @@
324324
}
325325
]
326326
},
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 allowlist 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.\n\nTo find the path, as well as the request and response types, you can query the chain's gRPC endpoint using a tool like [grpcurl](https://github.com/fullstorydev/grpcurl).",
329-
"type": "object",
330-
"required": [
331-
"data",
332-
"path"
333-
],
334-
"properties": {
335-
"data": {
336-
"description": "The expected protobuf message type (not [Any](https://protobuf.dev/programming-guides/proto3/#any)), binary encoded",
337-
"allOf": [
338-
{
339-
"$ref": "#/definitions/Binary"
340-
}
341-
]
342-
},
343-
"path": {
344-
"description": "The fully qualified endpoint path used for routing. It follows the format `/service_path/method_name`, eg. \"/cosmos.authz.v1beta1.Query/Grants\"",
345-
"type": "string"
346-
}
347-
}
348-
},
349327
"IbcQuery": {
350328
"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\"",
351329
"oneOf": [
@@ -545,18 +523,6 @@
545523
}
546524
},
547525
"additionalProperties": false
548-
},
549-
{
550-
"type": "object",
551-
"required": [
552-
"grpc"
553-
],
554-
"properties": {
555-
"grpc": {
556-
"$ref": "#/definitions/GrpcQuery"
557-
}
558-
},
559-
"additionalProperties": false
560526
}
561527
]
562528
},

contracts/reflect/schema/reflect.json

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1327,28 +1327,6 @@
13271327
}
13281328
]
13291329
},
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 allowlist 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.\n\nTo find the path, as well as the request and response types, you can query the chain's gRPC endpoint using a tool like [grpcurl](https://github.com/fullstorydev/grpcurl).",
1332-
"type": "object",
1333-
"required": [
1334-
"data",
1335-
"path"
1336-
],
1337-
"properties": {
1338-
"data": {
1339-
"description": "The expected protobuf message type (not [Any](https://protobuf.dev/programming-guides/proto3/#any)), binary encoded",
1340-
"allOf": [
1341-
{
1342-
"$ref": "#/definitions/Binary"
1343-
}
1344-
]
1345-
},
1346-
"path": {
1347-
"description": "The fully qualified endpoint path used for routing. It follows the format `/service_path/method_name`, eg. \"/cosmos.authz.v1beta1.Query/Grants\"",
1348-
"type": "string"
1349-
}
1350-
}
1351-
},
13521330
"IbcQuery": {
13531331
"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\"",
13541332
"oneOf": [
@@ -1548,18 +1526,6 @@
15481526
}
15491527
},
15501528
"additionalProperties": false
1551-
},
1552-
{
1553-
"type": "object",
1554-
"required": [
1555-
"grpc"
1556-
],
1557-
"properties": {
1558-
"grpc": {
1559-
"$ref": "#/definitions/GrpcQuery"
1560-
}
1561-
},
1562-
"additionalProperties": false
15631529
}
15641530
]
15651531
},

0 commit comments

Comments
 (0)