Reward
Headless component system for displaying Reward information
Reward Kit is still in early alpha, and may contain bugs or unexpected behavior.
The Boost V2 Docs are under active development and will be subject to changes.
A headless compound component system for displaying reward-related information including amounts, USD values, and token images. The system uses a context-based approach to share reward data between components.
Reward.Root
The container component that provides reward data context to child components.
Reward.Amount
Component that displays the reward amount with optional formatting.
Reward.USD
Component that displays the USD value of rewards.
Reward.Image
Component that displays the reward token’s image.
Basic Usage
Here’s a simple example showing all components together:
With Custom Rendering
Example using render props for custom displays:
With Fallback Content
Example showing fallback handling:
Type Definitions
The full query result containing boost data and status
The Reward components use React Context internally to share data and must be used within a Reward.Root
component. The system automatically handles loading states, error cases, and data formatting.
Each component can be used independently or together, allowing for flexible layouts and custom rendering through render props.