Web3-Providers

乙太坊中的提供者是什麼?

  • December 21, 2017

下面給出的程式碼來自於 Truffle 教程之一中給出的教程

// Set the provider for our contract
App.contracts.Adoption.setProvider(App.web3Provider);

我看到我們為契約設置了一個 Web3 提供程序。

供應商基本上是什麼?他們在做什麼?

https://api.myetherapi.com/eth是提供者。Web3 提供者是一個執行 geth 或 parity 節點的網站,它與乙太坊網路對話。

提供者連結到正在執行的節點。例如paritygeth

節點具有查看區塊鏈並與之互動的能力。

引用自:https://ethereum.stackexchange.com/questions/31218