Skip to content

Commit

Permalink
fix graphql schema
Browse files Browse the repository at this point in the history
  • Loading branch information
YaroShkvorets committed Mar 2, 2024
1 parent aefc78e commit 9f249b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subgraph/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ type Blob @entity(immutable: true) {
blob: Bytes!
kzg_commitment: Bytes!
kzg_proof: Bytes!
kzg_commitment_inclusion_proof: [String!]!
kzg_commitment_inclusion_proof: [Bytes!]!
}

type Slot @entity(immutable: true) {
id: ID!
number: BigInt!
signature: Bytes!
spec: String!
proposer_index: Int!
parent_root: Bytes!
state_root: Bytes!
body_root: Bytes!
signature: Bytes!
timestamp: String!

blobs: [Blob!]! @derivedFrom(field: "slot")
Expand Down

0 comments on commit 9f249b7

Please sign in to comment.