Feature parity with the existing core network subgraph to the extent that core workloads (e.g. indexer-agent, gateway, etc) require.
type Allocation {
ageInEpochs: Int!
signalledTokens: BigInt!
status: AllocationStatus
createdAtEpoch: number
createdAtBlockHash: string
createdAtBlockNumber: number
closedAtEpoch: number
closedAtEpochStartBlockHash: string
previousEpochStartBlockHash: string
closedAtBlockHash: string
poi: string
}
type GraphNetworks {
isPaused: Bool!
}
type SubgraphVersion {
version: Int!
createdAt: Int!
deployment: String!
}
type Subgraph {
id: String!
versionCount: Int!
versions: [SubgraphVersion]!
}
type SubgraphDeployment {
ipfsHash: String!
deniedAt: Int!
indexerAllocations: [Allocation]!
}
type Epoch {
id: number
startBlock: number
startBlockHash: string | undefined
endBlock: number
signalledTokens: number
stakeDeposited: number
queryFeeRebates: number
totalRewards: number
totalIndexerRewards: number
totalDelegatorRewards: number
}
Related spike: #45
Feature parity with the existing core network subgraph to the extent that core workloads (e.g. indexer-agent, gateway, etc) require.
Related spike: #45