graph-node
graph-node copied to clipboard
Graph Node indexes data from blockchains such as Ethereum and serves it over GraphQL
**Do you want to request a *feature* or report a *bug*?** BUG **What is the current behavior?** There seems to be an indeterministic bug where transactions are sometimes "not found"...
This implements most of the runtime support for handling offchain data sources. Unfortunately there's a lot of boilerplate here, but I think it's best for a first pass since my...
Hi, from https://github.com/graphprotocol/graph-node/blob/master/docs/getting-started.md, it mentions "If you encounter problems, follow the instructions from the [IPFS website](https://ipfs.io/docs/getting-started/)." But the link of https://ipfs.io/docs/getting-started cannot be opened.
Hi! We just upgraded our graph node to 0.27.0 and deployed a new subgraph using the `receipt: true` feature in some of the handlers. The sync works for a while...
Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.57 to 1.0.60. Release notes Sourced from anyhow's releases. 1.0.60 Propagate --target to rustc invocation when deciding about backtrace support (#249, thanks @RalfJung) 1.0.59 Update crates.io metadata...
Bumps [chrono](https://github.com/chronotope/chrono) from 0.4.19 to 0.4.20. Release notes Sourced from chrono's releases. 0.4.20 chrono is a date and time library for Rust and 0.4.20 is the first chrono release since...
Bumps [cid](https://github.com/multiformats/rust-cid) from 0.8.5 to 0.8.6. Commits 1791fd3 (cargo-release) version 0.8.6 17e37cb Merge pull request #121 from Arqu/arqu/into_v1 6947c15 Merge pull request #122 from multiformats/fix/explicit-v0 87cc0e7 Disallow explicit CIDv0 a683d67...
Continuation of #3184, adds support for interfaces. GraphQL Schema ```graphql type Musician @entity { id: ID! name: String! mainBand: Band bands: [Band!]! writtenSongs: [Song]! @derivedFrom(field: "writtenBy") } type Band @entity...
#3737 Given this schema: ```graphql type Country @entity { id: ID! capital: City! cities: [City!]! } type City @entity { id: ID! name: String population: Int landmarks: [String!]! } ```...
Hi there. I'm trying to index blocks using the fork of EVM chain (hardhat node --fork "rpc-url") and unfortunately getting some troubles with graph-node. Need help. Errors i get: `graph-node_1...