github.com/Finschia/finschia-sdk@v0.48.1/x/crisis/spec/05_client.md (about)

     1  <!--
     2  order: 5
     3  -->
     4  
     5  # Client
     6  
     7  ## CLI
     8  
     9  A user can query and interact with the `crisis` module using the CLI.
    10  
    11  ### Transactions
    12  
    13  The `tx` commands allow users to interact with the `crisis` module.
    14  
    15  ```bash
    16  simd tx crisis --help
    17  ```
    18  
    19  #### invariant-broken
    20  
    21  The `invariant-broken` command submits proof when an invariant was broken to halt the chain
    22  
    23  ```bash
    24  simd tx crisis invariant-broken [module-name] [invariant-route] [flags]
    25  ```
    26  
    27  Example:
    28  
    29  ```bash
    30  simd tx crisis invariant-broken bank total-supply --from=[keyname or address]
    31  ```