{ "swagger": "2.0", "info": { "title": "Haqq gRPC Gateway API", "version": "0.1.0" }, "tags": [ { "name": "Query" }, { "name": "Service" } ], "consumes": [ "application/json" ], "produces": [ "application/json" ], "paths": { "/cosmos/auth/v1beta1/accounts": { "get": { "summary": "Accounts returns all the existing accounts", "description": "Since: cosmos-sdk 0.43", "operationId": "Accounts", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.auth.v1beta1.QueryAccountsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/auth/v1beta1/accounts/{address}": { "get": { "summary": "Account returns account details based on address.", "operationId": "Account", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.auth.v1beta1.QueryAccountResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "address", "description": "address defines the address to query for.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/auth/v1beta1/address_by_id/{id}": { "get": { "summary": "AccountAddressByID returns account address based on account id", "operationId": "AccountAddressByID", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.auth.v1beta1.QueryAccountAddressByIDResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "id", "in": "path", "required": true, "type": "string", "format": "int64" } ], "tags": [ "Query" ] } }, "/cosmos/auth/v1beta1/bech32": { "get": { "summary": "Bech32Prefix queries bech32Prefix", "description": "Since: cosmos-sdk 0.46", "operationId": "Bech32Prefix", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.auth.v1beta1.Bech32PrefixResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/cosmos/auth/v1beta1/bech32/{addressBytes}": { "get": { "summary": "AddressBytesToString converts Account Address bytes to string", "description": "Since: cosmos-sdk 0.46", "operationId": "AddressBytesToString", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.auth.v1beta1.AddressBytesToStringResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "addressBytes", "in": "path", "required": true, "type": "string", "format": "byte" } ], "tags": [ "Query" ] } }, "/cosmos/auth/v1beta1/bech32/{addressString}": { "get": { "summary": "AddressStringToBytes converts Address string to bytes", "description": "Since: cosmos-sdk 0.46", "operationId": "AddressStringToBytes", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.auth.v1beta1.AddressStringToBytesResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "addressString", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/auth/v1beta1/module_accounts": { "get": { "summary": "ModuleAccounts returns all the existing module accounts.", "description": "Since: cosmos-sdk 0.46", "operationId": "ModuleAccounts", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.auth.v1beta1.QueryModuleAccountsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/cosmos/auth/v1beta1/params": { "get": { "summary": "Params queries all parameters.", "operationId": "Params", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.auth.v1beta1.QueryParamsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/cosmos/authz/v1beta1/grants": { "get": { "summary": "Returns list of `Authorization`, granted to the grantee by the granter.", "operationId": "Grants", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.authz.v1beta1.QueryGrantsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "granter", "in": "query", "required": false, "type": "string" }, { "name": "grantee", "in": "query", "required": false, "type": "string" }, { "name": "msgTypeUrl", "description": "Optional, msg_type_url, when set, will query only grants matching given msg type.", "in": "query", "required": false, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/authz/v1beta1/grants/grantee/{grantee}": { "get": { "summary": "GranteeGrants returns a list of `GrantAuthorization` by grantee.", "description": "Since: cosmos-sdk 0.46", "operationId": "GranteeGrants", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.authz.v1beta1.QueryGranteeGrantsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "grantee", "in": "path", "required": true, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/authz/v1beta1/grants/granter/{granter}": { "get": { "summary": "GranterGrants returns list of `GrantAuthorization`, granted by granter.", "description": "Since: cosmos-sdk 0.46", "operationId": "GranterGrants", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.authz.v1beta1.QueryGranterGrantsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "granter", "in": "path", "required": true, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/bank/v1beta1/balances/{address}": { "get": { "summary": "AllBalances queries the balance of all coins for a single account.", "operationId": "AllBalances", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.bank.v1beta1.QueryAllBalancesResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "address", "description": "address is the address to query balances for.", "in": "path", "required": true, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/bank/v1beta1/balances/{address}/by_denom": { "get": { "summary": "Balance queries the balance of a single coin for a single account.", "operationId": "Balance", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.bank.v1beta1.QueryBalanceResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "address", "description": "address is the address to query balances for.", "in": "path", "required": true, "type": "string" }, { "name": "denom", "description": "denom is the coin denom to query balances for.", "in": "query", "required": false, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/bank/v1beta1/denom_owners/{denom}": { "get": { "summary": "DenomOwners queries for all account addresses that own a particular token\ndenomination.", "description": "Since: cosmos-sdk 0.46", "operationId": "DenomOwners", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.bank.v1beta1.QueryDenomOwnersResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "denom", "description": "denom defines the coin denomination to query all account holders for.", "in": "path", "required": true, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/bank/v1beta1/denoms_metadata": { "get": { "summary": "DenomsMetadata queries the client metadata for all registered coin\ndenominations.", "operationId": "DenomsMetadata", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.bank.v1beta1.QueryDenomsMetadataResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/bank/v1beta1/denoms_metadata/{denom}": { "get": { "summary": "DenomsMetadata queries the client metadata of a given coin denomination.", "operationId": "DenomMetadata", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.bank.v1beta1.QueryDenomMetadataResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "denom", "description": "denom is the coin denom to query the metadata for.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/bank/v1beta1/params": { "get": { "summary": "Params queries the parameters of x/bank module.", "operationId": "Params", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.bank.v1beta1.QueryParamsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/cosmos/bank/v1beta1/spendable_balances/{address}": { "get": { "summary": "SpendableBalances queries the spenable balance of all coins for a single\naccount.", "description": "Since: cosmos-sdk 0.46", "operationId": "SpendableBalances", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.bank.v1beta1.QuerySpendableBalancesResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "address", "description": "address is the address to query spendable balances for.", "in": "path", "required": true, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/bank/v1beta1/supply": { "get": { "summary": "TotalSupply queries the total supply of all coins.", "operationId": "TotalSupply", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.bank.v1beta1.QueryTotalSupplyResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/bank/v1beta1/supply/by_denom": { "get": { "summary": "SupplyOf queries the supply of a single coin.", "operationId": "SupplyOf", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.bank.v1beta1.QuerySupplyOfResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "denom", "description": "denom is the coin denom to query balances for.", "in": "query", "required": false, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/base/tendermint/v1beta1/abci_query": { "get": { "summary": "ABCIQuery defines a query handler that supports ABCI queries directly to\nthe application, bypassing Tendermint completely. The ABCI query must\ncontain a valid and supported path, including app, custom, p2p, and store.", "description": "Since: cosmos-sdk 0.46", "operationId": "ABCIQuery", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.base.tendermint.v1beta1.ABCIQueryResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "data", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "path", "in": "query", "required": false, "type": "string" }, { "name": "height", "in": "query", "required": false, "type": "string", "format": "int64" }, { "name": "prove", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Service" ] } }, "/cosmos/base/tendermint/v1beta1/blocks/latest": { "get": { "summary": "GetLatestBlock returns the latest block.", "operationId": "GetLatestBlock", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.base.tendermint.v1beta1.GetLatestBlockResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Service" ] } }, "/cosmos/base/tendermint/v1beta1/blocks/{height}": { "get": { "summary": "GetBlockByHeight queries block for given height.", "operationId": "GetBlockByHeight", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.base.tendermint.v1beta1.GetBlockByHeightResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "height", "in": "path", "required": true, "type": "string", "format": "int64" } ], "tags": [ "Service" ] } }, "/cosmos/base/tendermint/v1beta1/node_info": { "get": { "summary": "GetNodeInfo queries the current node info.", "operationId": "GetNodeInfo", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.base.tendermint.v1beta1.GetNodeInfoResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Service" ] } }, "/cosmos/base/tendermint/v1beta1/syncing": { "get": { "summary": "GetSyncing queries node syncing.", "operationId": "GetSyncing", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.base.tendermint.v1beta1.GetSyncingResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Service" ] } }, "/cosmos/base/tendermint/v1beta1/validatorsets/latest": { "get": { "summary": "GetLatestValidatorSet queries latest validator-set.", "operationId": "GetLatestValidatorSet", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.base.tendermint.v1beta1.GetLatestValidatorSetResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Service" ] } }, "/cosmos/base/tendermint/v1beta1/validatorsets/{height}": { "get": { "summary": "GetValidatorSetByHeight queries validator-set at a given height.", "operationId": "GetValidatorSetByHeight", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.base.tendermint.v1beta1.GetValidatorSetByHeightResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "height", "in": "path", "required": true, "type": "string", "format": "int64" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Service" ] } }, "/cosmos/distribution/v1beta1/community_pool": { "get": { "summary": "CommunityPool queries the community pool coins.", "operationId": "CommunityPool", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.distribution.v1beta1.QueryCommunityPoolResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/cosmos/distribution/v1beta1/delegators/{delegatorAddress}/rewards": { "get": { "summary": "DelegationTotalRewards queries the total rewards accrued by a each\nvalidator.", "operationId": "DelegationTotalRewards", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.distribution.v1beta1.QueryDelegationTotalRewardsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "delegatorAddress", "description": "delegator_address defines the delegator address to query for.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/distribution/v1beta1/delegators/{delegatorAddress}/rewards/{validatorAddress}": { "get": { "summary": "DelegationRewards queries the total rewards accrued by a delegation.", "operationId": "DelegationRewards", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.distribution.v1beta1.QueryDelegationRewardsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "delegatorAddress", "description": "delegator_address defines the delegator address to query for.", "in": "path", "required": true, "type": "string" }, { "name": "validatorAddress", "description": "validator_address defines the validator address to query for.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/distribution/v1beta1/delegators/{delegatorAddress}/validators": { "get": { "summary": "DelegatorValidators queries the validators of a delegator.", "operationId": "DelegatorValidators", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.distribution.v1beta1.QueryDelegatorValidatorsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "delegatorAddress", "description": "delegator_address defines the delegator address to query for.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/distribution/v1beta1/delegators/{delegatorAddress}/withdraw_address": { "get": { "summary": "DelegatorWithdrawAddress queries withdraw address of a delegator.", "operationId": "DelegatorWithdrawAddress", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "delegatorAddress", "description": "delegator_address defines the delegator address to query for.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/distribution/v1beta1/params": { "get": { "summary": "Params queries params of the distribution module.", "operationId": "Params", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.distribution.v1beta1.QueryParamsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/cosmos/distribution/v1beta1/validators/{validatorAddress}/commission": { "get": { "summary": "ValidatorCommission queries accumulated commission for a validator.", "operationId": "ValidatorCommission", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.distribution.v1beta1.QueryValidatorCommissionResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "validatorAddress", "description": "validator_address defines the validator address to query for.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/distribution/v1beta1/validators/{validatorAddress}/outstanding_rewards": { "get": { "summary": "ValidatorOutstandingRewards queries rewards of a validator address.", "operationId": "ValidatorOutstandingRewards", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "validatorAddress", "description": "validator_address defines the validator address to query for.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/distribution/v1beta1/validators/{validatorAddress}/slashes": { "get": { "summary": "ValidatorSlashes queries slash events of a validator.", "operationId": "ValidatorSlashes", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.distribution.v1beta1.QueryValidatorSlashesResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "validatorAddress", "description": "validator_address defines the validator address to query for.", "in": "path", "required": true, "type": "string" }, { "name": "startingHeight", "description": "starting_height defines the optional starting height to query the slashes.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "endingHeight", "description": "starting_height defines the optional ending height to query the slashes.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/evidence/v1beta1/evidence": { "get": { "summary": "AllEvidence queries all evidence.", "operationId": "AllEvidence", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.evidence.v1beta1.QueryAllEvidenceResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/evidence/v1beta1/evidence/{evidenceHash}": { "get": { "summary": "Evidence queries evidence based on evidence hash.", "operationId": "Evidence", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.evidence.v1beta1.QueryEvidenceResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "evidenceHash", "description": "evidence_hash defines the hash of the requested evidence.", "in": "path", "required": true, "type": "string", "format": "byte" } ], "tags": [ "Query" ] } }, "/cosmos/feegrant/v1beta1/allowance/{granter}/{grantee}": { "get": { "summary": "Allowance returns fee granted to the grantee by the granter.", "operationId": "Allowance", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.feegrant.v1beta1.QueryAllowanceResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "granter", "description": "granter is the address of the user granting an allowance of their funds.", "in": "path", "required": true, "type": "string" }, { "name": "grantee", "description": "grantee is the address of the user being granted an allowance of another user's funds.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/feegrant/v1beta1/allowances/{grantee}": { "get": { "summary": "Allowances returns all the grants for address.", "operationId": "Allowances", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.feegrant.v1beta1.QueryAllowancesResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "grantee", "in": "path", "required": true, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/feegrant/v1beta1/issued/{granter}": { "get": { "summary": "AllowancesByGranter returns all the grants given by an address", "description": "Since: cosmos-sdk 0.46", "operationId": "AllowancesByGranter", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.feegrant.v1beta1.QueryAllowancesByGranterResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "granter", "in": "path", "required": true, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/gov/v1/params/{paramsType}": { "get": { "summary": "Params queries all parameters of the gov module.", "operationId": "Params", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.gov.v1.QueryParamsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "paramsType", "description": "params_type defines which parameters to query for, can be one of \"voting\",\n\"tallying\" or \"deposit\".", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/gov/v1/proposals": { "get": { "summary": "Proposals queries all proposals based on given status.", "operationId": "Proposals", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.gov.v1.QueryProposalsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "proposalStatus", "description": "proposal_status defines the status of the proposals.\n\n - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default proposal status.\n - PROPOSAL_STATUS_DEPOSIT_PERIOD: PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit\nperiod.\n - PROPOSAL_STATUS_VOTING_PERIOD: PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting\nperiod.\n - PROPOSAL_STATUS_PASSED: PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has\npassed.\n - PROPOSAL_STATUS_REJECTED: PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has\nbeen rejected.\n - PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has\nfailed.", "in": "query", "required": false, "type": "string", "enum": [ "PROPOSAL_STATUS_UNSPECIFIED", "PROPOSAL_STATUS_DEPOSIT_PERIOD", "PROPOSAL_STATUS_VOTING_PERIOD", "PROPOSAL_STATUS_PASSED", "PROPOSAL_STATUS_REJECTED", "PROPOSAL_STATUS_FAILED" ], "default": "PROPOSAL_STATUS_UNSPECIFIED" }, { "name": "voter", "description": "voter defines the voter address for the proposals.", "in": "query", "required": false, "type": "string" }, { "name": "depositor", "description": "depositor defines the deposit addresses from the proposals.", "in": "query", "required": false, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/gov/v1/proposals/{proposalId}": { "get": { "summary": "Proposal queries proposal details based on ProposalID.", "operationId": "Proposal", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.gov.v1.QueryProposalResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "proposalId", "description": "proposal_id defines the unique id of the proposal.", "in": "path", "required": true, "type": "string", "format": "uint64" } ], "tags": [ "Query" ] } }, "/cosmos/gov/v1/proposals/{proposalId}/deposits": { "get": { "summary": "Deposits queries all deposits of a single proposal.", "operationId": "Deposits", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.gov.v1.QueryDepositsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "proposalId", "description": "proposal_id defines the unique id of the proposal.", "in": "path", "required": true, "type": "string", "format": "uint64" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/gov/v1/proposals/{proposalId}/deposits/{depositor}": { "get": { "summary": "Deposit queries single deposit information based proposalID, depositAddr.", "operationId": "Deposit", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.gov.v1.QueryDepositResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "proposalId", "description": "proposal_id defines the unique id of the proposal.", "in": "path", "required": true, "type": "string", "format": "uint64" }, { "name": "depositor", "description": "depositor defines the deposit addresses from the proposals.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/gov/v1/proposals/{proposalId}/tally": { "get": { "summary": "TallyResult queries the tally of a proposal vote.", "operationId": "TallyResult", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.gov.v1.QueryTallyResultResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "proposalId", "description": "proposal_id defines the unique id of the proposal.", "in": "path", "required": true, "type": "string", "format": "uint64" } ], "tags": [ "Query" ] } }, "/cosmos/gov/v1/proposals/{proposalId}/votes": { "get": { "summary": "Votes queries votes of a given proposal.", "operationId": "Votes", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.gov.v1.QueryVotesResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "proposalId", "description": "proposal_id defines the unique id of the proposal.", "in": "path", "required": true, "type": "string", "format": "uint64" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/gov/v1/proposals/{proposalId}/votes/{voter}": { "get": { "summary": "Vote queries voted information based on proposalID, voterAddr.", "operationId": "Vote", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.gov.v1.QueryVoteResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "proposalId", "description": "proposal_id defines the unique id of the proposal.", "in": "path", "required": true, "type": "string", "format": "uint64" }, { "name": "voter", "description": "voter defines the voter address for the proposals.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/gov/v1beta1/params/{paramsType}": { "get": { "summary": "Params queries all parameters of the gov module.", "operationId": "Params", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.gov.v1beta1.QueryParamsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "paramsType", "description": "params_type defines which parameters to query for, can be one of \"voting\",\n\"tallying\" or \"deposit\".", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/gov/v1beta1/proposals": { "get": { "summary": "Proposals queries all proposals based on given status.", "operationId": "Proposals", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.gov.v1beta1.QueryProposalsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "proposalStatus", "description": "proposal_status defines the status of the proposals.\n\n - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default proposal status.\n - PROPOSAL_STATUS_DEPOSIT_PERIOD: PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit\nperiod.\n - PROPOSAL_STATUS_VOTING_PERIOD: PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting\nperiod.\n - PROPOSAL_STATUS_PASSED: PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has\npassed.\n - PROPOSAL_STATUS_REJECTED: PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has\nbeen rejected.\n - PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has\nfailed.", "in": "query", "required": false, "type": "string", "enum": [ "PROPOSAL_STATUS_UNSPECIFIED", "PROPOSAL_STATUS_DEPOSIT_PERIOD", "PROPOSAL_STATUS_VOTING_PERIOD", "PROPOSAL_STATUS_PASSED", "PROPOSAL_STATUS_REJECTED", "PROPOSAL_STATUS_FAILED" ], "default": "PROPOSAL_STATUS_UNSPECIFIED" }, { "name": "voter", "description": "voter defines the voter address for the proposals.", "in": "query", "required": false, "type": "string" }, { "name": "depositor", "description": "depositor defines the deposit addresses from the proposals.", "in": "query", "required": false, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/gov/v1beta1/proposals/{proposalId}": { "get": { "summary": "Proposal queries proposal details based on ProposalID.", "operationId": "Proposal", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.gov.v1beta1.QueryProposalResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "proposalId", "description": "proposal_id defines the unique id of the proposal.", "in": "path", "required": true, "type": "string", "format": "uint64" } ], "tags": [ "Query" ] } }, "/cosmos/gov/v1beta1/proposals/{proposalId}/deposits": { "get": { "summary": "Deposits queries all deposits of a single proposal.", "operationId": "Deposits", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.gov.v1beta1.QueryDepositsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "proposalId", "description": "proposal_id defines the unique id of the proposal.", "in": "path", "required": true, "type": "string", "format": "uint64" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/gov/v1beta1/proposals/{proposalId}/deposits/{depositor}": { "get": { "summary": "Deposit queries single deposit information based proposalID, depositAddr.", "operationId": "Deposit", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.gov.v1beta1.QueryDepositResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "proposalId", "description": "proposal_id defines the unique id of the proposal.", "in": "path", "required": true, "type": "string", "format": "uint64" }, { "name": "depositor", "description": "depositor defines the deposit addresses from the proposals.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/gov/v1beta1/proposals/{proposalId}/tally": { "get": { "summary": "TallyResult queries the tally of a proposal vote.", "operationId": "TallyResult", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.gov.v1beta1.QueryTallyResultResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "proposalId", "description": "proposal_id defines the unique id of the proposal.", "in": "path", "required": true, "type": "string", "format": "uint64" } ], "tags": [ "Query" ] } }, "/cosmos/gov/v1beta1/proposals/{proposalId}/votes": { "get": { "summary": "Votes queries votes of a given proposal.", "operationId": "Votes", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.gov.v1beta1.QueryVotesResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "proposalId", "description": "proposal_id defines the unique id of the proposal.", "in": "path", "required": true, "type": "string", "format": "uint64" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/gov/v1beta1/proposals/{proposalId}/votes/{voter}": { "get": { "summary": "Vote queries voted information based on proposalID, voterAddr.", "operationId": "Vote", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.gov.v1beta1.QueryVoteResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "proposalId", "description": "proposal_id defines the unique id of the proposal.", "in": "path", "required": true, "type": "string", "format": "uint64" }, { "name": "voter", "description": "voter defines the voter address for the proposals.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/group/v1/group_info/{groupId}": { "get": { "summary": "GroupInfo queries group info based on group id.", "operationId": "GroupInfo", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.group.v1.QueryGroupInfoResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "groupId", "description": "group_id is the unique ID of the group.", "in": "path", "required": true, "type": "string", "format": "uint64" } ], "tags": [ "Query" ] } }, "/cosmos/group/v1/group_members/{groupId}": { "get": { "summary": "GroupMembers queries members of a group", "operationId": "GroupMembers", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.group.v1.QueryGroupMembersResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "groupId", "description": "group_id is the unique ID of the group.", "in": "path", "required": true, "type": "string", "format": "uint64" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/group/v1/group_policies_by_admin/{admin}": { "get": { "summary": "GroupsByAdmin queries group policies by admin address.", "operationId": "GroupPoliciesByAdmin", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.group.v1.QueryGroupPoliciesByAdminResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "admin", "description": "admin is the admin address of the group policy.", "in": "path", "required": true, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/group/v1/group_policies_by_group/{groupId}": { "get": { "summary": "GroupPoliciesByGroup queries group policies by group id.", "operationId": "GroupPoliciesByGroup", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.group.v1.QueryGroupPoliciesByGroupResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "groupId", "description": "group_id is the unique ID of the group policy's group.", "in": "path", "required": true, "type": "string", "format": "uint64" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/group/v1/group_policy_info/{address}": { "get": { "summary": "GroupPolicyInfo queries group policy info based on account address of group policy.", "operationId": "GroupPolicyInfo", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.group.v1.QueryGroupPolicyInfoResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "address", "description": "address is the account address of the group policy.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/group/v1/groups_by_admin/{admin}": { "get": { "summary": "GroupsByAdmin queries groups by admin address.", "operationId": "GroupsByAdmin", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.group.v1.QueryGroupsByAdminResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "admin", "description": "admin is the account address of a group's admin.", "in": "path", "required": true, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/group/v1/groups_by_member/{address}": { "get": { "summary": "GroupsByMember queries groups by member address.", "operationId": "GroupsByMember", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.group.v1.QueryGroupsByMemberResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "address", "description": "address is the group member address.", "in": "path", "required": true, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/group/v1/proposal/{proposalId}": { "get": { "summary": "Proposal queries a proposal based on proposal id.", "operationId": "Proposal", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.group.v1.QueryProposalResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "proposalId", "description": "proposal_id is the unique ID of a proposal.", "in": "path", "required": true, "type": "string", "format": "uint64" } ], "tags": [ "Query" ] } }, "/cosmos/group/v1/proposals/{proposalId}/tally": { "get": { "summary": "TallyResult returns the tally result of a proposal. If the proposal is\nstill in voting period, then this query computes the current tally state,\nwhich might not be final. On the other hand, if the proposal is final,\nthen it simply returns the `final_tally_result` state stored in the\nproposal itself.", "operationId": "TallyResult", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.group.v1.QueryTallyResultResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "proposalId", "description": "proposal_id is the unique id of a proposal.", "in": "path", "required": true, "type": "string", "format": "uint64" } ], "tags": [ "Query" ] } }, "/cosmos/group/v1/proposals_by_group_policy/{address}": { "get": { "summary": "ProposalsByGroupPolicy queries proposals based on account address of group policy.", "operationId": "ProposalsByGroupPolicy", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.group.v1.QueryProposalsByGroupPolicyResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "address", "description": "address is the account address of the group policy related to proposals.", "in": "path", "required": true, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/group/v1/vote_by_proposal_voter/{proposalId}/{voter}": { "get": { "summary": "VoteByProposalVoter queries a vote by proposal id and voter.", "operationId": "VoteByProposalVoter", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.group.v1.QueryVoteByProposalVoterResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "proposalId", "description": "proposal_id is the unique ID of a proposal.", "in": "path", "required": true, "type": "string", "format": "uint64" }, { "name": "voter", "description": "voter is a proposal voter account address.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/group/v1/votes_by_proposal/{proposalId}": { "get": { "summary": "VotesByProposal queries a vote by proposal.", "operationId": "VotesByProposal", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.group.v1.QueryVotesByProposalResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "proposalId", "description": "proposal_id is the unique ID of a proposal.", "in": "path", "required": true, "type": "string", "format": "uint64" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/group/v1/votes_by_voter/{voter}": { "get": { "summary": "VotesByVoter queries a vote by voter.", "operationId": "VotesByVoter", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.group.v1.QueryVotesByVoterResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "voter", "description": "voter is a proposal voter account address.", "in": "path", "required": true, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/mint/v1beta1/annual_provisions": { "get": { "summary": "AnnualProvisions current minting annual provisions value.", "operationId": "AnnualProvisions", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.mint.v1beta1.QueryAnnualProvisionsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/cosmos/mint/v1beta1/inflation": { "get": { "summary": "Inflation returns the current minting inflation value.", "operationId": "Inflation", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.mint.v1beta1.QueryInflationResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/cosmos/mint/v1beta1/params": { "get": { "summary": "Params returns the total set of minting parameters.", "operationId": "Params", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.mint.v1beta1.QueryParamsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/cosmos/nft/v1beta1/balance/{owner}/{classId}": { "get": { "summary": "Balance queries the number of NFTs of a given class owned by the owner, same as balanceOf in ERC721", "operationId": "Balance", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.nft.v1beta1.QueryBalanceResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "owner", "in": "path", "required": true, "type": "string" }, { "name": "classId", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/nft/v1beta1/classes": { "get": { "summary": "Classes queries all NFT classes", "operationId": "Classes", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.nft.v1beta1.QueryClassesResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/nft/v1beta1/classes/{classId}": { "get": { "summary": "Class queries an NFT class based on its id", "operationId": "Class", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.nft.v1beta1.QueryClassResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "classId", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/nft/v1beta1/nfts": { "get": { "summary": "NFTs queries all NFTs of a given class or owner,choose at least one of the two, similar to tokenByIndex in\nERC721Enumerable", "operationId": "NFTs", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.nft.v1beta1.QueryNFTsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "classId", "in": "query", "required": false, "type": "string" }, { "name": "owner", "in": "query", "required": false, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/nft/v1beta1/nfts/{classId}/{id}": { "get": { "summary": "NFT queries an NFT based on its class and id.", "operationId": "NFT", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.nft.v1beta1.QueryNFTResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "classId", "in": "path", "required": true, "type": "string" }, { "name": "id", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/nft/v1beta1/owner/{classId}/{id}": { "get": { "summary": "Owner queries the owner of the NFT based on its class and id, same as ownerOf in ERC721", "operationId": "Owner", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.nft.v1beta1.QueryOwnerResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "classId", "in": "path", "required": true, "type": "string" }, { "name": "id", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/nft/v1beta1/supply/{classId}": { "get": { "summary": "Supply queries the number of NFTs from the given class, same as totalSupply of ERC721.", "operationId": "Supply", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.nft.v1beta1.QuerySupplyResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "classId", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/params/v1beta1/params": { "get": { "summary": "Params queries a specific parameter of a module, given its subspace and\nkey.", "operationId": "Params", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.params.v1beta1.QueryParamsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "subspace", "description": "subspace defines the module to query the parameter for.", "in": "query", "required": false, "type": "string" }, { "name": "key", "description": "key defines the key of the parameter in the subspace.", "in": "query", "required": false, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/params/v1beta1/subspaces": { "get": { "summary": "Subspaces queries for all registered subspaces and all keys for a subspace.", "description": "Since: cosmos-sdk 0.46", "operationId": "Subspaces", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.params.v1beta1.QuerySubspacesResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/cosmos/slashing/v1beta1/params": { "get": { "summary": "Params queries the parameters of slashing module", "operationId": "Params", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.slashing.v1beta1.QueryParamsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/cosmos/slashing/v1beta1/signing_infos": { "get": { "summary": "SigningInfos queries signing info of all validators", "operationId": "SigningInfos", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.slashing.v1beta1.QuerySigningInfosResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/slashing/v1beta1/signing_infos/{consAddress}": { "get": { "summary": "SigningInfo queries the signing info of given cons address", "operationId": "SigningInfo", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.slashing.v1beta1.QuerySigningInfoResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "consAddress", "description": "cons_address is the address to query signing info of", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/staking/v1beta1/delegations/{delegatorAddr}": { "get": { "summary": "DelegatorDelegations queries all delegations of a given delegator address.", "operationId": "DelegatorDelegations", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "delegatorAddr", "description": "delegator_addr defines the delegator address to query for.", "in": "path", "required": true, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/staking/v1beta1/delegators/{delegatorAddr}/redelegations": { "get": { "summary": "Redelegations queries redelegations of given address.", "operationId": "Redelegations", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.staking.v1beta1.QueryRedelegationsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "delegatorAddr", "description": "delegator_addr defines the delegator address to query for.", "in": "path", "required": true, "type": "string" }, { "name": "srcValidatorAddr", "description": "src_validator_addr defines the validator address to redelegate from.", "in": "query", "required": false, "type": "string" }, { "name": "dstValidatorAddr", "description": "dst_validator_addr defines the validator address to redelegate to.", "in": "query", "required": false, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/staking/v1beta1/delegators/{delegatorAddr}/unbonding_delegations": { "get": { "summary": "DelegatorUnbondingDelegations queries all unbonding delegations of a given\ndelegator address.", "operationId": "DelegatorUnbondingDelegations", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "delegatorAddr", "description": "delegator_addr defines the delegator address to query for.", "in": "path", "required": true, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/staking/v1beta1/delegators/{delegatorAddr}/validators": { "get": { "summary": "DelegatorValidators queries all validators info for given delegator\naddress.", "operationId": "DelegatorValidators", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "delegatorAddr", "description": "delegator_addr defines the delegator address to query for.", "in": "path", "required": true, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/staking/v1beta1/delegators/{delegatorAddr}/validators/{validatorAddr}": { "get": { "summary": "DelegatorValidator queries validator info for given delegator validator\npair.", "operationId": "DelegatorValidator", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.staking.v1beta1.QueryDelegatorValidatorResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "delegatorAddr", "description": "delegator_addr defines the delegator address to query for.", "in": "path", "required": true, "type": "string" }, { "name": "validatorAddr", "description": "validator_addr defines the validator address to query for.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/staking/v1beta1/historical_info/{height}": { "get": { "summary": "HistoricalInfo queries the historical info for given height.", "operationId": "HistoricalInfo", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.staking.v1beta1.QueryHistoricalInfoResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "height", "description": "height defines at which height to query the historical info.", "in": "path", "required": true, "type": "string", "format": "int64" } ], "tags": [ "Query" ] } }, "/cosmos/staking/v1beta1/params": { "get": { "summary": "Parameters queries the staking parameters.", "operationId": "Params", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.staking.v1beta1.QueryParamsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/cosmos/staking/v1beta1/pool": { "get": { "summary": "Pool queries the pool info.", "operationId": "Pool", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.staking.v1beta1.QueryPoolResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/cosmos/staking/v1beta1/validators": { "get": { "summary": "Validators queries all validators that match the given status.", "operationId": "Validators", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.staking.v1beta1.QueryValidatorsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "status", "description": "status enables to query for validators matching a given status.", "in": "query", "required": false, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/staking/v1beta1/validators/{validatorAddr}": { "get": { "summary": "Validator queries validator info for given validator address.", "operationId": "Validator", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.staking.v1beta1.QueryValidatorResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "validatorAddr", "description": "validator_addr defines the validator address to query for.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/staking/v1beta1/validators/{validatorAddr}/delegations": { "get": { "summary": "ValidatorDelegations queries delegate info for given validator.", "operationId": "ValidatorDelegations", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.staking.v1beta1.QueryValidatorDelegationsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "validatorAddr", "description": "validator_addr defines the validator address to query for.", "in": "path", "required": true, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/staking/v1beta1/validators/{validatorAddr}/delegations/{delegatorAddr}": { "get": { "summary": "Delegation queries delegate info for given validator delegator pair.", "operationId": "Delegation", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.staking.v1beta1.QueryDelegationResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "validatorAddr", "description": "validator_addr defines the validator address to query for.", "in": "path", "required": true, "type": "string" }, { "name": "delegatorAddr", "description": "delegator_addr defines the delegator address to query for.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/staking/v1beta1/validators/{validatorAddr}/delegations/{delegatorAddr}/unbonding_delegation": { "get": { "summary": "UnbondingDelegation queries unbonding info for given validator delegator\npair.", "operationId": "UnbondingDelegation", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.staking.v1beta1.QueryUnbondingDelegationResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "validatorAddr", "description": "validator_addr defines the validator address to query for.", "in": "path", "required": true, "type": "string" }, { "name": "delegatorAddr", "description": "delegator_addr defines the delegator address to query for.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/staking/v1beta1/validators/{validatorAddr}/unbonding_delegations": { "get": { "summary": "ValidatorUnbondingDelegations queries unbonding delegations of a validator.", "operationId": "ValidatorUnbondingDelegations", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "validatorAddr", "description": "validator_addr defines the validator address to query for.", "in": "path", "required": true, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/cosmos/tx/v1beta1/simulate": { "post": { "summary": "Simulate simulates executing a transaction for estimating gas usage.", "operationId": "Simulate", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.tx.v1beta1.SimulateResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "body", "description": "SimulateRequest is the request type for the Service.Simulate\nRPC method.", "in": "body", "required": true, "schema": { "$ref": "#/definitions/cosmos.tx.v1beta1.SimulateRequest" } } ], "tags": [ "Service" ] } }, "/cosmos/tx/v1beta1/txs": { "get": { "summary": "GetTxsEvent fetches txs by event.", "operationId": "GetTxsEvent", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.tx.v1beta1.GetTxsEventResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "events", "description": "events is the list of transaction event type.", "in": "query", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" }, { "name": "orderBy", "description": " - ORDER_BY_UNSPECIFIED: ORDER_BY_UNSPECIFIED specifies an unknown sorting order. OrderBy defaults to ASC in this case.\n - ORDER_BY_ASC: ORDER_BY_ASC defines ascending order\n - ORDER_BY_DESC: ORDER_BY_DESC defines descending order", "in": "query", "required": false, "type": "string", "enum": [ "ORDER_BY_UNSPECIFIED", "ORDER_BY_ASC", "ORDER_BY_DESC" ], "default": "ORDER_BY_UNSPECIFIED" }, { "name": "page", "description": "page is the page number to query, starts at 1. If not provided, will default to first page.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" } ], "tags": [ "Service" ] }, "post": { "summary": "BroadcastTx broadcast transaction.", "operationId": "BroadcastTx", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.tx.v1beta1.BroadcastTxResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "body", "description": "BroadcastTxRequest is the request type for the Service.BroadcastTxRequest\nRPC method.", "in": "body", "required": true, "schema": { "$ref": "#/definitions/cosmos.tx.v1beta1.BroadcastTxRequest" } } ], "tags": [ "Service" ] } }, "/cosmos/tx/v1beta1/txs/block/{height}": { "get": { "summary": "GetBlockWithTxs fetches a block with decoded txs.", "description": "Since: cosmos-sdk 0.45.2", "operationId": "GetBlockWithTxs", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.tx.v1beta1.GetBlockWithTxsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "height", "description": "height is the height of the block to query.", "in": "path", "required": true, "type": "string", "format": "int64" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Service" ] } }, "/cosmos/tx/v1beta1/txs/{hash}": { "get": { "summary": "GetTx fetches a tx by hash.", "operationId": "GetTx", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.tx.v1beta1.GetTxResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "hash", "description": "hash is the tx hash to query, encoded as a hex string.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Service" ] } }, "/cosmos/upgrade/v1beta1/applied_plan/{name}": { "get": { "summary": "AppliedPlan queries a previously applied upgrade plan by its name.", "operationId": "AppliedPlan", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.upgrade.v1beta1.QueryAppliedPlanResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "name", "description": "name is the name of the applied plan to query for.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/upgrade/v1beta1/authority": { "get": { "summary": "Returns the account with authority to conduct upgrades", "description": "Since: cosmos-sdk 0.46", "operationId": "Authority", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.upgrade.v1beta1.QueryAuthorityResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/cosmos/upgrade/v1beta1/current_plan": { "get": { "summary": "CurrentPlan queries the current upgrade plan.", "operationId": "CurrentPlan", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.upgrade.v1beta1.QueryCurrentPlanResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/cosmos/upgrade/v1beta1/module_versions": { "get": { "summary": "ModuleVersions queries the list of module versions from state.", "description": "Since: cosmos-sdk 0.43", "operationId": "ModuleVersions", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.upgrade.v1beta1.QueryModuleVersionsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "moduleName", "description": "module_name is a field to query a specific module\nconsensus version from state. Leaving this empty will\nfetch the full list of module versions from state", "in": "query", "required": false, "type": "string" } ], "tags": [ "Query" ] } }, "/cosmos/upgrade/v1beta1/upgraded_consensus_state/{lastHeight}": { "get": { "summary": "UpgradedConsensusState queries the consensus state that will serve\nas a trusted kernel for the next version of this chain. It will only be\nstored at the last height of this chain.\nUpgradedConsensusState RPC not supported with legacy querier\nThis rpc is deprecated now that IBC has its own replacement\n(https://github.com/cosmos/ibc-go/blob/2c880a22e9f9cc75f62b527ca94aa75ce1106001/proto/ibc/core/client/v1/query.proto#L54)", "operationId": "UpgradedConsensusState", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.upgrade.v1beta1.QueryUpgradedConsensusStateResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "lastHeight", "description": "last height of the current chain must be sent in request\nas this is the height under which next consensus state is stored", "in": "path", "required": true, "type": "string", "format": "int64" } ], "tags": [ "Query" ] } }, "/evmos/epochs/v1/current_epoch": { "get": { "summary": "CurrentEpoch provide current epoch of specified identifier", "operationId": "CurrentEpoch", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/evmos.epochs.v1.QueryCurrentEpochResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "identifier", "description": "identifier of the current epoch", "in": "query", "required": false, "type": "string" } ], "tags": [ "Query" ] } }, "/evmos/epochs/v1/epochs": { "get": { "summary": "EpochInfos provide running epochInfos", "operationId": "EpochInfos", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/evmos.epochs.v1.QueryEpochsInfoResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/evmos/erc20/v1/params": { "get": { "summary": "Params retrieves the erc20 module params", "operationId": "Params", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/evmos.erc20.v1.QueryParamsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/evmos/erc20/v1/token_pairs": { "get": { "summary": "TokenPairs retrieves registered token pairs", "operationId": "TokenPairs", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/evmos.erc20.v1.QueryTokenPairsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/evmos/erc20/v1/token_pairs/{token}": { "get": { "summary": "TokenPair retrieves a registered token pair", "operationId": "TokenPair", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/evmos.erc20.v1.QueryTokenPairResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "token", "description": "token identifier can be either the hex contract address of the ERC20 or the\nCosmos base denomination", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/evmos/evm/v1/account/{address}": { "get": { "summary": "Account queries an Ethereum account.", "operationId": "Account", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ethermint.evm.v1.QueryAccountResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "address", "description": "address is the ethereum hex address to query the account for.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/evmos/evm/v1/balances/{address}": { "get": { "summary": "Balance queries the balance of a the EVM denomination for a single\nEthAccount.", "operationId": "Balance", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ethermint.evm.v1.QueryBalanceResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "address", "description": "address is the ethereum hex address to query the balance for.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/evmos/evm/v1/base_fee": { "get": { "summary": "BaseFee queries the base fee of the parent block of the current block,\nit's similar to feemarket module's method, but also checks london hardfork\nstatus.", "operationId": "BaseFee", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ethermint.evm.v1.QueryBaseFeeResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/evmos/evm/v1/codes/{address}": { "get": { "summary": "Code queries the balance of all coins for a single account.", "operationId": "Code", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ethermint.evm.v1.QueryCodeResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "address", "description": "address is the ethereum hex address to query the code for.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/evmos/evm/v1/cosmos_account/{address}": { "get": { "summary": "CosmosAccount queries an Ethereum account's Cosmos Address.", "operationId": "CosmosAccount", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ethermint.evm.v1.QueryCosmosAccountResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "address", "description": "address is the ethereum hex address to query the account for.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/evmos/evm/v1/estimate_gas": { "get": { "summary": "EstimateGas implements the `eth_estimateGas` rpc api", "operationId": "EstimateGas", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ethermint.evm.v1.EstimateGasResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "args", "description": "args uses the same json format as the json rpc api.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "gasCap", "description": "gas_cap defines the default gas cap to be used", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "proposerAddress", "description": "proposer_address of the requested block in hex format", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "chainId", "description": "chain_id is the eip155 chain id parsed from the requested block header", "in": "query", "required": false, "type": "string", "format": "int64" } ], "tags": [ "Query" ] } }, "/evmos/evm/v1/eth_call": { "get": { "summary": "EthCall implements the `eth_call` rpc api", "operationId": "EthCall", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ethermint.evm.v1.MsgEthereumTxResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "args", "description": "args uses the same json format as the json rpc api.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "gasCap", "description": "gas_cap defines the default gas cap to be used", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "proposerAddress", "description": "proposer_address of the requested block in hex format", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "chainId", "description": "chain_id is the eip155 chain id parsed from the requested block header", "in": "query", "required": false, "type": "string", "format": "int64" } ], "tags": [ "Query" ] } }, "/evmos/evm/v1/params": { "get": { "summary": "Params queries the parameters of x/evm module.", "operationId": "Params", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ethermint.evm.v1.QueryParamsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/evmos/evm/v1/storage/{address}/{key}": { "get": { "summary": "Storage queries the balance of all coins for a single account.", "operationId": "Storage", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ethermint.evm.v1.QueryStorageResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "address", "description": "address is the ethereum hex address to query the storage state for.", "in": "path", "required": true, "type": "string" }, { "name": "key", "description": "key defines the key of the storage state", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/evmos/evm/v1/trace_block": { "get": { "summary": "TraceBlock implements the `debug_traceBlockByNumber` and\n`debug_traceBlockByHash` rpc api", "operationId": "TraceBlock", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ethermint.evm.v1.QueryTraceBlockResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "traceConfig.tracer", "description": "tracer is a custom javascript tracer", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.timeout", "description": "timeout overrides the default timeout of 5 seconds for JavaScript-based\ntracing calls", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.reexec", "description": "reexec defines the number of blocks the tracer is willing to go back", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "traceConfig.disableStack", "description": "disable_stack switches stack capture", "in": "query", "required": false, "type": "boolean" }, { "name": "traceConfig.disableStorage", "description": "disable_storage switches storage capture", "in": "query", "required": false, "type": "boolean" }, { "name": "traceConfig.debug", "description": "debug can be used to print output during capture end", "in": "query", "required": false, "type": "boolean" }, { "name": "traceConfig.limit", "description": "limit defines the maximum length of output, but zero means unlimited", "in": "query", "required": false, "type": "integer", "format": "int32" }, { "name": "traceConfig.overrides.homesteadBlock", "description": "homestead_block switch (nil no fork, 0 = already homestead)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.daoForkBlock", "description": "dao_fork_block corresponds to TheDAO hard-fork switch block (nil no fork)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.daoForkSupport", "description": "dao_fork_support defines whether the nodes supports or opposes the DAO\nhard-fork", "in": "query", "required": false, "type": "boolean" }, { "name": "traceConfig.overrides.eip150Block", "description": "eip150_block: EIP150 implements the Gas price changes\n(https://github.com/ethereum/EIPs/issues/150) EIP150 HF block (nil no fork)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.eip150Hash", "description": "eip150_hash: EIP150 HF hash (needed for header only clients as only gas\npricing changed)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.eip155Block", "description": "eip155_block: EIP155Block HF block", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.eip158Block", "description": "eip158_block: EIP158 HF block", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.byzantiumBlock", "description": "byzantium_block: Byzantium switch block (nil no fork, 0 = already on\nbyzantium)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.constantinopleBlock", "description": "constantinople_block: Constantinople switch block (nil no fork, 0 = already\nactivated)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.petersburgBlock", "description": "petersburg_block: Petersburg switch block (nil same as Constantinople)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.istanbulBlock", "description": "istanbul_block: Istanbul switch block (nil no fork, 0 = already on\nistanbul)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.muirGlacierBlock", "description": "muir_glacier_block: Eip-2384 (bomb delay) switch block (nil no fork, 0 =\nalready activated)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.berlinBlock", "description": "berlin_block: Berlin switch block (nil = no fork, 0 = already on berlin)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.londonBlock", "description": "london_block: London switch block (nil = no fork, 0 = already on london)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.arrowGlacierBlock", "description": "arrow_glacier_block: Eip-4345 (bomb delay) switch block (nil = no fork, 0 =\nalready activated)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.grayGlacierBlock", "description": "gray_glacier_block: EIP-5133 (bomb delay) switch block (nil = no fork, 0 =\nalready activated)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.mergeNetsplitBlock", "description": "merge_netsplit_block: Virtual fork after The Merge to use as a network\nsplitter", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.shanghaiBlock", "description": "shanghai_block switch block (nil = no fork, 0 = already on shanghai)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.cancunBlock", "description": "cancun_block switch block (nil = no fork, 0 = already on cancun)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.enableMemory", "description": "enable_memory switches memory capture", "in": "query", "required": false, "type": "boolean" }, { "name": "traceConfig.enableReturnData", "description": "enable_return_data switches the capture of return data", "in": "query", "required": false, "type": "boolean" }, { "name": "traceConfig.tracerJsonConfig", "description": "tracer_json_config configures the tracer using a JSON string", "in": "query", "required": false, "type": "string" }, { "name": "blockNumber", "description": "block_number of the traced block", "in": "query", "required": false, "type": "string", "format": "int64" }, { "name": "blockHash", "description": "block_hash (hex) of the traced block", "in": "query", "required": false, "type": "string" }, { "name": "blockTime", "description": "block_time of the traced block", "in": "query", "required": false, "type": "string", "format": "date-time" }, { "name": "proposerAddress", "description": "proposer_address is the address of the requested block", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "chainId", "description": "chain_id is the eip155 chain id parsed from the requested block header", "in": "query", "required": false, "type": "string", "format": "int64" } ], "tags": [ "Query" ] } }, "/evmos/evm/v1/trace_tx": { "get": { "summary": "TraceTx implements the `debug_traceTransaction` rpc api", "operationId": "TraceTx", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ethermint.evm.v1.QueryTraceTxResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "msg.data.typeUrl", "description": "A URL/resource name that uniquely identifies the type of the serialized\nprotocol buffer message. This string must contain at least\none \"/\" character. The last segment of the URL's path must represent\nthe fully qualified name of the type (as in\n`path/google.protobuf.Duration`). The name should be in a canonical form\n(e.g., leading \".\" is not accepted).\n\nIn practice, teams usually precompile into the binary all types that they\nexpect it to use in the context of Any. However, for URLs which use the\nscheme `http`, `https`, or no scheme, one can optionally set up a type\nserver that maps type URLs to message definitions as follows:\n\n* If no scheme is provided, `https` is assumed.\n* An HTTP GET on the URL must yield a [google.protobuf.Type][]\n value in binary format, or produce an error.\n* Applications are allowed to cache lookup results based on the\n URL, or have them precompiled into a binary to avoid any\n lookup. Therefore, binary compatibility needs to be preserved\n on changes to types. (Use versioned type names to manage\n breaking changes.)\n\nNote: this functionality is not currently available in the official\nprotobuf release, and it is not used for type URLs beginning with\ntype.googleapis.com.\n\nSchemes other than `http`, `https` (or the empty scheme) might be\nused with implementation specific semantics.", "in": "query", "required": false, "type": "string" }, { "name": "msg.data.value", "description": "Must be a valid serialized protocol buffer of the above specified type.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "msg.size", "description": "size is the encoded storage size of the transaction (DEPRECATED)", "in": "query", "required": false, "type": "number", "format": "double" }, { "name": "msg.hash", "description": "hash of the transaction in hex format", "in": "query", "required": false, "type": "string" }, { "name": "msg.from", "description": "from is the ethereum signer address in hex format. This address value is\nchecked against the address derived from the signature (V, R, S) using the\nsecp256k1 elliptic curve", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.tracer", "description": "tracer is a custom javascript tracer", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.timeout", "description": "timeout overrides the default timeout of 5 seconds for JavaScript-based\ntracing calls", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.reexec", "description": "reexec defines the number of blocks the tracer is willing to go back", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "traceConfig.disableStack", "description": "disable_stack switches stack capture", "in": "query", "required": false, "type": "boolean" }, { "name": "traceConfig.disableStorage", "description": "disable_storage switches storage capture", "in": "query", "required": false, "type": "boolean" }, { "name": "traceConfig.debug", "description": "debug can be used to print output during capture end", "in": "query", "required": false, "type": "boolean" }, { "name": "traceConfig.limit", "description": "limit defines the maximum length of output, but zero means unlimited", "in": "query", "required": false, "type": "integer", "format": "int32" }, { "name": "traceConfig.overrides.homesteadBlock", "description": "homestead_block switch (nil no fork, 0 = already homestead)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.daoForkBlock", "description": "dao_fork_block corresponds to TheDAO hard-fork switch block (nil no fork)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.daoForkSupport", "description": "dao_fork_support defines whether the nodes supports or opposes the DAO\nhard-fork", "in": "query", "required": false, "type": "boolean" }, { "name": "traceConfig.overrides.eip150Block", "description": "eip150_block: EIP150 implements the Gas price changes\n(https://github.com/ethereum/EIPs/issues/150) EIP150 HF block (nil no fork)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.eip150Hash", "description": "eip150_hash: EIP150 HF hash (needed for header only clients as only gas\npricing changed)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.eip155Block", "description": "eip155_block: EIP155Block HF block", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.eip158Block", "description": "eip158_block: EIP158 HF block", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.byzantiumBlock", "description": "byzantium_block: Byzantium switch block (nil no fork, 0 = already on\nbyzantium)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.constantinopleBlock", "description": "constantinople_block: Constantinople switch block (nil no fork, 0 = already\nactivated)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.petersburgBlock", "description": "petersburg_block: Petersburg switch block (nil same as Constantinople)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.istanbulBlock", "description": "istanbul_block: Istanbul switch block (nil no fork, 0 = already on\nistanbul)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.muirGlacierBlock", "description": "muir_glacier_block: Eip-2384 (bomb delay) switch block (nil no fork, 0 =\nalready activated)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.berlinBlock", "description": "berlin_block: Berlin switch block (nil = no fork, 0 = already on berlin)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.londonBlock", "description": "london_block: London switch block (nil = no fork, 0 = already on london)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.arrowGlacierBlock", "description": "arrow_glacier_block: Eip-4345 (bomb delay) switch block (nil = no fork, 0 =\nalready activated)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.grayGlacierBlock", "description": "gray_glacier_block: EIP-5133 (bomb delay) switch block (nil = no fork, 0 =\nalready activated)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.mergeNetsplitBlock", "description": "merge_netsplit_block: Virtual fork after The Merge to use as a network\nsplitter", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.shanghaiBlock", "description": "shanghai_block switch block (nil = no fork, 0 = already on shanghai)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.cancunBlock", "description": "cancun_block switch block (nil = no fork, 0 = already on cancun)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.enableMemory", "description": "enable_memory switches memory capture", "in": "query", "required": false, "type": "boolean" }, { "name": "traceConfig.enableReturnData", "description": "enable_return_data switches the capture of return data", "in": "query", "required": false, "type": "boolean" }, { "name": "traceConfig.tracerJsonConfig", "description": "tracer_json_config configures the tracer using a JSON string", "in": "query", "required": false, "type": "string" }, { "name": "blockNumber", "description": "block_number of requested transaction", "in": "query", "required": false, "type": "string", "format": "int64" }, { "name": "blockHash", "description": "block_hash of requested transaction", "in": "query", "required": false, "type": "string" }, { "name": "blockTime", "description": "block_time of requested transaction", "in": "query", "required": false, "type": "string", "format": "date-time" }, { "name": "proposerAddress", "description": "proposer_address is the proposer of the requested block", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "chainId", "description": "chain_id is the the eip155 chain id parsed from the requested block header", "in": "query", "required": false, "type": "string", "format": "int64" } ], "tags": [ "Query" ] } }, "/evmos/evm/v1/validator_account/{consAddress}": { "get": { "summary": "ValidatorAccount queries an Ethereum account's from a validator consensus\nAddress.", "operationId": "ValidatorAccount", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ethermint.evm.v1.QueryValidatorAccountResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "consAddress", "description": "cons_address is the validator cons address to query the account for.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/evmos/feemarket/v1/base_fee": { "get": { "summary": "BaseFee queries the base fee of the parent block of the current block.", "operationId": "BaseFee", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ethermint.feemarket.v1.QueryBaseFeeResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/evmos/feemarket/v1/block_gas": { "get": { "summary": "BlockGas queries the gas used at a given block height", "operationId": "BlockGas", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ethermint.feemarket.v1.QueryBlockGasResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/evmos/feemarket/v1/params": { "get": { "summary": "Params queries the parameters of x/feemarket module.", "operationId": "Params", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ethermint.feemarket.v1.QueryParamsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/haqq/coinomics/v1/params": { "get": { "summary": "Params retrieves coinomics moudle params.", "operationId": "Params", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/haqq.coinomics.v1.QueryParamsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/haqq/coinomics/v1/reward_coefficient": { "get": { "summary": "InflationRewardCoefficientRate APY rate for staking rewards", "operationId": "RewardCoefficient", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/haqq.coinomics.v1.QueryRewardCoefficientResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/haqq/vesting/v1/balances/{address}": { "get": { "summary": "Balances retrieves the unvested, vested and locked tokens for a vesting\naccount", "operationId": "Balances", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/haqq.vesting.v1.QueryBalancesResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "address", "description": "address of the clawback vesting account", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/haqq/vesting/v1/total_locked": { "get": { "summary": "TotalLocked retrieves the total summary of all unvested, vested and locked\ntokens", "operationId": "TotalLocked", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/haqq.vesting.v1.QueryTotalLockedResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/haqqd/coinomics/v1/max_supply": { "get": { "summary": "MaxSupply retrieves total coins of all eras and when mint ended.", "operationId": "MaxSupply", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/haqq.coinomics.v1.QueryMaxSupplyResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/ibc/apps/fee/v1/channels/{channelId}/ports/{portId}/fee_enabled": { "get": { "summary": "FeeEnabledChannel returns true if the provided port and channel identifiers belong to a fee enabled channel", "operationId": "FeeEnabledChannel", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.applications.fee.v1.QueryFeeEnabledChannelResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "channelId", "description": "unique channel identifier", "in": "path", "required": true, "type": "string" }, { "name": "portId", "description": "unique port identifier", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/ibc/apps/fee/v1/channels/{channelId}/ports/{portId}/incentivized_packets": { "get": { "summary": "Gets all incentivized packets for a specific channel", "operationId": "IncentivizedPacketsForChannel", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.applications.fee.v1.QueryIncentivizedPacketsForChannelResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "channelId", "in": "path", "required": true, "type": "string" }, { "name": "portId", "in": "path", "required": true, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" }, { "name": "queryHeight", "description": "Height to query at", "in": "query", "required": false, "type": "string", "format": "uint64" } ], "tags": [ "Query" ] } }, "/ibc/apps/fee/v1/channels/{channelId}/relayers/{relayer}/counterparty_payee": { "get": { "summary": "CounterpartyPayee returns the registered counterparty payee for forward relaying", "operationId": "CounterpartyPayee", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.applications.fee.v1.QueryCounterpartyPayeeResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "channelId", "description": "unique channel identifier", "in": "path", "required": true, "type": "string" }, { "name": "relayer", "description": "the relayer address to which the counterparty is registered", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/ibc/apps/fee/v1/channels/{channelId}/relayers/{relayer}/payee": { "get": { "summary": "Payee returns the registered payee address for a specific channel given the relayer address", "operationId": "Payee", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.applications.fee.v1.QueryPayeeResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "channelId", "description": "unique channel identifier", "in": "path", "required": true, "type": "string" }, { "name": "relayer", "description": "the relayer address to which the distribution address is registered", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/ibc/apps/fee/v1/channels/{packetId.channelId}/ports/{packetId.portId}/sequences/{packetId.sequence}/incentivized_packet": { "get": { "summary": "IncentivizedPacket returns all packet fees for a packet given its identifier", "operationId": "IncentivizedPacket", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.applications.fee.v1.QueryIncentivizedPacketResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "packetId.channelId", "description": "channel unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "packetId.portId", "description": "channel port identifier", "in": "path", "required": true, "type": "string" }, { "name": "packetId.sequence", "description": "packet sequence", "in": "path", "required": true, "type": "string", "format": "uint64" }, { "name": "queryHeight", "description": "block height at which to query", "in": "query", "required": false, "type": "string", "format": "uint64" } ], "tags": [ "Query" ] } }, "/ibc/apps/fee/v1/channels/{packetId.channelId}/ports/{packetId.portId}/sequences/{packetId.sequence}/total_ack_fees": { "get": { "summary": "TotalAckFees returns the total acknowledgement fees for a packet given its identifier", "operationId": "TotalAckFees", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.applications.fee.v1.QueryTotalAckFeesResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "packetId.channelId", "description": "channel unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "packetId.portId", "description": "channel port identifier", "in": "path", "required": true, "type": "string" }, { "name": "packetId.sequence", "description": "packet sequence", "in": "path", "required": true, "type": "string", "format": "uint64" } ], "tags": [ "Query" ] } }, "/ibc/apps/fee/v1/channels/{packetId.channelId}/ports/{packetId.portId}/sequences/{packetId.sequence}/total_recv_fees": { "get": { "summary": "TotalRecvFees returns the total receive fees for a packet given its identifier", "operationId": "TotalRecvFees", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.applications.fee.v1.QueryTotalRecvFeesResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "packetId.channelId", "description": "channel unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "packetId.portId", "description": "channel port identifier", "in": "path", "required": true, "type": "string" }, { "name": "packetId.sequence", "description": "packet sequence", "in": "path", "required": true, "type": "string", "format": "uint64" } ], "tags": [ "Query" ] } }, "/ibc/apps/fee/v1/channels/{packetId.channelId}/ports/{packetId.portId}/sequences/{packetId.sequence}/total_timeout_fees": { "get": { "summary": "TotalTimeoutFees returns the total timeout fees for a packet given its identifier", "operationId": "TotalTimeoutFees", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.applications.fee.v1.QueryTotalTimeoutFeesResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "packetId.channelId", "description": "channel unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "packetId.portId", "description": "channel port identifier", "in": "path", "required": true, "type": "string" }, { "name": "packetId.sequence", "description": "packet sequence", "in": "path", "required": true, "type": "string", "format": "uint64" } ], "tags": [ "Query" ] } }, "/ibc/apps/fee/v1/fee_enabled": { "get": { "summary": "FeeEnabledChannels returns a list of all fee enabled channels", "operationId": "FeeEnabledChannels", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.applications.fee.v1.QueryFeeEnabledChannelsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" }, { "name": "queryHeight", "description": "block height at which to query", "in": "query", "required": false, "type": "string", "format": "uint64" } ], "tags": [ "Query" ] } }, "/ibc/apps/fee/v1/incentivized_packets": { "get": { "summary": "IncentivizedPackets returns all incentivized packets and their associated fees", "operationId": "IncentivizedPackets", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.applications.fee.v1.QueryIncentivizedPacketsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" }, { "name": "queryHeight", "description": "block height at which to query", "in": "query", "required": false, "type": "string", "format": "uint64" } ], "tags": [ "Query" ] } }, "/ibc/apps/interchain_accounts/controller/v1/owners/{owner}/connections/{connectionId}": { "get": { "summary": "InterchainAccount returns the interchain account address for a given owner address on a given connection", "operationId": "InterchainAccount", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.applications.interchain_accounts.controller.v1.QueryInterchainAccountResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "owner", "in": "path", "required": true, "type": "string" }, { "name": "connectionId", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/ibc/apps/interchain_accounts/controller/v1/params": { "get": { "summary": "Params queries all parameters of the ICA controller submodule.", "operationId": "Params", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.applications.interchain_accounts.controller.v1.QueryParamsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/ibc/apps/interchain_accounts/host/v1/params": { "get": { "summary": "Params queries all parameters of the ICA host submodule.", "operationId": "Params", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.applications.interchain_accounts.host.v1.QueryParamsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/ibc/apps/transfer/v1/channels/{channelId}/ports/{portId}/escrow_address": { "get": { "summary": "EscrowAddress returns the escrow address for a particular port and channel id.", "operationId": "EscrowAddress", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.applications.transfer.v1.QueryEscrowAddressResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "channelId", "description": "unique channel identifier", "in": "path", "required": true, "type": "string" }, { "name": "portId", "description": "unique port identifier", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/ibc/apps/transfer/v1/denom_hashes/{trace}": { "get": { "summary": "DenomHash queries a denomination hash information.", "operationId": "DenomHash", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.applications.transfer.v1.QueryDenomHashResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "trace", "description": "The denomination trace ([port_id]/[channel_id])+/[denom]", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/ibc/apps/transfer/v1/denom_traces": { "get": { "summary": "DenomTraces queries all denomination traces.", "operationId": "DenomTraces", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.applications.transfer.v1.QueryDenomTracesResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/ibc/apps/transfer/v1/denom_traces/{hash}": { "get": { "summary": "DenomTrace queries a denomination trace information.", "operationId": "DenomTrace", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.applications.transfer.v1.QueryDenomTraceResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "hash", "description": "hash (in hex format) or denom (full denom with ibc prefix) of the denomination trace information.", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/ibc/apps/transfer/v1/params": { "get": { "summary": "Params queries all parameters of the ibc-transfer module.", "operationId": "Params", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.applications.transfer.v1.QueryParamsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/ibc/core/channel/v1/channels": { "get": { "summary": "Channels queries all the IBC channels of a chain.", "operationId": "Channels", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.channel.v1.QueryChannelsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/ibc/core/channel/v1/channels/{channelId}/ports/{portId}": { "get": { "summary": "Channel queries an IBC Channel.", "operationId": "Channel", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.channel.v1.QueryChannelResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "channelId", "description": "channel unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "portId", "description": "port unique identifier", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/ibc/core/channel/v1/channels/{channelId}/ports/{portId}/client_state": { "get": { "summary": "ChannelClientState queries for the client state for the channel associated\nwith the provided channel identifiers.", "operationId": "ChannelClientState", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.channel.v1.QueryChannelClientStateResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "channelId", "description": "channel unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "portId", "description": "port unique identifier", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/ibc/core/channel/v1/channels/{channelId}/ports/{portId}/consensus_state/revision/{revisionNumber}/height/{revisionHeight}": { "get": { "summary": "ChannelConsensusState queries for the consensus state for the channel\nassociated with the provided channel identifiers.", "operationId": "ChannelConsensusState", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.channel.v1.QueryChannelConsensusStateResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "channelId", "description": "channel unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "portId", "description": "port unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "revisionNumber", "description": "revision number of the consensus state", "in": "path", "required": true, "type": "string", "format": "uint64" }, { "name": "revisionHeight", "description": "revision height of the consensus state", "in": "path", "required": true, "type": "string", "format": "uint64" } ], "tags": [ "Query" ] } }, "/ibc/core/channel/v1/channels/{channelId}/ports/{portId}/next_sequence": { "get": { "summary": "NextSequenceReceive returns the next receive sequence for a given channel.", "operationId": "NextSequenceReceive", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.channel.v1.QueryNextSequenceReceiveResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "channelId", "description": "channel unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "portId", "description": "port unique identifier", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/ibc/core/channel/v1/channels/{channelId}/ports/{portId}/packet_acknowledgements": { "get": { "summary": "PacketAcknowledgements returns all the packet acknowledgements associated\nwith a channel.", "operationId": "PacketAcknowledgements", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.channel.v1.QueryPacketAcknowledgementsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "channelId", "description": "channel unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "portId", "description": "port unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" }, { "name": "packetCommitmentSequences", "description": "list of packet sequences", "in": "query", "required": false, "type": "array", "items": { "type": "string", "format": "uint64" }, "collectionFormat": "multi" } ], "tags": [ "Query" ] } }, "/ibc/core/channel/v1/channels/{channelId}/ports/{portId}/packet_acks/{sequence}": { "get": { "summary": "PacketAcknowledgement queries a stored packet acknowledgement hash.", "operationId": "PacketAcknowledgement", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.channel.v1.QueryPacketAcknowledgementResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "channelId", "description": "channel unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "portId", "description": "port unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "sequence", "description": "packet sequence", "in": "path", "required": true, "type": "string", "format": "uint64" } ], "tags": [ "Query" ] } }, "/ibc/core/channel/v1/channels/{channelId}/ports/{portId}/packet_commitments": { "get": { "summary": "PacketCommitments returns all the packet commitments hashes associated\nwith a channel.", "operationId": "PacketCommitments", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.channel.v1.QueryPacketCommitmentsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "channelId", "description": "channel unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "portId", "description": "port unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/ibc/core/channel/v1/channels/{channelId}/ports/{portId}/packet_commitments/{packetAckSequences}/unreceived_acks": { "get": { "summary": "UnreceivedAcks returns all the unreceived IBC acknowledgements associated\nwith a channel and sequences.", "operationId": "UnreceivedAcks", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.channel.v1.QueryUnreceivedAcksResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "channelId", "description": "channel unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "portId", "description": "port unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "packetAckSequences", "description": "list of acknowledgement sequences", "in": "path", "required": true, "type": "array", "items": { "type": "string", "format": "uint64" }, "collectionFormat": "csv", "minItems": 1 } ], "tags": [ "Query" ] } }, "/ibc/core/channel/v1/channels/{channelId}/ports/{portId}/packet_commitments/{packetCommitmentSequences}/unreceived_packets": { "get": { "summary": "UnreceivedPackets returns all the unreceived IBC packets associated with a\nchannel and sequences.", "operationId": "UnreceivedPackets", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.channel.v1.QueryUnreceivedPacketsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "channelId", "description": "channel unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "portId", "description": "port unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "packetCommitmentSequences", "description": "list of packet sequences", "in": "path", "required": true, "type": "array", "items": { "type": "string", "format": "uint64" }, "collectionFormat": "csv", "minItems": 1 } ], "tags": [ "Query" ] } }, "/ibc/core/channel/v1/channels/{channelId}/ports/{portId}/packet_commitments/{sequence}": { "get": { "summary": "PacketCommitment queries a stored packet commitment hash.", "operationId": "PacketCommitment", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.channel.v1.QueryPacketCommitmentResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "channelId", "description": "channel unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "portId", "description": "port unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "sequence", "description": "packet sequence", "in": "path", "required": true, "type": "string", "format": "uint64" } ], "tags": [ "Query" ] } }, "/ibc/core/channel/v1/channels/{channelId}/ports/{portId}/packet_receipts/{sequence}": { "get": { "summary": "PacketReceipt queries if a given packet sequence has been received on the\nqueried chain", "operationId": "PacketReceipt", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.channel.v1.QueryPacketReceiptResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "channelId", "description": "channel unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "portId", "description": "port unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "sequence", "description": "packet sequence", "in": "path", "required": true, "type": "string", "format": "uint64" } ], "tags": [ "Query" ] } }, "/ibc/core/channel/v1/connections/{connection}/channels": { "get": { "summary": "ConnectionChannels queries all the channels associated with a connection\nend.", "operationId": "ConnectionChannels", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.channel.v1.QueryConnectionChannelsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "connection", "description": "connection unique identifier", "in": "path", "required": true, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/ibc/core/client/v1/client_states": { "get": { "summary": "ClientStates queries all the IBC light clients of a chain.", "operationId": "ClientStates", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.client.v1.QueryClientStatesResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/ibc/core/client/v1/client_states/{clientId}": { "get": { "summary": "ClientState queries an IBC light client.", "operationId": "ClientState", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.client.v1.QueryClientStateResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "clientId", "description": "client state unique identifier", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/ibc/core/client/v1/client_status/{clientId}": { "get": { "summary": "Status queries the status of an IBC client.", "operationId": "ClientStatus", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.client.v1.QueryClientStatusResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "clientId", "description": "client unique identifier", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/ibc/core/client/v1/consensus_states/{clientId}": { "get": { "summary": "ConsensusStates queries all the consensus state associated with a given\nclient.", "operationId": "ConsensusStates", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.client.v1.QueryConsensusStatesResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "clientId", "description": "client identifier", "in": "path", "required": true, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/ibc/core/client/v1/consensus_states/{clientId}/heights": { "get": { "summary": "ConsensusStateHeights queries the height of every consensus states associated with a given client.", "operationId": "ConsensusStateHeights", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.client.v1.QueryConsensusStateHeightsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "clientId", "description": "client identifier", "in": "path", "required": true, "type": "string" }, { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/ibc/core/client/v1/consensus_states/{clientId}/revision/{revisionNumber}/height/{revisionHeight}": { "get": { "summary": "ConsensusState queries a consensus state associated with a client state at\na given height.", "operationId": "ConsensusState", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.client.v1.QueryConsensusStateResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "clientId", "description": "client identifier", "in": "path", "required": true, "type": "string" }, { "name": "revisionNumber", "description": "consensus state revision number", "in": "path", "required": true, "type": "string", "format": "uint64" }, { "name": "revisionHeight", "description": "consensus state revision height", "in": "path", "required": true, "type": "string", "format": "uint64" }, { "name": "latestHeight", "description": "latest_height overrrides the height field and queries the latest stored\nConsensusState", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/ibc/core/client/v1/params": { "get": { "summary": "ClientParams queries all parameters of the ibc client submodule.", "operationId": "ClientParams", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.client.v1.QueryClientParamsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/ibc/core/client/v1/upgraded_client_states": { "get": { "summary": "UpgradedClientState queries an Upgraded IBC light client.", "operationId": "UpgradedClientState", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.client.v1.QueryUpgradedClientStateResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/ibc/core/client/v1/upgraded_consensus_states": { "get": { "summary": "UpgradedConsensusState queries an Upgraded IBC consensus state.", "operationId": "UpgradedConsensusState", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.client.v1.QueryUpgradedConsensusStateResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/ibc/core/connection/v1/client_connections/{clientId}": { "get": { "summary": "ClientConnections queries the connection paths associated with a client\nstate.", "operationId": "ClientConnections", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.connection.v1.QueryClientConnectionsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "clientId", "description": "client identifier associated with a connection", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/ibc/core/connection/v1/connections": { "get": { "summary": "Connections queries all the IBC connections of a chain.", "operationId": "Connections", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.connection.v1.QueryConnectionsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "pagination.key", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "pagination.offset", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.limit", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", "in": "query", "required": false, "type": "string", "format": "uint64" }, { "name": "pagination.countTotal", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", "in": "query", "required": false, "type": "boolean" }, { "name": "pagination.reverse", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Query" ] } }, "/ibc/core/connection/v1/connections/{connectionId}": { "get": { "summary": "Connection queries an IBC connection end.", "operationId": "Connection", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.connection.v1.QueryConnectionResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "connectionId", "description": "connection unique identifier", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/ibc/core/connection/v1/connections/{connectionId}/client_state": { "get": { "summary": "ConnectionClientState queries the client state associated with the\nconnection.", "operationId": "ConnectionClientState", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.connection.v1.QueryConnectionClientStateResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "connectionId", "description": "connection identifier", "in": "path", "required": true, "type": "string" } ], "tags": [ "Query" ] } }, "/ibc/core/connection/v1/connections/{connectionId}/consensus_state/revision/{revisionNumber}/height/{revisionHeight}": { "get": { "summary": "ConnectionConsensusState queries the consensus state associated with the\nconnection.", "operationId": "ConnectionConsensusState", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.connection.v1.QueryConnectionConsensusStateResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "connectionId", "description": "connection identifier", "in": "path", "required": true, "type": "string" }, { "name": "revisionNumber", "in": "path", "required": true, "type": "string", "format": "uint64" }, { "name": "revisionHeight", "in": "path", "required": true, "type": "string", "format": "uint64" } ], "tags": [ "Query" ] } }, "/ibc/core/connection/v1/params": { "get": { "summary": "ConnectionParams queries all parameters of the ibc connection submodule.", "operationId": "ConnectionParams", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/ibc.core.connection.v1.QueryConnectionParamsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } } }, "definitions": { "cosmos.app.v1alpha1.Config": { "type": "object", "properties": { "modules": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.app.v1alpha1.ModuleConfig" }, "description": "modules are the module configurations for the app." } }, "description": "Config represents the configuration for a Cosmos SDK ABCI app.\nIt is intended that all state machine logic including the version of\nbaseapp and tx handlers (and possibly even Tendermint) that an app needs\ncan be described in a config object. For compatibility, the framework should\nallow a mixture of declarative and imperative app wiring, however, apps\nthat strive for the maximum ease of maintainability should be able to describe\ntheir state machine with a config object alone." }, "cosmos.app.v1alpha1.ModuleConfig": { "type": "object", "properties": { "name": { "type": "string", "description": "name is the unique name of the module within the app. It should be a name\nthat persists between different versions of a module so that modules\ncan be smoothly upgraded to new versions.\n\nFor example, for the module cosmos.bank.module.v1.Module, we may chose\nto simply name the module \"bank\" in the app. When we upgrade to\ncosmos.bank.module.v2.Module, the app-specific name \"bank\" stays the same\nand the framework knows that the v2 module should receive all the same state\nthat the v1 module had. Note: modules should provide info on which versions\nthey can migrate from in the ModuleDescriptor.can_migration_from field." }, "config": { "$ref": "#/definitions/google.protobuf.Any", "description": "config is the config object for the module. Module config messages should\ndefine a ModuleDescriptor using the cosmos.app.v1alpha1.is_module extension." } }, "description": "ModuleConfig is a module configuration for an app." }, "cosmos.app.v1alpha1.QueryConfigResponse": { "type": "object", "properties": { "config": { "$ref": "#/definitions/cosmos.app.v1alpha1.Config", "description": "config is the current app config." } }, "description": "QueryConfigRequest is the Query/Config response type." }, "cosmos.auth.v1beta1.AddressBytesToStringResponse": { "type": "object", "properties": { "addressString": { "type": "string" } }, "description": "AddressBytesToStringResponse is the response type for AddressString rpc method.\n\nSince: cosmos-sdk 0.46" }, "cosmos.auth.v1beta1.AddressStringToBytesResponse": { "type": "object", "properties": { "addressBytes": { "type": "string", "format": "byte" } }, "description": "AddressStringToBytesResponse is the response type for AddressBytes rpc method.\n\nSince: cosmos-sdk 0.46" }, "cosmos.auth.v1beta1.Bech32PrefixResponse": { "type": "object", "properties": { "bech32Prefix": { "type": "string" } }, "description": "Bech32PrefixResponse is the response type for Bech32Prefix rpc method.\n\nSince: cosmos-sdk 0.46" }, "cosmos.auth.v1beta1.Params": { "type": "object", "properties": { "maxMemoCharacters": { "type": "string", "format": "uint64" }, "txSigLimit": { "type": "string", "format": "uint64" }, "txSizeCostPerByte": { "type": "string", "format": "uint64" }, "sigVerifyCostEd25519": { "type": "string", "format": "uint64" }, "sigVerifyCostSecp256k1": { "type": "string", "format": "uint64" } }, "description": "Params defines the parameters for the auth module." }, "cosmos.auth.v1beta1.QueryAccountAddressByIDResponse": { "type": "object", "properties": { "accountAddress": { "type": "string" } }, "title": "QueryAccountAddressByIDResponse is the response type for AccountAddressByID rpc method" }, "cosmos.auth.v1beta1.QueryAccountResponse": { "type": "object", "properties": { "account": { "$ref": "#/definitions/google.protobuf.Any", "description": "account defines the account of the corresponding address." } }, "description": "QueryAccountResponse is the response type for the Query/Account RPC method." }, "cosmos.auth.v1beta1.QueryAccountsResponse": { "type": "object", "properties": { "accounts": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/google.protobuf.Any" }, "title": "accounts are the existing accounts" }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryAccountsResponse is the response type for the Query/Accounts RPC method.\n\nSince: cosmos-sdk 0.43" }, "cosmos.auth.v1beta1.QueryModuleAccountsResponse": { "type": "object", "properties": { "accounts": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/google.protobuf.Any" } } }, "description": "QueryModuleAccountsResponse is the response type for the Query/ModuleAccounts RPC method.\n\nSince: cosmos-sdk 0.46" }, "cosmos.auth.v1beta1.QueryParamsResponse": { "type": "object", "properties": { "params": { "$ref": "#/definitions/cosmos.auth.v1beta1.Params", "description": "params defines the parameters of the module." } }, "description": "QueryParamsResponse is the response type for the Query/Params RPC method." }, "cosmos.authz.v1beta1.Grant": { "type": "object", "properties": { "authorization": { "$ref": "#/definitions/google.protobuf.Any" }, "expiration": { "type": "string", "format": "date-time", "title": "time when the grant will expire and will be pruned. If null, then the grant\ndoesn't have a time expiration (other conditions in `authorization`\nmay apply to invalidate the grant)" } }, "description": "Grant gives permissions to execute\nthe provide method with expiration time." }, "cosmos.authz.v1beta1.GrantAuthorization": { "type": "object", "properties": { "granter": { "type": "string" }, "grantee": { "type": "string" }, "authorization": { "$ref": "#/definitions/google.protobuf.Any" }, "expiration": { "type": "string", "format": "date-time" } }, "title": "GrantAuthorization extends a grant with both the addresses of the grantee and granter.\nIt is used in genesis.proto and query.proto" }, "cosmos.authz.v1beta1.QueryGranteeGrantsResponse": { "type": "object", "properties": { "grants": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.authz.v1beta1.GrantAuthorization" }, "description": "grants is a list of grants granted to the grantee." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines an pagination for the response." } }, "description": "QueryGranteeGrantsResponse is the response type for the Query/GranteeGrants RPC method." }, "cosmos.authz.v1beta1.QueryGranterGrantsResponse": { "type": "object", "properties": { "grants": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.authz.v1beta1.GrantAuthorization" }, "description": "grants is a list of grants granted by the granter." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines an pagination for the response." } }, "description": "QueryGranterGrantsResponse is the response type for the Query/GranterGrants RPC method." }, "cosmos.authz.v1beta1.QueryGrantsResponse": { "type": "object", "properties": { "grants": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.authz.v1beta1.Grant" }, "description": "authorizations is a list of grants granted for grantee by granter." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines an pagination for the response." } }, "description": "QueryGrantsResponse is the response type for the Query/Authorizations RPC method." }, "cosmos.bank.v1beta1.DenomOwner": { "type": "object", "properties": { "address": { "type": "string", "description": "address defines the address that owns a particular denomination." }, "balance": { "$ref": "#/definitions/cosmos.base.v1beta1.Coin", "description": "balance is the balance of the denominated coin for an account." } }, "description": "DenomOwner defines structure representing an account that owns or holds a\nparticular denominated token. It contains the account address and account\nbalance of the denominated token.\n\nSince: cosmos-sdk 0.46" }, "cosmos.bank.v1beta1.DenomUnit": { "type": "object", "properties": { "denom": { "type": "string", "description": "denom represents the string name of the given denom unit (e.g uatom)." }, "exponent": { "type": "integer", "format": "int64", "description": "exponent represents power of 10 exponent that one must\nraise the base_denom to in order to equal the given DenomUnit's denom\n1 denom = 10^exponent base_denom\n(e.g. with a base_denom of uatom, one can create a DenomUnit of 'atom' with\nexponent = 6, thus: 1 atom = 10^6 uatom)." }, "aliases": { "type": "array", "items": { "type": "string" }, "title": "aliases is a list of string aliases for the given denom" } }, "description": "DenomUnit represents a struct that describes a given\ndenomination unit of the basic token." }, "cosmos.bank.v1beta1.Metadata": { "type": "object", "properties": { "description": { "type": "string" }, "denomUnits": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.bank.v1beta1.DenomUnit" }, "title": "denom_units represents the list of DenomUnit's for a given coin" }, "base": { "type": "string", "description": "base represents the base denom (should be the DenomUnit with exponent = 0)." }, "display": { "type": "string", "description": "display indicates the suggested denom that should be\ndisplayed in clients." }, "name": { "type": "string", "description": "Since: cosmos-sdk 0.43", "title": "name defines the name of the token (eg: Cosmos Atom)" }, "symbol": { "type": "string", "description": "symbol is the token symbol usually shown on exchanges (eg: ATOM). This can\nbe the same as the display.\n\nSince: cosmos-sdk 0.43" }, "uri": { "type": "string", "description": "URI to a document (on or off-chain) that contains additional information. Optional.\n\nSince: cosmos-sdk 0.46" }, "uriHash": { "type": "string", "description": "URIHash is a sha256 hash of a document pointed by URI. It's used to verify that\nthe document didn't change. Optional.\n\nSince: cosmos-sdk 0.46" } }, "description": "Metadata represents a struct that describes\na basic token." }, "cosmos.bank.v1beta1.Params": { "type": "object", "properties": { "sendEnabled": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.bank.v1beta1.SendEnabled" } }, "defaultSendEnabled": { "type": "boolean" } }, "description": "Params defines the parameters for the bank module." }, "cosmos.bank.v1beta1.QueryAllBalancesResponse": { "type": "object", "properties": { "balances": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" }, "description": "balances is the balances of all the coins." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryAllBalancesResponse is the response type for the Query/AllBalances RPC\nmethod." }, "cosmos.bank.v1beta1.QueryBalanceResponse": { "type": "object", "properties": { "balance": { "$ref": "#/definitions/cosmos.base.v1beta1.Coin", "description": "balance is the balance of the coin." } }, "description": "QueryBalanceResponse is the response type for the Query/Balance RPC method." }, "cosmos.bank.v1beta1.QueryDenomMetadataResponse": { "type": "object", "properties": { "metadata": { "$ref": "#/definitions/cosmos.bank.v1beta1.Metadata", "description": "metadata describes and provides all the client information for the requested token." } }, "description": "QueryDenomMetadataResponse is the response type for the Query/DenomMetadata RPC\nmethod." }, "cosmos.bank.v1beta1.QueryDenomOwnersResponse": { "type": "object", "properties": { "denomOwners": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.bank.v1beta1.DenomOwner" } }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryDenomOwnersResponse defines the RPC response of a DenomOwners RPC query.\n\nSince: cosmos-sdk 0.46" }, "cosmos.bank.v1beta1.QueryDenomsMetadataResponse": { "type": "object", "properties": { "metadatas": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.bank.v1beta1.Metadata" }, "description": "metadata provides the client information for all the registered tokens." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryDenomsMetadataResponse is the response type for the Query/DenomsMetadata RPC\nmethod." }, "cosmos.bank.v1beta1.QueryParamsResponse": { "type": "object", "properties": { "params": { "$ref": "#/definitions/cosmos.bank.v1beta1.Params" } }, "description": "QueryParamsResponse defines the response type for querying x/bank parameters." }, "cosmos.bank.v1beta1.QuerySpendableBalancesResponse": { "type": "object", "properties": { "balances": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" }, "description": "balances is the spendable balances of all the coins." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QuerySpendableBalancesResponse defines the gRPC response structure for querying\nan account's spendable balances.\n\nSince: cosmos-sdk 0.46" }, "cosmos.bank.v1beta1.QuerySupplyOfResponse": { "type": "object", "properties": { "amount": { "$ref": "#/definitions/cosmos.base.v1beta1.Coin", "description": "amount is the supply of the coin." } }, "description": "QuerySupplyOfResponse is the response type for the Query/SupplyOf RPC method." }, "cosmos.bank.v1beta1.QueryTotalSupplyResponse": { "type": "object", "properties": { "supply": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" }, "title": "supply is the supply of the coins" }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response.\n\nSince: cosmos-sdk 0.43" } }, "title": "QueryTotalSupplyResponse is the response type for the Query/TotalSupply RPC\nmethod" }, "cosmos.bank.v1beta1.SendEnabled": { "type": "object", "properties": { "denom": { "type": "string" }, "enabled": { "type": "boolean" } }, "description": "SendEnabled maps coin denom to a send_enabled status (whether a denom is\nsendable)." }, "cosmos.base.abci.v1beta1.ABCIMessageLog": { "type": "object", "properties": { "msgIndex": { "type": "integer", "format": "int64" }, "log": { "type": "string" }, "events": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.abci.v1beta1.StringEvent" }, "description": "Events contains a slice of Event objects that were emitted during some\nexecution." } }, "description": "ABCIMessageLog defines a structure containing an indexed tx ABCI message log." }, "cosmos.base.abci.v1beta1.Attribute": { "type": "object", "properties": { "key": { "type": "string" }, "value": { "type": "string" } }, "description": "Attribute defines an attribute wrapper where the key and value are\nstrings instead of raw bytes." }, "cosmos.base.abci.v1beta1.GasInfo": { "type": "object", "properties": { "gasWanted": { "type": "string", "format": "uint64", "description": "GasWanted is the maximum units of work we allow this tx to perform." }, "gasUsed": { "type": "string", "format": "uint64", "description": "GasUsed is the amount of gas actually consumed." } }, "description": "GasInfo defines tx execution gas context." }, "cosmos.base.abci.v1beta1.Result": { "type": "object", "properties": { "data": { "type": "string", "format": "byte", "description": "Data is any data returned from message or handler execution. It MUST be\nlength prefixed in order to separate data from multiple message executions.\nDeprecated. This field is still populated, but prefer msg_response instead\nbecause it also contains the Msg response typeURL." }, "log": { "type": "string", "description": "Log contains the log information from message or handler execution." }, "events": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/tendermint.abci.Event" }, "description": "Events contains a slice of Event objects that were emitted during message\nor handler execution." }, "msgResponses": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/google.protobuf.Any" }, "description": "msg_responses contains the Msg handler responses type packed in Anys.\n\nSince: cosmos-sdk 0.46" } }, "description": "Result is the union of ResponseFormat and ResponseCheckTx." }, "cosmos.base.abci.v1beta1.StringEvent": { "type": "object", "properties": { "type": { "type": "string" }, "attributes": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.abci.v1beta1.Attribute" } } }, "description": "StringEvent defines en Event object wrapper where all the attributes\ncontain key/value pairs that are strings instead of raw bytes." }, "cosmos.base.abci.v1beta1.TxResponse": { "type": "object", "properties": { "height": { "type": "string", "format": "int64", "title": "The block height" }, "txhash": { "type": "string", "description": "The transaction hash." }, "codespace": { "type": "string", "title": "Namespace for the Code" }, "code": { "type": "integer", "format": "int64", "description": "Response code." }, "data": { "type": "string", "description": "Result bytes, if any." }, "rawLog": { "type": "string", "description": "The output of the application's logger (raw string). May be\nnon-deterministic." }, "logs": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.abci.v1beta1.ABCIMessageLog" }, "description": "The output of the application's logger (typed). May be non-deterministic." }, "info": { "type": "string", "description": "Additional information. May be non-deterministic." }, "gasWanted": { "type": "string", "format": "int64", "description": "Amount of gas requested for transaction." }, "gasUsed": { "type": "string", "format": "int64", "description": "Amount of gas consumed by transaction." }, "tx": { "$ref": "#/definitions/google.protobuf.Any", "description": "The request transaction bytes." }, "timestamp": { "type": "string", "description": "Time of the previous block. For heights > 1, it's the weighted median of\nthe timestamps of the valid votes in the block.LastCommit. For height == 1,\nit's genesis time." }, "events": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/tendermint.abci.Event" }, "description": "Events defines all the events emitted by processing a transaction. Note,\nthese events include those emitted by processing all the messages and those\nemitted from the ante. Whereas Logs contains the events, with\nadditional metadata, emitted only by processing the messages.\n\nSince: cosmos-sdk 0.42.11, 0.44.5, 0.45" } }, "description": "TxResponse defines a structure containing relevant tx data and metadata. The\ntags are stringified and the log is JSON decoded." }, "cosmos.base.query.v1beta1.PageRequest": { "type": "object", "properties": { "key": { "type": "string", "format": "byte", "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set." }, "offset": { "type": "string", "format": "uint64", "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set." }, "limit": { "type": "string", "format": "uint64", "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app." }, "countTotal": { "type": "boolean", "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set." }, "reverse": { "type": "boolean", "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43" } }, "description": "message SomeRequest {\n Foo some_parameter = 1;\n PageRequest pagination = 2;\n }", "title": "PageRequest is to be embedded in gRPC request messages for efficient\npagination. Ex:" }, "cosmos.base.query.v1beta1.PageResponse": { "type": "object", "properties": { "nextKey": { "type": "string", "format": "byte", "description": "next_key is the key to be passed to PageRequest.key to\nquery the next page most efficiently. It will be empty if\nthere are no more results." }, "total": { "type": "string", "format": "uint64", "title": "total is total number of results available if PageRequest.count_total\nwas set, its value is undefined otherwise" } }, "description": "PageResponse is to be embedded in gRPC response messages where the\ncorresponding request message has used PageRequest.\n\n message SomeResponse {\n repeated Bar results = 1;\n PageResponse page = 2;\n }" }, "cosmos.base.tendermint.v1beta1.ABCIQueryResponse": { "type": "object", "properties": { "code": { "type": "integer", "format": "int64" }, "log": { "type": "string", "title": "nondeterministic" }, "info": { "type": "string", "title": "nondeterministic" }, "index": { "type": "string", "format": "int64" }, "key": { "type": "string", "format": "byte" }, "value": { "type": "string", "format": "byte" }, "proofOps": { "$ref": "#/definitions/cosmos.base.tendermint.v1beta1.ProofOps" }, "height": { "type": "string", "format": "int64" }, "codespace": { "type": "string" } }, "description": "ABCIQueryResponse defines the response structure for the ABCIQuery gRPC\nquery.\n\nNote: This type is a duplicate of the ResponseQuery proto type defined in\nTendermint." }, "cosmos.base.tendermint.v1beta1.Block": { "type": "object", "properties": { "header": { "$ref": "#/definitions/cosmos.base.tendermint.v1beta1.Header" }, "data": { "$ref": "#/definitions/tendermint.types.Data" }, "evidence": { "$ref": "#/definitions/tendermint.types.EvidenceList" }, "lastCommit": { "$ref": "#/definitions/tendermint.types.Commit" } }, "description": "Block is tendermint type Block, with the Header proposer address\nfield converted to bech32 string." }, "cosmos.base.tendermint.v1beta1.GetBlockByHeightResponse": { "type": "object", "properties": { "blockId": { "$ref": "#/definitions/tendermint.types.BlockID" }, "block": { "$ref": "#/definitions/tendermint.types.Block", "title": "Deprecated: please use `sdk_block` instead" }, "sdkBlock": { "$ref": "#/definitions/cosmos.base.tendermint.v1beta1.Block", "title": "Since: cosmos-sdk 0.47" } }, "description": "GetBlockByHeightResponse is the response type for the Query/GetBlockByHeight\nRPC method." }, "cosmos.base.tendermint.v1beta1.GetLatestBlockResponse": { "type": "object", "properties": { "blockId": { "$ref": "#/definitions/tendermint.types.BlockID" }, "block": { "$ref": "#/definitions/tendermint.types.Block", "title": "Deprecated: please use `sdk_block` instead" }, "sdkBlock": { "$ref": "#/definitions/cosmos.base.tendermint.v1beta1.Block", "title": "Since: cosmos-sdk 0.47" } }, "description": "GetLatestBlockResponse is the response type for the Query/GetLatestBlock RPC\nmethod." }, "cosmos.base.tendermint.v1beta1.GetLatestValidatorSetResponse": { "type": "object", "properties": { "blockHeight": { "type": "string", "format": "int64" }, "validators": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.tendermint.v1beta1.Validator" } }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines an pagination for the response." } }, "description": "GetLatestValidatorSetResponse is the response type for the\nQuery/GetValidatorSetByHeight RPC method." }, "cosmos.base.tendermint.v1beta1.GetNodeInfoResponse": { "type": "object", "properties": { "defaultNodeInfo": { "$ref": "#/definitions/tendermint.p2p.DefaultNodeInfo" }, "applicationVersion": { "$ref": "#/definitions/cosmos.base.tendermint.v1beta1.VersionInfo" } }, "description": "GetNodeInfoResponse is the response type for the Query/GetNodeInfo RPC\nmethod." }, "cosmos.base.tendermint.v1beta1.GetSyncingResponse": { "type": "object", "properties": { "syncing": { "type": "boolean" } }, "description": "GetSyncingResponse is the response type for the Query/GetSyncing RPC method." }, "cosmos.base.tendermint.v1beta1.GetValidatorSetByHeightResponse": { "type": "object", "properties": { "blockHeight": { "type": "string", "format": "int64" }, "validators": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.tendermint.v1beta1.Validator" } }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines an pagination for the response." } }, "description": "GetValidatorSetByHeightResponse is the response type for the\nQuery/GetValidatorSetByHeight RPC method." }, "cosmos.base.tendermint.v1beta1.Header": { "type": "object", "properties": { "version": { "$ref": "#/definitions/tendermint.version.Consensus", "title": "basic block info" }, "chainId": { "type": "string" }, "height": { "type": "string", "format": "int64" }, "time": { "type": "string", "format": "date-time" }, "lastBlockId": { "$ref": "#/definitions/tendermint.types.BlockID", "title": "prev block info" }, "lastCommitHash": { "type": "string", "format": "byte", "description": "commit from validators from the last block", "title": "hashes of block data" }, "dataHash": { "type": "string", "format": "byte", "title": "transactions" }, "validatorsHash": { "type": "string", "format": "byte", "description": "validators for the current block", "title": "hashes from the app output from the prev block" }, "nextValidatorsHash": { "type": "string", "format": "byte", "title": "validators for the next block" }, "consensusHash": { "type": "string", "format": "byte", "title": "consensus params for current block" }, "appHash": { "type": "string", "format": "byte", "title": "state after txs from the previous block" }, "lastResultsHash": { "type": "string", "format": "byte", "title": "root hash of all results from the txs from the previous block" }, "evidenceHash": { "type": "string", "format": "byte", "description": "evidence included in the block", "title": "consensus info" }, "proposerAddress": { "type": "string", "description": "proposer_address is the original block proposer address, formatted as a Bech32 string.\nIn Tendermint, this type is `bytes`, but in the SDK, we convert it to a Bech32 string\nfor better UX.\n\noriginal proposer of the block" } }, "description": "Header defines the structure of a Tendermint block header." }, "cosmos.base.tendermint.v1beta1.Module": { "type": "object", "properties": { "path": { "type": "string", "title": "module path" }, "version": { "type": "string", "title": "module version" }, "sum": { "type": "string", "title": "checksum" } }, "title": "Module is the type for VersionInfo" }, "cosmos.base.tendermint.v1beta1.ProofOp": { "type": "object", "properties": { "type": { "type": "string" }, "key": { "type": "string", "format": "byte" }, "data": { "type": "string", "format": "byte" } }, "description": "ProofOp defines an operation used for calculating Merkle root. The data could\nbe arbitrary format, providing nessecary data for example neighbouring node\nhash.\n\nNote: This type is a duplicate of the ProofOp proto type defined in\nTendermint." }, "cosmos.base.tendermint.v1beta1.ProofOps": { "type": "object", "properties": { "ops": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.tendermint.v1beta1.ProofOp" } } }, "description": "ProofOps is Merkle proof defined by the list of ProofOps.\n\nNote: This type is a duplicate of the ProofOps proto type defined in\nTendermint." }, "cosmos.base.tendermint.v1beta1.Validator": { "type": "object", "properties": { "address": { "type": "string" }, "pubKey": { "$ref": "#/definitions/google.protobuf.Any" }, "votingPower": { "type": "string", "format": "int64" }, "proposerPriority": { "type": "string", "format": "int64" } }, "description": "Validator is the type for the validator-set." }, "cosmos.base.tendermint.v1beta1.VersionInfo": { "type": "object", "properties": { "name": { "type": "string" }, "appName": { "type": "string" }, "version": { "type": "string" }, "gitCommit": { "type": "string" }, "buildTags": { "type": "string" }, "goVersion": { "type": "string" }, "buildDeps": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.tendermint.v1beta1.Module" } }, "cosmosSdkVersion": { "type": "string", "title": "Since: cosmos-sdk 0.43" } }, "description": "VersionInfo is the type for the GetNodeInfoResponse message." }, "cosmos.base.v1beta1.Coin": { "type": "object", "properties": { "denom": { "type": "string" }, "amount": { "type": "string" } }, "description": "Coin defines a token with a denomination and an amount.\n\nNOTE: The amount field is an Int which implements the custom method\nsignatures required by gogoproto." }, "cosmos.base.v1beta1.DecCoin": { "type": "object", "properties": { "denom": { "type": "string" }, "amount": { "type": "string" } }, "description": "DecCoin defines a token with a denomination and a decimal amount.\n\nNOTE: The amount field is an Dec which implements the custom method\nsignatures required by gogoproto." }, "cosmos.crypto.multisig.v1beta1.CompactBitArray": { "type": "object", "properties": { "extraBitsStored": { "type": "integer", "format": "int64" }, "elems": { "type": "string", "format": "byte" } }, "description": "CompactBitArray is an implementation of a space efficient bit array.\nThis is used to ensure that the encoded data takes up a minimal amount of\nspace after proto encoding.\nThis is not thread safe, and is not intended for concurrent usage." }, "cosmos.distribution.v1beta1.DelegationDelegatorReward": { "type": "object", "properties": { "validatorAddress": { "type": "string" }, "reward": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.DecCoin" } } }, "description": "DelegationDelegatorReward represents the properties\nof a delegator's delegation reward." }, "cosmos.distribution.v1beta1.Params": { "type": "object", "properties": { "communityTax": { "type": "string" }, "baseProposerReward": { "type": "string" }, "bonusProposerReward": { "type": "string" }, "withdrawAddrEnabled": { "type": "boolean" } }, "description": "Params defines the set of params for the distribution module." }, "cosmos.distribution.v1beta1.QueryCommunityPoolResponse": { "type": "object", "properties": { "pool": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.DecCoin" }, "description": "pool defines community pool's coins." } }, "description": "QueryCommunityPoolResponse is the response type for the Query/CommunityPool\nRPC method." }, "cosmos.distribution.v1beta1.QueryDelegationRewardsResponse": { "type": "object", "properties": { "rewards": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.DecCoin" }, "description": "rewards defines the rewards accrued by a delegation." } }, "description": "QueryDelegationRewardsResponse is the response type for the\nQuery/DelegationRewards RPC method." }, "cosmos.distribution.v1beta1.QueryDelegationTotalRewardsResponse": { "type": "object", "properties": { "rewards": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.distribution.v1beta1.DelegationDelegatorReward" }, "description": "rewards defines all the rewards accrued by a delegator." }, "total": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.DecCoin" }, "description": "total defines the sum of all the rewards." } }, "description": "QueryDelegationTotalRewardsResponse is the response type for the\nQuery/DelegationTotalRewards RPC method." }, "cosmos.distribution.v1beta1.QueryDelegatorValidatorsResponse": { "type": "object", "properties": { "validators": { "type": "array", "items": { "type": "string" }, "description": "validators defines the validators a delegator is delegating for." } }, "description": "QueryDelegatorValidatorsResponse is the response type for the\nQuery/DelegatorValidators RPC method." }, "cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressResponse": { "type": "object", "properties": { "withdrawAddress": { "type": "string", "description": "withdraw_address defines the delegator address to query for." } }, "description": "QueryDelegatorWithdrawAddressResponse is the response type for the\nQuery/DelegatorWithdrawAddress RPC method." }, "cosmos.distribution.v1beta1.QueryParamsResponse": { "type": "object", "properties": { "params": { "$ref": "#/definitions/cosmos.distribution.v1beta1.Params", "description": "params defines the parameters of the module." } }, "description": "QueryParamsResponse is the response type for the Query/Params RPC method." }, "cosmos.distribution.v1beta1.QueryValidatorCommissionResponse": { "type": "object", "properties": { "commission": { "$ref": "#/definitions/cosmos.distribution.v1beta1.ValidatorAccumulatedCommission", "description": "commission defines the commision the validator received." } }, "title": "QueryValidatorCommissionResponse is the response type for the\nQuery/ValidatorCommission RPC method" }, "cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsResponse": { "type": "object", "properties": { "rewards": { "$ref": "#/definitions/cosmos.distribution.v1beta1.ValidatorOutstandingRewards" } }, "description": "QueryValidatorOutstandingRewardsResponse is the response type for the\nQuery/ValidatorOutstandingRewards RPC method." }, "cosmos.distribution.v1beta1.QueryValidatorSlashesResponse": { "type": "object", "properties": { "slashes": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.distribution.v1beta1.ValidatorSlashEvent" }, "description": "slashes defines the slashes the validator received." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryValidatorSlashesResponse is the response type for the\nQuery/ValidatorSlashes RPC method." }, "cosmos.distribution.v1beta1.ValidatorAccumulatedCommission": { "type": "object", "properties": { "commission": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.DecCoin" } } }, "description": "ValidatorAccumulatedCommission represents accumulated commission\nfor a validator kept as a running counter, can be withdrawn at any time." }, "cosmos.distribution.v1beta1.ValidatorOutstandingRewards": { "type": "object", "properties": { "rewards": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.DecCoin" } } }, "description": "ValidatorOutstandingRewards represents outstanding (un-withdrawn) rewards\nfor a validator inexpensive to track, allows simple sanity checks." }, "cosmos.distribution.v1beta1.ValidatorSlashEvent": { "type": "object", "properties": { "validatorPeriod": { "type": "string", "format": "uint64" }, "fraction": { "type": "string" } }, "description": "ValidatorSlashEvent represents a validator slash event.\nHeight is implicit within the store key.\nThis is needed to calculate appropriate amount of staking tokens\nfor delegations which are withdrawn after a slash has occurred." }, "cosmos.evidence.v1beta1.QueryAllEvidenceResponse": { "type": "object", "properties": { "evidence": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/google.protobuf.Any" }, "description": "evidence returns all evidences." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryAllEvidenceResponse is the response type for the Query/AllEvidence RPC\nmethod." }, "cosmos.evidence.v1beta1.QueryEvidenceResponse": { "type": "object", "properties": { "evidence": { "$ref": "#/definitions/google.protobuf.Any", "description": "evidence returns the requested evidence." } }, "description": "QueryEvidenceResponse is the response type for the Query/Evidence RPC method." }, "cosmos.feegrant.v1beta1.Grant": { "type": "object", "properties": { "granter": { "type": "string", "description": "granter is the address of the user granting an allowance of their funds." }, "grantee": { "type": "string", "description": "grantee is the address of the user being granted an allowance of another user's funds." }, "allowance": { "$ref": "#/definitions/google.protobuf.Any", "description": "allowance can be any of basic, periodic, allowed fee allowance." } }, "title": "Grant is stored in the KVStore to record a grant with full context" }, "cosmos.feegrant.v1beta1.QueryAllowanceResponse": { "type": "object", "properties": { "allowance": { "$ref": "#/definitions/cosmos.feegrant.v1beta1.Grant", "description": "allowance is a allowance granted for grantee by granter." } }, "description": "QueryAllowanceResponse is the response type for the Query/Allowance RPC method." }, "cosmos.feegrant.v1beta1.QueryAllowancesByGranterResponse": { "type": "object", "properties": { "allowances": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.feegrant.v1beta1.Grant" }, "description": "allowances that have been issued by the granter." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines an pagination for the response." } }, "description": "QueryAllowancesByGranterResponse is the response type for the Query/AllowancesByGranter RPC method.\n\nSince: cosmos-sdk 0.46" }, "cosmos.feegrant.v1beta1.QueryAllowancesResponse": { "type": "object", "properties": { "allowances": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.feegrant.v1beta1.Grant" }, "description": "allowances are allowance's granted for grantee by granter." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines an pagination for the response." } }, "description": "QueryAllowancesResponse is the response type for the Query/Allowances RPC method." }, "cosmos.gov.v1.Deposit": { "type": "object", "properties": { "proposalId": { "type": "string", "format": "uint64" }, "depositor": { "type": "string" }, "amount": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" } } }, "description": "Deposit defines an amount deposited by an account address to an active\nproposal." }, "cosmos.gov.v1.DepositParams": { "type": "object", "properties": { "minDeposit": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" }, "description": "Minimum deposit for a proposal to enter voting period." }, "maxDepositPeriod": { "type": "string", "description": "Maximum period for Atom holders to deposit on a proposal. Initial value: 2\n months." } }, "description": "DepositParams defines the params for deposits on governance proposals." }, "cosmos.gov.v1.Proposal": { "type": "object", "properties": { "id": { "type": "string", "format": "uint64" }, "messages": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/google.protobuf.Any" } }, "status": { "$ref": "#/definitions/cosmos.gov.v1.ProposalStatus" }, "finalTallyResult": { "$ref": "#/definitions/cosmos.gov.v1.TallyResult", "description": "final_tally_result is the final tally result of the proposal. When\nquerying a proposal via gRPC, this field is not populated until the\nproposal's voting period has ended." }, "submitTime": { "type": "string", "format": "date-time" }, "depositEndTime": { "type": "string", "format": "date-time" }, "totalDeposit": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" } }, "votingStartTime": { "type": "string", "format": "date-time" }, "votingEndTime": { "type": "string", "format": "date-time" }, "metadata": { "type": "string", "description": "metadata is any arbitrary metadata attached to the proposal." } }, "description": "Proposal defines the core field members of a governance proposal." }, "cosmos.gov.v1.ProposalStatus": { "type": "string", "enum": [ "PROPOSAL_STATUS_UNSPECIFIED", "PROPOSAL_STATUS_DEPOSIT_PERIOD", "PROPOSAL_STATUS_VOTING_PERIOD", "PROPOSAL_STATUS_PASSED", "PROPOSAL_STATUS_REJECTED", "PROPOSAL_STATUS_FAILED" ], "default": "PROPOSAL_STATUS_UNSPECIFIED", "description": "ProposalStatus enumerates the valid statuses of a proposal.\n\n - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default proposal status.\n - PROPOSAL_STATUS_DEPOSIT_PERIOD: PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit\nperiod.\n - PROPOSAL_STATUS_VOTING_PERIOD: PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting\nperiod.\n - PROPOSAL_STATUS_PASSED: PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has\npassed.\n - PROPOSAL_STATUS_REJECTED: PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has\nbeen rejected.\n - PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has\nfailed." }, "cosmos.gov.v1.QueryDepositResponse": { "type": "object", "properties": { "deposit": { "$ref": "#/definitions/cosmos.gov.v1.Deposit", "description": "deposit defines the requested deposit." } }, "description": "QueryDepositResponse is the response type for the Query/Deposit RPC method." }, "cosmos.gov.v1.QueryDepositsResponse": { "type": "object", "properties": { "deposits": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.gov.v1.Deposit" } }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryDepositsResponse is the response type for the Query/Deposits RPC method." }, "cosmos.gov.v1.QueryParamsResponse": { "type": "object", "properties": { "votingParams": { "$ref": "#/definitions/cosmos.gov.v1.VotingParams", "description": "voting_params defines the parameters related to voting." }, "depositParams": { "$ref": "#/definitions/cosmos.gov.v1.DepositParams", "description": "deposit_params defines the parameters related to deposit." }, "tallyParams": { "$ref": "#/definitions/cosmos.gov.v1.TallyParams", "description": "tally_params defines the parameters related to tally." } }, "description": "QueryParamsResponse is the response type for the Query/Params RPC method." }, "cosmos.gov.v1.QueryProposalResponse": { "type": "object", "properties": { "proposal": { "$ref": "#/definitions/cosmos.gov.v1.Proposal" } }, "description": "QueryProposalResponse is the response type for the Query/Proposal RPC method." }, "cosmos.gov.v1.QueryProposalsResponse": { "type": "object", "properties": { "proposals": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.gov.v1.Proposal" } }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryProposalsResponse is the response type for the Query/Proposals RPC\nmethod." }, "cosmos.gov.v1.QueryTallyResultResponse": { "type": "object", "properties": { "tally": { "$ref": "#/definitions/cosmos.gov.v1.TallyResult", "description": "tally defines the requested tally." } }, "description": "QueryTallyResultResponse is the response type for the Query/Tally RPC method." }, "cosmos.gov.v1.QueryVoteResponse": { "type": "object", "properties": { "vote": { "$ref": "#/definitions/cosmos.gov.v1.Vote", "description": "vote defined the queried vote." } }, "description": "QueryVoteResponse is the response type for the Query/Vote RPC method." }, "cosmos.gov.v1.QueryVotesResponse": { "type": "object", "properties": { "votes": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.gov.v1.Vote" }, "description": "votes defined the queried votes." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryVotesResponse is the response type for the Query/Votes RPC method." }, "cosmos.gov.v1.TallyParams": { "type": "object", "properties": { "quorum": { "type": "string", "description": "Minimum percentage of total stake needed to vote for a result to be\n considered valid." }, "threshold": { "type": "string", "description": "Minimum proportion of Yes votes for proposal to pass. Default value: 0.5." }, "vetoThreshold": { "type": "string", "description": "Minimum value of Veto votes to Total votes ratio for proposal to be\n vetoed. Default value: 1/3." } }, "description": "TallyParams defines the params for tallying votes on governance proposals." }, "cosmos.gov.v1.TallyResult": { "type": "object", "properties": { "yesCount": { "type": "string" }, "abstainCount": { "type": "string" }, "noCount": { "type": "string" }, "noWithVetoCount": { "type": "string" } }, "description": "TallyResult defines a standard tally for a governance proposal." }, "cosmos.gov.v1.Vote": { "type": "object", "properties": { "proposalId": { "type": "string", "format": "uint64" }, "voter": { "type": "string" }, "options": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.gov.v1.WeightedVoteOption" } }, "metadata": { "type": "string", "description": "metadata is any arbitrary metadata to attached to the vote." } }, "description": "Vote defines a vote on a governance proposal.\nA Vote consists of a proposal ID, the voter, and the vote option." }, "cosmos.gov.v1.VoteOption": { "type": "string", "enum": [ "VOTE_OPTION_UNSPECIFIED", "VOTE_OPTION_YES", "VOTE_OPTION_ABSTAIN", "VOTE_OPTION_NO", "VOTE_OPTION_NO_WITH_VETO" ], "default": "VOTE_OPTION_UNSPECIFIED", "description": "VoteOption enumerates the valid vote options for a given governance proposal.\n\n - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines a no-op vote option.\n - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option.\n - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option.\n - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option.\n - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option." }, "cosmos.gov.v1.VotingParams": { "type": "object", "properties": { "votingPeriod": { "type": "string", "description": "Length of the voting period." } }, "description": "VotingParams defines the params for voting on governance proposals." }, "cosmos.gov.v1.WeightedVoteOption": { "type": "object", "properties": { "option": { "$ref": "#/definitions/cosmos.gov.v1.VoteOption" }, "weight": { "type": "string" } }, "description": "WeightedVoteOption defines a unit of vote for vote split." }, "cosmos.gov.v1beta1.Deposit": { "type": "object", "properties": { "proposalId": { "type": "string", "format": "uint64" }, "depositor": { "type": "string" }, "amount": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" } } }, "description": "Deposit defines an amount deposited by an account address to an active\nproposal." }, "cosmos.gov.v1beta1.DepositParams": { "type": "object", "properties": { "minDeposit": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" }, "description": "Minimum deposit for a proposal to enter voting period." }, "maxDepositPeriod": { "type": "string", "description": "Maximum period for Atom holders to deposit on a proposal. Initial value: 2\n months." } }, "description": "DepositParams defines the params for deposits on governance proposals." }, "cosmos.gov.v1beta1.Proposal": { "type": "object", "properties": { "proposalId": { "type": "string", "format": "uint64" }, "content": { "$ref": "#/definitions/google.protobuf.Any" }, "status": { "$ref": "#/definitions/cosmos.gov.v1beta1.ProposalStatus" }, "finalTallyResult": { "$ref": "#/definitions/cosmos.gov.v1beta1.TallyResult", "description": "final_tally_result is the final tally result of the proposal. When\nquerying a proposal via gRPC, this field is not populated until the\nproposal's voting period has ended." }, "submitTime": { "type": "string", "format": "date-time" }, "depositEndTime": { "type": "string", "format": "date-time" }, "totalDeposit": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" } }, "votingStartTime": { "type": "string", "format": "date-time" }, "votingEndTime": { "type": "string", "format": "date-time" } }, "description": "Proposal defines the core field members of a governance proposal." }, "cosmos.gov.v1beta1.ProposalStatus": { "type": "string", "enum": [ "PROPOSAL_STATUS_UNSPECIFIED", "PROPOSAL_STATUS_DEPOSIT_PERIOD", "PROPOSAL_STATUS_VOTING_PERIOD", "PROPOSAL_STATUS_PASSED", "PROPOSAL_STATUS_REJECTED", "PROPOSAL_STATUS_FAILED" ], "default": "PROPOSAL_STATUS_UNSPECIFIED", "description": "ProposalStatus enumerates the valid statuses of a proposal.\n\n - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default proposal status.\n - PROPOSAL_STATUS_DEPOSIT_PERIOD: PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit\nperiod.\n - PROPOSAL_STATUS_VOTING_PERIOD: PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting\nperiod.\n - PROPOSAL_STATUS_PASSED: PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has\npassed.\n - PROPOSAL_STATUS_REJECTED: PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has\nbeen rejected.\n - PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has\nfailed." }, "cosmos.gov.v1beta1.QueryDepositResponse": { "type": "object", "properties": { "deposit": { "$ref": "#/definitions/cosmos.gov.v1beta1.Deposit", "description": "deposit defines the requested deposit." } }, "description": "QueryDepositResponse is the response type for the Query/Deposit RPC method." }, "cosmos.gov.v1beta1.QueryDepositsResponse": { "type": "object", "properties": { "deposits": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.gov.v1beta1.Deposit" } }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryDepositsResponse is the response type for the Query/Deposits RPC method." }, "cosmos.gov.v1beta1.QueryParamsResponse": { "type": "object", "properties": { "votingParams": { "$ref": "#/definitions/cosmos.gov.v1beta1.VotingParams", "description": "voting_params defines the parameters related to voting." }, "depositParams": { "$ref": "#/definitions/cosmos.gov.v1beta1.DepositParams", "description": "deposit_params defines the parameters related to deposit." }, "tallyParams": { "$ref": "#/definitions/cosmos.gov.v1beta1.TallyParams", "description": "tally_params defines the parameters related to tally." } }, "description": "QueryParamsResponse is the response type for the Query/Params RPC method." }, "cosmos.gov.v1beta1.QueryProposalResponse": { "type": "object", "properties": { "proposal": { "$ref": "#/definitions/cosmos.gov.v1beta1.Proposal" } }, "description": "QueryProposalResponse is the response type for the Query/Proposal RPC method." }, "cosmos.gov.v1beta1.QueryProposalsResponse": { "type": "object", "properties": { "proposals": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.gov.v1beta1.Proposal" } }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryProposalsResponse is the response type for the Query/Proposals RPC\nmethod." }, "cosmos.gov.v1beta1.QueryTallyResultResponse": { "type": "object", "properties": { "tally": { "$ref": "#/definitions/cosmos.gov.v1beta1.TallyResult", "description": "tally defines the requested tally." } }, "description": "QueryTallyResultResponse is the response type for the Query/Tally RPC method." }, "cosmos.gov.v1beta1.QueryVoteResponse": { "type": "object", "properties": { "vote": { "$ref": "#/definitions/cosmos.gov.v1beta1.Vote", "description": "vote defined the queried vote." } }, "description": "QueryVoteResponse is the response type for the Query/Vote RPC method." }, "cosmos.gov.v1beta1.QueryVotesResponse": { "type": "object", "properties": { "votes": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.gov.v1beta1.Vote" }, "description": "votes defined the queried votes." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryVotesResponse is the response type for the Query/Votes RPC method." }, "cosmos.gov.v1beta1.TallyParams": { "type": "object", "properties": { "quorum": { "type": "string", "format": "byte", "description": "Minimum percentage of total stake needed to vote for a result to be\n considered valid." }, "threshold": { "type": "string", "format": "byte", "description": "Minimum proportion of Yes votes for proposal to pass. Default value: 0.5." }, "vetoThreshold": { "type": "string", "format": "byte", "description": "Minimum value of Veto votes to Total votes ratio for proposal to be\n vetoed. Default value: 1/3." } }, "description": "TallyParams defines the params for tallying votes on governance proposals." }, "cosmos.gov.v1beta1.TallyResult": { "type": "object", "properties": { "yes": { "type": "string" }, "abstain": { "type": "string" }, "no": { "type": "string" }, "noWithVeto": { "type": "string" } }, "description": "TallyResult defines a standard tally for a governance proposal." }, "cosmos.gov.v1beta1.Vote": { "type": "object", "properties": { "proposalId": { "type": "string", "format": "uint64" }, "voter": { "type": "string" }, "option": { "$ref": "#/definitions/cosmos.gov.v1beta1.VoteOption", "description": "Deprecated: Prefer to use `options` instead. This field is set in queries\nif and only if `len(options) == 1` and that option has weight 1. In all\nother cases, this field will default to VOTE_OPTION_UNSPECIFIED." }, "options": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.gov.v1beta1.WeightedVoteOption" }, "title": "Since: cosmos-sdk 0.43" } }, "description": "Vote defines a vote on a governance proposal.\nA Vote consists of a proposal ID, the voter, and the vote option." }, "cosmos.gov.v1beta1.VoteOption": { "type": "string", "enum": [ "VOTE_OPTION_UNSPECIFIED", "VOTE_OPTION_YES", "VOTE_OPTION_ABSTAIN", "VOTE_OPTION_NO", "VOTE_OPTION_NO_WITH_VETO" ], "default": "VOTE_OPTION_UNSPECIFIED", "description": "VoteOption enumerates the valid vote options for a given governance proposal.\n\n - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines a no-op vote option.\n - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option.\n - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option.\n - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option.\n - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option." }, "cosmos.gov.v1beta1.VotingParams": { "type": "object", "properties": { "votingPeriod": { "type": "string", "description": "Length of the voting period." } }, "description": "VotingParams defines the params for voting on governance proposals." }, "cosmos.gov.v1beta1.WeightedVoteOption": { "type": "object", "properties": { "option": { "$ref": "#/definitions/cosmos.gov.v1beta1.VoteOption" }, "weight": { "type": "string" } }, "description": "WeightedVoteOption defines a unit of vote for vote split.\n\nSince: cosmos-sdk 0.43" }, "cosmos.group.v1.GroupInfo": { "type": "object", "properties": { "id": { "type": "string", "format": "uint64", "description": "id is the unique ID of the group." }, "admin": { "type": "string", "description": "admin is the account address of the group's admin." }, "metadata": { "type": "string", "description": "metadata is any arbitrary metadata to attached to the group." }, "version": { "type": "string", "format": "uint64", "title": "version is used to track changes to a group's membership structure that\nwould break existing proposals. Whenever any members weight is changed,\nor any member is added or removed this version is incremented and will\ncause proposals based on older versions of this group to fail" }, "totalWeight": { "type": "string", "description": "total_weight is the sum of the group members' weights." }, "createdAt": { "type": "string", "format": "date-time", "description": "created_at is a timestamp specifying when a group was created." } }, "description": "GroupInfo represents the high-level on-chain information for a group." }, "cosmos.group.v1.GroupMember": { "type": "object", "properties": { "groupId": { "type": "string", "format": "uint64", "description": "group_id is the unique ID of the group." }, "member": { "$ref": "#/definitions/cosmos.group.v1.Member", "description": "member is the member data." } }, "description": "GroupMember represents the relationship between a group and a member." }, "cosmos.group.v1.GroupPolicyInfo": { "type": "object", "properties": { "address": { "type": "string", "description": "address is the account address of group policy." }, "groupId": { "type": "string", "format": "uint64", "description": "group_id is the unique ID of the group." }, "admin": { "type": "string", "description": "admin is the account address of the group admin." }, "metadata": { "type": "string", "description": "metadata is any arbitrary metadata to attached to the group policy." }, "version": { "type": "string", "format": "uint64", "description": "version is used to track changes to a group's GroupPolicyInfo structure that\nwould create a different result on a running proposal." }, "decisionPolicy": { "$ref": "#/definitions/google.protobuf.Any", "description": "decision_policy specifies the group policy's decision policy." }, "createdAt": { "type": "string", "format": "date-time", "description": "created_at is a timestamp specifying when a group policy was created." } }, "description": "GroupPolicyInfo represents the high-level on-chain information for a group policy." }, "cosmos.group.v1.Member": { "type": "object", "properties": { "address": { "type": "string", "description": "address is the member's account address." }, "weight": { "type": "string", "description": "weight is the member's voting weight that should be greater than 0." }, "metadata": { "type": "string", "description": "metadata is any arbitrary metadata attached to the member." }, "addedAt": { "type": "string", "format": "date-time", "description": "added_at is a timestamp specifying when a member was added." } }, "description": "Member represents a group member with an account address,\nnon-zero weight, metadata and added_at timestamp." }, "cosmos.group.v1.Proposal": { "type": "object", "properties": { "id": { "type": "string", "format": "uint64", "description": "id is the unique id of the proposal." }, "groupPolicyAddress": { "type": "string", "description": "group_policy_address is the account address of group policy." }, "metadata": { "type": "string", "description": "metadata is any arbitrary metadata to attached to the proposal." }, "proposers": { "type": "array", "items": { "type": "string" }, "description": "proposers are the account addresses of the proposers." }, "submitTime": { "type": "string", "format": "date-time", "description": "submit_time is a timestamp specifying when a proposal was submitted." }, "groupVersion": { "type": "string", "format": "uint64", "description": "group_version tracks the version of the group at proposal submission.\nThis field is here for informational purposes only." }, "groupPolicyVersion": { "type": "string", "format": "uint64", "description": "group_policy_version tracks the version of the group policy at proposal submission.\nWhen a decision policy is changed, existing proposals from previous policy\nversions will become invalid with the `ABORTED` status.\nThis field is here for informational purposes only." }, "status": { "$ref": "#/definitions/cosmos.group.v1.ProposalStatus", "description": "status represents the high level position in the life cycle of the proposal. Initial value is Submitted." }, "finalTallyResult": { "$ref": "#/definitions/cosmos.group.v1.TallyResult", "description": "final_tally_result contains the sums of all weighted votes for this\nproposal for each vote option. It is empty at submission, and only\npopulated after tallying, at voting period end or at proposal execution,\nwhichever happens first." }, "votingPeriodEnd": { "type": "string", "format": "date-time", "description": "voting_period_end is the timestamp before which voting must be done.\nUnless a successfull MsgExec is called before (to execute a proposal whose\ntally is successful before the voting period ends), tallying will be done\nat this point, and the `final_tally_result`and `status` fields will be\naccordingly updated." }, "executorResult": { "$ref": "#/definitions/cosmos.group.v1.ProposalExecutorResult", "description": "executor_result is the final result of the proposal execution. Initial value is NotRun." }, "messages": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/google.protobuf.Any" }, "description": "messages is a list of `sdk.Msg`s that will be executed if the proposal passes." } }, "description": "Proposal defines a group proposal. Any member of a group can submit a proposal\nfor a group policy to decide upon.\nA proposal consists of a set of `sdk.Msg`s that will be executed if the proposal\npasses as well as some optional metadata associated with the proposal." }, "cosmos.group.v1.ProposalExecutorResult": { "type": "string", "enum": [ "PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED", "PROPOSAL_EXECUTOR_RESULT_NOT_RUN", "PROPOSAL_EXECUTOR_RESULT_SUCCESS", "PROPOSAL_EXECUTOR_RESULT_FAILURE" ], "default": "PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED", "description": "ProposalExecutorResult defines types of proposal executor results.\n\n - PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED: An empty value is not allowed.\n - PROPOSAL_EXECUTOR_RESULT_NOT_RUN: We have not yet run the executor.\n - PROPOSAL_EXECUTOR_RESULT_SUCCESS: The executor was successful and proposed action updated state.\n - PROPOSAL_EXECUTOR_RESULT_FAILURE: The executor returned an error and proposed action didn't update state." }, "cosmos.group.v1.ProposalStatus": { "type": "string", "enum": [ "PROPOSAL_STATUS_UNSPECIFIED", "PROPOSAL_STATUS_SUBMITTED", "PROPOSAL_STATUS_ACCEPTED", "PROPOSAL_STATUS_REJECTED", "PROPOSAL_STATUS_ABORTED", "PROPOSAL_STATUS_WITHDRAWN" ], "default": "PROPOSAL_STATUS_UNSPECIFIED", "description": "ProposalStatus defines proposal statuses.\n\n - PROPOSAL_STATUS_UNSPECIFIED: An empty value is invalid and not allowed.\n - PROPOSAL_STATUS_SUBMITTED: Initial status of a proposal when submitted.\n - PROPOSAL_STATUS_ACCEPTED: Final status of a proposal when the final tally is done and the outcome\npasses the group policy's decision policy.\n - PROPOSAL_STATUS_REJECTED: Final status of a proposal when the final tally is done and the outcome\nis rejected by the group policy's decision policy.\n - PROPOSAL_STATUS_ABORTED: Final status of a proposal when the group policy is modified before the\nfinal tally.\n - PROPOSAL_STATUS_WITHDRAWN: A proposal can be withdrawn before the voting start time by the owner.\nWhen this happens the final status is Withdrawn." }, "cosmos.group.v1.QueryGroupInfoResponse": { "type": "object", "properties": { "info": { "$ref": "#/definitions/cosmos.group.v1.GroupInfo", "description": "info is the GroupInfo for the group." } }, "description": "QueryGroupInfoResponse is the Query/GroupInfo response type." }, "cosmos.group.v1.QueryGroupMembersResponse": { "type": "object", "properties": { "members": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.group.v1.GroupMember" }, "description": "members are the members of the group with given group_id." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryGroupMembersResponse is the Query/GroupMembersResponse response type." }, "cosmos.group.v1.QueryGroupPoliciesByAdminResponse": { "type": "object", "properties": { "groupPolicies": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.group.v1.GroupPolicyInfo" }, "description": "group_policies are the group policies info with provided admin." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryGroupPoliciesByAdminResponse is the Query/GroupPoliciesByAdmin response type." }, "cosmos.group.v1.QueryGroupPoliciesByGroupResponse": { "type": "object", "properties": { "groupPolicies": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.group.v1.GroupPolicyInfo" }, "description": "group_policies are the group policies info associated with the provided group." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryGroupPoliciesByGroupResponse is the Query/GroupPoliciesByGroup response type." }, "cosmos.group.v1.QueryGroupPolicyInfoResponse": { "type": "object", "properties": { "info": { "$ref": "#/definitions/cosmos.group.v1.GroupPolicyInfo", "description": "info is the GroupPolicyInfo for the group policy." } }, "description": "QueryGroupPolicyInfoResponse is the Query/GroupPolicyInfo response type." }, "cosmos.group.v1.QueryGroupsByAdminResponse": { "type": "object", "properties": { "groups": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.group.v1.GroupInfo" }, "description": "groups are the groups info with the provided admin." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryGroupsByAdminResponse is the Query/GroupsByAdminResponse response type." }, "cosmos.group.v1.QueryGroupsByMemberResponse": { "type": "object", "properties": { "groups": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.group.v1.GroupInfo" }, "description": "groups are the groups info with the provided group member." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryGroupsByMemberResponse is the Query/GroupsByMember response type." }, "cosmos.group.v1.QueryProposalResponse": { "type": "object", "properties": { "proposal": { "$ref": "#/definitions/cosmos.group.v1.Proposal", "description": "proposal is the proposal info." } }, "description": "QueryProposalResponse is the Query/Proposal response type." }, "cosmos.group.v1.QueryProposalsByGroupPolicyResponse": { "type": "object", "properties": { "proposals": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.group.v1.Proposal" }, "description": "proposals are the proposals with given group policy." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryProposalsByGroupPolicyResponse is the Query/ProposalByGroupPolicy response type." }, "cosmos.group.v1.QueryTallyResultResponse": { "type": "object", "properties": { "tally": { "$ref": "#/definitions/cosmos.group.v1.TallyResult", "description": "tally defines the requested tally." } }, "description": "QueryTallyResultResponse is the Query/TallyResult response type." }, "cosmos.group.v1.QueryVoteByProposalVoterResponse": { "type": "object", "properties": { "vote": { "$ref": "#/definitions/cosmos.group.v1.Vote", "description": "vote is the vote with given proposal_id and voter." } }, "description": "QueryVoteByProposalVoterResponse is the Query/VoteByProposalVoter response type." }, "cosmos.group.v1.QueryVotesByProposalResponse": { "type": "object", "properties": { "votes": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.group.v1.Vote" }, "description": "votes are the list of votes for given proposal_id." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryVotesByProposalResponse is the Query/VotesByProposal response type." }, "cosmos.group.v1.QueryVotesByVoterResponse": { "type": "object", "properties": { "votes": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.group.v1.Vote" }, "description": "votes are the list of votes by given voter." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryVotesByVoterResponse is the Query/VotesByVoter response type." }, "cosmos.group.v1.TallyResult": { "type": "object", "properties": { "yesCount": { "type": "string", "description": "yes_count is the weighted sum of yes votes." }, "abstainCount": { "type": "string", "description": "abstain_count is the weighted sum of abstainers." }, "noCount": { "type": "string", "description": "no_count is the weighted sum of no votes." }, "noWithVetoCount": { "type": "string", "description": "no_with_veto_count is the weighted sum of veto." } }, "description": "TallyResult represents the sum of weighted votes for each vote option." }, "cosmos.group.v1.Vote": { "type": "object", "properties": { "proposalId": { "type": "string", "format": "uint64", "description": "proposal is the unique ID of the proposal." }, "voter": { "type": "string", "description": "voter is the account address of the voter." }, "option": { "$ref": "#/definitions/cosmos.group.v1.VoteOption", "description": "option is the voter's choice on the proposal." }, "metadata": { "type": "string", "description": "metadata is any arbitrary metadata to attached to the vote." }, "submitTime": { "type": "string", "format": "date-time", "description": "submit_time is the timestamp when the vote was submitted." } }, "description": "Vote represents a vote for a proposal." }, "cosmos.group.v1.VoteOption": { "type": "string", "enum": [ "VOTE_OPTION_UNSPECIFIED", "VOTE_OPTION_YES", "VOTE_OPTION_ABSTAIN", "VOTE_OPTION_NO", "VOTE_OPTION_NO_WITH_VETO" ], "default": "VOTE_OPTION_UNSPECIFIED", "description": "VoteOption enumerates the valid vote options for a given proposal.\n\n - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines an unspecified vote option which will\nreturn an error.\n - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option.\n - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option.\n - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option.\n - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option." }, "cosmos.mint.v1beta1.Params": { "type": "object", "properties": { "mintDenom": { "type": "string", "title": "type of coin to mint" }, "inflationRateChange": { "type": "string", "title": "maximum annual change in inflation rate" }, "inflationMax": { "type": "string", "title": "maximum inflation rate" }, "inflationMin": { "type": "string", "title": "minimum inflation rate" }, "goalBonded": { "type": "string", "title": "goal of percent bonded atoms" }, "blocksPerYear": { "type": "string", "format": "uint64", "title": "expected blocks per year" } }, "description": "Params holds parameters for the mint module." }, "cosmos.mint.v1beta1.QueryAnnualProvisionsResponse": { "type": "object", "properties": { "annualProvisions": { "type": "string", "format": "byte", "description": "annual_provisions is the current minting annual provisions value." } }, "description": "QueryAnnualProvisionsResponse is the response type for the\nQuery/AnnualProvisions RPC method." }, "cosmos.mint.v1beta1.QueryInflationResponse": { "type": "object", "properties": { "inflation": { "type": "string", "format": "byte", "description": "inflation is the current minting inflation value." } }, "description": "QueryInflationResponse is the response type for the Query/Inflation RPC\nmethod." }, "cosmos.mint.v1beta1.QueryParamsResponse": { "type": "object", "properties": { "params": { "$ref": "#/definitions/cosmos.mint.v1beta1.Params", "description": "params defines the parameters of the module." } }, "description": "QueryParamsResponse is the response type for the Query/Params RPC method." }, "cosmos.nft.v1beta1.Class": { "type": "object", "properties": { "id": { "type": "string", "title": "id defines the unique identifier of the NFT classification, similar to the contract address of ERC721" }, "name": { "type": "string", "title": "name defines the human-readable name of the NFT classification. Optional" }, "symbol": { "type": "string", "title": "symbol is an abbreviated name for nft classification. Optional" }, "description": { "type": "string", "title": "description is a brief description of nft classification. Optional" }, "uri": { "type": "string", "title": "uri for the class metadata stored off chain. It can define schema for Class and NFT `Data` attributes. Optional" }, "uriHash": { "type": "string", "title": "uri_hash is a hash of the document pointed by uri. Optional" }, "data": { "$ref": "#/definitions/google.protobuf.Any", "title": "data is the app specific metadata of the NFT class. Optional" } }, "description": "Class defines the class of the nft type." }, "cosmos.nft.v1beta1.NFT": { "type": "object", "properties": { "classId": { "type": "string", "title": "class_id associated with the NFT, similar to the contract address of ERC721" }, "id": { "type": "string", "title": "id is a unique identifier of the NFT" }, "uri": { "type": "string", "title": "uri for the NFT metadata stored off chain" }, "uriHash": { "type": "string", "title": "uri_hash is a hash of the document pointed by uri" }, "data": { "$ref": "#/definitions/google.protobuf.Any", "title": "data is an app specific data of the NFT. Optional" } }, "description": "NFT defines the NFT." }, "cosmos.nft.v1beta1.QueryBalanceResponse": { "type": "object", "properties": { "amount": { "type": "string", "format": "uint64" } }, "title": "QueryBalanceResponse is the response type for the Query/Balance RPC method" }, "cosmos.nft.v1beta1.QueryClassResponse": { "type": "object", "properties": { "class": { "$ref": "#/definitions/cosmos.nft.v1beta1.Class" } }, "title": "QueryClassResponse is the response type for the Query/Class RPC method" }, "cosmos.nft.v1beta1.QueryClassesResponse": { "type": "object", "properties": { "classes": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.nft.v1beta1.Class" } }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse" } }, "title": "QueryClassesResponse is the response type for the Query/Classes RPC method" }, "cosmos.nft.v1beta1.QueryNFTResponse": { "type": "object", "properties": { "nft": { "$ref": "#/definitions/cosmos.nft.v1beta1.NFT" } }, "title": "QueryNFTResponse is the response type for the Query/NFT RPC method" }, "cosmos.nft.v1beta1.QueryNFTsResponse": { "type": "object", "properties": { "nfts": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.nft.v1beta1.NFT" } }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse" } }, "title": "QueryNFTsResponse is the response type for the Query/NFTs RPC methods" }, "cosmos.nft.v1beta1.QueryOwnerResponse": { "type": "object", "properties": { "owner": { "type": "string" } }, "title": "QueryOwnerResponse is the response type for the Query/Owner RPC method" }, "cosmos.nft.v1beta1.QuerySupplyResponse": { "type": "object", "properties": { "amount": { "type": "string", "format": "uint64" } }, "title": "QuerySupplyResponse is the response type for the Query/Supply RPC method" }, "cosmos.params.v1beta1.ParamChange": { "type": "object", "properties": { "subspace": { "type": "string" }, "key": { "type": "string" }, "value": { "type": "string" } }, "description": "ParamChange defines an individual parameter change, for use in\nParameterChangeProposal." }, "cosmos.params.v1beta1.QueryParamsResponse": { "type": "object", "properties": { "param": { "$ref": "#/definitions/cosmos.params.v1beta1.ParamChange", "description": "param defines the queried parameter." } }, "description": "QueryParamsResponse is response type for the Query/Params RPC method." }, "cosmos.params.v1beta1.QuerySubspacesResponse": { "type": "object", "properties": { "subspaces": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.params.v1beta1.Subspace" } } }, "description": "QuerySubspacesResponse defines the response types for querying for all\nregistered subspaces and all keys for a subspace.\n\nSince: cosmos-sdk 0.46" }, "cosmos.params.v1beta1.Subspace": { "type": "object", "properties": { "subspace": { "type": "string" }, "keys": { "type": "array", "items": { "type": "string" } } }, "description": "Subspace defines a parameter subspace name and all the keys that exist for\nthe subspace.\n\nSince: cosmos-sdk 0.46" }, "cosmos.slashing.v1beta1.Params": { "type": "object", "properties": { "signedBlocksWindow": { "type": "string", "format": "int64" }, "minSignedPerWindow": { "type": "string", "format": "byte" }, "downtimeJailDuration": { "type": "string" }, "slashFractionDoubleSign": { "type": "string", "format": "byte" }, "slashFractionDowntime": { "type": "string", "format": "byte" } }, "description": "Params represents the parameters used for by the slashing module." }, "cosmos.slashing.v1beta1.QueryParamsResponse": { "type": "object", "properties": { "params": { "$ref": "#/definitions/cosmos.slashing.v1beta1.Params" } }, "title": "QueryParamsResponse is the response type for the Query/Params RPC method" }, "cosmos.slashing.v1beta1.QuerySigningInfoResponse": { "type": "object", "properties": { "valSigningInfo": { "$ref": "#/definitions/cosmos.slashing.v1beta1.ValidatorSigningInfo", "title": "val_signing_info is the signing info of requested val cons address" } }, "title": "QuerySigningInfoResponse is the response type for the Query/SigningInfo RPC\nmethod" }, "cosmos.slashing.v1beta1.QuerySigningInfosResponse": { "type": "object", "properties": { "info": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.slashing.v1beta1.ValidatorSigningInfo" }, "title": "info is the signing info of all validators" }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse" } }, "title": "QuerySigningInfosResponse is the response type for the Query/SigningInfos RPC\nmethod" }, "cosmos.slashing.v1beta1.ValidatorSigningInfo": { "type": "object", "properties": { "address": { "type": "string" }, "startHeight": { "type": "string", "format": "int64", "title": "Height at which validator was first a candidate OR was unjailed" }, "indexOffset": { "type": "string", "format": "int64", "description": "Index which is incremented each time the validator was a bonded\nin a block and may have signed a precommit or not. This in conjunction with the\n`SignedBlocksWindow` param determines the index in the `MissedBlocksBitArray`." }, "jailedUntil": { "type": "string", "format": "date-time", "description": "Timestamp until which the validator is jailed due to liveness downtime." }, "tombstoned": { "type": "boolean", "description": "Whether or not a validator has been tombstoned (killed out of validator set). It is set\nonce the validator commits an equivocation or for any other configured misbehiavor." }, "missedBlocksCounter": { "type": "string", "format": "int64", "description": "A counter kept to avoid unnecessary array reads.\nNote that `Sum(MissedBlocksBitArray)` always equals `MissedBlocksCounter`." } }, "description": "ValidatorSigningInfo defines a validator's signing info for monitoring their\nliveness activity." }, "cosmos.staking.v1beta1.BondStatus": { "type": "string", "enum": [ "BOND_STATUS_UNSPECIFIED", "BOND_STATUS_UNBONDED", "BOND_STATUS_UNBONDING", "BOND_STATUS_BONDED" ], "default": "BOND_STATUS_UNSPECIFIED", "description": "BondStatus is the status of a validator.\n\n - BOND_STATUS_UNSPECIFIED: UNSPECIFIED defines an invalid validator status.\n - BOND_STATUS_UNBONDED: UNBONDED defines a validator that is not bonded.\n - BOND_STATUS_UNBONDING: UNBONDING defines a validator that is unbonding.\n - BOND_STATUS_BONDED: BONDED defines a validator that is bonded." }, "cosmos.staking.v1beta1.Commission": { "type": "object", "properties": { "commissionRates": { "$ref": "#/definitions/cosmos.staking.v1beta1.CommissionRates", "description": "commission_rates defines the initial commission rates to be used for creating a validator." }, "updateTime": { "type": "string", "format": "date-time", "description": "update_time is the last time the commission rate was changed." } }, "description": "Commission defines commission parameters for a given validator." }, "cosmos.staking.v1beta1.CommissionRates": { "type": "object", "properties": { "rate": { "type": "string", "description": "rate is the commission rate charged to delegators, as a fraction." }, "maxRate": { "type": "string", "description": "max_rate defines the maximum commission rate which validator can ever charge, as a fraction." }, "maxChangeRate": { "type": "string", "description": "max_change_rate defines the maximum daily increase of the validator commission, as a fraction." } }, "description": "CommissionRates defines the initial commission rates to be used for creating\na validator." }, "cosmos.staking.v1beta1.Delegation": { "type": "object", "properties": { "delegatorAddress": { "type": "string", "description": "delegator_address is the bech32-encoded address of the delegator." }, "validatorAddress": { "type": "string", "description": "validator_address is the bech32-encoded address of the validator." }, "shares": { "type": "string", "description": "shares define the delegation shares received." } }, "description": "Delegation represents the bond with tokens held by an account. It is\nowned by one delegator, and is associated with the voting power of one\nvalidator." }, "cosmos.staking.v1beta1.DelegationResponse": { "type": "object", "properties": { "delegation": { "$ref": "#/definitions/cosmos.staking.v1beta1.Delegation" }, "balance": { "$ref": "#/definitions/cosmos.base.v1beta1.Coin" } }, "description": "DelegationResponse is equivalent to Delegation except that it contains a\nbalance in addition to shares which is more suitable for client responses." }, "cosmos.staking.v1beta1.Description": { "type": "object", "properties": { "moniker": { "type": "string", "description": "moniker defines a human-readable name for the validator." }, "identity": { "type": "string", "description": "identity defines an optional identity signature (ex. UPort or Keybase)." }, "website": { "type": "string", "description": "website defines an optional website link." }, "securityContact": { "type": "string", "description": "security_contact defines an optional email for security contact." }, "details": { "type": "string", "description": "details define other optional details." } }, "description": "Description defines a validator description." }, "cosmos.staking.v1beta1.HistoricalInfo": { "type": "object", "properties": { "header": { "$ref": "#/definitions/tendermint.types.Header" }, "valset": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.staking.v1beta1.Validator" } } }, "description": "HistoricalInfo contains header and validator information for a given block.\nIt is stored as part of staking module's state, which persists the `n` most\nrecent HistoricalInfo\n(`n` is set by the staking module's `historical_entries` parameter)." }, "cosmos.staking.v1beta1.Params": { "type": "object", "properties": { "unbondingTime": { "type": "string", "description": "unbonding_time is the time duration of unbonding." }, "maxValidators": { "type": "integer", "format": "int64", "description": "max_validators is the maximum number of validators." }, "maxEntries": { "type": "integer", "format": "int64", "description": "max_entries is the max entries for either unbonding delegation or redelegation (per pair/trio)." }, "historicalEntries": { "type": "integer", "format": "int64", "description": "historical_entries is the number of historical entries to persist." }, "bondDenom": { "type": "string", "description": "bond_denom defines the bondable coin denomination." }, "minCommissionRate": { "type": "string", "title": "min_commission_rate is the chain-wide minimum commission rate that a validator can charge their delegators" } }, "description": "Params defines the parameters for the staking module." }, "cosmos.staking.v1beta1.Pool": { "type": "object", "properties": { "notBondedTokens": { "type": "string" }, "bondedTokens": { "type": "string" } }, "description": "Pool is used for tracking bonded and not-bonded token supply of the bond\ndenomination." }, "cosmos.staking.v1beta1.QueryDelegationResponse": { "type": "object", "properties": { "delegationResponse": { "$ref": "#/definitions/cosmos.staking.v1beta1.DelegationResponse", "description": "delegation_responses defines the delegation info of a delegation." } }, "description": "QueryDelegationResponse is response type for the Query/Delegation RPC method." }, "cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse": { "type": "object", "properties": { "delegationResponses": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.staking.v1beta1.DelegationResponse" }, "description": "delegation_responses defines all the delegations' info of a delegator." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryDelegatorDelegationsResponse is response type for the\nQuery/DelegatorDelegations RPC method." }, "cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse": { "type": "object", "properties": { "unbondingResponses": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.staking.v1beta1.UnbondingDelegation" } }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryUnbondingDelegatorDelegationsResponse is response type for the\nQuery/UnbondingDelegatorDelegations RPC method." }, "cosmos.staking.v1beta1.QueryDelegatorValidatorResponse": { "type": "object", "properties": { "validator": { "$ref": "#/definitions/cosmos.staking.v1beta1.Validator", "description": "validator defines the validator info." } }, "description": "QueryDelegatorValidatorResponse response type for the\nQuery/DelegatorValidator RPC method." }, "cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse": { "type": "object", "properties": { "validators": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.staking.v1beta1.Validator" }, "description": "validators defines the validators' info of a delegator." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryDelegatorValidatorsResponse is response type for the\nQuery/DelegatorValidators RPC method." }, "cosmos.staking.v1beta1.QueryHistoricalInfoResponse": { "type": "object", "properties": { "hist": { "$ref": "#/definitions/cosmos.staking.v1beta1.HistoricalInfo", "description": "hist defines the historical info at the given height." } }, "description": "QueryHistoricalInfoResponse is response type for the Query/HistoricalInfo RPC\nmethod." }, "cosmos.staking.v1beta1.QueryParamsResponse": { "type": "object", "properties": { "params": { "$ref": "#/definitions/cosmos.staking.v1beta1.Params", "description": "params holds all the parameters of this module." } }, "description": "QueryParamsResponse is response type for the Query/Params RPC method." }, "cosmos.staking.v1beta1.QueryPoolResponse": { "type": "object", "properties": { "pool": { "$ref": "#/definitions/cosmos.staking.v1beta1.Pool", "description": "pool defines the pool info." } }, "description": "QueryPoolResponse is response type for the Query/Pool RPC method." }, "cosmos.staking.v1beta1.QueryRedelegationsResponse": { "type": "object", "properties": { "redelegationResponses": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.staking.v1beta1.RedelegationResponse" } }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryRedelegationsResponse is response type for the Query/Redelegations RPC\nmethod." }, "cosmos.staking.v1beta1.QueryUnbondingDelegationResponse": { "type": "object", "properties": { "unbond": { "$ref": "#/definitions/cosmos.staking.v1beta1.UnbondingDelegation", "description": "unbond defines the unbonding information of a delegation." } }, "description": "QueryDelegationResponse is response type for the Query/UnbondingDelegation\nRPC method." }, "cosmos.staking.v1beta1.QueryValidatorDelegationsResponse": { "type": "object", "properties": { "delegationResponses": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.staking.v1beta1.DelegationResponse" } }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "title": "QueryValidatorDelegationsResponse is response type for the\nQuery/ValidatorDelegations RPC method" }, "cosmos.staking.v1beta1.QueryValidatorResponse": { "type": "object", "properties": { "validator": { "$ref": "#/definitions/cosmos.staking.v1beta1.Validator", "description": "validator defines the validator info." } }, "title": "QueryValidatorResponse is response type for the Query/Validator RPC method" }, "cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse": { "type": "object", "properties": { "unbondingResponses": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.staking.v1beta1.UnbondingDelegation" } }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryValidatorUnbondingDelegationsResponse is response type for the\nQuery/ValidatorUnbondingDelegations RPC method." }, "cosmos.staking.v1beta1.QueryValidatorsResponse": { "type": "object", "properties": { "validators": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.staking.v1beta1.Validator" }, "description": "validators contains all the queried validators." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "title": "QueryValidatorsResponse is response type for the Query/Validators RPC method" }, "cosmos.staking.v1beta1.Redelegation": { "type": "object", "properties": { "delegatorAddress": { "type": "string", "description": "delegator_address is the bech32-encoded address of the delegator." }, "validatorSrcAddress": { "type": "string", "description": "validator_src_address is the validator redelegation source operator address." }, "validatorDstAddress": { "type": "string", "description": "validator_dst_address is the validator redelegation destination operator address." }, "entries": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.staking.v1beta1.RedelegationEntry" }, "description": "entries are the redelegation entries.\n\nredelegation entries" } }, "description": "Redelegation contains the list of a particular delegator's redelegating bonds\nfrom a particular source validator to a particular destination validator." }, "cosmos.staking.v1beta1.RedelegationEntry": { "type": "object", "properties": { "creationHeight": { "type": "string", "format": "int64", "description": "creation_height defines the height which the redelegation took place." }, "completionTime": { "type": "string", "format": "date-time", "description": "completion_time defines the unix time for redelegation completion." }, "initialBalance": { "type": "string", "description": "initial_balance defines the initial balance when redelegation started." }, "sharesDst": { "type": "string", "description": "shares_dst is the amount of destination-validator shares created by redelegation." } }, "description": "RedelegationEntry defines a redelegation object with relevant metadata." }, "cosmos.staking.v1beta1.RedelegationEntryResponse": { "type": "object", "properties": { "redelegationEntry": { "$ref": "#/definitions/cosmos.staking.v1beta1.RedelegationEntry" }, "balance": { "type": "string" } }, "description": "RedelegationEntryResponse is equivalent to a RedelegationEntry except that it\ncontains a balance in addition to shares which is more suitable for client\nresponses." }, "cosmos.staking.v1beta1.RedelegationResponse": { "type": "object", "properties": { "redelegation": { "$ref": "#/definitions/cosmos.staking.v1beta1.Redelegation" }, "entries": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.staking.v1beta1.RedelegationEntryResponse" } } }, "description": "RedelegationResponse is equivalent to a Redelegation except that its entries\ncontain a balance in addition to shares which is more suitable for client\nresponses." }, "cosmos.staking.v1beta1.UnbondingDelegation": { "type": "object", "properties": { "delegatorAddress": { "type": "string", "description": "delegator_address is the bech32-encoded address of the delegator." }, "validatorAddress": { "type": "string", "description": "validator_address is the bech32-encoded address of the validator." }, "entries": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.staking.v1beta1.UnbondingDelegationEntry" }, "description": "entries are the unbonding delegation entries.\n\nunbonding delegation entries" } }, "description": "UnbondingDelegation stores all of a single delegator's unbonding bonds\nfor a single validator in an time-ordered list." }, "cosmos.staking.v1beta1.UnbondingDelegationEntry": { "type": "object", "properties": { "creationHeight": { "type": "string", "format": "int64", "description": "creation_height is the height which the unbonding took place." }, "completionTime": { "type": "string", "format": "date-time", "description": "completion_time is the unix time for unbonding completion." }, "initialBalance": { "type": "string", "description": "initial_balance defines the tokens initially scheduled to receive at completion." }, "balance": { "type": "string", "description": "balance defines the tokens to receive at completion." } }, "description": "UnbondingDelegationEntry defines an unbonding object with relevant metadata." }, "cosmos.staking.v1beta1.Validator": { "type": "object", "properties": { "operatorAddress": { "type": "string", "description": "operator_address defines the address of the validator's operator; bech encoded in JSON." }, "consensusPubkey": { "$ref": "#/definitions/google.protobuf.Any", "description": "consensus_pubkey is the consensus public key of the validator, as a Protobuf Any." }, "jailed": { "type": "boolean", "description": "jailed defined whether the validator has been jailed from bonded status or not." }, "status": { "$ref": "#/definitions/cosmos.staking.v1beta1.BondStatus", "description": "status is the validator status (bonded/unbonding/unbonded)." }, "tokens": { "type": "string", "description": "tokens define the delegated tokens (incl. self-delegation)." }, "delegatorShares": { "type": "string", "description": "delegator_shares defines total shares issued to a validator's delegators." }, "description": { "$ref": "#/definitions/cosmos.staking.v1beta1.Description", "description": "description defines the description terms for the validator." }, "unbondingHeight": { "type": "string", "format": "int64", "description": "unbonding_height defines, if unbonding, the height at which this validator has begun unbonding." }, "unbondingTime": { "type": "string", "format": "date-time", "description": "unbonding_time defines, if unbonding, the min time for the validator to complete unbonding." }, "commission": { "$ref": "#/definitions/cosmos.staking.v1beta1.Commission", "description": "commission defines the commission parameters." }, "minSelfDelegation": { "type": "string", "description": "min_self_delegation is the validator's self declared minimum self delegation.\n\nSince: cosmos-sdk 0.46" } }, "description": "Validator defines a validator, together with the total amount of the\nValidator's bond shares and their exchange rate to coins. Slashing results in\na decrease in the exchange rate, allowing correct calculation of future\nundelegations without iterating over delegators. When coins are delegated to\nthis validator, the validator is credited with a delegation whose number of\nbond shares is based on the amount of coins delegated divided by the current\nexchange rate. Voting power can be calculated as total bonded shares\nmultiplied by exchange rate." }, "cosmos.tx.signing.v1beta1.SignMode": { "type": "string", "enum": [ "SIGN_MODE_UNSPECIFIED", "SIGN_MODE_DIRECT", "SIGN_MODE_TEXTUAL", "SIGN_MODE_DIRECT_AUX", "SIGN_MODE_LEGACY_AMINO_JSON", "SIGN_MODE_EIP_191" ], "default": "SIGN_MODE_UNSPECIFIED", "description": "SignMode represents a signing mode with its own security guarantees.\n\nThis enum should be considered a registry of all known sign modes\nin the Cosmos ecosystem. Apps are not expected to support all known\nsign modes. Apps that would like to support custom sign modes are\nencouraged to open a small PR against this file to add a new case\nto this SignMode enum describing their sign mode so that different\napps have a consistent version of this enum.\n\n - SIGN_MODE_UNSPECIFIED: SIGN_MODE_UNSPECIFIED specifies an unknown signing mode and will be\nrejected.\n - SIGN_MODE_DIRECT: SIGN_MODE_DIRECT specifies a signing mode which uses SignDoc and is\nverified with raw bytes from Tx.\n - SIGN_MODE_TEXTUAL: SIGN_MODE_TEXTUAL is a future signing mode that will verify some\nhuman-readable textual representation on top of the binary representation\nfrom SIGN_MODE_DIRECT. It is currently not supported.\n - SIGN_MODE_DIRECT_AUX: SIGN_MODE_DIRECT_AUX specifies a signing mode which uses\nSignDocDirectAux. As opposed to SIGN_MODE_DIRECT, this sign mode does not\nrequire signers signing over other signers' `signer_info`. It also allows\nfor adding Tips in transactions.\n\nSince: cosmos-sdk 0.46\n - SIGN_MODE_LEGACY_AMINO_JSON: SIGN_MODE_LEGACY_AMINO_JSON is a backwards compatibility mode which uses\nAmino JSON and will be removed in the future.\n - SIGN_MODE_EIP_191: SIGN_MODE_EIP_191 specifies the sign mode for EIP 191 signing on the Cosmos\nSDK. Ref: https://eips.ethereum.org/EIPS/eip-191\n\nCurrently, SIGN_MODE_EIP_191 is registered as a SignMode enum variant,\nbut is not implemented on the SDK by default. To enable EIP-191, you need\nto pass a custom `TxConfig` that has an implementation of\n`SignModeHandler` for EIP-191. The SDK may decide to fully support\nEIP-191 in the future.\n\nSince: cosmos-sdk 0.45.2" }, "cosmos.tx.v1beta1.AuthInfo": { "type": "object", "properties": { "signerInfos": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.tx.v1beta1.SignerInfo" }, "description": "signer_infos defines the signing modes for the required signers. The number\nand order of elements must match the required signers from TxBody's\nmessages. The first element is the primary signer and the one which pays\nthe fee." }, "fee": { "$ref": "#/definitions/cosmos.tx.v1beta1.Fee", "description": "Fee is the fee and gas limit for the transaction. The first signer is the\nprimary signer and the one which pays the fee. The fee can be calculated\nbased on the cost of evaluating the body and doing signature verification\nof the signers. This can be estimated via simulation." }, "tip": { "$ref": "#/definitions/cosmos.tx.v1beta1.Tip", "description": "Tip is the optional tip used for transactions fees paid in another denom.\n\nThis field is ignored if the chain didn't enable tips, i.e. didn't add the\n`TipDecorator` in its posthandler.\n\nSince: cosmos-sdk 0.46" } }, "description": "AuthInfo describes the fee and signer modes that are used to sign a\ntransaction." }, "cosmos.tx.v1beta1.BroadcastMode": { "type": "string", "enum": [ "BROADCAST_MODE_UNSPECIFIED", "BROADCAST_MODE_BLOCK", "BROADCAST_MODE_SYNC", "BROADCAST_MODE_ASYNC" ], "default": "BROADCAST_MODE_UNSPECIFIED", "description": "BroadcastMode specifies the broadcast mode for the TxService.Broadcast RPC method.\n\n - BROADCAST_MODE_UNSPECIFIED: zero-value for mode ordering\n - BROADCAST_MODE_BLOCK: BROADCAST_MODE_BLOCK defines a tx broadcasting mode where the client waits for\nthe tx to be committed in a block.\n - BROADCAST_MODE_SYNC: BROADCAST_MODE_SYNC defines a tx broadcasting mode where the client waits for\na CheckTx execution response only.\n - BROADCAST_MODE_ASYNC: BROADCAST_MODE_ASYNC defines a tx broadcasting mode where the client returns\nimmediately." }, "cosmos.tx.v1beta1.BroadcastTxRequest": { "type": "object", "properties": { "txBytes": { "type": "string", "format": "byte", "description": "tx_bytes is the raw transaction." }, "mode": { "$ref": "#/definitions/cosmos.tx.v1beta1.BroadcastMode" } }, "description": "BroadcastTxRequest is the request type for the Service.BroadcastTxRequest\nRPC method." }, "cosmos.tx.v1beta1.BroadcastTxResponse": { "type": "object", "properties": { "txResponse": { "$ref": "#/definitions/cosmos.base.abci.v1beta1.TxResponse", "description": "tx_response is the queried TxResponses." } }, "description": "BroadcastTxResponse is the response type for the\nService.BroadcastTx method." }, "cosmos.tx.v1beta1.Fee": { "type": "object", "properties": { "amount": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" }, "title": "amount is the amount of coins to be paid as a fee" }, "gasLimit": { "type": "string", "format": "uint64", "title": "gas_limit is the maximum gas that can be used in transaction processing\nbefore an out of gas error occurs" }, "payer": { "type": "string", "description": "if unset, the first signer is responsible for paying the fees. If set, the specified account must pay the fees.\nthe payer must be a tx signer (and thus have signed this field in AuthInfo).\nsetting this field does *not* change the ordering of required signers for the transaction." }, "granter": { "type": "string", "title": "if set, the fee payer (either the first signer or the value of the payer field) requests that a fee grant be used\nto pay fees instead of the fee payer's own balance. If an appropriate fee grant does not exist or the chain does\nnot support fee grants, this will fail" } }, "description": "Fee includes the amount of coins paid in fees and the maximum\ngas to be used by the transaction. The ratio yields an effective \"gasprice\",\nwhich must be above some miminum to be accepted into the mempool." }, "cosmos.tx.v1beta1.GetBlockWithTxsResponse": { "type": "object", "properties": { "txs": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.tx.v1beta1.Tx" }, "description": "txs are the transactions in the block." }, "blockId": { "$ref": "#/definitions/tendermint.types.BlockID" }, "block": { "$ref": "#/definitions/tendermint.types.Block" }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines a pagination for the response." } }, "description": "GetBlockWithTxsResponse is the response type for the Service.GetBlockWithTxs method.\n\nSince: cosmos-sdk 0.45.2" }, "cosmos.tx.v1beta1.GetTxResponse": { "type": "object", "properties": { "tx": { "$ref": "#/definitions/cosmos.tx.v1beta1.Tx", "description": "tx is the queried transaction." }, "txResponse": { "$ref": "#/definitions/cosmos.base.abci.v1beta1.TxResponse", "description": "tx_response is the queried TxResponses." } }, "description": "GetTxResponse is the response type for the Service.GetTx method." }, "cosmos.tx.v1beta1.GetTxsEventResponse": { "type": "object", "properties": { "txs": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.tx.v1beta1.Tx" }, "description": "txs is the list of queried transactions." }, "txResponses": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.abci.v1beta1.TxResponse" }, "description": "tx_responses is the list of queried TxResponses." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines a pagination for the response.\nDeprecated post v0.46.x: use total instead." }, "total": { "type": "string", "format": "uint64", "title": "total is total number of results available" } }, "description": "GetTxsEventResponse is the response type for the Service.TxsByEvents\nRPC method." }, "cosmos.tx.v1beta1.ModeInfo": { "type": "object", "properties": { "single": { "$ref": "#/definitions/cosmos.tx.v1beta1.ModeInfo.Single", "title": "single represents a single signer" }, "multi": { "$ref": "#/definitions/cosmos.tx.v1beta1.ModeInfo.Multi", "title": "multi represents a nested multisig signer" } }, "description": "ModeInfo describes the signing mode of a single or nested multisig signer." }, "cosmos.tx.v1beta1.ModeInfo.Multi": { "type": "object", "properties": { "bitarray": { "$ref": "#/definitions/cosmos.crypto.multisig.v1beta1.CompactBitArray", "title": "bitarray specifies which keys within the multisig are signing" }, "modeInfos": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.tx.v1beta1.ModeInfo" }, "title": "mode_infos is the corresponding modes of the signers of the multisig\nwhich could include nested multisig public keys" } }, "title": "Multi is the mode info for a multisig public key" }, "cosmos.tx.v1beta1.ModeInfo.Single": { "type": "object", "properties": { "mode": { "$ref": "#/definitions/cosmos.tx.signing.v1beta1.SignMode", "title": "mode is the signing mode of the single signer" } }, "title": "Single is the mode info for a single signer. It is structured as a message\nto allow for additional fields such as locale for SIGN_MODE_TEXTUAL in the\nfuture" }, "cosmos.tx.v1beta1.OrderBy": { "type": "string", "enum": [ "ORDER_BY_UNSPECIFIED", "ORDER_BY_ASC", "ORDER_BY_DESC" ], "default": "ORDER_BY_UNSPECIFIED", "description": "- ORDER_BY_UNSPECIFIED: ORDER_BY_UNSPECIFIED specifies an unknown sorting order. OrderBy defaults to ASC in this case.\n - ORDER_BY_ASC: ORDER_BY_ASC defines ascending order\n - ORDER_BY_DESC: ORDER_BY_DESC defines descending order", "title": "OrderBy defines the sorting order" }, "cosmos.tx.v1beta1.SignerInfo": { "type": "object", "properties": { "publicKey": { "$ref": "#/definitions/google.protobuf.Any", "description": "public_key is the public key of the signer. It is optional for accounts\nthat already exist in state. If unset, the verifier can use the required \\\nsigner address for this position and lookup the public key." }, "modeInfo": { "$ref": "#/definitions/cosmos.tx.v1beta1.ModeInfo", "title": "mode_info describes the signing mode of the signer and is a nested\nstructure to support nested multisig pubkey's" }, "sequence": { "type": "string", "format": "uint64", "description": "sequence is the sequence of the account, which describes the\nnumber of committed transactions signed by a given address. It is used to\nprevent replay attacks." } }, "description": "SignerInfo describes the public key and signing mode of a single top-level\nsigner." }, "cosmos.tx.v1beta1.SimulateRequest": { "type": "object", "properties": { "tx": { "$ref": "#/definitions/cosmos.tx.v1beta1.Tx", "description": "tx is the transaction to simulate.\nDeprecated. Send raw tx bytes instead." }, "txBytes": { "type": "string", "format": "byte", "description": "tx_bytes is the raw transaction.\n\nSince: cosmos-sdk 0.43" } }, "description": "SimulateRequest is the request type for the Service.Simulate\nRPC method." }, "cosmos.tx.v1beta1.SimulateResponse": { "type": "object", "properties": { "gasInfo": { "$ref": "#/definitions/cosmos.base.abci.v1beta1.GasInfo", "description": "gas_info is the information about gas used in the simulation." }, "result": { "$ref": "#/definitions/cosmos.base.abci.v1beta1.Result", "description": "result is the result of the simulation." } }, "description": "SimulateResponse is the response type for the\nService.SimulateRPC method." }, "cosmos.tx.v1beta1.Tip": { "type": "object", "properties": { "amount": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" }, "title": "amount is the amount of the tip" }, "tipper": { "type": "string", "title": "tipper is the address of the account paying for the tip" } }, "description": "Tip is the tip used for meta-transactions.\n\nSince: cosmos-sdk 0.46" }, "cosmos.tx.v1beta1.Tx": { "type": "object", "properties": { "body": { "$ref": "#/definitions/cosmos.tx.v1beta1.TxBody", "title": "body is the processable content of the transaction" }, "authInfo": { "$ref": "#/definitions/cosmos.tx.v1beta1.AuthInfo", "title": "auth_info is the authorization related content of the transaction,\nspecifically signers, signer modes and fee" }, "signatures": { "type": "array", "items": { "type": "string", "format": "byte" }, "description": "signatures is a list of signatures that matches the length and order of\nAuthInfo's signer_infos to allow connecting signature meta information like\npublic key and signing mode by position." } }, "description": "Tx is the standard type used for broadcasting transactions." }, "cosmos.tx.v1beta1.TxBody": { "type": "object", "properties": { "messages": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/google.protobuf.Any" }, "description": "messages is a list of messages to be executed. The required signers of\nthose messages define the number and order of elements in AuthInfo's\nsigner_infos and Tx's signatures. Each required signer address is added to\nthe list only the first time it occurs.\nBy convention, the first required signer (usually from the first message)\nis referred to as the primary signer and pays the fee for the whole\ntransaction." }, "memo": { "type": "string", "description": "memo is any arbitrary note/comment to be added to the transaction.\nWARNING: in clients, any publicly exposed text should not be called memo,\nbut should be called `note` instead (see https://github.com/cosmos/cosmos-sdk/issues/9122)." }, "timeoutHeight": { "type": "string", "format": "uint64", "title": "timeout is the block height after which this transaction will not\nbe processed by the chain" }, "extensionOptions": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/google.protobuf.Any" }, "title": "extension_options are arbitrary options that can be added by chains\nwhen the default options are not sufficient. If any of these are present\nand can't be handled, the transaction will be rejected" }, "nonCriticalExtensionOptions": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/google.protobuf.Any" }, "title": "extension_options are arbitrary options that can be added by chains\nwhen the default options are not sufficient. If any of these are present\nand can't be handled, they will be ignored" } }, "description": "TxBody is the body of a transaction that all signers sign over." }, "cosmos.upgrade.v1beta1.ModuleVersion": { "type": "object", "properties": { "name": { "type": "string", "title": "name of the app module" }, "version": { "type": "string", "format": "uint64", "title": "consensus version of the app module" } }, "description": "ModuleVersion specifies a module and its consensus version.\n\nSince: cosmos-sdk 0.43" }, "cosmos.upgrade.v1beta1.Plan": { "type": "object", "properties": { "name": { "type": "string", "description": "Sets the name for the upgrade. This name will be used by the upgraded\nversion of the software to apply any special \"on-upgrade\" commands during\nthe first BeginBlock method after the upgrade is applied. It is also used\nto detect whether a software version can handle a given upgrade. If no\nupgrade handler with this name has been set in the software, it will be\nassumed that the software is out-of-date when the upgrade Time or Height is\nreached and the software will exit." }, "time": { "type": "string", "format": "date-time", "description": "Deprecated: Time based upgrades have been deprecated. Time based upgrade logic\nhas been removed from the SDK.\nIf this field is not empty, an error will be thrown." }, "height": { "type": "string", "format": "int64", "description": "The height at which the upgrade must be performed.\nOnly used if Time is not set." }, "info": { "type": "string", "title": "Any application specific upgrade info to be included on-chain\nsuch as a git commit that validators could automatically upgrade to" }, "upgradedClientState": { "$ref": "#/definitions/google.protobuf.Any", "description": "Deprecated: UpgradedClientState field has been deprecated. IBC upgrade logic has been\nmoved to the IBC module in the sub module 02-client.\nIf this field is not empty, an error will be thrown." } }, "description": "Plan specifies information about a planned upgrade and when it should occur." }, "cosmos.upgrade.v1beta1.QueryAppliedPlanResponse": { "type": "object", "properties": { "height": { "type": "string", "format": "int64", "description": "height is the block height at which the plan was applied." } }, "description": "QueryAppliedPlanResponse is the response type for the Query/AppliedPlan RPC\nmethod." }, "cosmos.upgrade.v1beta1.QueryAuthorityResponse": { "type": "object", "properties": { "address": { "type": "string" } }, "description": "Since: cosmos-sdk 0.46", "title": "QueryAuthorityResponse is the response type for Query/Authority" }, "cosmos.upgrade.v1beta1.QueryCurrentPlanResponse": { "type": "object", "properties": { "plan": { "$ref": "#/definitions/cosmos.upgrade.v1beta1.Plan", "description": "plan is the current upgrade plan." } }, "description": "QueryCurrentPlanResponse is the response type for the Query/CurrentPlan RPC\nmethod." }, "cosmos.upgrade.v1beta1.QueryModuleVersionsResponse": { "type": "object", "properties": { "moduleVersions": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.upgrade.v1beta1.ModuleVersion" }, "description": "module_versions is a list of module names with their consensus versions." } }, "description": "QueryModuleVersionsResponse is the response type for the Query/ModuleVersions\nRPC method.\n\nSince: cosmos-sdk 0.43" }, "cosmos.upgrade.v1beta1.QueryUpgradedConsensusStateResponse": { "type": "object", "properties": { "upgradedConsensusState": { "type": "string", "format": "byte", "title": "Since: cosmos-sdk 0.43" } }, "description": "QueryUpgradedConsensusStateResponse is the response type for the Query/UpgradedConsensusState\nRPC method." }, "ethermint.evm.v1.ChainConfig": { "type": "object", "properties": { "homesteadBlock": { "type": "string", "title": "homestead_block switch (nil no fork, 0 = already homestead)" }, "daoForkBlock": { "type": "string", "title": "dao_fork_block corresponds to TheDAO hard-fork switch block (nil no fork)" }, "daoForkSupport": { "type": "boolean", "title": "dao_fork_support defines whether the nodes supports or opposes the DAO\nhard-fork" }, "eip150Block": { "type": "string", "title": "eip150_block: EIP150 implements the Gas price changes\n(https://github.com/ethereum/EIPs/issues/150) EIP150 HF block (nil no fork)" }, "eip150Hash": { "type": "string", "title": "eip150_hash: EIP150 HF hash (needed for header only clients as only gas\npricing changed)" }, "eip155Block": { "type": "string", "title": "eip155_block: EIP155Block HF block" }, "eip158Block": { "type": "string", "title": "eip158_block: EIP158 HF block" }, "byzantiumBlock": { "type": "string", "title": "byzantium_block: Byzantium switch block (nil no fork, 0 = already on\nbyzantium)" }, "constantinopleBlock": { "type": "string", "title": "constantinople_block: Constantinople switch block (nil no fork, 0 = already\nactivated)" }, "petersburgBlock": { "type": "string", "title": "petersburg_block: Petersburg switch block (nil same as Constantinople)" }, "istanbulBlock": { "type": "string", "title": "istanbul_block: Istanbul switch block (nil no fork, 0 = already on\nistanbul)" }, "muirGlacierBlock": { "type": "string", "title": "muir_glacier_block: Eip-2384 (bomb delay) switch block (nil no fork, 0 =\nalready activated)" }, "berlinBlock": { "type": "string", "title": "berlin_block: Berlin switch block (nil = no fork, 0 = already on berlin)" }, "londonBlock": { "type": "string", "title": "london_block: London switch block (nil = no fork, 0 = already on london)" }, "arrowGlacierBlock": { "type": "string", "title": "arrow_glacier_block: Eip-4345 (bomb delay) switch block (nil = no fork, 0 =\nalready activated)" }, "grayGlacierBlock": { "type": "string", "title": "gray_glacier_block: EIP-5133 (bomb delay) switch block (nil = no fork, 0 =\nalready activated)" }, "mergeNetsplitBlock": { "type": "string", "title": "merge_netsplit_block: Virtual fork after The Merge to use as a network\nsplitter" }, "shanghaiBlock": { "type": "string", "title": "shanghai_block switch block (nil = no fork, 0 = already on shanghai)" }, "cancunBlock": { "type": "string", "title": "cancun_block switch block (nil = no fork, 0 = already on cancun)" } }, "description": "ChainConfig defines the Ethereum ChainConfig parameters using *sdk.Int values\ninstead of *big.Int." }, "ethermint.evm.v1.EstimateGasResponse": { "type": "object", "properties": { "gas": { "type": "string", "format": "uint64", "title": "gas returns the estimated gas" } }, "title": "EstimateGasResponse defines EstimateGas response" }, "ethermint.evm.v1.Log": { "type": "object", "properties": { "address": { "type": "string", "title": "address of the contract that generated the event" }, "topics": { "type": "array", "items": { "type": "string" }, "description": "topics is a list of topics provided by the contract." }, "data": { "type": "string", "format": "byte", "title": "data which is supplied by the contract, usually ABI-encoded" }, "blockNumber": { "type": "string", "format": "uint64", "title": "block_number of the block in which the transaction was included" }, "txHash": { "type": "string", "title": "tx_hash is the transaction hash" }, "txIndex": { "type": "string", "format": "uint64", "title": "tx_index of the transaction in the block" }, "blockHash": { "type": "string", "title": "block_hash of the block in which the transaction was included" }, "index": { "type": "string", "format": "uint64", "title": "index of the log in the block" }, "removed": { "type": "boolean", "description": "removed is true if this log was reverted due to a chain\nreorganisation. You must pay attention to this field if you receive logs\nthrough a filter query." } }, "description": "Log represents an protobuf compatible Ethereum Log that defines a contract\nlog event. These events are generated by the LOG opcode and stored/indexed by\nthe node.\n\nNOTE: address, topics and data are consensus fields. The rest of the fields\nare derived, i.e. filled in by the nodes, but not secured by consensus." }, "ethermint.evm.v1.MsgEthereumTx": { "type": "object", "properties": { "data": { "$ref": "#/definitions/google.protobuf.Any", "title": "data is inner transaction data of the Ethereum transaction" }, "size": { "type": "number", "format": "double", "title": "size is the encoded storage size of the transaction (DEPRECATED)" }, "hash": { "type": "string", "title": "hash of the transaction in hex format" }, "from": { "type": "string", "title": "from is the ethereum signer address in hex format. This address value is\nchecked against the address derived from the signature (V, R, S) using the\nsecp256k1 elliptic curve" } }, "description": "MsgEthereumTx encapsulates an Ethereum transaction as an SDK message." }, "ethermint.evm.v1.MsgEthereumTxResponse": { "type": "object", "properties": { "hash": { "type": "string", "title": "hash of the ethereum transaction in hex format. This hash differs from the\nTendermint sha256 hash of the transaction bytes. See\nhttps://github.com/tendermint/tendermint/issues/6539 for reference" }, "logs": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/ethermint.evm.v1.Log" }, "description": "logs contains the transaction hash and the proto-compatible ethereum\nlogs." }, "ret": { "type": "string", "format": "byte", "title": "ret is the returned data from evm function (result or data supplied with\nrevert opcode)" }, "vmError": { "type": "string", "title": "vm_error is the error returned by vm execution" }, "gasUsed": { "type": "string", "format": "uint64", "title": "gas_used specifies how much gas was consumed by the transaction" } }, "description": "MsgEthereumTxResponse defines the Msg/EthereumTx response type." }, "ethermint.evm.v1.Params": { "type": "object", "properties": { "evmDenom": { "type": "string", "description": "evm_denom represents the token denomination used to run the EVM state\ntransitions." }, "enableCreate": { "type": "boolean", "title": "enable_create toggles state transitions that use the vm.Create function" }, "enableCall": { "type": "boolean", "title": "enable_call toggles state transitions that use the vm.Call function" }, "extraEips": { "type": "array", "items": { "type": "string", "format": "int64" }, "title": "extra_eips defines the additional EIPs for the vm.Config" }, "chainConfig": { "$ref": "#/definitions/ethermint.evm.v1.ChainConfig", "title": "chain_config defines the EVM chain configuration parameters" }, "allowUnprotectedTxs": { "type": "boolean", "description": "allow_unprotected_txs defines if replay-protected (i.e non EIP155\nsigned) transactions can be executed on the state machine." } }, "title": "Params defines the EVM module parameters" }, "ethermint.evm.v1.QueryAccountResponse": { "type": "object", "properties": { "balance": { "type": "string", "description": "balance is the balance of the EVM denomination." }, "codeHash": { "type": "string", "description": "code_hash is the hex-formatted code bytes from the EOA." }, "nonce": { "type": "string", "format": "uint64", "description": "nonce is the account's sequence number." } }, "description": "QueryAccountResponse is the response type for the Query/Account RPC method." }, "ethermint.evm.v1.QueryBalanceResponse": { "type": "object", "properties": { "balance": { "type": "string", "description": "balance is the balance of the EVM denomination." } }, "description": "QueryBalanceResponse is the response type for the Query/Balance RPC method." }, "ethermint.evm.v1.QueryBaseFeeResponse": { "type": "object", "properties": { "baseFee": { "type": "string", "title": "base_fee is the EIP1559 base fee" } }, "description": "QueryBaseFeeResponse returns the EIP1559 base fee." }, "ethermint.evm.v1.QueryCodeResponse": { "type": "object", "properties": { "code": { "type": "string", "format": "byte", "description": "code represents the code bytes from an ethereum address." } }, "description": "QueryCodeResponse is the response type for the Query/Code RPC\nmethod." }, "ethermint.evm.v1.QueryCosmosAccountResponse": { "type": "object", "properties": { "cosmosAddress": { "type": "string", "description": "cosmos_address is the cosmos address of the account." }, "sequence": { "type": "string", "format": "uint64", "description": "sequence is the account's sequence number." }, "accountNumber": { "type": "string", "format": "uint64", "title": "account_number is the account number" } }, "description": "QueryCosmosAccountResponse is the response type for the Query/CosmosAccount\nRPC method." }, "ethermint.evm.v1.QueryParamsResponse": { "type": "object", "properties": { "params": { "$ref": "#/definitions/ethermint.evm.v1.Params", "description": "params define the evm module parameters." } }, "description": "QueryParamsResponse defines the response type for querying x/evm parameters." }, "ethermint.evm.v1.QueryStorageResponse": { "type": "object", "properties": { "value": { "type": "string", "description": "value defines the storage state value hash associated with the given key." } }, "description": "QueryStorageResponse is the response type for the Query/Storage RPC\nmethod." }, "ethermint.evm.v1.QueryTraceBlockResponse": { "type": "object", "properties": { "data": { "type": "string", "format": "byte", "title": "data is the response serialized in bytes" } }, "title": "QueryTraceBlockResponse defines TraceBlock response" }, "ethermint.evm.v1.QueryTraceTxResponse": { "type": "object", "properties": { "data": { "type": "string", "format": "byte", "title": "data is the response serialized in bytes" } }, "title": "QueryTraceTxResponse defines TraceTx response" }, "ethermint.evm.v1.QueryValidatorAccountResponse": { "type": "object", "properties": { "accountAddress": { "type": "string", "description": "account_address is the cosmos address of the account in bech32 format." }, "sequence": { "type": "string", "format": "uint64", "description": "sequence is the account's sequence number." }, "accountNumber": { "type": "string", "format": "uint64", "title": "account_number is the account number" } }, "description": "QueryValidatorAccountResponse is the response type for the\nQuery/ValidatorAccount RPC method." }, "ethermint.evm.v1.TraceConfig": { "type": "object", "properties": { "tracer": { "type": "string", "title": "tracer is a custom javascript tracer" }, "timeout": { "type": "string", "title": "timeout overrides the default timeout of 5 seconds for JavaScript-based\ntracing calls" }, "reexec": { "type": "string", "format": "uint64", "title": "reexec defines the number of blocks the tracer is willing to go back" }, "disableStack": { "type": "boolean", "title": "disable_stack switches stack capture" }, "disableStorage": { "type": "boolean", "title": "disable_storage switches storage capture" }, "debug": { "type": "boolean", "title": "debug can be used to print output during capture end" }, "limit": { "type": "integer", "format": "int32", "title": "limit defines the maximum length of output, but zero means unlimited" }, "overrides": { "$ref": "#/definitions/ethermint.evm.v1.ChainConfig", "title": "overrides can be used to execute a trace using future fork rules" }, "enableMemory": { "type": "boolean", "title": "enable_memory switches memory capture" }, "enableReturnData": { "type": "boolean", "title": "enable_return_data switches the capture of return data" }, "tracerJsonConfig": { "type": "string", "title": "tracer_json_config configures the tracer using a JSON string" } }, "description": "TraceConfig holds extra parameters to trace functions." }, "ethermint.feemarket.v1.Params": { "type": "object", "properties": { "noBaseFee": { "type": "boolean", "title": "no_base_fee forces the EIP-1559 base fee to 0 (needed for 0 price calls)" }, "baseFeeChangeDenominator": { "type": "integer", "format": "int64", "description": "base_fee_change_denominator bounds the amount the base fee can change\nbetween blocks." }, "elasticityMultiplier": { "type": "integer", "format": "int64", "description": "elasticity_multiplier bounds the maximum gas limit an EIP-1559 block may\nhave." }, "enableHeight": { "type": "string", "format": "int64", "description": "enable_height defines at which block height the base fee calculation is\nenabled." }, "baseFee": { "type": "string", "description": "base_fee for EIP-1559 blocks." }, "minGasPrice": { "type": "string", "title": "min_gas_price defines the minimum gas price value for cosmos and eth\ntransactions" }, "minGasMultiplier": { "type": "string", "title": "min_gas_multiplier bounds the minimum gas used to be charged\nto senders based on gas limit" } }, "title": "Params defines the EVM module parameters" }, "ethermint.feemarket.v1.QueryBaseFeeResponse": { "type": "object", "properties": { "baseFee": { "type": "string", "title": "base_fee is the EIP1559 base fee" } }, "description": "QueryBaseFeeResponse returns the EIP1559 base fee." }, "ethermint.feemarket.v1.QueryBlockGasResponse": { "type": "object", "properties": { "gas": { "type": "string", "format": "int64", "title": "gas is the returned block gas" } }, "description": "QueryBlockGasResponse returns block gas used for a given height." }, "ethermint.feemarket.v1.QueryParamsResponse": { "type": "object", "properties": { "params": { "$ref": "#/definitions/ethermint.feemarket.v1.Params", "description": "params define the evm module parameters." } }, "description": "QueryParamsResponse defines the response type for querying x/evm parameters." }, "evmos.epochs.v1.EpochInfo": { "type": "object", "properties": { "identifier": { "type": "string", "title": "identifier of the epoch" }, "startTime": { "type": "string", "format": "date-time", "title": "start_time of the epoch" }, "duration": { "type": "string", "title": "duration of the epoch" }, "currentEpoch": { "type": "string", "format": "int64", "title": "current_epoch is the integer identifier of the epoch" }, "currentEpochStartTime": { "type": "string", "format": "date-time", "title": "current_epoch_start_time defines the timestamp of the start of the epoch" }, "epochCountingStarted": { "type": "boolean", "title": "epoch_counting_started reflects if the counting for the epoch has started" }, "currentEpochStartHeight": { "type": "string", "format": "int64", "title": "current_epoch_start_height of the epoch" } }, "description": "EpochInfo defines the message interface containing the relevant informations\nabout an epoch." }, "evmos.epochs.v1.QueryCurrentEpochResponse": { "type": "object", "properties": { "currentEpoch": { "type": "string", "format": "int64", "title": "current_epoch is the number of the current epoch" } }, "description": "QueryCurrentEpochResponse is the response type for the Query/EpochInfos RPC\nmethod." }, "evmos.epochs.v1.QueryEpochsInfoResponse": { "type": "object", "properties": { "epochs": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/evmos.epochs.v1.EpochInfo" }, "title": "epochs is a slice of all EpochInfos" }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines an optional pagination for the request." } }, "description": "QueryEpochsInfoResponse is the response type for the Query/EpochInfos RPC\nmethod." }, "evmos.erc20.v1.Owner": { "type": "string", "enum": [ "OWNER_UNSPECIFIED", "OWNER_MODULE", "OWNER_EXTERNAL" ], "default": "OWNER_UNSPECIFIED", "description": "Owner enumerates the ownership of a ERC20 contract.\n\n - OWNER_UNSPECIFIED: OWNER_UNSPECIFIED defines an invalid/undefined owner.\n - OWNER_MODULE: OWNER_MODULE - erc20 is owned by the erc20 module account.\n - OWNER_EXTERNAL: OWNER_EXTERNAL - erc20 is owned by an external account." }, "evmos.erc20.v1.Params": { "type": "object", "properties": { "enableErc20": { "type": "boolean", "description": "enable_erc20 is the parameter to enable the conversion of Cosmos coins <-->\nERC20 tokens." }, "enableEvmHook": { "type": "boolean", "description": "enable_evm_hook is the parameter to enable the EVM hook that converts an\nERC20 token to a Cosmos Coin by transferring the Tokens through a\nMsgEthereumTx to the ModuleAddress Ethereum address." } }, "title": "Params defines the erc20 module params" }, "evmos.erc20.v1.QueryParamsResponse": { "type": "object", "properties": { "params": { "$ref": "#/definitions/evmos.erc20.v1.Params", "title": "params are the erc20 module parameters" } }, "description": "QueryParamsResponse is the response type for the Query/Params RPC\nmethod." }, "evmos.erc20.v1.QueryTokenPairResponse": { "type": "object", "properties": { "tokenPair": { "$ref": "#/definitions/evmos.erc20.v1.TokenPair", "title": "token_pairs returns the info about a registered token pair for the erc20\nmodule" } }, "description": "QueryTokenPairResponse is the response type for the Query/TokenPair RPC\nmethod." }, "evmos.erc20.v1.QueryTokenPairsResponse": { "type": "object", "properties": { "tokenPairs": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/evmos.erc20.v1.TokenPair" }, "title": "token_pairs is a slice of registered token pairs for the erc20 module" }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryTokenPairsResponse is the response type for the Query/TokenPairs RPC\nmethod." }, "evmos.erc20.v1.TokenPair": { "type": "object", "properties": { "erc20Address": { "type": "string", "title": "erc20_address is the hex address of ERC20 contract token" }, "denom": { "type": "string", "title": "denom defines the cosmos base denomination to be mapped to" }, "enabled": { "type": "boolean", "title": "enabled defines the token mapping enable status" }, "contractOwner": { "$ref": "#/definitions/evmos.erc20.v1.Owner", "title": "contract_owner is the an ENUM specifying the type of ERC20 owner (0\ninvalid, 1 ModuleAccount, 2 external address)" } }, "description": "TokenPair defines an instance that records a pairing consisting of a native\n Cosmos Coin and an ERC20 token address." }, "google.protobuf.Any": { "type": "object", "properties": { "@type": { "type": "string", "description": "A URL/resource name that uniquely identifies the type of the serialized\nprotocol buffer message. This string must contain at least\none \"/\" character. The last segment of the URL's path must represent\nthe fully qualified name of the type (as in\n`path/google.protobuf.Duration`). The name should be in a canonical form\n(e.g., leading \".\" is not accepted).\n\nIn practice, teams usually precompile into the binary all types that they\nexpect it to use in the context of Any. However, for URLs which use the\nscheme `http`, `https`, or no scheme, one can optionally set up a type\nserver that maps type URLs to message definitions as follows:\n\n* If no scheme is provided, `https` is assumed.\n* An HTTP GET on the URL must yield a [google.protobuf.Type][]\n value in binary format, or produce an error.\n* Applications are allowed to cache lookup results based on the\n URL, or have them precompiled into a binary to avoid any\n lookup. Therefore, binary compatibility needs to be preserved\n on changes to types. (Use versioned type names to manage\n breaking changes.)\n\nNote: this functionality is not currently available in the official\nprotobuf release, and it is not used for type URLs beginning with\ntype.googleapis.com.\n\nSchemes other than `http`, `https` (or the empty scheme) might be\nused with implementation specific semantics." } }, "additionalProperties": {}, "description": "`Any` contains an arbitrary serialized protocol buffer message along with a\nURL that describes the type of the serialized message.\n\nProtobuf library provides support to pack/unpack Any values in the form\nof utility functions or additional generated methods of the Any type.\n\nExample 1: Pack and unpack a message in C++.\n\n Foo foo = ...;\n Any any;\n any.PackFrom(foo);\n ...\n if (any.UnpackTo(&foo)) {\n ...\n }\n\nExample 2: Pack and unpack a message in Java.\n\n Foo foo = ...;\n Any any = Any.pack(foo);\n ...\n if (any.is(Foo.class)) {\n foo = any.unpack(Foo.class);\n }\n // or ...\n if (any.isSameTypeAs(Foo.getDefaultInstance())) {\n foo = any.unpack(Foo.getDefaultInstance());\n }\n\nExample 3: Pack and unpack a message in Python.\n\n foo = Foo(...)\n any = Any()\n any.Pack(foo)\n ...\n if any.Is(Foo.DESCRIPTOR):\n any.Unpack(foo)\n ...\n\nExample 4: Pack and unpack a message in Go\n\n foo := &pb.Foo{...}\n any, err := anypb.New(foo)\n if err != nil {\n ...\n }\n ...\n foo := &pb.Foo{}\n if err := any.UnmarshalTo(foo); err != nil {\n ...\n }\n\nThe pack methods provided by protobuf library will by default use\n'type.googleapis.com/full.type.name' as the type URL and the unpack\nmethods only use the fully qualified type name after the last '/'\nin the type URL, for example \"foo.bar.com/x/y.z\" will yield type\nname \"y.z\".\n\nJSON\n\nThe JSON representation of an `Any` value uses the regular\nrepresentation of the deserialized, embedded message, with an\nadditional field `@type` which contains the type URL. Example:\n\n package google.profile;\n message Person {\n string first_name = 1;\n string last_name = 2;\n }\n\n {\n \"@type\": \"type.googleapis.com/google.profile.Person\",\n \"firstName\": ,\n \"lastName\": \n }\n\nIf the embedded message type is well-known and has a custom JSON\nrepresentation, that representation will be embedded adding a field\n`value` which holds the custom JSON in addition to the `@type`\nfield. Example (for message [google.protobuf.Duration][]):\n\n {\n \"@type\": \"type.googleapis.com/google.protobuf.Duration\",\n \"value\": \"1.212s\"\n }" }, "google.rpc.Status": { "type": "object", "properties": { "code": { "type": "integer", "format": "int32" }, "message": { "type": "string" }, "details": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/google.protobuf.Any" } } } }, "haqq.coinomics.v1.Params": { "type": "object", "properties": { "mintDenom": { "type": "string", "title": "type of coin to mint" }, "enableCoinomics": { "type": "boolean", "title": "parameter to enable coinmoics" }, "rewardCoefficient": { "type": "string", "title": "current staking reward coefficient" } }, "description": "Params holds parameters for the coinomics module." }, "haqq.coinomics.v1.QueryMaxSupplyResponse": { "type": "object", "properties": { "maxSupply": { "$ref": "#/definitions/cosmos.base.v1beta1.Coin" } } }, "haqq.coinomics.v1.QueryParamsResponse": { "type": "object", "properties": { "params": { "$ref": "#/definitions/haqq.coinomics.v1.Params", "description": "params defines the parameters of the module." } } }, "haqq.coinomics.v1.QueryRewardCoefficientResponse": { "type": "object", "properties": { "rewardCoefficient": { "type": "string", "title": "rate by which the total supply increases within one era" } } }, "haqq.vesting.v1.QueryBalancesResponse": { "type": "object", "properties": { "locked": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" }, "title": "locked defines the current amount of locked tokens" }, "unvested": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" }, "title": "unvested defines the current amount of unvested tokens" }, "vested": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" }, "title": "vested defines the current amount of vested tokens" } }, "description": "QueryBalancesResponse is the response type for the Query/Balances RPC\nmethod." }, "haqq.vesting.v1.QueryTotalLockedResponse": { "type": "object", "properties": { "locked": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" }, "title": "locked defines the current amount of locked tokens" }, "unvested": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" }, "title": "unvested defines the current amount of unvested tokens" }, "vested": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" }, "title": "vested defines the current amount of vested tokens" } }, "description": "QueryTotalLockedResponse is the response type for the Query/TotalLocked RPC\nmethod." }, "ibc.applications.fee.v1.Fee": { "type": "object", "properties": { "recvFee": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" }, "title": "the packet receive fee" }, "ackFee": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" }, "title": "the packet acknowledgement fee" }, "timeoutFee": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" }, "title": "the packet timeout fee" } }, "title": "Fee defines the ICS29 receive, acknowledgement and timeout fees" }, "ibc.applications.fee.v1.FeeEnabledChannel": { "type": "object", "properties": { "portId": { "type": "string", "title": "unique port identifier" }, "channelId": { "type": "string", "title": "unique channel identifier" } }, "title": "FeeEnabledChannel contains the PortID & ChannelID for a fee enabled channel" }, "ibc.applications.fee.v1.IdentifiedPacketFees": { "type": "object", "properties": { "packetId": { "$ref": "#/definitions/ibc.core.channel.v1.PacketId", "title": "unique packet identifier comprised of the channel ID, port ID and sequence" }, "packetFees": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/ibc.applications.fee.v1.PacketFee" }, "title": "list of packet fees" } }, "title": "IdentifiedPacketFees contains a list of type PacketFee and associated PacketId" }, "ibc.applications.fee.v1.PacketFee": { "type": "object", "properties": { "fee": { "$ref": "#/definitions/ibc.applications.fee.v1.Fee", "title": "fee encapsulates the recv, ack and timeout fees associated with an IBC packet" }, "refundAddress": { "type": "string", "title": "the refund address for unspent fees" }, "relayers": { "type": "array", "items": { "type": "string" }, "title": "optional list of relayers permitted to receive fees" } }, "title": "PacketFee contains ICS29 relayer fees, refund address and optional list of permitted relayers" }, "ibc.applications.fee.v1.QueryCounterpartyPayeeResponse": { "type": "object", "properties": { "counterpartyPayee": { "type": "string", "title": "the counterparty payee address used to compensate forward relaying" } }, "title": "QueryCounterpartyPayeeResponse defines the response type for the CounterpartyPayee rpc" }, "ibc.applications.fee.v1.QueryFeeEnabledChannelResponse": { "type": "object", "properties": { "feeEnabled": { "type": "boolean", "title": "boolean flag representing the fee enabled channel status" } }, "title": "QueryFeeEnabledChannelResponse defines the response type for the FeeEnabledChannel rpc" }, "ibc.applications.fee.v1.QueryFeeEnabledChannelsResponse": { "type": "object", "properties": { "feeEnabledChannels": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/ibc.applications.fee.v1.FeeEnabledChannel" }, "title": "list of fee enabled channels" } }, "title": "QueryFeeEnabledChannelsResponse defines the response type for the FeeEnabledChannels rpc" }, "ibc.applications.fee.v1.QueryIncentivizedPacketResponse": { "type": "object", "properties": { "incentivizedPacket": { "$ref": "#/definitions/ibc.applications.fee.v1.IdentifiedPacketFees", "title": "the identified fees for the incentivized packet" } }, "title": "QueryIncentivizedPacketsResponse defines the response type for the IncentivizedPacket rpc" }, "ibc.applications.fee.v1.QueryIncentivizedPacketsForChannelResponse": { "type": "object", "properties": { "incentivizedPackets": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/ibc.applications.fee.v1.IdentifiedPacketFees" }, "title": "Map of all incentivized_packets" } }, "title": "QueryIncentivizedPacketsResponse defines the response type for the incentivized packets RPC" }, "ibc.applications.fee.v1.QueryIncentivizedPacketsResponse": { "type": "object", "properties": { "incentivizedPackets": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/ibc.applications.fee.v1.IdentifiedPacketFees" }, "title": "list of identified fees for incentivized packets" } }, "title": "QueryIncentivizedPacketsResponse defines the response type for the IncentivizedPackets rpc" }, "ibc.applications.fee.v1.QueryPayeeResponse": { "type": "object", "properties": { "payeeAddress": { "type": "string", "title": "the payee address to which packet fees are paid out" } }, "title": "QueryPayeeResponse defines the response type for the Payee rpc" }, "ibc.applications.fee.v1.QueryTotalAckFeesResponse": { "type": "object", "properties": { "ackFees": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" }, "title": "the total packet acknowledgement fees" } }, "title": "QueryTotalAckFeesResponse defines the response type for the TotalAckFees rpc" }, "ibc.applications.fee.v1.QueryTotalRecvFeesResponse": { "type": "object", "properties": { "recvFees": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" }, "title": "the total packet receive fees" } }, "title": "QueryTotalRecvFeesResponse defines the response type for the TotalRecvFees rpc" }, "ibc.applications.fee.v1.QueryTotalTimeoutFeesResponse": { "type": "object", "properties": { "timeoutFees": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" }, "title": "the total packet timeout fees" } }, "title": "QueryTotalTimeoutFeesResponse defines the response type for the TotalTimeoutFees rpc" }, "ibc.applications.interchain_accounts.controller.v1.Params": { "type": "object", "properties": { "controllerEnabled": { "type": "boolean", "description": "controller_enabled enables or disables the controller submodule." } }, "description": "Params defines the set of on-chain interchain accounts parameters.\nThe following parameters may be used to disable the controller submodule." }, "ibc.applications.interchain_accounts.controller.v1.QueryInterchainAccountResponse": { "type": "object", "properties": { "address": { "type": "string" } }, "description": "QueryInterchainAccountResponse the response type for the Query/InterchainAccount RPC method." }, "ibc.applications.interchain_accounts.controller.v1.QueryParamsResponse": { "type": "object", "properties": { "params": { "$ref": "#/definitions/ibc.applications.interchain_accounts.controller.v1.Params", "description": "params defines the parameters of the module." } }, "description": "QueryParamsResponse is the response type for the Query/Params RPC method." }, "ibc.applications.interchain_accounts.host.v1.Params": { "type": "object", "properties": { "hostEnabled": { "type": "boolean", "description": "host_enabled enables or disables the host submodule." }, "allowMessages": { "type": "array", "items": { "type": "string" }, "description": "allow_messages defines a list of sdk message typeURLs allowed to be executed on a host chain." } }, "description": "Params defines the set of on-chain interchain accounts parameters.\nThe following parameters may be used to disable the host submodule." }, "ibc.applications.interchain_accounts.host.v1.QueryParamsResponse": { "type": "object", "properties": { "params": { "$ref": "#/definitions/ibc.applications.interchain_accounts.host.v1.Params", "description": "params defines the parameters of the module." } }, "description": "QueryParamsResponse is the response type for the Query/Params RPC method." }, "ibc.applications.transfer.v1.DenomTrace": { "type": "object", "properties": { "path": { "type": "string", "description": "path defines the chain of port/channel identifiers used for tracing the\nsource of the fungible token." }, "baseDenom": { "type": "string", "description": "base denomination of the relayed fungible token." } }, "description": "DenomTrace contains the base denomination for ICS20 fungible tokens and the\nsource tracing information path." }, "ibc.applications.transfer.v1.Params": { "type": "object", "properties": { "sendEnabled": { "type": "boolean", "description": "send_enabled enables or disables all cross-chain token transfers from this\nchain." }, "receiveEnabled": { "type": "boolean", "description": "receive_enabled enables or disables all cross-chain token transfers to this\nchain." } }, "description": "Params defines the set of IBC transfer parameters.\nNOTE: To prevent a single token from being transferred, set the\nTransfersEnabled parameter to true and then set the bank module's SendEnabled\nparameter for the denomination to false." }, "ibc.applications.transfer.v1.QueryDenomHashResponse": { "type": "object", "properties": { "hash": { "type": "string", "description": "hash (in hex format) of the denomination trace information." } }, "description": "QueryDenomHashResponse is the response type for the Query/DenomHash RPC\nmethod." }, "ibc.applications.transfer.v1.QueryDenomTraceResponse": { "type": "object", "properties": { "denomTrace": { "$ref": "#/definitions/ibc.applications.transfer.v1.DenomTrace", "description": "denom_trace returns the requested denomination trace information." } }, "description": "QueryDenomTraceResponse is the response type for the Query/DenomTrace RPC\nmethod." }, "ibc.applications.transfer.v1.QueryDenomTracesResponse": { "type": "object", "properties": { "denomTraces": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/ibc.applications.transfer.v1.DenomTrace" }, "description": "denom_traces returns all denominations trace information." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryConnectionsResponse is the response type for the Query/DenomTraces RPC\nmethod." }, "ibc.applications.transfer.v1.QueryEscrowAddressResponse": { "type": "object", "properties": { "escrowAddress": { "type": "string", "title": "the escrow account address" } }, "description": "QueryEscrowAddressResponse is the response type of the EscrowAddress RPC method." }, "ibc.applications.transfer.v1.QueryParamsResponse": { "type": "object", "properties": { "params": { "$ref": "#/definitions/ibc.applications.transfer.v1.Params", "description": "params defines the parameters of the module." } }, "description": "QueryParamsResponse is the response type for the Query/Params RPC method." }, "ibc.core.channel.v1.Channel": { "type": "object", "properties": { "state": { "$ref": "#/definitions/ibc.core.channel.v1.State", "title": "current state of the channel end" }, "ordering": { "$ref": "#/definitions/ibc.core.channel.v1.Order", "title": "whether the channel is ordered or unordered" }, "counterparty": { "$ref": "#/definitions/ibc.core.channel.v1.Counterparty", "title": "counterparty channel end" }, "connectionHops": { "type": "array", "items": { "type": "string" }, "title": "list of connection identifiers, in order, along which packets sent on\nthis channel will travel" }, "version": { "type": "string", "title": "opaque channel version, which is agreed upon during the handshake" } }, "description": "Channel defines pipeline for exactly-once packet delivery between specific\nmodules on separate blockchains, which has at least one end capable of\nsending packets and one end capable of receiving packets." }, "ibc.core.channel.v1.Counterparty": { "type": "object", "properties": { "portId": { "type": "string", "description": "port on the counterparty chain which owns the other end of the channel." }, "channelId": { "type": "string", "title": "channel end on the counterparty chain" } }, "title": "Counterparty defines a channel end counterparty" }, "ibc.core.channel.v1.IdentifiedChannel": { "type": "object", "properties": { "state": { "$ref": "#/definitions/ibc.core.channel.v1.State", "title": "current state of the channel end" }, "ordering": { "$ref": "#/definitions/ibc.core.channel.v1.Order", "title": "whether the channel is ordered or unordered" }, "counterparty": { "$ref": "#/definitions/ibc.core.channel.v1.Counterparty", "title": "counterparty channel end" }, "connectionHops": { "type": "array", "items": { "type": "string" }, "title": "list of connection identifiers, in order, along which packets sent on\nthis channel will travel" }, "version": { "type": "string", "title": "opaque channel version, which is agreed upon during the handshake" }, "portId": { "type": "string", "title": "port identifier" }, "channelId": { "type": "string", "title": "channel identifier" } }, "description": "IdentifiedChannel defines a channel with additional port and channel\nidentifier fields." }, "ibc.core.channel.v1.Order": { "type": "string", "enum": [ "ORDER_NONE_UNSPECIFIED", "ORDER_UNORDERED", "ORDER_ORDERED" ], "default": "ORDER_NONE_UNSPECIFIED", "description": "- ORDER_NONE_UNSPECIFIED: zero-value for channel ordering\n - ORDER_UNORDERED: packets can be delivered in any order, which may differ from the order in\nwhich they were sent.\n - ORDER_ORDERED: packets are delivered exactly in the order which they were sent", "title": "Order defines if a channel is ORDERED or UNORDERED" }, "ibc.core.channel.v1.PacketId": { "type": "object", "properties": { "portId": { "type": "string", "title": "channel port identifier" }, "channelId": { "type": "string", "title": "channel unique identifier" }, "sequence": { "type": "string", "format": "uint64", "title": "packet sequence" } }, "title": "PacketId is an identifer for a unique Packet\nSource chains refer to packets by source port/channel\nDestination chains refer to packets by destination port/channel" }, "ibc.core.channel.v1.PacketState": { "type": "object", "properties": { "portId": { "type": "string", "description": "channel port identifier." }, "channelId": { "type": "string", "description": "channel unique identifier." }, "sequence": { "type": "string", "format": "uint64", "description": "packet sequence." }, "data": { "type": "string", "format": "byte", "description": "embedded data that represents packet state." } }, "description": "PacketState defines the generic type necessary to retrieve and store\npacket commitments, acknowledgements, and receipts.\nCaller is responsible for knowing the context necessary to interpret this\nstate as a commitment, acknowledgement, or a receipt." }, "ibc.core.channel.v1.QueryChannelClientStateResponse": { "type": "object", "properties": { "identifiedClientState": { "$ref": "#/definitions/ibc.core.client.v1.IdentifiedClientState", "title": "client state associated with the channel" }, "proof": { "type": "string", "format": "byte", "title": "merkle proof of existence" }, "proofHeight": { "$ref": "#/definitions/ibc.core.client.v1.Height", "title": "height at which the proof was retrieved" } }, "title": "QueryChannelClientStateResponse is the Response type for the\nQuery/QueryChannelClientState RPC method" }, "ibc.core.channel.v1.QueryChannelConsensusStateResponse": { "type": "object", "properties": { "consensusState": { "$ref": "#/definitions/google.protobuf.Any", "title": "consensus state associated with the channel" }, "clientId": { "type": "string", "title": "client ID associated with the consensus state" }, "proof": { "type": "string", "format": "byte", "title": "merkle proof of existence" }, "proofHeight": { "$ref": "#/definitions/ibc.core.client.v1.Height", "title": "height at which the proof was retrieved" } }, "title": "QueryChannelClientStateResponse is the Response type for the\nQuery/QueryChannelClientState RPC method" }, "ibc.core.channel.v1.QueryChannelResponse": { "type": "object", "properties": { "channel": { "$ref": "#/definitions/ibc.core.channel.v1.Channel", "title": "channel associated with the request identifiers" }, "proof": { "type": "string", "format": "byte", "title": "merkle proof of existence" }, "proofHeight": { "$ref": "#/definitions/ibc.core.client.v1.Height", "title": "height at which the proof was retrieved" } }, "description": "QueryChannelResponse is the response type for the Query/Channel RPC method.\nBesides the Channel end, it includes a proof and the height from which the\nproof was retrieved." }, "ibc.core.channel.v1.QueryChannelsResponse": { "type": "object", "properties": { "channels": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/ibc.core.channel.v1.IdentifiedChannel" }, "description": "list of stored channels of the chain." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "title": "pagination response" }, "height": { "$ref": "#/definitions/ibc.core.client.v1.Height", "title": "query block height" } }, "description": "QueryChannelsResponse is the response type for the Query/Channels RPC method." }, "ibc.core.channel.v1.QueryConnectionChannelsResponse": { "type": "object", "properties": { "channels": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/ibc.core.channel.v1.IdentifiedChannel" }, "description": "list of channels associated with a connection." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "title": "pagination response" }, "height": { "$ref": "#/definitions/ibc.core.client.v1.Height", "title": "query block height" } }, "title": "QueryConnectionChannelsResponse is the Response type for the\nQuery/QueryConnectionChannels RPC method" }, "ibc.core.channel.v1.QueryNextSequenceReceiveResponse": { "type": "object", "properties": { "nextSequenceReceive": { "type": "string", "format": "uint64", "title": "next sequence receive number" }, "proof": { "type": "string", "format": "byte", "title": "merkle proof of existence" }, "proofHeight": { "$ref": "#/definitions/ibc.core.client.v1.Height", "title": "height at which the proof was retrieved" } }, "title": "QuerySequenceResponse is the request type for the\nQuery/QueryNextSequenceReceiveResponse RPC method" }, "ibc.core.channel.v1.QueryPacketAcknowledgementResponse": { "type": "object", "properties": { "acknowledgement": { "type": "string", "format": "byte", "title": "packet associated with the request fields" }, "proof": { "type": "string", "format": "byte", "title": "merkle proof of existence" }, "proofHeight": { "$ref": "#/definitions/ibc.core.client.v1.Height", "title": "height at which the proof was retrieved" } }, "title": "QueryPacketAcknowledgementResponse defines the client query response for a\npacket which also includes a proof and the height from which the\nproof was retrieved" }, "ibc.core.channel.v1.QueryPacketAcknowledgementsResponse": { "type": "object", "properties": { "acknowledgements": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/ibc.core.channel.v1.PacketState" } }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "title": "pagination response" }, "height": { "$ref": "#/definitions/ibc.core.client.v1.Height", "title": "query block height" } }, "title": "QueryPacketAcknowledgemetsResponse is the request type for the\nQuery/QueryPacketAcknowledgements RPC method" }, "ibc.core.channel.v1.QueryPacketCommitmentResponse": { "type": "object", "properties": { "commitment": { "type": "string", "format": "byte", "title": "packet associated with the request fields" }, "proof": { "type": "string", "format": "byte", "title": "merkle proof of existence" }, "proofHeight": { "$ref": "#/definitions/ibc.core.client.v1.Height", "title": "height at which the proof was retrieved" } }, "title": "QueryPacketCommitmentResponse defines the client query response for a packet\nwhich also includes a proof and the height from which the proof was\nretrieved" }, "ibc.core.channel.v1.QueryPacketCommitmentsResponse": { "type": "object", "properties": { "commitments": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/ibc.core.channel.v1.PacketState" } }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "title": "pagination response" }, "height": { "$ref": "#/definitions/ibc.core.client.v1.Height", "title": "query block height" } }, "title": "QueryPacketCommitmentsResponse is the request type for the\nQuery/QueryPacketCommitments RPC method" }, "ibc.core.channel.v1.QueryPacketReceiptResponse": { "type": "object", "properties": { "received": { "type": "boolean", "title": "success flag for if receipt exists" }, "proof": { "type": "string", "format": "byte", "title": "merkle proof of existence" }, "proofHeight": { "$ref": "#/definitions/ibc.core.client.v1.Height", "title": "height at which the proof was retrieved" } }, "title": "QueryPacketReceiptResponse defines the client query response for a packet\nreceipt which also includes a proof, and the height from which the proof was\nretrieved" }, "ibc.core.channel.v1.QueryUnreceivedAcksResponse": { "type": "object", "properties": { "sequences": { "type": "array", "items": { "type": "string", "format": "uint64" }, "title": "list of unreceived acknowledgement sequences" }, "height": { "$ref": "#/definitions/ibc.core.client.v1.Height", "title": "query block height" } }, "title": "QueryUnreceivedAcksResponse is the response type for the\nQuery/UnreceivedAcks RPC method" }, "ibc.core.channel.v1.QueryUnreceivedPacketsResponse": { "type": "object", "properties": { "sequences": { "type": "array", "items": { "type": "string", "format": "uint64" }, "title": "list of unreceived packet sequences" }, "height": { "$ref": "#/definitions/ibc.core.client.v1.Height", "title": "query block height" } }, "title": "QueryUnreceivedPacketsResponse is the response type for the\nQuery/UnreceivedPacketCommitments RPC method" }, "ibc.core.channel.v1.State": { "type": "string", "enum": [ "STATE_UNINITIALIZED_UNSPECIFIED", "STATE_INIT", "STATE_TRYOPEN", "STATE_OPEN", "STATE_CLOSED" ], "default": "STATE_UNINITIALIZED_UNSPECIFIED", "description": "State defines if a channel is in one of the following states:\nCLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED.\n\n - STATE_UNINITIALIZED_UNSPECIFIED: Default State\n - STATE_INIT: A channel has just started the opening handshake.\n - STATE_TRYOPEN: A channel has acknowledged the handshake step on the counterparty chain.\n - STATE_OPEN: A channel has completed the handshake. Open channels are\nready to send and receive packets.\n - STATE_CLOSED: A channel has been closed and can no longer be used to send or receive\npackets." }, "ibc.core.client.v1.ConsensusStateWithHeight": { "type": "object", "properties": { "height": { "$ref": "#/definitions/ibc.core.client.v1.Height", "title": "consensus state height" }, "consensusState": { "$ref": "#/definitions/google.protobuf.Any", "title": "consensus state" } }, "description": "ConsensusStateWithHeight defines a consensus state with an additional height\nfield." }, "ibc.core.client.v1.Height": { "type": "object", "properties": { "revisionNumber": { "type": "string", "format": "uint64", "title": "the revision that the client is currently on" }, "revisionHeight": { "type": "string", "format": "uint64", "title": "the height within the given revision" } }, "description": "Normally the RevisionHeight is incremented at each height while keeping\nRevisionNumber the same. However some consensus algorithms may choose to\nreset the height in certain conditions e.g. hard forks, state-machine\nbreaking changes In these cases, the RevisionNumber is incremented so that\nheight continues to be monitonically increasing even as the RevisionHeight\ngets reset", "title": "Height is a monotonically increasing data type\nthat can be compared against another Height for the purposes of updating and\nfreezing clients" }, "ibc.core.client.v1.IdentifiedClientState": { "type": "object", "properties": { "clientId": { "type": "string", "title": "client identifier" }, "clientState": { "$ref": "#/definitions/google.protobuf.Any", "title": "client state" } }, "description": "IdentifiedClientState defines a client state with an additional client\nidentifier field." }, "ibc.core.client.v1.Params": { "type": "object", "properties": { "allowedClients": { "type": "array", "items": { "type": "string" }, "description": "allowed_clients defines the list of allowed client state types." } }, "description": "Params defines the set of IBC light client parameters." }, "ibc.core.client.v1.QueryClientParamsResponse": { "type": "object", "properties": { "params": { "$ref": "#/definitions/ibc.core.client.v1.Params", "description": "params defines the parameters of the module." } }, "description": "QueryClientParamsResponse is the response type for the Query/ClientParams RPC\nmethod." }, "ibc.core.client.v1.QueryClientStateResponse": { "type": "object", "properties": { "clientState": { "$ref": "#/definitions/google.protobuf.Any", "title": "client state associated with the request identifier" }, "proof": { "type": "string", "format": "byte", "title": "merkle proof of existence" }, "proofHeight": { "$ref": "#/definitions/ibc.core.client.v1.Height", "title": "height at which the proof was retrieved" } }, "description": "QueryClientStateResponse is the response type for the Query/ClientState RPC\nmethod. Besides the client state, it includes a proof and the height from\nwhich the proof was retrieved." }, "ibc.core.client.v1.QueryClientStatesResponse": { "type": "object", "properties": { "clientStates": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/ibc.core.client.v1.IdentifiedClientState" }, "description": "list of stored ClientStates of the chain." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "title": "pagination response" } }, "description": "QueryClientStatesResponse is the response type for the Query/ClientStates RPC\nmethod." }, "ibc.core.client.v1.QueryClientStatusResponse": { "type": "object", "properties": { "status": { "type": "string" } }, "description": "QueryClientStatusResponse is the response type for the Query/ClientStatus RPC\nmethod. It returns the current status of the IBC client." }, "ibc.core.client.v1.QueryConsensusStateHeightsResponse": { "type": "object", "properties": { "consensusStateHeights": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/ibc.core.client.v1.Height" }, "title": "consensus state heights" }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "title": "pagination response" } }, "title": "QueryConsensusStateHeightsResponse is the response type for the\nQuery/ConsensusStateHeights RPC method" }, "ibc.core.client.v1.QueryConsensusStateResponse": { "type": "object", "properties": { "consensusState": { "$ref": "#/definitions/google.protobuf.Any", "title": "consensus state associated with the client identifier at the given height" }, "proof": { "type": "string", "format": "byte", "title": "merkle proof of existence" }, "proofHeight": { "$ref": "#/definitions/ibc.core.client.v1.Height", "title": "height at which the proof was retrieved" } }, "title": "QueryConsensusStateResponse is the response type for the Query/ConsensusState\nRPC method" }, "ibc.core.client.v1.QueryConsensusStatesResponse": { "type": "object", "properties": { "consensusStates": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/ibc.core.client.v1.ConsensusStateWithHeight" }, "title": "consensus states associated with the identifier" }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "title": "pagination response" } }, "title": "QueryConsensusStatesResponse is the response type for the\nQuery/ConsensusStates RPC method" }, "ibc.core.client.v1.QueryUpgradedClientStateResponse": { "type": "object", "properties": { "upgradedClientState": { "$ref": "#/definitions/google.protobuf.Any", "title": "client state associated with the request identifier" } }, "description": "QueryUpgradedClientStateResponse is the response type for the\nQuery/UpgradedClientState RPC method." }, "ibc.core.client.v1.QueryUpgradedConsensusStateResponse": { "type": "object", "properties": { "upgradedConsensusState": { "$ref": "#/definitions/google.protobuf.Any", "title": "Consensus state associated with the request identifier" } }, "description": "QueryUpgradedConsensusStateResponse is the response type for the\nQuery/UpgradedConsensusState RPC method." }, "ibc.core.commitment.v1.MerklePrefix": { "type": "object", "properties": { "keyPrefix": { "type": "string", "format": "byte" } }, "title": "MerklePrefix is merkle path prefixed to the key.\nThe constructed key from the Path and the key will be append(Path.KeyPath,\nappend(Path.KeyPrefix, key...))" }, "ibc.core.connection.v1.ConnectionEnd": { "type": "object", "properties": { "clientId": { "type": "string", "description": "client associated with this connection." }, "versions": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/ibc.core.connection.v1.Version" }, "description": "IBC version which can be utilised to determine encodings or protocols for\nchannels or packets utilising this connection." }, "state": { "$ref": "#/definitions/ibc.core.connection.v1.State", "description": "current state of the connection end." }, "counterparty": { "$ref": "#/definitions/ibc.core.connection.v1.Counterparty", "description": "counterparty chain associated with this connection." }, "delayPeriod": { "type": "string", "format": "uint64", "description": "delay period that must pass before a consensus state can be used for\npacket-verification NOTE: delay period logic is only implemented by some\nclients." } }, "description": "ConnectionEnd defines a stateful object on a chain connected to another\nseparate one.\nNOTE: there must only be 2 defined ConnectionEnds to establish\na connection between two chains." }, "ibc.core.connection.v1.Counterparty": { "type": "object", "properties": { "clientId": { "type": "string", "description": "identifies the client on the counterparty chain associated with a given\nconnection." }, "connectionId": { "type": "string", "description": "identifies the connection end on the counterparty chain associated with a\ngiven connection." }, "prefix": { "$ref": "#/definitions/ibc.core.commitment.v1.MerklePrefix", "description": "commitment merkle prefix of the counterparty chain." } }, "description": "Counterparty defines the counterparty chain associated with a connection end." }, "ibc.core.connection.v1.IdentifiedConnection": { "type": "object", "properties": { "id": { "type": "string", "description": "connection identifier." }, "clientId": { "type": "string", "description": "client associated with this connection." }, "versions": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/ibc.core.connection.v1.Version" }, "title": "IBC version which can be utilised to determine encodings or protocols for\nchannels or packets utilising this connection" }, "state": { "$ref": "#/definitions/ibc.core.connection.v1.State", "description": "current state of the connection end." }, "counterparty": { "$ref": "#/definitions/ibc.core.connection.v1.Counterparty", "description": "counterparty chain associated with this connection." }, "delayPeriod": { "type": "string", "format": "uint64", "description": "delay period associated with this connection." } }, "description": "IdentifiedConnection defines a connection with additional connection\nidentifier field." }, "ibc.core.connection.v1.Params": { "type": "object", "properties": { "maxExpectedTimePerBlock": { "type": "string", "format": "uint64", "description": "maximum expected time per block (in nanoseconds), used to enforce block delay. This parameter should reflect the\nlargest amount of time that the chain might reasonably take to produce the next block under normal operating\nconditions. A safe choice is 3-5x the expected time per block." } }, "description": "Params defines the set of Connection parameters." }, "ibc.core.connection.v1.QueryClientConnectionsResponse": { "type": "object", "properties": { "connectionPaths": { "type": "array", "items": { "type": "string" }, "description": "slice of all the connection paths associated with a client." }, "proof": { "type": "string", "format": "byte", "title": "merkle proof of existence" }, "proofHeight": { "$ref": "#/definitions/ibc.core.client.v1.Height", "title": "height at which the proof was generated" } }, "title": "QueryClientConnectionsResponse is the response type for the\nQuery/ClientConnections RPC method" }, "ibc.core.connection.v1.QueryConnectionClientStateResponse": { "type": "object", "properties": { "identifiedClientState": { "$ref": "#/definitions/ibc.core.client.v1.IdentifiedClientState", "title": "client state associated with the channel" }, "proof": { "type": "string", "format": "byte", "title": "merkle proof of existence" }, "proofHeight": { "$ref": "#/definitions/ibc.core.client.v1.Height", "title": "height at which the proof was retrieved" } }, "title": "QueryConnectionClientStateResponse is the response type for the\nQuery/ConnectionClientState RPC method" }, "ibc.core.connection.v1.QueryConnectionConsensusStateResponse": { "type": "object", "properties": { "consensusState": { "$ref": "#/definitions/google.protobuf.Any", "title": "consensus state associated with the channel" }, "clientId": { "type": "string", "title": "client ID associated with the consensus state" }, "proof": { "type": "string", "format": "byte", "title": "merkle proof of existence" }, "proofHeight": { "$ref": "#/definitions/ibc.core.client.v1.Height", "title": "height at which the proof was retrieved" } }, "title": "QueryConnectionConsensusStateResponse is the response type for the\nQuery/ConnectionConsensusState RPC method" }, "ibc.core.connection.v1.QueryConnectionParamsResponse": { "type": "object", "properties": { "params": { "$ref": "#/definitions/ibc.core.connection.v1.Params", "description": "params defines the parameters of the module." } }, "description": "QueryConnectionParamsResponse is the response type for the Query/ConnectionParams RPC method." }, "ibc.core.connection.v1.QueryConnectionResponse": { "type": "object", "properties": { "connection": { "$ref": "#/definitions/ibc.core.connection.v1.ConnectionEnd", "title": "connection associated with the request identifier" }, "proof": { "type": "string", "format": "byte", "title": "merkle proof of existence" }, "proofHeight": { "$ref": "#/definitions/ibc.core.client.v1.Height", "title": "height at which the proof was retrieved" } }, "description": "QueryConnectionResponse is the response type for the Query/Connection RPC\nmethod. Besides the connection end, it includes a proof and the height from\nwhich the proof was retrieved." }, "ibc.core.connection.v1.QueryConnectionsResponse": { "type": "object", "properties": { "connections": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/ibc.core.connection.v1.IdentifiedConnection" }, "description": "list of stored connections of the chain." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "title": "pagination response" }, "height": { "$ref": "#/definitions/ibc.core.client.v1.Height", "title": "query block height" } }, "description": "QueryConnectionsResponse is the response type for the Query/Connections RPC\nmethod." }, "ibc.core.connection.v1.State": { "type": "string", "enum": [ "STATE_UNINITIALIZED_UNSPECIFIED", "STATE_INIT", "STATE_TRYOPEN", "STATE_OPEN" ], "default": "STATE_UNINITIALIZED_UNSPECIFIED", "description": "State defines if a connection is in one of the following states:\nINIT, TRYOPEN, OPEN or UNINITIALIZED.\n\n - STATE_UNINITIALIZED_UNSPECIFIED: Default State\n - STATE_INIT: A connection end has just started the opening handshake.\n - STATE_TRYOPEN: A connection end has acknowledged the handshake step on the counterparty\nchain.\n - STATE_OPEN: A connection end has completed the handshake." }, "ibc.core.connection.v1.Version": { "type": "object", "properties": { "identifier": { "type": "string", "title": "unique version identifier" }, "features": { "type": "array", "items": { "type": "string" }, "title": "list of features compatible with the specified identifier" } }, "description": "Version defines the versioning scheme used to negotiate the IBC verison in\nthe connection handshake." }, "tendermint.abci.Event": { "type": "object", "properties": { "type": { "type": "string" }, "attributes": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/tendermint.abci.EventAttribute" } } }, "description": "Event allows application developers to attach additional information to\nResponseBeginBlock, ResponseEndBlock, ResponseCheckTx and ResponseDeliverTx.\nLater, transactions may be queried using these events." }, "tendermint.abci.EventAttribute": { "type": "object", "properties": { "key": { "type": "string", "format": "byte" }, "value": { "type": "string", "format": "byte" }, "index": { "type": "boolean", "title": "nondeterministic" } }, "description": "EventAttribute is a single key-value pair, associated with an event." }, "tendermint.crypto.PublicKey": { "type": "object", "properties": { "ed25519": { "type": "string", "format": "byte" }, "secp256k1": { "type": "string", "format": "byte" } }, "title": "PublicKey defines the keys available for use with Tendermint Validators" }, "tendermint.p2p.DefaultNodeInfo": { "type": "object", "properties": { "protocolVersion": { "$ref": "#/definitions/tendermint.p2p.ProtocolVersion" }, "defaultNodeId": { "type": "string" }, "listenAddr": { "type": "string" }, "network": { "type": "string" }, "version": { "type": "string" }, "channels": { "type": "string", "format": "byte" }, "moniker": { "type": "string" }, "other": { "$ref": "#/definitions/tendermint.p2p.DefaultNodeInfoOther" } } }, "tendermint.p2p.DefaultNodeInfoOther": { "type": "object", "properties": { "txIndex": { "type": "string" }, "rpcAddress": { "type": "string" } } }, "tendermint.p2p.ProtocolVersion": { "type": "object", "properties": { "p2p": { "type": "string", "format": "uint64" }, "block": { "type": "string", "format": "uint64" }, "app": { "type": "string", "format": "uint64" } } }, "tendermint.types.Block": { "type": "object", "properties": { "header": { "$ref": "#/definitions/tendermint.types.Header" }, "data": { "$ref": "#/definitions/tendermint.types.Data" }, "evidence": { "$ref": "#/definitions/tendermint.types.EvidenceList" }, "lastCommit": { "$ref": "#/definitions/tendermint.types.Commit" } } }, "tendermint.types.BlockID": { "type": "object", "properties": { "hash": { "type": "string", "format": "byte" }, "partSetHeader": { "$ref": "#/definitions/tendermint.types.PartSetHeader" } }, "title": "BlockID" }, "tendermint.types.BlockIDFlag": { "type": "string", "enum": [ "BLOCK_ID_FLAG_UNKNOWN", "BLOCK_ID_FLAG_ABSENT", "BLOCK_ID_FLAG_COMMIT", "BLOCK_ID_FLAG_NIL" ], "default": "BLOCK_ID_FLAG_UNKNOWN", "title": "BlockIdFlag indicates which BlcokID the signature is for" }, "tendermint.types.Commit": { "type": "object", "properties": { "height": { "type": "string", "format": "int64" }, "round": { "type": "integer", "format": "int32" }, "blockId": { "$ref": "#/definitions/tendermint.types.BlockID" }, "signatures": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/tendermint.types.CommitSig" } } }, "description": "Commit contains the evidence that a block was committed by a set of validators." }, "tendermint.types.CommitSig": { "type": "object", "properties": { "blockIdFlag": { "$ref": "#/definitions/tendermint.types.BlockIDFlag" }, "validatorAddress": { "type": "string", "format": "byte" }, "timestamp": { "type": "string", "format": "date-time" }, "signature": { "type": "string", "format": "byte" } }, "description": "CommitSig is a part of the Vote included in a Commit." }, "tendermint.types.Data": { "type": "object", "properties": { "txs": { "type": "array", "items": { "type": "string", "format": "byte" }, "description": "Txs that will be applied by state @ block.Height+1.\nNOTE: not all txs here are valid. We're just agreeing on the order first.\nThis means that block.AppHash does not include these txs." } }, "title": "Data contains the set of transactions included in the block" }, "tendermint.types.DuplicateVoteEvidence": { "type": "object", "properties": { "voteA": { "$ref": "#/definitions/tendermint.types.Vote" }, "voteB": { "$ref": "#/definitions/tendermint.types.Vote" }, "totalVotingPower": { "type": "string", "format": "int64" }, "validatorPower": { "type": "string", "format": "int64" }, "timestamp": { "type": "string", "format": "date-time" } }, "description": "DuplicateVoteEvidence contains evidence of a validator signed two conflicting votes." }, "tendermint.types.Evidence": { "type": "object", "properties": { "duplicateVoteEvidence": { "$ref": "#/definitions/tendermint.types.DuplicateVoteEvidence" }, "lightClientAttackEvidence": { "$ref": "#/definitions/tendermint.types.LightClientAttackEvidence" } } }, "tendermint.types.EvidenceList": { "type": "object", "properties": { "evidence": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/tendermint.types.Evidence" } } } }, "tendermint.types.Header": { "type": "object", "properties": { "version": { "$ref": "#/definitions/tendermint.version.Consensus", "title": "basic block info" }, "chainId": { "type": "string" }, "height": { "type": "string", "format": "int64" }, "time": { "type": "string", "format": "date-time" }, "lastBlockId": { "$ref": "#/definitions/tendermint.types.BlockID", "title": "prev block info" }, "lastCommitHash": { "type": "string", "format": "byte", "description": "commit from validators from the last block", "title": "hashes of block data" }, "dataHash": { "type": "string", "format": "byte", "title": "transactions" }, "validatorsHash": { "type": "string", "format": "byte", "description": "validators for the current block", "title": "hashes from the app output from the prev block" }, "nextValidatorsHash": { "type": "string", "format": "byte", "title": "validators for the next block" }, "consensusHash": { "type": "string", "format": "byte", "title": "consensus params for current block" }, "appHash": { "type": "string", "format": "byte", "title": "state after txs from the previous block" }, "lastResultsHash": { "type": "string", "format": "byte", "title": "root hash of all results from the txs from the previous block" }, "evidenceHash": { "type": "string", "format": "byte", "description": "evidence included in the block", "title": "consensus info" }, "proposerAddress": { "type": "string", "format": "byte", "title": "original proposer of the block" } }, "description": "Header defines the structure of a Tendermint block header." }, "tendermint.types.LightBlock": { "type": "object", "properties": { "signedHeader": { "$ref": "#/definitions/tendermint.types.SignedHeader" }, "validatorSet": { "$ref": "#/definitions/tendermint.types.ValidatorSet" } } }, "tendermint.types.LightClientAttackEvidence": { "type": "object", "properties": { "conflictingBlock": { "$ref": "#/definitions/tendermint.types.LightBlock" }, "commonHeight": { "type": "string", "format": "int64" }, "byzantineValidators": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/tendermint.types.Validator" } }, "totalVotingPower": { "type": "string", "format": "int64" }, "timestamp": { "type": "string", "format": "date-time" } }, "description": "LightClientAttackEvidence contains evidence of a set of validators attempting to mislead a light client." }, "tendermint.types.PartSetHeader": { "type": "object", "properties": { "total": { "type": "integer", "format": "int64" }, "hash": { "type": "string", "format": "byte" } }, "title": "PartsetHeader" }, "tendermint.types.SignedHeader": { "type": "object", "properties": { "header": { "$ref": "#/definitions/tendermint.types.Header" }, "commit": { "$ref": "#/definitions/tendermint.types.Commit" } } }, "tendermint.types.SignedMsgType": { "type": "string", "enum": [ "SIGNED_MSG_TYPE_UNKNOWN", "SIGNED_MSG_TYPE_PREVOTE", "SIGNED_MSG_TYPE_PRECOMMIT", "SIGNED_MSG_TYPE_PROPOSAL" ], "default": "SIGNED_MSG_TYPE_UNKNOWN", "description": "SignedMsgType is a type of signed message in the consensus.\n\n - SIGNED_MSG_TYPE_PREVOTE: Votes\n - SIGNED_MSG_TYPE_PROPOSAL: Proposals" }, "tendermint.types.Validator": { "type": "object", "properties": { "address": { "type": "string", "format": "byte" }, "pubKey": { "$ref": "#/definitions/tendermint.crypto.PublicKey" }, "votingPower": { "type": "string", "format": "int64" }, "proposerPriority": { "type": "string", "format": "int64" } } }, "tendermint.types.ValidatorSet": { "type": "object", "properties": { "validators": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/tendermint.types.Validator" } }, "proposer": { "$ref": "#/definitions/tendermint.types.Validator" }, "totalVotingPower": { "type": "string", "format": "int64" } } }, "tendermint.types.Vote": { "type": "object", "properties": { "type": { "$ref": "#/definitions/tendermint.types.SignedMsgType" }, "height": { "type": "string", "format": "int64" }, "round": { "type": "integer", "format": "int32" }, "blockId": { "$ref": "#/definitions/tendermint.types.BlockID", "description": "zero if vote is nil." }, "timestamp": { "type": "string", "format": "date-time" }, "validatorAddress": { "type": "string", "format": "byte" }, "validatorIndex": { "type": "integer", "format": "int32" }, "signature": { "type": "string", "format": "byte" } }, "description": "Vote represents a prevote, precommit, or commit vote from validators for\nconsensus." }, "tendermint.version.Consensus": { "type": "object", "properties": { "block": { "type": "string", "format": "uint64" }, "app": { "type": "string", "format": "uint64" } }, "description": "Consensus captures the consensus rules for processing a block in the blockchain,\nincluding all blockchain data structures and the rules of the application's\nstate transition machine." } } }