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/query_msg.json
+25-3
Original file line number
Diff line number
Diff line change
@@ -420,17 +420,39 @@
420
420
"additionalProperties": false
421
421
},
422
422
{
423
-
"description": "Returns all registered Validators on the system",
423
+
"description": "Returns all validators in the currently active validator set.\n\nThe query response type is `AllValidatorsResponse`.",
424
424
"type": "object",
425
425
"required": [
426
-
"validators"
426
+
"all_validators"
427
427
],
428
428
"properties": {
429
-
"validators": {
429
+
"all_validators": {
430
430
"type": "object"
431
431
}
432
432
},
433
433
"additionalProperties": false
434
+
},
435
+
{
436
+
"description": "Returns the validator at the given address. Returns None if the validator is not part of the currently active validator set.\n\nThe query response type is `ValidatorResponse`.",
437
+
"type": "object",
438
+
"required": [
439
+
"validator"
440
+
],
441
+
"properties": {
442
+
"validator": {
443
+
"type": "object",
444
+
"required": [
445
+
"address"
446
+
],
447
+
"properties": {
448
+
"address": {
449
+
"description": "The validator's address (e.g. (e.g. cosmosvaloper1...))",
0 commit comments