Skip to main content

Reward Options

Type: RewardOption

The following table provides a detailed overview of the methodology of Reward Options.

KeyDescription
____

Sample query: This sample query will return the first 10 reward options that have ETH as an input asset, and the first 5 active validators for each reward option.

{
rewardOptions(
where: { inputAsset: { symbols: ["ETH"] } }
limit: 10
) {
id
inputAssets(limit: 100) {
slug
}
validators(limit: 5) {
id
}
}
}