> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kronex.network/llms.txt
> Use this file to discover all available pages before exploring further.

# krnx_getWorkshareCapabilities

> Explorer capabilities and frozen limits



## OpenAPI

````yaml specs/krnx_getWorkshareCapabilities.json POST /
openapi: 3.1.0
info:
  description: >-
    Generated from internal/krnxapi/krnx_workshare_explorer_rpc.go by
    tools/rpcdocgen. Do not edit by hand.
  title: KRNX JSON-RPC
  version: 1.0.0
servers:
  - url: https://rpc.kronex.network
security: []
paths:
  /:
    post:
      summary: krnx_getWorkshareCapabilities
      description: >-
        Always callable. Reports the effective enablement state of the workshare
        explorer API, the canonical history anchors, the frozen limits, and the
        parent-chain mappings for BCH, LTC, RVN and ZEC.


        Call this first: it tells an explorer which block range is actually
        queryable.
      operationId: krnx_getWorkshareCapabilities
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Request'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response'
          description: JSON-RPC response
components:
  schemas:
    Request:
      properties:
        id:
          example: 1
          type: integer
        jsonrpc:
          enum:
            - '2.0'
          example: '2.0'
          type: string
        method:
          enum:
            - krnx_getWorkshareCapabilities
          example: krnx_getWorkshareCapabilities
          type: string
        params:
          description: This method takes no parameters.
          example: []
          maxItems: 0
          minItems: 0
          type: array
      required:
        - jsonrpc
        - method
        - params
        - id
      type: object
    Response:
      properties:
        error:
          description: Present instead of `result` when the call fails.
          properties:
            code:
              example: -32602
              type: integer
            message:
              type: string
          type: object
        id:
          example: 1
          type: integer
        jsonrpc:
          example: '2.0'
          type: string
        result:
          $ref: '#/components/schemas/krnxWorkshareCapabilities'
      type: object
    krnxWorkshareCapabilities:
      properties:
        auxWorkPayloadVersion:
          type: integer
        canonicalOnly:
          type: boolean
        contractVersion:
          type: string
        enabled:
          type: boolean
        history:
          $ref: '#/components/schemas/krnxWorkshareHistoryCapability'
        krnxChainId:
          type: string
        limits:
          $ref: '#/components/schemas/krnxWorkshareLimitCapability'
        parentChains:
          items:
            $ref: '#/components/schemas/krnxWorkshareParentCapability'
          type: array
        pendingSupported:
          type: boolean
        pureReadOnly:
          type: boolean
        workshareIdentityVersion:
          type: integer
      required:
        - auxWorkPayloadVersion
        - canonicalOnly
        - contractVersion
        - enabled
        - history
        - krnxChainId
        - limits
        - parentChains
        - pendingSupported
        - pureReadOnly
        - workshareIdentityVersion
      type: object
    krnxWorkshareHistoryCapability:
      properties:
        auditedThroughBlock:
          type: string
        auditedThroughBlockHash:
          type: string
        firstAvailableBlock:
          type: string
        firstAvailableBlockHash:
          type: string
        policy:
          type: string
        sources:
          items:
            type: string
          type: array
      required:
        - policy
        - sources
      type: object
    krnxWorkshareLimitCapability:
      properties:
        maxAuxWorkBytesPerBlock:
          type: integer
        maxAuxWorkBytesPerParentChain:
          type: integer
        maxBlocksPerPage:
          type: integer
        maxPageItems:
          type: integer
        maxResultBytes:
          type: integer
        maxWorksharesPerBlock:
          type: integer
        maxWorksharesPerParentChain:
          type: integer
      required:
        - maxAuxWorkBytesPerBlock
        - maxAuxWorkBytesPerParentChain
        - maxBlocksPerPage
        - maxPageItems
        - maxResultBytes
        - maxWorksharesPerBlock
        - maxWorksharesPerParentChain
      type: object
    krnxWorkshareParentCapability:
      properties:
        algorithmId:
          type: string
        id:
          type: integer
        name:
          type: string
        protocolVersion:
          type: integer
        validationReadiness:
          type: string
      required:
        - algorithmId
        - id
        - name
        - protocolVersion
        - validationReadiness
      type: object

````