36 releases (7 breaking)

0.7.1 Mar 25, 2024
0.6.1 Feb 5, 2024
0.5.2 Nov 2, 2023
0.4.0 Jul 14, 2023
0.1.0-alpha1 Jan 16, 2023

#770 in Network programming

Download history 9/week @ 2024-01-01 13/week @ 2024-02-05 45/week @ 2024-02-12 20/week @ 2024-02-19 40/week @ 2024-02-26 226/week @ 2024-03-04 92/week @ 2024-03-11 159/week @ 2024-03-25 156/week @ 2024-04-01

414 downloads per month
Used in 5 crates

Apache-2.0

135KB
3K SLoC

Graphcast SDK

Docs crates.io

Introduction

Graphcast is a decentralized, distributed peer-to-peer (P2P) communication tool that allows Indexers across the network to exchange information in real-time. Today, network participants coordinate with one another using the protocol by submitting on-chain transactions that update the shared global state in The Graph Network. These transactions cost gas, which makes some types of signaling or coordination between participants too expensive. In other words, sending signals to other network participants has a high cost that is determined by the cost of transacting on the Ethereum blockchain. Graphcast solves this problem.

To see the full idea behind Graphcast, you can check out the GRC for it.

Upgrading

Updates to the SDK will be merged into the main branch once their respective PR has been approved.

Testing

We recommend using nextest as your test runner. Once you have it installed you can run the the suite using the following command:

cargo nextest run

How does the Graphcast SDK work?

The SDK is essentially a base layer that Radio developers can use to build their applications without needing to worry about starting everything from scratch. The components that are included in the SDK are:

  • Connecting to the Graphcast network, e.g., a cluster of Waku nodes. It also provides an interface to subscribe to receive messages on specific topics and to broadcast messages onto the network.
  • Interactions with an Ethereum node.

There is also a POI cross-checker Radio in the examples/ folder that leverages the base layer and defines the specific logic around constructing and sending messages, as well as receiving and handling them.

Graphcast Network Configurations

A Graphcast radio can interact with many parts of The Graph network modularly; below are the network configurations actively supported by our team. You are free to define and use your own Graphcast Network and Graphcast Registry.

Graphcast Network Supporting Network Graph Network Graphcast Registry
Mainnet Mainnet https://api.thegraph.com/subgraphs/name/graphprotocol/graph-network-mainnet https://api.thegraph.com/subgraphs/name/hopeyen/graphcast-registry-mainnet
Testnet Goerli https://api.thegraph.com/subgraphs/name/graphprotocol/graph-network-goerli https://api.thegraph.com/subgraphs/name/hopeyen/graphcast-registry-goerli
Testnet Arbitrum Goerli https://api.thegraph.com/subgraphs/name/graphprotocol/graph-network-arbitrum-goerli https://api.thegraph.com/subgraphs/name/hopeyen/graphcast-registry-arbitrum-go

Contributing

We welcome and appreciate your contributions! Please see the Contributor Guide, Code Of Conduct and Security Notes for this repository.

Dependencies

~59–80MB
~1.5M SLoC