github.com/Finschia/finschia-sdk@v0.48.1/simapp/params/doc.go (about)

     1  /*
     2  Package params defines the simulation parameters in the simapp.
     3  
     4  It contains the default weights used for each transaction used on the module's
     5  simulation. These weights define the chance for a transaction to be simulated at
     6  any given operation.
     7  
     8  You can replace the default values for the weights by providing a params.json
     9  file with the weights defined for each of the transaction operations:
    10  
    11  	{
    12  		"op_weight_msg_send": 60,
    13  		"op_weight_msg_delegate": 100,
    14  	}
    15  
    16  In the example above, the `MsgSend` has 60% chance to be simulated, while the
    17  `MsgDelegate` will always be simulated.
    18  */
    19  package params