Skip to content

[Tracking] Feature parity with legacy core network subgraph #46

@chriswessels

Description

@chriswessels

Feature parity with the existing core network subgraph to the extent that core workloads (e.g. indexer-agent, gateway, etc) require.

  • 1
type Allocation {
  ageInEpochs: Int!
  signalledTokens: BigInt!
  status: AllocationStatus
  createdAtEpoch: number
  createdAtBlockHash: string
  createdAtBlockNumber: number
  closedAtEpoch: number
  closedAtEpochStartBlockHash: string 
  previousEpochStartBlockHash: string
  closedAtBlockHash: string
  poi: string
}
  • 2
type GraphNetworks {
    isPaused: Bool!
}
  • 3
type SubgraphVersion {
  version: Int!
  createdAt: Int!
  deployment: String!
}
  • 4
type Subgraph {
  id: String!
  versionCount: Int!
  versions: [SubgraphVersion]!
}
  • 5
type SubgraphDeployment {
  ipfsHash: String!
  deniedAt: Int!
  indexerAllocations: [Allocation]!
}
  • 6
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

Metadata

Metadata

Assignees

No one assigned

    Labels

    p1High prioritysize:largeLargetype:trackingTracking issues with related scope

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions