# Staking Seasons Entities - [`StakingParticipation`](#stakingparticipation) - [`Boost`](#boost) - [`StakeSeason`](#stakeseason) - [`Account`](#account) ## StakingParticipation | Field | Type | Description | | ------------------------ | ------------ | ------------------------------------------ | | id | ID! | Unique identifier for staking particpation | | Account | Account! | User account | | stakingSeason | StakeSeason! | Staking season | | actualLockedTokenAmount | BigInt! | Actual amount of tokens locked | | virtualLockedTokenAmount | BigInt! | Amount of virtual locked tokens | | airdropLockedTokenAmount | BigInt! | Amount of airdrop locked tokens | | lastSyncTimestamp | BigInt! | Timestamp of last sync | | cumulatedRewards | BigInt! | Cumulated rewards | | claimedRewards | BigInt! | Rewards claimed | | unclaimedRewards | BigInt! | Unclaimed rewards | | boostRate | BigInt! | Boost rate | | appliedBoosts | [Boost!]! | Applied boosts | | ignoredBoosts | [Boost!]! | Ignored boosts | ## Boost | Field | Type | Description | | -------------- | -------- | ------------------------------- | | id | ID! | Unique identifier for the boost | | Owner | Account! | User account | | boostTypeIndex | BigInt! | Boost type index | | uri | String! | Universal resource identifier | | boostNumerator | BigInt! | Boost numerator | | redeemDeadline | BigInt! | Redeem deadline | ## StakeSeason | Field | Type | Description | | --------------------- | ------------------------ | ---------------------------------- | | id | ID! | Unique identifier for stake season | | seasonNumber | BigInt! | Stake season number | | availableReward | BigInt! | Availabe reward for season | | totalLocked | BigInt! | Total tokens locked | | totalVirtual | BigInt! | Total virtual tokens | | totalAirdrop | BigInt! | Total airdrop tokens | | totalCumulatedRewards | BigInt! | Total cumulated rewards for season | | totalClaimedRewards | BigInt! | Total claimed rewards for season | | totalUnclaimedRewards | BigInt! | Total unclaimed rewards | | lastSyncTimestamp | BigInt! | Timestamp of last sync | | blockedTypeIndexes | [BigInt!]! | Number of blocked type indexes | | stakingParticipation | [StakingParticipation!]! | Derived from field - stakingSeason | ## Account | Field | Type | Description | | -------------------- | ------------------------ | ----------------------------- | | id | ID! | Unique identifier for account | | stakingParticipation | [StakingParticipation!]! | Derived from field - account | | ownedBoosts | [Boost!]! | Derived from field - owner |