2020-04-23 16:35:58 +00:00
|
|
|
/*
|
|
|
|
Package params defines the simulation parameters for the Kava app.
|
|
|
|
|
|
|
|
It contains the default weights used for each transaction used on the module's
|
|
|
|
simulation. These weights define the chance for a transaction to be simulated at
|
2024-05-16 20:27:48 +00:00
|
|
|
any given operation.
|
2020-04-23 16:35:58 +00:00
|
|
|
|
2024-04-16 18:54:09 +00:00
|
|
|
You can replace the default values for the weights by providing a params.json
|
2020-04-23 16:35:58 +00:00
|
|
|
file with the weights defined for each of the transaction operations:
|
|
|
|
|
|
|
|
{
|
|
|
|
"op_weight_msg_send": 60,
|
|
|
|
"op_weight_msg_delegate": 100,
|
|
|
|
}
|
|
|
|
|
|
|
|
In the example above, the `MsgSend` has 60% chance to be simulated, while the
|
|
|
|
`MsgDelegate` will always be simulated.
|
|
|
|
*/
|
|
|
|
package params
|