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

     1  <!--
     2  order: 5
     3  -->
     4  
     5  # Parameters
     6  
     7  The bank module contains the following parameters:
     8  
     9  | Key                | Type          | Example                            |
    10  | ------------------ | ------------- | ---------------------------------- |
    11  | SendEnabled        | []SendEnabled | [{denom: "stake", enabled: true }] |
    12  | DefaultSendEnabled | bool          | true                               |
    13  
    14  ## SendEnabled
    15  
    16  The send enabled parameter is an array of SendEnabled entries mapping coin
    17  denominations to their send_enabled status. Entries in this list take
    18  precedence over the `DefaultSendEnabled` setting.
    19  
    20  ## DefaultSendEnabled
    21  
    22  The default send enabled value controls send transfer capability for all
    23  coin denominations unless specifically included in the array of `SendEnabled`
    24  parameters.