Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
timotejvesel committed Nov 3, 2023
1 parent 6cddf72 commit 612714f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/processStakingRewards.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ let args = yargs
description: 'The path to json config file with network information',
default: 'configs/networks/flare.json',
})
.option('rewardEpoch', { alias: 'r', type: 'number', description: 'Reward epoch to calculate rewards for' })
.option('rewardEpoch', { alias: 'e', type: 'number', description: 'Reward epoch to calculate rewards for' })
.option('ftsoPerformanceWei', { alias: 'p', type: 'string', description: 'Required FTSO performance (received FTSO rewards in wei) for the node to be eligible for staking rewards. Performance should be strictly greater than ftsoPerformance' })
.option('boostingFactor', { alias: 'f', type: 'number', description: 'Boosting factor (for calculating boost amount)' })
.option('votePowerCapBIPS', { alias: 'v', type: 'number', description: 'Cap vote power to x% of total stake amount' })
.option('uptimeVotigPeriodLength', { alias: 'l', type: 'number', description: 'Length of voting period (which starts at the end of reward epoch) for reward epoch uptime' })
.option('batchSize', { alias: 'b', type: 'number', description: 'Batch size for blocks to process events' })
.option('rps', { alias: 's', type: 'number', description: 'Request per second' })
.option('rps', { alias: 'r', type: 'number', description: 'Request per second' })
.option('uptimeVotingThreshold', { alias: 't', type: 'number', description: 'Required number of votes for uptime to be considered high enough' })
.option('minForBEBGwei', { alias: 'm', type: 'string', description: 'Minimal amount (in gwei) of total self-bond to be eligible for boosting' })
.option('rewardAmountEpochWei', { alias: 'a', type: 'string', description: 'Reward amount (in wei) to be distributed per reward epoch' })
Expand Down

0 comments on commit 612714f

Please sign in to comment.