0

我正在尝试为部署在 rinkeby 测试网络中的合同编写子图。

为此,我需要在同一个 rinkeby 测试网络中运行图形节点。

参考以下回购

https://github.com/graphprotocol/graph-node

我使用下面的 cargo 命令在我的本地机器上运行它

cargo run -p graph-node --release --  --postgres-url postgresql://postgres:postgres@localhost:5432/graph-node  --ethereum-rpc 'rinkeby:https://rinkeby.infura.io/v3/2a46ac7cdb4c44acac4de87dadfd6e39'  --ipfs 127.0.0.1:5001

我使用 infura.io 获取 rinkeby rpc url。

但它会引发错误 401 Unauthorized。我不知道我在哪里犯错误。

在此处输入图像描述

我无法连接 rinkeby 网络。

请帮我解决这个问题。

提前致谢。

4

2 回答 2

0

看起来您的 Infura 端点设置不正确,请检查您的项目 ID 和您在帐户中设置的权限,可以在此处或通过您的 Infura 登录找到一些示例:https ://infura.io/docs/gettingStarted /chooseaNetwork

于 2021-05-11T08:53:21.083 回答
0

我在命令中犯了一个错误。

删除 rpc url 中的单引号可解决问题

cargo run -p graph-node --release -- --postgres-url postgresql://postgres:postgres@localhost:5432/graph-node --ethereum-rpc rinkeby:https://rinkeby.infura.io/v3/2a46ac7cdb4c44acac4de87dadfd6e39 --ipfs 127.0.0.1:5001
于 2021-05-12T11:07:16.337 回答