{ "swagger": "2.0", "info": { "title": "cosmos/app/v1alpha1/module.proto", "version": "0.1.0" }, "tags": [ { "name": "Query" }, { "name": "Msg" }, { "name": "ABCIApplication" }, { "name": "Service" }, { "name": "ReflectionService" } ], "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 number.", "description": "Since: cosmos-sdk 0.46.2", "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", "description": "id is the account number of the address to be queried. This field\nshould have been an uint64 (like all account numbers), and will be\nupdated to uint64 in a future version of the auth query.", "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/module_accounts/{name}": { "get": { "summary": "ModuleAccountByName returns the module account info by module name", "operationId": "ModuleAccountByName", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.auth.v1beta1.QueryModuleAccountByNameResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "name", "in": "path", "required": true, "type": "string" } ], "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/node/v1beta1/config": { "get": { "summary": "Config queries for the operator configuration.", "operationId": "Config", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.base.node.v1beta1.ConfigResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Service" ] } }, "/cosmos/base/reflection/v1beta1/app_descriptor/authn": { "get": { "summary": "GetAuthnDescriptor returns information on how to authenticate transactions in the application\nNOTE: this RPC is still experimental and might be subject to breaking changes or removal in\nfuture releases of the cosmos-sdk.", "operationId": "GetAuthnDescriptor", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.base.reflection.v2alpha1.GetAuthnDescriptorResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "ReflectionService" ] } }, "/cosmos/base/reflection/v1beta1/app_descriptor/chain": { "get": { "summary": "GetChainDescriptor returns the description of the chain", "operationId": "GetChainDescriptor", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.base.reflection.v2alpha1.GetChainDescriptorResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "ReflectionService" ] } }, "/cosmos/base/reflection/v1beta1/app_descriptor/codec": { "get": { "summary": "GetCodecDescriptor returns the descriptor of the codec of the application", "operationId": "GetCodecDescriptor", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.base.reflection.v2alpha1.GetCodecDescriptorResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "ReflectionService" ] } }, "/cosmos/base/reflection/v1beta1/app_descriptor/configuration": { "get": { "summary": "GetConfigurationDescriptor returns the descriptor for the sdk.Config of the application", "operationId": "GetConfigurationDescriptor", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.base.reflection.v2alpha1.GetConfigurationDescriptorResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "ReflectionService" ] } }, "/cosmos/base/reflection/v1beta1/app_descriptor/query_services": { "get": { "summary": "GetQueryServicesDescriptor returns the available gRPC queryable services of the application", "operationId": "GetQueryServicesDescriptor", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.base.reflection.v2alpha1.GetQueryServicesDescriptorResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "ReflectionService" ] } }, "/cosmos/base/reflection/v1beta1/app_descriptor/tx_descriptor": { "get": { "summary": "GetTxDescriptor returns information on the used transaction object and available msgs that can be used", "operationId": "GetTxDescriptor", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.base.reflection.v2alpha1.GetTxDescriptorResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "ReflectionService" ] } }, "/cosmos/base/reflection/v1beta1/interfaces": { "get": { "summary": "ListAllInterfaces lists all the interfaces registered in the interface\nregistry.", "operationId": "ListAllInterfaces", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.base.reflection.v1beta1.ListAllInterfacesResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "ReflectionService" ] } }, "/cosmos/base/reflection/v1beta1/interfaces/{interfaceName}/implementations": { "get": { "summary": "ListImplementations list all the concrete types that implement a given\ninterface.", "operationId": "ListImplementations", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.base.reflection.v1beta1.ListImplementationsResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "interfaceName", "description": "interface_name defines the interface to query the implementations for.", "in": "path", "required": true, "type": "string" } ], "tags": [ "ReflectionService" ] } }, "/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}": { "get": { "summary": "ValidatorDistributionInfo queries validator commision and self-delegation rewards for validator", "operationId": "ValidatorDistributionInfo", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.distribution.v1beta1.QueryValidatorDistributionInfoResponse" } }, "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}/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": { "get": { "summary": "Groups queries all groups in state.", "description": "Since: cosmos-sdk 0.47.1", "operationId": "Groups", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/cosmos.group.v1.QueryGroupsResponse" } }, "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/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/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/erc20/v1/tx/convert_coin": { "get": { "summary": "ConvertCoin mints a ERC20 representation of the native Cosmos coin denom\nthat is registered on the token mapping.", "operationId": "ConvertCoin", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/evmos.erc20.v1.MsgConvertCoinResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "coin.denom", "in": "query", "required": false, "type": "string" }, { "name": "coin.amount", "in": "query", "required": false, "type": "string" }, { "name": "receiver", "description": "receiver is the hex address to receive ERC20 token", "in": "query", "required": false, "type": "string" }, { "name": "sender", "description": "sender is the cosmos bech32 address from the owner of the given Cosmos coins", "in": "query", "required": false, "type": "string" } ], "tags": [ "Msg" ] } }, "/evmos/erc20/v1/tx/convert_erc20": { "get": { "summary": "ConvertERC20 mints a native Cosmos coin representation of the ERC20 token\ncontract that is registered on the token mapping.", "operationId": "ConvertERC20", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/evmos.erc20.v1.MsgConvertERC20Response" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "contractAddress", "description": "contract_address of an ERC20 token contract, that is registered in a token pair", "in": "query", "required": false, "type": "string" }, { "name": "amount", "description": "amount of ERC20 tokens to convert", "in": "query", "required": false, "type": "string" }, { "name": "receiver", "description": "receiver is the bech32 address to receive native Cosmos coins", "in": "query", "required": false, "type": "string" }, { "name": "sender", "description": "sender is the hex address from the owner of the given ERC20 tokens", "in": "query", "required": false, "type": "string" } ], "tags": [ "Msg" ] } }, "/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 status.", "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/ethereum_tx": { "post": { "summary": "EthereumTx defines a method submitting Ethereum transactions.", "operationId": "EthereumTx", "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": "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": "data.value", "description": "Must be a valid serialized protocol buffer of the above specified type.", "in": "query", "required": false, "type": "string", "format": "byte" }, { "name": "size", "description": "size is the encoded storage size of the transaction (DEPRECATED)", "in": "query", "required": false, "type": "number", "format": "double" }, { "name": "hash", "description": "hash of the transaction in hex format", "in": "query", "required": false, "type": "string" }, { "name": "from", "description": "from is the ethereum signer address in hex format. This address value is checked\nagainst the address derived from the signature (V, R, S) using the\nsecp256k1 elliptic curve", "in": "query", "required": false, "type": "string" } ], "tags": [ "Msg" ] } }, "/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 `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 tracing\ncalls", "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 hard-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 pricing 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 byzantium)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.constantinopleBlock", "description": "constantinople_block: Constantinople switch block (nil no fork, 0 = already activated)", "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 istanbul)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.muirGlacierBlock", "description": "muir_glacier_block: Eip-2384 (bomb delay) switch block (nil no fork, 0 = already 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 = already 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 = already 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 splitter", "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 checked\nagainst 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 tracing\ncalls", "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 hard-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 pricing 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 byzantium)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.constantinopleBlock", "description": "constantinople_block: Constantinople switch block (nil no fork, 0 = already activated)", "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 istanbul)", "in": "query", "required": false, "type": "string" }, { "name": "traceConfig.overrides.muirGlacierBlock", "description": "muir_glacier_block: Eip-2384 (bomb delay) switch block (nil no fork, 0 = already 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 = already 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 = already 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 splitter", "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/inflation_rate": { "get": { "summary": "InflationRate retrieves current era inflation rate.", "operationId": "InflationRate", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/haqq.coinomics.v1.QueryInflationRateResponse" } }, "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/vesting/v1/balances/{address}": { "get": { "summary": "Balances retrieves the unvested, vested and locked tokens for a vesting account", "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 tokens", "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" ] } }, "/haqq/vesting/v1/tx/clawback": { "get": { "summary": "Clawback removes the unvested tokens from a ClawbackVestingAccount.", "operationId": "Clawback", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/haqq.vesting.v1.MsgClawbackResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "funderAddress", "description": "funder_address is the address which funded the account", "in": "query", "required": false, "type": "string" }, { "name": "accountAddress", "description": "account_address is the address of the ClawbackVestingAccount to claw back\nfrom.", "in": "query", "required": false, "type": "string" }, { "name": "destAddress", "description": "dest_address specifies where the clawed-back tokens should be transferred\nto. If empty, the tokens will be transferred back to the original funder of\nthe account.", "in": "query", "required": false, "type": "string" } ], "tags": [ "Msg" ] } }, "/haqq/vesting/v1/tx/convert_into_vesting_account": { "get": { "summary": "ConvertIntoVestingAccount converts a Eth account to a ClawbackVestingAccount", "operationId": "ConvertIntoVestingAccount", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/haqq.vesting.v1.MsgConvertIntoVestingAccountResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "fromAddress", "description": "from_address specifies the account to provide the funds and sign the\nclawback request", "in": "query", "required": false, "type": "string" }, { "name": "toAddress", "description": "to_address is the account to be converted into clawback vesting account", "in": "query", "required": false, "type": "string" }, { "name": "startTime", "description": "start_time defines the time at which the vesting period begins", "in": "query", "required": false, "type": "string", "format": "date-time" }, { "name": "merge", "description": "merge specifies a the conversion mechanism for existing\nClawbackVestingAccounts. If true, merge this new grant into an existing\nClawbackVestingAccount, or create it if it does not exist. If false,\ncreates a new account. New grants to an existing account must be from the\nsame from_address.", "in": "query", "required": false, "type": "boolean" }, { "name": "stake", "description": "stake specifies a the post-creation flow. If true, delegate the total amount to a specified\nvalidator. If false, do nothing.", "in": "query", "required": false, "type": "boolean" }, { "name": "validatorAddress", "description": "validator_address specifies the validator to delegate tokens to.", "in": "query", "required": false, "type": "string" } ], "tags": [ "Msg" ] } }, "/haqq/vesting/v1/tx/convert_vesting_account": { "get": { "summary": "ConvertVestingAccount converts a ClawbackVestingAccount to a Eth account", "operationId": "ConvertVestingAccount", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/haqq.vesting.v1.MsgConvertVestingAccountResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "vestingAddress", "description": "vesting_address is the address of the vesting account to convert", "in": "query", "required": false, "type": "string" } ], "tags": [ "Msg" ] } }, "/haqq/vesting/v1/tx/create_clawback_vesting_account": { "get": { "summary": "CreateClawbackVestingAccount creats a vesting account that is subject to\nclawback and the configuration of vesting and lockup schedules.", "operationId": "CreateClawbackVestingAccount", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/haqq.vesting.v1.MsgCreateClawbackVestingAccountResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "fromAddress", "description": "from_address specifies the account to provide the funds and sign the\nclawback request", "in": "query", "required": false, "type": "string" }, { "name": "toAddress", "description": "to_address specifies the account to receive the funds", "in": "query", "required": false, "type": "string" }, { "name": "startTime", "description": "start_time defines the time at which the vesting period begins", "in": "query", "required": false, "type": "string", "format": "date-time" }, { "name": "merge", "description": "merge specifies a the creation mechanism for existing\nClawbackVestingAccounts. If true, merge this new grant into an existing\nClawbackVestingAccount, or create it if it does not exist. If false,\ncreates a new account. New grants to an existing account must be from the\nsame from_address.", "in": "query", "required": false, "type": "boolean" } ], "tags": [ "Msg" ] } }, "/haqq/vesting/v1/tx/update_vesting_funder": { "get": { "summary": "UpdateVestingFunder updates the funder address of an existing\nClawbackVestingAccount.", "operationId": "UpdateVestingFunder", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/haqq.vesting.v1.MsgUpdateVestingFunderResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "parameters": [ { "name": "funderAddress", "description": "funder_address is the current funder address of the ClawbackVestingAccount", "in": "query", "required": false, "type": "string" }, { "name": "newFunderAddress", "description": "new_funder_address is the new address to replace the existing funder_address", "in": "query", "required": false, "type": "string" }, { "name": "vestingAddress", "description": "vesting_address is the address of the ClawbackVestingAccount being updated", "in": "query", "required": false, "type": "string" } ], "tags": [ "Msg" ] } }, "/haqqd/coinomics/v1/era": { "get": { "summary": "Era retrieves current era.", "operationId": "Era", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/haqq.coinomics.v1.QueryEraResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/google.rpc.Status" } } }, "tags": [ "Query" ] } }, "/haqqd/coinomics/v1/era_closing_supply": { "get": { "summary": "EraTargetSupply retrieves current era target supply.", "operationId": "EraClosingSupply", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/haqq.coinomics.v1.QueryEraClosingSupplyResponse" } }, "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" ] } } }, "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" } }, "description": "Since: cosmos-sdk 0.46.2", "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.QueryModuleAccountByNameResponse": { "type": "object", "properties": { "account": { "$ref": "#/definitions/google.protobuf.Any" } }, "description": "QueryModuleAccountByNameResponse is the response type for the Query/ModuleAccountByName RPC method." }, "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.MsgExecResponse": { "type": "object", "properties": { "results": { "type": "array", "items": { "type": "string", "format": "byte" } } }, "description": "MsgExecResponse defines the Msg/MsgExecResponse response type." }, "cosmos.authz.v1beta1.MsgGrantResponse": { "type": "object", "description": "MsgGrantResponse defines the Msg/MsgGrant response type." }, "cosmos.authz.v1beta1.MsgRevokeResponse": { "type": "object", "description": "MsgRevokeResponse defines the Msg/MsgRevokeResponse response type." }, "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.Input": { "type": "object", "properties": { "address": { "type": "string" }, "coins": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" } } }, "description": "Input models transaction input." }, "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.MsgMultiSendResponse": { "type": "object", "description": "MsgMultiSendResponse defines the Msg/MultiSend response type." }, "cosmos.bank.v1beta1.MsgSendResponse": { "type": "object", "description": "MsgSendResponse defines the Msg/Send response type." }, "cosmos.bank.v1beta1.Output": { "type": "object", "properties": { "address": { "type": "string" }, "coins": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" } } }, "description": "Output models transaction outputs." }, "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 \u003e 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.node.v1beta1.ConfigResponse": { "type": "object", "properties": { "minimumGasPrice": { "type": "string" } }, "description": "ConfigResponse defines the response structure for the Config gRPC query." }, "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.reflection.v1beta1.ListAllInterfacesResponse": { "type": "object", "properties": { "interfaceNames": { "type": "array", "items": { "type": "string" }, "description": "interface_names is an array of all the registered interfaces." } }, "description": "ListAllInterfacesResponse is the response type of the ListAllInterfaces RPC." }, "cosmos.base.reflection.v1beta1.ListImplementationsResponse": { "type": "object", "properties": { "implementationMessageNames": { "type": "array", "items": { "type": "string" } } }, "description": "ListImplementationsResponse is the response type of the ListImplementations\nRPC." }, "cosmos.base.reflection.v2alpha1.AuthnDescriptor": { "type": "object", "properties": { "signModes": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.reflection.v2alpha1.SigningModeDescriptor" }, "title": "sign_modes defines the supported signature algorithm" } }, "title": "AuthnDescriptor provides information on how to sign transactions without relying\non the online RPCs GetTxMetadata and CombineUnsignedTxAndSignatures" }, "cosmos.base.reflection.v2alpha1.ChainDescriptor": { "type": "object", "properties": { "id": { "type": "string", "title": "id is the chain id" } }, "title": "ChainDescriptor describes chain information of the application" }, "cosmos.base.reflection.v2alpha1.CodecDescriptor": { "type": "object", "properties": { "interfaces": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.reflection.v2alpha1.InterfaceDescriptor" }, "title": "interfaces is a list of the registerted interfaces descriptors" } }, "title": "CodecDescriptor describes the registered interfaces and provides metadata information on the types" }, "cosmos.base.reflection.v2alpha1.ConfigurationDescriptor": { "type": "object", "properties": { "bech32AccountAddressPrefix": { "type": "string", "title": "bech32_account_address_prefix is the account address prefix" } }, "title": "ConfigurationDescriptor contains metadata information on the sdk.Config" }, "cosmos.base.reflection.v2alpha1.GetAuthnDescriptorResponse": { "type": "object", "properties": { "authn": { "$ref": "#/definitions/cosmos.base.reflection.v2alpha1.AuthnDescriptor", "title": "authn describes how to authenticate to the application when sending transactions" } }, "title": "GetAuthnDescriptorResponse is the response returned by the GetAuthnDescriptor RPC" }, "cosmos.base.reflection.v2alpha1.GetChainDescriptorResponse": { "type": "object", "properties": { "chain": { "$ref": "#/definitions/cosmos.base.reflection.v2alpha1.ChainDescriptor", "title": "chain describes application chain information" } }, "title": "GetChainDescriptorResponse is the response returned by the GetChainDescriptor RPC" }, "cosmos.base.reflection.v2alpha1.GetCodecDescriptorResponse": { "type": "object", "properties": { "codec": { "$ref": "#/definitions/cosmos.base.reflection.v2alpha1.CodecDescriptor", "title": "codec describes the application codec such as registered interfaces and implementations" } }, "title": "GetCodecDescriptorResponse is the response returned by the GetCodecDescriptor RPC" }, "cosmos.base.reflection.v2alpha1.GetConfigurationDescriptorResponse": { "type": "object", "properties": { "config": { "$ref": "#/definitions/cosmos.base.reflection.v2alpha1.ConfigurationDescriptor", "title": "config describes the application's sdk.Config" } }, "title": "GetConfigurationDescriptorResponse is the response returned by the GetConfigurationDescriptor RPC" }, "cosmos.base.reflection.v2alpha1.GetQueryServicesDescriptorResponse": { "type": "object", "properties": { "queries": { "$ref": "#/definitions/cosmos.base.reflection.v2alpha1.QueryServicesDescriptor", "title": "queries provides information on the available queryable services" } }, "title": "GetQueryServicesDescriptorResponse is the response returned by the GetQueryServicesDescriptor RPC" }, "cosmos.base.reflection.v2alpha1.GetTxDescriptorResponse": { "type": "object", "properties": { "tx": { "$ref": "#/definitions/cosmos.base.reflection.v2alpha1.TxDescriptor", "title": "tx provides information on msgs that can be forwarded to the application\nalongside the accepted transaction protobuf type" } }, "title": "GetTxDescriptorResponse is the response returned by the GetTxDescriptor RPC" }, "cosmos.base.reflection.v2alpha1.InterfaceAcceptingMessageDescriptor": { "type": "object", "properties": { "fullname": { "type": "string", "title": "fullname is the protobuf fullname of the type containing the interface" }, "fieldDescriptorNames": { "type": "array", "items": { "type": "string" }, "title": "field_descriptor_names is a list of the protobuf name (not fullname) of the field\nwhich contains the interface as google.protobuf.Any (the interface is the same, but\nit can be in multiple fields of the same proto message)" } }, "title": "InterfaceAcceptingMessageDescriptor describes a protobuf message which contains\nan interface represented as a google.protobuf.Any" }, "cosmos.base.reflection.v2alpha1.InterfaceDescriptor": { "type": "object", "properties": { "fullname": { "type": "string", "title": "fullname is the name of the interface" }, "interfaceAcceptingMessages": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.reflection.v2alpha1.InterfaceAcceptingMessageDescriptor" }, "title": "interface_accepting_messages contains information regarding the proto messages which contain the interface as\ngoogle.protobuf.Any field" }, "interfaceImplementers": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.reflection.v2alpha1.InterfaceImplementerDescriptor" }, "title": "interface_implementers is a list of the descriptors of the interface implementers" } }, "title": "InterfaceDescriptor describes the implementation of an interface" }, "cosmos.base.reflection.v2alpha1.InterfaceImplementerDescriptor": { "type": "object", "properties": { "fullname": { "type": "string", "title": "fullname is the protobuf queryable name of the interface implementer" }, "typeUrl": { "type": "string", "title": "type_url defines the type URL used when marshalling the type as any\nthis is required so we can provide type safe google.protobuf.Any marshalling and\nunmarshalling, making sure that we don't accept just 'any' type\nin our interface fields" } }, "title": "InterfaceImplementerDescriptor describes an interface implementer" }, "cosmos.base.reflection.v2alpha1.MsgDescriptor": { "type": "object", "properties": { "msgTypeUrl": { "type": "string", "description": "msg_type_url contains the TypeURL of a sdk.Msg." } }, "title": "MsgDescriptor describes a cosmos-sdk message that can be delivered with a transaction" }, "cosmos.base.reflection.v2alpha1.QueryMethodDescriptor": { "type": "object", "properties": { "name": { "type": "string", "title": "name is the protobuf name (not fullname) of the method" }, "fullQueryPath": { "type": "string", "title": "full_query_path is the path that can be used to query\nthis method via tendermint abci.Query" } }, "title": "QueryMethodDescriptor describes a queryable method of a query service\nno other info is provided beside method name and tendermint queryable path\nbecause it would be redundant with the grpc reflection service" }, "cosmos.base.reflection.v2alpha1.QueryServiceDescriptor": { "type": "object", "properties": { "fullname": { "type": "string", "title": "fullname is the protobuf fullname of the service descriptor" }, "isModule": { "type": "boolean", "title": "is_module describes if this service is actually exposed by an application's module" }, "methods": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.reflection.v2alpha1.QueryMethodDescriptor" }, "title": "methods provides a list of query service methods" } }, "title": "QueryServiceDescriptor describes a cosmos-sdk queryable service" }, "cosmos.base.reflection.v2alpha1.QueryServicesDescriptor": { "type": "object", "properties": { "queryServices": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.reflection.v2alpha1.QueryServiceDescriptor" }, "title": "query_services is a list of cosmos-sdk QueryServiceDescriptor" } }, "title": "QueryServicesDescriptor contains the list of cosmos-sdk queriable services" }, "cosmos.base.reflection.v2alpha1.SigningModeDescriptor": { "type": "object", "properties": { "name": { "type": "string", "title": "name defines the unique name of the signing mode" }, "number": { "type": "integer", "format": "int32", "title": "number is the unique int32 identifier for the sign_mode enum" }, "authnInfoProviderMethodFullname": { "type": "string", "title": "authn_info_provider_method_fullname defines the fullname of the method to call to get\nthe metadata required to authenticate using the provided sign_modes" } }, "title": "SigningModeDescriptor provides information on a signing flow of the application\nNOTE(fdymylja): here we could go as far as providing an entire flow on how\nto sign a message given a SigningModeDescriptor, but it's better to think about\nthis another time" }, "cosmos.base.reflection.v2alpha1.TxDescriptor": { "type": "object", "properties": { "fullname": { "type": "string", "description": "fullname is the protobuf fullname of the raw transaction type (for instance the tx.Tx type)\nit is not meant to support polymorphism of transaction types, it is supposed to be used by\nreflection clients to understand if they can handle a specific transaction type in an application." }, "msgs": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.reflection.v2alpha1.MsgDescriptor" }, "title": "msgs lists the accepted application messages (sdk.Msg)" } }, "title": "TxDescriptor describes the accepted transaction type" }, "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.crisis.v1beta1.MsgVerifyInvariantResponse": { "type": "object", "description": "MsgVerifyInvariantResponse defines the Msg/VerifyInvariant response type." }, "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.MsgFundCommunityPoolResponse": { "type": "object", "description": "MsgFundCommunityPoolResponse defines the Msg/FundCommunityPool response type." }, "cosmos.distribution.v1beta1.MsgSetWithdrawAddressResponse": { "type": "object", "description": "MsgSetWithdrawAddressResponse defines the Msg/SetWithdrawAddress response type." }, "cosmos.distribution.v1beta1.MsgWithdrawDelegatorRewardResponse": { "type": "object", "properties": { "amount": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" }, "title": "Since: cosmos-sdk 0.46" } }, "description": "MsgWithdrawDelegatorRewardResponse defines the Msg/WithdrawDelegatorReward response type." }, "cosmos.distribution.v1beta1.MsgWithdrawValidatorCommissionResponse": { "type": "object", "properties": { "amount": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" }, "title": "Since: cosmos-sdk 0.46" } }, "description": "MsgWithdrawValidatorCommissionResponse defines the Msg/WithdrawValidatorCommission response type." }, "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.QueryValidatorDistributionInfoResponse": { "type": "object", "properties": { "operatorAddress": { "type": "string", "description": "operator_address defines the validator operator address." }, "selfBondRewards": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.DecCoin" }, "description": "self_bond_rewards defines the self delegations rewards." }, "commission": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.DecCoin" }, "description": "commission defines the commision the validator received." } }, "description": "QueryValidatorDistributionInfoResponse is the response type for the Query/ValidatorDistributionInfo 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.MsgSubmitEvidenceResponse": { "type": "object", "properties": { "hash": { "type": "string", "format": "byte", "description": "hash defines the hash of the evidence." } }, "description": "MsgSubmitEvidenceResponse defines the Msg/SubmitEvidence response type." }, "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.MsgGrantAllowanceResponse": { "type": "object", "description": "MsgGrantAllowanceResponse defines the Msg/GrantAllowanceResponse response type." }, "cosmos.feegrant.v1beta1.MsgRevokeAllowanceResponse": { "type": "object", "description": "MsgRevokeAllowanceResponse defines the Msg/RevokeAllowanceResponse response type." }, "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.MsgDepositResponse": { "type": "object", "description": "MsgDepositResponse defines the Msg/Deposit response type." }, "cosmos.gov.v1.MsgExecLegacyContentResponse": { "type": "object", "description": "MsgExecLegacyContentResponse defines the Msg/ExecLegacyContent response type." }, "cosmos.gov.v1.MsgSubmitProposalResponse": { "type": "object", "properties": { "proposalId": { "type": "string", "format": "uint64" } }, "description": "MsgSubmitProposalResponse defines the Msg/SubmitProposal response type." }, "cosmos.gov.v1.MsgVoteResponse": { "type": "object", "description": "MsgVoteResponse defines the Msg/Vote response type." }, "cosmos.gov.v1.MsgVoteWeightedResponse": { "type": "object", "description": "MsgVoteWeightedResponse defines the Msg/VoteWeighted response type." }, "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.MsgDepositResponse": { "type": "object", "description": "MsgDepositResponse defines the Msg/Deposit response type." }, "cosmos.gov.v1beta1.MsgSubmitProposalResponse": { "type": "object", "properties": { "proposalId": { "type": "string", "format": "uint64" } }, "description": "MsgSubmitProposalResponse defines the Msg/SubmitProposal response type." }, "cosmos.gov.v1beta1.MsgVoteResponse": { "type": "object", "description": "MsgVoteResponse defines the Msg/Vote response type." }, "cosmos.gov.v1beta1.MsgVoteWeightedResponse": { "type": "object", "description": "MsgVoteWeightedResponse defines the Msg/VoteWeighted response type.\n\nSince: cosmos-sdk 0.43" }, "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.Exec": { "type": "string", "enum": [ "EXEC_UNSPECIFIED", "EXEC_TRY" ], "default": "EXEC_UNSPECIFIED", "description": "Exec defines modes of execution of a proposal on creation or on new vote.\n\n - EXEC_UNSPECIFIED: An empty value means that there should be a separate\nMsgExec request for the proposal to execute.\n - EXEC_TRY: Try to execute the proposal immediately.\nIf the proposal is not allowed per the DecisionPolicy,\nthe proposal will still be open and could\nbe executed at a later point." }, "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.MemberRequest": { "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." } }, "description": "MemberRequest represents a group member to be used in Msg server requests.\nContrary to `Member`, it doesn't have any `added_at` field\nsince this field cannot be set as part of requests." }, "cosmos.group.v1.MsgCreateGroupPolicyResponse": { "type": "object", "properties": { "address": { "type": "string", "description": "address is the account address of the newly created group policy." } }, "description": "MsgCreateGroupPolicyResponse is the Msg/CreateGroupPolicy response type." }, "cosmos.group.v1.MsgCreateGroupResponse": { "type": "object", "properties": { "groupId": { "type": "string", "format": "uint64", "description": "group_id is the unique ID of the newly created group." } }, "description": "MsgCreateGroupResponse is the Msg/CreateGroup response type." }, "cosmos.group.v1.MsgCreateGroupWithPolicyResponse": { "type": "object", "properties": { "groupId": { "type": "string", "format": "uint64", "description": "group_id is the unique ID of the newly created group with policy." }, "groupPolicyAddress": { "type": "string", "description": "group_policy_address is the account address of the newly created group policy." } }, "description": "MsgCreateGroupWithPolicyResponse is the Msg/CreateGroupWithPolicy response type." }, "cosmos.group.v1.MsgExecResponse": { "type": "object", "properties": { "result": { "$ref": "#/definitions/cosmos.group.v1.ProposalExecutorResult", "description": "result is the final result of the proposal execution." } }, "description": "MsgExecResponse is the Msg/Exec request type." }, "cosmos.group.v1.MsgLeaveGroupResponse": { "type": "object", "description": "MsgLeaveGroupResponse is the Msg/LeaveGroup response type." }, "cosmos.group.v1.MsgSubmitProposalResponse": { "type": "object", "properties": { "proposalId": { "type": "string", "format": "uint64", "description": "proposal is the unique ID of the proposal." } }, "description": "MsgSubmitProposalResponse is the Msg/SubmitProposal response type." }, "cosmos.group.v1.MsgUpdateGroupAdminResponse": { "type": "object", "description": "MsgUpdateGroupAdminResponse is the Msg/UpdateGroupAdmin response type." }, "cosmos.group.v1.MsgUpdateGroupMembersResponse": { "type": "object", "description": "MsgUpdateGroupMembersResponse is the Msg/UpdateGroupMembers response type." }, "cosmos.group.v1.MsgUpdateGroupMetadataResponse": { "type": "object", "description": "MsgUpdateGroupMetadataResponse is the Msg/UpdateGroupMetadata response type." }, "cosmos.group.v1.MsgUpdateGroupPolicyAdminResponse": { "type": "object", "description": "MsgUpdateGroupPolicyAdminResponse is the Msg/UpdateGroupPolicyAdmin response type." }, "cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicyResponse": { "type": "object", "description": "MsgUpdateGroupPolicyDecisionPolicyResponse is the Msg/UpdateGroupPolicyDecisionPolicy response type." }, "cosmos.group.v1.MsgUpdateGroupPolicyMetadataResponse": { "type": "object", "description": "MsgUpdateGroupPolicyMetadataResponse is the Msg/UpdateGroupPolicyMetadata response type." }, "cosmos.group.v1.MsgVoteResponse": { "type": "object", "description": "MsgVoteResponse is the Msg/Vote response type." }, "cosmos.group.v1.MsgWithdrawProposalResponse": { "type": "object", "description": "MsgWithdrawProposalResponse is the Msg/WithdrawProposal response type." }, "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.QueryGroupsResponse": { "type": "object", "properties": { "groups": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.group.v1.GroupInfo" }, "description": "`groups` is all the groups present in state." }, "pagination": { "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse", "description": "pagination defines the pagination in the response." } }, "description": "QueryGroupsResponse is the Query/Groups response type.\n\nSince: cosmos-sdk 0.47.1" }, "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.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.MsgUnjailResponse": { "type": "object", "title": "MsgUnjailResponse defines the Msg/Unjail response type" }, "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.MsgBeginRedelegateResponse": { "type": "object", "properties": { "completionTime": { "type": "string", "format": "date-time" } }, "description": "MsgBeginRedelegateResponse defines the Msg/BeginRedelegate response type." }, "cosmos.staking.v1beta1.MsgCancelUnbondingDelegationResponse": { "type": "object", "description": "Since: cosmos-sdk 0.46", "title": "MsgCancelUnbondingDelegationResponse" }, "cosmos.staking.v1beta1.MsgCreateValidatorResponse": { "type": "object", "description": "MsgCreateValidatorResponse defines the Msg/CreateValidator response type." }, "cosmos.staking.v1beta1.MsgDelegateResponse": { "type": "object", "description": "MsgDelegateResponse defines the Msg/Delegate response type." }, "cosmos.staking.v1beta1.MsgEditValidatorResponse": { "type": "object", "description": "MsgEditValidatorResponse defines the Msg/EditValidator response type." }, "cosmos.staking.v1beta1.MsgUndelegateResponse": { "type": "object", "properties": { "completionTime": { "type": "string", "format": "date-time" } }, "description": "MsgUndelegateResponse defines the Msg/Undelegate response type." }, "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.MsgCancelUpgradeResponse": { "type": "object", "description": "MsgCancelUpgradeResponse is the Msg/CancelUpgrade response type.\n\nSince: cosmos-sdk 0.46" }, "cosmos.upgrade.v1beta1.MsgSoftwareUpgradeResponse": { "type": "object", "description": "MsgSoftwareUpgradeResponse is the Msg/SoftwareUpgrade response type.\n\nSince: cosmos-sdk 0.46" }, "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." }, "cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccountResponse": { "type": "object", "description": "MsgCreateVestingAccountResponse defines the Msg/CreatePeriodicVestingAccount\nresponse type.\n\nSince: cosmos-sdk 0.46" }, "cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccountResponse": { "type": "object", "description": "MsgCreatePermanentLockedAccountResponse defines the Msg/CreatePermanentLockedAccount response type.\n\nSince: cosmos-sdk 0.46" }, "cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse": { "type": "object", "description": "MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type." }, "cosmos.vesting.v1beta1.Period": { "type": "object", "properties": { "length": { "type": "string", "format": "int64", "description": "Period duration in seconds." }, "amount": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/cosmos.base.v1beta1.Coin" } } }, "description": "Period defines a length of time and amount of coins that will vest." }, "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 hard-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 pricing 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 byzantium)" }, "constantinopleBlock": { "type": "string", "title": "constantinople_block: Constantinople switch block (nil no fork, 0 = already activated)" }, "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 istanbul)" }, "muirGlacierBlock": { "type": "string", "title": "muir_glacier_block: Eip-2384 (bomb delay) switch block (nil no fork, 0 = already 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 = already activated)" }, "grayGlacierBlock": { "type": "string", "title": "gray_glacier_block: EIP-5133 (bomb delay) switch block (nil = no fork, 0 = already activated)" }, "mergeNetsplitBlock": { "type": "string", "title": "merge_netsplit_block: Virtual fork after The Merge to use as a network splitter" }, "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 checked\nagainst 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 revert\nopcode)" }, "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.MsgUpdateParamsResponse": { "type": "object", "description": "MsgUpdateParamsResponse defines the response structure for executing a\nMsgUpdateParams message." }, "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 tracing\ncalls" }, "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.MsgUpdateParamsResponse": { "type": "object", "description": "MsgUpdateParamsResponse defines the response structure for executing a\nMsgUpdateParams message." }, "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 enabled." }, "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 transactions" }, "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 about\nan 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.MsgConvertCoinResponse": { "type": "object", "title": "MsgConvertCoinResponse returns no fields" }, "evmos.erc20.v1.MsgConvertERC20Response": { "type": "object", "title": "MsgConvertERC20Response returns no fields" }, "evmos.erc20.v1.MsgUpdateParamsResponse": { "type": "object", "title": "MsgUpdateParamsResponse defines the response structure for executing a\nMsgUpdateParams message.\nSince: cosmos-sdk 0.47" }, "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 \u003c--\u003e ERC20 tokens." }, "enableEvmHook": { "type": "boolean", "description": "enable_evm_hook is the parameter to enable the EVM hook that converts an ERC20 token to a Cosmos\nCoin by transferring the Tokens through a MsgEthereumTx 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 module" } }, "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 invalid, 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(\u0026foo)) {\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 := \u0026pb.Foo{...}\n any, err := anypb.New(foo)\n if err != nil {\n ...\n }\n ...\n foo := \u0026pb.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\": \u003cstring\u003e,\n \"lastName\": \u003cstring\u003e\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" }, "blocksPerEra": { "type": "string", "format": "uint64", "title": "number of blocks per era" }, "enableCoinomics": { "type": "boolean", "title": "parameter to enable coinmoics" } }, "description": "Params holds parameters for the coinomics module." }, "haqq.coinomics.v1.QueryEraClosingSupplyResponse": { "type": "object", "properties": { "eraClosingSupply": { "$ref": "#/definitions/cosmos.base.v1beta1.Coin" } } }, "haqq.coinomics.v1.QueryEraResponse": { "type": "object", "properties": { "era": { "type": "string", "format": "uint64" } } }, "haqq.coinomics.v1.QueryInflationRateResponse": { "type": "object", "properties": { "inflationRate": { "type": "string", "title": "rate by which the total supply increases within one era" } } }, "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.vesting.v1.MsgClawbackResponse": { "type": "object", "description": "MsgClawbackResponse defines the MsgClawback response type." }, "haqq.vesting.v1.MsgConvertIntoVestingAccountResponse": { "type": "object", "description": "MsgConvertIntoVestingAccountResponse defines the MsgConvertIntoVestingAccount response type." }, "haqq.vesting.v1.MsgConvertVestingAccountResponse": { "type": "object", "description": "MsgConvertVestingAccountResponse defines the MsgConvertVestingAccount response type." }, "haqq.vesting.v1.MsgCreateClawbackVestingAccountResponse": { "type": "object", "description": "MsgCreateClawbackVestingAccountResponse defines the\nMsgCreateClawbackVestingAccount response type." }, "haqq.vesting.v1.MsgUpdateVestingFunderResponse": { "type": "object", "description": "MsgUpdateVestingFunderResponse defines the MsgUpdateVestingFunder response\ntype." }, "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 method." }, "tendermint.abci.BlockParams": { "type": "object", "properties": { "maxBytes": { "type": "string", "format": "int64", "title": "Note: must be greater than 0" }, "maxGas": { "type": "string", "format": "int64", "title": "Note: must be greater or equal to -1" } }, "description": "BlockParams contains limits on the block size." }, "tendermint.abci.CheckTxType": { "type": "string", "enum": [ "NEW", "RECHECK" ], "default": "NEW" }, "tendermint.abci.ConsensusParams": { "type": "object", "properties": { "block": { "$ref": "#/definitions/tendermint.abci.BlockParams" }, "evidence": { "$ref": "#/definitions/tendermint.types.EvidenceParams" }, "validator": { "$ref": "#/definitions/tendermint.types.ValidatorParams" }, "version": { "$ref": "#/definitions/tendermint.types.VersionParams" } }, "title": "ConsensusParams contains all consensus-relevant parameters\nthat can be adjusted by the abci app" }, "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.abci.Evidence": { "type": "object", "properties": { "type": { "$ref": "#/definitions/tendermint.abci.EvidenceType" }, "validator": { "$ref": "#/definitions/tendermint.abci.Validator", "title": "The offending validator" }, "height": { "type": "string", "format": "int64", "title": "The height when the offense occurred" }, "time": { "type": "string", "format": "date-time", "title": "The corresponding time where the offense occurred" }, "totalVotingPower": { "type": "string", "format": "int64", "title": "Total voting power of the validator set in case the ABCI application does\nnot store historical validators.\nhttps://github.com/tendermint/tendermint/issues/4581" } } }, "tendermint.abci.EvidenceType": { "type": "string", "enum": [ "UNKNOWN", "DUPLICATE_VOTE", "LIGHT_CLIENT_ATTACK" ], "default": "UNKNOWN" }, "tendermint.abci.LastCommitInfo": { "type": "object", "properties": { "round": { "type": "integer", "format": "int32" }, "votes": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/tendermint.abci.VoteInfo" } } } }, "tendermint.abci.ResponseApplySnapshotChunk": { "type": "object", "properties": { "result": { "$ref": "#/definitions/tendermint.abci.ResponseApplySnapshotChunk.Result" }, "refetchChunks": { "type": "array", "items": { "type": "integer", "format": "int64" }, "title": "Chunks to refetch and reapply" }, "rejectSenders": { "type": "array", "items": { "type": "string" }, "title": "Chunk senders to reject and ban" } } }, "tendermint.abci.ResponseApplySnapshotChunk.Result": { "type": "string", "enum": [ "UNKNOWN", "ACCEPT", "ABORT", "RETRY", "RETRY_SNAPSHOT", "REJECT_SNAPSHOT" ], "default": "UNKNOWN", "title": "- UNKNOWN: Unknown result, abort all snapshot restoration\n - ACCEPT: Chunk successfully accepted\n - ABORT: Abort all snapshot restoration\n - RETRY: Retry chunk (combine with refetch and reject)\n - RETRY_SNAPSHOT: Retry snapshot (combine with refetch and reject)\n - REJECT_SNAPSHOT: Reject this snapshot, try others" }, "tendermint.abci.ResponseBeginBlock": { "type": "object", "properties": { "events": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/tendermint.abci.Event" } } } }, "tendermint.abci.ResponseCheckTx": { "type": "object", "properties": { "code": { "type": "integer", "format": "int64" }, "data": { "type": "string", "format": "byte" }, "log": { "type": "string", "title": "nondeterministic" }, "info": { "type": "string", "title": "nondeterministic" }, "gas_wanted": { "type": "string", "format": "int64" }, "gas_used": { "type": "string", "format": "int64" }, "events": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/tendermint.abci.Event" } }, "codespace": { "type": "string" }, "sender": { "type": "string" }, "priority": { "type": "string", "format": "int64" }, "mempoolError": { "type": "string", "description": "mempool_error is set by CometBFT.\nABCI applictions creating a ResponseCheckTX should not set mempool_error." } } }, "tendermint.abci.ResponseCommit": { "type": "object", "properties": { "data": { "type": "string", "format": "byte", "title": "reserve 1" }, "retainHeight": { "type": "string", "format": "int64" } } }, "tendermint.abci.ResponseDeliverTx": { "type": "object", "properties": { "code": { "type": "integer", "format": "int64" }, "data": { "type": "string", "format": "byte" }, "log": { "type": "string", "title": "nondeterministic" }, "info": { "type": "string", "title": "nondeterministic" }, "gas_wanted": { "type": "string", "format": "int64" }, "gas_used": { "type": "string", "format": "int64" }, "events": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/tendermint.abci.Event" }, "title": "nondeterministic" }, "codespace": { "type": "string" } } }, "tendermint.abci.ResponseEcho": { "type": "object", "properties": { "message": { "type": "string" } } }, "tendermint.abci.ResponseEndBlock": { "type": "object", "properties": { "validatorUpdates": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/tendermint.abci.ValidatorUpdate" } }, "consensusParamUpdates": { "$ref": "#/definitions/tendermint.abci.ConsensusParams" }, "events": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/tendermint.abci.Event" } } } }, "tendermint.abci.ResponseFlush": { "type": "object" }, "tendermint.abci.ResponseInfo": { "type": "object", "properties": { "data": { "type": "string" }, "version": { "type": "string" }, "appVersion": { "type": "string", "format": "uint64" }, "lastBlockHeight": { "type": "string", "format": "int64" }, "lastBlockAppHash": { "type": "string", "format": "byte" } } }, "tendermint.abci.ResponseInitChain": { "type": "object", "properties": { "consensusParams": { "$ref": "#/definitions/tendermint.abci.ConsensusParams" }, "validators": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/tendermint.abci.ValidatorUpdate" } }, "appHash": { "type": "string", "format": "byte" } } }, "tendermint.abci.ResponseListSnapshots": { "type": "object", "properties": { "snapshots": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/tendermint.abci.Snapshot" } } } }, "tendermint.abci.ResponseLoadSnapshotChunk": { "type": "object", "properties": { "chunk": { "type": "string", "format": "byte" } } }, "tendermint.abci.ResponseOfferSnapshot": { "type": "object", "properties": { "result": { "$ref": "#/definitions/tendermint.abci.ResponseOfferSnapshot.Result" } } }, "tendermint.abci.ResponseOfferSnapshot.Result": { "type": "string", "enum": [ "UNKNOWN", "ACCEPT", "ABORT", "REJECT", "REJECT_FORMAT", "REJECT_SENDER" ], "default": "UNKNOWN", "title": "- UNKNOWN: Unknown result, abort all snapshot restoration\n - ACCEPT: Snapshot accepted, apply chunks\n - ABORT: Abort all snapshot restoration\n - REJECT: Reject this specific snapshot, try others\n - REJECT_FORMAT: Reject all snapshots of this format, try others\n - REJECT_SENDER: Reject all snapshots from the sender(s), try others" }, "tendermint.abci.ResponseQuery": { "type": "object", "properties": { "code": { "type": "integer", "format": "int64" }, "log": { "type": "string", "description": "bytes data = 2; // use \"value\" instead.\n\nnondeterministic" }, "info": { "type": "string", "title": "nondeterministic" }, "index": { "type": "string", "format": "int64" }, "key": { "type": "string", "format": "byte" }, "value": { "type": "string", "format": "byte" }, "proofOps": { "$ref": "#/definitions/tendermint.crypto.ProofOps" }, "height": { "type": "string", "format": "int64" }, "codespace": { "type": "string" } } }, "tendermint.abci.ResponseSetOption": { "type": "object", "properties": { "code": { "type": "integer", "format": "int64" }, "log": { "type": "string", "title": "bytes data = 2;" }, "info": { "type": "string" } }, "title": "nondeterministic" }, "tendermint.abci.Snapshot": { "type": "object", "properties": { "height": { "type": "string", "format": "uint64", "title": "The height at which the snapshot was taken" }, "format": { "type": "integer", "format": "int64", "title": "The application-specific snapshot format" }, "chunks": { "type": "integer", "format": "int64", "title": "Number of chunks in the snapshot" }, "hash": { "type": "string", "format": "byte", "title": "Arbitrary snapshot hash, equal only if identical" }, "metadata": { "type": "string", "format": "byte", "title": "Arbitrary application metadata" } } }, "tendermint.abci.Validator": { "type": "object", "properties": { "address": { "type": "string", "format": "byte", "title": "The first 20 bytes of SHA256(public key)" }, "power": { "type": "string", "format": "int64", "description": "The voting power", "title": "PubKey pub_key = 2 [(gogoproto.nullable)=false];" } }, "title": "Validator" }, "tendermint.abci.ValidatorUpdate": { "type": "object", "properties": { "pubKey": { "$ref": "#/definitions/tendermint.crypto.PublicKey" }, "power": { "type": "string", "format": "int64" } }, "title": "ValidatorUpdate" }, "tendermint.abci.VoteInfo": { "type": "object", "properties": { "validator": { "$ref": "#/definitions/tendermint.abci.Validator" }, "signedLastBlock": { "type": "boolean" } }, "title": "VoteInfo" }, "tendermint.crypto.ProofOp": { "type": "object", "properties": { "type": { "type": "string" }, "key": { "type": "string", "format": "byte" }, "data": { "type": "string", "format": "byte" } }, "title": "ProofOp defines an operation used for calculating Merkle root\nThe data could be arbitrary format, providing nessecary data\nfor example neighbouring node hash" }, "tendermint.crypto.ProofOps": { "type": "object", "properties": { "ops": { "type": "array", "items": { "type": "object", "$ref": "#/definitions/tendermint.crypto.ProofOp" } } }, "title": "ProofOps is Merkle proof defined by the list of ProofOps" }, "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 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.EvidenceParams": { "type": "object", "properties": { "maxAgeNumBlocks": { "type": "string", "format": "int64", "description": "Max age of evidence, in blocks.\n\nThe basic formula for calculating this is: MaxAgeDuration / {average block\ntime}." }, "maxAgeDuration": { "type": "string", "description": "Max age of evidence, in time.\n\nIt should correspond with an app's \"unbonding period\" or other similar\nmechanism for handling [Nothing-At-Stake\nattacks](https://github.com/ethereum/wiki/wiki/Proof-of-Stake-FAQ#what-is-the-nothing-at-stake-problem-and-how-can-it-be-fixed)." }, "maxBytes": { "type": "string", "format": "int64", "title": "This sets the maximum size of total evidence in bytes that can be committed in a single block.\nand should fall comfortably under the max block bytes.\nDefault is 1048576 or 1MB" } }, "description": "EvidenceParams determine how we handle evidence of malfeasance." }, "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 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.ValidatorParams": { "type": "object", "properties": { "pubKeyTypes": { "type": "array", "items": { "type": "string" } } }, "description": "ValidatorParams restrict the public key types validators can use.\nNOTE: uses ABCI pubkey naming, not Amino names." }, "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.VersionParams": { "type": "object", "properties": { "appVersion": { "type": "string", "format": "uint64" } }, "description": "VersionParams contains the ABCI application version." }, "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." } } }