mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
20 lines
1.6 KiB
Markdown
20 lines
1.6 KiB
Markdown
# Parameters
|
|
|
|
The incentive module contains the following parameters:
|
|
|
|
| Key | Type | Example | Description |
|
|
|------------|----------------|---------------|--------------------------------------------------|
|
|
| Active | bool | "true" | boolean for if this module is active |
|
|
| Rewards | array (Reward) | [{see below}] | array of params for each inflationary period |
|
|
|
|
Each `Reward` has the following parameters
|
|
|
|
| Key | Type | Example | Description |
|
|
|------------------|--------------------|----------------------------------|----------------------------------------------------------------|
|
|
| Active | bool | "true | boolean for if rewards for this collateral are active |
|
|
| Denom | string | "bnb" | the collateral for which rewards are eligible |
|
|
| AvailableRewards | object (coin) | {"denom":"kava","amount":"1000"} | the rewards available per reward period |
|
|
| Duration | string (time ns) | "172800000000000" | the duration of each reward period |
|
|
| TimeLock | string (time ns) | "172800000000000" | the duration for which claimed rewards will be vesting |
|
|
| ClaimDuration | string (time ns) | "172800000000000" | how long users have to claim rewards before they expire |
|