Ethereum 如何连接到Livepeer到Rinkeby网络?

Ethereum 如何连接到Livepeer到Rinkeby网络?,ethereum,Ethereum,我想运行livepeer,为此我需要它连接到以太坊网络。如前所述,有两种选择: 托管API服务 自托管以太坊节点 如果我想选择后者,我怎么会提到林克比 因为我只想用于测试目的。本教程使用geth作为自托管以太坊节点的示例 在geth中,您可以找到将节点连接到rinkeby网络的--rinkeby选项 例如: geth --rinkeby --rpc --rpcapi "eth,net,web3" livepeer -network rinkeby -ethUrl &q

我想运行livepeer,为此我需要它连接到以太坊网络。如前所述,有两种选择:

  • 托管API服务
  • 自托管以太坊节点
如果我想选择后者,我怎么会提到林克比


因为我只想用于测试目的。

本教程使用
geth
作为自托管以太坊节点的示例

在geth中,您可以找到将节点连接到rinkeby网络的
--rinkeby
选项

例如:

geth --rinkeby --rpc --rpcapi "eth,net,web3" 
livepeer -network rinkeby -ethUrl "http://localhost:8545"
对于
geth
选项,Livepeer文档似乎只显示1个连字符(
-
),但实际上应该是2个(
-

不要忘记在Livepeer start上将网络选项更改为
-network rinkeby

例如:

geth --rinkeby --rpc --rpcapi "eth,net,web3" 
livepeer -network rinkeby -ethUrl "http://localhost:8545"