> For the complete documentation index, see [llms.txt](https://docs.hg.network/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hg.network/product-chan-pin-bang-zhu/xiang-mu-fan-li/uniswapinfo-fan-li.md).

# Uniswap-info 范例

在部署好subgraph，同步好数据之后，就需要修改前端代码来支持。

修改的地方有几处：

1、src/constants/index.js&#x20;

`export const FACTORY_ADDRESS = '0xb0f0a809b898b91db7d862819dbff83d3539bf82'`

2、src/apollo/client.js

子图查询代码：

`export const client = new ApolloClient({ link: new HttpLink({ uri: 'https://q.hg.network/subgraphs/name/rrex/heco', }), cache: new InMemoryCache(), shouldBatch: true, })`

健康检查：

`export const healthClient = new ApolloClient({ link: new HttpLink({ uri: 'https://h.hg.network/graphql', }), cache: new InMemoryCache(), shouldBatch: true, })`

区块信息：

`export const blockClient = new ApolloClient({ link: new HttpLink({ uri: 'https://q.hg.network/subgraphs/name/kdex-heco-blocks', }), cache: new InMemoryCache(), })`

Info 代码示例地址：

{% embed url="<https://github.com/HGDotNetwork/Uniswap-info>" %}
