Badger Rewards hosts scripts directly related to the Badger Rewards system, including:
- calculating Badger Boost
- proposing roots for rewards distribution
- approving roots for rewards distribution
Visit our GitBook for more detailed documentation.
Chain: Ethereum
Cadence: Every 10m
In order to deploy on an EVM chain, the following is required
- RPC endpoint for specific chain
- Subgraph for tracking user balances (api subgraph)
- Subgraph for tracking tree distribution events
- Subgraph for tracking tokens
- Gas estimation api for that chain
- Badger Tree + Rewards Logger contracts
- AWS bucket for storing merkle trees and initial empty tree file
When not sure if feature can break something, consider using feature flags functionality to disable the code that could potentially cause issues.
First, add new feature flag to FeatureFlags.FLAGS
dictionary:
class FeatureFlags:
FLAGS: Dict[str, bool] = {
NEW_FLAG: True
}
Then use new flag to wrap potentially dangerous code:
from rewards.feature_flags import flags
def some_func():
if flags.flag_enabled(NEW_FLAG):
new_functionality()
else:
old_functionality()
After succesful release consider removing NEW_FLAG
, as well as the wrapper and old functionality.