Skip to content

Instantly share code, notes, and snippets.

@adamsoffer
Created January 13, 2020 19:01
Show Gist options
  • Save adamsoffer/c945590827e97ddf6239b89f8a655657 to your computer and use it in GitHub Desktop.
Save adamsoffer/c945590827e97ddf6239b89f8a655657 to your computer and use it in GitHub Desktop.
Livepeer Subgraph Share Entity
"""
Represents a delegator's pool share
"""
type Share @entity {
"Unique identifer for the share (formed using the delegator's address and round number)"
id: ID!
"The delegator's share of reward tokens"
rewardTokens: BigInt
"The delegator's share of fees"
fees: BigInt
"The delegator associated with the share"
delegator: Delegator
"The round associated with the share"
round: Round
"The pool this share belongs to"
pool: Pool
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment