⚛️ React bindings for helping build decentralized applications quickly on Ethereum and IPFS using GraphQL.
npm install thegraph-react⚛️ Helping build decentralized applications quickly on Ethereum and IPFS using GraphQL.
Compatible with both React and React Native (Android/iOS/Web).
Using yarn:
```
yarn add thegraph-react
`javascript
import { gql } from "@apollo/client";
import React from "react";
import { StyleSheet, Text, View } from "react-native";
import { Chains, Subgraph, Subgraphs, TheGraphProvider, useCreateSubgraph, useSubgraph } from "thegraph-react";
const styles = StyleSheet.create({
center: { alignItems: "center", justifyContent: "center" },
});
function Aave({ aave }: {
readonly aave: Subgraph,
}): JSX.Element {
const { useQuery } = useSubgraph(aave);
const { error, loading, data } = useQuery(gql
{
lendingPoolConfigurationHistoryItems(first: 5) {
id
provider {
id
}
lendingPool
lendingPoolCore
}
lendingPoolConfigurations(first: 5) {
id
lendingPool
lendingPoolCore
lendingPoolParametersProvider
}
}
);
return (
);
}
export default function App(): JSX.Element {
const aave = useCreateSubgraph({
[Chains.MAINNET]: 'https://api.thegraph.com/subgraphs/name/aave/protocol',
});
const subgraphs = React.useMemo((): Subgraphs => {
return [aave];
}, [aave]);
return (
);
}
``